@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ================================================================
   CHIQO — Light theme
   Brand: #FEC716 (yellow) · CTA: #F5793B (orange)
   ================================================================ */

:root {
  --brand:        #FEC716;
  --brand-dark:   #F5B700;
  --brand-mid:    #FCCA59;
  --brand-light:  #FFE7A0;
  --brand-pale:   #FFF7D1;
  --accent:       #F5793B;
  --accent-dark:  #E0672A;

  /* Light palette */
  --bg:           #FAFAF8;
  --bg-1:         #FFFFFF;
  --bg-2:         #F5F5F2;
  --bg-3:         #EEEEEA;
  --bg-4:         #E5E5E0;

  /* Text */
  --text:         #141414;
  --text-2:       #555555;
  --text-3:       #999999;

  /* Border */
  --border:       rgba(0,0,0,.08);
  --border-2:     rgba(0,0,0,.12);

  /* Dark section vars (CTA, footer) */
  --dk-bg:        #141208;
  --dk-bg-1:      #1C1A0F;
  --dk-text:      #F0EEE8;
  --dk-text-2:    #9A9480;

  /* Legal light page */
  --lt-bg:        #FFFFFF;
  --lt-surface:   #F5F5F5;
  --lt-text:      #2E2E33;
  --lt-text-2:    #565D6D;
  --lt-text-3:    #9095A1;
  --lt-border:    #E5E5E5;

  --radius-sm:    8px;
  --radius:       16px;
  --radius-lg:    24px;
  --radius-xl:    32px;
  --font:         'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow:       0 2px 16px rgba(0,0,0,.07);
  --shadow-lg:    0 8px 40px rgba(0,0,0,.10);
  --glow-yellow:  0 0 40px rgba(254,199,22,.3);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'kern' on, 'liga' on;
  overflow-x: hidden;
  transition: opacity .65s ease;
}
html.page-loading body { opacity: 0; }
a { color: var(--accent); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .75; }
img { display: block; max-width: 100%; }
::selection { background: rgba(254,199,22,.28); color: var(--text); }
h1, h2, h3, h4 { text-wrap: balance; }

/* ── SCROLL ANIMATIONS ── */
[data-a] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.22,1,.36,1),
              transform .65s cubic-bezier(.22,1,.36,1);
  will-change: opacity, transform;
}
[data-a="fade"] { transform: none; }
[data-a="up-sm"] { transform: translateY(14px); }
[data-a="scale"] { transform: translateY(16px) scale(0.97); }
[data-a].in { opacity: 1; transform: none !important; }
[data-a][data-hero] { opacity: 0; }
[data-a][data-hero].in { opacity: 1; }

/* ── UTILS ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.text-center { text-align: center; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: var(--radius);
  font-size: 15px; font-weight: 700;
  cursor: pointer; transition: all .2s ease;
  text-decoration: none !important; border: none;
  white-space: nowrap; letter-spacing: -0.1px;
  position: relative; z-index: 1;
}
.btn-lg { padding: 17px 34px; font-size: 16px; border-radius: 18px; }

/* Жёлтая — CTA */
.btn-brand {
  background: var(--brand);
  color: #1A1600;
  font-weight: 800;
  box-shadow: 0 2px 12px rgba(254,199,22,.4);
}
.btn-brand:hover {
  background: var(--brand-dark);
  box-shadow: 0 4px 24px rgba(254,199,22,.5);
  transform: translateY(-2px);
  opacity: 1;
}

/* Оранжевая */
.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(245,121,59,.35);
}
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-1px); opacity: 1; }

/* Контур (светлый) */
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-2);
}
.btn-outline:hover { border-color: rgba(0,0,0,.25); background: var(--bg-2); opacity: 1; }

/* Стекло (для тёмных секций) */
.btn-glass {
  background: rgba(255,255,255,.08);
  color: #F0EEE8;
  border: 1px solid rgba(255,255,255,.14);
}
.btn-glass:hover { background: rgba(255,255,255,.14); opacity: 1; }

/* Вторичная (светлая) */
.btn-secondary {
  background: var(--bg-2);
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover { border-color: var(--border-2); background: var(--bg-3); opacity: 1; }

/* Кнопка в pricing secondary */
.btn-primary {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
}
.btn-primary:hover { background: var(--accent-dark); opacity: 1; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(250,250,248,.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background .3s, box-shadow .3s;
}
nav.scrolled {
  background: rgba(250,250,248,.96);
  box-shadow: 0 1px 24px rgba(0,0,0,.07);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; max-width: 1160px; margin: 0 auto; padding: 0 28px;
}
.nav-logo {
  font-size: 22px; font-weight: 800; letter-spacing: -0.5px;
  color: var(--text);
}
.nav-logo .dot { color: var(--brand); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: var(--text-2); transition: color .2s;
}
.nav-links a:hover { color: var(--text); opacity: 1; }
.nav-cta { padding: 9px 20px !important; font-size: 14px !important; border-radius: 10px !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 28px 80px;
  position: relative; overflow: hidden;
  background: var(--bg);
}
/* Subtle warm gradient in corner */
.hero::before {
  content: '';
  position: absolute; top: -120px; right: -60px;
  width: 680px; height: 680px;
  background: radial-gradient(circle, rgba(254,199,22,.13) 0%, rgba(245,121,59,.05) 50%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.hero::after {
  content: '';
  position: absolute; bottom: -80px; left: -40px;
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(245,121,59,.07) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.hero-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 420px; gap: 80px;
  align-items: center; position: relative; z-index: 1;
}

/* Eyebrow pill */
.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(254,199,22,.12);
  border: 1px solid rgba(254,199,22,.32);
  border-radius: 100px;
  padding: 6px 14px 6px 8px;
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
}
.eyebrow-text {
  font-size: 13px; font-weight: 600;
  color: #8B6C00; letter-spacing: 0.2px;
}

/* Hero headline */
@keyframes grad-flow {
  0%   { background-position: 0% center; }
  50%  { background-position: 100% center; }
  100% { background-position: 0% center; }
}
.hero h1 {
  font-size: clamp(52px, 7.5vw, 96px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.96;
  color: var(--text);
  margin-bottom: 32px;
}
.hero h1 .h-line { display: block; }
.hero h1 .h-gold {
  background: linear-gradient(90deg, #E09000 0%, var(--brand) 35%, var(--accent) 65%, #E09000 100%);
  background-size: 200% auto;
  animation: grad-flow 5s ease infinite;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero h1 .h-dark { color: var(--text); }

.hero-sub {
  font-size: clamp(16px, 1.8vw, 18px);
  color: var(--text-2); max-width: 460px;
  line-height: 1.75; margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 52px; }

/* Trust row */
.trust-row { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; }
.trust-label { font-size: 13px; color: var(--text-3); }
.trust-val { font-size: 13px; font-weight: 600; color: var(--text-2); }
.trust-sep { width: 1px; height: 16px; background: var(--border-2); }

/* ── HERO EQ CARD ── */
.hero-visual { display: flex; justify-content: center; align-items: center; }

.hero-eq-card {
  background: var(--bg-1);
  border: 1.5px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  width: 340px;
  box-shadow: 0 4px 32px rgba(0,0,0,.07), 0 1px 4px rgba(0,0,0,.05);
  position: relative;
}
.hero-eq-card::before {
  content: '';
  position: absolute; top: 0; left: 32px; right: 32px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand), var(--accent), transparent);
  border-radius: 0 0 2px 2px;
}

.eq-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.eq-top-label {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.2px; color: var(--text-3);
}
.eq-top-badge {
  font-size: 12px; font-weight: 700;
  background: rgba(34,197,94,.1);
  color: #16A34A;
  border: 1px solid rgba(34,197,94,.2);
  border-radius: 100px;
  padding: 3px 10px;
}

.eq-score-row {
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 24px;
}
.eq-big-num {
  font-size: 72px; font-weight: 800; letter-spacing: -4px;
  line-height: 1;
  background: linear-gradient(135deg, var(--text) 0%, var(--text-2) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.eq-of-100 {
  font-size: 22px; font-weight: 600; color: var(--text-3);
  margin-bottom: 8px;
}

.eq-dims { display: flex; flex-direction: column; gap: 11px; margin-bottom: 20px; }
.eq-dim-row { display: flex; align-items: center; gap: 10px; }
.eq-dim-name { font-size: 12px; font-weight: 500; color: var(--text-2); width: 100px; flex-shrink: 0; }
.eq-dim-track {
  flex: 1; height: 5px;
  background: var(--bg-3);
  border-radius: 3px; overflow: hidden;
}
.eq-dim-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  border-radius: 3px;
  transition: width 1.1s cubic-bezier(.22,1,.36,1);
}
.eq-dim-pct {
  font-size: 12px; font-weight: 700; color: var(--text-2);
  width: 24px; text-align: right; flex-shrink: 0;
}

.eq-card-footer {
  display: flex; gap: 8px; flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.eq-footer-chip {
  font-size: 12px; font-weight: 600;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 12px;
  color: var(--text-2);
}

/* ── METRICS STRIP ── */
.metrics-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-1);
  padding: 40px 28px;
}
.metrics-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; justify-content: center; flex-wrap: wrap;
}
.metric {
  flex: 1; min-width: 160px;
  text-align: center; padding: 0 32px;
  position: relative;
}
.metric + .metric::before {
  content: '';
  position: absolute; left: 0; top: 15%; bottom: 15%;
  width: 1px; background: var(--border);
}
.metric-val {
  font-size: clamp(44px, 4vw, 60px); font-weight: 800; letter-spacing: -0.03em;
  background: linear-gradient(135deg, #C07800 0%, var(--accent) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}
.metric-label { font-size: 13px; color: var(--text-3); margin-top: 6px; }

/* ── SECTION COMMONS ── */
.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 16px; height: 2px; background: var(--accent); border-radius: 1px;
}
.section-h {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.06; color: var(--text);
}
.section-h .gold {
  background: linear-gradient(90deg, #C07800 0%, var(--accent) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-desc { font-size: 17px; color: var(--text-2); line-height: 1.75; max-width: 480px; }

/* ── HOW IT WORKS ── */
.how-section { padding: 120px 28px; background: var(--bg-1); }
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; margin-top: 72px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.step-card {
  background: var(--bg-1);
  padding: 40px 36px;
  position: relative;
  transition: background .25s;
}
.step-card:hover { background: var(--bg-2); }
.step-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  opacity: 0; transition: opacity .3s;
}
.step-card:hover::before { opacity: 1; }
.step-card + .step-card { border-left: 1.5px solid var(--border); }
.step-num-badge {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(254,199,22,.12);
  border: 1px solid rgba(254,199,22,.3);
  color: #8B6C00;
  font-size: 15px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.step-icon { font-size: 36px; margin-bottom: 16px; }
.step-card h3 { font-size: 19px; font-weight: 800; color: var(--text); margin-bottom: 12px; }
.step-card p { font-size: 15px; color: var(--text-2); line-height: 1.7; }
.step-arrow { display: none; }

/* ── FEATURES ── */
.features-section { padding: 0 28px 120px; background: var(--bg); }
.features-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 72px;
}
.bento-card {
  background: var(--bg-1);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative; overflow: hidden;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.bento-card:hover {
  border-color: rgba(254,199,22,.4);
  box-shadow: 0 8px 40px rgba(0,0,0,.07), 0 0 0 1px rgba(254,199,22,.15);
  background: linear-gradient(135deg, rgba(254,199,22,.03) 0%, var(--bg-1) 100%);
}
.bento-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(254,199,22,.5), transparent);
  opacity: 0; transition: opacity .3s;
}
.bento-card:hover::before { opacity: 1; }
.bento-large { grid-column: span 2; display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.bento-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(254,199,22,.1);
  border: 1px solid rgba(254,199,22,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 24px;
}
.bento-card h3 { font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 12px; letter-spacing: -0.3px; }
.bento-card p { font-size: 15px; color: var(--text-2); line-height: 1.7; margin-bottom: 20px; }
.bento-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.bento-tag {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 100px; padding: 5px 12px;
  font-size: 12px; font-weight: 500; color: var(--text-2);
}
.bento-tag .td { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }

/* Visual panels inside bento */
.bento-visual {
  background: var(--bg-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px; min-height: 220px;
  display: flex; flex-direction: column; gap: 10px;
  position: relative; overflow: hidden;
}
.bento-visual::after {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(254,199,22,.1) 0%, transparent 70%);
  pointer-events: none;
}
.bv-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.bv-label { font-size: 12px; color: var(--text-2); }
.bv-bar-wrap { flex: 1; height: 6px; background: var(--bg-3); border-radius: 3px; }
.bv-bar { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--brand), var(--accent)); }
.bv-pct { font-size: 12px; font-weight: 700; color: #8B6C00; min-width: 32px; text-align: right; }
.bento-glow { display: none; }

/* ── REVIEWS ── */
.reviews-section { padding: 120px 28px; background: var(--bg-2); }
.reviews-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; flex-wrap: wrap; gap: 24px; }
.rating-badge {
  display: flex; align-items: center; gap: 16px;
  background: var(--bg-1);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 16px 24px;
  box-shadow: var(--shadow);
}
.rating-num { font-size: 42px; font-weight: 800; color: var(--text); letter-spacing: -2px; line-height: 1; }
.rating-info .stars { font-size: 16px; margin-bottom: 2px; }
.rating-info .rlabel { font-size: 12px; color: var(--text-3); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.review-card {
  background: var(--bg-1);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: border-color .25s, box-shadow .25s;
  position: relative; overflow: hidden;
}
.review-card:hover {
  border-color: rgba(254,199,22,.35);
  box-shadow: 0 8px 32px rgba(0,0,0,.07);
}
.review-card::before {
  content: '"';
  position: absolute; top: 16px; right: 20px;
  font-size: 64px; font-weight: 900;
  color: rgba(254,199,22,.12); line-height: 1;
  font-family: Georgia, serif;
}
.r-stars { font-size: 14px; margin-bottom: 14px; }
.r-text { font-size: 14px; line-height: 1.75; color: var(--text-2); margin-bottom: 24px; }
.r-author { display: flex; align-items: center; gap: 12px; }
.r-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.r-name { font-size: 13px; font-weight: 700; color: var(--text); }
.r-role { font-size: 12px; color: var(--text-3); margin-top: 1px; }

/* ── BEFORE / AFTER ── */
.ba-section {
  padding: 120px 28px;
  background: var(--bg);
}
.ba-wrap {
  display: grid; grid-template-columns: 1fr 56px 1fr;
  margin-top: 72px; max-width: 960px; margin-left: auto; margin-right: auto;
  border-radius: var(--radius-xl); overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.ba-col { padding: 40px 40px 44px; }
.ba-before { background: var(--bg-2); }
.ba-after {
  background: linear-gradient(135deg, rgba(254,199,22,.06) 0%, rgba(245,121,59,.025) 100%);
  border-left: 1.5px solid rgba(254,199,22,.2);
}
.ba-col-head { margin-bottom: 28px; }
.ba-tag {
  display: inline-flex; align-items: center;
  padding: 4px 13px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.4px;
  text-transform: uppercase; margin-bottom: 16px;
}
.ba-tag-before { background: var(--bg-3); border: 1.5px solid var(--border-2); color: var(--text-3); }
.ba-tag-after  { background: rgba(254,199,22,.12); border: 1px solid rgba(254,199,22,.3); color: #8B6C00; }
.ba-eq-row { display: flex; align-items: center; gap: 10px; }
.ba-eq-num {
  font-size: 38px; font-weight: 800; letter-spacing: -0.03em;
  color: var(--text-3); line-height: 1; min-width: 52px;
}
.ba-eq-gold { color: var(--text); }
.ba-eq-track { flex: 1; height: 5px; background: var(--bg-3); border-radius: 3px; overflow: hidden; }
.ba-eq-fill {
  height: 100%; width: 0; border-radius: 3px;
  transition: width 1.3s cubic-bezier(.22,1,.36,1);
}
.ba-eq-fill-b { background: rgba(0,0,0,.15); }
.ba-eq-fill-a { background: linear-gradient(90deg, var(--brand), var(--accent)); }
.ba-eq-lbl { font-size: 10px; font-weight: 700; color: var(--text-3); letter-spacing: 1.2px; text-transform: uppercase; }
.ba-list { list-style: none; display: flex; flex-direction: column; }
.ba-list li {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  font-size: 14px; line-height: 1.55; color: var(--text-2);
}
.ba-list li:last-child { border-bottom: none; padding-bottom: 0; }
.ba-list-after li { color: var(--text); }
.ba-x { color: rgba(220,50,50,.55); font-size: 12px; font-weight: 700; flex-shrink: 0; padding-top: 2px; width: 15px; text-align: center; }
.ba-check { color: #16A34A; font-size: 13px; font-weight: 700; flex-shrink: 0; padding-top: 2px; width: 15px; text-align: center; }

.ba-divider {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; padding: 40px 0;
  background: var(--bg-3);
  position: relative;
}
.ba-divider::before {
  content: ''; position: absolute; top: 0; bottom: calc(50% + 52px);
  left: 50%; transform: translateX(-50%); width: 1px;
  background: linear-gradient(180deg, transparent, rgba(254,199,22,.5));
}
.ba-divider::after {
  content: ''; position: absolute; top: calc(50% + 52px); bottom: 0;
  left: 50%; transform: translateX(-50%); width: 1px;
  background: linear-gradient(0deg, transparent, rgba(254,199,22,.5));
}
.ba-div-delta { font-size: 20px; font-weight: 800; color: var(--text); letter-spacing: -0.03em; z-index: 1; }
.ba-div-arrow {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-1); border: 1.5px solid rgba(254,199,22,.4);
  display: flex; align-items: center; justify-content: center;
  color: #8B6C00; z-index: 1;
}
.ba-div-label { font-size: 9px; font-weight: 800; color: var(--text-3); letter-spacing: 1.5px; text-transform: uppercase; z-index: 1; }
@media (max-width: 680px) {
  .ba-wrap { grid-template-columns: 1fr; }
  .ba-divider {
    flex-direction: row; height: 52px; padding: 0 28px; gap: 12px;
    background: var(--bg-3);
  }
  .ba-divider::before {
    top: 50%; bottom: auto; right: calc(50% + 64px);
    left: 0; transform: translateY(-50%); width: auto; height: 1px;
    background: linear-gradient(270deg, rgba(254,199,22,.5), transparent);
  }
  .ba-divider::after {
    top: 50%; bottom: auto; left: calc(50% + 64px);
    right: 0; transform: translateY(-50%); width: auto; height: 1px;
    background: linear-gradient(90deg, rgba(254,199,22,.5), transparent);
  }
  .ba-div-arrow { transform: rotate(90deg); }
  .ba-after { border-left: none; border-top: 1.5px solid rgba(254,199,22,.2); }
}

/* ── PRICING ── */
.pricing-section { padding: 120px 28px; background: var(--bg-1); }
.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 64px;
  max-width: 760px; margin-left: auto; margin-right: auto;
}
.price-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl); padding: 40px;
  position: relative; transition: border-color .25s, background .25s, box-shadow .25s;
}
.price-card:hover {
  border-color: var(--border-2);
  box-shadow: 0 8px 40px rgba(0,0,0,.07);
}
.price-card.featured {
  background: var(--bg-1);
  border-color: rgba(254,199,22,.4);
  box-shadow: 0 4px 32px rgba(254,199,22,.12);
}
.price-card.featured::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand), var(--accent), transparent);
  border-radius: 2px 2px 0 0;
}
.price-card.featured:hover {
  border-color: rgba(254,199,22,.6);
  box-shadow: 0 8px 40px rgba(254,199,22,.15);
}
.price-badge {
  display: inline-flex; align-items: center;
  background: var(--accent);
  color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: 100px;
  margin-bottom: 20px; letter-spacing: 0.3px;
}
.price-name { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.price-amount { font-size: 52px; font-weight: 800; letter-spacing: -2.5px; color: var(--text); margin: 16px 0 4px; line-height: 1; }
.price-amount .cur { font-size: 24px; font-weight: 600; color: var(--text-3); letter-spacing: 0; }
.price-period { font-size: 13px; color: var(--text-3); margin-bottom: 32px; }
.price-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.price-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-2); }
.pf-check { color: #16A34A; font-size: 14px; flex-shrink: 0; }
.pf-cross { color: var(--text-3); font-size: 14px; flex-shrink: 0; opacity: .4; }

/* Pricing toggle */
.pricing-toggle {
  display: inline-flex;
  background: var(--bg-2);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 4px;
  margin: 32px auto 0;
  gap: 2px;
}
.pt-btn {
  background: none; border: none;
  color: var(--text-2);
  font: 500 14px/1 inherit;
  font-family: inherit;
  padding: 9px 22px; border-radius: 100px;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s, color .2s;
}
.pt-btn.active {
  background: var(--bg-1);
  color: var(--text);
  box-shadow: 0 1px 6px rgba(0,0,0,.08);
}
.pt-save {
  background: var(--brand);
  color: #1A1600;
  font-size: 11px; font-weight: 700;
  padding: 2px 7px; border-radius: 100px;
  letter-spacing: .02em;
}
#gold-price { transition: opacity .18s ease; }

/* ── FAQ ── */
.faq-section { padding: 120px 28px; background: var(--bg-2); }
.faq-grid { max-width: 760px; margin: 64px auto 0; display: flex; flex-direction: column; gap: 8px; }
details {
  background: var(--bg-1);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
}
details[open] { border-color: rgba(254,199,22,.4); }
details summary {
  padding: 22px 26px; font-weight: 600; font-size: 15px;
  cursor: pointer; list-style: none; color: var(--text);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  user-select: none; transition: color .2s;
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: '+'; font-size: 20px; color: var(--brand);
  flex-shrink: 0; line-height: 1; transition: transform .2s;
}
details[open] summary::after { transform: rotate(45deg); }
details[open] summary { color: #8B6C00; }
.faq-body { padding: 0 26px 24px; font-size: 14px; color: var(--text-2); line-height: 1.8; }
.faq-body a { color: var(--accent); }

/* ── MARQUEE STRIP ── */
.marquee-section {
  overflow: hidden;
  padding: 16px 0;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.marquee-track { display: flex; }
.marquee-inner {
  display: flex; align-items: center;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
  flex-shrink: 0;
}
.marquee-track:hover .marquee-inner { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 0 28px;
  font-size: 13px; font-weight: 600; color: var(--text-2);
  white-space: nowrap; flex-shrink: 0;
}
.marquee-item:hover { color: var(--text); }
.mi-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--brand); opacity: .5; flex-shrink: 0;
}

/* ── CTA SECTION (тёмная) ── */
.cta-section {
  padding: 140px 28px;
  background: var(--dk-bg);
  position: relative; overflow: hidden; text-align: center;
}
.cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(254,199,22,.07) 0%, transparent 70%);
}
.cta-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.cta-inner { position: relative; z-index: 1; }
.cta-section h2 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800; letter-spacing: -0.04em;
  color: var(--dk-text); margin-bottom: 20px; line-height: 1.0;
}
.cta-section p { font-size: 18px; color: var(--dk-text-2); margin-bottom: 44px; max-width: 440px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-note { margin-top: 20px; font-size: 13px; color: var(--dk-text-2); opacity: .7; }

/* ── FOOTER (тёмный) ── */
footer {
  background: var(--dk-bg-1);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 64px 28px 32px;
}
.footer-grid {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.06); margin-bottom: 28px;
}
.footer-logo { font-size: 22px; font-weight: 800; color: #F0EEE8; margin-bottom: 14px; }
.footer-logo .dot { color: var(--brand); }
.footer-desc { font-size: 14px; color: rgba(240,238,232,.45); line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(240,238,232,.35); margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(240,238,232,.55); font-size: 14px; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: #F0EEE8; opacity: 1; }
.footer-bottom {
  max-width: 1160px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: 13px; color: rgba(240,238,232,.3);
}

/* ── STICKY CTA BAR ── */
.sticky-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  z-index: 300;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding: 8px 8px 8px 24px;
  background: rgba(20,18,8,.93);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  box-shadow: 0 20px 64px rgba(0,0,0,.35);
  min-width: 460px; max-width: 680px;
  transform: translateX(-50%) translateY(calc(100% + 36px));
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.sticky-cta::before {
  content: '';
  position: absolute; top: 0; left: 24px; right: 24px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(254,199,22,.4), transparent);
}
.sticky-cta.visible {
  transform: translateX(-50%) translateY(0);
}
.sticky-left { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.s-logo { font-size: 16px; font-weight: 800; color: #F0EEE8; letter-spacing: -0.3px; }
.s-logo .dot { color: var(--brand); }
.s-sep { width: 1px; height: 14px; background: rgba(255,255,255,.15); flex-shrink: 0; }
.s-tagline { font-size: 13.5px; color: rgba(240,238,232,.6); font-weight: 500; }
.sticky-cta .btn { padding: 11px 22px; font-size: 14px; border-radius: 100px; flex-shrink: 0; }

@media (max-width: 640px) {
  .sticky-cta {
    min-width: 0; max-width: none;
    left: 12px; right: 12px; bottom: 12px;
    border-radius: 16px;
    transform: translateY(calc(100% + 32px));
    padding: 10px;
  }
  .sticky-cta.visible { transform: translateY(0); }
  .sticky-left { display: none; }
  .sticky-cta .btn { width: 100%; justify-content: center; border-radius: 10px; padding: 14px 20px; }
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 24px; left: 24px;
  z-index: 400;
  max-width: 380px;
  background: rgba(20,18,8,.95);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 20px 22px 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  transform: translateY(calc(100% + 40px));
  opacity: 0;
  transition: transform .5s cubic-bezier(.22,1,.36,1), opacity .4s ease;
  pointer-events: none;
}
.cookie-banner::before {
  content: '';
  position: absolute; top: 0; left: 20px; right: 20px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(254,199,22,.4), transparent);
}
.cookie-banner.visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.cookie-title { font-size: 13px; font-weight: 700; color: #F0EEE8; margin-bottom: 8px; display: flex; align-items: center; gap: 7px; }
.cookie-title-dot { font-size: 16px; }
.cookie-text { font-size: 13px; color: rgba(240,238,232,.6); line-height: 1.65; margin-bottom: 16px; }
.cookie-text a { color: var(--brand); font-weight: 600; }
.cookie-btns { display: flex; gap: 8px; }
.cookie-btns .btn { flex: 1; justify-content: center; padding: 10px 14px; font-size: 13px; border-radius: 12px; }

@media (max-width: 480px) {
  .cookie-banner { left: 12px; right: 12px; max-width: none; bottom: 12px; border-radius: 16px; }
}

/* ── LEGAL PAGES ── */
body.light-page {
  background: var(--lt-bg);
  color: var(--lt-text);
}
body.light-page nav {
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid var(--lt-border);
}
body.light-page .nav-logo { color: var(--lt-text); }
body.light-page .nav-links a { color: var(--lt-text-2); }
body.light-page .nav-links a:hover { color: var(--accent); }
body.light-page footer { background: var(--lt-bg); border-top: 1px solid var(--lt-border); }
body.light-page .footer-logo { color: var(--lt-text); }
body.light-page .footer-desc { color: var(--lt-text-3); }
body.light-page .footer-col h4 { color: var(--lt-text-3); }
body.light-page .footer-col a { color: var(--lt-text-2); }
body.light-page .footer-col a:hover { color: var(--accent); }
body.light-page .footer-bottom { color: var(--lt-text-3); }
body.light-page .footer-grid { border-color: var(--lt-border); }

.legal-hero {
  background: var(--brand-pale);
  padding: 110px 28px 52px;
  border-bottom: 2px solid var(--brand-light);
  text-align: center;
}
.legal-hero h1 { font-size: clamp(28px, 5vw, 48px); font-weight: 800; letter-spacing: -1px; color: var(--lt-text); }
.legal-hero .updated { margin-top: 10px; color: var(--lt-text-3); font-size: 14px; }
.legal-content { max-width: 760px; margin: 0 auto; padding: 60px 28px 120px; }
.legal-content h2 { font-size: 22px; font-weight: 800; color: var(--lt-text); margin: 48px 0 16px; padding-bottom: 12px; border-bottom: 2px solid var(--brand-light); }
.legal-content h3 { font-size: 17px; font-weight: 700; color: var(--lt-text); margin: 28px 0 10px; }
.legal-content p { color: var(--lt-text-2); margin-bottom: 14px; line-height: 1.8; }
.legal-content ul, .legal-content ol { color: var(--lt-text-2); padding-left: 22px; margin-bottom: 16px; }
.legal-content li { margin-bottom: 8px; line-height: 1.75; }
.legal-content strong { color: var(--lt-text); font-weight: 700; }
.legal-content a { color: var(--accent); }
.highlight-box { background: var(--brand-pale); border-left: 4px solid var(--brand); border-radius: 10px; padding: 18px 22px; margin: 24px 0; font-size: 15px; color: var(--lt-text); line-height: 1.7; }
.table-wrap { overflow-x: auto; margin: 20px 0 28px; border-radius: var(--radius); border: 1.5px solid var(--lt-border); }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th { background: var(--brand-pale); color: var(--lt-text); font-weight: 700; padding: 13px 18px; text-align: left; border-bottom: 2px solid var(--brand-light); }
td { padding: 12px 18px; border-bottom: 1px solid var(--lt-border); color: var(--lt-text-2); }
tr:last-child td { border-bottom: none; }

/* ── SUPPORT PAGE ── */
.support-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin-top: 48px; }
.support-card {
  background: var(--lt-bg); border: 1.5px solid var(--lt-border);
  border-radius: var(--radius-lg); padding: 36px 28px; text-align: center; transition: all .25s;
}
.support-card:hover { border-color: var(--brand); box-shadow: 0 8px 32px rgba(254,199,22,.12); transform: translateY(-4px); }
.support-card .icon { font-size: 40px; margin-bottom: 16px; }
.support-card h3 { font-size: 18px; font-weight: 700; color: var(--lt-text); margin-bottom: 10px; }
.support-card p { color: var(--lt-text-3); font-size: 14px; margin-bottom: 20px; line-height: 1.65; }
.section-title { color: var(--lt-text); }

/* ── SECTION (support/legal) ── */
.section { max-width: 900px; margin: 0 auto; padding: 0 28px; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin: 0 auto 44px; }
  .hero-actions { justify-content: center; }
  .trust-row { justify-content: center; }
  .hero-visual { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card + .step-card { border-left: none; border-top: 1.5px solid var(--border); }
  .features-bento { grid-template-columns: 1fr; }
  .bento-large { grid-column: span 1; grid-template-columns: 1fr; gap: 32px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-header { flex-direction: column; align-items: flex-start; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .metrics-inner { gap: 0; }
  .metric { min-width: 140px; padding: 0 20px; }
}
@media (max-width: 600px) {
  nav { position: sticky; top: 0; }
  .nav-links .hm { display: none; }
  .hero { padding: 90px 20px 60px; }
  .hero h1 { letter-spacing: -2px; }
  .metrics-inner { flex-direction: column; gap: 24px; }
  .metric + .metric::before { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
