
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:       #1a2a6c;
      --navy-dark:  #0f1a47;
      --navy-mid:   #243580;
      --teal:       #00a896;
      --teal-light: #02c39a;
      --red-accent: #cc2229;
      --magenta:    #c0306a;
      --gold:       #f0a500;
      --white:      #ffffff;
      --off-white:  #f4f7fb;
      --gray-100:   #eef1f8;
      --gray-200:   #d8dff0;
      --gray-500:   #7a88b0;
      --gray-700:   #3a4a72;
      --text-dark:  #0d1530;
      --text-body:  #3a4a72;
      --font-head:  'Roboto Condensed', 'Roboto', sans-serif;
      --font-body:  'Inter', 'Roboto', sans-serif;
      --radius:     16px;
      --radius-sm:  8px;
      --shadow:     0 8px 40px rgba(26,42,108,0.10);
      --shadow-lg:  0 20px 60px rgba(26,42,108,0.18);
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      color: var(--text-body);
      background: var(--white);
      overflow-x: hidden;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5vw; height: 72px;
      background: rgba(15,26,71,0.97);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .nav-logo img {
      height: 48px; display: block;
      object-fit: contain;
    }
    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a {
      color: rgba(255,255,255,0.72);
      text-decoration: none; font-size: 0.875rem;
      font-weight: 500; letter-spacing: 0.02em;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--teal-light); }
    .nav-cta {
      background: var(--teal); color: var(--white) !important;
      padding: 0.45rem 1.25rem; border-radius: 50px;
      font-weight: 700 !important;
    }
    .nav-cta-clientes { background: rgba(255,255,255,0.1) !important; border: 1px solid rgba(255,255,255,0.28) !important; color: rgba(255,255,255,0.88) !important; }
    .nav-cta-clientes:hover { background: rgba(255,255,255,0.18) !important; }
    .nav-cta:hover { background: var(--teal-light) !important; }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
    .hamburger span { width: 24px; height: 2px; background: white; border-radius: 2px; display: block; }
    .nav-wp {
      display: flex; align-items: center; justify-content: center;
      width: 38px; height: 38px; border-radius: 50%;
      background: #25d366; color: white;
      flex-shrink: 0; transition: background 0.2s, transform 0.2s;
      box-shadow: 0 0 0 0 rgba(37,211,102,0.4);
      animation: wp-pulse 2.5s ease-in-out infinite;
    }
    .nav-wp svg { width: 20px; height: 20px; }
    .nav-wp:hover { background: #1ebe5d; transform: scale(1.08); animation: none; }
    @keyframes wp-pulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
      60%       { box-shadow: 0 0 0 7px rgba(37,211,102,0); }
    }

    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      background: var(--navy-dark);
      position: relative;
      display: flex; align-items: center;
      overflow: hidden; padding-top: 72px;
    }
    .hero-bg-img {
      position: absolute; inset: 0;
      background-image: url('img/hero-bg.jpg');
      background-size: cover;
      background-position: center 35%;
      opacity: 0.14;
    }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(125deg, rgba(15,26,71,0.96) 45%, rgba(26,42,108,0.55) 100%);
    }
    .hero-grid {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(0,168,150,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,168,150,0.035) 1px, transparent 1px);
      background-size: 56px 56px;
    }
    .hero-content {
      position: relative; z-index: 2;
      max-width: 1200px; margin: 0 auto;
      padding: 5rem 5vw 4rem;
      display: grid;
      grid-template-columns: 55% 1fr;
      gap: 4rem; align-items: center; width: 100%;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: rgba(0,168,150,0.13);
      border: 1px solid rgba(0,168,150,0.38);
      color: var(--teal-light);
      padding: 0.35rem 1rem; border-radius: 50px;
      font-size: 0.76rem; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase;
      margin-bottom: 1.5rem;
      animation: fadeUp 0.6s ease both;
    }
    .hero-badge-dot {
      width: 6px; height: 6px;
      background: var(--teal-light); border-radius: 50%;
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%,100% { opacity:1; transform:scale(1); }
      50% { opacity:0.35; transform:scale(1.5); }
    }
    h1 {
      font-family: var(--font-head);
      font-size: clamp(2.6rem, 4.8vw, 4rem);
      font-weight: 900;
      line-height: 1.08;
      color: var(--white);
      margin-bottom: 1.25rem;
      letter-spacing: -0.01em;
      animation: fadeUp 0.7s 0.1s ease both;
    }
    h1 .accent { color: var(--teal-light); }
    h1 .strike-red {
      position: relative; display: inline-block;
    }
    h1 .strike-red::after {
      content: '';
      position: absolute; bottom: -8px; left: 0; right: 0;
      height: 4px; background: var(--red-accent);
      border-radius: 2px;
    }
    .hero-sub {
      font-size: 1.05rem; color: rgba(255,255,255,0.6);
      margin-bottom: 2.5rem; max-width: 500px;
      font-weight: 300; line-height: 1.7;
      animation: fadeUp 0.7s 0.2s ease both;
    }
    .hero-actions {
      display: flex; gap: 1rem; flex-wrap: wrap;
      animation: fadeUp 0.7s 0.3s ease both;
    }
    .btn-primary {
      background: var(--teal); color: var(--white);
      padding: 0.9rem 2rem; border-radius: 50px;
      font-weight: 700; font-size: 0.9rem;
      text-decoration: none; border: none; cursor: pointer;
      transition: all 0.25s;
      display: inline-flex; align-items: center; gap: 0.5rem;
      box-shadow: 0 4px 24px rgba(0,168,150,0.38);
      font-family: var(--font-body); letter-spacing: 0.01em;
    }
    .btn-primary:hover {
      background: var(--teal-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(0,168,150,0.5);
    }
    .btn-ghost {
      background: transparent; color: rgba(255,255,255,0.82);
      padding: 0.9rem 2rem; border-radius: 50px;
      font-weight: 500; font-size: 0.9rem;
      text-decoration: none; border: 1px solid rgba(255,255,255,0.22);
      transition: all 0.25s;
      display: inline-flex; align-items: center; gap: 0.5rem;
      font-family: var(--font-body);
    }
    .btn-ghost:hover {
      border-color: rgba(255,255,255,0.55);
      background: rgba(255,255,255,0.05);
    }
    .hero-stats {
      display: flex; gap: 2.5rem; margin-top: 3rem;
      animation: fadeUp 0.7s 0.4s ease both;
    }
    .stat-num {
      font-family: var(--font-head);
      font-size: 2.4rem; font-weight: 900;
      color: var(--white); line-height: 1;
      letter-spacing: -0.02em;
    }
    .stat-num span { color: var(--teal-light); }
    .stat-label {
      font-size: 0.72rem; color: rgba(255,255,255,0.45);
      text-transform: uppercase; letter-spacing: 0.07em;
      margin-top: 0.25rem;
    }

    /* Hero image panel */
    .hero-visual {
      animation: fadeRight 0.9s 0.35s ease both;
      position: relative;
    }
    .hero-img-frame {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(0,0,0,0.55);
      line-height: 0;
      border: 1px solid rgba(255,255,255,0.08);
    }
    .hero-img-frame img {
      width: 100%; display: block;
      border-radius: 20px;
      object-fit: cover;
      aspect-ratio: 3/2;
    }
    .hero-badge-float {
      position: absolute; bottom: -18px; left: -18px;
      background: var(--white); border-radius: 14px;
      padding: 1rem 1.3rem;
      box-shadow: 0 12px 40px rgba(0,0,0,0.22);
      display: flex; align-items: center; gap: 0.8rem;
      min-width: 210px;
    }
    .hbf-icon {
      width: 44px; height: 44px; flex-shrink: 0;
      border-radius: 11px;
      background: linear-gradient(135deg, var(--teal), var(--navy));
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem;
    }
    .hbf-label { font-size: 0.68rem; color: var(--gray-500); font-weight: 500; }
    .hbf-value {
      font-family: var(--font-head);
      font-size: 1rem; font-weight: 700; color: var(--text-dark);
    }
    .hero-dot {
      position: absolute; top: -16px; right: -16px;
      width: 72px; height: 72px; border-radius: 50%;
      background: radial-gradient(var(--teal-light), transparent 70%);
      opacity: 0.45;
    }

    @keyframes fadeUp {
      from { opacity:0; transform:translateY(28px); }
      to { opacity:1; transform:translateY(0); }
    }
    @keyframes fadeRight {
      from { opacity:0; transform:translateX(36px); }
      to { opacity:1; transform:translateX(0); }
    }

    /* ── TRUST BAR ── */
    .trust-bar {
      background: var(--off-white);
      padding: 1.75rem 5vw;
      border-bottom: 1px solid var(--gray-200);
    }
    .trust-inner {
      max-width: 1200px; margin: 0 auto;
      display: flex; align-items: center; gap: 3rem; flex-wrap: wrap;
    }
    .trust-label {
      font-size: 0.72rem; text-transform: uppercase;
      letter-spacing: 0.1em; color: var(--gray-500); font-weight: 600;
      white-space: nowrap;
    }
    .trust-logos { display: flex; gap: 2.5rem; align-items: center; flex-wrap: wrap; }
    .trust-item {
      font-family: var(--font-head); font-weight: 700;
      font-size: 0.92rem; color: var(--gray-500);
      letter-spacing: 0.04em; opacity: 0.7;
    }

    /* ── COMMON SECTION ── */
    section { padding: 6rem 5vw; }
    .sec { max-width: 1200px; margin: 0 auto; }
    .section-tag {
      display: inline-block; font-size: 0.72rem;
      font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.13em; color: var(--teal);
      background: rgba(0,168,150,0.09);
      padding: 0.28rem 0.9rem; border-radius: 50px;
      margin-bottom: 0.9rem;
      font-family: var(--font-body);
    }
    h2 {
      font-family: var(--font-head);
      font-size: clamp(1.9rem, 3.2vw, 2.75rem);
      font-weight: 900; color: var(--text-dark);
      line-height: 1.1; margin-bottom: 1rem;
      letter-spacing: -0.01em;
    }
    .section-lead {
      font-size: 1.05rem; color: var(--text-body);
      max-width: 580px; font-weight: 300; line-height: 1.7;
    }

    /* ── VALOR ── */
    #valor { background: var(--white); }
    .valor-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 5rem; align-items: center; margin-top: 4rem;
    }
    /* Image frame with proper aspect ratio */
    .valor-img-wrap {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      line-height: 0;
      aspect-ratio: 4/3;
    }
    .valor-img-wrap img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
    }
    .valor-points { display: flex; flex-direction: column; gap: 1.25rem; }
    .valor-point {
      display: flex; gap: 1.25rem; align-items: flex-start;
      padding: 1.25rem; border-radius: var(--radius-sm);
      background: var(--off-white); border: 1px solid var(--gray-100);
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .valor-point:hover { box-shadow: var(--shadow); transform: translateX(5px); }
    .vi { width: 46px; height: 46px; flex-shrink: 0; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; }
    .vi.teal { background: rgba(0,168,150,0.11); }
    .vi.navy { background: rgba(26,42,108,0.08); }
    .vi.red  { background: rgba(204,34,41,0.07); }
    .vp-title {
      font-family: var(--font-head); font-weight: 700;
      font-size: 0.95rem; color: var(--text-dark); margin-bottom: 0.3rem;
    }
    .vp-text { font-size: 0.88rem; color: var(--text-body); line-height: 1.65; }

    /* ── SERVICIOS ── */
    #servicios { background: var(--off-white); }
    .services-grid {
      display: grid; grid-template-columns: repeat(2,1fr);
      gap: 1.5rem; margin-top: 3rem;
    }
    .svc {
      background: var(--white); border-radius: var(--radius);
      padding: 2rem; border: 1px solid var(--gray-200);
      transition: all 0.3s; position: relative; overflow: hidden;
    }
    .svc::before {
      content: ''; position: absolute;
      top: 0; left: 0; right: 0; height: 4px;
    }
    .svc.s1::before { background: var(--teal); }
    .svc.s2::before { background: var(--red-accent); }
    .svc.s3::before { background: var(--navy); }
    .svc.s4::before { background: var(--magenta); }
    .svc:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
    .svc-icon {
      width: 54px; height: 54px; border-radius: 13px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.55rem; margin-bottom: 1.25rem;
    }
    .s1 .svc-icon { background: rgba(0,168,150,0.10); }
    .s2 .svc-icon { background: rgba(204,34,41,0.08); }
    .s3 .svc-icon { background: rgba(26,42,108,0.08); }
    .s4 .svc-icon { background: rgba(192,48,106,0.08); }
    .svc-title {
      font-family: var(--font-head); font-size: 1.1rem;
      font-weight: 700; color: var(--text-dark); margin-bottom: 0.7rem;
    }
    .svc-prob {
      font-size: 0.72rem; color: var(--gray-500); font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.4rem;
      font-family: var(--font-body);
    }
    .svc-desc { font-size: 0.88rem; color: var(--text-body); margin-bottom: 1rem; line-height: 1.65; }
    .svc-result {
      display: flex; align-items: center; gap: 0.5rem;
      font-size: 0.82rem; color: var(--teal); font-weight: 600;
      border-top: 1px solid var(--gray-100); padding-top: 1rem;
      font-family: var(--font-body);
    }

    /* ── DIFERENCIADORES (dark) ── */
    #diferenciadores { background: var(--navy-dark); }
    #diferenciadores h2 { color: var(--white); }
    #diferenciadores .section-tag { color: var(--teal-light); background: rgba(2,195,154,0.10); }
    .diff-grid {
      display: grid; grid-template-columns: repeat(3,1fr);
      gap: 1.5rem; margin-top: 3rem;
    }
    .diff-card {
      padding: 2rem; border-radius: var(--radius);
      border: 1px solid rgba(255,255,255,0.07);
      background: rgba(255,255,255,0.04);
      transition: all 0.3s;
    }
    .diff-card:hover {
      background: rgba(255,255,255,0.08);
      border-color: rgba(0,168,150,0.28);
      transform: translateY(-4px);
    }
    .diff-num {
      font-family: var(--font-head); font-size: 2.8rem; font-weight: 900;
      color: var(--teal-light); line-height: 1; margin-bottom: 0.6rem;
    }
    .diff-title {
      font-family: var(--font-head); font-size: 0.98rem; font-weight: 700;
      color: var(--white); margin-bottom: 0.5rem;
    }
    .diff-text { font-size: 0.86rem; color: rgba(255,255,255,0.48); line-height: 1.65; }

    /* ── MISIÓN / VISIÓN ── */
    #mision { background: var(--white); }
    .mv-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 2rem; margin-top: 3rem;
    }
    .mv-card {
      padding: 2.5rem; border-radius: var(--radius); position: relative; overflow: hidden;
    }
    .mv-card.mission { background: var(--navy); }
    .mv-card.vision  { background: var(--off-white); border: 1px solid var(--gray-200); }
    .mv-label {
      font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.13em; margin-bottom: 0.9rem;
      font-family: var(--font-body);
    }
    .mission .mv-label { color: var(--teal-light); }
    .vision  .mv-label { color: var(--teal); }
    .mv-card h3 {
      font-family: var(--font-head); font-size: 1.35rem; font-weight: 800;
      margin-bottom: 1rem; line-height: 1.2; letter-spacing: -0.01em;
    }
    .mission h3 { color: var(--white); }
    .vision  h3 { color: var(--text-dark); }
    .mv-card p { font-size: 0.92rem; line-height: 1.75; }
    .mission p { color: rgba(255,255,255,0.62); }
    .vision  p { color: var(--text-body); }

    /* ── RESULTADOS ── */
    #resultados { background: var(--off-white); }
    .results-grid {
      display: grid; grid-template-columns: repeat(4,1fr);
      gap: 1.5rem; margin-top: 3rem;
    }
    .res-card {
      background: var(--white); border-radius: var(--radius);
      padding: 2rem 1.5rem; text-align: center;
      border: 1px solid var(--gray-200); box-shadow: var(--shadow);
      transition: transform 0.3s;
    }
    .res-card:hover { transform: translateY(-5px); }
    .res-icon { font-size: 2rem; margin-bottom: 0.75rem; }
    .res-pct {
      font-family: var(--font-head); font-size: 2.5rem; font-weight: 900;
      color: var(--navy); line-height: 1; letter-spacing: -0.02em;
    }
    .res-pct span { color: var(--teal); }
    .res-label { font-size: 0.83rem; color: var(--text-body); margin-top: 0.5rem; font-weight: 400; }

    /* ── CLIENTES / LOGOS CAROUSEL ── */
    #testimonios { background: var(--white); }

    /* Logo carousel */
    .logos-section {
      background: var(--off-white);
      padding: 3.5rem 0;
      overflow: hidden;
      border-top: 1px solid var(--gray-200);
      border-bottom: 1px solid var(--gray-200);
      margin-bottom: 5rem;
    }
    .logos-label {
      text-align: center;
      font-size: 0.72rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.13em;
      color: var(--gray-500); margin-bottom: 2rem;
      font-family: var(--font-body);
    }
    .logos-track-wrap {
      position: relative; overflow: hidden;
    }
    /* Fade edges */
    .logos-track-wrap::before,
    .logos-track-wrap::after {
      content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
      pointer-events: none;
    }
    .logos-track-wrap::before {
      left: 0;
      background: linear-gradient(90deg, var(--off-white) 0%, transparent 100%);
    }
    .logos-track-wrap::after {
      right: 0;
      background: linear-gradient(90deg, transparent 0%, var(--off-white) 100%);
    }
    .logos-track {
      display: flex; align-items: center; gap: 0;
      width: max-content;
      animation: logoScroll 32s linear infinite;
    }
    .logos-track:hover { animation-play-state: paused; }
    @keyframes logoScroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    .logo-item, a.logo-item {
      display: flex; align-items: center; justify-content: center;
      padding: 0 2.5rem;
      height: 72px;
      border-right: 1px solid var(--gray-200);
      min-width: 180px;
      transition: opacity 0.2s, filter 0.2s;
      cursor: pointer;
      text-decoration: none;
    }
    .logo-item:last-child { border-right: none; }
    .logo-item:hover { opacity: 1 !important; filter: brightness(0.85); }
    .logo-svg { width: auto; height: 44px; opacity: 0.65; transition: opacity 0.2s; }
    .logo-item:hover .logo-svg { opacity: 1; }

    /* testimonials CSS removed */

    /* ── BUSES RED ── */
    #buses-red { background: var(--navy-dark); position: relative; overflow: hidden; }
    .buses-bg-img {
      position: absolute; inset: 0;
      background-image: url('img/buses-bg.jpg');
      background-size: cover; background-position: center;
      opacity: 0.10;
    }
    .buses-content {
      position: relative; z-index: 2;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 4rem; align-items: center;
    }
    .buses-text h2 { color: var(--white); }
    .buses-text .section-tag { color: var(--teal-light); background: rgba(2,195,154,0.10); }
    .buses-text p { color: rgba(255,255,255,0.58); font-size: 1rem; margin: 1.25rem 0 2rem; max-width: 450px; line-height: 1.7; }
    .bus-features { display: flex; flex-direction: column; gap: 0.85rem; }
    .bus-feat {
      display: flex; align-items: center; gap: 1rem;
      padding: 0.9rem 1.2rem;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.09);
      border-radius: var(--radius-sm);
      color: rgba(255,255,255,0.82); font-size: 0.88rem; font-weight: 500;
      transition: background 0.2s;
    }
    .bus-feat:hover { background: rgba(0,168,150,0.11); }
    .bf-ic {
      width: 34px; height: 34px; flex-shrink: 0;
      border-radius: 8px; background: rgba(0,168,150,0.18);
      display: flex; align-items: center; justify-content: center; font-size: 0.95rem;
    }
    /* BUSES IMAGE — key fix: constrain height, cover crop */
    .buses-img-wrap {
      border-radius: 20px; overflow: hidden; line-height: 0;
      box-shadow: 0 30px 60px rgba(0,0,0,0.45);
      border: 1px solid rgba(255,255,255,0.07);
      aspect-ratio: 16/9;
    }
    .buses-img-wrap img {
      width: 100%; height: 100%;
      object-fit: cover; display: block;
    }

    /* ── CTA / CONTACTO ── */
    #contacto { background: var(--white); }
    .cta-wrap {
      background: var(--navy-dark); border-radius: 24px;
      padding: 4rem; display: grid;
      grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
      position: relative; overflow: hidden;
    }
    .cta-wrap::before {
      content: ''; position: absolute; top: -80px; right: -80px;
      width: 320px; height: 320px; border-radius: 50%;
      background: radial-gradient(var(--teal), transparent 70%); opacity: 0.10;
    }
    .cta-text { position: relative; z-index: 1; }
    .cta-text h2 { color: var(--white); font-size: clamp(1.8rem, 2.8vw, 2.4rem); }
    .cta-text .section-tag { color: var(--teal-light); background: rgba(2,195,154,0.10); }
    .cta-text p { color: rgba(255,255,255,0.55); margin: 1rem 0 2rem; font-size: 0.98rem; line-height: 1.7; }
    .cta-items { display: flex; flex-direction: column; gap: 0.75rem; }
    .cta-item { display: flex; align-items: center; gap: 0.75rem; color: rgba(255,255,255,0.65); font-size: 0.9rem; }
    .cta-item strong { color: var(--white); }
    .form-wrap { position: relative; z-index: 1; }
    .cform { display: flex; flex-direction: column; gap: 1rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .fg { display: flex; flex-direction: column; gap: 0.38rem; }
    .fg label { font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.07em; font-family: var(--font-body); }
    .fg input, .fg textarea, .fg select {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.11);
      border-radius: var(--radius-sm);
      color: var(--white); padding: 0.75rem 1rem;
      font-family: var(--font-body); font-size: 0.9rem;
      transition: border-color 0.2s; outline: none; width: 100%;
    }
    .fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,0.22); }
    .fg input:focus, .fg textarea:focus, .fg select:focus {
      border-color: var(--teal); background: rgba(0,168,150,0.07);
    }
    .fg select option { background: var(--navy-dark); color: var(--white); }
    .fg textarea { resize: vertical; min-height: 100px; }
    .btn-submit {
      background: var(--teal); color: var(--white);
      padding: 1rem 2rem; border-radius: 50px;
      font-weight: 700; font-size: 0.92rem;
      border: none; cursor: pointer; transition: all 0.25s;
      width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
      box-shadow: 0 4px 20px rgba(0,168,150,0.38);
      font-family: var(--font-body);
    }
    .hp-field { display: none !important; }
    .cf-turnstile { border-radius: var(--radius-sm); overflow: hidden; }
    .privacy-wrap { display: flex; flex-direction: column; gap: 0.5rem; }
    .privacy-chk { display: flex; align-items: flex-start; gap: 0.6rem; cursor: pointer; font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.4; }
    .privacy-chk input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; accent-color: var(--teal); width: 15px; height: 15px; cursor: pointer; }
    .privacy-toggle { background: none; border: none; color: var(--teal-light); text-decoration: underline; cursor: pointer; font-size: inherit; padding: 0; font-family: inherit; }
    .privacy-toggle:hover { color: var(--white); }
    .privacy-box { padding: 1rem 1.25rem; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); border-radius: var(--radius-sm); font-size: 0.78rem; color: rgba(255,255,255,0.6); line-height: 1.65; }
    .privacy-box strong { color: rgba(255,255,255,0.85); display: block; margin-bottom: 0.6rem; }
    .privacy-box p { margin-bottom: 0.5rem; }
    .privacy-box p:last-child { margin-bottom: 0; }
    .privacy-box a { color: var(--teal-light); }
    .btn-submit:hover {
      background: var(--teal-light); transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(0,168,150,0.52);
    }

    /* ── FOOTER ── */
    footer {
      background: #060d1e;
      color: rgba(255,255,255,0.38);
      padding: 3rem 5vw 2rem;
    }
    .footer-grid {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
      padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .footer-logo-img {
      height: 40px; display: block;
      object-fit: contain; margin-bottom: 1rem;
    }
    .footer-desc { font-size: 0.83rem; line-height: 1.7; color: rgba(255,255,255,0.38); }
    .fc h4 {
      font-family: var(--font-head); color: rgba(255,255,255,0.75);
      font-size: 0.82rem; font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.09em; margin-bottom: 1rem;
    }
    .fc ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
    .fc ul li a { color: rgba(255,255,255,0.38); text-decoration: none; font-size: 0.83rem; transition: color 0.2s; }
    .fc ul li a:hover { color: var(--teal-light); }
    .footer-bottom {
      max-width: 1200px; margin: 0 auto;
      display: flex; justify-content: space-between; align-items: center;
      padding-top: 1.5rem; font-size: 0.76rem;
    }
    .footer-bottom a { color: var(--teal); text-decoration: none; }

    /* ── RESPONSIVE ── */
    @media (max-width: 960px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .hero-content { grid-template-columns: 1fr; gap: 2.5rem; }
      .hero-visual { display: none; }
      .hero-stats { gap: 1.75rem; }
      .valor-grid, .mv-grid, .cta-wrap, .buses-content { grid-template-columns: 1fr; gap: 2.5rem; }
      .diff-grid { grid-template-columns: repeat(2,1fr); }
      .services-grid { grid-template-columns: 1fr; }
      .results-grid { grid-template-columns: repeat(2,1fr); }
      .logos-track-wrap::before, .logos-track-wrap::after { width: 60px; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
      .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
      .form-row { grid-template-columns: 1fr; }
      .cta-wrap { padding: 2.5rem 2rem; }
    }
    @media (max-width: 600px) {
      section { padding: 4rem 5vw; }
      .diff-grid { grid-template-columns: 1fr; }
      .results-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    }

    /* ── REVEAL ── */
    .reveal {
      opacity: 0; transform: translateY(22px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .reveal.in { opacity: 1; transform: translateY(0); }
    .d1 { transition-delay: 0.10s; }
    .d2 { transition-delay: 0.20s; }
    .d3 { transition-delay: 0.30s; }
    .d4 { transition-delay: 0.40s; }
  