/* =================================================================
   Healthite — Global Stylesheet
   Brand: Integrating technology into health
   ================================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand */
  --teal:        #2DBFA6;   /* logo mint-teal */
  --teal-bright: #33C5AB;
  --aqua:        #A0DFDF;   /* brand color 1 */
  --sage:        #92B473;   /* brand color 2 */
  --deep:        #0E4F49;   /* deep teal — primary UI */
  --deep-dark:   #0A3B36;

  /* Ink & text */
  --ink:    #103A3A;
  --text:   #45595B;
  --muted:  #738789;
  --line:   #E2EDEB;

  /* Surfaces */
  --bg:        #FFFFFF;
  --bg-soft:   #F1FAF8;
  --bg-mint:   #E9F7F4;
  --bg-dark:   #0E4F49;

  /* Effects */
  --shadow-sm: 0 2px 8px rgba(16, 58, 58, .06);
  --shadow:    0 14px 40px rgba(16, 58, 58, .10);
  --shadow-lg: 0 30px 70px rgba(16, 58, 58, .16);
  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  /* Layout */
  --maxw: 1200px;
  --gut:  clamp(20px, 5vw, 56px);

  --ff-head: 'Sora', system-ui, -apple-system, Segoe UI, sans-serif;
  --ff-body: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--ff-head); color: var(--ink); line-height: 1.18; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); letter-spacing: -.015em; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.06rem; }
p  { color: var(--text); }
strong { color: var(--ink); font-weight: 600; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding: clamp(64px, 9vw, 116px) 0; }
.section--soft { background: var(--bg-soft); }
.section--mint { background: var(--bg-mint); }
.section--dark { background: var(--bg-dark); color: #D6EBE8; }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.narrow { max-width: 760px; }
.center { text-align: center; margin-inline: auto; }

.grid { display: grid; gap: 26px; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Eyebrow / Section head ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-head); font-weight: 600;
  font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--deep); background: var(--bg-mint);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 18px;
}
.section--dark .eyebrow { color: var(--aqua); background: rgba(160,223,223,.12); }
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--teal); }

.sec-head { margin-bottom: 52px; }
.sec-head p { margin-top: 14px; font-size: 1.08rem; }
.sec-head.center p { margin-inline: auto; max-width: 640px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--ff-head); font-weight: 600; font-size: .98rem;
  padding: 14px 26px; border-radius: 999px;
  transition: transform .18s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--deep); color: #fff; box-shadow: 0 10px 24px rgba(14,79,73,.28); }
.btn--primary:hover { background: var(--deep-dark); transform: translateY(-2px); box-shadow: 0 16px 30px rgba(14,79,73,.34); }
.btn--accent { background: var(--teal); color: #06302B; box-shadow: 0 10px 24px rgba(45,191,166,.32); }
.btn--accent:hover { background: var(--teal-bright); transform: translateY(-2px); }
.btn--ghost { background: #fff; color: var(--deep); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--teal); color: var(--deep); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--deep); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--outline-light { border: 1.5px solid rgba(255,255,255,.4); color: #fff; }
.btn--outline-light:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }
.btn--lg { padding: 17px 34px; font-size: 1.04rem; }
.btn--block { width: 100%; }

.textlink {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--ff-head); font-weight: 600; color: var(--deep);
}
.textlink svg { width: 16px; height: 16px; transition: transform .2s ease; }
.textlink:hover svg { transform: translateX(4px); }

/* ===================================================================
   HEADER
   =================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand img { height: 38px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-family: var(--ff-head); font-weight: 500; font-size: .96rem;
  color: var(--ink); padding: 10px 15px; border-radius: 10px;
  transition: background .18s ease, color .18s ease;
}
.nav-links a:hover { background: var(--bg-mint); color: var(--deep); }
.nav-links a.active { color: var(--deep); background: var(--bg-mint); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 10px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px auto; border-radius: 2px; transition: .25s 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; overflow: hidden; background: linear-gradient(170deg, #F1FAF8 0%, #E9F7F4 55%, #FFFFFF 100%); }
.hero::before {
  content: ""; position: absolute; top: -180px; right: -160px;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(45,191,166,.22), transparent 68%);
}
.hero::after {
  content: ""; position: absolute; bottom: -200px; left: -140px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(160,223,223,.34), transparent 70%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
  padding: clamp(56px, 8vw, 104px) 0;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 .accent { color: var(--deep); position: relative; }
.hero-lead { font-size: 1.16rem; max-width: 520px; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 26px; }
.hero-trust li { display: flex; align-items: center; gap: 9px; font-size: .92rem; font-weight: 500; color: var(--ink); }
.hero-trust svg { width: 19px; height: 19px; color: var(--teal); flex: none; }
.hero-visual { position: relative; }

/* badge pill above heading */
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  padding: 8px 16px 8px 8px; border-radius: 999px; margin-bottom: 22px;
  font-size: .86rem; font-weight: 500; color: var(--ink);
}
.hero-badge .tag {
  font-family: var(--ff-head); font-weight: 700; font-size: .72rem;
  background: var(--deep); color: #fff; padding: 4px 10px; border-radius: 999px;
  letter-spacing: .04em;
}

/* ===================================================================
   PARTNER / LOGO STRIP
   =================================================================== */
.marquee { padding: 34px 0; border-block: 1px solid var(--line); background: #fff; }
.marquee p { text-align: center; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 20px; }
.marquee-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 40px; }
.marquee-row span {
  font-family: var(--ff-head); font-weight: 700; font-size: 1.04rem;
  color: var(--ink); opacity: .55; display: flex; align-items: center; gap: 9px;
}
.marquee-row span svg { width: 22px; height: 22px; color: var(--teal); }

/* ===================================================================
   STATS
   =================================================================== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; text-align: center; box-shadow: var(--shadow-sm);
}
.section--dark .stat { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); }
.stat .num { font-family: var(--ff-head); font-weight: 800; font-size: 2.5rem; color: var(--deep); line-height: 1; }
.section--dark .stat .num { color: var(--aqua); }
.stat .lbl { margin-top: 10px; font-size: .94rem; color: var(--muted); }
.section--dark .stat .lbl { color: #B7D6D2; }

/* ===================================================================
   CARDS
   =================================================================== */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #CDE7E2; }
.card-ico {
  width: 56px; height: 56px; border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-mint); color: var(--deep); margin-bottom: 20px;
}
.card-ico svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .98rem; }
.card .textlink { margin-top: 16px; }

/* service card with number */
.svc-card { position: relative; }
.svc-card .idx {
  position: absolute; top: 26px; right: 30px;
  font-family: var(--ff-head); font-weight: 800; font-size: 2.4rem;
  color: var(--bg-mint); line-height: 1;
}

/* feature list inside cards */
.ticklist li { display: flex; gap: 11px; padding: 7px 0; font-size: .97rem; }
.ticklist li::before {
  content: ""; flex: none; width: 21px; height: 21px; border-radius: 50%;
  background: var(--bg-mint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 24 24' fill='none' stroke='%230E4F49' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/13px no-repeat;
  margin-top: 3px;
}
.section--dark .ticklist li::before { background-color: rgba(160,223,223,.16); }

/* ===================================================================
   SPLIT / FEATURE ROWS
   =================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--rev .split-media { order: 2; }
.split-media img, .split-media svg { border-radius: var(--radius); }
.split h2 { margin-bottom: 16px; }
.split .ticklist { margin-top: 20px; }
.split .btn { margin-top: 26px; }

/* ===================================================================
   PROCESS
   =================================================================== */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }
.step { position: relative; }
.step .dot {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--deep); color: #fff;
  font-family: var(--ff-head); font-weight: 700; font-size: 1.15rem;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.step:not(:last-child) .dot::after {
  content: ""; position: absolute; top: 26px; left: 52px; right: -26px;
  height: 2px; background: linear-gradient(90deg, var(--teal), transparent);
}
.step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { font-size: .95rem; }

/* ===================================================================
   CTA BAND
   =================================================================== */
.cta-band { position: relative; overflow: hidden; }
.cta-box {
  position: relative; background: var(--bg-dark); border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 76px); text-align: center; overflow: hidden;
}
.cta-box::before {
  content: ""; position: absolute; top: -120px; right: -80px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(45,191,166,.4), transparent 68%);
}
.cta-box::after {
  content: ""; position: absolute; bottom: -150px; left: -90px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(160,223,223,.26), transparent 70%);
}
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 { color: #fff; margin-bottom: 14px; }
.cta-box p { color: #C7E3DF; max-width: 560px; margin: 0 auto 28px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ===================================================================
   PAGE HERO (inner pages)
   =================================================================== */
.page-hero { position: relative; overflow: hidden; background: linear-gradient(165deg, #0E4F49 0%, #0A3B36 100%); color: #CFE7E3; padding: clamp(56px, 8vw, 96px) 0 clamp(60px, 8vw, 100px); }
.page-hero::before {
  content: ""; position: absolute; top: -160px; right: -120px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(45,191,166,.34), transparent 66%);
}
.page-hero::after {
  content: ""; position: absolute; bottom: -200px; left: -120px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(160,223,223,.16), transparent 70%);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 760px; }
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero p { font-size: 1.12rem; color: #BCDAD5; }
.breadcrumb { display: flex; gap: 8px; font-size: .86rem; margin-bottom: 20px; color: #8FB8B2; }
.breadcrumb a:hover { color: var(--aqua); }
.breadcrumb span { color: var(--aqua); }

/* ===================================================================
   ACCORDION / FAQ
   =================================================================== */
.faq { max-width: 820px; margin-inline: auto; }
.acc {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  margin-bottom: 14px; overflow: hidden;
}
.acc-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 26px; text-align: left;
  font-family: var(--ff-head); font-weight: 600; font-size: 1.05rem; color: var(--ink);
}
.acc-q .ico { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--bg-mint); position: relative; transition: background .2s ease; }
.acc-q .ico::before, .acc-q .ico::after { content: ""; position: absolute; background: var(--deep); border-radius: 2px; }
.acc-q .ico::before { width: 12px; height: 2px; top: 12px; left: 7px; }
.acc-q .ico::after  { width: 2px; height: 12px; top: 7px; left: 12px; transition: transform .25s ease; }
.acc.open .acc-q .ico { background: var(--deep); }
.acc.open .acc-q .ico::before, .acc.open .acc-q .ico::after { background: #fff; }
.acc.open .acc-q .ico::after { transform: rotate(90deg); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.acc-a p { padding: 0 26px 22px; font-size: .98rem; }

/* ===================================================================
   FORMS
   =================================================================== */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(26px, 4vw, 42px); box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--ff-head); font-weight: 600; font-size: .9rem; color: var(--ink); margin-bottom: 7px; }
.field label .req { color: #D9534F; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line);
  border-radius: 11px; color: var(--ink); background: #fff; transition: border-color .18s ease, box-shadow .18s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(45,191,166,.14);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: .84rem; color: var(--muted); margin-top: 6px; }
.form-msg { display: none; padding: 14px 18px; border-radius: 11px; font-size: .95rem; margin-bottom: 18px; }
.form-msg.show { display: block; }
.form-msg.ok { background: var(--bg-mint); color: var(--deep); border: 1px solid #BCE3DC; }
.form-msg.err { background: #FBEAEA; color: #B23B38; border: 1px solid #EFC9C9; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* contact info cards */
.info-card { display: flex; gap: 16px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; }
.info-card .ic { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--bg-mint); color: var(--deep); display: flex; align-items: center; justify-content: center; }
.info-card .ic svg { width: 22px; height: 22px; }
.info-card h4 { margin-bottom: 4px; }
.info-card p, .info-card a { font-size: .95rem; color: var(--text); }
.info-card a:hover { color: var(--deep); }

/* ===================================================================
   MISC BLOCKS
   =================================================================== */
.value-row { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.value-row:last-child { border-bottom: 0; }
.value-row .vico { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--bg-mint); color: var(--deep); display: flex; align-items: center; justify-content: center; }
.value-row .vico svg { width: 23px; height: 23px; }
.value-row h4 { margin-bottom: 4px; }
.value-row p { font-size: .95rem; }

.quote {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 38px; box-shadow: var(--shadow-sm); position: relative;
}
.quote .mark { font-family: var(--ff-head); font-size: 3.4rem; color: var(--teal); line-height: .6; }
.quote blockquote { font-size: 1.12rem; color: var(--ink); margin: 14px 0 22px; font-weight: 500; }
.quote .who { display: flex; align-items: center; gap: 13px; }
.quote .who .av { width: 46px; height: 46px; border-radius: 50%; background: var(--bg-mint); color: var(--deep); display: flex; align-items: center; justify-content: center; font-family: var(--ff-head); font-weight: 700; }
.quote .who b { display: block; color: var(--ink); font-family: var(--ff-head); }
.quote .who span { font-size: .88rem; color: var(--muted); }

.pill-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.pill-tags span {
  font-family: var(--ff-head); font-weight: 500; font-size: .86rem;
  padding: 8px 15px; border-radius: 999px; background: #fff;
  border: 1px solid var(--line); color: var(--ink);
}

.feature-icon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.mini {
  display: flex; gap: 14px; padding: 22px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
}
.mini .mico { flex: none; width: 42px; height: 42px; border-radius: 11px; background: var(--bg-mint); color: var(--deep); display: flex; align-items: center; justify-content: center; }
.mini .mico svg { width: 21px; height: 21px; }
.mini h4 { margin-bottom: 3px; font-size: 1rem; }
.mini p { font-size: .9rem; }

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer { background: #08312D; color: #9EBFBA; padding-top: 72px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 52px; }
.footer-brand img { height: 36px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .95rem; color: #9EBFBA; max-width: 320px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center; transition: background .2s ease;
}
.footer-social a:hover { background: var(--teal); color: #06302B; }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 { color: #fff; font-size: .98rem; margin-bottom: 16px; }
.footer-col a { display: block; font-size: .93rem; padding: 6px 0; color: #9EBFBA; transition: color .18s ease; }
.footer-col a:hover { color: var(--aqua); }
.footer-loc { display: flex; gap: 9px; font-size: .92rem; padding: 6px 0; }
.footer-loc svg { width: 17px; height: 17px; color: var(--teal); flex: none; margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 24px 0;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: .87rem; color: #7FA39E;
}
.footer-bottom a:hover { color: var(--aqua); }

/* ===================================================================
   SCROLL REVEAL
   =================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 520px; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split--rev .split-media { order: 0; }
  .g-4, .stats, .process, .feature-icon-grid { grid-template-columns: repeat(2, 1fr); }
  .step:not(:last-child) .dot::after { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: 78px 0 auto 0; flex-direction: column; align-items: stretch;
    background: #fff; padding: 16px var(--gut) 28px; gap: 4px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    transform: translateY(-130%); transition: transform .3s ease; z-index: 99;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 13px 14px; }
  .nav-cta .btn:not(.nav-toggle) { display: none; }
  .g-2, .g-3, .g-4, .stats, .process, .feature-icon-grid, .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  body { font-size: 16px; }
}
