/* ===========================================================
   KHAFI TRANS CAR — Sewa Mobil Bogor
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,500&display=swap');

:root {
  --bg: #faf9f7;
  --surface: #ffffff;
  --surface-alt: #f1f0ec;
  --ink: #171a17;
  --ink-soft: #52564f;
  --ink-faint: #82867d;
  --line: #e3e1da;
  --brand: #0e7a44;
  --brand-dark: #0a5c33;
  --brand-tint: #e5f3ea;
  --wa: #25d366;
  --wa-dark: #128c4a;
  --ink-band: #0f1c15;
  --ink-band-2: #16281d;
  --radius-card: 16px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(15, 28, 21, 0.06), 0 1px 1px rgba(15, 28, 21, 0.04);
  --shadow-md: 0 12px 28px -12px rgba(15, 28, 21, 0.22);
  --shadow-lg: 0 24px 60px -20px rgba(15, 28, 21, 0.3);
  --maxw: 1280px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0d100d;
    --surface: #161a16;
    --surface-alt: #1d221c;
    --ink: #f3f4f1;
    --ink-soft: #c2c6bd;
    --ink-faint: #868b80;
    --line: #2a2f28;
    --brand: #34c17a;
    --brand-dark: #23a765;
    --brand-tint: #17301f;
    --ink-band: #0a0f0a;
    --ink-band-2: #10190f;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 12px 28px -12px rgba(0, 0, 0, 0.55);
    --shadow-lg: 0 24px 60px -20px rgba(0, 0, 0, 0.6);
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}

h1, h2, h3 { margin: 0; font-weight: 800; letter-spacing: -0.02em; }

.section-head {
  max-width: 640px;
  margin-bottom: 40px;
}
.section-head h2 {
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.15;
  margin-bottom: 12px;
}
.section-head p {
  color: var(--ink-soft);
  font-size: 16px;
  max-width: 52ch;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.18s cubic-bezier(0.16,1,0.3,1), box-shadow 0.18s ease, background-color 0.18s ease;
  white-space: nowrap;
}
.pill-btn:active { transform: scale(0.98); }

.pill-btn--wa {
  background: var(--wa-dark);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.pill-btn--wa:hover { background: #0f7a41; box-shadow: var(--shadow-md); transform: translateY(-1px); }

.pill-btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.pill-btn--ghost:hover { border-color: var(--ink-faint); }

.pill-btn--light {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border-color: rgba(255,255,255,0.32);
  backdrop-filter: blur(6px);
}
.pill-btn--light:hover { background: rgba(255,255,255,0.22); }

.pill-btn--sm { padding: 9px 16px; font-size: 13.5px; }
.pill-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 249, 247, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
@media (prefers-color-scheme: dark) {
  .nav { background: rgba(13, 16, 13, 0.82); }
}
.nav__inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.brand__mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(155deg, var(--brand), var(--brand-dark));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 800;
  flex-shrink: 0;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.15; white-space: nowrap; }
.brand__text small { font-size: 11px; font-weight: 600; color: var(--ink-faint); letter-spacing: 0.03em; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
}
.nav__links a:hover { color: var(--brand); }
.nav__actions { display: flex; align-items: center; gap: 14px; }
.nav__phone { display: flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 700; color: var(--ink-soft); }
.nav__phone svg { width: 17px; height: 17px; color: var(--brand); }

.nav__burger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--surface);
  align-items: center;
  justify-content: center;
}
.nav__burger svg { width: 20px; height: 20px; }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.nav__mobile a {
  padding: 12px 4px;
  font-weight: 600;
  font-size: 15px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}
.nav__mobile.open { display: flex; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(92dvh, 780px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(9,17,11,0.92) 0%, rgba(9,17,11,0.78) 32%, rgba(9,17,11,0.42) 56%, rgba(9,17,11,0.2) 74%, rgba(9,17,11,0.55) 100%),
    linear-gradient(0deg, rgba(9,17,11,0.5), transparent 40%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding-top: 32px;
  padding-bottom: 32px;
  width: 100%;
}
.hero__content { max-width: 620px; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 8px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.24);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
}
.hero__badge span.dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--wa);
  display: grid; place-items: center;
}
.hero__badge svg { width: 13px; height: 13px; color: #06331a; }

.hero h1 {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.08;
  margin-bottom: 18px;
  text-wrap: balance;
}
.hero h1 em {
  font-style: normal;
  color: #8bebb5;
}
.hero p.lede {
  font-size: 17px;
  color: rgba(255,255,255,0.86);
  max-width: 46ch;
  margin-bottom: 30px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 28px 36px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.2);
  max-width: 560px;
}
.hero__stats .stat b {
  display: block;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 2px;
}
.hero__stats .stat span {
  font-size: 12.5px;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

/* ---------- Why us (bento) ---------- */
.why { padding: 88px 0; background: var(--bg); }
.why__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 18px;
}
.why__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.why__card--lg {
  grid-row: span 2;
  background: linear-gradient(165deg, var(--ink-band), var(--ink-band-2));
  color: #fff;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
}
.why__card--lg .why__icon { background: rgba(255,255,255,0.12); color: #8bebb5; }
.why__card--lg h3 { color: #fff; }
.why__card--lg p { color: rgba(255,255,255,0.72); }
.why__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--brand-tint);
  color: var(--brand-dark);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.why__icon svg { width: 24px; height: 24px; }
.why__card h3 { font-size: 18px; margin-bottom: 8px; }
.why__card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; }
.why__card--lg .checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.why__card--lg .checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.78);
}
.why__card--lg .checklist svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  padding: 3px;
  border-radius: 50%;
  background: rgba(139,235,181,0.16);
  color: #8bebb5;
  box-sizing: border-box;
}
.why__card--lg .stat-row {
  display: flex; gap: 24px; margin-top: 24px;
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.16);
}
.why__card--lg .stat-row b { display: block; font-size: 24px; font-weight: 800; }
.why__card--lg .stat-row span { font-size: 12px; color: rgba(255,255,255,0.65); }

/* ---------- Fleet ---------- */
.fleet { padding: 88px 0; background: var(--surface-alt); }
.fleet__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filters {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  margin: -4px -24px 36px;
  padding-left: 24px;
  padding-right: 24px;
  scrollbar-width: none;
}
.filters::-webkit-scrollbar { display: none; }
.filter-chip {
  flex-shrink: 0;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-soft);
  transition: all 0.15s ease;
}
.filter-chip:hover { border-color: var(--brand); color: var(--brand-dark); }
.filter-chip.active {
  background: var(--ink-band);
  color: #fff;
  border-color: var(--ink-band);
}

.fleet__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.car-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.22s cubic-bezier(0.16,1,0.3,1), box-shadow 0.22s ease;
}
.car-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.car-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--surface-alt);
  overflow: hidden;
}
.car-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.car-card:hover .car-card__media img { transform: scale(1.06); }
.car-card__tag {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(15,28,21,0.72);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}
.car-card__body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.car-card__name { font-size: 18px; font-weight: 800; letter-spacing: -0.01em; }
.car-card__specs {
  display: flex; flex-wrap: wrap; gap: 8px 14px;
  font-size: 12.5px; font-weight: 600; color: var(--ink-faint);
}
.car-card__specs span { display: flex; align-items: center; gap: 5px; }
.car-card__specs svg { width: 15px; height: 15px; color: var(--ink-faint); }
.car-card__footer {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid var(--line);
}
.car-card__price b { font-size: 19px; font-weight: 800; color: var(--brand-dark); }
.car-card__price span { display: block; font-size: 11.5px; color: var(--ink-faint); font-weight: 600; }

.fleet__more { text-align: center; margin-top: 40px; }

/* ---------- How it works ---------- */
.how { padding: 88px 0; background: var(--bg); }
.how__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
  position: relative;
}
.how__step {
  padding: 28px 22px;
  position: relative;
}
.how__step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 34px;
  right: -2px;
  width: calc(100% - 44px);
  border-top: 2px dashed var(--line);
}
.how__num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ink-band);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 800; font-size: 15px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.how__step h3 { font-size: 16.5px; margin-bottom: 8px; }
.how__step p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }

/* ---------- Coverage ---------- */
.coverage { padding: 88px 0; background: var(--ink-band); color: #fff; }
.coverage__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.coverage h2 { color: #fff; font-size: clamp(26px, 3vw, 34px); margin-bottom: 16px; }
.coverage p { color: rgba(255,255,255,0.68); font-size: 15.5px; max-width: 48ch; margin-bottom: 28px; }
.coverage__areas { display: flex; flex-wrap: wrap; gap: 10px; }
.coverage__areas span {
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  font-size: 13.5px;
  font-weight: 600;
}
.coverage__card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-card);
  padding: 32px;
}
.coverage__card ul { display: flex; flex-direction: column; gap: 18px; }
.coverage__card li { display: flex; gap: 14px; align-items: flex-start; }
.coverage__card .ic {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(139,235,181,0.14); color: #8bebb5;
  display: grid; place-items: center; flex-shrink: 0;
}
.coverage__card .ic svg { width: 19px; height: 19px; }
.coverage__card b { display: block; font-size: 14.5px; margin-bottom: 3px; }
.coverage__card span.desc { font-size: 13px; color: rgba(255,255,255,0.62); }

/* ---------- Testimonials (auto-scrolling marquee) ---------- */
.testi { padding: 88px 0; background: var(--surface-alt); overflow: hidden; }
.testi__viewport {
  overflow: hidden;
  margin: 0 -24px;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 60px, black calc(100% - 60px), transparent);
  mask-image: linear-gradient(90deg, transparent, black 60px, black calc(100% - 60px), transparent);
}
.testi__track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 4px 24px 10px;
  animation: testi-marquee 46s linear infinite;
}
.testi__viewport:hover .testi__track,
.testi__viewport:focus-within .testi__track {
  animation-play-state: paused;
}
@keyframes testi-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .testi__track { animation: none; }
  .testi__viewport { overflow-x: auto; }
}
.testi-card {
  flex: 0 0 340px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testi-card__stars { display: flex; gap: 3px; color: #f0a63a; }
.testi-card__stars svg { width: 15px; height: 15px; }
.testi-card p.quote { font-size: 14.5px; line-height: 1.6; color: var(--ink); }
.testi-card__who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi-card__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--brand-tint); color: var(--brand-dark);
  display: grid; place-items: center; font-weight: 800; font-size: 14px;
  flex-shrink: 0;
}
.testi-card__who b { display: block; font-size: 14px; }
.testi-card__who span { font-size: 12.5px; color: var(--ink-faint); }

/* ---------- FAQ ---------- */
.faq { padding: 88px 0; background: var(--bg); }
.faq__list { max-width: 780px; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 4px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .plus {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1);
}
.faq-item .plus svg { width: 14px; height: 14px; }
.faq-item[open] .plus { transform: rotate(45deg); background: var(--ink-band); color: #fff; border-color: var(--ink-band); }
.faq-item p {
  padding: 0 4px 24px;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.65;
  max-width: 65ch;
}

/* ---------- Final CTA ---------- */
.cta-final {
  padding: 84px 0;
  background: linear-gradient(135deg, var(--brand-dark), #0a4126);
  color: #fff;
  text-align: center;
}
.cta-final h2 { color: #fff; font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 14px; }
.cta-final p { color: rgba(255,255,255,0.78); font-size: 16px; margin-bottom: 32px; }
.cta-final .pill-btn--wa { background: #fff; color: var(--brand-dark); }
.cta-final .pill-btn--wa:hover { background: #eafff2; }
.cta-final .pill-btn--wa svg { color: var(--brand-dark); }

/* ---------- Footer ---------- */
footer { background: var(--ink-band); color: rgba(255,255,255,0.8); padding: 64px 0 28px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand p { font-size: 14px; color: rgba(255,255,255,0.58); margin: 14px 0 20px; max-width: 34ch; line-height: 1.6; }
footer h4 { color: #fff; font-size: 13.5px; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 18px; }
footer .footer__col ul { display: flex; flex-direction: column; gap: 12px; }
footer .footer__col ul a, footer .footer__col ul span { font-size: 14px; color: rgba(255,255,255,0.62); }
footer .footer__col ul a:hover { color: #8bebb5; }
footer .footer__col ul li { display: flex; align-items: flex-start; gap: 10px; }
footer .footer__col ul li svg { width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; color: #8bebb5; }
.footer__bottom {
  padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,0.5);
}

/* ---------- Floating WA button ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--wa-dark);
  display: grid; place-items: center;
  box-shadow: 0 10px 30px -8px rgba(18, 140, 74, 0.6);
  transition: transform 0.18s cubic-bezier(0.16,1,0.3,1);
}
.wa-float:hover { transform: scale(1.07); }
.wa-float svg { width: 28px; height: 28px; color: #fff; }
.wa-float__ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--wa-dark);
  opacity: 0.5;
}
@media (prefers-reduced-motion: no-preference) {
  .wa-float__ring { animation: wa-pulse 2.4s cubic-bezier(0.16,1,0.3,1) infinite; }
}
@keyframes wa-pulse {
  0% { transform: scale(0.9); opacity: 0.55; }
  70% { transform: scale(1.5); opacity: 0; }
  100% { opacity: 0; }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .why__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .why__card--lg { grid-row: span 1; grid-column: span 2; }
  .fleet__grid { grid-template-columns: repeat(2, 1fr); }
  .how__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
  .how__step::after { display: none; }
  .coverage__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__phone { display: none; }
  .nav__actions .pill-btn--wa { display: none; }
  .nav__burger { display: flex; }
  .brand__text { font-size: 13.5px; }
  .brand__text small { font-size: 9.5px; }
  .brand__mark { width: 32px; height: 32px; font-size: 13px; }
  .hero { min-height: 100dvh; }
  .hero__stats { grid-template-columns: repeat(2, auto); }
  .why { padding: 64px 0; }
  .why__grid { grid-template-columns: 1fr; }
  .why__card--lg { grid-column: span 1; }
  .fleet { padding: 64px 0; }
  .fleet__grid { grid-template-columns: 1fr; }
  .how { padding: 64px 0; }
  .how__grid { grid-template-columns: 1fr; gap: 14px; }
  .how__step {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
  }
  .how__num { margin-bottom: 14px; }
  .coverage { padding: 64px 0; }
  .testi { padding: 64px 0; }
  .faq { padding: 64px 0; }
  .cta-final { padding: 64px 0; }
  footer { padding: 48px 0 24px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px 20px; padding-bottom: 32px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__brand p { margin: 12px 0 16px; }
  .footer__col--kontak { grid-column: 1 / -1; }
  footer h4 { margin-bottom: 14px; }
  footer .footer__col ul { gap: 10px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; padding-top: 18px; gap: 8px; }
}

@media (max-width: 560px) {
  .testi__viewport {
    -webkit-mask-image: linear-gradient(90deg, transparent, black 24px, black calc(100% - 24px), transparent);
    mask-image: linear-gradient(90deg, transparent, black 24px, black calc(100% - 24px), transparent);
  }
  .testi__track { padding-left: 16px; padding-right: 16px; }
  .testi-card { flex-basis: 84vw; padding: 22px; }
}
