/* ═══════════════════════════════════════════════════════════════
   МАГНИТ ЗА ЖЕНИ — Funnel Landing (v2 — red CTAs, alternating sections)
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* DARK */
  --bg-void:    #050208;
  --bg-black:   #0A0512;
  --bg-card:    #160B2E;

  /* LIGHT */
  --bg-light:   #F8F5FE;
  --bg-light-2: #EFE5FF;
  --bg-white-card: #FFFFFF;

  /* IMPERIAL PURPLE */
  --p-50:   #F4E8FF;
  --p-100:  #E9D5FF;
  --p-200:  #D8B4FE;
  --p-300:  #C084FC;
  --p-400:  #A855F7;
  --p-500:  #9333EA;
  --p-600:  #7C3AED;
  --p-700:  #6B21A8;
  --p-800:  #581C87;
  --p-900:  #3B0764;
  --imperial: #5B0E8C;
  --neon-violet: #B026FF;

  /* RED (CTA) */
  --red-bright: #FF1F3D;
  --red-mid:    #E11D48;
  --red-deep:   #B91C1C;
  --red-glow:   #FF3D5C;

  /* ACCENTS */
  --gold-300: #FCD34D;
  --gold-400: #F59E0B;

  /* TEXT (dark mode) */
  --t-primary:    #F5F3FF;
  --t-secondary:  #C4B5FD;
  --t-tertiary:   #8B7AB8;

  /* TEXT (light mode) */
  --t-dark-primary:   #1A0F36;
  --t-dark-secondary: #4A2D6B;
  --t-dark-tertiary:  #7A5A9C;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; background: var(--bg-void); }

body {
  margin: 0;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-void);
  color: var(--t-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATED AURORA BACKGROUND
   ═══════════════════════════════════════════════════════════════ */

.aurora-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: var(--bg-void);
  overflow: hidden;
  pointer-events: none;
}

.aurora-bg::before,
.aurora-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: aurora-drift 25s ease-in-out infinite;
}

.aurora-bg::before {
  width: 800px; height: 800px;
  background: radial-gradient(circle, var(--neon-violet) 0%, transparent 70%);
  top: -200px; left: -200px;
}

.aurora-bg::after {
  width: 900px; height: 900px;
  background: radial-gradient(circle, var(--p-600) 0%, transparent 70%);
  bottom: -300px; right: -200px;
  animation-delay: -12s;
}

.aurora-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  pointer-events: none;
}

.aurora-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--p-500) 0%, transparent 70%);
  top: 40%; left: 50%;
  transform: translateX(-50%);
  animation: aurora-pulse 15s ease-in-out infinite;
}

@keyframes aurora-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(100px, 50px) scale(1.1); }
  66% { transform: translate(-50px, 100px) scale(0.9); }
}

@keyframes aurora-pulse {
  0%, 100% { opacity: 0.35; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.6; transform: translateX(-50%) scale(1.2); }
}

/* ═══════════════════════════════════════════════════════════════
   PARTICLES
   ═══════════════════════════════════════════════════════════════ */

.particles {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  background: var(--p-300);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--p-400);
  opacity: 0;
  animation: twinkle 4s ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50% { opacity: 0.8; transform: scale(1); }
}

/* ═══════════════════════════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════════════════════════ */

h1, h2, h3, h4 {
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-wrap: balance;
}

h1 { font-size: clamp(34px, 5.5vw, 64px); font-weight: 900; }
h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; }
h3 { font-size: clamp(22px, 2.6vw, 32px); font-weight: 800; }
h4 { font-size: clamp(18px, 1.8vw, 22px); font-weight: 700; }

p { font-size: clamp(15px, 1.1vw, 17px); line-height: 1.75; color: var(--t-secondary); }

strong { color: var(--p-200); font-weight: 700; }

.gradient-text {
  background: linear-gradient(100deg,
    var(--p-200) 0%,
    var(--neon-violet) 25%,
    var(--p-300) 50%,
    var(--p-400) 75%,
    var(--p-200) 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  animation: gradient-flow 8s linear infinite;
  font-weight: 900;
}

.gradient-text-purple {
  background: linear-gradient(100deg,
    var(--p-200) 0%, var(--p-400) 35%, var(--neon-violet) 50%, var(--p-400) 65%, var(--p-200) 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  animation: gradient-flow 6s linear infinite;
  font-weight: 900;
}

.gradient-text-gold {
  background: linear-gradient(100deg, var(--gold-300), var(--gold-400), var(--gold-300));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  animation: gradient-flow 5s linear infinite;
  font-weight: 800;
}

@keyframes gradient-flow {
  to { background-position: 220% center; }
}

/* PURPLE MARKER HIGHLIGHT (#3 — за warning text) */
.marker-purple {
  background: linear-gradient(180deg,
    transparent 50%,
    rgba(176, 38, 255, 0.45) 50%,
    rgba(176, 38, 255, 0.45) 92%,
    transparent 92%);
  padding: 0 4px;
  display: inline;
  font-weight: 700;
  color: var(--t-primary);
}

/* PURPLE UNDERLINE — wavy/decorative */
.under-purple {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.under-purple::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--neon-violet), var(--p-400), var(--neon-violet), transparent);
  border-radius: 2px;
  filter: drop-shadow(0 0 8px rgba(176, 38, 255, 0.6));
}

/* ═══════════════════════════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════════════════════════ */

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.container-prose { max-width: 760px; margin: 0 auto; padding: 0 24px; }

.section { padding: 80px 0; position: relative; }
@media (max-width: 768px) { .section { padding: 56px 0; } }

/* ALTERNATING SECTIONS — light/dark */
.section-light {
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-light-2) 100%);
  color: var(--t-dark-primary);
  position: relative;
  z-index: 1;
}

.section-light h2, .section-light h3, .section-light h4 { color: var(--t-dark-primary); }
.section-light p { color: var(--t-dark-secondary); }
.section-light p strong { color: var(--imperial); }

/* In light sections, secret/bonus cards become white */
.section-light .secret-card,
.section-light .bonus-card {
  background: var(--bg-white-card);
  border: 1px solid rgba(91, 14, 140, 0.18);
  color: var(--t-dark-primary);
  box-shadow: 0 10px 30px rgba(91, 14, 140, 0.08);
}

.section-light .secret-card:hover,
.section-light .bonus-card:hover {
  border-color: var(--p-400);
  box-shadow: 0 24px 60px rgba(124, 58, 237, 0.18), 0 0 30px rgba(176, 38, 255, 0.12);
}

.section-light .secret-title,
.section-light .bonus-title { color: var(--t-dark-primary); }
.section-light .secret-subtitle,
.section-light .bonus-desc { color: var(--t-dark-secondary); }
.section-light .bonus-tag { color: var(--imperial); }
.section-light .eyebrow {
  color: var(--imperial);
  background: rgba(124, 58, 237, 0.1);
  border-color: rgba(124, 58, 237, 0.3);
}
.section-light .gradient-text-purple {
  background: linear-gradient(100deg, var(--p-600) 0%, var(--neon-violet) 50%, var(--imperial) 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ═══════════════════════════════════════════════════════════════
   TOP BAR (no countdown anymore)
   ═══════════════════════════════════════════════════════════════ */

.top-bar {
  position: relative;
  background: linear-gradient(90deg, transparent, var(--p-900), transparent);
  border-bottom: 1px solid rgba(168, 85, 247, 0.2);
  text-align: center;
  padding: 14px 16px;
  font-size: 16px;
  color: var(--gold-300);
  font-weight: 700;
  z-index: 50;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  letter-spacing: 0.01em;
}

.top-bar strong {
  color: var(--gold-300);
  font-weight: 800;
}

@media (max-width: 640px) {
  .top-bar { font-size: 13px; padding: 11px 12px; }
}

/* ═══════════════════════════════════════════════════════════════
   NOTICE PILL (no pulse animation anymore)
   ═══════════════════════════════════════════════════════════════ */

.notice-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(176, 38, 255, 0.15), rgba(124, 58, 237, 0.08));
  border: 1px solid rgba(168, 85, 247, 0.4);
  border-radius: 100px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--p-100);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 0 30px rgba(176, 38, 255, 0.2), inset 0 0 20px rgba(176, 38, 255, 0.05);
}

/* ═══════════════════════════════════════════════════════════════
   EYEBROW
   ═══════════════════════════════════════════════════════════════ */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(176, 38, 255, 0.05));
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--p-300);
  margin-bottom: 24px;
}

.eyebrow::before, .eyebrow::after {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--neon-violet);
  box-shadow: 0 0 10px var(--neon-violet);
}

/* ═══════════════════════════════════════════════════════════════
   RED CTA BUTTON (всички бутони — bright red, smooth gradient)
   ═══════════════════════════════════════════════════════════════ */

.cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 28px 56px;
  min-width: 460px;
  max-width: 100%;
  font-family: inherit;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: white;
  /* SMOOTH RED GRADIENT */
  background: linear-gradient(135deg, #DC2626 0%, #EF4444 50%, #DC2626 100%);
  border: none;
  border-radius: 16px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 14px 50px rgba(239, 68, 68, 0.55),
    0 6px 16px rgba(0, 0, 0, 0.35),
    inset 0 2px 0 rgba(255, 255, 255, 0.3),
    inset 0 -3px 0 rgba(0, 0, 0, 0.25);
  animation: cta-red-pulse 2.4s ease-in-out infinite;
  touch-action: manipulation;
  user-select: none;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.cta-btn:hover {
  transform: translateY(-4px) scale(1.02);
  background: linear-gradient(135deg, #EF4444 0%, #FF1F3D 50%, #EF4444 100%);
  box-shadow:
    0 24px 70px rgba(255, 31, 61, 0.65),
    0 8px 20px rgba(0, 0, 0, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.35);
}

@media (max-width: 640px) {
  .cta-btn {
    padding: 22px 32px;
    font-size: 16px;
    min-width: 0;
    width: 100%;
  }
}

.cta-btn:active {
  transform: translateY(0) scale(0.98);
}

@keyframes cta-red-pulse {
  0%, 100% { box-shadow:
    0 12px 40px rgba(239, 68, 68, 0.5),
    0 4px 12px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -2px 0 rgba(0, 0, 0, 0.2),
    0 0 0 0 rgba(239, 68, 68, 0.55); }
  50% { box-shadow:
    0 14px 50px rgba(255, 31, 61, 0.65),
    0 4px 12px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -2px 0 rgba(0, 0, 0, 0.2),
    0 0 0 14px rgba(239, 68, 68, 0); }
}

.cta-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 1.4em;
}

.cta-btn:hover .cta-arrow { transform: translateX(6px); }

.cta-block {
  text-align: center;
  margin: 40px auto;
  max-width: 720px;
}

.cta-block-meta {
  margin-top: 18px;
  font-size: 14px;
  color: var(--t-tertiary);
  font-weight: 600;
}

.cta-block-date {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(168, 85, 247, 0.08);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 100px;
  font-size: 14px;
  color: var(--p-200);
  font-weight: 600;
}

.section-light .cta-block-date {
  background: rgba(124, 58, 237, 0.08);
  color: var(--imperial);
  border-color: rgba(124, 58, 237, 0.3);
}

/* TV BADGES — "Излъчван по NOVA, Здравей България" */
.tv-badges {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(168, 85, 247, 0.22);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  flex-wrap: wrap;
  justify-content: center;
}

.tv-badges-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--p-200);
  white-space: nowrap;
}

.section-light .tv-badges {
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(124, 58, 237, 0.25);
}

.section-light .tv-badges-label { color: var(--imperial); }

.tv-badge-img {
  display: block;
  width: auto;
  filter: brightness(1.05);
}

.tv-badge-img.nova { height: 32px; }
.tv-badge-img.zdravey { height: 24px; }

@media (max-width: 640px) {
  .tv-badges {
    flex-direction: column;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 18px;
  }
  .tv-badges-label { font-size: 11px; }
  .tv-badge-img.nova { height: 26px; }
  .tv-badge-img.zdravey { height: 20px; }
}

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  padding: 60px 0 60px;
  text-align: center;
  overflow: hidden;
  z-index: 2;
}

.hero-inner { position: relative; z-index: 2; }

@media (max-width: 768px) {
  .hero { padding: 40px 0 40px; }
}

/* Warning text — по-видим */
.hero-warning {
  margin: 32px auto 0;
  max-width: 820px;
  text-align: center;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.75;
  font-weight: 500;
}

.hero-warning span {
  background: linear-gradient(180deg,
    transparent 50%,
    rgba(176, 38, 255, 0.55) 50%,
    rgba(176, 38, 255, 0.55) 92%,
    transparent 92%);
  padding: 4px 10px;
  font-weight: 700;
  color: #FFFFFF;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* Hero — ONE UNIFIED H1 (всички линии са с един и същ размер) */
.hero-title-wrap {
  margin: 40px auto 36px;
  max-width: 1100px;
}

.hero-title-wrap h1 {
  font-size: clamp(30px, 4.6vw, 56px);
  line-height: 1.18;
  margin: 0;
  font-weight: 900;
}

.hero-title-wrap h1 strong {
  background: linear-gradient(180deg,
    transparent 55%,
    rgba(176, 38, 255, 0.45) 55%,
    rgba(176, 38, 255, 0.45) 92%,
    transparent 92%);
  padding: 0 6px;
  color: var(--t-primary);
}

.hero-exclusions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 36px auto 36px;
  max-width: 1100px;
}

.exclusion-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: rgba(176, 38, 255, 0.1);
  border: 1px solid rgba(176, 38, 255, 0.3);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  color: var(--p-100);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.exclusion-chip:hover {
  background: rgba(176, 38, 255, 0.18);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(176, 38, 255, 0.25);
}

.exclusion-chip .x {
  color: var(--red-bright);
  font-weight: 900;
  font-size: 16px;
}

@media (max-width: 640px) {
  .exclusion-chip { font-size: 13px; padding: 10px 16px; }
}

/* ═══════════════════════════════════════════════════════════════
   SECRET CARDS — ONE flowing text (no split title/subtitle)
   ═══════════════════════════════════════════════════════════════ */

.secret-cards {
  display: grid;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.secret-card {
  position: relative;
  background: linear-gradient(135deg, rgba(91, 14, 140, 0.18), rgba(15, 8, 32, 0.6));
  border: 1px solid rgba(168, 85, 247, 0.22);
  border-radius: 20px;
  padding: 32px 36px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.secret-card:hover {
  transform: translateY(-4px);
  border-color: rgba(176, 38, 255, 0.55);
  box-shadow: 0 24px 60px rgba(91, 14, 140, 0.35), 0 0 40px rgba(176, 38, 255, 0.18);
}

.secret-number {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--neon-violet), var(--p-600));
  border-radius: 100px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 18px;
  box-shadow: 0 4px 20px rgba(176, 38, 255, 0.4);
}

/* Secret card — ONE FLOWING TEXT */
.secret-body {
  font-size: clamp(18px, 1.7vw, 21px);
  font-weight: 800;
  color: var(--t-primary);
  line-height: 1.45;
  margin: 0;
}

.section-light .secret-body { color: var(--t-dark-primary); }

/* Parenthetical — четим, нормален weight */
.secret-body .secret-note {
  display: inline;
  font-size: 0.92em;
  font-weight: 500;
  font-style: normal;
  color: var(--p-200);
}

.section-light .secret-body .secret-note {
  color: var(--p-600);
}

@media (max-width: 640px) {
  .secret-card { padding: 26px 22px; border-radius: 20px; }
}

/* ═══════════════════════════════════════════════════════════════
   BONUS CARDS (fixed spacing — tag close to title)
   ═══════════════════════════════════════════════════════════════ */

.bonus-value-pill {
  display: inline-block;
  margin: 0 auto 24px;
  padding: 14px 32px;
  background: linear-gradient(135deg, rgba(252, 211, 77, 0.12), rgba(245, 158, 11, 0.06));
  border: 1px solid rgba(252, 211, 77, 0.4);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-300);
  text-shadow: 0 0 20px rgba(252, 211, 77, 0.4);
}

.section-light .bonus-value-pill {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(252, 211, 77, 0.1));
  color: var(--gold-400);
  border-color: rgba(245, 158, 11, 0.5);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .bonus-grid { grid-template-columns: 1fr; }
}

.bonus-card {
  position: relative;
  background: linear-gradient(180deg, rgba(91, 14, 140, 0.18) 0%, rgba(15, 8, 32, 0.6) 100%);
  border: 1px solid rgba(168, 85, 247, 0.32);
  border-radius: 18px;
  padding: 36px 38px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow:
    0 0 0 1px rgba(176, 38, 255, 0.05),
    0 6px 24px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.bonus-card:hover {
  transform: translateY(-5px);
  border-color: rgba(176, 38, 255, 0.6);
  box-shadow:
    0 0 0 1px rgba(176, 38, 255, 0.2),
    0 24px 60px rgba(91, 14, 140, 0.4),
    0 0 50px rgba(176, 38, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.bonus-content { min-width: 0; }

@media (max-width: 640px) {
  .bonus-card { padding: 28px 24px; min-height: auto; }
}

/* Bonus header — tag + value pill */
.bonus-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin: 0 0 28px;
  flex-wrap: wrap;
}

/* Tag — outlined pill */
.bonus-tag {
  display: inline-flex;
  align-items: center;
  padding: 11px 24px;
  background: transparent;
  border: 1.5px solid rgba(176, 38, 255, 0.55);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--p-200);
  line-height: 1;
  box-shadow: 0 0 14px rgba(176, 38, 255, 0.15);
}

.section-light .bonus-tag {
  border-color: rgba(124, 58, 237, 0.55);
  color: var(--imperial);
}

/* Value pill — solid neon glow */
.bonus-value-tag {
  display: inline-flex;
  align-items: center;
  padding: 11px 24px;
  background: linear-gradient(135deg, var(--neon-violet) 0%, var(--p-500) 100%);
  border: 1px solid rgba(176, 38, 255, 0.65);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FFFFFF;
  line-height: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  box-shadow:
    0 0 24px rgba(176, 38, 255, 0.55),
    0 4px 14px rgba(124, 58, 237, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

@media (max-width: 480px) {
  .bonus-tag, .bonus-value-tag { font-size: 11px; padding: 9px 18px; letter-spacing: 0.12em; }
}

.bonus-title {
  font-size: clamp(20px, 1.7vw, 25px);
  font-weight: 800;
  line-height: 1.32;
  margin: 0 0 16px;
  color: #FFFFFF;
}

.bonus-title em,
.bonus-title strong {
  color: var(--p-300);
  font-style: normal;
  font-weight: 800;
}

.section-light .bonus-title { color: var(--imperial); }
.section-light .bonus-title em,
.section-light .bonus-title strong { color: var(--p-600); }

.bonus-desc {
  font-size: 15px;
  color: var(--t-tertiary);
  line-height: 1.7;
  margin: 0;
}

.section-light .bonus-desc { color: var(--t-dark-secondary); }

.bonus-desc {
  font-size: 14px;
  color: var(--t-tertiary);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 640px) {
  .bonus-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px;
  }
  .bonus-icon { width: 48px; height: 48px; font-size: 24px; }
}

/* ═══════════════════════════════════════════════════════════════
   VIDEO TESTIMONIAL CARDS
   ═══════════════════════════════════════════════════════════════ */

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.video-card {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  background: var(--bg-card);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  text-decoration: none;
  cursor: pointer;
}

.video-card:hover {
  border-color: rgba(176, 38, 255, 0.6);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(176, 38, 255, 0.25);
}

.video-card:hover .video-play-btn {
  background: linear-gradient(135deg, #FF0000, #DC2626);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-card iframe { width: 100%; height: 100%; border: 0; display: block; }

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.9);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  background: rgba(33, 33, 33, 0.85);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.video-play-btn svg {
  width: 28px;
  height: 28px;
  margin-left: 2px;
}

@media (max-width: 900px) {
  .video-grid { grid-template-columns: 1fr; }
}

/* SHORTS — vertical YouTube shorts (9:16) */
.video-grid-shorts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}

.video-card-short {
  position: relative;
  display: block;
  aspect-ratio: 9 / 16;
  background: var(--bg-card);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  text-decoration: none;
  cursor: pointer;
}

.video-card-short:hover {
  border-color: rgba(176, 38, 255, 0.6);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(176, 38, 255, 0.25);
}

.video-card-short:hover .video-play-btn {
  background: linear-gradient(135deg, #FF0000, #DC2626);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-card-short iframe { width: 100%; height: 100%; border: 0; display: block; }

.video-card-short img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.9);
}

@media (max-width: 640px) {
  .video-grid-shorts { grid-template-columns: 1fr; max-width: 400px; }
}

/* ═══════════════════════════════════════════════════════════════
   STORY SECTION (Stefan's journey — formatted, easy to read)
   ═══════════════════════════════════════════════════════════════ */

.story-block {
  margin: 32px auto;
  padding: 0 4px;
}

.story-block p {
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.85;
  color: var(--t-secondary);
  margin-bottom: 18px;
}

.story-block p strong { color: var(--p-200); }

.section-light .story-block p { color: var(--t-dark-secondary); }
.section-light .story-block p strong { color: var(--imperial); }

/* Story SUBHEAD — LEFT aligned, curly underline */
.story-subhead {
  margin: 48px 0 24px;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 900;
  line-height: 1.25;
  color: var(--t-primary);
  position: relative;
  display: inline-block;
  text-align: left;
}

.section-light .story-subhead { color: var(--t-dark-primary); }

.story-subhead::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 8' preserveAspectRatio='none'%3E%3Cpath d='M0,4 Q25,0 50,4 T100,4 T150,4 T200,4' stroke='%23B026FF' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 8px;
  filter: drop-shadow(0 0 6px rgba(176, 38, 255, 0.5));
}

/* Story "tried" bullet list — clean, with purple ✕ */
.story-list {
  margin: 24px auto 32px;
  padding: 0;
  list-style: none;
}

.story-list li {
  position: relative;
  padding: 12px 0 12px 36px;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.6;
  color: var(--t-secondary);
  border-bottom: 1px dashed rgba(168, 85, 247, 0.15);
}

.section-light .story-list li {
  color: var(--t-dark-secondary);
  border-bottom-color: rgba(124, 58, 237, 0.2);
}

.story-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 12px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(176, 38, 255, 0.15);
  border: 1px solid var(--p-400);
  color: var(--p-300);
  font-weight: 900;
  font-size: 12px;
}

.section-light .story-list li::before {
  background: rgba(124, 58, 237, 0.1);
  color: var(--imperial);
}

.story-callout {
  margin: 40px auto;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(176, 38, 255, 0.1), rgba(91, 14, 140, 0.2));
  border-left: 4px solid var(--neon-violet);
  border-radius: 0 16px 16px 0;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 700;
  font-style: italic;
  color: var(--p-100);
  line-height: 1.5;
  box-shadow: 0 10px 30px rgba(91, 14, 140, 0.3);
}

.section-light .story-callout {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(176, 38, 255, 0.05));
  color: var(--imperial);
}

/* Story divider — централна светеща точка + horizontal lines */
.story-divider {
  position: relative;
  display: block;
  margin: 36px auto;
  width: 100%;
  max-width: 280px;
  height: 24px;
}

.story-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-violet), transparent);
  transform: translateY(-50%);
}

.story-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-violet);
  box-shadow: 0 0 12px var(--neon-violet), 0 0 24px rgba(176, 38, 255, 0.6);
}

.story-divider span { display: none; }

.story-image-frame {
  position: relative;
  margin: 40px auto;
  max-width: 600px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(168, 85, 247, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 50px rgba(176, 38, 255, 0.2);
}

.story-image-frame img { display: block; width: 100%; height: auto; }

.story-image-frame .img-caption {
  background: rgba(91, 14, 140, 0.7);
  color: var(--p-100);
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.story-images-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 40px auto;
  max-width: 700px;
}

.story-image-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(168, 85, 247, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(176, 38, 255, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.story-image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.55), 0 0 50px rgba(176, 38, 255, 0.3);
}

.story-image-card img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

@media (max-width: 640px) {
  .story-images-row { grid-template-columns: 1fr; }
}

/* Pull quote — LEFT aligned, със curly underline отдолу */
.story-pull-quote {
  margin: 36px 0;
  text-align: left;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 900;
  line-height: 1.3;
  color: var(--t-primary);
  padding: 0 0 12px;
  position: relative;
  display: inline-block;
}

.story-pull-quote::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 8' preserveAspectRatio='none'%3E%3Cpath d='M0,4 Q25,0 50,4 T100,4 T150,4 T200,4' stroke='%23B026FF' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 8px;
  filter: drop-shadow(0 0 8px rgba(176, 38, 255, 0.6));
}

.section-light .story-pull-quote { color: var(--t-dark-primary); }

/* Marker highlight — лилав маркер върху текста */
.marker {
  background: linear-gradient(180deg,
    transparent 55%,
    rgba(176, 38, 255, 0.45) 55%,
    rgba(176, 38, 255, 0.45) 95%,
    transparent 95%);
  padding: 0 6px;
  color: var(--t-primary);
  font-weight: 700;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.section-light .marker { color: var(--t-dark-primary); }

/* Curly underline — ръчно нарисувана линия */
.curly {
  position: relative;
  display: inline;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 8' preserveAspectRatio='none'%3E%3Cpath d='M0,4 Q25,0 50,4 T100,4 T150,4 T200,4' stroke='%23B026FF' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 6px;
  background-position: 0 100%;
  padding-bottom: 8px;
  font-weight: 700;
  color: var(--p-100);
}

.section-light .curly { color: var(--imperial); }

/* Gradient text inline */
.grad-inline {
  background: linear-gradient(135deg, var(--p-200), var(--neon-violet), var(--p-300));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.section-light .grad-inline {
  background: linear-gradient(135deg, var(--p-600), var(--neon-violet), var(--imperial));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Quote block — rounded box with " marks */
.story-quote-block {
  position: relative;
  margin: 36px 0;
  padding: 28px 36px 28px 60px;
  background: linear-gradient(135deg, rgba(176, 38, 255, 0.07), rgba(91, 14, 140, 0.12));
  border: 1px solid rgba(176, 38, 255, 0.3);
  border-radius: 18px;
  font-style: italic;
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 600;
  color: var(--p-100);
  line-height: 1.5;
}

.story-quote-block::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 22px;
  font-size: 84px;
  font-style: normal;
  line-height: 1;
  color: var(--neon-violet);
  font-family: Georgia, serif;
  text-shadow: 0 0 20px rgba(176, 38, 255, 0.6);
}

/* Stefan portrait — SQUARE с rounded corners (не кръг, не върти) */
.stefan-intro {
  text-align: center;
  margin: 0 auto 56px;
  max-width: 360px;
}

.stefan-intro-img {
  position: relative;
  display: inline-block;
  padding: 5px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--neon-violet), var(--p-500), var(--imperial), var(--neon-violet));
  background-size: 200% 200%;
  animation: gradient-flow 8s linear infinite;
  transform: rotate(-2deg);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(176, 38, 255, 0.35);
}

.stefan-intro-img::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--neon-violet), var(--imperial));
  filter: blur(40px);
  opacity: 0.4;
  z-index: -1;
}

.stefan-intro-img img {
  display: block;
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 18px;
}

@media (max-width: 480px) {
  .stefan-intro-img img { width: 240px; height: 240px; }
}

.stefan-intro-name {
  margin-top: 20px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--p-100);
}

.section-light .stefan-intro-name { color: var(--t-dark-primary); }

.stefan-intro-role {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--t-tertiary);
}

.section-light .stefan-intro-role { color: var(--t-dark-tertiary); }

/* ═══════════════════════════════════════════════════════════════
   GROUP PHOTO MOMENT
   ═══════════════════════════════════════════════════════════════ */

.group-moment {
  text-align: center;
  padding: 80px 0;
  position: relative;
}

.group-moment-badge {
  display: inline-block;
  margin-bottom: 24px;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--p-600), var(--neon-violet));
  border-radius: 100px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: white;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.5);
}

.group-moment h2 {
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 16px;
}

.group-moment-image {
  margin: 48px auto 0;
  max-width: 900px;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid rgba(168, 85, 247, 0.4);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 80px rgba(176, 38, 255, 0.3);
}

.group-moment-image img { display: block; width: 100%; height: auto; }

/* ═══════════════════════════════════════════════════════════════
   TEXT TESTIMONIAL GRID
   ═══════════════════════════════════════════════════════════════ */

.text-testimonials {
  columns: 3;
  column-gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.testimonial-card {
  break-inside: avoid;
  background: linear-gradient(135deg, rgba(91, 14, 140, 0.1), rgba(15, 8, 32, 0.5));
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 16px;
  margin-bottom: 24px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.section-light .testimonial-card {
  background: white;
  border: 1px solid rgba(124, 58, 237, 0.2);
  box-shadow: 0 10px 30px rgba(91, 14, 140, 0.08);
}

.testimonial-card:hover {
  border-color: rgba(176, 38, 255, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(91, 14, 140, 0.3);
}

.testimonial-card img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 1100px) { .text-testimonials { columns: 2; } }
@media (max-width: 640px)  { .text-testimonials { columns: 1; } }

/* ═══════════════════════════════════════════════════════════════
   STAR RATING
   ═══════════════════════════════════════════════════════════════ */

.stars {
  display: inline-flex;
  gap: 4px;
  color: var(--gold-300);
  font-size: 18px;
  filter: drop-shadow(0 0 8px rgba(252, 211, 77, 0.5));
}

/* ═══════════════════════════════════════════════════════════════
   SECTION TITLE
   ═══════════════════════════════════════════════════════════════ */

.section-title-wrap {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 56px;
}

.section-title-wrap h2 { margin-bottom: 18px; line-height: 1.2; }

.section-title-wrap p {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--t-tertiary);
  max-width: 720px;
  margin: 14px auto 0;
  line-height: 1.65;
}

.section-light .section-title-wrap p { color: var(--t-dark-tertiary); }

/* ═══════════════════════════════════════════════════════════════
   FINAL CTA SECTION
   ═══════════════════════════════════════════════════════════════ */

.final-cta {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(176, 38, 255, 0.2), transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(124, 58, 237, 0.2), transparent 50%);
  z-index: 0;
}

.final-cta-inner { position: relative; z-index: 2; }

.final-cta h2 {
  font-size: clamp(34px, 5vw, 56px);
  margin-bottom: 24px;
  text-shadow: 0 0 40px rgba(176, 38, 255, 0.4);
}

.final-cta p {
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--t-secondary);
  max-width: 680px;
  margin: 0 auto 40px;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */

.footer {
  padding: 50px 0 40px;
  text-align: center;
  border-top: 1px solid rgba(168, 85, 247, 0.15);
  font-size: 13px;
  color: var(--t-tertiary);
}

.footer-brand {
  font-size: 16px;
  font-weight: 800;
  color: var(--p-300);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════════════════
   REVEAL
   ═══════════════════════════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.in-view { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.float-anim { animation: float 6s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ═══════════════════════════════════════════════════════════════
   UTILITY
   ═══════════════════════════════════════════════════════════════ */

.text-center { text-align: center; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mt-12 { margin-top: 48px; }
