/* ─── Root Variables ─────────────────────────────────────────────────────── */
:root {
  --bg:           #06080f;
  --bg-2:         #0b0f1e;
  --surface:      rgba(255,255,255,0.034);
  --surface-2:    rgba(255,255,255,0.06);
  --surface-3:    rgba(255,255,255,0.09);
  --border:       rgba(255,255,255,0.08);
  --border-2:     rgba(255,255,255,0.14);
  --line:         rgba(255,255,255,0.08);
  --ink:          #eef2ff;
  --ink-dim:      #c7d2fe;
  --muted:        #6b80a8;
  --accent:       #5b8bff;
  --accent-2:     #8b5cf6;
  --grad:         linear-gradient(135deg, #5b8bff 0%, #8b5cf6 100%);
  --grad-r:       linear-gradient(135deg, #8b5cf6 0%, #5b8bff 100%);
  --green:        #10b981;
  --green-soft:   rgba(16,185,129,0.1);
  --coral:        #f43f5e;
  --coral-soft:   rgba(244,63,94,0.1);
  --blue-soft:    rgba(91,139,255,0.1);
  --glow-btn:     0 8px 36px rgba(91,139,255,0.42);
  --glow-card:    0 0 0 1px rgba(255,255,255,0.055), 0 28px 64px rgba(0,0,0,0.55);
  --max:          1220px;
  --radius:       12px;
  --radius-lg:    18px;
  --radius-xl:    24px;
}

/* ─── Reset ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

/* Ambient background glow */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 15% -5%,  rgba(91,139,255,0.13) 0%, transparent 60%),
    radial-gradient(ellipse 55% 50% at 85%  5%,  rgba(139,92,246,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 105%, rgba(16,185,129,0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

body > * { position: relative; z-index: 1; }

img, svg { display: block; }
img { max-width: 100%; }
a   { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

/* ─── Header ─────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--border);
  background: rgba(6, 8, 15, 0.82);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 72px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

/* ─── Brand ─────────────────────────────────────────────────────────────── */
.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.05;
}

.brand strong {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 840;
  letter-spacing: -0.025em;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand span {
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 620;
  letter-spacing: 0.01em;
}

/* ─── Logo Icon (Leaf → Autosky Diamond) ────────────────────────────────── */
.leaf {
  width: 17px;
  height: 17px;
  background: var(--grad);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  flex: 0 0 auto;
  animation: leaf-pulse 3.5s ease-in-out infinite;
}

@keyframes leaf-pulse {
  0%, 100% { opacity: 1; transform: rotate(0deg) scale(1); }
  50%       { opacity: 0.75; transform: rotate(45deg) scale(0.9); }
}

/* ─── Nav Links ─────────────────────────────────────────────────────────── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 650;
  color: var(--muted);
}

.nav-links a {
  position: relative;
  padding: 26px 0 24px;
  transition: color 150ms;
}

.nav-links a[aria-current="page"],
.nav-links a:hover { color: var(--ink); }

.nav-links a[aria-current="page"]::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 16px;
  height: 2px;
  background: var(--grad);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  border: none;
  border-radius: 8px;
  background: var(--grad);
  color: #fff;
  font-size: 14px;
  font-weight: 750;
  box-shadow: var(--glow-btn);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 50px rgba(91,139,255,0.52);
  opacity: 0.93;
}

.button:active { transform: translateY(0); }

.button.secondary {
  background: var(--surface-2);
  color: var(--ink-dim);
  box-shadow: 0 0 0 1px var(--border);
}

.button.secondary:hover {
  background: var(--surface-3);
  box-shadow: 0 0 0 1px var(--border-2), 0 8px 28px rgba(0,0,0,0.35);
  opacity: 1;
  transform: translateY(-2px);
}

.button.dark {
  background: var(--grad);
  box-shadow: var(--glow-btn);
}

.button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.arrow { font-size: 15px; line-height: 1; }

/* ─── Menu Button ────────────────────────────────────────────────────────── */
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  transition: background 150ms;
}

.menu-button:hover { background: var(--surface-2); }

.menu-button span,
.menu-button::before,
.menu-button::after {
  content: "";
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 2px;
  transition: transform 200ms;
}

/* ─── Sections ───────────────────────────────────────────────────────────── */
.section { border-bottom: 1px solid var(--border); }

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 90px 28px;
}

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  background: none;
  position: relative;
  overflow: hidden;
}

/* Subtle grid */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.017) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.017) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  min-height: calc(100vh - 72px);
  padding: 64px 28px 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.hero-copy { min-width: 0; }

/* Badge pill */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  padding: 5px 14px 5px 10px;
  border-radius: 100px;
  border: 1px solid rgba(91,139,255,0.3);
  background: rgba(91,139,255,0.07);
  color: #93b4ff;
  font-size: 12.5px;
  font-weight: 680;
  letter-spacing: 0.01em;
}

.hero-badge::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--grad);
  flex: 0 0 auto;
  animation: blink-dot 2s ease-in-out infinite;
}

@keyframes blink-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* ─── Typography ─────────────────────────────────────────────────────────── */
h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 20px;
  font-size: clamp(44px, 5.2vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 870;
}

h1 span, h2 span {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 3.5vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 840;
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 730;
}

.lead {
  max-width: 580px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

/* ─── Hero Facts Row ─────────────────────────────────────────────────────── */
.hero-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  max-width: 600px;
  margin: 28px 0 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
}

.fact {
  padding: 15px 16px;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: center;
  border-right: 1px solid var(--border);
}

.fact:last-child { border-right: none; }

.fact svg, .trust-item svg, .mini-card svg {
  width: 24px; height: 24px;
  color: var(--accent);
}

.fact b, .trust-item b, .mini-card b {
  display: block;
  font-size: 12.5px;
  line-height: 1.2;
  color: var(--ink);
}

.fact span, .trust-item span, .mini-card p,
.muted, .list li, .steps p, .small {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.5;
}

/* ─── Hero Actions ───────────────────────────────────────────────────────── */
.hero-actions, .split-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ─── Notice ─────────────────────────────────────────────────────────────── */
.notice {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  padding: 12px 16px;
  border: 1px solid rgba(244,63,94,0.2);
  background: rgba(244,63,94,0.05);
  border-radius: 10px;
  max-width: 540px;
}

.notice::before {
  content: "ℹ";
  width: 18px; height: 18px;
  margin-top: 1px;
  border-radius: 50%;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 900;
  font-style: normal;
}

/* ─── Hero Visual ────────────────────────────────────────────────────────── */
.hero-visual {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: contain;
  filter: drop-shadow(0 30px 70px rgba(91,139,255,0.3)) brightness(1.05);
}

/* ─── Trust Grid ─────────────────────────────────────────────────────────── */
.trust-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.trust-item {
  padding: 26px 22px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: center;
  background: var(--bg-2);
  transition: background 200ms;
}

.trust-item:hover { background: var(--surface-2); }

/* ─── Split Layout ───────────────────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 72px;
  align-items: start;
}

/* ─── Panels / Cards ─────────────────────────────────────────────────────── */
.panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--glow-card);
  overflow: hidden;
}

.offer-panel { border-color: rgba(91,139,255,0.2); }

.offer-top {
  padding: 36px;
  background: linear-gradient(140deg, #0e1738 0%, #17103a 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.offer-top::before {
  content: "";
  position: absolute;
  top: -50px; right: -50px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91,139,255,0.18), transparent 70%);
  pointer-events: none;
}

.offer-top::after {
  content: "";
  position: absolute;
  bottom: -30px; left: 50%;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,0.12), transparent 70%);
  pointer-events: none;
}

.offer-top .small {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 10.5px;
  font-weight: 750;
  color: var(--accent);
}

.offer-top p {
  color: rgba(238,242,255,0.55);
  margin: 0;
  font-size: 14px;
  position: relative;
  z-index: 1;
}

.offer-price {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin: 10px 0 10px;
  position: relative;
  z-index: 1;
}

.offer-price strong {
  font-size: 64px;
  line-height: 0.9;
  letter-spacing: -0.05em;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.offer-price span {
  color: var(--muted);
  font-size: 14px;
  padding-bottom: 6px;
}

.offer-body { padding: 28px 36px 36px; }

/* ─── Lists ──────────────────────────────────────────────────────────────── */
.list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li {
  position: relative;
  padding: 10px 0 10px 26px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
  transition: color 150ms;
}

.list li:last-child { border-bottom: none; }

.list li:hover { color: var(--ink-dim); }

.list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
  font-size: 13px;
}

.list.no li::before {
  content: "×";
  color: var(--coral);
}

.list.extra li::before {
  content: "+";
  color: var(--accent);
  font-weight: 900;
}

/* ─── Comparison Grid (3 col) ────────────────────────────────────────────── */
.comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.comparison > div {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: border-color 200ms, background 200ms;
}

.comparison > div:hover { background: var(--surface-2); }

.comparison > div:first-child  { border-color: rgba(16,185,129,0.22); background: rgba(16,185,129,0.04); }
.comparison > div:nth-child(2) { border-color: rgba(244,63,94,0.22);  background: rgba(244,63,94,0.04);  }
.comparison > div:nth-child(3) { border-color: rgba(91,139,255,0.25); background: rgba(91,139,255,0.05); }

.comparison h3 {
  font-size: 15px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  font-weight: 730;
}

.comparison > div:first-child  h3 { color: var(--green);  }
.comparison > div:nth-child(2) h3 { color: var(--coral);  }
.comparison > div:nth-child(3) h3 { color: var(--accent); }

/* ─── Steps ──────────────────────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  transition: border-color 200ms, background 200ms, transform 200ms, box-shadow 200ms;
}

.step:hover {
  border-color: rgba(91,139,255,0.3);
  background: var(--surface-2);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-flex;
  margin-bottom: 24px;
  font-size: 12px;
  font-weight: 870;
  letter-spacing: 0.02em;
  padding: 5px 11px;
  border-radius: 7px;
  background: var(--blue-soft);
  border: 1px solid rgba(91,139,255,0.2);
  color: var(--accent);
}

.step::after { display: none; }

/* ─── Mini Cards ─────────────────────────────────────────────────────────── */
.mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.mini-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  transition: border-color 200ms, background 200ms, transform 200ms;
}

.mini-card:hover {
  border-color: var(--border-2);
  background: var(--surface-2);
  transform: translateY(-2px);
}

.mini-card svg { margin-bottom: 16px; }
.mini-card b { display: block; font-size: 16px; margin-bottom: 8px; color: var(--ink); }

/* ─── FAQ ────────────────────────────────────────────────────────────────── */
.faq-list { border-top: 1px solid var(--border); }

details {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  list-style: none;
  cursor: pointer;
  font-size: 16.5px;
  font-weight: 720;
  color: var(--ink);
  transition: color 150ms;
}

summary::-webkit-details-marker { display: none; }
summary:hover { color: var(--accent); }

summary::after {
  content: "+";
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
  flex: 0 0 auto;
  transition: transform 200ms;
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.78;
}

/* ─── CTA Section ────────────────────────────────────────────────────────── */
.cta {
  background: none;
  position: relative;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 100% at 50% 50%, rgba(91,139,255,0.055) 0%, transparent 70%);
  pointer-events: none;
}

.contact-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: center;
}

.contact-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.contact-item {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  align-items: start;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color 200ms, background 200ms;
}

.contact-item:hover {
  border-color: var(--border-2);
  background: var(--surface-2);
}

.contact-item svg {
  width: 24px; height: 24px;
  color: var(--accent);
}

.contact-item b {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 12.5px;
}

.contact-item span {
  overflow-wrap: anywhere;
  font-size: 12.5px;
}

/* ─── Page Hero ──────────────────────────────────────────────────────────── */
.page-hero {
  background: none;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.014) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.page-hero .section-inner {
  padding-top: 96px;
  padding-bottom: 76px;
}

.page-kicker {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
  margin: 0;
}

/* ─── Form ───────────────────────────────────────────────────────────────── */
.form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  color: var(--ink-dim);
  font-size: 11.5px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 12px 14px;
  background: var(--surface);
  color: var(--ink);
  outline: none;
  transition: border-color 150ms, box-shadow 150ms, background 150ms;
}

.field input::placeholder,
.field textarea::placeholder { color: var(--muted); }

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--accent);
  background: var(--surface-2);
  box-shadow: 0 0 0 3px rgba(91,139,255,0.14);
}

.form-status {
  min-height: 20px;
  font-weight: 700;
  font-size: 14px;
  border-radius: 9px;
  transition: all 200ms;
}

.form-status:not(:empty) { padding: 12px 16px; }

.form-status.success {
  color: var(--green);
  background: var(--green-soft);
  border: 1px solid rgba(16,185,129,0.25);
}

.form-status.error {
  color: var(--coral);
  background: var(--coral-soft);
  border: 1px solid rgba(244,63,94,0.25);
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px 28px;
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: 28px;
  align-items: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 620;
}

.footer-links a { transition: color 150ms; }
.footer-links a:hover { color: var(--ink); }

.legal-links { justify-content: flex-end; }

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1020px) {
  .nav-links {
    position: fixed;
    inset: 72px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 24px;
    border-bottom: 1px solid var(--border);
    background: rgba(6,8,15,0.97);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
  }

  .nav-links.is-open { display: flex; }

  .nav-links a {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-links a::after { display: none; }
  .menu-button { display: block; }
  .header-actions .button { display: none; }

  .hero-grid, .split, .contact-strip, .footer-grid {
    grid-template-columns: 1fr;
  }

  .comparison { grid-template-columns: 1fr; }

  .trust-grid { border-radius: var(--radius-lg); }

  .hero-grid { min-height: 0; gap: 28px; }
  .hero-visual { min-height: 320px; }
  .hero-visual img { min-height: 300px; }

  .legal-links, .footer-links { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .nav-wrap  { padding: 0 18px; }
  .brand strong { font-size: 19px; }
  .brand span   { font-size: 11px; }
  .section-inner { padding: 60px 20px; }
  .hero-grid { padding: 42px 20px 32px; }

  h1 { font-size: clamp(38px, 11vw, 54px); overflow-wrap: anywhere; }
  h2 { font-size: clamp(28px, 9vw, 40px); }

  .lead, .page-kicker { font-size: 16px; }

  .hero-facts, .trust-grid, .steps, .mini-grid, .contact-items, .form-row {
    grid-template-columns: 1fr;
  }

  .hero-actions .button, .split-actions .button { width: 100%; }
  .offer-price strong { font-size: 44px; }
  .offer-top, .offer-body { padding: 22px 20px; }
  
  .step, .mini-card, .comparison > div { padding: 20px; }
  .trust-item { padding: 18px 16px; }
  .fact { padding: 12px 14px; }
  
  .split, .contact-strip { gap: 44px; }
  
  .hero-visual { min-height: 260px; }
  .hero-visual img { min-height: 240px; }

  .cta::before, .page-hero::before { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
