/* ============================================================
   Garson Tech — Marketing Site
   Design system per DESIGN.md
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Core palette */
  --color-lime: #35AF4A;
  --color-lime-deep: #2E9941;
  --color-lime-tint: rgba(53, 175, 74, 0.16);
  --color-navy: #1A2417;
  --color-navy-soft: #283A22;
  --color-ink: #1B1F1A;
  --color-body: #5A6357;
  --color-muted: #9AA396;

  /* Surfaces */
  --bg-page: #FFFFFF;
  --bg-tint: #F4F6F1;
  --bg-card: #FFFFFF;
  --border: #E6E9E1;

  /* On dark */
  --on-navy-body: #B9C4B2;

  /* Type */
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;

  /* Radius */
  --radius-pill: 999px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;

  /* Shadow */
  --shadow-sm: 0 4px 16px rgba(26, 36, 23, 0.06);
  --shadow-md: 0 18px 48px rgba(26, 36, 23, 0.10);
  --shadow-lg: 0 30px 70px rgba(26, 36, 23, 0.16);

  /* Layout */
  --container: 1200px;
  --gutter: 24px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-body);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: 96px; }
.section--tint { background: var(--bg-tint); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-lime-deep);
  background: var(--color-lime-tint);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
}
.eyebrow--plain {
  background: transparent;
  padding: 0;
  color: var(--color-lime-deep);
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-lime);
}
.eyebrow--plain::before { display: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-ink);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.section-head { max-width: 640px; }
.section-head h2 {
  font-size: clamp(32px, 5vw, 48px);
  margin-top: 16px;
}
.section-head p {
  font-size: 20px;
  line-height: 1.5;
  margin-top: 16px;
  color: var(--color-body);
}
.section-head--center { margin-inline: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, background-color 0.15s ease,
    color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }

.btn--primary { background: var(--color-lime); color: #fff; }
.btn--primary:hover { background: var(--color-lime-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn--navy { background: var(--color-navy); color: #fff; }
.btn--navy:hover { background: #25331f; transform: translateY(-2px); }

.btn--ghost { background: transparent; border-color: rgba(26,36,23,.22); color: var(--color-ink); }
.btn--ghost:hover { border-color: var(--color-ink); transform: translateY(-2px); }

.btn--light { background: #fff; color: var(--color-ink); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn--outline-light { background: transparent; border-color: rgba(255,255,255,.35); color: #fff; }
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); transform: translateY(-2px); }

/* ============================================================
   NAV
   ============================================================ */
.nav-wrap {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding-top: 20px;
  pointer-events: none;
  transition: padding-top 0.3s ease;
}
.nav-wrap.scrolled { padding-top: 10px; }

.nav {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--container);
  margin-inline: auto;
  padding: 10px 12px 10px 22px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
/* container gutter for nav */
.nav-wrap > .nav { margin-inline: var(--gutter); }
@media (min-width: 1248px) { .nav-wrap > .nav { margin-inline: auto; } }

.nav__logo img { height: 30px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
}
.nav__links a {
  display: inline-block;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-ink);
  border-radius: var(--radius-pill);
  transition: color 0.15s ease, background-color 0.15s ease;
}
.nav__links a:hover { color: var(--color-lime-deep); background: var(--color-lime-tint); }

.nav__cta { display: flex; align-items: center; gap: 8px; }
.nav__cta .btn { padding: 11px 22px; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 10px;
}
.nav__toggle span {
  width: 22px; height: 2px;
  background: var(--color-ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding-top: 160px;
  padding-bottom: 96px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 50% at 85% 0%, rgba(53,175,74,.10), transparent 70%),
    radial-gradient(50% 50% at 0% 100%, rgba(53,175,74,.06), transparent 70%);
}
.hero__grid-lines {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(80% 60% at 70% 20%, #000, transparent 75%);
  mask-image: radial-gradient(80% 60% at 70% 20%, #000, transparent 75%);
  opacity: .5;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero__copy { max-width: 560px; }
.hero h1 {
  font-size: clamp(40px, 6.4vw, 72px);
  line-height: 1.02;
  margin-top: 22px;
}
.hero h1 .accent { color: var(--color-lime); }
.hero__lead {
  font-size: 20px;
  line-height: 1.5;
  margin-top: 22px;
  color: var(--color-body);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
}
.hero__stars { color: var(--color-lime); font-size: 18px; letter-spacing: 2px; }
.hero__trust-text { font-size: 14px; color: var(--color-body); }
.hero__trust-text strong { color: var(--color-ink); font-weight: 700; }

/* Hero phones */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 540px;
}
.phone {
  position: relative;
  border-radius: 40px;
  background: #0c0f0b;
  padding: 9px;
  box-shadow: var(--shadow-lg);
}
.phone::after {
  content: "";
  position: absolute;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  width: 34%; height: 22px;
  background: #0c0f0b;
  border-radius: 0 0 14px 14px;
  z-index: 3;
}
.phone img {
  border-radius: 32px;
  width: 100%;
  display: block;
}
.hero__phone--main {
  width: 270px;
  z-index: 2;
  transform: rotate(-3deg);
}
.hero__phone--side {
  position: absolute;
  width: 210px;
  right: -6px;
  bottom: 8px;
  z-index: 1;
  transform: rotate(6deg);
  opacity: .96;
}

.hero__badge {
  position: absolute;
  z-index: 4;
  top: 14px;
  left: 0;
  background: var(--color-lime);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  transform: rotate(-4deg);
  text-align: center;
}
.hero__badge .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 34px;
  line-height: 1;
}
.hero__badge .label {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: .92;
  margin-top: 4px;
}
.hero__chip {
  position: absolute;
  z-index: 4;
  bottom: 36px;
  left: -10px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__chip .rating-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--color-ink);
}
.hero__chip .rating-stars { color: var(--color-lime); font-size: 12px; letter-spacing: 1px; }
.hero__chip .rating-label { font-size: 12px; color: var(--color-muted); }

/* ============================================================
   STAT BAND
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat { padding-top: 20px; border-top: 2px solid var(--color-lime); }
.stat__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1;
  color: var(--color-lime);
}
.stat__num .plus { color: var(--color-lime); }
.stat__label { margin-top: 10px; font-size: 15px; color: var(--color-navy); font-weight: 500; }

/* ============================================================
   ABOUT
   ============================================================ */
.about__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.about__visual { position: relative; }
.about__mark {
  background: var(--bg-tint);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.about__mark img { width: 78%; }
.about__floating {
  position: absolute;
  bottom: -22px; right: -10px;
  background: var(--color-navy);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 16px 22px;
  box-shadow: var(--shadow-md);
}
.about__floating .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--color-lime);
}
.about__floating .label { font-size: 12px; color: var(--on-navy-body); }

.about__body h2 { font-size: clamp(30px, 4.5vw, 46px); margin-top: 16px; }
.about__body p { margin-top: 18px; font-size: 17px; line-height: 1.7; }
.about__body p.lead { font-size: 20px; color: var(--color-body); }
.about__signature {
  margin-top: 26px;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--color-ink);
  font-weight: 600;
}
.about__signature span { display: block; font-family: var(--font-body); font-size: 14px; font-weight: 500; color: var(--color-muted); margin-top: 2px; }

/* ============================================================
   WHY (navy panel)
   ============================================================ */
.why {
  background: var(--color-navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 72px;
  position: relative;
  overflow: hidden;
}
.why::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 50% at 100% 0%, rgba(53,175,74,.18), transparent 60%);
  pointer-events: none;
}
.why__head { max-width: 620px; position: relative; }
.why__head h2 { color: #fff; font-size: clamp(30px, 4.5vw, 46px); margin-top: 16px; }
.why__head p { color: var(--on-navy-body); font-size: 19px; margin-top: 16px; }

.why__grid {
  position: relative;
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  background: var(--color-navy-soft);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(53,175,74,.5);
  box-shadow: 0 0 0 1px rgba(53,175,74,.25), 0 18px 40px rgba(0,0,0,.25);
}
.value-card__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-lime);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.value-card__icon svg { width: 24px; height: 24px; stroke: #fff; }
.value-card h3 { color: #fff; font-size: 20px; }
.value-card p { color: var(--on-navy-body); font-size: 15px; margin-top: 10px; line-height: 1.6; }

/* ============================================================
   APPS SHOWCASE
   ============================================================ */
.apps__grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.app-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.app-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(53,175,74,.4); }

a.app-card { color: inherit; }
.app-card--linked { cursor: pointer; }

.app-card__head { display: flex; align-items: center; gap: 16px; }
.app-card__arrow {
  margin-left: auto;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--color-lime-tint);
  color: var(--color-lime-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.app-card__arrow svg { width: 18px; height: 18px; }
.app-card--linked:hover .app-card__arrow {
  background: var(--color-lime);
  color: #fff;
  transform: translate(2px, -2px);
}
.app-card__icon {
  width: 60px; height: 60px;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.app-card__title h3 { font-size: 22px; }
.app-card__tag {
  display: inline-block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-lime-deep);
}
.app-card__desc { margin-top: 16px; font-size: 15px; line-height: 1.6; }

.app-card__shots {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.app-shot {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-tint);
  aspect-ratio: 9 / 19.5;
}
.app-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials__carousel { margin-top: 48px; }

.testimonials__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 28px;
  cursor: grab;
  -ms-overflow-style: none;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.testimonials__track::-webkit-scrollbar { display: none; }
.testimonials__track.dragging { cursor: grabbing; scroll-behavior: auto; user-select: none; }
.testimonials__track.dragging .quote { pointer-events: none; }

.quote {
  flex: 0 0 380px;
  width: 380px;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.quote:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(53,175,74,.4); }
.quote__text { flex: 1; }

.carousel__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}
.carousel__btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--color-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: background-color 0.18s ease, color 0.18s ease,
    border-color 0.18s ease, transform 0.18s ease, opacity 0.18s ease;
}
.carousel__btn svg { width: 20px; height: 20px; }
.carousel__btn:hover:not(:disabled) {
  background: var(--color-lime);
  color: #fff;
  border-color: var(--color-lime);
  transform: translateY(-2px);
}
.carousel__btn:disabled { opacity: 0.35; cursor: not-allowed; box-shadow: none; }
.quote__stars { color: var(--color-lime); font-size: 15px; letter-spacing: 2px; }
.quote__text { margin-top: 14px; font-size: 16px; line-height: 1.6; color: var(--color-ink); }
.quote__author {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.quote__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--color-lime-tint);
  color: var(--color-lime-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.quote__meta strong { display: block; font-size: 14px; color: var(--color-ink); font-weight: 700; }
.quote__meta span { font-size: 13px; color: var(--color-muted); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact__panel {
  background: var(--color-lime);
  border-radius: var(--radius-lg);
  padding: 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact__panel::before,
.contact__panel::after {
  content: "+";
  position: absolute;
  font-family: var(--font-display);
  font-size: 120px;
  color: rgba(255,255,255,.14);
  line-height: 1;
}
.contact__panel::before { top: 20px; left: 40px; }
.contact__panel::after { bottom: 0px; right: 50px; }
.contact__panel .eyebrow {
  background: rgba(255,255,255,.22);
  color: #fff;
}
.contact__panel .eyebrow::before { background: #fff; }
.contact__panel h2 {
  color: #fff;
  font-size: clamp(32px, 5vw, 52px);
  margin-top: 18px;
  max-width: 720px;
  margin-inline: auto;
}
.contact__panel p {
  color: rgba(255,255,255,.92);
  font-size: 19px;
  margin-top: 18px;
  max-width: 560px;
  margin-inline: auto;
}
.contact__actions {
  position: relative;
  margin-top: 36px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-navy);
  color: var(--on-navy-body);
  padding-block: 64px 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand img { width: 150px; margin-bottom: 20px; }
.footer__brand p { max-width: 320px; font-size: 15px; line-height: 1.6; }
.footer__col h4 { color: #fff; font-size: 15px; text-transform: uppercase; letter-spacing: .06em; font-family: var(--font-body); font-weight: 600; margin-bottom: 16px; }
.footer__col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 15px; transition: color .15s ease; }
.footer__col a:hover { color: var(--color-lime); }
.footer__bottom {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  color: var(--color-muted);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

/* Hero load animation */
.hero-anim { opacity: 0; transform: translateY(20px); animation: heroIn .8s cubic-bezier(.2,.7,.2,1) forwards; }
.hero-anim[data-d="1"] { animation-delay: .06s; }
.hero-anim[data-d="2"] { animation-delay: .12s; }
.hero-anim[data-d="3"] { animation-delay: .18s; }
.hero-anim[data-d="4"] { animation-delay: .24s; }
.hero-anim[data-d="5"] { animation-delay: .34s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .section { padding-block: 72px; }
  .hero__inner { grid-template-columns: 1fr; gap: 56px; }
  .hero__visual { min-height: 480px; }
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .why { padding: 48px 32px; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .section { padding-block: 56px; }
  .nav__links, .nav__cta .btn { display: none; }
  .nav__toggle {
    display: flex;
    position: absolute;
    top: 14px;
    right: 14px;
  }
  .nav {
    position: relative;
    flex-wrap: wrap;
    padding-right: 56px;
  }
  .nav.open {
    background: #fff;
    box-shadow: var(--shadow-md);
    border-radius: 24px;
  }
  .nav.open .nav__links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 2px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
  }
  .nav.open .nav__links a { padding: 12px 16px; }
  .nav__cta { width: 100%; }
  .nav.open .nav__cta { order: 3; }
  .nav.open .nav__cta .btn { display: inline-flex; width: 100%; margin-top: 8px; }

  .hero { padding-top: 150px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .why__grid { grid-template-columns: 1fr; }
  .apps__grid { grid-template-columns: 1fr; }
  .quote { flex-basis: 85vw; width: 85vw; max-width: 360px; }
  .contact__panel { padding: 48px 28px; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .hero__phone--main { width: 230px; }
  .hero__phone--side { width: 175px; }
}

@media (max-width: 420px) {
  .stats { grid-template-columns: 1fr; }
  .hero__badge .num { font-size: 28px; }
}
