  :root {
    --navy: #080f1e;
    --navy-2: #0d1a30;
    --navy-3: #112240;
    --gold: #e8a020;
    --gold-light: #f5b940;
    --gold-pale: #ffefc0;
    --white: #f8f5ee;
    --muted: #8a9bb5;
    --border: rgba(232,160,32,0.15);
    --card-bg: #0d1a30;
    --card-hover: #132040;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 8px 40px rgba(0,0,0,0.4);
    --shadow-gold: 0 4px 30px rgba(232,160,32,0.2);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--navy);
    color: var(--white);
    font-family:  sans-serif;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
  }

  h1,h2,h3,h4 { font-family:  sans-serif; line-height: 1.2; }

  a { color: inherit; text-decoration: none; }

  img { display: block; max-width: 100%; }

  .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

  /* ── NOISE TEXTURE OVERLAY ── */
  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none; z-index: 0; opacity: .5;
  }

  /* ── HEADER ── */
  header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(8,15,30,0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    transition: box-shadow .3s;
  }
  header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.6); }

  .header-inner {
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
  }

  .logo { display: flex; align-items: center; gap: 10px; }
  .logo img { width: 42px; height: 42px; border-radius: 50%; }
  .logo-text { font-family:  sans-serif; font-weight: 800; font-size: 1.1rem; }
  .logo-text span { color: var(--gold); }

  nav { display: flex; align-items: center; gap: 28px; }
  nav a {
    font-size: .875rem; font-weight: 500; letter-spacing: .02em;
    color: var(--muted);
    transition: color .2s;
    position: relative;
  }
  nav a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
    background: var(--gold); transition: width .3s;
  }
  nav a:hover { color: var(--white); }
  nav a:hover::after { width: 100%; }

  .header-cta {
    display: flex; align-items: center; gap: 10px;
  }
  .btn-call {
    font-family:  sans-serif; font-size: .8rem; font-weight: 600;
    color: var(--gold); border: 1px solid rgba(232,160,32,.4);
    padding: 8px 16px; border-radius: 8px;
    transition: all .2s;
  }
  .btn-call:hover { background: rgba(232,160,32,.1); }

  .btn-wa {
    display: flex; align-items: center; gap: 7px;
    font-family:  sans-serif; font-size: .85rem; font-weight: 700;
    background: var(--gold); color: var(--navy);
    padding: 9px 18px; border-radius: 8px;
    transition: all .2s;
  }
  .btn-wa:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: var(--shadow-gold); }
  .btn-wa svg { flex-shrink: 0; }

  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: .3s; border-radius: 2px; }

  /* ── HERO ── */
  #hero {
    position: relative; overflow: hidden;
    min-height: 92vh;
    display: flex; align-items: center;
    padding: 80px 0 60px;
  }

  .hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(232,160,32,.08) 0%, transparent 70%),
                radial-gradient(ellipse 50% 40% at 20% 80%, rgba(13,26,48,.9) 0%, transparent 60%),
                linear-gradient(135deg, #080f1e 0%, #0d1a30 50%, #080f1e 100%);
  }

  /* animated grid lines */
  .hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(232,160,32,.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(232,160,32,.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridShift 20s linear infinite;
  }
  @keyframes gridShift { from { background-position: 0 0; } to { background-position: 60px 60px; } }

  .hero-content {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(232,160,32,.1); border: 1px solid rgba(232,160,32,.3);
    padding: 6px 14px; border-radius: 100px;
    font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 20px;
    animation: fadeUp .6s ease both;
  }
  .hero-badge .dot { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:.4;transform:scale(1.3);} }

  h1 {
    font-size: clamp(2rem, 4.5vw, 2.4rem);
    font-weight: 800; line-height: 1.1;
    animation: fadeUp .7s ease .1s both;
  }
  h1 .gold { color: var(--gold); }
  h1 .line2 { display: block; font-size: .5em; font-weight: 400; color: var(--muted); margin-top: 4px; }

  .hero-sub {
    font-size: 1.05rem; color: var(--muted); margin-top: 18px; max-width: 460px;
    animation: fadeUp .7s ease .2s both;
  }

  .hero-actions {
    display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px;
    animation: fadeUp .7s ease .3s both;
  }

  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gold); color: var(--navy);
    font-family:  sans-serif; font-weight: 700; font-size: .95rem;
    padding: 14px 26px; border-radius: var(--radius);
    transition: all .25s;
    box-shadow: 0 6px 28px rgba(232,160,32,.35);
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 36px rgba(232,160,32,.45); }

  .btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--white);
    font-family:  sans-serif; font-weight: 600; font-size: .95rem;
    padding: 13px 24px; border-radius: var(--radius);
    border: 1.5px solid rgba(248,245,238,.2);
    transition: all .25s;
  }
  .btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

  .hero-stats {
    display: flex; gap: 24px; margin-top: 44px; flex-wrap: wrap;
    animation: fadeUp .7s ease .4s both;
  }
  .stat { text-align: left; }
  .stat-val {
    font-family:  sans-serif; font-size: 1.4rem; font-weight: 800;
    color: var(--gold); line-height: 1;
  }
  .stat-lbl { font-size: .78rem; color: var(--muted); margin-top: 3px; text-transform: uppercase; letter-spacing: .06em; }
  .stat-div { width: 1px; background: var(--border); align-self: stretch; }

  .hero-visual {
    position: relative; animation: fadeUp .8s ease .2s both;
  }
  .hero-car-wrap {
    position: relative; background: linear-gradient(135deg, rgba(232,160,32,.06), rgba(232,160,32,.02));
    border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 30px; overflow: hidden;
  }
  .hero-car-wrap::before {
    content: ''; position: absolute; top: -40%; right: -20%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(232,160,32,.12), transparent 70%);
    border-radius: 50%; pointer-events: none;
  }
  .hero-car-img { width: 100%; height: 240px; object-fit: contain; filter: drop-shadow(0 20px 40px rgba(0,0,0,.5)); animation: float 4s ease-in-out infinite; }
  @keyframes float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-10px);} }

  .hero-price-tag {
    position: absolute; bottom: 20px; left: 20px;
    background: var(--navy); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 10px 16px;
    backdrop-filter: blur(10px);
  }
  .hero-price-tag .from { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
  .hero-price-tag .amount { font-family:  sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--gold); }
  .hero-price-tag .per { font-size: .8rem; color: var(--muted); }

  @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

  /* ── TRUST BAR ── */
  #trust {
    background: var(--navy-3);
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    padding: 18px 0;
  }
  .trust-bar {
    display: flex; align-items: center; justify-content: center;
    gap: 0; flex-wrap: wrap;
  }
  .trust-item {
    display: flex; align-items: center; gap: 9px;
    padding: 8px 24px;
    font-family:  sans-serif; font-size: .85rem; font-weight: 600;
    border-right: 1px solid var(--border);
    white-space: nowrap;
  }
  .trust-item:last-child { border-right: none; }
  .trust-item .icon { font-size: 1.1rem; }
  .trust-item .val { color: var(--gold); }

  /* ── SECTIONS SHARED ── */
  section { padding: 90px 0; position: relative; }

  .section-label {
    font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 12px;
  }
  .section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; line-height: 1.15;
  }
  .section-title span { color: var(--gold); }
  .section-sub { color: var(--muted); margin-top: 14px; max-width: 560px; font-size: 1rem; }
  .section-header { margin-bottom: 50px; }
  .section-header.center { text-align: center; }
  .section-header.center .section-sub { margin: 14px auto 0; }

  /* ── FLEET ── */
  #fleet { background: var(--navy-2); }

  .fleet-filters {
    display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px;
  }
  .filter-btn {
    font-family:  sans-serif; font-size: .82rem; font-weight: 600;
    padding: 8px 20px; border-radius: 100px;
    border: 1.5px solid var(--border); background: transparent; color: var(--muted);
    cursor: pointer; transition: all .2s; letter-spacing: .02em;
  }
  .filter-btn.active, .filter-btn:hover {
    background: var(--gold); color: var(--navy); border-color: var(--gold);
  }

  .fleet-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px;
  }

  .car-card {
    background: var(--card-bg);
    border: 1px solid var(--border); border-radius: var(--radius-lg);
    overflow: hidden; transition: all .3s;
    position: relative;
  }
  .car-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); border-color: rgba(232,160,32,.4); }

  .car-badge {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    padding: 4px 10px; border-radius: 100px;
  }
  .badge-budget { background: rgba(34,197,94,.15); color: #4ade80; border: 1px solid rgba(74,222,128,.3); }
  .badge-premium { background: rgba(232,160,32,.15); color: var(--gold); border: 1px solid rgba(232,160,32,.3); }
  .badge-4x4 { background: rgba(59,130,246,.15); color: #60a5fa; border: 1px solid rgba(96,165,250,.3); }
  .badge-new { background: rgba(168,85,247,.15); color: #c084fc; border: 1px solid rgba(192,132,252,.3); }

  .car-img-wrap {
    background: linear-gradient(135deg, #0a1628, #112240);
    height: 180px; display: flex; align-items: center; justify-content: center;
    overflow: hidden; padding: 20px;
  }
  .car-img-wrap img {
    height: 140px; width: auto; max-width: 100%;
    object-fit: contain;
    transition: transform .4s ease;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,.5));
  }
  .car-card:hover .car-img-wrap img { transform: scale(1.06); }

  .car-info { padding: 20px; }
  .car-name {
    font-family:  sans-serif; font-size: 1.05rem; font-weight: 700;
    margin-bottom: 14px;
  }

  .price-grid {
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-bottom: 18px;
  }
  .price-item { text-align: center; background: rgba(255,255,255,.03); border-radius: 8px; padding: 8px 4px; border: 1px solid rgba(255,255,255,.05); }
  .price-val { font-family:  sans-serif; font-size: .9rem; font-weight: 700; color: var(--gold); }
  .price-per { font-size: .68rem; color: var(--muted); margin-top: 2px; text-transform: uppercase; letter-spacing: .04em; }

  .car-actions { display: flex; gap: 8px; }
  .car-btn {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 5px;
    font-family:  sans-serif; font-size: .78rem; font-weight: 600;
    padding: 9px 6px; border-radius: 8px;
    border: 1.5px solid var(--border); background: transparent; color: var(--muted);
    cursor: pointer; transition: all .2s; text-align: center;
  }
  .car-btn.wa { background: rgba(37,211,102,.1); border-color: rgba(37,211,102,.3); color: #4ade80; }
  .car-btn.wa:hover { background: rgba(37,211,102,.25); }
  .car-btn:hover { border-color: var(--gold); color: var(--gold); }

  /* ── WHY RIDEX ── */
  #why { background: var(--navy); }

  .features-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px;
  }
  .feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 30px 26px; transition: all .3s;
  }
  .feature-card:hover { transform: translateY(-4px); border-color: rgba(232,160,32,.35); box-shadow: var(--shadow-gold); }
  .feature-icon {
    width: 50px; height: 50px;
    background: rgba(232,160,32,.1); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin-bottom: 18px;
    border: 1px solid rgba(232,160,32,.2);
  }
  .feature-card h3 { font-family:  sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
  .feature-card p { font-size: .9rem; color: var(--muted); line-height: 1.6; }

  /* ── SEO CONTENT ── */
  #seo-content { background: var(--navy-2); }

  .seo-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  }
  .seo-block {
    background: var(--card-bg);
    border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 32px 18px;
    transition: border-color .3s;
  }
  .seo-block p {
    text-align: justify!important;
}
  .seo-block:hover { border-color: rgba(232,160,32,.3); }
  .seo-block h2 {
    font-size: 1.15rem; font-weight: 700; margin-bottom: 14px; line-height: 1.3;
  }
  .seo-block h2 .kw { color: var(--gold); }
  .seo-block p { font-size: .92rem; color: var(--muted); line-height: 1.75; }
  .seo-block p a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; font-weight: 500; }
  .seo-block p a:hover { color: var(--gold-light); }
  .seo-block.full { grid-column: 1 / -1; }
  .seo-kw-badge {
    display: inline-block;
    background: rgba(232,160,32,.1); border: 1px solid rgba(232,160,32,.25);
    color: var(--gold); font-size: .7rem; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; padding: 3px 10px; border-radius: 100px; margin-bottom: 12px;
  }

  /* ── HOW IT WORKS ── */
  #how { background: var(--navy); }

  .steps-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
    position: relative;
  }
  .steps-grid::before {
    content: ''; position: absolute;
    top: 32px; left: calc(12.5% + 30px); right: calc(12.5% + 30px); height: 2px;
    background: linear-gradient(90deg, var(--gold) 0%, rgba(232,160,32,.2) 100%);
    z-index: 0;
  }
  .step-item { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
  .step-num {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--gold); color: var(--navy);
    font-family:  sans-serif; font-size: 1.3rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; position: relative;
    box-shadow: 0 0 0 8px rgba(232,160,32,.1), 0 0 0 16px rgba(232,160,32,.05);
  }
  .step-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
  .step-item p { font-size: .88rem; color: var(--muted); }

  /* ── REVIEWS ── */
  #reviews { background: var(--navy-2); }

  .reviews-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }
  .review-card {
    background: var(--card-bg);
    border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 28px; transition: all .3s;
  }
  .review-card:hover { border-color: rgba(232,160,32,.3); transform: translateY(-4px); }
  .stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
  .review-text { font-size: .93rem; color: var(--white); line-height: 1.7; font-style: italic; margin-bottom: 18px; }
  .reviewer { display: flex; align-items: center; gap: 12px; }
  .reviewer-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: rgba(232,160,32,.2); border: 2px solid rgba(232,160,32,.3);
    display: flex; align-items: center; justify-content: center;
    font-family:  sans-serif; font-size: .9rem; font-weight: 800; color: var(--gold);
  }
  .reviewer-name { font-family:  sans-serif; font-size: .9rem; font-weight: 700; }
  .reviewer-loc { font-size: .78rem; color: var(--muted); }

  /* ── FAQ ── */
  #faq { background: var(--navy); }
  .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border); border-radius: var(--radius);
    overflow: hidden;
  }
  .faq-q {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 18px 22px; cursor: pointer; background: transparent; border: none; color: var(--white);
    font-family:  sans-serif; font-size: .92rem; font-weight: 600; text-align: left;
    transition: background .2s;
  }
  .faq-q:hover { background: rgba(255,255,255,.03); }
  .faq-q .chevron { flex-shrink: 0; transition: transform .3s; color: var(--gold); }
  .faq-item.open .faq-q .chevron { transform: rotate(180deg); }
  .faq-a {
    max-height: 0; overflow: hidden; transition: max-height .4s ease;
    padding: 0 22px; font-size: .88rem; color: var(--muted); line-height: 1.7;
  }
  .faq-item.open .faq-a { max-height: 200px; padding-bottom: 18px; }

  /* ── MAP + CONTACT ── */
  #contact { background: var(--navy-2); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; }
  .contact-info h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 20px; }
  .contact-info h2 span { color: var(--gold); }
  .contact-info p { color: var(--muted); margin-bottom: 24px; }

  .contact-items { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
  .contact-item {
    display: flex; align-items: center; gap: 14px;
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 14px 18px;
  }
  .contact-item .ci-icon { font-size: 1.2rem; }
  .contact-item .ci-label { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
  .contact-item .ci-val { font-family:  sans-serif; font-size: .95rem; font-weight: 600; color: var(--white); }

  .map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
  .map-wrap iframe { display: block; width: 100%; height: 340px; border: none; }

  /* ── CTA BANNER ── */
  #cta-banner {
    background: linear-gradient(135deg, var(--gold) 0%, #c87000 100%);
    padding: 70px 0; text-align: center; position: relative; overflow: hidden;
  }
  #cta-banner::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }
  #cta-banner h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: var(--navy); margin-bottom: 12px; position: relative; }
  #cta-banner p { color: rgba(8,15,30,.7); margin-bottom: 30px; font-size: 1rem; position: relative; }
  .btn-dark {
    display: inline-flex; align-items: center; gap: 9px;
    background: var(--navy); color: var(--gold);
    font-family:  sans-serif; font-weight: 700; font-size: 1rem;
    padding: 16px 32px; border-radius: var(--radius);
    transition: all .25s; box-shadow: 0 8px 30px rgba(0,0,0,.3);
    position: relative;
  }
  .btn-dark:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0,0,0,.4); }

  /* ── FOOTER ── */
  footer {
    background: var(--navy); border-top: 1px solid var(--border);
    padding: 50px 0 28px;
  }
  .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
  .footer-brand .logo { margin-bottom: 14px; }
  .footer-brand p { font-size: .88rem; color: var(--muted); max-width: 280px; line-height: 1.7; }
  .footer-col h4 { font-family:  sans-serif; font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); margin-bottom: 16px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul li a { font-size: .88rem; color: var(--muted); transition: color .2s; }
  .footer-col ul li a:hover { color: var(--white); }
  .footer-bottom {
    border-top: 1px solid var(--border); padding-top: 24px;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  }
  .footer-bottom p { font-size: .82rem; color: var(--muted); }
  .footer-social { display: flex; gap: 12px; }
  .social-link {
    width: 36px; height: 36px; border-radius: 8px;
    background: var(--card-bg); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: .85rem; color: var(--muted); transition: all .2s;
  }
  .social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(232,160,32,.08); }

  /* ── MOBILE NAV ── */
  .mobile-nav {
    display: none; flex-direction: column;
    background: var(--navy-2); border-top: 1px solid var(--border);
    padding: 20px;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a { padding: 12px 0; border-bottom: 1px solid var(--border); color: var(--white); font-weight: 500; }
  .mobile-nav a:last-child { border-bottom: none; }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { order: -1; max-width: 480px; margin: 0 auto; }
    .seo-grid { grid-template-columns: 1fr; }
    .seo-block.full { grid-column: 1; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid::before { display: none; }
    .faq-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 768px) {
    nav { display: none; }
    .header-cta .btn-call { display: none; }
    .hamburger { display: flex; }
    section { padding: 60px 0; }
    .reviews-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .fleet-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
    .footer-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .trust-item { padding: 8px 14px; font-size: .78rem; }
  }

  @media (max-width: 480px) {
    .hero-stats { gap: 16px; }
    .stat-div { display: none; }
    .steps-grid { grid-template-columns: 1fr; }
    .trust-bar { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding: 0 16px; }
  }

  /* ── SCROLL ANIMATIONS ── */
  .reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }