/* EXTRA Agents — landing styles. Design tokens first, sections follow page order. */

:root {
  --bg: #0b0e14;
  --bg-soft: #11151f;
  --bg-card: #151a26;
  --bg-card-hover: #1a2030;
  --line: #232a3b;
  --text: #e8ecf4;
  --text-dim: #9aa4b8;
  --text-faint: #6b7488;
  --accent: #5b8cff;
  --accent-2: #8b5cf6;
  --accent-grad: linear-gradient(135deg, #5b8cff 0%, #8b5cf6 100%);
  --green: #34d399;
  --amber: #fbbf24;
  --red: #f87171;
  --radius: 14px;
  --radius-lg: 20px;
  --maxw: 1120px;
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
  font-size: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { max-width: 100%; display: block; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

section { padding: 88px 0; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); line-height: 1.12; font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); line-height: 1.2; font-weight: 750; letter-spacing: -0.015em; margin-bottom: 14px; }
h3 { font-size: 1.12rem; font-weight: 650; }

.section-lead { color: var(--text-dim); max-width: 640px; font-size: 1.06rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent-grad);
  color: #fff;
  box-shadow: 0 4px 20px rgba(91, 140, 255, 0.35);
}
.btn-primary:hover { box-shadow: 0 6px 28px rgba(91, 140, 255, 0.5); }
.btn-ghost {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}
.btn-ghost:hover { border-color: var(--accent); background: rgba(91, 140, 255, 0.08); }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 14, 20, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 20px;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.12rem; letter-spacing: -0.01em; }
.logo-mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--accent-grad);
  display: grid; place-items: center;
  font-size: 0.95rem; color: #fff; font-weight: 800;
}
.nav { display: flex; gap: 26px; font-size: 0.94rem; color: var(--text-dim); }
.nav a:hover { color: var(--text); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 1.6rem; cursor: pointer; }

/* Hero */
.hero {
  position: relative;
  padding: 110px 0 90px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -220px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(91, 140, 255, 0.16) 0%, rgba(139, 92, 246, 0.08) 40%, transparent 70%);
  pointer-events: none;
}
.hero .container { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-copy .sub {
  margin: 22px 0 32px;
  color: var(--text-dim);
  font-size: 1.13rem;
  max-width: 540px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  color: var(--text-faint);
  font-size: 0.88rem;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust span::before { content: "✓"; color: var(--green); font-weight: 700; }
.grad-text {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Hero: USP chips (контрастные, не сливаются с фоном) */
.strike-num { color: var(--text-dim); text-decoration: line-through; text-decoration-color: var(--red); text-decoration-thickness: 3px; }
.usp-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(91, 140, 255, 0.13);
  border: 1px solid rgba(91, 140, 255, 0.45);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
}
.chip b { color: #fff; font-weight: 750; }

/* Hero visual: интерфейс голосового звонка */
.hero-visual { position: relative; }
.call-window {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.call-head {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
  font-size: 0.8rem; color: var(--text-dim);
}
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
.call-timer { margin-left: auto; font-variant-numeric: tabular-nums; color: var(--text-faint); }
.call-stage { padding: 28px 20px 18px; text-align: center; }
.call-avatar {
  position: relative;
  width: 84px; height: 84px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--accent-grad);
  display: grid; place-items: center;
  font-weight: 800; font-size: 1.5rem; color: #fff;
}
.call-avatar .ring {
  position: absolute; inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(91, 140, 255, 0.45);
  animation: ringpulse 2s ease-out infinite;
}
.call-avatar .ring.r2 { animation-delay: 1s; }
@keyframes ringpulse { 0% { transform: scale(0.9); opacity: 0.9; } 100% { transform: scale(1.35); opacity: 0; } }
.call-name { font-weight: 650; font-size: 0.98rem; margin-bottom: 14px; }
.wave { display: flex; align-items: center; justify-content: center; gap: 4px; height: 34px; margin-bottom: 12px; }
.wave i { width: 4px; border-radius: 3px; background: var(--accent); animation: vb 1.1s ease-in-out infinite; }
.wave i:nth-child(4n+1) { height: 40%; animation-delay: 0s; }
.wave i:nth-child(4n+2) { height: 95%; animation-delay: 0.15s; }
.wave i:nth-child(4n+3) { height: 65%; animation-delay: 0.3s; }
.wave i:nth-child(4n)   { height: 80%; animation-delay: 0.45s; }
@keyframes vb { 0%, 100% { transform: scaleY(0.45); } 50% { transform: scaleY(1); } }
.call-status { font-size: 0.82rem; color: var(--accent); background: rgba(91, 140, 255, 0.1); border: 1px solid rgba(91, 140, 255, 0.25); display: inline-block; padding: 5px 13px; border-radius: 999px; }
.call-transcript {
  margin: 6px 18px 14px;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  font-size: 0.84rem;
  color: var(--text-faint);
}
.call-transcript p { margin: 3px 0; }
.call-transcript b { color: var(--text-dim); font-weight: 650; margin-right: 6px; }
.call-controls {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 0 18px 20px;
}
.ctrl {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 42px; height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--bg-card-hover);
  border: 1px solid var(--line);
  font-size: 0.85rem; color: var(--text-dim);
  cursor: default;
}
.ctrl-handoff { color: var(--text); }
.ctrl-end { background: rgba(248, 113, 113, 0.12); border-color: rgba(248, 113, 113, 0.4); color: var(--red); }
.hero-badge {
  /* Висит на нижнем правом углу окна звонка: заходит только на нижний отступ
     карточки, не перекрывая кнопки управления звонком. */
  position: absolute;
  bottom: -64px; right: -10px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: var(--shadow);
  font-size: 0.85rem;
}
.hero-badge b { display: block; font-size: 1.25rem; color: var(--green); }

/* Problem: гигантская цифра-якорь + лёгкий список вместо тяжёлых карточек */
.problem { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.big-stat { margin: 10px 0 34px; }
.big-stat b {
  display: block;
  font-size: clamp(3.4rem, 10vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--amber);
}
.big-stat p { margin-top: 12px; color: var(--text); font-size: clamp(1.05rem, 2vw, 1.3rem); line-height: 1.5; }
.problem-list { margin-top: 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 32px; max-width: 900px; }
.problem-list li {
  position: relative;
  padding-left: 26px;
  color: var(--text-dim);
  font-size: 0.98rem;
  line-height: 1.55;
}
.problem-list li::before { content: "—"; position: absolute; left: 0; color: var(--amber); font-weight: 700; }
.problem-list li b { color: var(--text); }

/* Steps */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.step {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 12px;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--text-dim); font-size: 0.94rem; }

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.feature {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.feature:hover { border-color: rgba(91, 140, 255, 0.5); background: var(--bg-card-hover); }
.feature .icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(91, 140, 255, 0.12);
  border: 1px solid rgba(91, 140, 255, 0.25);
  display: grid; place-items: center;
  margin-bottom: 16px;
  font-size: 1.2rem;
}
.feature h3 { margin-bottom: 8px; }
.feature p { color: var(--text-dim); font-size: 0.94rem; }

/* Peak load */
.peak-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.peak-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.peak-card b { display: block; margin-bottom: 8px; font-size: 1.05rem; }
.peak-card p { color: var(--text-dim); font-size: 0.94rem; }

/* Commercial policy + escalation */
.policy { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.policy-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; margin-top: 30px; align-items: start; }
.policy-list { margin-top: 22px; display: grid; gap: 14px; }
.policy-list li {
  position: relative;
  padding-left: 30px;
  color: var(--text-dim);
  font-size: 0.97rem;
  line-height: 1.55;
}
.policy-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 20px; height: 20px; border-radius: 6px; background: rgba(52, 211, 153, 0.14); border: 1px solid rgba(52, 211, 153, 0.4); color: var(--green); font-size: 0.75rem; font-weight: 700; display: grid; place-items: center; }
.policy-list li b { color: var(--text); }
.policy-side { display: grid; gap: 18px; }
.policy-quote {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.policy-quote h3 { margin-bottom: 12px; }
.policy-quote blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  font-size: 1.02rem;
  color: var(--text);
  margin-bottom: 12px;
}
.policy-quote p { color: var(--text-dim); font-size: 0.92rem; }

/* Cases (истории успеха, унифицированные, цифры в каждой) */
.cases { border-bottom: 1px solid var(--line); }
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.case-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  display: flex; flex-direction: column; gap: 18px;
}
.case-card header b { display: block; font-size: 1.15rem; font-weight: 750; }
.case-card header span { color: var(--text-faint); font-size: 0.85rem; }
.case-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.case-stats div { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 10px; padding: 10px 8px; text-align: center; }
.case-stats b { display: block; font-size: 1.12rem; font-weight: 800; color: var(--green); letter-spacing: -0.01em; }
.case-stats span { display: block; font-size: 0.68rem; color: var(--text-faint); line-height: 1.3; margin-top: 3px; }
.case-card > p { color: var(--text-dim); font-size: 0.93rem; flex: 1; }
.case-listen {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  font-size: 0.9rem; font-weight: 600;
  transition: border-color 0.15s, background 0.15s;
}
.case-listen:hover { border-color: var(--accent); background: rgba(91, 140, 255, 0.08); }
.case-listen .play {
  width: 34px; height: 34px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent-grad);
  color: #fff;
  display: grid; place-items: center;
  font-size: 0.7rem;
}
.case-listen em { display: block; font-style: normal; font-weight: 400; font-size: 0.76rem; color: var(--text-faint); }

/* Result band (крупные деньги-метрики) */
.result-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 40px 0 28px; }
.result-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
}
.result-item b { display: block; font-size: clamp(1.9rem, 3.4vw, 2.6rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 10px; }
.result-item b.green { color: var(--green); }
.result-item b.blue { color: var(--accent); }
.result-item span { color: var(--text-dim); font-size: 0.87rem; line-height: 1.45; }

/* ROI */
.roi-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
}
.roi-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; min-width: 560px; }
.roi-table th, .roi-table td { padding: 14px 20px; text-align: left; border-bottom: 1px solid var(--line); }
.roi-table thead th { color: var(--text-faint); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; }
.roi-table tbody tr:last-child td { border-bottom: none; }
.roi-table td.after { color: var(--green); font-weight: 650; }
.roi-table td.before { color: var(--text-dim); }
.roi-note { margin-top: 16px; color: var(--text-faint); font-size: 0.85rem; }

/* Dashboard mock */
.dash { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.dash-mock {
  margin-top: 44px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.dash-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
  font-size: 0.88rem; color: var(--text-dim);
  flex-wrap: wrap; gap: 8px;
}
.dash-head b { color: var(--text); }
.dash-body { padding: 22px; display: grid; gap: 18px; }
.dash-tiles { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.tile {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
}
.tile span { font-size: 0.72rem; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.06em; display: block; }
.tile b { font-size: 1.3rem; font-weight: 750; }
.tile .delta { font-size: 0.72rem; color: var(--green); display: block; }
.dash-cols { display: grid; grid-template-columns: 1.5fr 1fr; gap: 18px; }
.panel {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px;
}
.panel h4 { font-size: 0.85rem; color: var(--text-dim); font-weight: 600; margin-bottom: 12px; }
.panel ul li {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.86rem; color: var(--text-dim);
}
.panel ul li:last-child { border-bottom: none; }
.panel ul li em { font-style: normal; color: var(--text-faint); white-space: nowrap; }
.report-note {
  margin-top: 22px;
  color: var(--text-dim);
  font-size: 0.95rem;
  max-width: 720px;
}

/* Pricing */
.pricing-note { color: var(--text-faint); font-size: 0.9rem; margin-top: 10px; }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; align-items: stretch; }
.plan {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  display: flex; flex-direction: column;
  position: relative;
}
.plan.recommended {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 12px 44px rgba(91, 140, 255, 0.18);
}
.plan-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent-grad);
  color: #fff;
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.plan h3 { font-size: 1.2rem; margin-bottom: 4px; }
.plan .for { color: var(--text-faint); font-size: 0.86rem; margin-bottom: 18px; }
.plan .price { font-size: 2.1rem; font-weight: 800; letter-spacing: -0.02em; }
.plan .price small { font-size: 0.95rem; color: var(--text-faint); font-weight: 500; }
.plan ul { margin: 22px 0 26px; display: grid; gap: 10px; flex: 1; }
.plan ul li { display: flex; gap: 10px; font-size: 0.92rem; color: var(--text-dim); }
.plan ul li::before { content: "✓"; color: var(--green); font-weight: 700; flex-shrink: 0; }
.plan .btn { justify-content: center; }
.plans-footnote { margin-top: 22px; color: var(--text-faint); font-size: 0.85rem; text-align: center; }

/* FAQ */
.faq-list { margin-top: 40px; display: grid; gap: 12px; max-width: 780px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--accent); font-size: 1.3rem; font-weight: 400; transition: transform 0.2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .answer { padding: 0 22px 18px; color: var(--text-dim); font-size: 0.95rem; }

/* Final CTA */
.final {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute;
  bottom: -260px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.14) 0%, transparent 70%);
  pointer-events: none;
}
.final .container { position: relative; }
.final h2 { max-width: 640px; margin: 0 auto 14px; }
.final p { color: var(--text-dim); max-width: 520px; margin: 0 auto 34px; }
.final-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px 0;
  color: var(--text-faint);
  font-size: 0.88rem;
}
.site-footer .container {
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
}
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a:hover { color: var(--text); }

/* ============ Fakedoor page ============ */
.fd-page {
  min-height: 100vh;
  display: flex; flex-direction: column;
}
.fd-main {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 60px 24px;
}
.fd-card {
  position: relative;
  width: 100%;
  max-width: 560px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.fd-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--text-dim);
  font-size: 1.05rem;
  display: grid; place-items: center;
  transition: border-color 0.15s, color 0.15s;
}
.fd-close:hover { border-color: var(--accent); color: var(--text); }
.fd-card h1 { font-size: 1.7rem; margin-bottom: 10px; }
.fd-card .fd-sub { color: var(--text-dim); font-size: 0.97rem; margin-bottom: 30px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 7px; }
.field label .req { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  padding: 12px 14px;
  font: inherit;
  font-size: 0.95rem;
  transition: border-color 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.field textarea { resize: vertical; min-height: 90px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fd-privacy { color: var(--text-faint); font-size: 0.78rem; margin-top: 16px; }
.fd-error { color: var(--red); font-size: 0.9rem; margin-top: 12px; display: none; }
.fd-success { text-align: center; padding: 20px 0; display: none; }
.fd-success .check {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.4);
  display: grid; place-items: center;
  margin: 0 auto 20px;
  font-size: 1.8rem; color: var(--green);
}
.fd-success h2 { margin-bottom: 10px; }
.fd-success p { color: var(--text-dim); font-size: 0.95rem; }
.fd-success .queue { margin-top: 14px; color: var(--text-faint); font-size: 0.88rem; }
.fd-back { display: inline-block; margin-top: 24px; color: var(--accent); font-size: 0.92rem; }
.fd-consent {
  display: flex; gap: 10px; align-items: flex-start;
  margin: 16px 0 14px;
  font-size: 0.85rem; color: var(--text-dim);
  cursor: pointer;
}
.fd-consent input { flex: none; width: 16px; height: 16px; margin-top: 2px; accent-color: var(--accent); }
.fd-consent a { color: var(--accent); text-decoration: underline; }

/* Страница согласия на обработку персональных данных */
.legal-main { max-width: 760px; margin: 0 auto; padding: 60px 24px 90px; }
.legal-main h1 { font-size: 1.8rem; margin-bottom: 8px; }
.legal-main .legal-date { color: var(--text-faint); font-size: 0.88rem; margin-bottom: 30px; }
.legal-main h2 { font-size: 1.15rem; margin: 28px 0 10px; }
.legal-main p, .legal-main li { color: var(--text-dim); font-size: 0.95rem; line-height: 1.65; }
.legal-main ul { margin: 8px 0 8px 20px; list-style: disc; }
.legal-main a { color: var(--accent); text-decoration: underline; }

/* Responsive */
@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 560px; }
  .steps, .features-grid, .plans, .peak-grid, .cases-grid { grid-template-columns: 1fr 1fr; }
  .result-band { grid-template-columns: 1fr 1fr; }
  .policy-grid { grid-template-columns: 1fr; gap: 24px; }
  .dash-tiles { grid-template-columns: repeat(3, 1fr); }
  .dash-cols { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  section { padding: 60px 0; }
  .nav, .header-cta .btn-ghost { display: none; }
  .nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
    padding: 20px 24px;
  }
  .nav-toggle { display: block; }
  .hero { padding: 70px 0 60px; }
  .steps, .features-grid, .plans, .peak-grid, .cases-grid, .problem-list { grid-template-columns: 1fr; }
  .plan.recommended { order: -1; }
  .result-band { grid-template-columns: 1fr 1fr; }
  .dash-tiles { grid-template-columns: repeat(2, 1fr); }
  .fd-card { padding: 28px 22px; }
  .field-row { grid-template-columns: 1fr; }
  .hero-badge { position: static; margin-top: 14px; display: inline-block; }
}
