:root {
  --purple:      #5B4FCF;
  --purple-dark: #3D35A0;
  --purple-deep: #2B236E;
  --yellow:      #F5A623;
  --yellow-pale: #FFF5E0;
  --green:       #1E6B4A;
  --green-mid:   #2D8B62;
  --white:       #FFFFFF;
  --off-white:   #F4F2FF;
  --gray:        #6B6B8A;
  --border:      #DDD9F5;
  --ink:         #1C1A3A;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--purple);
  color: var(--white);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  position: relative;
}

/* Background texture dots */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none; z-index: 0;
}
body::after {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(245,166,35,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 100%, rgba(30,107,74,0.2) 0%, transparent 55%);
  pointer-events: none; z-index: 0;
}

/* ===== HERO ===== */
.hero {
  position: relative; z-index: 1;
  padding: 48px 24px 52px;
  max-width: 680px;
  animation: fadeUp .85s cubic-bezier(.22,1,.36,1) both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 13px; font-weight: 800;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 7px 20px; border-radius: 100px;
  margin-bottom: 32px;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--yellow); border-radius: 50%;
  animation: blink 1.6s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .3; }
}

h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(26px, 5.5vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 36px;
  color: #fff;
}
h1 .yellow { color: var(--yellow); }

.cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--yellow);
  color: var(--ink);
  font-family: 'Nunito', sans-serif;
  font-size: 18px; font-weight: 900;
  padding: 20px 52px; border-radius: 16px;
  border: none; cursor: pointer;
  box-shadow: 0 8px 32px rgba(245,166,35,0.45);
  transition: transform .2s, box-shadow .2s;
  letter-spacing: .01em;
}
.cta-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 44px rgba(245,166,35,0.55); }
.cta-btn .arrow { font-size: 20px; }

.proof {
  margin-top: 28px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600;
}
.proof-dot { width: 6px; height: 6px; background: var(--yellow); border-radius: 50%; opacity: .8; }

/* ===== OVERLAY ===== */
.overlay {
  position: fixed; inset: 0;
  background: rgba(27,19,60,0.88);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  opacity: 0; pointer-events: none;
  transition: opacity .35s;
}
.overlay.show { opacity: 1; pointer-events: all; }

/* ===== POPUP ===== */
.popup {
  background: var(--white);
  color: var(--ink);
  border-radius: 20px;
  width: 100%; max-width: 480px;
  max-height: 94vh; overflow-y: auto;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  transform: translateY(32px) scale(0.97);
  transition: transform .45s cubic-bezier(.22,1,.36,1);
}
.overlay.show .popup { transform: translateY(0) scale(1); }

.popup-top-purple {
  background: linear-gradient(140deg, var(--purple) 0%, var(--purple-deep) 100%);
  padding: 32px 28px 26px;
  border-radius: 20px 20px 0 0;
  text-align: center;
}
.popup-top-green {
  background: linear-gradient(140deg, var(--green-mid) 0%, var(--green) 100%);
  padding: 32px 28px 26px;
  border-radius: 20px 20px 0 0;
  text-align: center;
}

.popup-tag {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.95);
  font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 100px; margin-bottom: 14px;
}
.popup-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(19px, 4vw, 26px);
  color: #fff; line-height: 1.2;
}

.popup-body { padding: 26px 26px 30px; }

.popup-desc {
  font-size: 14.5px; color: var(--gray);
  margin-bottom: 20px; line-height: 1.65;
  font-weight: 600;
}
.popup-desc b { color: var(--ink); }

.popup-items {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 22px;
}
.popup-items li {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 14px; color: var(--ink); font-weight: 700;
  background: var(--off-white);
  border-radius: 10px;
  padding: 10px 14px;
}
.check-purple {
  width: 22px; height: 22px; min-width: 22px;
  background: var(--purple); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 12px; font-weight: 900;
}
.check-yellow {
  width: 22px; height: 22px; min-width: 22px;
  background: var(--yellow); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); font-size: 12px; font-weight: 900;
}

.price-row {
  border-radius: 14px;
  padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
  gap: 12px;
}
.price-row-purple { background: var(--off-white); border: 2px solid var(--border); }
.price-row-yellow  { background: var(--yellow-pale); border: 2px solid rgba(245,166,35,0.3); }

.price-label { font-size: 13px; color: var(--gray); font-weight: 700; line-height: 1.5; }
.price-value {
  font-family: 'Nunito', sans-serif;
  font-size: 36px; font-weight: 900;
  white-space: nowrap;
}
.price-value.green-mid { color: var(--green-mid); }
.price-value.yellow    { color: var(--yellow); }
.price-value sup { font-size: 15px; vertical-align: top; margin-top: 8px; display: inline-block; }

.btn-yes-purple {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--purple); color: #fff;
  font-family: 'Nunito', sans-serif; font-size: 16px; font-weight: 900;
  padding: 17px; border-radius: 14px; border: none; cursor: pointer;
  box-shadow: 0 8px 28px rgba(91,79,207,0.38);
  margin-bottom: 12px;
  transition: transform .2s, box-shadow .2s;
}
.btn-yes-purple:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(91,79,207,0.5); }

.btn-yes-yellow {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--yellow); color: var(--ink);
  font-family: 'Nunito', sans-serif; font-size: 16px; font-weight: 900;
  padding: 17px; border-radius: 14px; border: none; cursor: pointer;
  box-shadow: 0 8px 28px rgba(245,166,35,0.42);
  margin-bottom: 12px;
  transition: transform .2s, box-shadow .2s;
}
.btn-yes-yellow:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(245,166,35,0.55); }

.btn-no {
  width: 100%; background: none; border: none; cursor: pointer;
  font-size: 13px; color: var(--gray); font-weight: 700;
  text-decoration: underline; text-underline-offset: 3px;
  padding: 6px; transition: color .2s;
}
.btn-no:hover { color: var(--ink); }

.price-strike {
  font-size: 12px; color: var(--gray);
  text-decoration: line-through;
  margin-bottom: 2px; font-weight: 700;
}
