/* =========================================================
   KREATOV — Applied Human+AI Innovation
   Light editorial system with dark accents.
   Inspired by forgis.com (inverted): bold type, generous
   whitespace, numbered sections, high-contrast blocks.
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Brand constants */
  --ink:        #14132a;   /* near-black navy — dark surfaces, blocks, body text */
  --ink-soft:   #23214a;
  --paper:      #f3f2f7;   /* cool off-white page */
  --paper-2:    #e9e8f1;   /* alternating section */

  /* Accent — dark navy purple */
  --accent:       #312c70;  /* primary accent (CTAs, highlights, rules) */
  --accent-hi:    #3f398f;  /* hover / slightly brighter */
  --accent-light: #9b91ee;  /* periwinkle — accent on dark backgrounds */

  /* Flippable theme vars (overridden inside dark regions) */
  --bg:          var(--paper);
  --bg-soft:     var(--paper-2);
  --surface:     #fbfbfe;
  --text:        #14132a;
  --text-dim:    #54526b;
  --text-mute:   #8a89a1;
  --line:        rgba(20, 19, 42, 0.12);
  --line-strong: rgba(20, 19, 42, 0.22);

  --font-head: "Space Grotesk", "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --maxw: 1140px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --radius: 14px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 70px;
}

/* Inverted (dark) regions — flip the theme vars; children cascade automatically */
.invert {
  background: var(--ink);
  color: var(--text);
  --surface:     #211f3d;
  --text:        #efeef7;
  --text-dim:    #b4b2cc;
  --text-mute:   #8c8aa6;
  --line:        rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.26);
  --accent:      var(--accent-light);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 10px);
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(16px, 1.05vw, 17.5px);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

::selection { background: var(--accent); color: #fff; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.022em;
  text-wrap: balance;
}
.h-display { font-size: clamp(2.5rem, 6.5vw, 5rem); }
.h1        { font-size: clamp(2rem, 4.6vw, 3.3rem); line-height: 1.08; }
.h2        { font-size: clamp(1.55rem, 3.2vw, 2.4rem); }
.h3        { font-size: clamp(1.15rem, 2vw, 1.4rem); }

.lead {
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  color: var(--text-dim);
  line-height: 1.6;
  text-wrap: pretty;
}
.accent-text { color: var(--accent); }
.accent { color: var(--accent); }

.eyebrow {
  font-family: var(--font-head);
  font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--text-mute);
  display: inline-flex; align-items: center; gap: 0.7rem;
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--accent); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4rem, 9vw, 8rem); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.divider { border-top: 1px solid var(--line); }
.section-head { max-width: 680px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head .lead { margin-top: 1.1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-head); font-weight: 500; font-size: 0.96rem;
  padding: 0.82rem 1.45rem; border-radius: 8px; border: 1px solid transparent;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-hi); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--text); }
.btn--block { width: 100%; justify-content: center; }
.btn .arrow { transition: transform 0.2s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }
/* On dark/inverted regions the primary button flips to paper */
.invert .btn--primary { background: var(--paper); color: var(--ink); }
.invert .btn--primary:hover { background: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; height: var(--header-h); z-index: 100;
  display: flex; align-items: center;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(243, 242, 247, 0.82);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  border-bottom-color: var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.logo { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; letter-spacing: 0.01em; }
.logo .dot { color: var(--accent); }
.nav { display: flex; align-items: center; gap: 0.5rem; }
.nav-links { display: flex; align-items: center; gap: 0.1rem; }
.nav-links a {
  font-family: var(--font-head); font-size: 0.94rem; font-weight: 500;
  color: var(--text-dim); padding: 0.5rem 0.85rem; border-radius: 6px;
  transition: color 0.2s; position: relative;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0.85rem; right: 0.85rem; bottom: 0.25rem;
  height: 2px; background: var(--accent);
}
.nav .btn { margin-left: 0.8rem; }

.nav-toggle { display: none; width: 44px; height: 44px; background: transparent; border: 1px solid var(--line-strong); border-radius: 8px; position: relative; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 18px; height: 2px; background: var(--text);
  transform: translate(-50%, -50%); transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav-toggle span::before { transform: translate(-50%, -6px); }
.nav-toggle span::after  { transform: translate(-50%, 5px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translate(-50%, -50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translate(-50%, -50%) rotate(-45deg); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-soft); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.9fr; gap: clamp(2rem, 5vw, 4rem); }
.footer-brand .logo { font-size: 1.35rem; }
.footer-brand p { color: var(--text-mute); margin-top: 0.9rem; max-width: 30ch; }
.footer-col h4 { font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 1rem; }
.footer-col a { display: block; color: var(--text-dim); padding: 0.3rem 0; transition: color 0.2s; font-size: 0.96rem; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  color: var(--text-mute); font-size: 0.86rem;
}
.social { display: flex; gap: 0.5rem; }
.social a {
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid var(--line-strong); border-radius: 7px; color: var(--text-dim);
  font-family: var(--font-head); font-size: 0.9rem;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s;
}
.social a:hover { color: var(--paper); background: var(--ink); border-color: var(--ink); }

/* ---------- Newsletter form ---------- */
.newsletter { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.newsletter input {
  flex: 1 1 200px; min-width: 0;
  background: var(--surface); border: 1px solid var(--line-strong); color: var(--text);
  padding: 0.8rem 1rem; border-radius: 8px; font: inherit; font-size: 0.95rem; transition: border-color 0.2s;
}
.newsletter input::placeholder { color: var(--text-mute); }
.newsletter input:focus { outline: none; border-color: var(--text); }
.form-note { font-size: 0.82rem; color: var(--text-mute); margin-top: 0.7rem; }
.form-msg { font-size: 0.9rem; margin-top: 0.8rem; color: var(--accent); min-height: 1.2em; font-weight: 500; }
.invert .form-msg { color: var(--paper); }
.form-msg.error { color: #cf5345; }
.invert .form-msg.error { color: #f0a59c; }

/* ---------- Reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: 0.07s; }
[data-reveal][data-delay="2"] { transition-delay: 0.14s; }
[data-reveal][data-delay="3"] { transition-delay: 0.21s; }
[data-reveal][data-delay="4"] { transition-delay: 0.28s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; transition-duration: 0.001ms !important; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; min-height: min(92svh, 860px);
  display: flex; align-items: center; padding-top: var(--header-h);
  border-bottom: 1px solid var(--line);
}
.hero-rule { width: 48px; height: 3px; background: var(--accent); margin-bottom: 1.6rem; }
.hero .wrap { position: relative; z-index: 2; width: 100%; }
.hero-inner { max-width: 100%; }
.hero h1 { margin-top: 1.4rem; max-width: 18ch; }
.hero .lead { margin-top: 1.8rem; max-width: 54ch; }
.hero-cta { display: flex; gap: 0.9rem; margin-top: 2.4rem; flex-wrap: wrap; }
.hero-meta {
  margin-top: clamp(2.5rem, 5vw, 4rem); padding-top: 1.4rem; border-top: 1px solid var(--line);
  display: flex; gap: clamp(1.5rem, 4vw, 3.5rem); flex-wrap: wrap;
  color: var(--text-mute); font-family: var(--font-head); font-size: 0.82rem; letter-spacing: 0.04em;
}
.hero-meta span { color: var(--text-dim); }
.hero-meta b { color: var(--text); font-weight: 600; }

/* =========================================================
   BELIEF / MANIFESTO  (inverted dark block)
   ========================================================= */
.belief {
  background: var(--ink); color: var(--text);
  --surface: #211f3d;
  --text: #efeef7; --text-dim: #b4b2cc; --text-mute: #8c8aa6;
  --line: rgba(255,255,255,0.14); --line-strong: rgba(255,255,255,0.26);
  --accent: var(--accent-light);
}
.belief .btn--primary { background: var(--paper); color: var(--ink); }
.belief .wrap { max-width: 940px; }
.manifesto {
  font-family: var(--font-head); font-weight: 500;
  font-size: clamp(1.45rem, 3.4vw, 2.5rem); line-height: 1.3; letter-spacing: -0.02em; text-wrap: balance;
}
.manifesto .muted { color: var(--text-mute); }
.belief-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); margin-top: clamp(2.8rem, 5vw, 4rem); }
.belief-point { border-top: 2px solid var(--accent); padding-top: 1.2rem; }
.belief-point .pt-no { font-family: var(--font-head); font-size: 0.8rem; color: var(--text-mute); letter-spacing: 0.1em; }
.belief-point h3 { font-size: 1.12rem; margin: 0.7rem 0 0.5rem; }
.belief-point p { color: var(--text-dim); font-size: 0.97rem; }

/* =========================================================
   WHAT WE DO — index list
   ========================================================= */
.cap-banner { font-size: clamp(1.55rem, 3.4vw, 2.5rem); line-height: 1.12; margin-top: 1rem; max-width: 22ch; }
.cap-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; margin-top: clamp(2rem, 4vw, 3rem); border-top: 1px solid var(--line-strong); }
.cap-card { padding: 1.8rem 1.8rem 1.8rem 0; border-bottom: 1px solid var(--line); display: flex; gap: 1.2rem; transition: background 0.25s var(--ease); }
.cap-grid > .cap-card:nth-child(odd) { padding-left: 0; }
.cap-grid > .cap-card:nth-child(even) { padding-left: clamp(1.2rem, 3vw, 2.5rem); border-left: 1px solid var(--line); }
.cap-card .num { font-family: var(--font-head); font-size: 0.82rem; font-weight: 600; color: var(--accent); padding-top: 0.3rem; flex-shrink: 0; min-width: 1.8rem; }
.cap-card h3 { font-size: 1.18rem; margin-bottom: 0.5rem; transition: color 0.2s; }
.cap-card p { color: var(--text-dim); font-size: 0.96rem; }
.cap-card:hover h3 { color: var(--accent); }
.cap-card--cta { align-items: flex-start; }
.cap-card--cta .cap-body { display: flex; flex-direction: column; }
.cap-card--cta .btn { margin-top: 1.2rem; align-self: flex-start; }

/* =========================================================
   JOURNEY — 4 steps
   ========================================================= */
.journey { background: var(--bg-soft); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.2rem, 3vw, 2rem); margin-top: clamp(2.5rem, 5vw, 3.5rem); counter-reset: step; }
.step { position: relative; padding-top: 2rem; border-top: 2px solid var(--ink); }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--font-head); font-size: 1.9rem; font-weight: 600; letter-spacing: -0.03em;
  color: var(--ink); display: block; margin-bottom: 0.7rem;
}
.step h3 { font-size: 1.18rem; margin-bottom: 0.5rem; }
.step p { color: var(--text-dim); font-size: 0.96rem; }
.journey-note { margin-top: clamp(2.5rem, 5vw, 3.5rem); padding: 1.3rem 1.5rem; border-radius: var(--radius); background: var(--surface); border-left: 3px solid var(--ink); font-size: 1rem; }
.journey-note strong { color: var(--text); }

/* =========================================================
   PROOF — stats
   ========================================================= */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.2rem, 3vw, 2.5rem); margin-top: clamp(2rem, 4vw, 3rem); }
.stat { border-top: 2px solid var(--ink); padding-top: 1.3rem; }
.stat .figure { font-family: var(--font-head); font-weight: 600; font-size: clamp(2.3rem, 5vw, 3.2rem); line-height: 1; letter-spacing: -0.03em; color: var(--ink); }
.stat .figure span { color: var(--ink); }
.stat p { color: var(--text-dim); margin-top: 0.8rem; font-size: 0.95rem; }
.quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.2rem, 3vw, 1.6rem); margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.quote { border: 1px solid var(--line-strong); border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.2rem); background: var(--surface); }
.quote blockquote { font-family: var(--font-head); font-weight: 500; font-size: clamp(1.1rem, 1.8vw, 1.3rem); line-height: 1.4; letter-spacing: -0.01em; }
.quote cite { color: var(--text-mute); font-style: normal; font-size: 0.88rem; margin-top: 1.3rem; display: block; }
.quote cite strong { color: var(--text); display: block; font-style: normal; font-family: var(--font-body); }

/* =========================================================
   CTA band  (inverted dark card)
   ========================================================= */
.cta-card {
  background: var(--ink); color: var(--text);
  --surface: #211f3d;
  --text: #efeef7; --text-dim: #b4b2cc; --text-mute: #8c8aa6;
  --line: rgba(255,255,255,0.14); --line-strong: rgba(255,255,255,0.26);
  --accent: var(--accent-light);
  border-radius: var(--radius); padding: clamp(2.5rem, 6vw, 4.5rem) var(--gutter); text-align: center;
}
.cta-card .btn--primary { background: var(--paper); color: var(--ink); }
.cta-card .btn--primary:hover { background: #fff; }
.cta-card .inner { max-width: 640px; margin-inline: auto; }
.cta-card h2 { margin-bottom: 1.1rem; }
.cta-card .lead { margin-inline: auto; }
.cta-actions { display: flex; gap: 0.9rem; justify-content: center; margin-top: 2rem; flex-wrap: wrap; }
.cta-news { margin-top: 2.2rem; max-width: 440px; margin-inline: auto; }

/* =========================================================
   PAGE HERO (sub pages)
   ========================================================= */
.page-hero { position: relative; padding-top: calc(var(--header-h) + clamp(3rem, 8vw, 6rem)); padding-bottom: clamp(2rem, 5vw, 3.5rem); border-bottom: 1px solid var(--line); }
.page-hero .hero-rule { width: 48px; height: 3px; background: var(--accent); margin-bottom: 1.4rem; }
.page-hero h1 { margin-top: 1rem; max-width: 17ch; }
.page-hero .lead { margin-top: 1.3rem; max-width: 56ch; }

/* =========================================================
   ABOUT
   ========================================================= */
.about-story { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.story-side { position: sticky; top: calc(var(--header-h) + 2rem); }
.story-side .eyebrow { margin-bottom: 1rem; }
.story-side .stat-line { border-top: 2px solid var(--accent); padding-top: 1.1rem; margin-top: 1.5rem; }
.story-side .stat-line .figure { font-family: var(--font-head); font-weight: 600; font-size: 2rem; color: var(--ink); letter-spacing: -0.02em; }
.story-side .stat-line p { color: var(--text-mute); font-size: 0.9rem; margin-top: 0.2rem; }
.about-body p { color: var(--text-dim); margin-bottom: 1.2rem; }
.about-body p.lead { color: var(--text); }
.about-body p:last-child { margin-bottom: 0; }

.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: clamp(2.5rem, 5vw, 3.5rem); border-top: 1px solid var(--line-strong); }
.value { padding: 1.6rem 1.5rem 0 0; }
.values > .value + .value { padding-left: clamp(1.2rem, 3vw, 2.2rem); border-left: 1px solid var(--line); }
.value .v-no { font-family: var(--font-head); font-size: 0.8rem; color: var(--accent); letter-spacing: 0.1em; }
.value h3 { font-size: 1.1rem; margin: 0.7rem 0 0.5rem; }
.value p { color: var(--text-dim); font-size: 0.95rem; }

.founder { display: flex; gap: clamp(1.2rem, 3vw, 1.8rem); align-items: flex-start; max-width: 580px; margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.founder .avatar {
  width: clamp(80px, 18vw, 104px); aspect-ratio: 1; flex-shrink: 0;
  border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line-strong);
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 600; font-size: 1.7rem; color: var(--ink);
}
.founder .role { color: var(--accent); font-size: 0.86rem; font-family: var(--font-head); }
.founder-body p { color: var(--text-dim); font-size: 0.96rem; margin-top: 0.6rem; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(2rem, 5vw, 4rem); }
.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: 0.45rem; }
.field label { font-family: var(--font-head); font-size: 0.84rem; font-weight: 500; color: var(--text-dim); }
.field input, .field textarea, .field select {
  background: var(--surface); border: 1px solid var(--line-strong); color: var(--text);
  padding: 0.85rem 1rem; border-radius: var(--radius-sm); font: inherit; font-size: 0.98rem; transition: border-color 0.2s; width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--text); }
.field input::placeholder, .field textarea::placeholder { color: var(--text-mute); }
.contact-aside { display: flex; flex-direction: column; gap: 1rem; }
.contact-block { background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--radius); padding: 1.6rem; }
.contact-block h3 { font-size: 1.02rem; margin-bottom: 0.5rem; }
.contact-block p { color: var(--text-dim); font-size: 0.94rem; }
.contact-block a.mail { color: var(--ink); font-family: var(--font-head); font-size: 1.08rem; border-bottom: 2px solid var(--accent); }
/* Highlighted contact block is an inverted dark card */
.contact-block.highlight {
  background: var(--ink); border-color: var(--ink); color: var(--text);
  --surface: #211f3d; --text: #efeef7; --text-dim: #b4b2cc; --text-mute: #8c8aa6;
  --line-strong: rgba(255,255,255,0.26);
  --accent: var(--accent-light);
}
.contact-block.highlight .btn--primary { background: var(--paper); color: var(--ink); }
.contact-block.highlight .btn--primary:hover { background: #fff; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1000px) {
  .about-story { grid-template-columns: 1fr; }
  .story-side { position: static; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-news { grid-column: 1 / -1; }
  .belief-points { grid-template-columns: 1fr; gap: 0; }
  .belief-point { padding-block: 1.2rem; }
  .steps { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 1.6rem; }
}
@media (max-width: 720px) {
  .nav-links, .nav > .btn { display: none; }
  .nav-toggle { display: block; }
  .nav.open {
    position: absolute; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: 0.6rem var(--gutter) 1.4rem; gap: 0.3rem;
  }
  .nav.open .nav-links { display: flex; flex-direction: column; align-items: stretch; gap: 0.1rem; }
  .nav.open .nav-links a { padding: 0.9rem 0.2rem; font-size: 1.08rem; }
  .nav.open .nav-links a.active::after { display: none; }
  .nav.open .btn { display: inline-flex; justify-content: center; margin: 0.6rem 0 0; }
  .nav.open .nav-toggle { position: fixed; top: 13px; right: var(--gutter); margin: 0; }

  .cap-grid { grid-template-columns: 1fr; }
  .cap-grid > .cap-card:nth-child(even) { padding-left: 0; border-left: none; }
  .values { grid-template-columns: 1fr; }
  .values > .value + .value { padding-left: 0; border-left: none; }
  .value { padding-block: 1.5rem 0; border-bottom: 1px solid var(--line); }
  .quotes { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .steps, .stats, .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-cta .btn, .cta-actions .btn { width: 100%; justify-content: center; }
  .stat { padding-top: 1rem; }
}
