/* ===== VARIABLES ===== */
:root {
  --purple: #8B41FF;
  --purple-dark: #5C16C5;
  --purple-deeper: #400C94;
  --purple-bg: rgba(139, 65, 255, 0.08);
  
  --yellow: #FBBF24;
  --green: #10B981;
  --red: #EF4444;
  
  --white: #ffffff;
  --bg-light: #F8FAFC;
  --bg-gray: #F1F5F9;
  --bg-dark: #0B0814;
  --bg-dark-alt: #161129;
  
  --text-dark: #0F172A;
  --text-body: #475569;
  --text-muted: #94A3B8;
  
  --border: rgba(0, 0, 0, 0.08);
  --border-light: rgba(255, 255, 255, 0.1);
  --border-purple: rgba(139, 65, 255, 0.25);
  
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.08);
  --shadow-purple: 0 4px 16px rgba(139, 65, 255, 0.3);
  --shadow-gold: 0 4px 16px rgba(251, 191, 36, 0.3);
  
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

section[id] { scroll-margin-top: var(--header-h); }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

a:focus-visible, button:focus-visible { outline: 2px solid var(--purple); outline-offset: 3px; }
a:focus, button:focus { outline: none; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 15px;
  border: none; cursor: pointer;
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s, background 0.2s;
}
.btn-star { width: 22px; height: 22px; margin-left: 6px; object-fit: contain; flex-shrink: 0; }
.btn-primary {
  background: var(--purple); color: var(--white);
  box-shadow: var(--shadow-purple);
}
.btn-primary:hover {
  background: var(--purple-dark); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.35);
}
.btn-primary:active { transform: translateY(0) scale(0.98); }

.btn-gold {
  background: #C49A3D; color: var(--white);
  box-shadow: 0 4px 16px rgba(196, 154, 61, 0.3);
}
.btn-gold:hover {
  background: #A6802C; transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 154, 61, 0.4);
}
.btn-gold:active { transform: translateY(0) scale(0.98); }

.btn-outline {
  background: transparent; border: 2px solid var(--border); color: var(--text-dark);
}
.btn-outline:hover { border-color: var(--purple); color: var(--purple); transform: translateY(-2px); }

.btn-outline-light {
  background: transparent; border: 1px solid rgba(255,255,255,0.25); color: var(--white);
}
.btn-outline-light:hover {
  border-color: var(--white); background: rgba(255,255,255,0.05); transform: translateY(-2px);
}

/* ===== HEADER (DARK) ===== */
.page { overflow: hidden; }
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  background: rgba(11, 8, 20, 0.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: var(--header-h);
  border-bottom: 1px solid var(--border-light);
}
/* ===== LOGO ===== */
.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon-img {
  height: 50px;
  width: auto;
  display: block;
  flex-shrink: 0;
  margin-top: -8px;
}
.logo-icon-img-sm {
  height: 40px;
}
.logo-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.logo-brand-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1;
}
.logo-gold {
  background: linear-gradient(135deg, #D4AF37 0%, #F7D77A 50%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.logo-subtitle {
  font-size: 10.5px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  letter-spacing: 0.2px;
  white-space: nowrap;
}
.logo-purple-text { color: var(--purple); font-weight: 600; }

.nav { display: flex; gap: 24px; align-items: center; }
.nav a { color: var(--text-muted); font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav a:hover { color: var(--white); }
.nav-cta-mobile { display: none; }

.header-cta {
  height: 40px; padding: 0 20px; border-radius: 10px;
  background: var(--purple); color: var(--white);
  font-weight: 700; font-size: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s;
  box-shadow: var(--shadow-purple);
}
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(139, 92, 246, 0.35); }

.burger { display: none; background: none; border: 0; width: 28px; height: 22px; position: relative; z-index: 101; }
.burger span {
  display: block; width: 100%; height: 2px; background: var(--white);
  position: absolute; left: 0; transition: transform 0.3s, opacity 0.3s;
}
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 10px; }
.burger span:nth-child(3) { top: 20px; }
.burger.active span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

/* ===== SECTION SHARED ===== */
section { padding: 90px 48px; }
.section-eyebrow {
  display: block; text-align: center; text-transform: uppercase; font-size: 12px;
  font-weight: 800; letter-spacing: 2.5px; color: var(--text-muted); margin-bottom: 20px;
}
.section-eyebrow-light { color: rgba(255,255,255,0.4); }
.text-purple { color: var(--purple); }
.text-yellow {
  background: linear-gradient(90deg, #FFDF00 0%, #FFAA00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 800;
}

/* ===== HERO (DARK) ===== */
.hero {
  padding: 140px 48px 100px;
  background: var(--bg-dark);
  color: var(--white);
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.hero-tag {
  display: inline-block; padding: 6px 16px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: var(--white); font-size: 11px; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(34px, 4vw, 52px); font-weight: 900; line-height: 1.15;
  margin-bottom: 24px; letter-spacing: -0.02em;
}
.hero-desc {
  font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 36px; max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-trust { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,0.4); font-weight: 500; }

/* Hero Visual Layout (Perfect Match) */
.hero-visual {
  position: relative; display: flex; align-items: center; justify-content: center; gap: 16px;
}
.hero-card { position: relative; border-radius: var(--radius); }
.hero-card-before {
  width: 200px; padding: 12px; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 14px;
  opacity: 0.7; transform: scale(0.9) translateX(20px); z-index: 1;
}
.card-img-before { width: 100%; border-radius: 8px; }
.hero-tag-red {
  position: absolute; top: -10px; left: 16px; background: var(--red); color: white;
  padding: 4px 12px; border-radius: var(--radius-pill); font-size: 10px; font-weight: 800; z-index: 3;
}

.hero-arrow {
  width: 32px; height: 32px; color: rgba(255,255,255,0.9); z-index: 2; flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.4));
}
.hero-arrow svg { width: 100%; height: 100%; }

.before-card-stats { margin-top: 12px; text-align: center; }
.stars-bad { justify-content: center; font-size: 14px; gap: 6px; }
.stars-icons { letter-spacing: 2px; }
.star-active { color: #F59E0B; opacity: 0.8; }
.star-inactive { color: rgba(255,255,255,0.15); }
.stars-bad span:last-child { font-size: 10px; color: rgba(255,255,255,0.4); font-weight: 500; }

.hero-card-after {
  width: 280px; background: var(--white); color: var(--text-dark);
  border-radius: 20px; padding: 0; box-shadow: 0 20px 50px rgba(0,0,0,0.6); z-index: 3;
}
.hero-tag-green {
  position: absolute; top: -12px; left: 20px; background: var(--green); color: white;
  padding: 6px 14px; border-radius: var(--radius-pill); font-size: 11px; font-weight: 800; z-index: 4;
}
.after-card-inner {
  background: white; border-radius: 16px; padding: 0; overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2); position: relative;
}
.card-img-after {
  width: 100%; height: auto; max-height: 380px; object-fit: contain; background: var(--bg-gray);
  display: block; border-radius: 16px 16px 0 0;
}
.after-card-info { margin-top: 0; padding: 16px 20px 20px; }
.after-card-title { font-size: 16px; font-weight: 900; margin-bottom: 6px; letter-spacing: -0.01em; }
.badge-purple-outline {
  display: inline-block; font-size: 9px; font-weight: 800; color: var(--purple);
  background: var(--purple-bg); padding: 4px 8px; border-radius: 6px; margin-bottom: 12px;
}
.after-card-stats { display: flex; align-items: center; justify-content: flex-end; }
.stars { font-size: 14px; color: var(--yellow); display: flex; align-items: center; gap: 6px; }
.stars span { font-size: 11px; color: var(--text-muted); font-weight: 500; }

.hero-badge-guarantee {
  position: absolute; bottom: 85px; left: -35px;
  background: var(--purple); color: white; padding: 6px 12px; border-radius: 8px;
  font-size: 10px; font-weight: 700; text-align: center; line-height: 1.2;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4); z-index: 7;
}

.hero-badge-price {
  position: absolute; bottom: -10px; left: -85px;
  width: 120px; height: 120px; border-radius: 50%;
  background: linear-gradient(135deg, #FFDF00 0%, #FFAA00 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #222; box-shadow: 0 8px 32px rgba(255, 170, 0, 0.4), inset 0 2px 0 rgba(255,255,255,0.4); z-index: 6;
  transform: rotate(-8deg);
}
.badge-amount { font-size: 28px; font-weight: 900; line-height: 1; margin-bottom: -2px; }
.badge-label { font-size: 10px; font-weight: 700; line-height: 1.1; text-align: center; opacity: 0.85; }

/* ===== BENEFITS (WHITE) ===== */
.benefits { background: var(--white); text-align: center; border-bottom: 1px solid var(--border); }
.benefits h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; line-height: 1.25; max-width: 700px; margin: 0 auto 56px; letter-spacing: -0.01em; }
.benefits-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto; }
.benefit-item { text-align: center; }
.benefit-icon {
  width: 64px; height: 64px; border-radius: 20px; background: var(--purple-bg);
  color: var(--purple); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.benefit-icon svg { width: 32px; height: 32px; }
.benefit-item h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.benefit-item p { font-size: 13px; color: var(--text-body); line-height: 1.5; }

/* ===== INCLUDES (LIGHT) ===== */
.includes { background: var(--bg-light); text-align: center; border-bottom: 1px solid var(--border); }
.includes-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; max-width: 1200px; margin: 40px auto 0; }
.include-card:nth-child(1) { grid-column: 1 / span 2; }
.include-card:nth-child(2) { grid-column: 3 / span 2; }
.include-card:nth-child(3) { grid-column: 5 / span 2; }
.include-card:nth-child(4) { grid-column: 2 / span 2; }
.include-card:nth-child(5) { grid-column: 4 / span 2; }
.include-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; position: relative; text-align: left; transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}
.include-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.include-num {
  position: absolute; top: -14px; left: 16px; width: 28px; height: 28px; border-radius: 50%;
  background: var(--purple); color: white; font-size: 13px; font-weight: 800; display: grid; place-items: center; box-shadow: var(--shadow-purple);
}
.include-img-wrap { width: 100%; aspect-ratio: 1 / 1; height: auto; border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 16px; background: transparent; }
.include-img { width: 100%; height: 100%; object-fit: contain; }
.include-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.include-card p { font-size: 13px; color: var(--text-body); line-height: 1.5; }

/* ===== HOW IT WORKS (DARK) ===== */
.how-works { background: var(--bg-dark); color: white; }
.how-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.steps-grid { display: flex; align-items: flex-start; justify-content: center; gap: 0; margin-top: 48px; margin-bottom: 48px; }
.step-item { flex: 1; text-align: center; padding: 0 12px; max-width: 220px; }
.step-circle {
  width: 48px; height: 48px; border-radius: 50%; background: var(--purple);
  color: white; font-size: 18px; font-weight: 800; display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 12px; box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}
.step-icon { width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px; color: rgba(255,255,255,0.7); }
.step-icon svg { width: 32px; height: 32px; }
.step-item h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; line-height: 1.35; }
.step-item p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.5; }
.step-arrow { display: flex; align-items: center; justify-content: center; font-size: 24px; color: rgba(255,255,255,0.2); padding-top: 24px; flex-shrink: 0; }

.how-notice {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  background: transparent; border: 1px solid #C49A3D;
  border-radius: var(--radius-sm); padding: 20px 28px; max-width: 760px; margin: 0 auto;
}
.notice-icon { width: 32px; height: 32px; flex-shrink: 0; color: #C49A3D; display: inline-flex; align-items: center; justify-content: center; }
.notice-icon svg { width: 100%; height: 100%; }
.how-notice p { font-size: 14px; color: #C49A3D; text-align: left; line-height: 1.6; }

/* ===== PRICING (MATCHING THE SCREENSHOT EXACTLY) ===== */
.pricing { background: #F8FAFC; text-align: center; border-bottom: 1px solid var(--border); }
.pricing .section-eyebrow { color: #0F172A; letter-spacing: normal; font-size: 14px; font-weight: 800; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1040px; margin: 40px auto 0; }
.price-card {
  background: var(--white); border: 1px solid #E2E8F0; border-radius: var(--radius);
  padding: 36px 28px; text-align: left; display: flex; flex-direction: column; position: relative; transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* The featured gold card */
.price-card-featured { 
  background: #FFFBEB; border-color: #FDE047; box-shadow: 0 10px 30px rgba(251, 191, 36, 0.1); 
}
.price-card-featured:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(251, 191, 36, 0.15); }

/* The top right gold badge */
.price-popular {
  position: absolute; top: -14px; right: 28px; padding: 6px 16px; border-radius: 6px;
  background: #C49A3D; color: white; font-size: 12px; font-weight: 700;
  box-shadow: 0 4px 10px rgba(196, 154, 61, 0.3); z-index: 2;
}
.price-popular::after {
  content: ''; position: absolute; bottom: -4px; right: 8px; border-width: 4px; border-style: solid;
  border-color: #9C7A2E transparent transparent #9C7A2E; z-index: -1;
}

.price-icon {
  width: 48px; height: 48px; border-radius: 12px; background: #F3E8FF;
  color: var(--purple); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.price-icon svg { width: 24px; height: 24px; }
.price-icon-gold { background: #FEF3C7; color: #C49A3D; }

.price-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 12px; color: #0F172A; }
.price-desc { font-size: 14px; color: #475569; margin-bottom: 24px; line-height: 1.5; }
.price-card ul { margin-bottom: 24px; }
.price-card li { padding: 6px 0; font-size: 14px; color: #475569; display: flex; align-items: flex-start; gap: 10px; }
.price-card li::before { content: '✓'; color: var(--purple); font-weight: 800; font-size: 14px; }
.price-card-featured li::before { color: #C49A3D; }


/* ===== AUDIENCE (LIGHT) ===== */
.audience { background: var(--bg-light); text-align: center; border-bottom: 1px solid var(--border); }
.audience-grid { display: flex; justify-content: center; gap: 24px; max-width: 1200px; margin: 40px auto; flex-wrap: wrap; }
.audience-item { text-align: center; font-size: 15px; color: var(--text-body); line-height: 1.5; }
.audience-icon { width: 56px; height: 56px; border-radius: 16px; background: var(--purple-bg); color: var(--purple); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.audience-icon svg { width: 28px; height: 28px; }
.audience-note { max-width: 840px; margin: 0 auto; background: var(--purple-bg); border: 1px solid var(--border-purple); border-radius: var(--radius-sm); padding: 20px 28px; }
.audience-note p { font-size: 14px; color: var(--text-dark); line-height: 1.6; }

/* ===== SECURITY (DARK) ===== */
.security { background: var(--bg-dark); color: white; }
.security-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.security-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; margin-top: 40px; }
.security-item { text-align: center; }
.security-icon { width: 56px; height: 56px; border-radius: 16px; background: rgba(255,255,255,0.05); color: var(--purple); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px; border: 1px solid rgba(255,255,255,0.1); }
.security-icon svg { width: 28px; height: 28px; }
.security-item p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.5; }


/* ===== CTA (PURPLE) ===== */
.cta-section {
  background: linear-gradient(150deg, var(--purple-dark), var(--bg-dark-alt));
  color: white; text-align: center; border-top: 1px solid rgba(255,255,255,0.05);
}
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(26px, 3.5vw, 36px); font-weight: 800; margin-bottom: 16px; line-height: 1.25; }
.cta-inner > p { font-size: 16px; color: rgba(255,255,255,0.75); margin-bottom: 36px; line-height: 1.6; }
.cta-form { display: flex; gap: 12px; margin-bottom: 20px; }
.cta-form input {
  flex: 1; padding: 16px 20px; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.1); color: white; font-size: 16px; font-family: inherit; transition: border-color 0.2s, background 0.2s;
}
.cta-form input::placeholder { color: rgba(255,255,255,0.5); }
.cta-form input:focus { outline: none; border-color: var(--white); background: rgba(255,255,255,0.15); }
.cta-submit { white-space: nowrap; padding: 16px 32px; background: var(--purple); border: none; font-size: 16px; }
.cta-submit:hover { background: #9333EA; }
.cta-privacy { font-size: 12px; color: rgba(255,255,255,0.4); }

/* ===== FOOTER ===== */
.footer { background: var(--bg-dark); padding: 32px 48px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer-brand { display: flex; align-items: center; gap: 16px; text-align: left; }
.footer-slogan-wrap { display: flex; align-items: center; gap: 12px; }
.footer-divider { color: rgba(255,255,255,0.15); font-weight: 300; font-size: 14px; user-select: none; }
.footer-slogan { font-size: 12px; color: rgba(255,255,255,0.45); font-weight: 500; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.4); }

/* ===== REVIEWS (DARK) ===== */
.reviews { background: var(--bg-dark-alt); color: white; border-top: 1px solid rgba(255,255,255,0.05); }
.reviews-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.reviews-badge-wrap { margin-bottom: 16px; display: flex; justify-content: center; }
.reviews-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  font-size: 11px; font-weight: 700; color: #FFAA00; text-transform: uppercase; letter-spacing: 0.5px;
}
.reviews-badge-icon { width: 14px; height: 14px; color: #FFAA00; }
.reviews-subtitle { font-size: 16px; color: var(--text-muted); margin-top: 12px; margin-bottom: 40px; }
.reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.review-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}
.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 65, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
}
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.review-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 1.5px solid rgba(255,255,255,0.1); }
.review-user-info { display: flex; flex-direction: column; text-align: left; }
.review-user-info b { font-size: 15px; color: white; font-weight: 700; }
.review-user-info small { font-size: 12px; color: var(--text-muted); }
.review-stars { color: #FFAA00; font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.review-card p { font-size: 13.5px; color: rgba(255, 255, 255, 0.75); line-height: 1.55; margin-bottom: 20px; }
.review-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px; border-radius: 8px;
  background: rgba(139, 65, 255, 0.08); border: 1px solid rgba(139, 65, 255, 0.2);
  font-size: 11px; font-weight: 600; color: rgba(255, 255, 255, 0.9);
  margin-top: auto; align-self: flex-start;
}
.review-tag-check { color: #A855F7; font-weight: 800; font-size: 12px; }

/* Trust features below reviews */
.trust-features {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 64px; padding-top: 48px; border-top: 1px solid rgba(255,255,255,0.05);
}
.trust-feature-item { display: flex; align-items: flex-start; gap: 16px; text-align: left; }
.trust-feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(255,255,255,0.03);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.trust-feature-icon svg { width: 22px; height: 22px; }
.gold-border { border: 1.5px solid #FFAA00; color: #FFAA00; }
.purple-border { border: 1.5px solid #8B41FF; color: #8B41FF; }
.badge-num-icon { font-size: 15px; font-weight: 800; }
.trust-feature-text b { display: block; font-size: 14px; font-weight: 700; color: white; margin-bottom: 6px; }
.trust-feature-text p { font-size: 12px; color: var(--text-muted); line-height: 1.45; }

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1), transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children delays */
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: 0.5s; }
.reveal-stagger > .reveal:nth-child(7) { transition-delay: 0.6s; }
.reveal-stagger > .reveal:nth-child(8) { transition-delay: 0.7s; }
.reveal-stagger > .reveal:nth-child(9) { transition-delay: 0.8s; }
.reveal-stagger > .reveal:nth-child(10) { transition-delay: 0.9s; }

/* Slide from left variant */
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1), transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from right variant */
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1), transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale-up variant for badges and icons */
.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s var(--ease-spring);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Price badge pulse animation */
.hero-badge-price {
  animation: pricePulse 3s ease-in-out infinite;
}
@keyframes pricePulse {
  0%, 100% { transform: rotate(-8deg) scale(1); }
  50% { transform: rotate(-8deg) scale(1.06); }
}

/* Guarantee badge float */
.hero-badge-guarantee {
  animation: badgeFloat 4s ease-in-out infinite;
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Icon hover micro-interaction */
.benefit-icon, .audience-icon, .security-icon, .step-icon {
  transition: transform 0.3s var(--ease-spring);
}
.benefit-item:hover .benefit-icon,
.audience-item:hover .audience-icon {
  transform: scale(1.12) translateY(-2px);
}
.security-item:hover .security-icon {
  transform: scale(1.12) translateY(-2px);
}
.step-item:hover .step-icon {
  transform: scale(1.15);
}
.step-item:hover .step-circle {
  transform: scale(1.1);
  transition: transform 0.3s var(--ease-spring);
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-badge-price, .hero-badge-guarantee {
    animation: none;
  }
}

/* Prevent hover on elements that haven't revealed yet */
.reveal:not(.visible),
.reveal-left:not(.visible),
.reveal-right:not(.visible) {
  pointer-events: none;
}

/* Ensure hover effects override reveal transforms on revealed elements */
.include-card.reveal.visible:hover,
.price-card.reveal.visible:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.price-card-featured.reveal.visible:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(251, 191, 36, 0.15);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1150px) {
  section { padding: 80px 32px; }
  .header { padding: 0 32px; }
  .hero { padding: 120px 32px 80px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 60px; }
  .hero-desc { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  
  .benefits-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .includes-grid { grid-template-columns: repeat(3, 1fr); }
  .include-card:nth-child(n) { grid-column: auto; }
  .steps-grid { flex-wrap: wrap; gap: 24px; }
  .step-arrow { display: none; }
  .step-item { min-width: 200px; }
  .security-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }

  .nav { display: none; }
  .burger { display: block; }
  .nav.open {
    display: flex; flex-direction: column; position: fixed; top: var(--header-h); left: 0; right: 0;
    background: rgba(11, 8, 20, 0.98); backdrop-filter: blur(20px); padding: 24px 32px; gap: 16px; z-index: 99;
    border-bottom: 1px solid var(--border-light); box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  }
  .nav.open .nav-cta-mobile {
    display: inline-flex; align-items: center; justify-content: center; padding: 14px 24px; border-radius: var(--radius-sm);
    background: var(--purple); color: white; font-weight: 700; font-size: 15px; margin-top: 8px;
  }
  .header-cta { display: none; }
}

@media (max-width: 768px) {
  section { padding: 56px 16px; }
  .header { padding: 0 16px; height: 60px; }
  :root { --header-h: 60px; }
  .hero { padding: 90px 16px 48px; }
  
  .hero h1 { font-size: clamp(26px, 7vw, 36px); line-height: 1.2; }
  .hero-desc { font-size: 14px; line-height: 1.65; }
  .hero-tag { font-size: 10px; padding: 5px 12px; margin-bottom: 16px; }

  .hero-visual { flex-direction: row; gap: 8px; justify-content: center; align-items: center; }
  .hero-card-before { transform: scale(0.85) translateX(8px); width: 140px; min-width: 140px; padding: 8px; opacity: 0.75; }
  .card-img-before { border-radius: 6px; }
  .hero-tag-red { font-size: 9px; padding: 3px 8px; top: -8px; left: 10px; }
  .before-card-stats { margin-top: 8px; }
  .stars-bad { font-size: 12px; }
  .stars-bad span:last-child { font-size: 9px; }

  .hero-arrow { width: 24px; height: 24px; flex-shrink: 0; transform: none; }
  
  .hero-card-after { width: 200px; min-width: 200px; border-radius: 14px; }
  .hero-tag-green { font-size: 9px; padding: 4px 10px; top: -9px; left: 14px; }
  .after-card-inner { border-radius: 12px; }
  .card-img-after { border-radius: 12px 12px 0 0; max-height: 240px; }
  .after-card-info { padding: 10px 12px 14px; }
  .after-card-stats .stars { font-size: 12px; }
  .after-card-stats .stars span { font-size: 10px; }

  .hero-badge-price { width: 72px; height: 72px; bottom: -12px; left: auto; right: -12px; }
  .badge-amount { font-size: 20px; }
  .badge-label { font-size: 8px; }
  .hero-badge-guarantee { left: auto; bottom: auto; right: -6px; top: 32px; font-size: 9px; padding: 4px 8px; border-radius: 6px; }

  .hero-actions { flex-direction: column; align-items: center; gap: 10px; }
  .hero-actions .btn { width: 100%; max-width: 340px; padding: 14px 20px; font-size: 14px; }
  .hero-trust { justify-content: center; font-size: 12px; }

  /* Section eyebrows on mobile */
  .section-eyebrow { font-size: 11px; letter-spacing: 1.5px; margin-bottom: 14px; }

  /* Benefits mobile */
  .benefits h2 { font-size: clamp(20px, 5vw, 28px); margin-bottom: 36px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .benefit-icon { width: 52px; height: 52px; border-radius: 16px; margin-bottom: 14px; }
  .benefit-item h3 { font-size: 14px; }
  .benefit-item p { font-size: 12px; }

  /* Includes mobile */
  .includes-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 28px; }
  .include-card { padding: 14px; border-radius: 12px; }
  .include-card h3 { font-size: 14px; }
  .include-card p { font-size: 12px; }
  .include-num { width: 24px; height: 24px; font-size: 11px; top: -12px; }

  /* Steps mobile */
  .steps-grid { flex-direction: column; align-items: center; gap: 28px; margin-top: 32px; margin-bottom: 32px; }
  .step-item { max-width: 100%; padding: 0; }
  .step-circle { width: 40px; height: 40px; font-size: 16px; margin-bottom: 10px; }
  .step-icon { width: 40px; height: 40px; margin-bottom: 12px; }
  .step-item h3 { font-size: 14px; }
  .step-item p { font-size: 12px; }
  .how-notice { flex-direction: column; gap: 12px; padding: 16px 20px; text-align: center; }
  .how-notice p { text-align: center; font-size: 13px; }

  /* Pricing mobile */
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .price-card { padding: 28px 20px; border-radius: 14px; }
  .price-card-featured { transform: translateY(0); }
  .price-card-featured:hover { transform: translateY(-4px); }
  .price-card h3 { font-size: 16px; }
  .price-desc { font-size: 13px; }
  .price-card li { font-size: 13px; }
  .price-card .btn { width: 100%; padding: 14px 20px; font-size: 14px; }

  /* Audience mobile */
  .audience-grid { flex-direction: column; gap: 16px; }
  .audience-item { display: flex; align-items: center; gap: 14px; text-align: left; font-size: 14px; }
  .audience-icon { margin: 0; flex-shrink: 0; width: 48px; height: 48px; border-radius: 14px; }
  .audience-note { padding: 16px 20px; }
  .audience-note p { font-size: 13px; }

  /* Security mobile */
  .security-grid { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
  .security-item { display: flex; align-items: center; gap: 14px; text-align: left; }
  .security-icon { margin: 0; flex-shrink: 0; width: 48px; height: 48px; border-radius: 14px; }
  .security-item p { font-size: 14px; margin: 0; color: rgba(255,255,255,0.85); }

  /* Reviews mobile */
  .reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 28px; }
  .review-card { padding: 24px; border-radius: 12px; }
  .review-card p { font-size: 13px; margin-bottom: 16px; }
  .trust-features { grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; padding-top: 32px; }

  /* CTA mobile */
  .cta-inner h2 { font-size: clamp(22px, 5.5vw, 30px); }
  .cta-inner > p { font-size: 14px; margin-bottom: 28px; }
  .cta-form { flex-direction: column; gap: 10px; }
  .cta-form input { padding: 14px 16px; font-size: 15px; border-radius: 10px; }
  .cta-submit { padding: 14px 24px; font-size: 15px; border-radius: 10px; }
  .cta-privacy { font-size: 11px; }

  /* Footer mobile */
  .footer { padding: 24px 16px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  .logo-icon-img { height: 40px; }
  .logo-icon-img-sm { height: 32px; }
  .logo-brand-text { font-size: 18px; }
  .logo-subtitle { font-size: 9.5px; }
  .footer-brand { flex-direction: column; text-align: center; gap: 8px; }
  .footer-brand .logo { align-items: center; }
  .footer-slogan-wrap { flex-direction: column; gap: 4px; }
  .footer-divider { display: none; }
  .footer-slogan { font-size: 11px; margin-top: 2px; }
  .footer-copy { font-size: 12px; }
  .footer-contacts { flex-wrap: wrap; justify-content: center; gap: 14px; margin: 8px 0; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 24px; }
  .hero-desc { font-size: 13px; }
  
  /* Prevent hero overflow on small mobile screens */
  .hero-visual {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    gap: 6px;
  }
  .hero-card-before {
    width: 95px;
    min-width: 95px;
    padding: 6px;
    transform: scale(0.9) translateX(4px);
  }
  .hero-arrow {
    width: 16px;
    height: 16px;
  }
  .hero-card-after {
    width: 140px;
    min-width: 140px;
  }
  .after-card-info {
    padding: 8px 10px 10px;
  }
  .after-card-stats .stars {
    font-size: 10px;
    gap: 3px;
    justify-content: center;
  }
  .after-card-stats .stars span {
    font-size: 8.5px;
  }
  .hero-badge-price {
    width: 52px;
    height: 52px;
    right: -6px;
    bottom: -6px;
  }
  .badge-amount {
    font-size: 15px;
  }
  .badge-label {
    font-size: 6px;
    line-height: 1;
  }
  .hero-badge-guarantee {
    font-size: 7px;
    padding: 2px 5px;
    right: -4px;
    top: 24px;
    line-height: 1.1;
  }

  .benefits-grid, .security-grid { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: 1fr; }
  .reviews-grid, .trust-features { grid-template-columns: 1fr; }
  
  .audience-item { font-size: 13px; }
}

/* ===== PRICE VALUE STYLING ===== */
.price-value {
  font-size: clamp(28px, 4vw, 36px); font-weight: 900; margin-bottom: 12px;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.price-card-featured .price-value {
  background: linear-gradient(135deg, #FFDF00 0%, #FFAA00 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

/* ===== CONTACTS STYLING ===== */
.cta-direct-contacts {
  margin-top: 36px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  width: 100%; display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.cta-direct-label {
  font-size: 13px; color: rgba(255,255,255,0.4); font-weight: 500;
}
.cta-direct-links {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
}
.cta-direct-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 10px;
  font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s, border-color 0.2s, transform 0.2s var(--ease-spring);
}
.cta-direct-link:hover {
  background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.15);
  transform: translateY(-2px); color: var(--white);
}
.cta-direct-link:active {
  transform: translateY(0) scale(0.98);
}
.cta-direct-link .contact-icon {
  width: 16px; height: 16px; stroke: currentColor;
}
.tg-link:hover { border-color: rgba(139, 92, 246, 0.4); background: rgba(139, 92, 246, 0.05); }
.wa-link:hover { border-color: rgba(16, 185, 129, 0.4); background: rgba(16, 185, 129, 0.05); }
.max-link:hover { border-color: rgba(251, 191, 36, 0.4); background: rgba(251, 191, 36, 0.05); }
.phone-link:hover { border-color: rgba(255, 255, 255, 0.25); background: rgba(255,255,255,0.06); }

.footer-contacts { display: flex; align-items: center; gap: 20px; font-size: 13px; color: rgba(255,255,255,0.45); }
.footer-contact-item { transition: color 0.2s; display: flex; align-items: center; gap: 6px; }
.footer-contact-item:hover { color: var(--white); }
.footer-contact-item svg { stroke: currentColor; }

