﻿/* Self-hosted Barlow fonts */
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/barlow/barlow-condensed-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/barlow/barlow-condensed-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/barlow/barlow-condensed-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/fonts/barlow/barlow-condensed-800.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('/fonts/barlow/barlow-condensed-900.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/fonts/barlow/barlow-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/barlow/barlow-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/barlow/barlow-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/barlow/barlow-600.woff2') format('woff2');
}

  :root {
    --navy: #1e2a6e;
    --navy-dark: #111827;
    --navy-mid: #1e3a6e;
    --red: #cc0000;
    --red-bright: #e53935;
    --white: #ffffff;
    --off-white: #f0f2f7;
    --light-gray: #dde1ed;
    --mid-gray: #8a95b0;
    --dark-gray: #2c3250;
    --text: #111827;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Barlow', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: #111827;
    border-bottom: 3px solid var(--red);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 80px;
  }

  .nav-logo {
    height: 56px;
    cursor: pointer;
  }

  .nav-links {
    display: flex;
    gap: 6px;
    list-style: none;
  }

  .nav-links a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 3px;
    transition: all 0.2s;
    cursor: pointer;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: var(--red);
    color: var(--white);
  }

  .nav-cta {
    background: var(--red) !important;
    color: var(--white) !important;
    border: 2px solid var(--red-bright) !important;
  }

  /* ─── PAGES ─── */
  .page {
    display: none;
    min-height: 100vh;
    padding-top: 80px;
  }
  .page.active { display: block; }

  /* ─── HERO ─── */
  .hero {
    position: relative;
    min-height: calc(100vh - 80px);
    background: #111827;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      repeating-linear-gradient(
        90deg,
        transparent,
        transparent 60px,
        rgba(255,255,255,0.015) 60px,
        rgba(255,255,255,0.015) 61px
      ),
      repeating-linear-gradient(
        0deg,
        transparent,
        transparent 60px,
        rgba(255,255,255,0.015) 60px,
        rgba(255,255,255,0.015) 61px
      );
  }

  .hero-accent {
    position: absolute;
    right: -80px;
    top: 0;
    bottom: 0;
    width: 55%;
    background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-dark) 60%);
    clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
    opacity: 0.6;
  }

  .hero-red-line {
    position: absolute;
    bottom: 8%;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--red) 20%, var(--red) 80%, transparent);
    opacity: 0.4;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 60px;
    align-items: center;
    width: 100%;
  }

  /* ─── TRUST PANEL ─── */
  .hero-trust-panel {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    border-top: 3px solid var(--red);
    padding: 36px 32px;
    flex-shrink: 0;
  }

  .trust-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--red-bright);
    margin-bottom: 24px;
  }

  .trust-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
  }

  .trust-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--red);
    color: var(--white);
    font-size: 12px;
    font-weight: 900;
    flex-shrink: 0;
    border-radius: 2px;
  }

  .trust-cta {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red-bright);
    text-decoration: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    transition: color 0.2s;
  }

  .trust-cta:hover { color: var(--white); }

  .hero-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--red-bright);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--red);
  }

  .hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(64px, 8.5vw, 112px);
    font-weight: 900;
    line-height: 0.95;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 28px;
    max-width: 820px;
  }

  .hero h1 span {
    color: var(--red-bright);
    display: block;
  }

  .hero-sub {
    font-size: 21px;
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    max-width: 620px;
    line-height: 1.7;
    margin-bottom: 48px;
  }

  .hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--red);
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 36px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  }

  .btn-primary:hover {
    background: var(--red-bright);
    transform: translateY(-2px);
  }

  .btn-outline {
    background: transparent;
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 34px;
    border: 2px solid rgba(255,255,255,0.4);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
  }

  .btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
  }

  /* ─── STATS BAR ─── */
  .stats-bar {
    background: var(--red);
    padding: 28px 24px;
  }

  .stats-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
  }

  .stat-item {
    color: var(--white);
    border-right: 1px solid rgba(255,255,255,0.3);
  }

  .stat-item:last-child { border-right: none; }

  .stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 40px;
    font-weight: 900;
    line-height: 1;
    display: block;
  }

  .stat-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.85;
    margin-top: 4px;
    display: block;
  }

  /* ─── SECTIONS ─── */
  .section {
    padding: 72px 24px;
  }

  .section-inner {
    max-width: 1440px;
    margin: 0 auto;
  }

  .section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .section-label::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--red);
  }

  .section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    color: #111827;
    margin-bottom: 20px;
  }

  .section-subtitle {
    font-size: 17px;
    color: var(--mid-gray);
    font-weight: 400;
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 40px;
  }

  /* ─── HOW IT WORKS ─── */
  .section-how { background: var(--off-white); }

  .process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--light-gray);
    margin-top: 48px;
  }

  .process-step {
    background: var(--white);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
  }

  .process-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 80px;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.18;
  }

  .process-step h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--navy-dark);
    margin-bottom: 12px;
  }

  .process-step p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
  }

  /* ─── WHY TPS SECTION ─── */
  .why-tps-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 100px;
    align-items: start;
  }

  .why-tps-header {
    min-width: 0;
    overflow: hidden;
  }

  .section-why-tps .section-title {
    font-size: clamp(34px, 3vw, 52px);
    max-width: 100%;
    word-break: break-word;
  }

  .section-why-tps .section-subtitle {
    font-size: 18px;
    max-width: 100%;
  }

  .why-tps-link {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    text-decoration: none;
    margin-top: 24px;
    transition: color 0.2s;
  }

  .why-tps-link:hover { color: var(--navy-dark); }

  /* ─── FEATURE CARDS ─── */
  .feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--light-gray);
  }

  .feature-card {
    background: var(--white);
    padding: 48px 36px;
    position: relative;
    transition: all 0.25s;
    overflow: hidden;
  }

  .feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 0;
    background: var(--red);
    transition: height 0.3s;
  }

  .feature-card:hover::before { height: 100%; }
  .feature-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }

  .feature-icon {
    width: 56px;
    height: 56px;
    background: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  }

  .feature-icon svg { width: 28px; height: 28px; }

  .feature-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--navy-dark);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
  }

  .feature-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
  }

  /* ─── DARK SECTION ─── */
  .section-dark {
    background: #111827;
    color: var(--white);
  }

  .section-dark .section-title { color: var(--white); }
  .section-dark .section-subtitle { color: rgba(255,255,255,0.6); }

  /* ─── PRODUCTS GRID ─── */
  .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .product-card {
    background: var(--off-white);
    border: 1px solid var(--light-gray);
    padding: 40px 32px;
    position: relative;
    cursor: pointer;
    transition: all 0.25s;
  }

  .product-card:hover {
    border-color: var(--red);
    box-shadow: 0 12px 40px rgba(204,0,0,0.1);
    transform: translateY(-3px);
  }

  .product-badge {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    margin-bottom: 20px;
  }

  .product-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--navy-dark);
    margin-bottom: 12px;
  }

  .product-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .product-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .product-link::after {
    content: '→';
    transition: transform 0.2s;
  }

  .product-card:hover .product-link::after { transform: translateX(4px); }

  /* ─── PRODUCT CARD DARK VARIANT ─── */
  .product-card-dark {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
  }

  .product-card-dark h3 { color: var(--white); }
  .product-card-dark p { color: rgba(255,255,255,0.6); }
  .product-card-dark .product-link { color: var(--red-bright); }
  .product-card-dark .product-badge { opacity: 0.9; }

  .product-card-dark:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--red);
    box-shadow: 0 12px 40px rgba(204,0,0,0.2);
  }

  .products-cta {
    text-align: center;
    margin-top: 48px;
  }

  /* ─── TESTIMONIALS ─── */
  .section-testimonials { background: var(--off-white); }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
  }

  .testimonial-card {
    background: var(--white);
    border-left: 4px solid var(--red);
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 28px;
  }

  .testimonial-quote {
    font-size: 17px;
    color: #444;
    line-height: 1.75;
    font-style: italic;
  }

  .testimonial-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--navy-dark);
  }

  .testimonial-role {
    font-size: 13px;
    color: var(--mid-gray);
    margin-top: 4px;
  }

  /* ─── CTA BADGE ─── */
  .cta-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 5px 14px;
    border: 1px solid rgba(255,255,255,0.4);
    margin-bottom: 12px;
  }

  /* ─── ABOUT PAGE ─── */
  .about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .about-visual {
    background: #111827;
    padding: 60px;
    position: relative;
    overflow: hidden;
  }

  .about-visual::after {
    content: 'TPS';
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 160px;
    font-weight: 900;
    color: rgba(255,255,255,0.04);
    line-height: 1;
    pointer-events: none;
  }

  .about-visual-logo {
    width: 100%;
    max-width: 300px;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .about-tagline {
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-top: 32px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
  }

  .about-tagline span { color: var(--red-bright); }

  .value-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 36px;
  }

  .value-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 15px;
    color: #444;
    line-height: 1.6;
  }

  .value-list li::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: var(--red);
    flex-shrink: 0;
    margin-top: 6px;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  }

  /* ─── PARTNER PROGRAM ─── */
  .partner-hero {
    background: #111827;
    padding: 100px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .partner-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 30px,
      rgba(255,255,255,0.02) 30px,
      rgba(255,255,255,0.02) 31px
    );
  }

  .partner-hero-content { position: relative; z-index: 1; }

  .partner-hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(48px, 7vw, 84px);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white);
    line-height: 0.95;
    margin-bottom: 24px;
  }

  .partner-hero h1 span { color: var(--red-bright); }

  .partner-hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
  }

  .tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--light-gray);
    margin-top: 60px;
  }

  .tier-card {
    background: var(--white);
    padding: 48px 36px;
    text-align: center;
    position: relative;
  }

  .tier-card.featured {
    background: var(--navy-dark);
    color: var(--white);
  }

  .tier-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--mid-gray);
    margin-bottom: 12px;
  }

  .tier-card.featured .tier-label { color: rgba(255,255,255,0.5); }

  .tier-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--navy-dark);
    margin-bottom: 8px;
  }

  .tier-card.featured .tier-name { color: var(--white); }

  .tier-fee {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 52px;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
    margin: 20px 0 8px;
  }

  .tier-fee-label {
    font-size: 13px;
    color: #888;
    margin-bottom: 32px;
  }

  .tier-card.featured .tier-fee-label { color: rgba(255,255,255,0.5); }

  .tier-features {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
  }

  .tier-features li {
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .tier-card.featured .tier-features li { color: rgba(255,255,255,0.75); }

  .tier-features li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--red);
    color: var(--white);
    font-size: 11px;
    font-weight: 900;
    flex-shrink: 0;
    border-radius: 2px;
  }

  /* ─── CONTACT ─── */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
  }

  .contact-info h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--navy-dark);
    line-height: 1;
    margin-bottom: 20px;
  }

  .contact-info p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
  }

  .contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }

  .contact-icon {
    width: 44px;
    height: 44px;
    background: var(--navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .contact-icon svg { width: 20px; height: 20px; }

  .contact-item-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 4px;
  }

  .contact-item-value {
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .form-group label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--navy-dark);
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    background: var(--off-white);
    border: 2px solid var(--light-gray);
    padding: 14px 16px;
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
    border-radius: 0;
    -webkit-appearance: none;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--navy);
  }

  .form-group textarea { resize: vertical; min-height: 120px; }

  /* ─── WARRANTY ─── */
  .warranty-header {
    background: #111827;
    padding: 80px 40px;
    text-align: center;
  }

  .warranty-header h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(44px, 6vw, 72px);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
  }

  .warranty-header p {
    font-size: 17px;
    color: rgba(255,255,255,0.65);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
  }

  .warranty-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
  }

  .warranty-card {
    background: var(--off-white);
    border-top: 4px solid var(--navy-dark);
    padding: 40px 32px;
  }

  .warranty-card.highlight {
    background: var(--navy-dark);
    border-top-color: var(--red);
  }

  .warranty-year {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 72px;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
    margin-bottom: 4px;
  }

  .warranty-year-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--mid-gray);
    margin-bottom: 20px;
  }

  .warranty-card.highlight .warranty-year-label { color: rgba(255,255,255,0.5); }

  .warranty-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--navy-dark);
    margin-bottom: 12px;
  }

  .warranty-card.highlight h3 { color: var(--white); }

  .warranty-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
  }

  .warranty-card.highlight p { color: rgba(255,255,255,0.65); }

  /* ─── FOOTER ─── */
  footer {
    background: #0b1120;
    padding: 48px 24px 28px;
    border-top: 3px solid var(--red);
  }

  .footer-inner {
    max-width: 1440px;
    margin: 0 auto;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }

  .footer-brand img { height: 48px; margin-bottom: 20px; }

  .footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    max-width: 280px;
  }

  .footer-col h4,
  .footer-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 20px;
  }

  .footer-links {
    display: contents;
  }

  .footer-col ul,
  .footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

  .footer-col ul li a,
  .footer-links ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
  }

  .footer-col ul li a:hover,
  .footer-links ul li a:hover { color: var(--white); }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
  }

  /* ─── UTILITY ─── */
  .text-red { color: var(--red); }
  .mb-0 { margin-bottom: 0; }
  .mt-60 { margin-top: 60px; }

  .divider {
    width: 60px;
    height: 3px;
    background: var(--red);
    margin: 24px 0;
  }

  .cta-band {
    background: var(--red);
    padding: 48px 24px;
  }

  .cta-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .cta-band h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 8px;
  }

  .cta-band p {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0;
  }

  .btn-white {
    background: var(--white);
    color: var(--red);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 40px;
    border: none;
    cursor: pointer;
    display: inline-block;
    transition: all 0.2s;
  }

  .btn-white:hover {
    background: var(--navy-dark);
    color: var(--white);
  }

  /* ─── CUSTOMER SCROLL BAR ─── */
  .customers-bar {
    background: var(--off-white);
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
    padding: 28px 0;
    overflow: hidden;
  }

  .customers-label {
    text-align: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--mid-gray);
    margin-bottom: 20px;
  }

  .customers-track-wrapper {
    overflow: hidden;
    position: relative;
  }

  .customers-track-wrapper::before,
  .customers-track-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
  }

  .customers-track-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--off-white), transparent);
  }

  .customers-track-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, var(--off-white), transparent);
  }

  .customers-track {
    display: flex;
    gap: 0;
    animation: scroll-logos 30s linear infinite;
    width: max-content;
  }

  .customers-track:hover { animation-play-state: paused; }

  @keyframes scroll-logos {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  .customer-logo-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    height: 64px;
    margin: 0 24px;
    padding: 0 28px;
    background: var(--white);
    border: 1px solid var(--light-gray);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dark-gray);
    white-space: nowrap;
    flex-shrink: 0;
  }

  .customer-logo-tile:hover {
    border-color: var(--red);
    color: var(--red);
  }

  @media (max-width: 900px) {
    .customer-logo-tile { min-width: 160px; font-size: 13px; margin: 0 16px; }
    .feature-grid,
    .products-grid,
    .process-grid,
    .testimonials-grid,
    .tiers-grid,
    .warranty-cards { grid-template-columns: 1fr; }
    .about-split,
    .contact-grid,
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
    .why-tps-layout { grid-template-columns: 1fr; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    nav { padding: 0 20px; }
    .section { padding: 48px 16px; }
    .cta-inner { flex-direction: column; text-align: center; }
    .hero-content { grid-template-columns: 1fr; gap: 32px; padding: 60px 24px; }
    .hero-trust-panel { display: none; }
    .footer-links { display: flex; flex-direction: column; gap: 32px; }
  }

