/* ===================================================================
   Cabby — Your Ride, Your Route.
   Brand: Blue #2787c8 · Orange #db9228 · Navy #082138
   =================================================================== */

:root {
  --blue: #2787c8;
  --blue-dark: #1f6fa5;
  --orange: #db9228;
  --orange-dark: #c07d1c;
  --navy: #082138;
  --navy-soft: #0e2c48;
  --ink: #1a2733;
  --muted: #5c6b78;
  --line: #e6ebf0;
  --bg: #ffffff;
  --bg-alt: #f4f8fb;
  --white: #ffffff;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 4px 14px rgba(8, 33, 56, 0.06);
  --shadow: 0 12px 34px rgba(8, 33, 56, 0.10);
  --shadow-lg: 0 24px 60px rgba(8, 33, 56, 0.16);
  --container: 1160px;
  --ease: cubic-bezier(.22,.61,.36,1);

  --font-head: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
}

/* ---------- Reset / base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; color: var(--navy); font-weight: 700; }
address { font-style: normal; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 820px; }
.text-accent { color: var(--blue); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 16px;
  padding: 14px 28px; border-radius: 50px; border: 2px solid transparent;
  cursor: pointer; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 8px 20px rgba(39,135,200,.30); }
.btn--primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(39,135,200,.40); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--outline-light:hover { background: #fff; color: var(--navy); }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.9); backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent; transition: box-shadow .3s, border-color .3s, background .3s;
}
.header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); background: rgba(255,255,255,.96); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.header__logo img { height: 46px; width: auto; }

.nav { display: flex; align-items: center; gap: 34px; }
.nav__list { display: flex; gap: 28px; }
.nav__link {
  font-family: var(--font-head); font-weight: 500; font-size: 15.5px; color: var(--ink);
  position: relative; padding: 4px 0; transition: color .2s;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--blue); transition: width .25s var(--ease);
}
.nav__link:hover, .nav__link.active { color: var(--blue); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.nav__cta { padding: 10px 22px; font-size: 15px; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 26px; height: 3px; background: var(--navy); border-radius: 3px; transition: .3s var(--ease); }
.nav__toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  padding: 132px 0 70px;
  background:
    radial-gradient(900px 500px at 88% -8%, rgba(39,135,200,.14), transparent 60%),
    radial-gradient(700px 460px at 5% 108%, rgba(219,146,40,.12), transparent 60%),
    var(--bg);
}
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
.hero__eyebrow {
  display: inline-block; background: rgba(39,135,200,.10); color: var(--blue-dark);
  font-family: var(--font-head); font-weight: 600; font-size: 14px; padding: 7px 16px;
  border-radius: 50px; margin-bottom: 22px;
}
.hero__title { font-size: clamp(2.6rem, 5.4vw, 4.1rem); font-weight: 800; letter-spacing: -1px; }
.hero__text { color: var(--muted); font-size: 1.16rem; margin: 22px 0 32px; max-width: 520px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 38px; margin-top: 46px; flex-wrap: wrap; }
.stat__num { font-family: var(--font-head); font-weight: 800; font-size: 2.1rem; color: var(--navy); display: block; }
.stat__label { color: var(--muted); font-size: .95rem; }

/* Booking card */
.hero__card {
  background: #fff; border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--line); position: relative;
}
.hero__card::before {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius-lg);
  padding: 2px; background: linear-gradient(135deg, var(--blue), var(--orange));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: .35; pointer-events: none;
}
.booking__title { font-size: 1.5rem; }
.booking__sub { color: var(--muted); font-size: .98rem; margin-bottom: 18px; }
.booking { display: flex; flex-direction: column; gap: 14px; }

/* Form fields */
.field { display: flex; flex-direction: column; gap: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { font-family: var(--font-head); font-weight: 500; font-size: 14px; color: var(--navy); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 16px; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px;
  background: #fbfcfd; transition: border-color .2s, box-shadow .2s; width: 100%;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(39,135,200,.12); background: #fff;
}
.field input.invalid, .field textarea.invalid { border-color: #e04b4b; box-shadow: 0 0 0 4px rgba(224,75,75,.10); }
.error { color: #d63b3b; font-size: 13px; min-height: 0; }
.fare {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(219,146,40,.10); border: 1px dashed var(--orange);
  padding: 12px 16px; border-radius: 12px;
}
.fare span { color: var(--navy); font-weight: 500; }
.fare strong { font-family: var(--font-head); font-size: 1.4rem; color: var(--orange-dark); }
.booking__note { font-size: 12.5px; color: var(--muted); text-align: center; }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--navy); }
.trustbar__inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; padding: 20px 24px; }
.trustbar__item { color: #dbe6f0; font-family: var(--font-head); font-weight: 500; font-size: 15px; display: flex; align-items: center; gap: 10px; }
.trustbar__item span { font-size: 20px; }

/* ---------- Sections ---------- */
.section { padding: 92px 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%); }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 54px; }
.section__eyebrow {
  font-family: var(--font-head); font-weight: 600; font-size: 14px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--orange); display: inline-block; margin-bottom: 12px;
}
.section__eyebrow--light { color: var(--orange); }
.section__title { font-size: clamp(1.9rem, 3.6vw, 2.7rem); font-weight: 700; letter-spacing: -.5px; }
.section__title--light { color: #fff; }
.section__lead { color: var(--muted); font-size: 1.12rem; margin-top: 14px; }

/* ---------- Grid / Cards ---------- */
.grid { display: grid; gap: 26px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }

.service { transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s; }
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(39,135,200,.35); }
.service__icon {
  width: 62px; height: 62px; display: grid; place-items: center; font-size: 30px;
  background: linear-gradient(135deg, rgba(39,135,200,.14), rgba(219,146,40,.14));
  border-radius: 16px; margin-bottom: 18px;
}
.service h3 { font-size: 1.25rem; margin-bottom: 8px; }
.service p { color: var(--muted); font-size: 1rem; }

/* ---------- Steps ---------- */
.steps { display: flex; align-items: stretch; justify-content: center; gap: 8px; flex-wrap: wrap; }
.step { flex: 1 1 250px; max-width: 320px; text-align: center; background: #fff; border-radius: var(--radius); padding: 34px 26px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.step__num {
  width: 56px; height: 56px; margin: 0 auto 18px; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark)); border-radius: 50%;
  box-shadow: 0 8px 18px rgba(39,135,200,.35);
}
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .98rem; }
.step__arrow { display: flex; align-items: center; font-size: 1.8rem; color: var(--orange); font-weight: 700; }

/* ---------- Why ---------- */
.why__inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.why__media {
  position: relative; min-height: 380px; border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(39,135,200,.9), rgba(8,33,56,.92)),
    radial-gradient(circle at 30% 30%, rgba(219,146,40,.6), transparent 55%);
  display: grid; place-items: center; overflow: hidden;
}
.why__media::before {
  content: "🚕"; font-size: 8rem; filter: drop-shadow(0 14px 30px rgba(0,0,0,.35));
}
.why__badge {
  position: absolute; bottom: 22px; right: 22px; background: #fff; border-radius: 14px;
  padding: 14px 20px; box-shadow: var(--shadow); text-align: center;
}
.why__badge strong { display: block; font-family: var(--font-head); font-size: 1.6rem; color: var(--orange); }
.why__badge span { font-size: .82rem; color: var(--muted); }
.features { display: flex; flex-direction: column; gap: 22px; margin-top: 26px; }
.features li { display: flex; gap: 16px; align-items: flex-start; }
.features__ico {
  flex: 0 0 48px; width: 48px; height: 48px; display: grid; place-items: center; font-size: 22px;
  background: rgba(39,135,200,.10); border-radius: 12px;
}
.features h4 { font-size: 1.12rem; margin-bottom: 3px; }
.features p { color: var(--muted); font-size: 1rem; }

/* ---------- CTA / Drive ---------- */
.cta__inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 50px; align-items: center; }
.cta__lead { color: #c3d2e0; font-size: 1.1rem; margin: 16px 0 22px; }
.cta__list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 30px; }
.cta__list li { color: #dbe6f0; font-size: 1.02rem; }
.cta__buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.appcard {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-lg);
  padding: 30px; display: flex; gap: 18px; align-items: center; backdrop-filter: blur(6px);
}
.appcard__icon {
  flex: 0 0 70px; width: 70px; height: 70px; display: grid; place-items: center; font-size: 34px;
  background: linear-gradient(135deg, var(--blue), var(--orange)); border-radius: 18px;
}
.appcard small { color: #a9bccc; font-size: .82rem; text-transform: uppercase; letter-spacing: 1px; }
.appcard strong { display: block; color: #fff; font-family: var(--font-head); font-size: 1.2rem; margin: 2px 0 12px; }
.appcard__badges { display: flex; gap: 10px; flex-wrap: wrap; }
.store {
  background: #0b1a2c; color: #fff; font-size: 13px; font-weight: 600; font-family: var(--font-head);
  padding: 8px 14px; border-radius: 10px; border: 1px solid rgba(255,255,255,.14); cursor: pointer;
  transition: background .2s;
}
.store:hover { background: var(--blue); }

/* ---------- Testimonials slider ---------- */
.slider { max-width: 780px; margin: 0 auto; overflow: hidden; }
.slider__track { display: flex; transition: transform .55s var(--ease); }
.quote {
  flex: 0 0 100%; background: #fff; border-radius: var(--radius-lg); padding: 42px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line); text-align: center;
}
.quote__stars { color: var(--orange); font-size: 1.3rem; letter-spacing: 3px; margin-bottom: 16px; }
.quote blockquote { font-size: 1.2rem; color: var(--ink); font-weight: 500; line-height: 1.6; }
.quote figcaption { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 26px; }
.quote__avatar {
  width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--orange)); color: #fff;
  font-family: var(--font-head); font-weight: 700;
}
.quote figcaption strong { display: block; color: var(--navy); font-family: var(--font-head); }
.quote figcaption small { color: var(--muted); }
.quote figcaption > div { text-align: left; }
.slider__dots { display: flex; justify-content: center; gap: 10px; margin-top: 26px; }
.slider__dots button {
  width: 11px; height: 11px; border-radius: 50%; border: 0; background: #cdd8e2; cursor: pointer; transition: .25s;
}
.slider__dots button.active { background: var(--blue); width: 30px; border-radius: 6px; }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 14px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--font-head); font-weight: 600; font-size: 1.06rem; color: var(--navy);
  padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq__icon { font-size: 1.5rem; color: var(--blue); transition: transform .3s var(--ease); flex-shrink: 0; }
.faq__item.open .faq__icon { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq__a p { padding: 0 24px 20px; color: var(--muted); }

/* ---------- Contact ---------- */
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: start; }
.contact__list { display: flex; flex-direction: column; gap: 16px; margin: 26px 0; }
.contact__list li { display: flex; gap: 14px; align-items: flex-start; }
.contact__list span { font-size: 20px; flex-shrink: 0; }
.contact__list a:hover { color: var(--blue); }
.contact__socials, .footer__socials { display: flex; gap: 12px; }
.contact__socials a, .footer__socials a {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 600; font-size: 13px; transition: .25s var(--ease);
}
.contact__socials a { background: var(--navy); color: #fff; }
.contact__socials a:hover { background: var(--blue); transform: translateY(-3px); }
.form__success { color: #1a8a4a; font-weight: 600; font-size: .95rem; text-align: center; }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: #b9c7d4; padding: 66px 0 0; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer__logo { height: 62px; margin-bottom: 18px; }
.footer__brand p { font-size: .98rem; margin-bottom: 20px; max-width: 300px; }
.footer__socials a { background: rgba(255,255,255,.08); color: #fff; }
.footer__socials a:hover { background: var(--blue); transform: translateY(-3px); }
.footer__col h4 { color: #fff; font-size: 1.05rem; margin-bottom: 16px; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a:hover, .footer__col li:hover { color: var(--orange); }
.footer__col a { transition: color .2s; }
.footer__bar { border-top: 1px solid rgba(255,255,255,.10); padding: 20px 0; }
.footer__bar-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: .9rem; }

/* ---------- Legal pages (Privacy / Terms) ---------- */
.legal-hero {
  padding: 132px 0 56px;
  background:
    radial-gradient(900px 500px at 88% -8%, rgba(39,135,200,.14), transparent 60%),
    radial-gradient(700px 460px at 5% 118%, rgba(219,146,40,.10), transparent 60%),
    var(--bg);
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.legal-hero__eyebrow {
  font-family: var(--font-head); font-weight: 600; font-size: 14px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--orange); display: inline-block; margin-bottom: 12px;
}
.legal-hero h1 { font-size: clamp(2rem, 4.4vw, 3rem); font-weight: 800; letter-spacing: -.5px; }
.legal-hero__updated { color: var(--muted); font-size: .98rem; margin-top: 14px; }

.legal { padding: 60px 0 92px; }
.legal__body { max-width: 820px; margin: 0 auto; }
.legal__body h2 {
  font-size: 1.5rem; margin: 40px 0 12px; padding-top: 8px;
}
.legal__body h2:first-child { margin-top: 0; }
.legal__body h3 { font-size: 1.15rem; color: var(--navy); margin: 24px 0 8px; }
.legal__body p { color: var(--ink); margin-bottom: 16px; }
.legal__body ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.legal__body ul li { color: var(--ink); margin-bottom: 8px; }
.legal__body a { color: var(--blue); font-weight: 500; }
.legal__body a:hover { color: var(--blue-dark); text-decoration: underline; }
.legal__intro {
  background: var(--bg-alt); border: 1px solid var(--line); border-left: 4px solid var(--blue);
  border-radius: var(--radius); padding: 22px 24px; margin-bottom: 36px;
}
.legal__intro p { margin-bottom: 0; color: var(--muted); }
.legal__toc {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 26px; margin-bottom: 40px; box-shadow: var(--shadow-sm);
}
.legal__toc h2 { font-size: 1.1rem; margin: 0 0 12px; }
.legal__toc ol { padding-left: 20px; display: flex; flex-direction: column; gap: 6px; }
.legal__toc a { color: var(--navy); }
.legal__toc a:hover { color: var(--blue); }

/* Footer legal links */
.footer__legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer__legal a { transition: color .2s; }
.footer__legal a:hover { color: var(--orange); }

/* ---------- Coming Soon ---------- */
.coming {
  min-height: 100vh;
  display: grid; place-items: center;
  padding: 132px 0 80px;
  background:
    radial-gradient(900px 520px at 85% -10%, rgba(39,135,200,.16), transparent 60%),
    radial-gradient(760px 480px at 8% 112%, rgba(219,146,40,.14), transparent 60%),
    var(--bg);
}
.coming__inner { max-width: 660px; margin: 0 auto; text-align: center; }
.coming__badge-icon {
  width: 96px; height: 96px; margin: 0 auto 26px; display: grid; place-items: center; font-size: 46px;
  background: linear-gradient(135deg, var(--blue), var(--orange)); border-radius: 26px;
  box-shadow: 0 18px 40px rgba(39,135,200,.35);
}
.coming__eyebrow {
  font-family: var(--font-head); font-weight: 600; font-size: 14px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--orange); display: inline-block; margin-bottom: 10px;
}
.coming__title { font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 800; letter-spacing: -1px; }
.coming__text { color: var(--muted); font-size: 1.16rem; margin: 20px auto 30px; max-width: 540px; }
.coming__text strong { color: var(--navy); }
.coming__stores { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }
.store--lg { padding: 14px 22px; font-size: 15px; cursor: default; }
.store--lg:hover { background: #0b1a2c; }
.coming__note { color: var(--muted); font-size: 1rem; margin-bottom: 26px; }
.coming__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; bottom: 26px; right: 26px; z-index: 90;
  width: 50px; height: 50px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--blue); color: #fff; font-size: 22px; box-shadow: var(--shadow);
  transition: transform .25s var(--ease), background .2s; display: grid; place-items: center;
}
.to-top:hover { background: var(--blue-dark); transform: translateY(-3px); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ===================================================================
   Responsive
   =================================================================== */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 44px; }
  .hero__card { max-width: 520px; }
  .why__inner, .cta__inner, .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .why__media { min-height: 300px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 34px; }
  .step__arrow { display: none; }
}

@media (max-width: 760px) {
  /* Mobile nav */
  .nav {
    position: fixed; top: 72px; right: 0; left: 0;
    background: #fff; flex-direction: column; align-items: stretch; gap: 0;
    padding: 10px 24px 28px; box-shadow: var(--shadow); border-top: 1px solid var(--line);
    transform: translateY(-140%); transition: transform .38s var(--ease); z-index: 99;
  }
  .nav.open { transform: translateY(0); }
  .nav__list { flex-direction: column; gap: 0; }
  .nav__list li { border-bottom: 1px solid var(--line); }
  .nav__link { display: block; padding: 15px 0; font-size: 17px; }
  .nav__link::after { display: none; }
  .nav__cta { margin-top: 16px; text-align: center; }
  .nav__toggle { display: flex; }

  .grid--3 { grid-template-columns: 1fr; }
  .section { padding: 68px 0; }
  .hero { padding: 116px 0 56px; }
  .hero__stats { gap: 26px; }
  .stat__num { font-size: 1.7rem; }
  .trustbar__inner { justify-content: flex-start; gap: 14px 26px; }
  .quote { padding: 30px 22px; }
  .quote blockquote { font-size: 1.06rem; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 460px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }
  .hero__card { padding: 24px 20px; }
  .field-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__actions .btn, .cta__buttons .btn { flex: 1 1 auto; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
