@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;900&family=Barlow:wght@300;400;500;600&display=swap');
#tsp-page{
    --navy: #1b3a5c;
    --navy-dark: #122840;
    --navy-mid: #1e4570;
    --orange: #e05a20;
    --orange-light: #f06a2a;
    --steel: #3a6ea8;
    --steel-light: #5588c0;
    --white: #ffffff;
    --off-white: #f4f7fa;
    --gray: #8aa0b8;
    --text: #1a2e42;
  }
#tsp-page *, #tsp-page *::before, #tsp-page *::after{ box-sizing: border-box; margin: 0; padding: 0; }
#tsp-page{ scroll-behavior: smooth; }
#tsp-page{
    font-family: 'Barlow', sans-serif;
    background: var(--off-white);
    color: var(--text);
    overflow-x: hidden;
  }
#tsp-page /* ── HERO ── */
  .hero{
    background: var(--navy);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 60px 40px;
  }
#tsp-page .hero::before{
    content: '';
    position: absolute;
    inset: 0;
    background:
      repeating-linear-gradient(
        0deg,
        transparent,
        transparent 59px,
        rgba(255,255,255,0.03) 59px,
        rgba(255,255,255,0.03) 60px
      ),
      repeating-linear-gradient(
        90deg,
        transparent,
        transparent 59px,
        rgba(255,255,255,0.03) 59px,
        rgba(255,255,255,0.03) 60px
      );
  }
#tsp-page .hero::after{
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0; right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--orange) 40%, var(--steel) 100%);
  }
#tsp-page .logo-bar{
    position: absolute;
    top: 36px;
    left: 48px;
    display: flex;
    align-items: center;
    gap: 14px;
    animation: fadeDown 0.8s ease both;
  }
#tsp-page .logo-mark{
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 38.4px;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--white);
    line-height: 1;
  }
#tsp-page .logo-mark span{
    display: inline-block;
    width: 4px;
    height: 28px;
    background: var(--orange);
    margin: 0 4px;
    vertical-align: middle;
    border-radius: 2px;
  }
#tsp-page .logo-sub{
    display: none;
  }
#tsp-page .hero-content{
    text-align: center;
    position: relative;
    z-index: 1;
  }
#tsp-page .hero-tag{
    display: inline-block;
    font-size: 11.2px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--orange);
    background: rgba(224,90,32,0.12);
    border: 1px solid rgba(224,90,32,0.3);
    padding: 6px 18px;
    border-radius: 2px;
    margin-bottom: 32px;
    animation: fadeUp 0.7s 0.2s ease both;
  }
#tsp-page .hero-ppm{
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(144px, 22vw, 288px);
    font-weight: 900;
    color: var(--white);
    line-height: 0.85;
    letter-spacing: -4px;
    animation: fadeUp 0.7s 0.35s ease both;
    position: relative;
  }
#tsp-page .hero-ppm::after{
    content: 'TSP';
    position: absolute;
    inset: 0;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.08);
    transform: translate(4px, 4px);
    z-index: -1;
  }
#tsp-page .hero-title{
    font-size: clamp(16px, 2.5vw, 25.6px);
    font-weight: 300;
    letter-spacing: 0.06em;
    color: var(--gray);
    margin-top: 12px;
    animation: fadeUp 0.7s 0.5s ease both;
  }
#tsp-page .hero-title strong{
    color: var(--white);
    font-weight: 600;
  }
#tsp-page .hero-tagline{
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 19.2px;
    font-weight: 400;
    font-style: italic;
    color: var(--orange-light);
    margin-top: 40px;
    letter-spacing: 0.1em;
    animation: fadeUp 0.7s 0.65s ease both;
  }
#tsp-page .hero-cta{
    margin-top: 48px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.7s 0.8s ease both;
  }
#tsp-page .btn-primary{
    background: var(--orange);
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 14px 36px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.2s;
  }
#tsp-page .btn-primary:hover{ background: var(--orange-light); transform: translateY(-2px); }
#tsp-page .btn-outline{
    background: transparent;
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 14px 36px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.2s, transform 0.2s;
  }
#tsp-page .btn-outline:hover{ border-color: var(--white); transform: translateY(-2px); }
#tsp-page /* ── SECTION BASE ── */
  section{ padding: 100px 40px; }
#tsp-page .container{ max-width: 1100px; margin: 0 auto; }
#tsp-page .section-label{
    font-size: 10.4px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
  }
#tsp-page .section-title{
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(35.2px, 5vw, 57.6px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.05;
    margin-bottom: 24px;
  }
#tsp-page /* ── WHAT IS PPM ── */
  .what{
    background: var(--white);
    border-top: 4px solid var(--orange);
  }
#tsp-page .what-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 60px;
  }
#tsp-page .what-intro p{
    font-size: 16.8px;
    font-weight: 300;
    line-height: 1.75;
    color: #3a5068;
    margin-bottom: 20px;
  }
#tsp-page .what-list{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
  }
#tsp-page .what-list li{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15.2px;
    color: var(--text);
  }
#tsp-page .what-list li::before{
    content: '';
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    margin-top: 7px;
  }
#tsp-page .benefits-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
#tsp-page .benefit-card{
    background: var(--off-white);
    border: 1px solid rgba(27,58,92,0.08);
    border-radius: 4px;
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
  }
#tsp-page .benefit-card:hover{
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(27,58,92,0.1);
  }
#tsp-page .benefit-card::before{
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--steel);
    border-radius: 4px 4px 0 0;
  }
#tsp-page .benefit-icon{
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
  }
#tsp-page .benefit-label{
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--steel);
    text-transform: uppercase;
    line-height: 1.2;
  }
#tsp-page /* ── HOW IT WORKS ── */
  .how{ background: var(--navy); }
#tsp-page .how .section-title{ color: var(--white); }
#tsp-page .how .section-label{ color: var(--orange); }
#tsp-page .steps{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
  }
#tsp-page .step{
    position: relative;
    padding: 32px 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    transition: background 0.2s;
  }
#tsp-page .step:hover{ background: rgba(255,255,255,0.08); }
#tsp-page .step-num{
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 72px;
    font-weight: 900;
    color: rgba(255,255,255,0.06);
    line-height: 1;
    position: absolute;
    top: 12px;
    right: 16px;
  }
#tsp-page .step-icon{
    font-size: 28.8px;
    margin-bottom: 16px;
    display: block;
  }
#tsp-page .step-title{
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 19.2px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 10px;
  }
#tsp-page .step p{
    font-size: 14.08px;
    font-weight: 300;
    line-height: 1.65;
    color: var(--gray);
  }
#tsp-page /* ── PRICING ── */
  .pricing{ background: var(--off-white); }
#tsp-page .pricing-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 60px;
  }
#tsp-page .plan-card{
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(27,58,92,0.07);
    transition: transform 0.2s, box-shadow 0.2s;
  }
#tsp-page .plan-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(27,58,92,0.13);
  }
#tsp-page .plan-card.featured{
    border: 2px solid var(--orange);
  }
#tsp-page .plan-header{
    background: var(--navy);
    padding: 32px 32px 24px;
    position: relative;
  }
#tsp-page .plan-card.featured .plan-header{
    background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  }
#tsp-page .plan-badge{
    display: inline-block;
    font-size: 9.6px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    background: rgba(224,90,32,0.15);
    border: 1px solid rgba(224,90,32,0.3);
    padding: 3px 10px;
    border-radius: 2px;
    margin-bottom: 12px;
  }
#tsp-page .plan-name{
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.5px;
  }
#tsp-page .plan-hours{
    font-size: 13.6px;
    color: var(--gray);
    margin-top: 4px;
  }
#tsp-page .plan-body{ padding: 28px 32px; }
#tsp-page .plan-row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(27,58,92,0.07);
    font-size: 14.4px;
  }
#tsp-page .plan-row:last-child{ border-bottom: none; }
#tsp-page .plan-row-label{ color: #5a7898; font-weight: 400; }
#tsp-page .plan-row-value{
    font-weight: 700;
    color: var(--navy);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 17.6px;
    letter-spacing: 0.02em;
  }
#tsp-page .plan-row-value.good{ color: #1a7a48; }
#tsp-page .plan-notes{
    margin-top: 48px;
    padding: 28px 32px;
    background: var(--white);
    border-radius: 4px;
    border-left: 4px solid var(--steel);
    box-shadow: 0 2px 12px rgba(27,58,92,0.05);
  }
#tsp-page .plan-notes-title{
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12.8px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--steel);
    margin-bottom: 14px;
  }
#tsp-page .plan-notes ul{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
#tsp-page .plan-notes li{
    font-size: 14.08px;
    color: #5a7898;
    padding-left: 16px;
    position: relative;
    line-height: 1.5;
  }
#tsp-page .plan-notes li::before{
    content: '—';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
  }
#tsp-page /* ── MACHINES ── */
  .machines{ background: var(--white); }
#tsp-page .brands-grid{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 60px;
  }
#tsp-page .brand-card{
    background: var(--white);
    border: 1px solid rgba(27,58,92,0.1);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.15s;
    cursor: default;
  }
#tsp-page .brand-card:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(27,58,92,0.12);
    border-color: rgba(27,58,92,0.2);
  }
#tsp-page .brand-card-image{
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
  }
#tsp-page .brand-card-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 8px;
    background: #ffffff;
  }
#tsp-page .brand-card-image .img-placeholder{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(27,58,92,0.25);
  }
#tsp-page .brand-card-image .img-placeholder svg{
    width: 32px;
    height: 32px;
  }
#tsp-page .brand-card-image .img-placeholder span{
    font-size: 9.6px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
#tsp-page .brand-card-logo{
    width: 100%;
    padding: 10px 16px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    height: 60px;
    border-top: 1px solid rgba(27,58,92,0.08);
    box-sizing: border-box;
  }
#tsp-page .brand-card-logo img{
    max-height: 38px;
    max-width: 90%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: auto;
    flex-shrink: 0;
  }
#tsp-page .brand-card-logo + .brand-card-name{
    display: none;
  }
#tsp-page .brand-card-name{
    width: 100%;
    padding: 14px 12px;
    text-align: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13.6px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--navy);
    text-transform: uppercase;
    border-top: 1px solid rgba(27,58,92,0.08);
    background: var(--white);
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
  }
#tsp-page /* ── CTA ── */
  .cta-strip{
    background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
#tsp-page .cta-strip::before{
    content: 'TSP';
    position: absolute;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 352px;
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    user-select: none;
  }
#tsp-page .cta-strip::after{
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--steel));
  }
#tsp-page .cta-title{
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
  }
#tsp-page .cta-sub{
    font-size: 16px;
    color: var(--gray);
    font-weight: 300;
    margin-bottom: 36px;
    position: relative;
  }
#tsp-page .cta-strip .btn-primary{ position: relative; font-size: 17.6px; padding: 16px 48px; }
#tsp-page /* ── FOOTER ── */
  footer{
    background: var(--navy-dark);
    padding: 48px 40px 32px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px 60px;
    align-items: start;
  }
#tsp-page .footer-logo-col{
    grid-row: 1 / 3;
    display: flex;
    align-items: flex-start;
    padding-top: 4px;
  }
#tsp-page .footer-addresses{
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
  }
#tsp-page .footer-address{
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 180px;
  }
#tsp-page .footer-address-country{
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11.2px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 4px;
  }
#tsp-page .footer-address-name{
    font-size: 12.8px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
  }
#tsp-page .footer-address-line{
    font-size: 12.48px;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.5;
  }
#tsp-page .footer-address a{
    color: var(--gray);
    text-decoration: none;
    font-size: 12.48px;
    font-weight: 300;
    transition: color 0.2s;
  }
#tsp-page .footer-address a:hover{ color: var(--orange); }
#tsp-page .footer-bottom{
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.07);
  }
#tsp-page .footer-bottom a{
    font-size: 13.12px;
    font-weight: 500;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.2s;
  }
#tsp-page .footer-bottom a:hover{ color: var(--orange); }
#tsp-page .footer-bottom .footer-website{
    font-weight: 700;
    color: var(--white);
  }
#tsp-page .footer-bottom .footer-website:hover{ color: var(--orange); }
#tsp-page .footer-dot{
    width: 3px;
    height: 3px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: inline-block;
  }
@media (max-width: 700px){
#tsp-page .footer-logo-col{ grid-row: auto; }
#tsp-page .footer-addresses{ flex-direction: column; gap: 20px; }
}
#tsp-page /* ── DIVIDER ── */
  .divider{
    height: 4px;
    background: linear-gradient(90deg, var(--orange) 0%, var(--steel-light) 100%);
  }
#tsp-page /* ── ANIMATIONS ── */
  @keyframes fadeUp{
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
@keyframes fadeDown{
    from { opacity: 0; transform: translateY(-16px); }
    to { opacity: 1; transform: translateY(0); }
  }
#tsp-page /* ── RESPONSIVE ── */
  @media (max-width: 900px){
    .what-grid { grid-template-columns: 1fr; gap: 40px; }
    .steps { grid-template-columns: 1fr 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .brands-grid { grid-template-columns: repeat(3, 1fr); }
  }
@media (max-width: 600px){
#tsp-page section{ padding: 70px 24px; }
#tsp-page .hero{ padding: 80px 24px 60px; }
#tsp-page .logo-bar{ left: 24px; top: 24px; }
#tsp-page .steps{ grid-template-columns: 1fr; }
#tsp-page .benefits-grid{ grid-template-columns: 1fr; }
#tsp-page .brands-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px){
#tsp-page .brands-grid{ grid-template-columns: repeat(2, 1fr); }
}
#tsp-page /* ── ABOUT US ── */
  .about{
    background: var(--white);
    padding: 100px 40px;
  }
#tsp-page .about-inner{
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
#tsp-page .about-left{}
#tsp-page .about-right{}
#tsp-page .about-body{
    color: var(--text);
    font-size: 16.8px;
    line-height: 1.8;
    margin-bottom: 20px;
  }
#tsp-page .about-body:last-child{ margin-bottom: 0; }
#tsp-page .about-stats{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
  }
#tsp-page .about-stat{
    background: var(--off-white);
    border-radius: 10px;
    padding: 28px 24px;
    border-left: 4px solid var(--orange);
  }
#tsp-page .about-stat-number{
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 41.6px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 6px;
  }
#tsp-page .about-stat-label{
    font-size: 13.12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray);
    line-height: 1.4;
  }
#tsp-page .about-badge{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--navy);
    color: var(--white);
    border-radius: 8px;
    padding: 14px 20px;
    font-size: 13.6px;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-top: 36px;
  }
#tsp-page .about-badge-icon{
    width: 28px;
    height: 28px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
#tsp-page .about-locations{
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 12px;
  }
#tsp-page .about-location{
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    border: 1px solid rgba(27,58,92,0.1);
    border-radius: 10px;
    background: var(--off-white);
    transition: border-color 0.2s, box-shadow 0.2s;
  }
#tsp-page .about-location:hover{
    border-color: rgba(27,58,92,0.25);
    box-shadow: 0 4px 14px rgba(27,58,92,0.08);
  }
#tsp-page .about-location-flag{
    font-size: 25.6px;
    line-height: 1;
    flex-shrink: 0;
  }
#tsp-page .about-location-country{
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 2px;
  }
#tsp-page .about-location-name{
    font-weight: 600;
    font-size: 15.2px;
    color: var(--navy);
  }
@media (max-width: 860px){
#tsp-page .about-inner{ grid-template-columns: 1fr; gap: 48px; }
#tsp-page .about{ padding: 70px 24px; }
#tsp-page .about-stats{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px){
#tsp-page .about-stats{ grid-template-columns: 1fr; }
}
#tsp-page /* ── ABOUT US — image panels ── */
  .about-map-img{
    width: 100%;
    border-radius: 12px;
    display: block;
    box-shadow: 0 6px 24px rgba(27,58,92,0.13);
    margin-top: 8px;
  }
#tsp-page .about-ps-row{
    max-width: 1100px;
    margin: 56px auto 0;
    background: var(--off-white);
    border-radius: 14px;
    padding: 36px 40px;
    display: flex;
    align-items: center;
    gap: 48px;
  }
#tsp-page .about-ps-text{
    flex: 0 0 300px;
  }
#tsp-page .about-ps-text .section-label{ margin-bottom: 10px; }
#tsp-page .about-ps-body{
    font-size: 15.2px;
    line-height: 1.75;
    color: var(--text);
  }
#tsp-page .about-ps-img-wrap{
    flex: 1;
    min-width: 0;
  }
#tsp-page .about-ps-img{
    width: 100%;
    border-radius: 10px;
    display: block;
    box-shadow: 0 4px 18px rgba(27,58,92,0.10);
  }
@media (max-width: 860px){
#tsp-page .about-ps-row{ flex-direction: column; gap: 28px; padding: 28px 20px; }
#tsp-page .about-ps-text{ flex: none; }
}
#tsp-page /* ── VIDEO PLACEHOLDER ── */
  .about-video-placeholder{
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(27,58,92,0.18);
    position: relative;
    overflow: hidden;
  }
#tsp-page .about-video-placeholder::before{
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.02) 0px,
      rgba(255,255,255,0.02) 1px,
      transparent 1px,
      transparent 24px
    );
  }
#tsp-page .about-video-inner{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 1;
  }
#tsp-page .about-video-icon{
    opacity: 0.9;
    transition: transform 0.2s, opacity 0.2s;
  }
#tsp-page .about-video-placeholder:hover .about-video-icon{
    transform: scale(1.1);
    opacity: 1;
  }
#tsp-page .about-video-label{
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 19.2px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
  }
#tsp-page .about-video-sub{
    font-size: 12.8px;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

body.cms-technical-service-program .page-main {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
body.cms-technical-service-program .page-main > .page-title-wrapper,
body.cms-technical-service-program .page-main > .columns {
  max-width: none;
}
body.cms-technical-service-program .page-main > .columns .column.main {
  padding-left: 0;
  padding-right: 0;
}
body.cms-technical-service-program .breadcrumbs {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
#tsp-page .about-service-video { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 18px rgba(27,58,92,0.18); background: #122840; }
#tsp-page .about-service-video iframe { position:absolute; inset:0; width:100%; height:100%; border:0; display:block; }
#tsp-page .about-video-caption { margin-top: 10px; color: var(--gray); font-size: 15.2px; line-height: 1.45; }
#tsp-page .contact-popup-form { cursor: pointer; }


/* Magento root font-size normalization: original standalone HTML uses browser 16px rem scale. */
body.cms-technical-service-program #tsp-page { font-size: 16px; }
body.cms-technical-service-program #tsp-page .logo-bar {
  top: 52px;
  left: 72px;
}
body.cms-technical-service-program #tsp-page .logo-bar svg {
  width: 360px;
  height: auto;
  max-width: 44vw;
}

/* TEOL CMS typography pass: keep the client HTML layout, but lift text to the
   readability scale used by the other redesigned CMS pages. */
body.cms-technical-service-program #tsp-page .section-label,
body.cms-technical-service-program #tsp-page .plan-badge,
body.cms-technical-service-program #tsp-page .plan-notes-title {
  font-size: 14px !important;
}
body.cms-technical-service-program #tsp-page .section-title {
  font-size: clamp(44px, 5vw, 68px) !important;
}
body.cms-technical-service-program #tsp-page .what-intro p,
body.cms-technical-service-program #tsp-page .about-body,
body.cms-technical-service-program #tsp-page .about-ps-body,
body.cms-technical-service-program #tsp-page .cta-sub {
  font-size: 19px !important;
  line-height: 1.72 !important;
}
body.cms-technical-service-program #tsp-page .what-list li,
body.cms-technical-service-program #tsp-page .step p,
body.cms-technical-service-program #tsp-page .plan-row,
body.cms-technical-service-program #tsp-page .plan-notes li,
body.cms-technical-service-program #tsp-page .about-video-caption,
body.cms-technical-service-program #tsp-page .about-location-name {
  font-size: 17px !important;
  line-height: 1.6 !important;
}
body.cms-technical-service-program #tsp-page .benefit-label,
body.cms-technical-service-program #tsp-page .step-title {
  font-size: 22px !important;
}
body.cms-technical-service-program #tsp-page .plan-name {
  font-size: 38px !important;
}
body.cms-technical-service-program #tsp-page .plan-hours,
body.cms-technical-service-program #tsp-page .about-stat-label,
body.cms-technical-service-program #tsp-page .about-badge,
body.cms-technical-service-program #tsp-page .about-location-country {
  font-size: 15px !important;
}
body.cms-technical-service-program #tsp-page .plan-row-value {
  font-size: 20px !important;
}
body.cms-technical-service-program #tsp-page .brand-card-name {
  font-size: 16px !important;
}
body.cms-technical-service-program #tsp-page .cta-title {
  font-size: clamp(42px, 5vw, 64px) !important;
}
body.cms-technical-service-program #tsp-page .btn-primary,
body.cms-technical-service-program #tsp-page .btn-outline,
body.cms-technical-service-program #tsp-page .cta-strip .btn-primary {
  font-size: 16px !important;
}
body.cms-technical-service-program #tsp-page .hero-tag {
  font-size: 12px !important;
}
body.cms-technical-service-program #tsp-page .hero-title {
  font-size: clamp(19px, 2.5vw, 28px) !important;
}

@media (max-width: 600px) {
  body.cms-technical-service-program #tsp-page .logo-bar {
    top: 28px;
    left: 24px;
  }
  body.cms-technical-service-program #tsp-page .logo-bar svg {
    width: 260px;
    max-width: calc(100vw - 48px);
  }
  body.cms-technical-service-program #tsp-page .section-label,
  body.cms-technical-service-program #tsp-page .plan-badge,
  body.cms-technical-service-program #tsp-page .plan-notes-title {
    font-size: 11px !important;
  }
  body.cms-technical-service-program #tsp-page .section-title {
    font-size: clamp(34px, 11vw, 44px) !important;
  }
  body.cms-technical-service-program #tsp-page .what-intro p,
  body.cms-technical-service-program #tsp-page .about-body,
  body.cms-technical-service-program #tsp-page .about-ps-body,
  body.cms-technical-service-program #tsp-page .what-list li,
  body.cms-technical-service-program #tsp-page .step p,
  body.cms-technical-service-program #tsp-page .plan-row,
  body.cms-technical-service-program #tsp-page .plan-notes li,
  body.cms-technical-service-program #tsp-page .about-video-caption {
    font-size: 16px !important;
  }
}
