/* ============================================
   UGC PRO — styles.css
   Vibe: Bright Dreamy Editorial — White, Beige, Lavender, Blush
   ============================================ */

/* ---- VARIABLES ---- */
:root {
  --bg-base: #fdf8f4;
  --bg-card: #fff7f9;
  --bg-card-2: #f3eeff;

  --pink:       #f472b6;
  --pink-light: #fce7f3;
  --pink-soft:  #fbcfe8;

  --lavender:      #a78bfa;
  --lavender-light: #ede9fe;
  --lavender-soft:  #ddd6fe;

  --peach:      #fb923c;
  --peach-light: #ffedd5;

  --lilac:      #c084fc;
  --mint:       #6ee7b7;
  --gold:       #f59e0b;

  --beige:      #f5ede3;
  --beige-dark: #e8d9ca;

  --grad-1: linear-gradient(135deg, #f472b6 0%, #a78bfa 50%, #818cf8 100%);
  --grad-2: linear-gradient(135deg, #fb923c 0%, #f472b6 100%);
  --grad-3: linear-gradient(135deg, #a78bfa 0%, #818cf8 100%);
  --grad-4: linear-gradient(135deg, #f472b6 0%, #c084fc 100%);
  --grad-hero: linear-gradient(160deg, #fce7f3 0%, #ede9fe 40%, #e0f2fe 100%);

  --text-primary:   #1e1132;
  --text-secondary: #5b4e6e;
  --text-muted:     #9d8cae;

  --border: rgba(167,139,250,0.2);
  --border-soft: rgba(244,114,182,0.15);

  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'Space Mono', monospace;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --shadow-soft: 0 8px 32px rgba(167,139,250,0.15);
  --shadow-pink: 0 8px 32px rgba(244,114,182,0.2);
  --shadow-card: 0 4px 24px rgba(30,17,50,0.07);

  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

a { text-decoration: none; color: inherit; }

/* ---- UTILITY ---- */
.accent {
  background: var(--grad-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section {
  position: relative;
  padding: 100px 6vw;
  overflow: hidden;
}

.section-tag,
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f472b6;
  -webkit-text-fill-color: #f472b6;
  font-weight: 700;
  position: relative;
  background: transparent;
  border: 3px solid transparent;
  box-sizing: border-box;
  padding: 10px 26px;
  border-radius: 100px;
  margin-bottom: 20px;
  line-height: 1;
}
.section-tag::before,
.hero-tag::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  padding: 3px;
  background: var(--grad-2);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hero-tag { margin-bottom: 28px; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  margin-bottom: 48px;
}

.section-title em {
  font-style: normal;
  background: var(--grad-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.03em;
  padding: 14px 32px;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad-1);
  color: #fff;
  box-shadow: 0 6px 30px rgba(167,139,250,0.4);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 40px rgba(244,114,182,0.45);
}


.btn-large {
  font-size: 18px;
  padding: 18px 48px;
  margin-top: 8px;
}

.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 6vw;
  background: rgba(253,248,244,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
}

.nav-logo {
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.nav-subtitle {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-cta {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--pink);
  letter-spacing: 0.05em;
  transition: var(--transition);
}

.nav-cta:hover { color: var(--lavender); }

@media (max-width: 600px) {
  .nav-links { display: none; }
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  padding-top: 140px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  background: var(--grad-hero);
}

.hero-bg-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: drift 10s ease-in-out infinite alternate;
}

.blob-1 {
  width: 500px; height: 500px;
  background: #fce7f3;
  top: -100px; left: -100px;
  animation-delay: 0s;
}

.blob-2 {
  width: 400px; height: 400px;
  background: #ede9fe;
  bottom: 0; right: 10%;
  animation-delay: 3s;
}

.blob-3 {
  width: 300px; height: 300px;
  background: #bfdbfe;
  top: 30%; right: 30%;
  animation-delay: 6s;
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 580px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 5.5vw, 88px);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}

.hero-title .line-1 { display: block; color: var(--text-primary); }
.hero-title .line-2 {
  display: block;
  background: var(--grad-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title .line-3 { display: inline-block; background: var(--grad-2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; padding-right: 0.1em; }

.hero-sub {
  font-size: 22px;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}

.stat { display: flex; flex-direction: column; }

.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  background: var(--grad-4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

.hero-image-wrap {
  position: relative;
  flex: 0 0 400px;
  height: 520px;
  z-index: 1;
}

.hero-image-glow {
  position: absolute;
  inset: -30px;
  background: var(--grad-1);
  border-radius: var(--radius-lg);
  filter: blur(40px);
  opacity: 0.18;
}

.hero-img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(244,114,182,0.2);
  box-shadow: var(--shadow-pink);
}

.hero-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--grad-2);
  color: #fff;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-align: center;
  animation: spin 12s linear infinite;
  box-shadow: 0 8px 24px rgba(244,114,182,0.4);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.badge-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: spin 12s linear infinite reverse;
}

/* ---- PROBLEM SECTION ---- */
.problem-section {
  background: #bbccde;
  padding-top: 72px;
  padding-bottom: 72px;
}

.problem-top {
  max-width: 1100px;
  margin: 0 auto 48px;
}

.problem-title {
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 1.1;
  white-space: nowrap;
  margin: 0 0 10px;
  color: var(--text-primary);
}

.gradient-text {
  background: var(--grad-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.problem-layout {
  display: flex;
  align-items: center;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
}

.problem-image-col {
  flex: 0 0 400px;
}

.problem-img-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
}

.problem-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  filter: grayscale(15%) brightness(0.92);
}

.problem-content-col {
  flex: 1;
}

.problem-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.problem-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-primary);
  line-height: 1.4;
}

.problem-icon {
  font-size: 24px;
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .problem-title { white-space: normal; }
  .problem-layout {
    flex-direction: column;
    gap: 36px;
  }
  .problem-image-col {
    flex: none;
    width: 100%;
  }
  .problem-img { height: 300px; object-position: center 35%; }
}


/* ---- INSIDE SECTION ---- */
.inside-section { background: #fff; }
.inside-header { margin-bottom: 48px; text-align: center; }

/* ---- PROGRAM CARDS GRID ---- */
.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.program-card {
  background: var(--bg-card);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.10);
}

.program-card-img {
  position: relative;
  height: 300px;
  overflow: hidden;
  flex-shrink: 0;
}

.program-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.program-day-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--grad-1);
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 5px 12px;
  border-radius: 100px;
}

.program-card-body {
  padding: 14px 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.program-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  line-height: 1.15;
  margin: 0 0 4px;
}

.program-card-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0 0 16px;
}

.program-more-btn {
  margin-top: auto;
  background: var(--bg-card-2);
  color: var(--text-secondary);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 6px 18px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.program-more-btn:hover {
  border-color: #f472b6;
  color: #f472b6;
}

/* ---- PROGRAM POPUP ---- */
.program-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.program-popup-overlay.active {
  display: flex;
}

.program-popup-box {
  background: #fff;
  border-radius: 24px;
  padding: 40px 44px;
  max-width: 520px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
}

.program-popup-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--text-secondary);
  line-height: 1;
  padding: 4px 8px;
  border-radius: 8px;
  transition: background 0.15s;
}

.program-popup-close:hover {
  background: var(--bg-card);
}

.popup-day-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f472b6;
  margin: 0 0 8px;
}

#program-popup-content h3 {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--text-primary);
  margin: 0 0 24px;
  line-height: 1.2;
}

#program-popup-content .day-topics {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#program-popup-content .day-topics li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.5;
}

#program-popup-content .day-topics li:first-child {
  border-top: 1px solid var(--border-soft);
}

#program-popup-content .topic-icon {
  font-size: 20px;
  flex-shrink: 0;
}

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

.inside-row {
  display: flex;
  align-items: center;
  gap: 64px;
}

.inside-row.reverse { flex-direction: row-reverse; }

.inside-img-wrap {
  position: relative;
  flex: 0 0 480px;
  height: 360px;
}

.inside-img-wrap img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.inside-num {
  position: absolute;
  top: -24px;
  left: -16px;
  font-family: var(--font-display);
  font-size: 100px;
  line-height: 1;
  background: var(--grad-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.18;
  pointer-events: none;
}

.inside-text { flex: 1; }

.inside-text h3 {
  font-family: var(--font-display);
  font-size: 44px;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 20px;
}

.inside-text p {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 24px;
  line-height: 1.75;
}

.inside-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inside-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 15px;
  color: var(--text-primary);
}

.inside-list li::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: var(--grad-4);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---- DAY BADGE & TOPIC PILLS ---- */
.day-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #000;
  background: var(--lavender-light);
  border: 1px solid var(--lavender-soft);
  border-radius: 6px;
  padding: 6px 14px;
  margin-bottom: 16px;
}

.day-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
  margin-top: -12px;
}

.day-intro {
  font-size: 13px;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.day-topics {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.day-topics li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.45;
}

.topic-icon {
  font-size: 18px;
  flex-shrink: 0;
}

/* ---- WHO SECTION ---- */
.who-section {
  background: var(--bg-card-2);
  text-align: left;
}

.who-section .section-title { margin-bottom: 56px; }

.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.who-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.who-card.featured {
  background: #fff;
  border-color: var(--pink);
  transform: translateY(-20px);
  box-shadow: 0 16px 60px rgba(244,114,182,0.2);
}

.who-card:hover:not(.featured) {
  border-color: var(--lavender);
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}

.who-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.who-card h4 {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.who-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: var(--bg-base); }

.results-slideshow {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-pink);
}

.slideshow-track {
  display: flex;
  transition: transform 0.5s ease;
}

.slideshow-slide {
  flex: 0 0 33.333%;
  width: 33.333%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background: var(--beige);
}

.slideshow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.75);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s;
}

.slideshow-btn:hover { background: #fff; }
.slideshow-prev { left: 14px; }
.slideshow-next { right: 14px; }


/* ---- BONUS SECTION ---- */
.bonus-section { background: var(--pink-light); }

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.bonus-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.bonus-card:hover {
  transform: translateY(-6px);
  border-color: var(--lavender);
  box-shadow: var(--shadow-soft);
}

.bonus-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.bonus-img-wrap img {
  border-radius: 0;
  transition: transform 0.5s ease;
}

.bonus-card:hover .bonus-img-wrap img { transform: scale(1.05); }

.bonus-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  background: var(--grad-2);
  color: #fff;
  padding: 4px 12px;
  border-radius: 100px;
  margin: 24px 24px 12px;
}

.bonus-card h4 {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.03em;
  padding: 0 24px;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.bonus-card p {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 0 24px;
  margin-bottom: 20px;
  line-height: 1.65;
}

.bonus-value {
  margin: 0 24px 28px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--pink);
  letter-spacing: 0.1em;
  font-weight: 700;
}

/* ---- CTA SECTION ---- */
.cta-section {
  background: var(--lavender-light);
  overflow: hidden;
}

.cta-blob-1 {
  position: absolute;
  width: 500px; height: 500px;
  background: var(--pink-soft);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.65;
  top: -150px; right: -100px;
}

.cta-blob-2 {
  position: absolute;
  width: 400px; height: 400px;
  background: var(--lavender-soft);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.65;
  bottom: -100px; left: -50px;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 80px;
  align-items: center;
}

.cta-text { flex: 1; }

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.cta-title em {
  font-style: normal;
  background: var(--grad-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-text > p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 32px;
}

.cta-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.cta-includes li {
  font-size: 16px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-price-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.cta-old-price {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--text-muted);
  text-decoration: line-through;
  letter-spacing: 0.05em;
}

.cta-price {
  font-family: var(--font-display);
  font-size: 64px;
  letter-spacing: 0.02em;
  background: var(--grad-4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.cta-save {
  background: var(--grad-2);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  padding: 6px 14px;
  border-radius: 100px;
}

.cta-guarantee {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

.cta-image {
  flex: 0 0 400px;
  height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(244,114,182,0.2);
  box-shadow: 0 20px 60px rgba(167,139,250,0.25);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1200px) {
  .hero { flex-direction: column; text-align: center; padding-top: 120px; }
  .hero-image-wrap { flex: 0 0 auto; width: 100%; max-width: 480px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .inside-row, .inside-row.reverse { flex-direction: column; }
  .inside-img-wrap { flex: 0 0 auto; width: 100%; height: 320px; }
  .cta-inner { flex-direction: column; }
  .cta-image { flex: 0 0 auto; width: 100%; max-width: 480px; height: 400px; }
}

@media (max-width: 900px) {
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .who-card.featured { transform: none; }
  .bonus-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .problem-grid { grid-template-columns: 1fr; }
  .bonus-grid { grid-template-columns: 1fr; }
  .section { padding: 72px 5vw; }
  .hero { padding-top: 110px; }
  .hero-content { padding-top: 24px; }
  .hero-title { font-size: clamp(44px, 11vw, 68px); }
  .inside-text h3 { font-size: 32px; }
}

/* ============================================
   NEW SECTIONS — Bulgarian Content
   ============================================ */

/* ---- PAIN POINTS — extras ---- */
.problem-intro {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 600px;
}

.problem-cta-wrap {
  margin-top: 52px;
  text-align: center;
}

.problem-statement {
  font-size: 22px;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.problem-body {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

/* ---- RESULTS ---- */
.results-section { background: #fff; }

.results-inner {
  display: flex;
  gap: 80px;
  align-items: center;
}

.results-image {
  flex: 0 0 440px;
  height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-pink);
}

.results-content { flex: 1; }

.results-lead {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.results-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.results-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.5;
}

.results-list li::before {
  content: '✅';
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---- HOW IT WORKS ---- */
.howto-section { background: var(--bg-card-2); }

.howto-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.howto-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.howto-card:hover {
  border-color: var(--lavender);
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.howto-icon {
  font-size: 42px;
  margin-bottom: 16px;
}

.howto-card h4 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.howto-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---- FOR WHOM ---- */
.forwhom-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 860px;
}

.forwhom-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1.5px solid var(--border-soft);
  box-shadow: var(--shadow-card);
}

.forwhom-yes { border-color: rgba(110, 231, 183, 0.5); }
.forwhom-no  { border-color: rgba(244, 114, 182, 0.3); }

.forwhom-card h4 {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.forwhom-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.forwhom-list li {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  padding-left: 4px;
}

/* ---- ABOUT ME ---- */
.about-section { background: var(--beige); }

.about-inner {
  display: flex;
  gap: 80px;
  align-items: center;
}

.about-image {
  flex: 0 0 440px;
  height: 540px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(244,114,182,0.2);
  box-shadow: var(--shadow-pink);
}

.about-content { flex: 1; }

.about-body {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-body strong { color: var(--text-primary); }
.about-body:last-child { margin-bottom: 0; }

/* ---- SOCIAL PROOF — stats row ---- */
.proof-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

/* ---- PRICING ---- */
.pricing-section {
  background: var(--lavender-light);
  overflow: hidden;
}

.pricing-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 0 auto 32px;
}

.pricing-card {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
  flex: 1;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-card.featured {
  border-color: var(--pink);
  box-shadow: 0 16px 60px rgba(244,114,182,0.2);
}

.pricing-card.featured .pricing-plan {
  background: var(--grad-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-badge {
  display: inline-block;
  background: var(--grad-2);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

/* ---- COUNTDOWN ---- */
.countdown-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 12px;
}

.countdown {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 20px;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 44px;
}

.countdown-num {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}

.countdown-lbl {
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.countdown-sep {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  color: var(--lavender);
  padding-top: 2px;
}

.pricing-plan {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 60px;
  letter-spacing: 0.02em;
  background: var(--grad-4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 16px;
}

.pricing-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.pricing-card .btn { width: 100%; margin-top: auto; }

.pricing-includes-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
  width: 100%;
  text-align: left;
}

.pricing-includes {
  list-style: none;
  width: 100%;
  text-align: left;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-includes li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.pricing-includes li::before {
  content: '•';
  color: var(--pink);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---- FAQ ---- */
.faq-section { background: var(--bg-card); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item[open] {
  border-color: var(--lavender);
  box-shadow: var(--shadow-soft);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  gap: 16px;
  user-select: none;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
  color: var(--lavender);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item[open] .faq-question::after {
  content: '−';
}

.faq-answer {
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
}

.faq-answer ul {
  margin-top: 12px;
  padding-left: 28px;
}

/* ---- RESPONSIVE — new sections ---- */
@media (max-width: 1200px) {
  .results-inner { flex-direction: column; }
  .results-image { flex: 0 0 auto; width: 100%; max-width: 480px; height: 400px; }

  .about-inner { flex-direction: column; }
  .about-image { flex: 0 0 auto; width: 100%; max-width: 480px; height: 400px; }

}

@media (max-width: 900px) {
  .howto-grid { grid-template-columns: 1fr 1fr; }
  .forwhom-wrap { grid-template-columns: 1fr; }
  .pricing-grid { flex-direction: column; align-items: center; }
  .pricing-card { max-width: 440px; width: 100%; }
}

@media (max-width: 600px) {
  .howto-grid { grid-template-columns: 1fr; }
  .faq-question { font-size: 15px; padding: 18px 20px; }
  .faq-answer { padding: 0 20px 20px; }
  .pricing-card { padding: 36px 28px; }
  .pricing-price { font-size: 48px; }
}
