/* ─── FONTS ─────────────────────────────────────────────── */
@font-face {
  font-family: 'Hagrid';
  src: url('idv/Fonts/hagrid/Hagrid-Regular-trial.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Hagrid';
  src: url('idv/Fonts/hagrid/Hagrid-Italic-trial.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Hagrid';
  src: url('idv/Fonts/hagrid/Hagrid-Text-Extrabold-trial.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('idv/Fonts/Montserrat/Montserrat-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('idv/Fonts/Montserrat/Montserrat-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --purple:       #5B4EF8;
  --purple-light: #7B6FFF;
  --purple-dim:   #3D33CC;
  --purple-glow:  rgba(91, 78, 248, 0.25);
  --bg:           #07070D;
  --surface:      #0D0D1A;
  --surface-2:    #131323;
  --beige:        #E8E0D0;
  --beige-muted:  #9A8F7E;
  --white:        #FFFFFF;
  --gray:         #8080A0;
  --border:       rgba(255,255,255,0.07);
  --border-purple:rgba(91,78,248,0.3);
  --radius:       16px;
  --radius-sm:    10px;
  --max-w:        1120px;
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', system-ui, sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── UTIL ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}
.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple-light);
  padding: 7px 16px;
  border: 1px solid var(--border-purple);
  border-radius: 999px;
  background: rgba(91,78,248,0.08);
}
.label::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--purple-light);
  box-shadow: 0 0 8px var(--purple-light);
}
.section-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--beige-muted);
  margin-bottom: 20px;
}

/* ─── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: background 0.3s, backdrop-filter 0.3s;
}
.nav.scrolled {
  background: rgba(7,7,13,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav__logo {
  height: 36px;
  width: auto;
}
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--purple);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 12px 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.nav__cta:hover {
  background: var(--purple-light);
  box-shadow: 0 0 28px var(--purple-glow);
  transform: translateY(-1px);
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91,78,248,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91,78,248,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.hero__content { position: relative; }
.hero__label { margin-bottom: 32px; }
.hero__headline {
  font-family: 'Hagrid', serif;
  font-weight: 800;
  font-size: clamp(32px, 5.5vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.hero__headline em {
  font-style: italic;
  color: var(--beige);
}
.hero__subheadline {
  font-family: 'Hagrid', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(22px, 3vw, 38px);
  color: var(--purple-light);
  line-height: 1.2;
  margin-bottom: 36px;
}
.hero__body {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin-bottom: 48px;
}
.hero__body strong {
  color: var(--white);
  font-weight: 600;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--purple);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 16px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--purple-light);
  box-shadow: 0 8px 40px var(--purple-glow);
  transform: translateY(-2px);
}
.btn-primary svg { flex-shrink: 0; }
.hero__note {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 0.01em;
}
.hero__visual { position: relative; }
.hero__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.hero__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
}
.hero__avatar-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 28px;
}
.hero__avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border-purple);
  box-shadow: 0 0 40px var(--purple-glow);
}
.hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  position: relative;
  overflow: hidden;
}
.stat::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 40%;
  background: var(--purple);
  border-radius: 999px;
}
.stat__number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat__label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.05em;
  line-height: 1.4;
}
.hero__deco {
  position: absolute;
  pointer-events: none;
}
.deco-circles {
  top: -40px; right: -40px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 6px;
  opacity: 0.12;
}
.deco-circles span {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2.5px solid var(--purple-light);
  display: block;
}
.deco-arch { bottom: -30px; left: -30px; opacity: 0.1; }
.deco-arch-shape {
  width: 80px; height: 40px;
  background: var(--purple);
  border-radius: 80px 80px 0 0;
}

/* ─── PAIN ───────────────────────────────────────────────── */
.pain {
  padding: 100px 0;
  position: relative;
}
.pain__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.pain__headline {
  font-family: 'Hagrid', serif;
  font-weight: 800;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.pain__body {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}
.pain__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pain-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
  overflow: hidden;
}
.pain-card:hover {
  border-color: var(--border-purple);
  transform: translateY(-4px);
}
.pain-card__number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 72px;
  line-height: 0.9;
  color: rgba(91,78,248,0.12);
  position: absolute;
  top: 20px; right: 24px;
  user-select: none;
}
.pain-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(91,78,248,0.12);
  border: 1px solid var(--border-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 22px;
}
.pain-card__title {
  font-family: 'Hagrid', serif;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 14px;
  line-height: 1.25;
}
.pain-card__text {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ─── DIVIDER ────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-purple), transparent);
  margin: 0 auto;
  max-width: var(--max-w);
}

/* ─── SOLUTION ───────────────────────────────────────────── */
.solution {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.solution::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(91,78,248,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.solution__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.solution__label { margin-bottom: 28px; }
.solution__headline {
  font-family: 'Hagrid', serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.solution__headline span {
  color: var(--purple-light);
  display: block;
  font-style: italic;
}
.solution__body {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 20px;
}
.solution__body strong {
  color: var(--beige);
  font-weight: 700;
}
.solution__pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s;
}
.pillar:hover { border-color: var(--border-purple); }
.pillar__icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(91,78,248,0.15);
  border: 1px solid var(--border-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.pillar__title {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--white);
}
.pillar__text {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}
.solution__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.solution__quote-card {
  background: linear-gradient(135deg, var(--surface) 0%, rgba(91,78,248,0.08) 100%);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.solution__quote-card::before {
  content: '"';
  font-family: 'Hagrid', serif;
  font-size: 120px;
  line-height: 1;
  color: rgba(91,78,248,0.15);
  position: absolute;
  top: -10px; left: 20px;
}
.solution__quote {
  font-family: 'Hagrid', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  color: var(--beige);
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
.solution__quote strong {
  color: var(--purple-light);
  font-style: normal;
  font-weight: 800;
}
.solution__years {
  display: flex;
  align-items: center;
  gap: 16px;
}
.years-badge {
  background: var(--purple);
  border-radius: 12px;
  padding: 14px 20px;
  text-align: center;
  flex-shrink: 0;
}
.years-badge__num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 32px;
  line-height: 1;
  display: block;
}
.years-badge__text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
}
.years-label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
.years-label strong {
  color: var(--white);
  font-weight: 700;
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}
.solution__tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--purple-light);
  padding: 6px 14px;
  border: 1px solid var(--border-purple);
  border-radius: 999px;
  background: rgba(91,78,248,0.08);
}

/* ─── METHODOLOGY ────────────────────────────────────────── */
.method {
  padding: 100px 0;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.method::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(91,78,248,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.method__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.method__headline {
  font-family: 'Hagrid', serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.method__body {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}
.method__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.method__steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-purple), var(--border-purple), transparent);
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 20px;
}
.step__dot {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--border-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 26px;
  transition: background 0.2s, border-color 0.2s;
}
.step:hover .step__dot {
  background: var(--purple);
  border-color: var(--purple);
}
.step__num {
  font-family: 'Hagrid', serif;
  font-weight: 800;
  font-size: 11px;
  color: var(--purple-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.step__title {
  font-family: 'Hagrid', serif;
  font-weight: 800;
  font-size: 17px;
  margin-bottom: 10px;
  line-height: 1.3;
}
.step__text {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.65;
}

/* ─── FORM SECTION ───────────────────────────────────────── */
.form-section {
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}
.form-section::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(91,78,248,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.form-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.form-copy__label { margin-bottom: 28px; }
.form-copy__headline {
  font-family: 'Hagrid', serif;
  font-weight: 800;
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.form-copy__headline em {
  color: var(--purple-light);
  font-style: italic;
}
.form-copy__sub {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 40px;
  font-style: italic;
}
.form-copy__checks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.check-item__icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.check-item__icon svg { width: 11px; height: 11px; }
.check-item__text {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
}
.check-item__text strong {
  color: var(--white);
  font-weight: 700;
}
.form-copy__warning {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  background: rgba(91,78,248,0.08);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius-sm);
}
.form-copy__warning-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.form-copy__warning-text {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
.form-copy__warning-text strong { color: var(--beige); font-weight: 700; }

/* ─── FORM CARD ──────────────────────────────────────────── */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple-dim), var(--purple-light), var(--purple-dim));
}
.form-card__title {
  font-family: 'Hagrid', serif;
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 8px;
}
.form-card__sub {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 28px;
  line-height: 1.55;
}

/* ─── STEPS INDICATOR ──────────────────────────────────── */
.steps-header { margin-bottom: 32px; }
.steps-track {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 16px;
}
.step-indicator {
  display: flex;
  align-items: center;
  flex: 1;
}
.step-indicator:last-child { flex: 0; }
.step-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--gray);
  background: var(--surface-2);
  flex-shrink: 0;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}
.step-dot.active {
  border-color: var(--purple);
  background: var(--purple);
  color: #fff;
  box-shadow: 0 0 16px var(--purple-glow);
}
.step-dot.done {
  border-color: var(--purple);
  background: var(--purple);
  color: #fff;
}
.step-line {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.1);
  margin: 0 4px;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}
.step-line-fill {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  background: var(--purple);
  border-radius: 999px;
  width: 0%;
  transition: width 0.4s ease;
}
.steps-labels {
  display: flex;
  justify-content: space-between;
}
.step-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color 0.3s;
  flex: 1;
  text-align: center;
}
.step-label:first-child { text-align: left; }
.step-label:last-child { text-align: right; }
.step-label.active { color: var(--purple-light); }
.step-label.done { color: rgba(255,255,255,0.45); }

/* ─── STEP PANELS ──────────────────────────────────────── */
.form-step {
  display: none;
  animation: stepIn 0.35s ease forwards;
}
.form-step.active { display: block; }
@keyframes stepIn {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes stepInBack {
  from { opacity: 0; transform: translateX(-18px); }
  to   { opacity: 1; transform: translateX(0); }
}
.form-step.back { animation-name: stepInBack; }
.step-title {
  font-family: 'Hagrid', serif;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--white);
}
.step-desc {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 24px;
  line-height: 1.5;
}

/* ─── FORM NAV BUTTONS ─────────────────────────────────── */
.form-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--gray);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
.btn-back:hover {
  border-color: rgba(255,255,255,0.25);
  color: var(--white);
}
.btn-next {
  flex: 1;
  padding: 16px;
  background: var(--purple);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-next:hover {
  background: var(--purple-light);
  box-shadow: 0 6px 32px var(--purple-glow);
  transform: translateY(-1px);
}
.btn-next.submit-btn {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
}

/* ─── FORM FIELDS ──────────────────────────────────────── */
.form-group { margin-bottom: 22px; }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
}
.form-label span {
  color: var(--purple-light);
  margin-left: 2px;
}
.form-note {
  font-size: 11px;
  color: var(--beige-muted);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}
.form-input,
.form-textarea {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-input:focus,
.form-textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(91,78,248,0.15);
}
.form-textarea {
  resize: vertical;
  min-height: 100px;
}
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.radio-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  background: var(--surface-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  user-select: none;
}
.radio-option:hover {
  border-color: var(--border-purple);
  background: rgba(91,78,248,0.05);
}
.radio-option input[type="radio"] { display: none; }
.radio-option input[type="radio"]:checked + .radio-custom {
  background: var(--purple);
  border-color: var(--purple);
}
.radio-option input[type="radio"]:checked + .radio-custom::after { opacity: 1; }
.radio-option:has(input:checked) {
  border-color: var(--purple);
  background: rgba(91,78,248,0.08);
}
.radio-custom {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25);
  flex-shrink: 0;
  position: relative;
  transition: background 0.2s, border-color 0.2s;
}
.radio-custom::after {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.15s;
}
.radio-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}
.form-submit-note {
  text-align: center;
  font-size: 11px;
  color: var(--gray);
  margin-top: 14px;
  line-height: 1.5;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__logo { height: 28px; }
.footer__text {
  font-size: 12px;
  color: var(--gray);
  text-align: right;
}

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}
.fade-up-d1 { animation-delay: 0.1s; }
.fade-up-d2 { animation-delay: 0.25s; }
.fade-up-d3 { animation-delay: 0.4s; }
.fade-up-d4 { animation-delay: 0.55s; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── COOKIE BANNER ──────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--surface);
  border-top: 1px solid var(--border-purple);
  padding: 24px;
  animation: slideUp 0.4s ease forwards;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner__content {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.cookie-banner__text { min-width: 0; }
.cookie-banner__title {
  font-family: 'Hagrid', serif;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--white);
}
.cookie-banner__desc {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin: 0;
}
.cookie-banner__desc a {
  color: var(--purple-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.cookie-btn--primary {
  background: var(--purple);
  color: #fff;
}
.cookie-btn--primary:hover {
  background: var(--purple-light);
  box-shadow: 0 6px 24px var(--purple-glow);
  transform: translateY(-1px);
}
.cookie-btn--secondary {
  background: transparent;
  color: var(--gray);
  border: 1px solid var(--border);
}
.cookie-btn--secondary:hover {
  border-color: rgba(255,255,255,0.25);
  color: var(--white);
}
.cookie-banner.hidden {
  animation: slideDown 0.4s ease forwards;
  pointer-events: none;
}
@keyframes slideDown {
  from { transform: translateY(0); opacity: 1; }
  to   { transform: translateY(100%); opacity: 0; }
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero__inner,
  .solution__inner,
  .form-section__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero__visual { order: -1; max-width: 420px; margin: 0 auto; }
  .pain__grid { grid-template-columns: 1fr; }
  .method__steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .method__steps::before { display: none; }
}
@media (max-width: 900px) {
  .cookie-banner__content { grid-template-columns: 1fr; gap: 16px; }
  .cookie-banner__actions { width: 100%; }
  .cookie-btn { flex: 1; }
}
@media (max-width: 600px) {
  .method__steps { grid-template-columns: 1fr; }
  .form-card { padding: 32px 24px; }
  .nav__cta { font-size: 12px; padding: 10px 18px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .cookie-banner { padding: 16px; }
  .cookie-banner__title { font-size: 14px; }
  .cookie-banner__desc { font-size: 12px; }
}
