/* ===========================================================================
   Novantra — static landing styles
   Ported from the builder export (reset + keyframes + layout + dual themes)
   =========================================================================== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px; /* sticky header offset */
}

body {
  margin: 0;
  /* Horizontal-overflow guard lives here (not on <html>) so it does not turn
     <html> into a scroll container, which would silently break the sticky nav.
     `clip` (not `hidden`) clips horizontal overflow WITHOUT forcing overflow-y
     to compute to `auto`, so <body> never becomes a scroll container. */
  overflow-x: clip;
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

::selection { background: color-mix(in srgb, var(--acc) 45%, transparent); }

/* ---- Theme variables ---- */
/* Default: dark theme on :root */
:root {
  --acc: #3b6dff;
  --bg: #08080c;
  --text: #f4f5f7;
  --strong: #ffffff;
  --muted: #9a9aae;
  --muted2: #8b8b9e;
  --faint: #6a6a80;
  --faint2: #7a7a90;
  --soft: #cfcfdd;
  --soft2: #b3b3c4;
  --soft3: #b8b8c8;
  --em: #e8e8f0;
  --em2: #e3e3ec;
  --em3: #a8a8ba;
  --em4: #c9c9d6;
  --mock: #5a5a72;
  --mock2: #6f6f85;
  --surf1: #0e0e16;
  --nav-bg: rgba(8, 8, 12, .55);
  --switch-bg: rgba(18, 18, 26, .82);
  --surf-card: rgba(16, 16, 22, .5);
  --surf-card2: rgba(13, 13, 19, .55);
  --surf-inset: rgba(8, 8, 12, .5);
  --surf-footer: rgba(7, 7, 11, .6);
  --chip-bg: rgba(255, 255, 255, .04);
  --btn2-bg: rgba(255, 255, 255, .05);
  --bd-06: rgba(255, 255, 255, .06);
  --bd-07: rgba(255, 255, 255, .07);
  --bd-08: rgba(255, 255, 255, .08);
  --bd-09: rgba(255, 255, 255, .09);
  --bd-10: rgba(255, 255, 255, .1);
  --bd-12: rgba(255, 255, 255, .12);
  --bd-14: rgba(255, 255, 255, .14);
  --bd-16: rgba(255, 255, 255, .16);
  --stripe: rgba(255, 255, 255, .03);
  --card-grad: linear-gradient(180deg, rgba(20, 20, 30, .7), rgba(12, 12, 18, .5));
  --crm-grad: linear-gradient(180deg, color-mix(in srgb, var(--acc) 10%, transparent), rgba(12, 12, 18, .5));
  --mock-grad: linear-gradient(180deg, #12121b, #0c0c14);
  --panel-grad: linear-gradient(135deg, rgba(18, 18, 28, .8), rgba(10, 10, 16, .6));
  --cta-grad: linear-gradient(135deg, color-mix(in srgb, var(--acc) 16%, #0c0c14), #0a0a10);
}

/* Light theme on :root[data-theme="light"] */
:root[data-theme="light"] {
  --bg: #eceef3;
  --text: #1b1c24;
  --strong: #0b0c12;
  --muted: #5b5d6b;
  --muted2: #6d6f7d;
  --faint: #9499a7;
  --faint2: #878b99;
  --soft: #3a3c47;
  --soft2: #4a4c58;
  --soft3: #494b56;
  --em: #202230;
  --em2: #23252f;
  --em3: #51535f;
  --em4: #3a3c47;
  --mock: #9298a7;
  --mock2: #888ea0;
  --surf1: #ffffff;
  --nav-bg: rgba(236, 238, 243, .72);
  --switch-bg: rgba(255, 255, 255, .9);
  --surf-card: #ffffff;
  --surf-card2: #ffffff;
  --surf-inset: rgba(255, 255, 255, .75);
  --surf-footer: rgba(255, 255, 255, .7);
  --chip-bg: rgba(12, 16, 40, .05);
  --btn2-bg: rgba(12, 16, 40, .05);
  --bd-06: rgba(12, 16, 40, .08);
  --bd-07: rgba(12, 16, 40, .09);
  --bd-08: rgba(12, 16, 40, .1);
  --bd-09: rgba(12, 16, 40, .11);
  --bd-10: rgba(12, 16, 40, .13);
  --bd-12: rgba(12, 16, 40, .14);
  --bd-14: rgba(12, 16, 40, .16);
  --bd-16: rgba(12, 16, 40, .18);
  --stripe: rgba(20, 24, 45, .07);
  --card-grad: linear-gradient(180deg, #ffffff, #f6f7fb);
  --crm-grad: linear-gradient(180deg, color-mix(in srgb, var(--acc) 12%, #ffffff), #ffffff);
  --mock-grad: linear-gradient(180deg, #f4f6fa, #e9ebf2);
  --panel-grad: linear-gradient(135deg, #ffffff, #f4f6fb);
  --cta-grad: linear-gradient(135deg, color-mix(in srgb, var(--acc) 13%, #ffffff), #e9ecf4);
}

/* ---- Keyframes ---- */
@keyframes heroIn { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes drift { 0% { transform: translate(0, 0); } 50% { transform: translate(28px, -22px); } 100% { transform: translate(0, 0); } }
@keyframes pulseRing { 0% { transform: scale(.9); opacity: .7; } 70% { opacity: 0; } 100% { transform: scale(2.2); opacity: 0; } }
@keyframes scanline { 0% { background-position: 0 0; } 100% { background-position: 0 -800px; } }

/* ---- Accessibility helpers ---- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 12px 18px;
  background: var(--acc);
  color: #fff;
  font-weight: 600;
  border-radius: 0 0 10px 0;
  text-decoration: none;
}
.skip-link:focus {
  left: 0;
}

:where(a, button, input, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--acc);
  outline-offset: 2px;
  border-radius: 6px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---- Page shell ---- */
.page {
  position: relative;
  width: 100%;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}

/* ambient grid backdrop */
.grid-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(color-mix(in srgb, var(--acc) 7%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--acc) 7%, transparent) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 0%, transparent 70%);
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 0%, transparent 70%);
  opacity: .5;
}

.content { position: relative; z-index: 1; }

/* ---- Nav ---- */
/* Sticky lives on the full-width <header> (a direct child of .page, whose box
   spans the whole page height) so the nav can travel the full scroll range.
   .nav keeps the visual styling (full-bleed blur/translucent bar + layout). */
.page > header {
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  backdrop-filter: blur(14px);
  background: var(--nav-bg);
  border-bottom: 1px solid var(--bd-06);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--strong);
}
.nav__brand img { height: 32px; width: auto; display: block; }
.nav__brand span { font: 600 19px 'Space Grotesk', sans-serif; letter-spacing: -.01em; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14.5px;
  color: var(--soft3);
  font-weight: 500;
}
.nav__links a { color: inherit; text-decoration: none; }
.nav__links a:hover { color: var(--strong); }

.nav__actions { display: flex; align-items: center; gap: 14px; }

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border: 1px solid var(--bd-10);
  border-radius: 999px;
  background: var(--chip-bg);
  color: var(--text);
  transition: background .2s, border-color .2s;
}
.icon-btn:hover { border-color: var(--acc); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  background: var(--acc);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--acc) 40%, transparent);
}

/* hamburger — hidden on desktop */
.nav__burger { display: none; }
.nav__burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.nav__burger span + span { margin-top: 4px; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---- Layout primitives ---- */
.section {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 110px 40px 40px;
}
.section--stats { padding: 90px 40px 40px; }
.section--contact { padding: 110px 40px 90px; }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 90px 40px 60px;
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  width: 100%;
}
.hero__copy { position: relative; animation: heroIn .8s cubic-bezier(.2, .7, .2, 1) both; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--acc) 35%, transparent);
  background: color-mix(in srgb, var(--acc) 10%, transparent);
  font: 600 12px 'JetBrains Mono', monospace;
  letter-spacing: .18em;
  color: var(--acc);
}
.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(38px, 5.4vw, 74px);
  line-height: 1.04;
  letter-spacing: -.03em;
  margin: 24px 0 0;
}
.hero h1 .accent { color: var(--acc); }
.hero__lead {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.55;
  color: var(--soft2);
  max-width: 50ch;
  margin: 22px 0 0;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}
.btn--primary {
  background: var(--acc);
  color: #fff;
  box-shadow: 0 14px 44px color-mix(in srgb, var(--acc) 38%, transparent);
}
.btn--ghost {
  background: var(--btn2-bg);
  border: 1px solid var(--bd-14);
  color: var(--em);
}

.hero__visual { position: relative; animation: heroIn .9s cubic-bezier(.2, .7, .2, 1) .12s both; }
.hero__glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle at 60% 40%, color-mix(in srgb, var(--acc) 28%, transparent), transparent 60%);
  filter: blur(30px);
  pointer-events: none;
}
.hero__window {
  position: relative;
  border-radius: 16px;
  border: 1px solid var(--bd-10);
  background: var(--mock-grad);
  box-shadow: 0 40px 110px rgba(0, 0, 0, .6);
  overflow: hidden;
}
.hero__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 15px;
  border-bottom: 1px solid var(--bd-07);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot--r { background: #ff5f57; }
.dot--y { background: #febc2e; }
.dot--g { background: #28c840; }
.hero__window img { display: block; width: 100%; height: auto; }

.hero__phone {
  position: absolute;
  right: -24px;
  bottom: -30px;
  width: 130px;
  height: 230px;
  border-radius: 24px;
  border: 1px solid var(--bd-12);
  background: var(--mock-grad);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .6);
  animation: floaty 6.5s ease-in-out infinite;
  overflow: hidden;
}
.hero__phone img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top; }

/* ---- Section headers ---- */
.eyebrow {
  font: 600 12px 'JetBrains Mono', monospace;
  letter-spacing: .24em;
  color: var(--acc);
  margin-bottom: 16px;
}
.eyebrow--tight { letter-spacing: .2em; margin-bottom: 10px; }

.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 54px;
}
.sec-head--center { text-align: center; display: block; }
.sec-head--plain { display: block; }

.h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.05;
  letter-spacing: -.025em;
  margin: 0;
  max-width: 18ch;
}
.sec-head--center .h2 { margin: 0 auto; max-width: 20ch; }
.sec-lead { font-size: 16px; line-height: 1.6; color: var(--muted); max-width: 38ch; margin: 0; }
.sec-lead--center { max-width: 60ch; margin: 18px auto 0; font-size: 17px; }

/* ---- Cards / grids ---- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.card {
  border-radius: 18px;
  border: 1px solid var(--bd-09);
  background: var(--card-grad);
  padding: 34px;
  position: relative;
  overflow: hidden;
}
.card--platform { padding: 32px; }
.card--crm {
  border: 1px solid color-mix(in srgb, var(--acc) 30%, transparent);
  background: var(--crm-grad);
  padding: 32px;
}
.card__orb {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--acc) 18%, transparent), transparent 65%);
  filter: blur(10px);
}
.card__orb--sm { width: 160px; height: 160px; background: radial-gradient(circle, color-mix(in srgb, var(--acc) 22%, transparent), transparent 65%); }

.kicker { font: 600 12px 'JetBrains Mono', monospace; letter-spacing: .2em; color: var(--acc); }
.card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 26px;
  margin: 12px 0 0;
  letter-spacing: -.02em;
}
.card__desc { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 10px 0 26px; max-width: 42ch; position: relative; }

.list-rows {
  display: grid;
  gap: 1px;
  background: var(--bd-06);
  border-radius: 12px;
  overflow: hidden;
}
.list-row {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: var(--surf1);
}
.list-row__n { color: var(--acc); font: 600 13px 'JetBrains Mono', monospace; flex: none; }
.list-row__t { font-weight: 600; font-size: 15px; }
.list-row__s { font-size: 13.5px; color: var(--muted2); margin-top: 2px; }

/* Pillars */
.pillars {
  margin-top: 30px;
  border-radius: 18px;
  border: 1px solid color-mix(in srgb, var(--acc) 22%, transparent);
  background: color-mix(in srgb, var(--acc) 6%, transparent);
  padding: 34px;
}
.pillars__head { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.pillars__head h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 2.4vw, 28px);
  margin: 0;
  letter-spacing: -.02em;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--bd-07);
  border-radius: 12px;
  overflow: hidden;
}
.pillar { padding: 22px; background: var(--surf1); }
.pillar__t { font-weight: 700; font-size: 16px; margin-bottom: 6px; }
.pillar__s { font-size: 13.5px; color: var(--muted2); line-height: 1.5; }

/* ---- Neden (compare) ---- */
.compare {
  border-radius: 18px;
  border: 1px solid var(--bd-08);
  background: var(--surf-card);
  padding: 34px;
}
.compare--accent {
  border: 1px solid color-mix(in srgb, var(--acc) 40%, transparent);
  background: color-mix(in srgb, var(--acc) 9%, transparent);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 70px color-mix(in srgb, var(--acc) 18%, transparent);
}
.compare__orb {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--acc) 30%, transparent), transparent 65%);
  filter: blur(10px);
}
.compare__head { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; position: relative; }
.compare__icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-weight: 700;
}
.compare__icon--neg { background: var(--bd-06); color: var(--muted2); }
.compare__icon--pos { background: var(--acc); color: #fff; }
.compare__head h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 20px;
  margin: 0;
}
.compare__head h3.is-muted { color: var(--em4); }
.compare__list { display: flex; flex-direction: column; gap: 16px; position: relative; }
.compare__item { display: flex; gap: 12px; font-size: 15px; line-height: 1.5; }
.compare__item--neg { color: var(--muted); }
.compare__item--pos { color: var(--em2); }
.mark { flex: none; }
.mark--neg { color: #ff6b6b; }
.mark--pos { color: var(--acc); }

/* ---- Stats ---- */
.panel {
  border-radius: 22px;
  border: 1px solid var(--bd-09);
  background: var(--panel-grad);
  padding: 52px 40px;
  position: relative;
  overflow: hidden;
}
.panel__glow {
  position: absolute;
  top: -80px;
  left: 30%;
  width: 480px;
  height: 300px;
  background: radial-gradient(ellipse, color-mix(in srgb, var(--acc) 16%, transparent), transparent 60%);
  filter: blur(20px);
  pointer-events: none;
}
.panel__head { position: relative; text-align: center; margin-bottom: 44px; }
.panel__head h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 42px);
  margin: 0;
  letter-spacing: -.02em;
}
.stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--bd-07);
  border-radius: 14px;
  overflow: hidden;
}
.stat { padding: 32px 22px; background: var(--surf1); text-align: center; }
.stat__num {
  font: 600 clamp(34px, 4vw, 52px) 'Space Grotesk', sans-serif;
  letter-spacing: -.03em;
  color: var(--strong);
}
.stat__num--acc { color: var(--acc); }
.stat__label { font-size: 13.5px; color: var(--muted2); margin-top: 8px; line-height: 1.4; }
.panel__note {
  position: relative;
  text-align: center;
  margin-top: 22px;
  font-size: 12px;
  color: var(--faint);
  font-family: 'JetBrains Mono', monospace;
}

/* ---- Platform card feature lists ---- */
.card__tagrow { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; position: relative; }
.card__tag { font: 600 13px 'JetBrains Mono', monospace; letter-spacing: .18em; color: var(--acc); }
.card__cat { font-size: 12px; color: var(--faint); text-transform: uppercase; letter-spacing: .12em; }
.card--platform h3 { font-size: 21px; margin: 0 0 8px; position: relative; }
.card--platform .card__desc { font-size: 14px; line-height: 1.55; margin: 0 0 22px; }
.card--crm .card__desc { color: var(--em3); }
.feat-list { display: flex; flex-direction: column; gap: 11px; position: relative; }
.feat { display: flex; gap: 10px; font-size: 14px; color: var(--soft); }
.card--crm .feat { color: var(--em2); }
.feat__arrow { color: var(--acc); }

/* ---- Integration flow ---- */
.flow {
  margin-top: 30px;
  border-radius: 18px;
  border: 1px solid var(--bd-08);
  background: var(--surf-card2);
  padding: 38px 34px;
}
.flow__head { text-align: center; margin-bottom: 30px; }
.flow__head h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 2.6vw, 30px);
  margin: 0;
  letter-spacing: -.02em;
}
.flow__row { display: flex; align-items: stretch; justify-content: center; gap: 0; flex-wrap: wrap; }
.flow__node {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 22px;
  border-radius: 14px;
  background: var(--surf1);
  border: 1px solid var(--bd-07);
}
.flow__node-t { font: 600 15px 'JetBrains Mono', monospace; color: var(--acc); margin-bottom: 6px; }
.flow__node-s { font-size: 13px; color: var(--muted2); line-height: 1.5; }
.flow__arrow { display: grid; place-items: center; padding: 0 8px; color: var(--acc); font-size: 22px; font-weight: 700; }

/* ---- Process steps ---- */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.steps__line {
  position: absolute;
  top: 28px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--acc) 50%, transparent), transparent);
}
.step { position: relative; text-align: center; }
.step__num {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--surf1);
  border: 1px solid color-mix(in srgb, var(--acc) 40%, transparent);
  display: grid;
  place-items: center;
  font: 600 18px 'Space Grotesk', sans-serif;
  color: var(--acc);
}
.step__num--hot {
  background: var(--acc);
  border: 1px solid var(--acc);
  color: #fff;
  box-shadow: 0 0 28px color-mix(in srgb, var(--acc) 50%, transparent);
}
.step__t { font-weight: 700; font-size: 16px; margin-bottom: 6px; }
.step__s { font-size: 13.5px; color: var(--muted2); line-height: 1.5; }

/* ---- Contact / CTA ---- */
.cta {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--acc) 30%, transparent);
  background: var(--cta-grad);
  padding: clamp(40px, 6vw, 72px);
}
.cta__glow {
  position: absolute;
  top: -100px;
  right: -60px;
  width: 520px;
  height: 420px;
  background: radial-gradient(ellipse, color-mix(in srgb, var(--acc) 34%, transparent), transparent 60%);
  filter: blur(20px);
  pointer-events: none;
}
.cta__grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}
.cta h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 4.6vw, 58px);
  line-height: 1.03;
  letter-spacing: -.03em;
  margin: 0;
  max-width: 16ch;
}
.cta__lead { font-size: 16px; line-height: 1.6; color: var(--soft2); max-width: 42ch; margin: 22px 0 0; }
.cta__points { display: flex; flex-direction: column; gap: 16px; margin-top: 34px; }
.point { display: flex; gap: 13px; align-items: flex-start; }
.point__ico { flex: none; margin-top: 2px; color: var(--acc); }
.point__t { font-weight: 600; font-size: 16px; }
.point__s { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* ---- Form ---- */
.form {
  border-radius: 18px;
  border: 1px solid var(--bd-10);
  background: var(--surf-inset);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  backdrop-filter: blur(6px);
}
.form__title { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 19px; margin-bottom: 2px; }
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font: 600 12px 'JetBrains Mono', monospace;
  letter-spacing: .06em;
  color: var(--faint2);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field input,
.field textarea {
  font: 500 15px 'Manrope', sans-serif;
  color: var(--text);
  background: var(--chip-bg);
  border: 1px solid var(--bd-10);
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus,
.field textarea:focus { border-color: var(--acc); }
.field input::placeholder,
.field textarea::placeholder { color: var(--faint); }
.form__submit {
  margin-top: 4px;
  cursor: pointer;
  border: none;
  border-radius: 11px;
  padding: 15px;
  font: 600 16px 'Manrope', sans-serif;
  background: var(--acc);
  color: #fff;
  box-shadow: 0 12px 36px color-mix(in srgb, var(--acc) 38%, transparent);
}
.form__note { font-size: 12px; color: var(--faint); text-align: center; line-height: 1.5; }
.form__submit:disabled { opacity: .6; cursor: not-allowed; }

/* Turnstile widget: sits between the textarea and the submit button */
.form__turnstile { margin: 4px 0; max-width: 100%; overflow: hidden; }

/* AJAX status line (sending / inline error) */
.form__status {
  font: 500 13px 'Manrope', sans-serif;
  line-height: 1.45;
  color: var(--muted);
}
.form__status--error {
  color: #e2516b;
  font-weight: 600;
}

/* Success panel — mirrors the .form card styling */
.form__success {
  border-radius: 18px;
  border: 1px solid var(--bd-10);
  background: var(--surf-inset);
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  backdrop-filter: blur(6px);
}
.form__success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  background: var(--acc);
  box-shadow: 0 12px 36px color-mix(in srgb, var(--acc) 38%, transparent);
}
.form__success-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 21px;
  color: var(--text);
}
.form__success-msg {
  font: 500 15px 'Manrope', sans-serif;
  color: var(--soft2);
  line-height: 1.55;
  max-width: 32ch;
}
.form__success-btn {
  margin-top: 4px;
  cursor: pointer;
  border: 1px solid var(--bd-10);
  border-radius: 11px;
  padding: 13px 22px;
  font: 600 15px 'Manrope', sans-serif;
  background: var(--chip-bg);
  color: var(--text);
}
.form__success-btn:hover { border-color: var(--acc); }

/* ---- Footer ---- */
.footer {
  position: relative;
  border-top: 1px solid var(--bd-07);
  background: var(--surf-footer);
}
.footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer__brand { display: flex; align-items: center; gap: 11px; }
.footer__brand img { height: 28px; width: auto; display: block; }
.footer__brand span { font: 600 17px 'Space Grotesk', sans-serif; }
.footer__tag { font-size: 13px; color: var(--faint); margin-left: 8px; }
.footer__copy { font-size: 13px; color: var(--faint); font-family: 'JetBrains Mono', monospace; }

/* ---- Reveal animation hook ---- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s cubic-bezier(.2, .7, .2, 1), transform .75s cubic-bezier(.2, .7, .2, 1);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 980px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .steps__line { display: none; }
  .cta__grid { grid-template-columns: 1fr; }
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { min-height: auto; padding-top: 72px; }
}

@media (max-width: 768px) {
  .nav { padding: 14px 20px; }
  .section, .section--stats, .section--contact { padding-left: 20px; padding-right: 20px; }
  .hero { padding-left: 20px; padding-right: 20px; }
  .panel { padding: 40px 20px; }

  /* hide inline links, show hamburger + mobile panel */
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 20px 16px;
    background: var(--nav-bg);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--bd-06);
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 14px 4px; border-bottom: 1px solid var(--bd-06); font-size: 16px; }
  .nav__links a:last-child { border-bottom: none; }
  .nav__burger { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; }
  .nav__cta { display: none; }

  .grid-2 { grid-template-columns: 1fr; }
  .sec-head { display: block; }
  .sec-head .sec-lead { margin-top: 18px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .flow__arrow { transform: rotate(90deg); padding: 8px 0; }
  .flow__row { flex-direction: column; }
}

@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero__phone { right: 0; bottom: -20px; width: 104px; height: 184px; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  [data-parallax] { transform: none !important; }
  .hero__copy, .hero__visual, .hero__phone { animation: none !important; }
}
