/* ============================================================
   TaxHub Landing — Variant 1 "Защитники"
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --primary: #0F2C4A;
  --primary-light: #1A4674;
  --primary-90: rgba(15, 44, 74, 0.9);
  --primary-70: rgba(15, 44, 74, 0.7);
  --primary-10: rgba(15, 44, 74, 0.08);
  --accent: #E8B547;
  --accent-dark: #C99935;
  --accent-soft: rgba(232, 181, 71, 0.12);
  --success: #16A34A;
  --whatsapp: #25D366;
  --bg: #FAFAF7;
  --surface: #FFFFFF;
  --border: #E5E5E0;
  --border-strong: #D4D4CF;
  --text: #0A0A0A;
  --text-secondary: #525252;
  --text-muted: #737373;
  --shadow-sm: 0 1px 2px rgba(15, 44, 74, 0.04), 0 1px 3px rgba(15, 44, 74, 0.06);
  --shadow-md: 0 4px 12px rgba(15, 44, 74, 0.06), 0 2px 4px rgba(15, 44, 74, 0.04);
  --shadow-lg: 0 24px 48px -12px rgba(15, 44, 74, 0.18), 0 8px 16px rgba(15, 44, 74, 0.06);
  --shadow-cta: 0 10px 24px -8px rgba(232, 181, 71, 0.45);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --container: 1200px;
  --easing: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 180ms;
  --t-base: 260ms;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body, h1, h2, h3, h4, p, ul, ol, figure, blockquote, dl, dd { margin: 0; }
ul[role="list"], ol[role="list"], .reset-list { list-style: none; padding: 0; margin: 0; }
img, picture, svg { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; padding: 0; color: inherit; }
input, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ---------- Base ---------- */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }

h1, h2, h3, h4 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--primary);
}
h1 { font-size: 32px; }
h2 { font-size: 26px; }
h3 { font-size: 20px; }
p { color: var(--text-secondary); }

@media (min-width: 768px) {
  h1 { font-size: 44px; }
  h2 { font-size: 34px; }
  h3 { font-size: 22px; }
}
@media (min-width: 1024px) {
  h1 { font-size: 56px; line-height: 1.05; }
  h2 { font-size: 40px; line-height: 1.15; }
  h3 { font-size: 24px; }
  body { font-size: 17px; }
}

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 1024px) {
  .container { padding-left: 40px; padding-right: 40px; }
}

section { padding: 60px 0; }
@media (min-width: 1024px) {
  section { padding: 100px 0; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  min-height: 56px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  transition: transform var(--t-fast) var(--easing),
              box-shadow var(--t-fast) var(--easing),
              background-color var(--t-fast) var(--easing),
              color var(--t-fast) var(--easing);
  text-align: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}
.btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--accent);
  color: var(--primary);
  box-shadow: var(--shadow-cta);
}
.btn--primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 14px 28px -10px rgba(232, 181, 71, 0.55); }
.btn--primary:active { transform: scale(0.98); }

.btn--secondary {
  background: var(--surface);
  color: var(--primary);
  border: 1.5px solid var(--primary-10);
  box-shadow: var(--shadow-sm);
}
.btn--secondary:hover { border-color: var(--primary); transform: translateY(-2px); }
.btn--secondary:active { transform: scale(0.98); }

.btn--whatsapp {
  background: var(--whatsapp);
  color: #fff;
}
.btn--whatsapp:hover { background: #1FB456; transform: translateY(-2px); box-shadow: 0 10px 24px -8px rgba(37, 211, 102, 0.5); }

.btn--lg { padding: 18px 36px; min-height: 60px; font-size: 17px; }
.btn--block { width: 100%; }

.btn-note {
  margin-top: 14px;
  font-size: 14px;
  color: var(--text-muted);
}

/* ---------- Header (mini logo only) ---------- */
.header {
  padding: 22px 0 0;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--primary);
  letter-spacing: -0.01em;
}
.logo__mark {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--primary);
  display: grid; place-items: center;
  position: relative;
  flex: 0 0 36px;
}
.logo__mark svg { width: 22px; height: 22px; }

/* ---------- Hero ---------- */
.hero {
  padding: 32px 0 56px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .hero { padding: 56px 0 96px; }
}
.hero__grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__grid { grid-template-columns: 1.1fr 0.9fr; gap: 64px; }
}

.hero__h1 {
  margin-bottom: 16px;
}
.hero__h1 .accent { color: var(--accent-dark); }
.hero__subtitle {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin-bottom: 28px;
  max-width: 560px;
}
@media (min-width: 1024px) {
  .hero__subtitle { font-size: 19px; }
}

.hero__bullets {
  display: grid;
  gap: 12px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}
.hero__bullets li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}
.hero__bullets svg {
  flex: 0 0 22px;
  width: 22px; height: 22px;
  color: var(--accent-dark);
  margin-top: 2px;
}

.hero__cta { display: flex; flex-direction: column; align-items: flex-start; gap: 0; }
.hero__cta .btn { width: 100%; }
@media (min-width: 480px) {
  .hero__cta .btn { width: auto; min-width: 320px; }
}

.hero__proof {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: 13px;
  color: var(--text-muted);
  align-items: center;
}
.hero__proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero__proof .dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

/* Hero visual */
.hero__visual {
  display: none;
  position: relative;
}
@media (min-width: 1024px) {
  .hero__visual { display: block; }
}
.hero__shield {
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  filter: drop-shadow(0 30px 60px rgba(15, 44, 74, 0.18));
}

/* Hero floating chips */
.hero__chip {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  line-height: 1.3;
  color: var(--primary);
  font-weight: 600;
  animation: floaty 6s ease-in-out infinite;
}
.hero__chip svg { width: 22px; height: 22px; color: var(--accent-dark); flex: 0 0 22px; }
.hero__chip--1 { top: 24px; left: -8px; animation-delay: 0s; }
.hero__chip--2 { bottom: 40px; right: -8px; animation-delay: 1.5s; }
.hero__chip--3 { bottom: 200px; left: 12px; animation-delay: 3s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ---------- Section heading ---------- */
.section__head { text-align: center; margin-bottom: 40px; max-width: 720px; margin-left: auto; margin-right: auto; }
@media (min-width: 1024px) { .section__head { margin-bottom: 64px; } }
.section__head h2 { margin-bottom: 12px; }
.section__head p { font-size: 16px; color: var(--text-secondary); }

/* ---------- Before / After ---------- */
.beforeafter {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ba-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .ba-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (min-width: 1024px) {
  .ba-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}

.ba-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ba-card__before, .ba-card__after {
  padding: 22px 22px 24px;
  font-size: 15px;
  line-height: 1.55;
}
.ba-card__before {
  background: rgba(220, 38, 38, 0.06);
  color: var(--text);
  border-bottom: 1px dashed rgba(220, 38, 38, 0.25);
  position: relative;
}
.ba-card__after {
  background: rgba(22, 163, 74, 0.06);
  color: var(--text);
  position: relative;
}
.ba-card__label {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.ba-card__before .ba-card__label { color: #DC2626; }
.ba-card__after  .ba-card__label { color: #16A34A; }
.ba-card__before p, .ba-card__after p { color: var(--text); }
.ba-card__after::before {
  content: "";
  position: absolute;
  top: -1px; left: 22px;
  width: 36px;
  height: 2px;
  background: var(--success);
}

/* ---------- Benefits ---------- */
.benefits-grid {
  display: grid;
  gap: 18px;
}
@media (min-width: 768px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (min-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

.benefit {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  transition: transform var(--t-base) var(--easing), box-shadow var(--t-base) var(--easing), border-color var(--t-base) var(--easing);
}
.benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}
.benefit__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  color: var(--accent-dark);
  margin-bottom: 20px;
}
.benefit__icon svg { width: 26px; height: 26px; }
.benefit h3 { margin-bottom: 10px; font-size: 18px; }
@media (min-width: 1024px) { .benefit h3 { font-size: 20px; } }
.benefit p { font-size: 15px; line-height: 1.55; color: var(--text-secondary); }

/* ---------- FAQ ---------- */
.faq { background: var(--surface); border-top: 1px solid var(--border); }
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  overflow: hidden;
  transition: border-color var(--t-fast) var(--easing), box-shadow var(--t-fast) var(--easing);
}
.faq-item[open] { border-color: var(--border-strong); box-shadow: var(--shadow-sm); }
.faq-item summary {
  padding: 20px 56px 20px 22px;
  font-weight: 600;
  font-size: 16px;
  color: var(--primary);
  cursor: pointer;
  position: relative;
  list-style: none;
  line-height: 1.4;
  min-height: 56px;
  display: flex;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: translateY(-70%) rotate(45deg);
  transition: transform var(--t-fast) var(--easing);
}
.faq-item[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.faq-item__body {
  padding: 0 22px 22px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.65;
}
@media (min-width: 1024px) {
  .faq-item summary { font-size: 17px; }
  .faq-item__body { font-size: 16px; }
}

/* ---------- CTA strip ---------- */
.ctastrip { padding: 48px 0; }
@media (min-width: 1024px) { .ctastrip { padding: 80px 0; } }
.ctastrip__inner {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  display: grid;
  gap: 20px;
  position: relative;
  overflow: hidden;
}
.ctastrip__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(232, 181, 71, 0.22), transparent 60%);
  pointer-events: none;
}
.ctastrip__inner > * { position: relative; z-index: 1; }
.ctastrip h2 { color: #fff; font-size: 24px; }
.ctastrip p { color: rgba(255,255,255,0.78); font-size: 15px; }
.ctastrip .btn { align-self: start; }
@media (min-width: 768px) {
  .ctastrip__inner {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 44px 40px;
    gap: 32px;
  }
  .ctastrip h2 { font-size: 28px; }
}
@media (min-width: 1024px) {
  .ctastrip__inner { padding: 56px 56px; }
  .ctastrip h2 { font-size: 32px; }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,0.7);
  padding: 40px 0 32px;
  font-size: 14px;
}
.footer__grid {
  display: grid;
  gap: 22px;
}
@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 1fr auto; align-items: end; gap: 32px; }
}
.footer__logo { display: flex; align-items: center; gap: 10px; color: #fff; margin-bottom: 12px; font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 17px; }
.footer__logo .logo__mark { background: var(--accent); }
.footer__logo .logo__mark path { fill: var(--primary); }
.footer__meta { font-size: 13px; line-height: 1.6; }
.footer__legal { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 16px; }

/* ---------- Modal (Quiz) ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 16px;
  background: rgba(15, 44, 74, 0.7);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  overflow-y: auto;
  opacity: 0;
  transition: opacity var(--t-base) var(--easing);
}
.modal.is-open { display: flex; opacity: 1; }
.modal__dialog {
  background: var(--surface);
  width: 100%;
  max-width: 560px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  position: relative;
  margin: 24px auto;
  overflow: hidden;
  transform: scale(0.95);
  transition: transform var(--t-base) var(--easing);
}
.modal.is-open .modal__dialog { transform: scale(1); }

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg);
  display: grid;
  place-items: center;
  z-index: 2;
  transition: background var(--t-fast) var(--easing);
}
.modal__close:hover { background: var(--border); }
.modal__close svg { width: 18px; height: 18px; color: var(--primary); }

.quiz__progress {
  padding: 22px 24px 0;
}
.quiz__progress-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.quiz__step-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.quiz__step-label strong { color: var(--primary); font-weight: 700; }
.quiz__back {
  font-size: 13px;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 8px;
  border-radius: 6px;
  transition: background var(--t-fast) var(--easing);
}
.quiz__back:hover { background: var(--bg); }
.quiz__back svg { width: 14px; height: 14px; }
.quiz__back[hidden] { display: none; }
.quiz__bar {
  height: 4px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
}
.quiz__bar-fill {
  height: 100%;
  background: var(--accent);
  width: 25%;
  border-radius: 999px;
  transition: width 320ms var(--easing);
}

.quiz__body {
  padding: 24px 24px 28px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 480px) {
  .quiz__body { padding: 28px 32px 32px; }
}

.quiz__step {
  display: none;
  animation: fadeUp var(--t-base) var(--easing);
}
.quiz__step.is-active { display: block; }
.quiz__step.is-leaving { animation: slideLeftOut 250ms var(--easing) forwards; }
.quiz__step.is-entering { animation: slideLeftIn 250ms var(--easing); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideLeftIn {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideLeftOut {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(-24px); }
}

.quiz__question {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
@media (min-width: 480px) {
  .quiz__question { font-size: 22px; }
}

.quiz__options {
  display: grid;
  gap: 10px;
}
.quiz__option {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  min-height: 60px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  transition: all var(--t-fast) var(--easing);
}
.quiz__option:hover { border-color: var(--primary); background: var(--surface); }
.quiz__option:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.quiz__option.is-selected {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--primary);
}
.quiz__option-icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--accent-dark);
}
.quiz__option.is-selected .quiz__option-icon { background: var(--accent); border-color: var(--accent); color: var(--primary); }
.quiz__option-icon svg { width: 18px; height: 18px; }

/* Form (step 4) */
.quiz__form { display: grid; gap: 14px; }
.field { display: grid; gap: 6px; }
.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}
.field input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  padding: 14px 16px;
  min-height: 52px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  font-size: 16px;
  transition: border-color var(--t-fast) var(--easing), box-shadow var(--t-fast) var(--easing);
}
.field input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(15, 44, 74, 0.12); }
.field input.is-error { border-color: #DC2626; }
.field__error {
  font-size: 13px;
  color: #DC2626;
  display: none;
}
.field.is-error .field__error { display: block; }

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}

.quiz__submit {
  margin-top: 8px;
}
.quiz__submit-note {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 6px;
}

.quiz__privacy {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}
.quiz__privacy a { color: var(--text-secondary); text-decoration: underline; }

/* ---------- Thanks page ---------- */
.thanks {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
}
.thanks__main {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 48px 20px;
}
.thanks__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 24px 36px;
  width: 100%;
  max-width: 560px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
@media (min-width: 768px) {
  .thanks__card { padding: 44px 44px 48px; }
}
.thanks__check {
  width: 84px; height: 84px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.1);
  display: grid;
  place-items: center;
  position: relative;
}
.thanks__check svg { width: 44px; height: 44px; color: var(--success); }
.thanks__check svg .check-circle { stroke-dasharray: 180; stroke-dashoffset: 180; animation: drawCircle 600ms 100ms var(--easing) forwards; }
.thanks__check svg .check-mark { stroke-dasharray: 50; stroke-dashoffset: 50; animation: drawCheck 400ms 600ms var(--easing) forwards; }
@keyframes drawCircle { to { stroke-dashoffset: 0; } }
@keyframes drawCheck { to { stroke-dashoffset: 0; } }

.thanks h1 { font-size: 28px; margin-bottom: 12px; }
@media (min-width: 768px) { .thanks h1 { font-size: 36px; } }
.thanks__lead {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 28px;
}
.thanks__steps {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  text-align: left;
  margin-bottom: 28px;
  display: grid;
  gap: 12px;
}
.thanks__steps-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--primary);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.thanks__steps-title::before {
  content: "";
  width: 14px; height: 1px; background: var(--accent);
}
.thanks__step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}
.thanks__step-num {
  flex: 0 0 26px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 13px;
}

.thanks__actions {
  display: grid;
  gap: 12px;
}
@media (min-width: 480px) {
  .thanks__actions { grid-template-columns: 1fr 1fr; }
}
.thanks__hint {
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-muted);
}
.thanks__footer {
  background: var(--primary);
  color: rgba(255,255,255,0.78);
  padding: 28px 20px;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
}
.thanks__footer strong { color: #fff; }

/* ---------- Animations on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms var(--easing), transform 600ms var(--easing);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Utilities ---------- */
.text-accent { color: var(--accent-dark); }
.center { text-align: center; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .hero__chip { animation: none; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Safe area for iOS ---------- */
@supports (padding: max(0px)) {
  body {
    padding-left: max(0px, env(safe-area-inset-left));
    padding-right: max(0px, env(safe-area-inset-right));
  }
}
