/* ───── TOKENS ───── */
:root {
    --navy:   #0E213D;
    --mid:    #103A5B;
    --steel:  #A0ABA0;
    --silver: #F113F6;
    --frost:  #F5F7FA;
    --white:  #FFFFFF;
    --accent: #103A5B;
    --line:   rgba(14,33,61,.10);
    --ease:   cubic-bezier(.4,0,.2,1);
  }

  /* ───── RESET ───── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; font-size: 16px; }
  body {
    font-family: 'Montserrat', sans-serif;
    background: var(--white);
    color: var(--navy);
    overflow-x: hidden;
  }
  img { display: block; max-width: 100%; }
  a { text-decoration: none; color: inherit; }

  /* ───── NAV ───── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%;
    height: 76px;
    background: transparent;
    transition: background .4s var(--ease), box-shadow .3s var(--ease);
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  nav.scrolled {
    background: rgba(8,18,32,.94);
    backdrop-filter: blur(16px);
    border-bottom-color: rgba(255,255,255,.06);
    box-shadow: 0 8px 40px rgba(0,0,0,.25);
  }

  .nav-logo {
    display: flex; align-items: center; gap: 12px;
  }
  .nav-logo svg { width: 40px; height: 40px; }
  .nav-brand { display: flex; flex-direction: column; line-height: 1; }
  .nav-brand .name {
    font-weight: 900; font-size: .95rem; letter-spacing: .18em;
    color: var(--white);
  }
  .nav-brand .sub {
    font-weight: 300; font-size: .62rem; letter-spacing: .22em;
    color: rgba(255,255,255,.45); text-transform: uppercase;
  }

  .nav-links {
    display: flex; gap: 36px; list-style: none;
  }
  .nav-links a {
    font-size: .78rem; font-weight: 600; letter-spacing: .12em;
    text-transform: uppercase; color: rgba(255,255,255,.65);
    position: relative; padding-bottom: 2px;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1.5px; background: var(--white);
    transition: width .3s var(--ease);
  }
  .nav-links a:hover { color: var(--white); }
  .nav-links a:hover::after { width: 100%; }

  .nav-cta {
    border: 1px solid rgba(255,255,255,.35); color: var(--white);
    padding: 10px 24px; border-radius: 2px;
    font-size: .75rem; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase;
    transition: background .25s var(--ease), border-color .25s, transform .2s;
  }
  .nav-cta:hover { background: var(--white); color: var(--navy); border-color: var(--white); transform: translateY(-1px); }

  .burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
  .burger span { display: block; width: 24px; height: 2px; background: var(--navy); transition: .3s; }

  /* ───── HERO ───── */
  #hero {
    min-height: 100vh;
    position: relative;
    background: var(--navy);
    display: flex; flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
  }

  /* geometric background rings */
  .hero-rings {
    position: absolute; inset: 0; pointer-events: none;
  }
  .hero-rings span {
    position: absolute; border-radius: 50%;
    border: 1px solid rgba(255,255,255,.055);
  }
  .hero-rings span:nth-child(1) { width: 640px; height: 640px; top: -160px; right: -140px; }
  .hero-rings span:nth-child(2) { width: 960px; height: 960px; top: -320px; right: -320px; }
  .hero-rings span:nth-child(3) { width: 300px; height: 300px; bottom: 60px; left: -80px; }
  .hero-rings span:nth-child(4) { width: 180px; height: 180px; top: 30%; left: 38%; }

  /* subtle diagonal grid lines */
  .hero-grid-lines {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
      linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 80px 80px;
  }

  /* glow blob */
  .hero-glow {
    position: absolute;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16,58,91,.7) 0%, transparent 70%);
    top: -200px; right: -100px;
    pointer-events: none;
  }

  /* thin vertical line accent left */
  .hero-vline {
    position: absolute; left: 8%; top: 0; bottom: 0;
    width: 1px; background: rgba(255,255,255,.06);
  }

  /* scrolling word on right edge */
  .hero-sideword {
    position: absolute; right: 3.5%; top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center center;
    font-size: .58rem; font-weight: 700; letter-spacing: .36em;
    text-transform: uppercase; color: rgba(255,255,255,.2);
    white-space: nowrap;
  }

  .hero-content {
    position: relative; z-index: 3;
    padding: 0 8% 9vh;
    max-width: 900px;
  }

  .hero-eyebrow {
    display: flex; align-items: center; gap: 16px;
    font-size: .65rem; font-weight: 700; letter-spacing: .32em;
    text-transform: uppercase; color: rgba(255,255,255,.45);
    margin-bottom: 36px;
  }
  .hero-eyebrow-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(255,255,255,.3); flex-shrink: 0;
  }

  .hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.8rem, 8vw, 8rem);
    font-weight: 300; line-height: .96;
    color: var(--white);
    margin-bottom: 40px;
    letter-spacing: -.01em;
  }
  .hero-headline em {
    font-style: italic;
    color: rgba(255,255,255,.55);
  }
  .hero-headline .outline-text {
    -webkit-text-stroke: 1px rgba(255,255,255,.25);
    color: transparent;
  }

  .hero-divider {
    width: 64px; height: 1px;
    background: rgba(255,255,255,.25);
    margin-bottom: 28px;
  }

  .hero-sub {
    font-size: .9rem; font-weight: 300; line-height: 1.9;
    color: rgba(255,255,255,.5);
    max-width: 480px;
  }

  /* hero car image */
  .hero-car {
    position: absolute;
    bottom: 0;
    right: -2%;
    width: 58%;
    max-width: 820px;
    z-index: 2;
    pointer-events: none;
    filter: drop-shadow(0 40px 80px rgba(0,0,0,.45));
    /* animation: carFloat 6s ease-in-out infinite; */
  }
  @keyframes carFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
  }
  @media (max-width: 900px) {
    .hero-car {
      width: 90%;
      right: -5%;
      opacity: .18;
    }
  }
  .marquee-wrap {
    overflow: hidden; background: var(--navy); padding: 18px 0;
  }
  .marquee-track {
    display: flex; gap: 48px; width: max-content;
    animation: marquee 28s linear infinite;
  }
  .marquee-item {
    font-size: .7rem; font-weight: 700; letter-spacing: .22em;
    text-transform: uppercase; color: rgba(255,255,255,.55);
    white-space: nowrap; display: flex; align-items: center; gap: 48px;
  }
  .marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.3); }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* ───── FLEET ───── */
  #fleet {
    padding: 120px 8%;
  }
  .section-header { text-align: center; margin-bottom: 72px; }
  .section-tag {
    font-size: .68rem; font-weight: 700; letter-spacing: .3em;
    text-transform: uppercase; color: var(--mid);
    margin-bottom: 16px;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 300; line-height: 1.1; color: var(--navy);
  }
  .section-sub {
    font-size: .85rem; color: #718096; margin-top: 16px;
    max-width: 500px; margin-left: auto; margin-right: auto;
    line-height: 1.75;
  }
  .fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }
  .fleet-card {
    background: var(--frost);
    padding: 48px 36px 40px;
    position: relative; overflow: hidden;
    transition: background .3s var(--ease), transform .3s var(--ease);
    cursor: pointer;
  }
  .fleet-card:hover { background: var(--navy); transform: translateY(-4px); }
  .fleet-card:hover .fleet-cat,
  .fleet-card:hover .fleet-name,
  .fleet-card:hover .fleet-desc,
  .fleet-card:hover .fleet-features li { color: rgba(255,255,255,.8); }
  .fleet-card:hover .fleet-name { color: var(--white); }
  .fleet-card:hover .fleet-link { color: var(--white); border-color: rgba(255,255,255,.4); }
  .fleet-cat {
    font-size: .65rem; font-weight: 700; letter-spacing: .24em;
    text-transform: uppercase; color: var(--mid); margin-bottom: 20px;
    transition: color .3s;
  }
  .fleet-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 600; color: var(--navy);
    margin-bottom: 12px; transition: color .3s;
  }
  .fleet-desc {
    font-size: .8rem; color: #718096; line-height: 1.7;
    margin-bottom: 28px; transition: color .3s;
  }
  .fleet-features {
    list-style: none; display: flex; flex-direction: column; gap: 8px;
    margin-bottom: 36px;
  }
  .fleet-features li {
    font-size: .75rem; font-weight: 600; color: var(--navy);
    display: flex; align-items: center; gap: 10px;
    transition: color .3s;
  }
  .fleet-features li::before {
    content: ''; display: block; width: 18px; height: 1px; background: currentColor; flex-shrink: 0;
  }
  .fleet-link {
    font-size: .7rem; font-weight: 700; letter-spacing: .18em;
    text-transform: uppercase; color: var(--navy);
    border-bottom: 1px solid var(--navy); padding-bottom: 2px;
    transition: color .3s, border-color .3s;
    display: inline-block;
  }
  .fleet-price {
    position: absolute; top: 36px; right: 36px;
    text-align: right;
  }
  .fleet-price .from { font-size: .62rem; color: #a0aec0; letter-spacing: .12em; }
  .fleet-price .amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem; font-weight: 600; color: var(--navy);
    transition: color .3s;
  }
  .fleet-card:hover .fleet-price .amount { color: var(--white); }
  .fleet-price .per { font-size: .62rem; color: #a0aec0; }

  /* ───── WHY US ───── */
  #why {
    padding: 120px 8%;
    background: var(--white);
  }
  #why .section-title { color: var(--navy); }
  #why .section-tag { color: var(--mid); }
  #why .section-sub { color: #718096; }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 64px;
    border: 1px solid var(--line);
  }
  .why-card {
    padding: 52px 36px 48px;
    background: var(--white);
    border-right: 1px solid var(--line);
    border-left: 3px solid transparent;
    position: relative;
    transition: border-left-color .3s var(--ease), background .3s var(--ease);
  }
  .why-card:last-child { border-right: none; }
  .why-card:hover {
    border-left-color: var(--navy);
    background: var(--frost);
  }
  .why-icon {
    width: 40px; height: 40px; margin-bottom: 28px;
    color: var(--navy); opacity: .7;
  }
  .why-title {
    font-size: .88rem; font-weight: 700; color: var(--navy);
    margin-bottom: 12px; letter-spacing: .04em;
  }
  .why-text {
    font-size: .78rem; color: #718096; line-height: 1.8;
  }

  /* ───── CARS ───── */
  #cars {
    padding: 120px 8%;
    background: var(--white);
  }
  .cars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 72px;
  }
  .car-card {
    background: var(--white);
    border: 1px solid var(--line);
    overflow: hidden;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  }
  .car-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 56px rgba(14,33,61,.10);
  }
  .car-card-featured {
    border-color: var(--navy);
  }
  .car-img-wrap {
    position: relative;
    height: 190px;
    overflow: hidden;
    background: var(--frost);
  }
  .car-img {
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform .6s var(--ease);
  }
  .car-card:hover .car-img { transform: scale(1.04); }

  .car-img-1 { background-color: #f0ece6; background-image: url('../imagenes/sentra.webp'); background-size: contain; background-repeat: no-repeat; background-position: center; }
  .car-img-2 { background-color: #e8eaed; background-image: url('../imagenes/van.jpg'); background-size: contain; background-repeat: no-repeat; background-position: center; }
  .car-img-3 { background-color: #e4e8ec; background-image: url('../imagenes/kia-camionera.avif'); background-size: cover; background-position: center; }
  .car-img-4 { background-color: #e9ecef; background-image: url('../imagenes/kia-k3.webp'); background-size: cover; background-position: center; }

  .car-badge {
    position: absolute; top: 14px; left: 14px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(6px);
    padding: 5px 12px;
    font-size: .6rem; font-weight: 700; letter-spacing: .2em;
    text-transform: uppercase; color: var(--navy);
  }
  .car-badge-dark {
    background: var(--navy); color: var(--white);
  }
  .car-info { padding: 24px 24px 28px; }
  .car-header {
    display: flex; justify-content: space-between;
    align-items: flex-start; gap: 8px;
    margin-bottom: 18px;
  }
  .car-name {
    font-size: .95rem; font-weight: 700; color: var(--navy);
    letter-spacing: .02em;
  }
  .car-year {
    font-size: .68rem; color: #a0aec0;
    margin-top: 4px; letter-spacing: .06em;
  }
  .car-price { text-align: right; flex-shrink: 0; }
  .car-from {
    display: block; font-size: .6rem; color: #a0aec0;
    letter-spacing: .12em; text-transform: uppercase;
  }
  .car-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem; font-weight: 600; color: var(--navy);
    line-height: 1.1;
  }
  .car-per { font-size: .75rem; font-weight: 400; color: #a0aec0; }

  .car-specs {
    display: flex; gap: 14px; flex-wrap: wrap;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
  }
  .car-specs span {
    display: flex; align-items: center; gap: 5px;
    font-size: .68rem; font-weight: 600; color: #718096;
    letter-spacing: .04em;
  }
  .car-specs svg { width: 13px; height: 13px; flex-shrink: 0; }
  .car-cta {
    font-size: .68rem; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase; color: var(--navy);
    display: inline-flex; align-items: center;
    transition: gap .25s var(--ease), opacity .25s;
    opacity: .7;
  }
  .car-cta:hover { opacity: 1; }

  .cars-more {
    display: flex; align-items: center; gap: 24px;
    margin-top: 48px;
    justify-content: center;
  }
  
  .cars-more-line {
    width: 60px; height: 1px;
    background: var(--line);
    flex: none;
  }
  
  .cars-more-text {
    font-size: .78rem; color: #a0aec0;
    letter-spacing: .02em;
    text-align: center;
    white-space: normal;
  }
  
  .cars-more-text a {
    color: var(--navy); font-weight: 700;
    border-bottom: 1px solid var(--line);
    padding-bottom: 1px;
    transition: border-color .25s;
  }
  
  .cars-more-text a:hover { border-color: var(--navy); }

  /* ───── PROCESS ───── */
  #process {
    padding: 120px 8%;
    background: #F0F2F5;
  }
  #process .section-title { color: var(--navy); }
  #process .section-tag { color: var(--mid); }
  #process .section-sub { color: #718096; }
  .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 72px;
  }
  .process-step {
    padding: 44px 32px 40px;
    background: var(--white);
    position: relative;
    overflow: hidden;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  }
  .process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(14,33,61,.08);
  }
  .step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem; font-weight: 300;
    color: rgba(14,33,61,.06);
    line-height: 1; margin-bottom: 0;
    position: absolute; top: 12px; right: 20px;
    user-select: none; pointer-events: none;
  }
  .step-num-label {
    font-size: .62rem; font-weight: 700; letter-spacing: .26em;
    text-transform: uppercase; color: var(--mid);
    margin-bottom: 20px; display: block;
  }
  .step-title {
    font-size: .95rem; font-weight: 700; color: var(--navy);
    margin-bottom: 12px; letter-spacing: .02em;
  }
  .step-text {
    font-size: .78rem; color: #718096; line-height: 1.75;
  }
  .step-arrow { display: none; }

  /* ───── TESTIMONIALS ───── */
  #testimonials {
    padding: 120px 8%;
    background: var(--white);
  }
  #testimonials .section-title { color: var(--navy); }
  #testimonials .section-tag { color: var(--mid); }
  .testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 72px;
  }
  .testi-card {
    background: var(--white);
    padding: 44px 36px 40px;
    border: 1px solid var(--line);
    position: relative; overflow: hidden;
    transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
  }
  .testi-card::before {
    content: '\201C';
    position: absolute; top: 16px; right: 28px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 7rem; font-weight: 300; line-height: 1;
    color: rgba(14,33,61,.05);
    pointer-events: none;
  }
  .testi-card:nth-child(2) {
    background: var(--navy);
    border-color: var(--navy);
  }
  .testi-card:nth-child(2) .testi-quote { color: rgba(255,255,255,.9); }
  .testi-card:nth-child(2) .testi-name { color: var(--white); }
  .testi-card:nth-child(2) .testi-loc { color: rgba(255,255,255,.4); }
  .testi-card:nth-child(2) .testi-avatar { background: rgba(255,255,255,.15); color: var(--white); }
  .testi-card:nth-child(2) .star { color: rgba(255,255,255,.7); }
  .testi-card:nth-child(2)::before { color: rgba(255,255,255,.06); }
  .testi-card:hover {
    border-color: var(--navy);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(14,33,61,.09);
  }
  .testi-card:nth-child(2):hover { box-shadow: 0 12px 40px rgba(14,33,61,.3); }
  .testi-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; font-style: italic; font-weight: 300;
    color: var(--navy); line-height: 1.65; margin-bottom: 32px;
    position: relative; z-index: 1;
  }
  .testi-author {
    display: flex; align-items: center; gap: 14px;
  }
  .testi-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--frost); border: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    font-size: .78rem; font-weight: 700; color: var(--navy); flex-shrink: 0;
  }
  .testi-name {
    font-size: .82rem; font-weight: 700; color: var(--navy);
  }
  .testi-loc {
    font-size: .68rem; color: #a0aec0; letter-spacing: .1em; margin-top: 2px;
  }
  .testi-stars { display: flex; gap: 3px; margin-bottom: 20px; }
  .star { color: var(--navy); font-size: .72rem; }

  /* ───── DESTINATIONS ───── */
  #destinations {
    padding: 120px 8%;
  }
  .dest-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 260px 260px;
    gap: 2px;
    margin-top: 72px;
  }
  .dest-card {
    position: relative; overflow: hidden;
    background: var(--navy);
    display: flex; align-items: flex-end;
    padding: 32px;
    cursor: pointer;
  }
  .dest-card:first-child { grid-row: 1 / 3; }
  .dest-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #0E213D 0%, #103A5B 100%);
    transition: transform .6s var(--ease);
  }
  .dest-card:hover .dest-bg { transform: scale(1.04); }
  .dest-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(14,33,61,.9) 0%, rgba(14,33,61,.2) 60%);
  }
  .dest-content { position: relative; z-index: 2; }
  .dest-city {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 600; color: var(--white);
    line-height: 1.1;
  }
  .dest-card:first-child .dest-city { font-size: 3rem; }
  .dest-country {
    font-size: .65rem; font-weight: 600; letter-spacing: .22em;
    text-transform: uppercase; color: rgba(255,255,255,.5); margin-top: 6px;
  }
  .dest-tag {
    position: absolute; top: 24px; left: 24px; z-index: 2;
    background: rgba(255,255,255,.1); backdrop-filter: blur(8px);
    padding: 6px 14px; border-radius: 100px;
    font-size: .62rem; font-weight: 700; letter-spacing: .18em;
    text-transform: uppercase; color: rgba(255,255,255,.8);
  }
  /* geometric accents inside dest cards */
  .dest-geo {
    position: absolute; right: -30px; top: -30px; z-index: 1;
    width: 180px; height: 180px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,.06);
  }

  /* ───── CTA BAND ───── */
  #cta-band {
    padding: 100px 8%;
    background: var(--navy);
    display: flex; align-items: center; justify-content: space-between;
    gap: 40px; flex-wrap: wrap;
  }
  .cta-left .cta-eyebrow {
    font-size: .68rem; font-weight: 700; letter-spacing: .28em;
    text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 16px;
  }
  .cta-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 300; color: var(--white);
    line-height: 1.12;
  }
  .cta-headline em { font-style: italic; }
  .cta-actions { display: flex; gap: 16px; align-items: center; }
  .btn-light {
    background: var(--white); color: var(--navy);
    padding: 16px 36px; border-radius: 2px;
    font-size: .78rem; font-weight: 700; letter-spacing: .16em;
    text-transform: uppercase;
    transition: opacity .25s, transform .2s;
  }
  .btn-light:hover { opacity: .9; transform: translateY(-2px); }
  .btn-outline-light {
    border: 1.5px solid rgba(255,255,255,.3); color: rgba(255,255,255,.8);
    padding: 16px 36px; border-radius: 2px;
    font-size: .78rem; font-weight: 600; letter-spacing: .16em;
    text-transform: uppercase;
    transition: border-color .25s, color .25s;
  }
  .btn-outline-light:hover { border-color: var(--white); color: var(--white); }

  /* ───── FOOTER ───── */
  footer {
    background: #070F1C;
    color: rgba(255,255,255,.4);
    padding: 72px 8% 36px;
  }
  .footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px; padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .footer-brand .nav-brand .name { color: var(--white); }
  .footer-brand .nav-brand .sub { color: rgba(255,255,255,.3); }
  .footer-brand p {
    font-size: .78rem; line-height: 1.8; margin-top: 20px;
    max-width: 280px; color: rgba(255,255,255,.35);
  }
  .footer-col h4 {
    font-size: .65rem; font-weight: 700; letter-spacing: .24em;
    text-transform: uppercase; color: rgba(255,255,255,.6);
    margin-bottom: 20px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul li a {
    font-size: .78rem; color: rgba(255,255,255,.35);
    transition: color .25s;
  }
  .footer-col ul li a:hover { color: var(--white); }
  .footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 28px; flex-wrap: wrap; gap: 12px;
  }
  .footer-bottom p { 
    font-size: .7rem; 
    flex: 1;
    text-align: center;
  }
  .footer-legal { display: flex; gap: 24px; }
  .footer-legal a { font-size: .7rem; color: rgba(255,255,255,.3); transition: color .25s; }
  .footer-legal a:hover { color: var(--white); }

  .footer-col ul li,
    .footer-col ul li a {
      font-size: 0.875rem;
  }

  /* ───── SCROLL REVEAL ───── */
  /* .reveal {
    opacity: 0; transform: translateY(28px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: .1s; }
  .reveal-delay-2 { transition-delay: .2s; }
  .reveal-delay-3 { transition-delay: .3s; } */

  /* ───── MOBILE ───── */
  /* @media (max-width: 900px) {
    .hero-content { padding: 0 6% 7vh; }
    .hero-sideword { display: none; }
    .cars-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; border: none; gap: 2px; }
    .why-card { border-right: none; border-bottom: 1px solid var(--line); }
    .process-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .testi-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .nav-links, .nav-cta { display: none; }
    .burger { display: flex; }
    #cta-band { flex-direction: column; text-align: center; }
    .cta-actions { justify-content: center; }
  }
  @media (max-width: 560px) {
    .cars-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
  } */

/* ───── HERO CAR IMAGE ───── */
.hero-car {
  position: absolute;
  right: 0;
  bottom: -20px;
  width: 42%;
  max-width: 600px;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,.45));
}

.hero-car img {
  width: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 900px) {
  .hero-car {
    display: none;
  }
}