/* palette: bg=#0B0A0F fg=#F2F0F7 accent=#B662F0 */
/* fonts: display="Space Grotesk" body="Inter" mono="Space Mono" */

:root {
  --bg: #0B0A0F;        /* dominant near-black background */
  --bg-alt: #131119;    /* alternating section background */
  --bg-elev: #18151F;   /* elevated card surface */
  --fg: #F2F0F7;        /* primary text */
  --fg-soft: #C9C5D6;   /* slightly softer text */
  --muted: #847F95;     /* secondary / captions */
  --accent: #B662F0;    /* purple-magenta accent from hero/CTA */
  --accent-deep: #8B3FCB; /* darker accent for hover */
  --accent-glow: rgba(182, 98, 240, 0.18);
  --border: rgba(255, 255, 255, 0.10);
  --border-soft: rgba(255, 255, 255, 0.06);

  --serif: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  --sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --mono: 'Space Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --container: 1240px;
  --pad: clamp(20px, 5vw, 32px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.75;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; margin: 0; }
p { margin: 0; }
::selection { background: var(--accent); color: #0B0A0F; }

/* ── Layout helpers ─────────────────────────────── */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: clamp(80px, 12vw, 160px) 0; position: relative; }
.section--alt { background: var(--bg-alt); }
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--accent);
  display: inline-block;
}
.lead { color: var(--fg-soft); font-size: clamp(1.05rem, 2.2vw, 1.3rem); line-height: 1.7; max-width: 60ch; }

/* ── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 9999px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease), box-shadow 0.4s var(--ease), opacity 0.3s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: #0B0A0F;
  box-shadow: 0 0 0 0 var(--accent-glow);
}
.btn--primary:hover { transform: translateY(-2px); background: var(--accent-deep); box-shadow: 0 14px 40px -10px var(--accent-glow); }
.btn--ghost { border: 1px solid var(--border); color: var(--fg); }
.btn--ghost:hover { border-color: var(--accent); transform: translateY(-2px); }
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.06em;
  color: var(--fg); text-transform: uppercase;
  transition: gap 0.3s var(--ease), color 0.3s;
}
.link-arrow::after { content: "→"; color: var(--accent); transition: transform 0.3s var(--ease); }
.link-arrow:hover { color: var(--accent); }
.link-arrow:hover::after { transform: translateX(4px); }

/* ── Header ─────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 10, 15, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s;
}
.header[data-scrolled="true"] {
  border-bottom-color: var(--border-soft);
  box-shadow: 0 12px 40px -20px rgba(0,0,0,0.8);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--serif); font-size: 21px; font-weight: 500; letter-spacing: -0.01em; }
.brand__mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  display: grid; place-items: center; flex: none;
  box-shadow: 0 0 24px -6px var(--accent-glow);
}
.brand__mark svg { width: 17px; height: 17px; }
.nav { display: none; gap: 38px; }
.nav a {
  font-size: 14px; color: var(--fg-soft);
  position: relative; transition: color 0.3s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--accent); transition: width 0.3s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--fg); }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.header__cta { display: none; }

.menu-toggle {
  display: flex; flex-direction: column; gap: 5px; padding: 8px;
  z-index: 120;
}
.menu-toggle span { width: 24px; height: 2px; background: var(--fg); border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.25s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 110;
  background: var(--bg);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--pad);
  opacity: 0; pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.mobile-menu[data-open="true"] { opacity: 1; pointer-events: all; transform: none; }
.mobile-menu a {
  font-family: var(--serif); font-size: clamp(2rem, 9vw, 3.2rem);
  font-weight: 400; padding: 12px 0; color: var(--fg-soft);
  border-bottom: 1px solid var(--border-soft); transition: color 0.3s, padding-left 0.3s var(--ease);
}
.mobile-menu a:hover { color: var(--accent); padding-left: 14px; }
.mobile-menu__foot { margin-top: 40px; font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: 0.06em; }

/* ── Hero ───────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: 100px; padding-bottom: 60px;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.42; animation: heroZoom 9s var(--ease) forwards; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 50% 0%, transparent 30%, var(--bg) 92%),
    linear-gradient(180deg, rgba(11,10,15,0.4), rgba(11,10,15,0.85));
}
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero__inner { position: relative; z-index: 1; text-align: center; }
.hero__eyebrow { justify-content: center; margin-bottom: 30px; animation: fadeUp 0.8s var(--ease) both; }
.hero h1 {
  font-size: clamp(3.5rem, 12vw, 9rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-weight: 400;
  margin: 0 auto;
  max-width: 14ch;
  animation: fadeUp 0.9s var(--ease) 0.08s both;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero__sub {
  margin: 32px auto 0; max-width: 54ch;
  color: var(--fg-soft); font-size: clamp(1.05rem, 2.4vw, 1.35rem); line-height: 1.65;
  animation: fadeUp 0.9s var(--ease) 0.16s both;
}
.hero__actions { margin-top: 44px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; animation: fadeUp 0.9s var(--ease) 0.24s both; }
.hero__strip {
  position: relative; z-index: 1; margin-top: clamp(60px, 10vw, 110px);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  border-top: 1px solid var(--border-soft);
  animation: fadeUp 0.9s var(--ease) 0.34s both;
}
.hero__stat { padding: 28px var(--pad); text-align: center; }
.hero__stat b { display: block; font-family: var(--serif); font-size: clamp(2rem, 5vw, 2.9rem); font-weight: 500; letter-spacing: -0.02em; }
.hero__stat span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

/* ── Section headings ───────────────────────────── */
.sec-head { max-width: 760px; margin-bottom: clamp(48px, 7vw, 80px); }
.sec-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head--center .eyebrow::before { display: none; }
.sec-head h2 {
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  line-height: 1.02; letter-spacing: -0.025em;
  margin-top: 22px; font-weight: 500;
}
.sec-head p { margin-top: 22px; color: var(--fg-soft); font-size: clamp(1rem, 2vw, 1.18rem); }
.sec-head em { font-style: normal; color: var(--accent); }

/* ── Manifesto band ─────────────────────────────── */
.manifesto { background: var(--accent); color: #0B0A0F; text-align: center; }
.manifesto .container { position: relative; }
.manifesto__mark { font-family: var(--serif); font-size: clamp(7rem, 18vw, 13rem); line-height: 0.6; opacity: 0.16; display: block; margin-bottom: -10px; }
.manifesto p {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2rem, 5vw, 4rem); line-height: 1.14; letter-spacing: -0.02em;
  max-width: 18ch; margin: 0 auto;
}
.manifesto cite { display: block; margin-top: 36px; font-style: normal; font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.7; }

/* ── Services / feature grid ────────────────────── */
.grid-cards { display: grid; gap: 20px; grid-template-columns: 1fr; }
.card {
  background: var(--bg-elev);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 34px 32px;
  position: relative; overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 100% at 100% 0%, var(--accent-glow), transparent 60%);
  opacity: 0; transition: opacity 0.5s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: var(--border); box-shadow: 0 24px 60px -24px rgba(0,0,0,0.7); }
.card:hover::before { opacity: 1; }
.card__num { font-family: var(--mono); font-size: 12px; color: var(--accent); letter-spacing: 0.1em; }
.card h3 { font-size: 1.5rem; margin-top: 18px; letter-spacing: -0.01em; font-weight: 500; position: relative; }
.card p { margin-top: 14px; color: var(--fg-soft); font-size: 16px; line-height: 1.7; position: relative; }
.card .link-arrow { margin-top: 22px; position: relative; }

/* ── Featured program card (course-centric) ─────── */
.feature {
  display: grid; gap: 0;
  border: 1px solid var(--border);
  border-radius: 22px; overflow: hidden;
  background: var(--bg-elev);
}
.feature__media { position: relative; min-height: 280px; overflow: hidden; }
.feature__media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.feature__media .tag {
  position: absolute; top: 18px; left: 18px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--accent); color: #0B0A0F; padding: 7px 14px; border-radius: 9999px;
}
.feature__body { padding: clamp(32px, 5vw, 56px); display: flex; flex-direction: column; justify-content: center; }
.feature__body h3 { font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: -0.02em; line-height: 1.05; font-weight: 500; }
.feature__body p { margin-top: 20px; color: var(--fg-soft); }
.feature__meta { display: flex; flex-wrap: wrap; gap: 26px; margin: 28px 0; }
.feature__meta div span { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.feature__meta div b { font-family: var(--serif); font-size: 1.3rem; font-weight: 500; }

/* ── Stats band ─────────────────────────────────── */
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border-soft); border: 1px solid var(--border-soft); border-radius: 18px; overflow: hidden; }
.stats div { background: var(--bg); padding: 38px 28px; }
.stats b { font-family: var(--serif); font-size: clamp(2.4rem, 6vw, 3.6rem); font-weight: 500; letter-spacing: -0.03em; display: block; }
.stats b em { font-style: normal; color: var(--accent); }
.stats span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.stats p { margin-top: 10px; color: var(--fg-soft); font-size: 15px; }

/* ── Steps / process ────────────────────────────── */
.steps { display: grid; gap: 0; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 24px; padding: 32px 0; border-top: 1px solid var(--border-soft); align-items: start; }
.step:last-child { border-bottom: 1px solid var(--border-soft); }
.step__n { font-family: var(--mono); font-size: 13px; color: var(--accent); letter-spacing: 0.08em; padding-top: 6px; }
.step h3 { font-size: clamp(1.4rem, 3vw, 2rem); letter-spacing: -0.01em; font-weight: 500; }
.step p { margin-top: 12px; color: var(--fg-soft); max-width: 62ch; }

/* ── Testimonials ───────────────────────────────── */
.quotes { display: grid; gap: 20px; grid-template-columns: 1fr; }
.quote { background: var(--bg-elev); border: 1px solid var(--border-soft); border-radius: 18px; padding: 34px 32px; }
.quote p { font-family: var(--serif); font-size: 1.2rem; line-height: 1.5; font-weight: 400; }
.quote footer { margin-top: 24px; display: flex; align-items: center; gap: 14px; }
.avatar { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; font-family: var(--serif); font-weight: 500; font-size: 16px; color: #0B0A0F; flex: none; }
.quote cite { font-style: normal; }
.quote cite b { display: block; font-weight: 500; font-size: 15px; }
.quote cite span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: var(--muted); text-transform: uppercase; }
.quote .placeholder { font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 0.1em; display: block; margin-bottom: 16px; opacity: 0.6; }

/* ── FAQ ────────────────────────────────────────── */
.faq { max-width: 880px; }
.faq__item { border-top: 1px solid var(--border-soft); }
.faq__item:last-child { border-bottom: 1px solid var(--border-soft); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 28px 0;
  display: flex; justify-content: space-between; gap: 24px; align-items: baseline;
  font-family: var(--serif); font-size: clamp(1.2rem, 3vw, 1.65rem); font-weight: 500; letter-spacing: -0.01em;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-family: var(--mono); color: var(--accent); font-size: 1.4rem; transition: transform 0.3s var(--ease); }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 0 28px; color: var(--fg-soft); max-width: 70ch; }

/* ── CTA band ───────────────────────────────────── */
.cta {
  position: relative; overflow: hidden; text-align: center;
  background: var(--bg-alt);
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 50% 100%, var(--accent-glow), transparent 70%);
}
.cta .container { position: relative; }
.cta h2 { font-size: clamp(2.4rem, 7vw, 5rem); line-height: 1; letter-spacing: -0.03em; font-weight: 500; max-width: 16ch; margin: 0 auto; }
.cta h2 em { font-style: normal; color: var(--accent); }
.cta p { margin: 26px auto 0; color: var(--fg-soft); max-width: 50ch; }
.cta .hero__actions { margin-top: 40px; }

/* ── Contact / form ─────────────────────────────── */
.contact-grid { display: grid; gap: 48px; grid-template-columns: 1fr; }
.info-list { display: grid; gap: 28px; }
.info-list div span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 8px; }
.info-list div p, .info-list div a { font-size: 1.05rem; color: var(--fg-soft); }
.info-list div a:hover { color: var(--accent); }
.form { display: grid; gap: 20px; background: var(--bg-elev); border: 1px solid var(--border-soft); border-radius: 20px; padding: clamp(28px, 5vw, 44px); }
.field { display: grid; gap: 8px; }
.field label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea, .field select {
  background: var(--bg); border: 1px solid var(--border); border-radius: 12px;
  padding: 14px 16px; color: var(--fg); font-family: var(--sans); font-size: 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-glow);
}
.field textarea { resize: vertical; min-height: 130px; }
.form .btn { justify-content: center; }
.form__note { font-size: 13px; color: var(--muted); line-height: 1.6; }
.form__note a { color: var(--accent); }

/* ── Footer ─────────────────────────────────────── */
.footer { background: var(--bg-alt); border-top: 1px solid var(--border-soft); padding: clamp(60px, 9vw, 100px) 0 40px; }
.footer__top { display: grid; gap: 44px; grid-template-columns: 1fr; }
.footer__brand .brand { margin-bottom: 20px; }
.footer__brand p { color: var(--muted); max-width: 38ch; font-size: 15px; }
.footer__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.footer__col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 400; margin-bottom: 16px; }
.footer__col a { display: block; padding: 6px 0; color: var(--fg-soft); font-size: 15px; transition: color 0.3s; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  margin-top: clamp(48px, 7vw, 72px); padding-top: 28px; border-top: 1px solid var(--border-soft);
  display: flex; flex-direction: column; gap: 12px;
  font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: 0.04em;
}
.footer__bottom a:hover { color: var(--accent); }

/* ── Cookie popup ───────────────────────────────── */
.cookie-popup { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: flex-end; justify-content: flex-start; padding: 24px; background: rgba(0,0,0,0.5); backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity .3s; }
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card { background: var(--bg-elev); border: 1px solid var(--border); padding: 32px 36px; max-width: 480px; border-radius: 16px; box-shadow: 0 30px 80px -20px rgba(0,0,0,0.8); }
.cookie-popup__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.cookie-popup__card h3 { font-size: 1.4rem; font-weight: 500; }
.cookie-popup__card p { margin-top: 12px; color: var(--fg-soft); font-size: 14px; line-height: 1.65; }
.cookie-popup__card p a { color: var(--accent); }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 22px; }
.cookie-popup__actions button { padding: 11px 24px; border: 1px solid var(--border); cursor: pointer; font-size: 13px; font-family: var(--mono); letter-spacing: 0.06em; text-transform: uppercase; border-radius: 9999px; transition: background 0.3s, color 0.3s, border-color 0.3s; }
.cookie-popup__actions button:hover { border-color: var(--accent); }
.cookie-popup__actions button:last-child { background: var(--accent); color: #0B0A0F; border-color: var(--accent); }
.cookie-popup__actions button:last-child:hover { background: var(--accent-deep); }

/* ── Legal pages ────────────────────────────────── */
.legal { padding: clamp(120px, 16vw, 180px) 0 clamp(60px, 9vw, 100px); }
.legal__inner { max-width: 820px; }
.legal h1 { font-size: clamp(2.4rem, 6vw, 4rem); letter-spacing: -0.03em; font-weight: 500; }
.legal .updated { font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: 0.08em; margin-top: 16px; }
.legal h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-top: 52px; letter-spacing: -0.01em; font-weight: 500; }
.legal p, .legal li { color: var(--fg-soft); font-size: 16px; line-height: 1.8; margin-top: 16px; }
.legal ul { padding-left: 22px; }
.legal a { color: var(--accent); }

/* ── Thank you ──────────────────────────────────── */
.thanks { min-height: 88vh; display: flex; align-items: center; text-align: center; padding: 140px 0 80px; }
.thanks__inner { max-width: 640px; margin: 0 auto; }
.thanks h1 { font-size: clamp(3rem, 9vw, 6rem); letter-spacing: -0.03em; line-height: 0.95; font-weight: 400; }
.thanks h1 em { font-style: normal; color: var(--accent); }
.thanks p { margin: 28px auto 0; color: var(--fg-soft); font-size: 1.15rem; }
.thanks .hero__actions { margin-top: 40px; }

/* ── Reveal ─────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); transition-delay: calc(var(--i, 0) * 80ms); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__bg img { animation: none; }
  *, *::before, *::after { animation-duration: 0.001ms !important; }
}

/* ── Responsive ─────────────────────────────────── */
@media (min-width: 600px) {
  .hero__strip { grid-template-columns: repeat(4, 1fr); }
  .grid-cards { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: repeat(2, 1fr); }
  .footer__cols { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) {
  body { font-size: 18px; }
  .menu-toggle { display: none; }
  .nav { display: flex; }
  .header__cta { display: inline-flex; }
  .feature { grid-template-columns: 1.05fr 1fr; }
  .feature__media { min-height: auto; }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .contact-grid { grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }
  .footer__top { grid-template-columns: 1.4fr 2fr; }
}
@media (min-width: 1024px) {
  .grid-cards { grid-template-columns: repeat(3, 1fr); }
  .quotes { grid-template-columns: repeat(3, 1fr); }
  .grid-cards--4 { grid-template-columns: repeat(4, 1fr); }
}
