/* ============================================
   Зоя Чернова — лендинги под ключ
   Палитра: кремовый + фиолетовый + оранжевый + жёлтый + розовый
   ============================================ */

:root {
  --bg: #F4F2FB;
  --bg-elevated: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-warm: #EBE8F5;
  --bg-soft: #DFDAF0;

  --fg: #1A1A2E;
  --fg-muted: #6E6E8A;
  --fg-dim: #B0B0C0;

  --purple: #7C3AED;
  --purple-dark: #5B21B6;
  --purple-soft: #EDE4FE;

  --orange: #FB923C;
  --orange-dark: #EA580C;
  --orange-soft: #FFE4CC;

  --pink: #EC4899;
  --pink-soft: #FBD0E4;

  --yellow: #FCD34D;
  --yellow-soft: #FEF3C7;

  --accent: var(--purple);
  --accent-hover: var(--purple-dark);

  --border: rgba(26, 26, 46, 0.08);
  --border-strong: rgba(26, 26, 46, 0.15);
  --shadow-soft: 0 4px 20px rgba(124, 58, 237, 0.08);
  --shadow-card: 0 10px 40px rgba(124, 58, 237, 0.12);
  --shadow-glow: 0 12px 40px rgba(236, 72, 153, 0.25);

  --container: 1240px;
  --pad-x: clamp(20px, 4vw, 60px);
  --gap: clamp(60px, 8vw, 120px);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ===== LAYOUT ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  width: 100%;
}

section { padding: var(--gap) 0; position: relative; }

/* ===== TYPOGRAPHY ===== */
.h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.section-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--fg-muted);
  max-width: 680px;
  margin-bottom: 60px;
  line-height: 1.55;
}

.muted { color: var(--fg-muted); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  border-radius: 100px;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.35);
}
.btn-primary:hover {
  background: var(--purple-dark);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.5);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--purple);
  border: 1.5px solid var(--purple);
}
.btn-ghost:hover {
  background: var(--purple);
  color: #fff;
}

.btn-full { width: 100%; }

.btn-large {
  padding: 22px 48px;
  font-size: 18px;
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 242, 251, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}
.brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.brand::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  margin-right: 10px;
  vertical-align: middle;
}
.nav {
  display: flex;
  gap: 28px;
}
.nav-link {
  position: relative;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color 0.2s, transform 0.2s;
  padding: 4px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-orange { color: var(--orange); }
.nav-orange::after { background: linear-gradient(90deg, var(--yellow), var(--orange)); }
.nav-orange:hover { color: var(--orange-dark); }
.nav-pink { color: var(--pink); }
.nav-pink::after { background: linear-gradient(90deg, var(--orange), var(--pink)); }
.nav-pink:hover { color: #BE185D; }
.nav-purple { color: var(--purple); }
.nav-purple::after { background: linear-gradient(90deg, var(--pink), var(--purple)); }
.nav-purple:hover { color: var(--purple-dark); }
.nav-link:hover::after { transform: scaleX(1); }

/* ===== 1. HERO ===== */
.hero {
  padding-top: 60px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

/* Decorative blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.blob-1 {
  top: -120px;
  right: -100px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, var(--pink) 0%, transparent 70%);
}
.blob-2 {
  top: 100px;
  right: 25%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
}
.blob-3 {
  bottom: -50px;
  left: -100px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, var(--yellow) 0%, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - 200px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 28px;
  box-shadow: var(--shadow-soft);
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16A34A;
  box-shadow: 0 0 10px rgba(22, 163, 74, 0.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(42px, 6.5vw, 88px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}
.hero-title-accent {
  background: linear-gradient(135deg, var(--orange) 0%, var(--pink) 50%, var(--purple) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.hero-sub {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--fg-muted);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.55;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-cta-meta {
  font-size: 15px;
  color: var(--fg-muted);
}
.hero-cta-meta strong {
  color: var(--fg);
  font-weight: 700;
}

.hero-photo {
  position: relative;
}
.photo-frame {
  position: relative;
  border-radius: 16px;
  overflow: visible;
}
.photo-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.25);
  position: relative;
  z-index: 1;
}
.photo-frame::before {
  content: '';
  position: absolute;
  inset: -16px -16px 16px 16px;
  background: linear-gradient(135deg, var(--yellow), var(--orange), var(--pink));
  border-radius: 16px;
  z-index: 0;
  opacity: 0.85;
}

.photo-sticker {
  position: absolute;
  z-index: 2;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 22px;
  border-radius: 100px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: rotate(-8deg);
}
.photo-sticker-1 {
  top: -18px;
  left: -30px;
  background: var(--yellow);
  color: var(--fg);
  transform: rotate(-8deg);
}
.photo-sticker-2 {
  bottom: 30px;
  right: -28px;
  background: var(--purple);
  color: #fff;
  transform: rotate(6deg);
  font-size: 14px;
}

/* ===== 2. STATS ===== */
.stats {
  background: var(--bg-elevated);
  padding: 70px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat {
  text-align: left;
  padding: 28px;
  border-radius: 16px;
  background: var(--bg-warm);
  transition: transform 0.2s;
}
.stat:hover { transform: translateY(-4px); }
.stat-yellow { background: var(--yellow-soft); }
.stat-orange { background: var(--orange-soft); }
.stat-pink { background: var(--pink-soft); }
.stat-purple { background: var(--purple-soft); }

.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1;
  color: var(--fg);
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}
.stat-label span {
  display: block;
  font-weight: 400;
  color: var(--fg-muted);
  margin-top: 4px;
  font-size: 13px;
}

/* ===== 3. WHAT I DO ===== */
.what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.what-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 36px 32px;
  border-radius: 16px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.what-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.what-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.what-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.what-card p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.55;
}

/* ===== 4. WORKS ===== */
.case {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}
.case:last-child { margin-bottom: 0; }
.case-reverse {
  grid-template-columns: 1fr 1.2fr;
}
.case-reverse .case-mockup { order: 2; }
.case-reverse .case-info { order: 1; }

.browser-frame {
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.15);
  position: relative;
}
.browser-frame::before {
  content: '';
  position: absolute;
  inset: -8px;
  background: linear-gradient(135deg, var(--yellow), var(--orange), var(--pink), var(--purple));
  border-radius: 18px;
  z-index: -1;
  opacity: 0.5;
  filter: blur(20px);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border);
}
.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.browser-bar span:nth-child(1) { background: #ff5f57; }
.browser-bar span:nth-child(2) { background: #febc2e; }
.browser-bar span:nth-child(3) { background: #28c840; }
.browser-url {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: var(--fg-muted);
  font-family: 'Space Grotesk', monospace;
  background: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  margin-left: 12px;
}
.browser-body {
  background: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.browser-body img {
  width: 100%;
  height: auto;
  display: block;
}
.private-bg {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #3a2a4f 0%, #2a1a35 100%);
  flex-direction: column;
}
.mockup-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 0.05em;
  z-index: 1;
}
.mockup-sub {
  font-family: 'Space Grotesk', monospace;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.3em;
  margin-top: 8px;
  z-index: 1;
}

.case-num {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
  font-weight: 700;
}
.case-info h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.case-meta {
  color: var(--fg-muted);
  font-size: 15px;
  margin-bottom: 24px;
}
.case-block {
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--fg);
}
.case-block strong {
  color: var(--purple);
  font-weight: 700;
  margin-right: 4px;
}
.case-story {
  font-size: 16px;
  color: var(--fg);
  line-height: 1.65;
  margin-bottom: 24px;
}
.case-info .btn-ghost {
  margin-top: 20px;
}
.case-note {
  margin-top: 20px;
  font-size: 14px;
  color: var(--fg-dim);
  font-style: italic;
}

/* ===== 5. LEVEL ===== */
.level {
  background: var(--bg-warm);
}
.level-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.level-card {
  display: block;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: 16px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.level-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.level-card-tag {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  color: #fff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  font-weight: 700;
}
.level-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  word-break: break-all;
}
.level-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.level-foot {
  text-align: center;
  color: var(--fg-muted);
  font-size: 15px;
  font-style: italic;
}

/* ===== 6. PROCESS ===== */
.process-list {
  display: grid;
  gap: 0;
}
.process-step {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  align-items: center;
  padding: 36px 0;
  border-top: 1px solid var(--border);
}
.process-step:last-child {
  border-bottom: 1px solid var(--border);
}
.process-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(56px, 7vw, 100px);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--orange) 0%, var(--pink) 50%, var(--purple) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.05em;
}
.process-text h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 2.3vw, 32px);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.process-text p {
  color: var(--fg-muted);
  font-size: 16px;
}

/* ===== 7. PRICE ===== */
.price {
  background: var(--bg-warm);
}
.price-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--bg-elevated);
  border: 2px solid var(--purple);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.2);
  position: relative;
}
.price-card::before {
  content: '';
  position: absolute;
  inset: -10px;
  background: linear-gradient(135deg, var(--yellow), var(--orange), var(--pink), var(--purple));
  border-radius: 28px;
  z-index: -1;
  opacity: 0.6;
  filter: blur(20px);
}
.price-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  background: linear-gradient(135deg, var(--orange), var(--pink), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-tag {
  margin-top: 8px;
  font-size: 14px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.price-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--pink));
  margin: 0 auto 28px;
  border-radius: 2px;
}
.price-list {
  list-style: none;
  margin-bottom: 36px;
  text-align: left;
}
.price-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--fg);
  position: relative;
  padding-left: 28px;
}
.price-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--purple);
  font-weight: 700;
  font-size: 18px;
}
.price-list li:last-child { border-bottom: none; }
.price-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--fg-dim);
  font-style: italic;
}

/* ===== 8. GUARANTEE ===== */
.guarantee {
  background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
  color: #fff;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.guarantee::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.25;
  filter: blur(50px);
}
.guarantee::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0.3;
  filter: blur(50px);
}
.guarantee .container { position: relative; z-index: 1; }
.guarantee-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.guarantee-sub {
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 400;
  max-width: 760px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* ===== 9. FAQ ===== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  padding: 24px 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(18px, 1.9vw, 22px);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--purple);
  font-size: 28px;
  font-weight: 300;
  transition: transform 0.25s;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover { color: var(--purple); }
.faq-item p {
  padding: 0 0 24px 0;
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 700px;
}

/* ===== 10. CTA — Don't lose customers ===== */
.cta {
  background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
  color: #fff;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-top: none;
}
.cta::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--purple) 0%, transparent 60%);
  opacity: 0.5;
  filter: blur(40px);
}
.cta::after {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--pink) 0%, transparent 60%);
  opacity: 0.4;
  filter: blur(40px);
}
.cta-inner {
  position: relative;
  z-index: 1;
}
.cta-eyebrow {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 24px;
}
.cta-accent {
  background: linear-gradient(135deg, var(--orange), var(--pink), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  color: #fff;
}
.cta-strike {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.45);
  margin-right: 8px;
}
.cta-strike::after {
  content: '';
  position: absolute;
  left: -4px;
  right: -4px;
  top: 52%;
  height: 5px;
  background: var(--pink);
  transform: rotate(-3deg);
  box-shadow: 0 0 20px rgba(236, 72, 153, 0.6);
}
.cta-lead {
  font-size: clamp(16px, 1.5vw, 19px);
  color: rgba(255, 255, 255, 0.75);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.cta .btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--pink));
  box-shadow: 0 10px 40px rgba(236, 72, 153, 0.5);
}
.cta .btn-primary:hover {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  box-shadow: 0 14px 48px rgba(236, 72, 153, 0.7);
}
.cta-trust {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}
.cta-trust span:not(:nth-child(odd)) {
  color: rgba(255, 255, 255, 0.3);
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 36px 0;
  background: var(--bg);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 17px;
}
.footer-contacts a {
  color: var(--purple);
  font-weight: 600;
  font-size: 14px;
}
.footer-copy {
  color: var(--fg-dim);
  font-size: 13px;
}
.footer-legal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 14px 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: 13px;
  color: var(--fg-dim);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--purple); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 50px;
    min-height: auto;
  }
  .hero-photo {
    max-width: 420px;
    margin: 0 auto;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .what-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .case,
  .case-reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .case-reverse .case-mockup { order: 1; }
  .case-reverse .case-info { order: 2; }
  .level-grid {
    grid-template-columns: 1fr;
  }
  .process-step {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .process-num {
    font-size: 56px;
  }
}

@media (max-width: 600px) {
  :root { --gap: 70px; }
  .nav { gap: 16px; }
  .nav a { font-size: 14px; }
  .brand { font-size: 18px; }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .stat { padding: 22px; }
  .what-grid {
    grid-template-columns: 1fr;
  }
  .what-card { padding: 28px 24px; }
  .price-card { padding: 36px 24px; }
  .guarantee { padding: 70px 0; }
  .cta { padding: 80px 0; }
  .btn {
    padding: 16px 28px;
    font-size: 16px;
  }
  .btn-large {
    padding: 18px 32px;
    font-size: 17px;
  }
  .photo-sticker-1 { left: -10px; }
  .photo-sticker-2 { right: -10px; }
  .cta-trust { gap: 8px; font-size: 13px; }
}

/* ============================================
   PREMIUM TOUCHES
   ============================================ */

/* ===== GRAIN OVERLAY ===== */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.06;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ===== SECTION NUMBER LABEL ===== */
.section-num {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--orange), var(--pink), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
}

/* ===== MARQUEE STRIP ===== */
.marquee-strip {
  display: block;
  background: linear-gradient(90deg, var(--purple) 0%, var(--pink) 50%, var(--orange) 100%);
  color: #fff;
  overflow: hidden;
  padding: 20px 0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.marquee-strip:hover {
  filter: brightness(1.08);
}
.marquee-strip-alt {
  background: linear-gradient(90deg, var(--yellow) 0%, var(--orange) 50%, var(--pink) 100%);
  color: #1A1A2E;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  width: max-content;
  will-change: transform;
}
.marquee-strip:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-content {
  display: flex;
  gap: 48px;
  flex-shrink: 0;
  padding-right: 48px;
}
.marquee-content span {
  white-space: nowrap;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== HERO TITLE: bigger, more confident ===== */
.hero-title {
  font-size: clamp(48px, 7.5vw, 112px);
  letter-spacing: -0.045em;
}

/* ===== H2: bigger ===== */
.h2 {
  font-size: clamp(40px, 6vw, 84px);
  letter-spacing: -0.035em;
}

/* ===== Brand bigger and more refined ===== */
.brand {
  font-size: 22px;
  letter-spacing: -0.02em;
}

/* ===== Slightly bigger CTA title ===== */
@media (min-width: 960px) {
  .cta-title {
    font-size: clamp(48px, 6vw, 76px);
  }
}

/* ===== Hide sticker-2 helper if HTML has only sticker-1 ===== */
.photo-sticker-2 { display: none; }

/* ===== FLOATING TELEGRAM BUTTON ===== */
.tg-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 490;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
  color: #fff;
  padding: 14px 22px 14px 18px;
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(124, 58, 237, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: tg-pulse 2.8s ease-in-out infinite;
}
.tg-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 48px rgba(236, 72, 153, 0.55);
  animation-play-state: paused;
}
@keyframes tg-pulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(124, 58, 237, 0.45), 0 0 0 0 rgba(124, 58, 237, 0.3); }
  55% { box-shadow: 0 8px 28px rgba(124, 58, 237, 0.45), 0 0 0 12px rgba(124, 58, 237, 0); }
}
@media (max-width: 600px) {
  .tg-float span { display: none; }
  .tg-float { padding: 14px; border-radius: 50%; bottom: 20px; right: 20px; }
}

/* ===== PREMIUM: Hero glass card ===== */
@media (min-width: 960px) {
  .hero-text {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 28px;
    padding: 52px 48px;
    box-shadow: 0 8px 40px rgba(124, 58, 237, 0.07), inset 0 1px 0 rgba(255,255,255,0.9);
  }
}

/* ===== PREMIUM: Richer blobs ===== */
.blob { opacity: 0.65; }

/* ===== PREMIUM: Card glow on hover ===== */
.what-card:hover {
  box-shadow: 0 16px 48px rgba(124, 58, 237, 0.18), 0 0 0 1px rgba(124, 58, 237, 0.12);
}
.level-card:hover {
  box-shadow: 0 16px 48px rgba(124, 58, 237, 0.18), 0 0 0 1px rgba(124, 58, 237, 0.12);
}

/* ===== PREMIUM: Price card stronger glow ===== */
.price-card {
  box-shadow: 0 24px 80px rgba(124, 58, 237, 0.28);
}

/* ===== PREMIUM: Stat card refined ===== */
.stat {
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.06);
}
.stat:hover {
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.14);
}

/* ===== PREMIUM: Header elevated ===== */
.header {
  background: rgba(244, 242, 251, 0.75);
  box-shadow: 0 1px 0 rgba(124, 58, 237, 0.08), 0 4px 20px rgba(124, 58, 237, 0.04);
}

/* ===== PREMIUM: Guarantee section text shadow ===== */
.guarantee-title {
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

/* ============================================
   DESIGN IMPROVEMENTS
   ============================================ */

/* 1. Case info — стеклянная карточка на десктопе */
@media (min-width: 960px) {
  .case-info {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 44px 40px;
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.07);
  }
}

/* 2. Ghost button — заметнее и с лифтом */
.btn-ghost {
  border-width: 2px;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.14);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.btn-ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(124, 58, 237, 0.32);
}

/* 3. Level card — стрелка ↗ в углу */
.level-card {
  position: relative;
}
.level-card::after {
  content: '↗';
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 17px;
  line-height: 1;
  color: var(--fg-dim);
  transition: color 0.2s ease, transform 0.2s ease;
}
.level-card:hover::after {
  color: var(--purple);
  transform: translate(3px, -3px);
}

/* 4. FAQ — чуть крупнее вопросы */
.faq-item summary {
  font-size: clamp(19px, 2.1vw, 24px);
}

/* 5. Process — градиентная линия-таймлайн слева */
.process-list {
  position: relative;
  padding-left: 28px;
}
.process-list::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--orange), var(--pink), var(--purple));
  opacity: 0.65;
}
@media (max-width: 600px) {
  .process-list { padding-left: 0; }
  .process-list::before { display: none; }
}

/* ===== VISUALLY HIDDEN (accessibility) ===== */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ===== FOCUS VISIBLE ===== */
:focus-visible {
  outline: 2.5px solid var(--purple);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ===== SECTION CTA (after what-grid) ===== */
.section-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.section-cta-note {
  font-size: 14px;
  color: var(--fg-muted);
}

/* ===== REVIEW + ABOUT ===== */
.about-review {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-review-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
  padding-top: var(--gap);
  padding-bottom: var(--gap);
}

/* TG review card */
.tg-review {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(124,58,237,0.07);
}
.tg-review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.tg-review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--pink), var(--purple));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 18px; color: #fff;
  flex-shrink: 0;
}
.tg-review-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 15px; color: var(--fg);
}
.tg-review-sub {
  font-size: 12px; color: var(--fg-muted); margin-top: 2px;
}
.tg-review-icon {
  width: 28px; height: 28px; margin-left: auto; flex-shrink: 0;
}
.tg-review-bubble {
  background: #EFFDDE;
  border-radius: 4px 18px 18px 18px;
  padding: 14px 18px;
  font-size: 16px;
  line-height: 1.5;
  color: #1A1A2E;
  position: relative;
  margin-bottom: 12px;
}
.tg-review-bubble::before {
  content: '';
  position: absolute;
  top: 0; left: -8px;
  border: 8px solid transparent;
  border-top-color: #EFFDDE;
  border-right-color: #EFFDDE;
}
.tg-review-caption {
  font-size: 12px;
  color: var(--fg-dim);
  font-style: italic;
  text-align: center;
}

/* About block */
.about-h2 {
  font-size: clamp(28px, 3.5vw, 52px) !important;
  margin-bottom: 20px;
}
.about-text {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 520px;
}
.about-facts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-facts li {
  font-size: 15px;
  color: var(--fg);
  padding-left: 24px;
  position: relative;
  line-height: 1.45;
}
.about-facts li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--purple);
  font-weight: 700;
}

@media (max-width: 960px) {
  .about-review-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ===== HERO TWO BUTTONS ===== */
.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-cta-meta {
  margin-top: 14px;
  font-size: 14px;
  color: var(--fg-muted);
}

/* ===== HERO SOCIAL PROOF ===== */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  padding: 16px 22px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(124,58,237,0.07);
  width: fit-content;
}
.hsp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.hsp-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--orange), var(--pink), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hsp-label {
  font-size: 11px;
  color: var(--fg-muted);
  text-align: center;
  line-height: 1.3;
}
.hsp-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .hero-social-proof { gap: 14px; padding: 14px 16px; }
  .hsp-num { font-size: 22px; }
}

/* ===== AVAILABILITY BADGE ===== */
.avail-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.22);
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: #15803D;
  margin-bottom: 28px;
}
.avail-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16A34A;
  box-shadow: 0 0 8px rgba(22, 163, 74, 0.6);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

/* ===== CASE RESULT STAT ===== */
.case-result {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--purple-soft);
  border: 1px solid rgba(124, 58, 237, 0.12);
  padding: 16px 24px;
  border-radius: 14px;
  margin-bottom: 24px;
}
.case-result-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--orange), var(--pink), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.03em;
}
.case-result-text {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.45;
}

/* ===== REVIEWS ===== */
.reviews {
  background: var(--bg-warm);
}
.reviews .h2 {
  margin-bottom: 8px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.review-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(124, 58, 237, 0.12);
}
.review-stars {
  font-size: 20px;
  letter-spacing: 3px;
  color: #F59E0B;
  margin-bottom: 18px;
}
.review-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg);
  margin-bottom: 24px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--pink), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
}
.review-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--fg);
}
.review-role {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 3px;
}
@media (max-width: 700px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ===== QUIZ ===== */
.quiz {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.quiz-step {
  display: none;
}
.quiz-step.active {
  display: block;
  animation: quiz-in 0.38s ease;
}
@keyframes quiz-in {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.quiz-progress {
  height: 3px;
  background: rgba(255,255,255,0.12);
  border-radius: 3px;
  margin: 0 auto 28px;
  overflow: hidden;
}
.quiz-progress span {
  display: block;
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--orange), var(--pink));
  transition: width 0.4s ease;
}
.quiz-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 18px;
}
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 28px auto;
  max-width: 520px;
  text-align: left;
}
.quiz-opt {
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.92);
  padding: 16px 22px;
  border-radius: 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, transform 0.15s;
  line-height: 1.35;
}
.quiz-opt:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.35);
  transform: translateX(5px);
}
.quiz-opt.selected {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
}
.quiz-back {
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  cursor: pointer;
  padding: 10px 0;
  margin-top: 4px;
  transition: color 0.2s;
}
.quiz-back:hover { color: rgba(255,255,255,0.75); }
/* Quiz form */
.quiz-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 420px;
  margin: 28px auto 0;
}
.quiz-input {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.18);
  color: #fff;
  padding: 16px 20px;
  border-radius: 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.quiz-input::placeholder { color: rgba(255,255,255,0.38); }
.quiz-input:focus {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.12);
}
/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(20, 18, 38, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: rgba(255,255,255,0.8);
  padding: 18px 32px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 600;
  border-top: 1px solid rgba(124, 58, 237, 0.25);
  flex-wrap: wrap;
}
.cookie-banner p {
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  max-width: 760px;
}
.cookie-banner a {
  color: var(--purple);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-accept {
  background: var(--purple);
  color: #fff;
  border: none;
  padding: 11px 28px;
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}
.cookie-accept:hover {
  background: var(--purple-dark);
  transform: translateY(-1px);
}

/* Quiz checkbox consent */
.quiz-consent-check {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 420px;
  margin: 20px auto 16px;
  cursor: pointer;
  text-align: left;
}
.quiz-consent-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  cursor: pointer;
  margin-top: 2px;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}
.quiz-consent-check input[type="checkbox"]:checked {
  background: var(--purple);
  border-color: var(--purple);
}
.quiz-consent-check input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.quiz-consent-check span {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.quiz-consent-check a {
  color: rgba(255,255,255,0.9);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.quiz-consent-check a:hover { color: #fff; }

.quiz-sent-msg {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-top: 24px;
}

.quiz-check {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  margin: 0 auto 32px;
  box-shadow: 0 12px 40px rgba(236, 72, 153, 0.4);
}


/* ========== EXIT INTENT POPUP ========== */
.exit-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.exit-popup.active { display: flex; }
.exit-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(3px);
}
.exit-popup-box {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 40px 32px 32px;
  max-width: 420px;
  width: calc(100% - 32px);
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
  animation: popupIn 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes popupIn {
  from { opacity: 0; transform: scale(0.85) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.exit-popup-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  font-size: 26px;
  color: #999;
  cursor: pointer;
  line-height: 1;
}
.exit-popup-close:hover { color: #333; }
.exit-popup-emoji { font-size: 40px; margin-bottom: 12px; }
.exit-popup-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 12px;
}
.exit-popup-text {
  font-size: 1rem;
  color: #555;
  margin-bottom: 24px;
  line-height: 1.5;
}
.exit-popup-btn {
  display: block;
  width: 100%;
  margin-bottom: 14px;
  text-decoration: none;
}
.exit-popup-skip {
  font-size: 0.85rem;
  color: #aaa;
  cursor: pointer;
  margin: 0;
}
.exit-popup-skip:hover { color: #777; text-decoration: underline; }
