  :root {
    --black: #0a0a0a;
    --dark: #111318;
    --card: #16191f;
    --border: #222530;
    --accent: #e8b84b;
    --accent2: #ff4c29;
    --white: #f4f2ee;
    --muted: #7a7f8e;
    --text: #cdd0d8;
    --radius: 12px;
    --layout-max: 1920px;
    --layout-pad: clamp(24px, 4vw, 56px);
  }

  /* Единая сетка: контент не шире 1920px, отступы по бокам одинаковые */
  .layout-shell {
    width: 100%;
    max-width: var(--layout-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--layout-pad);
    padding-right: var(--layout-pad);
    box-sizing: border-box;
  }
  .layout-shell--header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: var(--layout-max);
    margin-left: auto;
    margin-right: auto;
    padding: 18px var(--layout-pad);
    width: 100%;
    box-sizing: border-box;
  }

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

  html {
    scroll-behavior: smooth;
    font-size: 15px;
  }

  body {
    background: var(--black);
    color: var(--text);
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── NOISE 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: 9999;
    opacity: .4;
  }

  /* ── HEADER ── */
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(10,10,10,.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
  }
  .layout-shell--header .header-nav-wrapp {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  .logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--white);
    letter-spacing: 3px;
    text-decoration: none;
  }
  .logo span { color: var(--accent); }

  nav { display: flex; gap: 20px; align-items: center; }
  nav a {
    color: var(--muted);
    text-decoration: none;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color .2s;
  }
  nav a:hover { color: var(--white); }
  .layout-shell--header .burger {
      display: none;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: .9rem;
    text-align: center;
    cursor: pointer;
    transition: all .25s;
    border: none;
    text-decoration: none;
  }
  .btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid var(--border);
  }
  .btn-outline:hover { border-color: var(--accent); color: var(--accent); }
  /* Все основные CTA — один цвет (золотой акцент) */
  .btn-red,
  .btn-primary {
    background: var(--accent);
    color: var(--black);
  }
  .btn-red:hover,
  .btn-primary:hover {
    background: #f5c96a;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(232,184,75,.35);
  }
  .btn-secondary {
    display: block;
    color: var(--text);
    border: 1px solid var(--white);
    transition: all .25s;
    padding: 8px 20px;
  }
  .btn-secondary:hover {
    color: var(--accent);
    border: 1px solid var(--accent);
  }
  /* ── HERO (cinematic) ── */
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: 120px var(--layout-pad) 72px;
    position: relative;
    overflow: hidden;
  }

  .hero-photo {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    animation: heroKenburns 22s ease-in-out infinite alternate;
  }
  @keyframes heroKenburns {
    0% { transform: scale(1.06) translate(0, 0); }
    100% { transform: scale(1.12) translate(-1.5%, 1%); }
  }

  .hero-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(105deg, rgba(6,7,10,.97) 0%, rgba(6,7,10,.88) 38%, rgba(6,7,10,.45) 62%, rgba(6,7,10,.25) 100%),
      radial-gradient(ellipse 90% 80% at 20% 50%, rgba(232,184,75,.12) 0%, transparent 55%);
  }

  .hero-veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 0%, rgba(10,10,10,.85) 100%);
    pointer-events: none;
  }

  .hero-grid-fine {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: .35;
    background-image:
      linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(90deg, black 0%, black 45%, transparent 85%);
    pointer-events: none;
  }

  .hero-glow {
    position: absolute;
    width: min(90vw, 720px);
    height: min(90vw, 720px);
    right: -15%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: radial-gradient(circle, rgba(232,184,75,.18) 0%, rgba(255,76,41,.06) 40%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    animation: heroGlowPulse 8s ease-in-out infinite;
  }
  @keyframes heroGlowPulse {
    0%, 100% { opacity: .75; transform: translateY(-50%) scale(1); }
    50% { opacity: 1; transform: translateY(-50%) scale(1.05); }
  }

  .hero-inner {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: var(--layout-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
  }

  .hero-content { max-width: 640px; }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.12);
    color: var(--accent);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeDown .6s ease both;
    box-shadow: 0 8px 32px rgba(0,0,0,.35);
  }
  .hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent);
    animation: badgeDot 2s ease-in-out infinite;
  }
  @keyframes badgeDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .6; transform: scale(.85); }
  }

  .hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.2rem, 8vw, 7rem);
    line-height: .92;
    color: var(--white);
    letter-spacing: 3px;
    margin-bottom: 24px;
    animation: fadeUp .7s ease .1s both;
  }
  .hero h1 .accent {
    background: linear-gradient(105deg, var(--accent) 0%, #fff6dd 50%, var(--accent) 100%);
    background-size: 220% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: accentShine 6s ease-in-out infinite;
  }
  @keyframes accentShine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }
  .hero h1 .stroke {
    -webkit-text-stroke: 1.5px var(--white);
    color: transparent;
    animation: strokePulse 4s ease-in-out infinite;
  }
  @keyframes strokePulse {
    0%, 100% { opacity: 1; -webkit-text-stroke-color: var(--white); }
    50% { opacity: .92; -webkit-text-stroke-color: rgba(232,184,75,.55); }
  }

  .hero-line {
    width: 72px;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    margin-bottom: 20px;
    animation: lineGrow .9s ease .15s both;
    box-shadow: 0 0 20px rgba(232,184,75,.4);
  }
  @keyframes lineGrow {
    from { transform: scaleX(0); transform-origin: left; opacity: 0; }
    to { transform: scaleX(1); opacity: 1; }
  }

  .hero-sub {
    font-size: 1.12rem;
    color: rgba(205,208,216,.92);
    max-width: 520px;
    margin-bottom: 36px;
    animation: fadeUp .7s ease .2s both;
    line-height: 1.75;
  }

  .hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp .7s ease .3s both;
  }

  .hero-stats {
    display: flex;
    gap: clamp(20px, 4vw, 40px);
    margin-top: 40px;
    padding: 22px 26px;
    background: rgba(8,9,12,.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    animation: fadeUp .7s ease .4s both;
    box-shadow: 0 16px 48px rgba(0,0,0,.4);
  }
  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 2.6rem);
    color: var(--white);
    line-height: 1;
  }
  .stat-num span { color: var(--accent); }
  .stat-label { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1.2px; margin-top: 6px; }

  /* Hero visual column */
  .hero-showcase {
    position: relative;
    min-height: 420px;
    animation: fadeUp .85s ease .25s both;
  }
  .hero-showcase-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow:
      0 24px 80px rgba(0,0,0,.55),
      0 0 0 1px rgba(232,184,75,.15),
      inset 0 0 60px rgba(0,0,0,.3);
    aspect-ratio: 4/3;
  }
  .hero-showcase-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
  }
  .hero-showcase-main:hover img { transform: scale(1.04); }
  .hero-showcase-main::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(6,7,10,.85) 100%);
    pointer-events: none;
  }
  .hero-showcase-caption {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
  }
  .hero-showcase-caption span {
    color: var(--accent);
    font-size: .72rem;
  }

  .hero-float {
    position: absolute;
    width: 42%;
    max-width: 200px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.15);
    box-shadow: 0 16px 40px rgba(0,0,0,.5);
    z-index: 3;
  }
  .hero-float img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 3/2; }
  .hero-float--a { top: -4%; right: -3%; }
  .hero-float--b { bottom: 12%; left: -8%; }
  /*@keyframes floatY {*/
  /*  0%, 100% { transform: translateY(0); }*/
  /*  50% { transform: translateY(-10px); }*/
  /*}*/
  @media (min-width: 560px) {
    .hero-float {
        animation: floatY 6s ease-in-out infinite;
    }
    .hero-float--a { top: -6%; right: -4%; animation-delay: 0s; }
    .hero-float--b { bottom: 8%; left: -8%; animation-delay: -3s; }
    @keyframes floatY {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
      }
      
  }

  .hero-showcase-ring {
    position: absolute;
    inset: -8px;
    border-radius: 24px;
    border: 1px solid rgba(232,184,75,.2);
    pointer-events: none;
    z-index: 0;
  }

  /* ── SCROLLING TICKER ── */
  .ticker-wrap {
    background: var(--accent);
    padding: 14px 0;
    overflow: hidden;
    display: flex;
  }
  .ticker {
    display: flex;
    gap: 0;
    animation: ticker 25s linear infinite;
    white-space: nowrap;
  }
  .ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: var(--black);
    font-weight: 800;
    font-size: .85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0 40px;
  }
  .ticker-dot { width: 6px; height: 6px; background: var(--black); border-radius: 50%; opacity: .4; }

  /* ── SECTION COMMON ── */
  section:not(.hero) {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .reviews-section {
    background: var(--dark);
  }
  .section-head--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .section-head--center p {
    margin-left: auto;
    margin-right: auto;
    max-width: 560px;
  }
  .section-label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
  }
  h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--white);
    line-height: 1;
    letter-spacing: 1px;
  }
  .section-head { margin-bottom: 60px; }
  .section-head p { color: var(--muted); margin-top: 16px; max-width: 500px; font-size: 1rem; }

  /* ── CAR SLIDER ── */
  .cars-section { background: var(--dark); }

  .slider-container { position: relative; overflow: hidden; }
  .slider-track {
    display: flex;
    gap: 24px;
    /* transition: transform .5s cubic-bezier(.4,0,.2,1); */
  }
  /* контейнер */
  .mySwiper {
    padding-bottom: 60px !important;
  }
  /* пагінація вниз */
  .swiper-pagination {
    bottom: 25px !important;
  }
  .swiper-pagination-bullet {
    background: #999 !important;
  }
  .swiper-pagination-bullet-active {
    background: var(--accent) !important;
  }
  /* блок навігації під слайдом */
  .swiper-nav {
    margin: 20px auto 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    max-width: 280px;
  }

  /* прибираємо дефолтні стрілки */
  .swiper-button-prev::after,
  .swiper-button-next::after {
    display: none;
    position: absolute;
  }

  /* кастом стрілки */
  .custom-prev,
  .custom-next {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50%;
    background: var(--card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s;
  }

  /* іконки */
  .custom-prev::before,
  .custom-next::before {
    content: '';
    width: 12px;
    height: 12px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }

  /* стрілка вліво */
  .custom-prev::before {
    transform: rotate(-135deg);
    margin-left: 3px;
  }

  /* стрілка вправо */
  .custom-next::before {
    transform: rotate(45deg);
    margin-right: 3px;
  }

  /* hover */
  .custom-prev:hover,
  .custom-next:hover {
    background: var(--accent); 
    color: var(--black); 
    border-color: var(--accent);
  }

  /* пагінація */
  .swiper-pagination-bullet {
    background: #999;
    opacity: 1;
  }

  .swiper-pagination-bullet-active {
    background: #e63946;
  }

  .car-card {
    max-width: 100%;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: transform .3s, box-shadow .3s;
    cursor: pointer;
    flex-shrink: 0;
  }
  .car-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
  }

  .car-img {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #1a1d25 0%, #222530 100%);
    position: relative;
    overflow: hidden;
  }
  .car-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .car-img::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 70px;
    background: linear-gradient(transparent, var(--card));
    z-index: 1;
    pointer-events: none;
  }

  .car-badge-country {
    z-index: 2;
    position: absolute;
    top: 16px; right: 16px;
    background: rgba(10,10,10,.85);
    border: 1px solid var(--border);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
  }

  .car-badge-hot {
    z-index: 2;
    position: absolute;
    top: 16px; left: 16px;
    background: var(--accent2);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
  }

  .car-info { padding: 24px; }
  .car-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 4px;
  }
  .car-year { font-size: .8rem; color: var(--muted); margin-bottom: 16px; }

  .car-specs {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
  }
  .spec {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .spec-val { font-size: .9rem; font-weight: 700; color: var(--white); }
  .spec-key { font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; }

  .car-prices {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
  }
  .price-label { font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
  .price-val {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--accent);
    letter-spacing: 1px;
    line-height: 1;
  }
  .price-sub { font-size: .75rem; color: var(--muted); margin-top: 2px; }

  /* .slider-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 40px;
    justify-content: center;
    align-items: center;
  }
  .slider-btn {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
  }
  .slider-btn:hover { background: var(--accent); color: var(--black); border-color: var(--accent); }
  .layout-shell--header .burger {
    display: none;
  }
  .slider-dots {
    display: flex;
    gap: 8px;
    align-items: center;
  }
  .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all .3s;
    border: none;
    padding: 0;
    flex-shrink: 0;
  }
  .dot:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
  .dot.active { background: var(--accent); width: 24px; border-radius: 4px; } */

  /* ── HOW IT WORKS ── */
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
  }
  .step {
    background: var(--card);
    padding: 40px 32px;
    position: relative;
    transition: background .3s;
  }
  .step:hover { background: #1c2028; }
  .step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: var(--border);
    line-height: 1;
    margin-bottom: 16px;
    transition: color .3s;
  }
  .step:hover .step-num { color: rgba(232,184,75,.2); }
  .step-icon { font-size: 1.8rem; margin-bottom: 12px; }
  .step h3 {
    font-size: 16.8px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
  }
  .step p { font-size: .88rem; color: var(--muted); line-height: 1.6; }

  /* ── COUNTRIES ── */
  .countries-section { background: var(--dark); }
  .countries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .country-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: all .3s;
  }
  .country-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .3s;
    border-radius: 16px;
  }
  .country-card.usa::before { background: radial-gradient(ellipse at top right, rgba(0,45,180,.15), transparent 60%); }
  .country-card.korea::before { background: radial-gradient(ellipse at top right, rgba(200,0,50,.1), transparent 60%); }
  .country-card.china::before { background: radial-gradient(ellipse at top right, rgba(220,40,40,.12), transparent 60%); }
  .country-card:hover::before { opacity: 1; }
  .country-card:hover {
    transform: translateY(-4px);
    border-color: rgba(232,184,75,.3);
    box-shadow: 0 16px 48px rgba(0,0,0,.4);
  }

  .country-flag { font-size: 3.5rem; margin-bottom: 20px; display: block; }
  .country-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 12px;
  }
  .country-desc { color: var(--muted); font-size: .9rem; margin-bottom: 24px; line-height: 1.65; }

  .country-features { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .country-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .85rem;
    color: var(--text);
  }
  .country-features li::before { content: '✓'; color: var(--accent); font-weight: 800; }

  /* ── CREDIT ── */
  .credit-section {
    background: linear-gradient(135deg, var(--card) 0%, #1a1d25 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .credit-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
  }
  .credit-visual {
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
  }
  .credit-visual::before {
    content: '';
    position: absolute;
    top: -40%; right: -20%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(232,184,75,.12), transparent 70%);
    pointer-events: none;
  }
  .credit-calc-title {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--muted);
    margin-bottom: 24px;
  }
  .calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }
  .calc-row:last-child { border: none; }
  .calc-key { font-size: .85rem; color: var(--muted); }
  .calc-val { font-weight: 700; color: var(--white); font-size: .95rem; }
  .calc-val.big {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--accent);
    letter-spacing: 1px;
  }

  .credit-text h2 { margin-bottom: 20px; }
  .credit-text p { color: var(--muted); margin-bottom: 32px; line-height: 1.7; }
  .credit-benefits { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
  .credit-benefit {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: rgba(255,255,255,.03);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: border-color .2s;
  }
  .credit-benefit:hover { border-color: rgba(232,184,75,.3); }
  .cb-icon { font-size: 1.4rem; flex-shrink: 0; }
  .cb-text h4 { font-size: 16.8px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
  .cb-text p { font-size: .82rem; color: var(--muted); line-height: 1.5; }

  /* ── WHY US ── */
  .why-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
  }
  .why-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: all .3s;
    position: relative;
    overflow: hidden;
  }
  .why-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform .3s;
    transform-origin: left;
  }
  .why-card:hover::after { transform: scaleX(1); }
  .why-card:hover { transform: translateY(-4px); }
  .why-icon { font-size: 2rem; margin-bottom: 16px; }
  .why-card h3 { font-size: 16.8px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
  .why-card p { font-size: .85rem; color: var(--muted); line-height: 1.6; }

  /* ── CALC SECTION ── */
  .calc-section { background: var(--dark); }
  .calc-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 48px;
  }
  .calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
  }
  .form-group { display: flex; flex-direction: column; gap: 8px; }
  .form-group label {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
  }
  .form-group input, .form-group select {
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 14px 16px;
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-size: .95rem;
    outline: none;
    transition: border-color .2s;
    appearance: none;
  }
  .form-group input:focus, .form-group select:focus { border-color: var(--accent); }
  .form-group select option { background: var(--dark); }

  .calc-result {
    background: rgba(232,184,75,.08);
    border: 1px solid rgba(232,184,75,.2);
    border-radius: 12px;
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: center;
  }
  .result-label { font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
  .result-val {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--accent);
    letter-spacing: 1px;
  }

  /* ── REVIEWS ── */
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
  }
  .review-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    position: relative;
  }
  .review-quote {
    font-size: 3rem;
    color: var(--accent);
    opacity: .3;
    line-height: .8;
    margin-bottom: 16px;
    font-family: Georgia, serif;
  }
  .review-text { color: var(--text); font-size: .9rem; line-height: 1.7; margin-bottom: 24px; }
  .review-author { display: flex; align-items: center; gap: 14px; }
  .review-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, #f5a623 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--black);
    font-size: .9rem;
    flex-shrink: 0;
  }
  .review-name { font-weight: 700; color: var(--white); font-size: .9rem; }
  .review-car { font-size: .8rem; color: var(--muted); margin-top: 2px; }
  .stars { color: var(--accent); font-size: .9rem; letter-spacing: 2px; margin-bottom: 12px; }

  /* ── FAQ ── */
  .faq-section { background: var(--dark); }
  .faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
  .faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .2s;
  }
  .faq-item.open { border-color: rgba(232,184,75,.3); }
  .faq-question {
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--white);
    font-size: .95rem;
    transition: color .2s;
    user-select: none;
  }
  .faq-question:hover { color: var(--accent); }
  .faq-icon {
    font-size: 1.3rem;
    color: var(--muted);
    transition: transform .3s, color .2s;
    flex-shrink: 0;
  }
  .faq-item.open .faq-icon { transform: rotate(45deg); color: var(--accent); }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s;
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.7;
  }
  .faq-item.open .faq-answer { max-height: 300px; padding: 0 28px 22px; }

  /* ── CONTACT ── */
  .contact-section {
    background: var(--black);
    border-top: 1px solid var(--border);
  }
  .contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
    width: 100%;
  }
  .contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .contact-info h2 { margin-bottom: 20px; }
  .contact-info p { color: var(--muted); margin-bottom: 40px; line-height: 1.7; }

  .contact-items { display: flex; flex-direction: column; gap: 20px; }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
  }
  .ci-icon { font-size: 1.3rem; }
  .ci-label { font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
  .ci-val { 
    font-weight: 600; 
    color: var(--white) !important; 
    font-size: .95rem; 
  }

  .contact-form {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 44px;
  }
  .contact-form h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 28px;
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group textarea {
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 14px 16px;
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-size: .95rem;
    outline: none;
    transition: border-color .2s;
    resize: vertical;
    min-height: 100px;
    width: 100%;
  }
  .form-group textarea:focus { border-color: var(--accent); }
  .form-submit-row { margin-top: 24px; display: flex; align-items: center; gap: 16px; }
  .field-error {
    display: none;
    font-size: .78rem;
    color: #ff7a62;
    margin-top: 6px;
  }
  .form-group.has-error .field-error { display: block; }
  .form-group.has-error input,
  .form-group.has-error textarea { border-color: rgba(255,122,98,.6); }
  .form-agree { font-size: .78rem; color: var(--muted); flex: 1; }
  .form-agree a { color: var(--accent); }
  .success-msg {
    display: none;
    background: rgba(80,200,100,.1);
    border: 1px solid rgba(80,200,100,.3);
    border-radius: 8px;
    padding: 14px 20px;
    color: #6ec87a;
    font-size: .9rem;
    margin-top: 16px;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding: 60px 0 40px;
  }
  .footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }
  .footer-brand .logo { display: block; margin-bottom: 16px; }
  .footer-brand p { font-size: .85rem; color: var(--muted); line-height: 1.6; max-width: 240px; }
  .socials { display: flex; gap: 12px; margin-top: 24px; }
  .social-btn {
    width: 40px; height: 40px;
    border-radius: 8px;
    background: var(--card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: all .2s;
    cursor: pointer;
  }
  .social-btn:hover { background: var(--accent); border-color: var(--accent); }

  .footer-col h4 { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--white); margin-bottom: 16px; }
  .footer-col a {
    display: block;
    color: var(--muted);
    text-decoration: none;
    font-size: .85rem;
    margin-bottom: 10px;
    transition: color .2s;
  }
  .footer-col a:hover { color: var(--accent); }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    font-size: .8rem;
    color: var(--muted);
  }

  /* ── STICKY CTA ── */
  .sticky-cta {
    position: fixed;
    bottom: 32px;
    right: max(24px, calc((100vw - min(100vw, var(--layout-max))) / 2 + 24px));
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
  }
  .sticky-btn {
    width: 56px; height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all .25s;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(0,0,0,.4);
  }
  .sticky-wa {
    background: #25D366;
    color: #fff;
  }
   .sticky-wa img {
    margin-top: 4px;
  }
  .sticky-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45);
  }
  .sticky-call {
    background: #0d67d6;

  }
  .sticky-call:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(75, 146, 232, 0.45);
  }

  /* ── MODAL ── */
  .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.8);
    backdrop-filter: blur(8px);
    z-index: 500;
    align-items: center;
    justify-content: center;
  }
  .modal-overlay.open { display: flex; }
  .modal {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 48px;
    max-width: 480px;
    width: 90%;
    position: relative;
    animation: modalIn .3s ease;
  }
  .modal-close {
    position: absolute;
    top: 20px; right: 20px;
    background: none;
    border: none;
    color: var(--muted);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    transition: color .2s;
  }
  .modal-close:hover { color: var(--white); }
  .modal h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 35px;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: 1px;
  }
  .modal p { color: var(--muted); margin-bottom: 28px; font-size: .9rem; }

  .cookie-modal {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 420px;
    margin: auto;
    background:var(--dark);
    color: var(--text);
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(203, 203, 203, 0.128);
    z-index: 9999;
    display: none;
  }
  .cookie-modal.active {
    display: block;
  }
  .cookie-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
  }
  .cookie-actions button {
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
  }


  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  @keyframes modalIn {
    from { opacity: 0; transform: scale(.92); }
    to { opacity: 1; transform: scale(1); }
  }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(232,184,75,.4); }
    50% { box-shadow: 0 0 0 12px rgba(232,184,75,0); }
  }
  .pulse { animation: pulse 2s infinite; }

  /* ── MOBILE ── */
  @media (max-width: 960px) {
    .layout-shell,
    .layout-shell--header {
      position: relative;
      padding-left: 24px;
      padding-right: 24px;
    }
    .layout-shell--header .burger {
      display: block;
      position: relative;
      top: 14px;
      width: 30px;
      height: 30px;
    }
    .layout-shell--header .burger span,
    .layout-shell--header .burger span::after,
    .layout-shell--header .burger span::before {
      position: absolute;
      content: '';
      left: 0;
      top: 0;
      width: 100%;
      height: 2px;
      background-color: var(--white);
      transition: all 0.3s;
      opacity: 1;
    }
    .layout-shell--header .burger span::after {
      top: -9px;
    }
    .layout-shell--header .burger span::before {
      top: 9px;
    }
    .layout-shell--header .burger.active span {
      background-color: transparent;
    }
    .layout-shell--header .burger.active span::after {
      transform: rotate(45deg);
      top: 0;
    }
     .layout-shell--header .burger.active span::before {
      transform: rotate(-45deg);
      top: -0;
    }
    .header-nav-wrapp {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 72px;
      right: -100%;
      width: 320px;
      min-height: 100%;
      padding: 120px 10px 30px;
      background: var(--dark);
      color: var(--white);
      transition: 0.3s;
    }
    .layout-shell--header nav {
      flex-direction: column;
      text-align: center;
    }
    .header-nav-wrapp a,
    .header-nav-wrapp button {
      width: 226px;
    }
    .layout-shell--header .header-nav-wrapp.active {
      right: 0;
      height: 100vh;
      width: 100%;
    }
    .lock {
      overflow: hidden;
    }

    section:not(.hero) {
      padding-top: 80px;
      padding-bottom: 80px;
    }
    .hero {
      padding: 100px 24px 72px;
    }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-showcase { order: -1; min-height: 280px; max-width: 520px; margin: 0 auto; }
    .hero-float { width: 38%; max-width: 140px; }
    .hero-float--b { left: -2%; }
    .hero-stats { flex-wrap: wrap; justify-content: space-between; gap: 20px; }
    .hero h1 { font-size: 3.5rem; }
    .countries-grid { grid-template-columns: 1fr; }
    .credit-inner { grid-template-columns: 1fr; gap: 40px; }
    .contact-inner { grid-template-columns: 1fr; gap: 40px; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
    .car-card { min-width: 300px; }
    .calc-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .calc-result { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .contact-form { padding: 28px 24px; }
  }

  /* Смартфоны ~375px: плотнее отступы и чуть меньше шрифт (кроме h3 — фиксированные px сохраняются) */
  @media (max-width: 480px) {
    html { font-size: 14px; }

    .layout-shell,
    .layout-shell--header {
      padding-left: 16px;
      padding-right: 16px;
    }

    .logo { font-size: 1.65rem; letter-spacing: 2px; }

    .hero {
      padding: 88px 16px 56px;
      min-height: auto;
    }
    .hero h1 {
      font-size: clamp(2.35rem, 11vw, 2.85rem);
      letter-spacing: 2px;
    }
    .hero-sub {
      font-size: 0.98rem;
      line-height: 1.65;
    }
    .hero-badge {
      font-size: 0.68rem;
      padding: 6px 12px;
      letter-spacing: 1.2px;
    }
    .hero-ctas a {
      width: 100%;
      display: flex;
      justify-content: center;
    }
    .hero-stats {
      padding: 16px 14px;
      gap: 12px;
      margin-top: 28px;
    }
    .stat-num {
      font-size: clamp(1.5rem, 7vw, 1.85rem);
    }
    .stat-label {
      font-size: 0.62rem;
    }
    .hero-showcase {
      min-height: 220px;
    }
    .hero-showcase-caption {
      font-size: 0.68rem;
      letter-spacing: 1px;
    }
    .hero-float {
      max-width: 110px;
    }

    .section-label { font-size: 0.68rem; letter-spacing: 2px; }
    .section-head { margin-bottom: 40px; }
    .section-head p {
      font-size: 0.92rem;
      margin-top: 12px;
    }
    .modal {
      padding: 36px 24px;
      width: 94%;
    }
    .modal h3 {
      font-size: 18px;
    }
    .contact-form p {
      text-align: center;
    }
    h2 {
      font-size: clamp(1.85rem, 9vw, 2.65rem);
    }

    .btn {
      padding: 18px 36px;
      font-size: 0.82rem;
      margin: 0 auto;
      display: block;
    }
  
    .ticker-item {
      font-size: 0.72rem;
      padding: 0 28px;
    }

    /* .car-card { max-width: 100%; } */
    .car-info { padding: 16px; }
    .car-name { font-size: 1.45rem; }

    .calc-wrapper { padding: 28px 18px; }

    .sticky-cta {
      bottom: 18px;
      right: 16px;
    }
    .sticky-btn {
      width: 48px;
      height: 48px;
      font-size: 1.2rem;
    }

    .footer-inner {
      display: flex;
      flex-wrap: wrap;
    }
    .footer-inner .footer-brand {
      width: 100%;
    }
  }

  /* Информационные страницы */
  .page-simple {
    padding: 120px 0 80px;
    min-height: 60vh;
  }
  .page-simple section {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .page-simple__inner {
    max-width: 720px;
    margin: 0 auto;
  }
  .page-simple h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 6vw, 3rem);
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 16px;
  }
  .page-simple .lead {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 32px;
    line-height: 1.65;
  }
  .page-simple section {
    padding: 0;
    margin-bottom: 28px;
  }
  .page-simple h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: 1px;
  }
  .page-simple p,
  .page-simple li {
    font-size: 0.92rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 12px;
  }
  .page-simple ul {
    padding-left: 1.2rem;
    margin-bottom: 16px;
  }
  .page-simple a { color: var(--accent); }
  .back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 24px;
    transition: color 0.2s;
  }
  .back-link:hover { color: var(--accent); }
