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

:root {
  --bg: #fff0f0;
  --purple: #dc2626;
  --purple-lt: #ef4444;
  --purple-soft: #fee2e2;
  --purple-border: #fecaca;
  --green: #22c55e;
  --text: #1e0a0a;
  --text-mid: #7c2d2d;
  --text-muted: #9ca3af;
  --white: #ffffff;
  --r: 18px;
}

html, body { min-height: 100vh; background: var(--bg); font-family: 'Inter', sans-serif; color: var(--text); overflow-x: hidden; }

/* ---- PARTICLES ---- */
#particles-wrap { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.particle {
  position: absolute; border-radius: 50%; pointer-events: none;
  animation: floatUp linear infinite;
  background: radial-gradient(circle, rgba(220,38,38,0.2) 0%, rgba(252,165,165,0.05) 70%);
}
@keyframes floatUp {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 0.4; }
  100% { transform: translateY(-5vh) scale(1.1); opacity: 0; }
}

/* ---- PROGRESS ---- */
.progress-bar-wrap { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 10px 20px; background: rgba(255,240,240,0.9); backdrop-filter: blur(8px); }
.progress-track { height: 7px; background: var(--purple-border); border-radius: 100px; overflow: hidden; max-width: 560px; margin: 0 auto; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--purple), #f87171); border-radius: 100px; width: 0%; transition: width 0.6s cubic-bezier(.4,0,.2,1); box-shadow: 0 0 8px rgba(220,38,38,0.4); }

/* ---- STEPS ---- */
.step { display: none; min-height: 100vh; padding-top: 46px; animation: fadeIn .4s ease; position: relative; z-index: 1; }
.step.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

.container { max-width: 560px; margin: 0 auto; padding: 24px 20px 80px; }
.center-content { text-align: center; }

/* ---- LANDING ---- */
.landing-badge { display: inline-block; background: rgba(220,38,38,0.1); border: 1px solid var(--purple-border); color: var(--purple); font-size: 13px; font-weight: 600; padding: 5px 16px; border-radius: 100px; margin-bottom: 18px; }
.landing-title { font-size: clamp(22px,5.5vw,30px); font-weight: 800; line-height: 1.3; margin-bottom: 12px; }
.grad-text { background: linear-gradient(135deg, var(--purple) 0%, #f87171 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.landing-sub { font-size: 15px; color: var(--text-mid); line-height: 1.6; margin-bottom: 24px; }

.reveal-card { display: flex; background: var(--white); border-radius: var(--r); overflow: hidden; box-shadow: 0 4px 24px rgba(220,38,38,0.12); margin-bottom: 26px; }
.reveal-left { flex: 0 0 42%; padding: 20px 14px; display: flex; flex-direction: column; align-items: center; justify-content: center; background: #fff8f8; border-right: 1px solid var(--purple-border); }
.reveal-label { font-size: 11px; font-weight: 800; text-align: center; text-transform: uppercase; line-height: 1.4; margin-bottom: 12px; letter-spacing: .5px; }
.blurred-face { width: 76px; height: 76px; border-radius: 50%; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; box-shadow: inset 0 2px 8px rgba(0,0,0,0.1); }
.blur-img { width: 100%; height: 100%; object-fit: cover; filter: blur(5px) grayscale(20%); transform: scale(1.15); }
.qmark { position: absolute; font-size: 36px; font-weight: 900; color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.4); z-index: 2; }
.reveal-right { flex: 1; }
.reveal-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.disclaimer { font-size: 12px; color: var(--text-muted); margin-top: 12px; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: block; width: 100%; padding: 17px 24px;
  background: linear-gradient(135deg, var(--purple), var(--purple-lt));
  color: #fff; font-family: 'Inter',sans-serif; font-size: 17px; font-weight: 700;
  border: none; border-radius: 50px; cursor: pointer;
  box-shadow: 0 4px 20px rgba(220,38,38,0.35);
  transition: all .25s ease; letter-spacing: .2px;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(220,38,38,0.5); }
.btn-green { display: block; width: 100%; padding: 17px; background: linear-gradient(135deg,#22c55e,#16a34a); color: #fff; font-family: 'Inter',sans-serif; font-size: 17px; font-weight: 700; border: none; border-radius: 50px; cursor: pointer; box-shadow: 0 4px 16px rgba(34,197,94,0.3); transition: all .25s; }
.btn-green:hover { transform: translateY(-2px); }
.btn-lg { font-size: 18px; padding: 20px; }
.pulse-btn { animation: pulse 2.5s ease-in-out infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 4px 20px rgba(220,38,38,0.35); } 50% { box-shadow: 0 4px 40px rgba(220,38,38,0.6), 0 0 0 8px rgba(220,38,38,0.07); } }

/* ---- CHAT ---- */
.chat-feed { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.msg-aura { display: flex; align-items: flex-start; gap: 10px; animation: msgIn .35s ease; }
.msg-user { display: flex; justify-content: flex-end; animation: msgIn .35s ease; }
@keyframes msgIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.aura-av { width: 42px; height: 42px; min-width: 42px; border-radius: 50%; overflow: hidden; border: 2px solid var(--purple-border); }
.aura-av img { width: 100%; height: 100%; object-fit: cover; }

.aura-bubble {
  background: rgba(255,255,255,0.85); backdrop-filter: blur(8px);
  border: 1px solid rgba(254,202,202,0.6);
  border-radius: 4px 18px 18px 18px; padding: 14px 16px;
  font-size: 15px; line-height: 1.6; color: var(--text);
  box-shadow: 0 2px 16px rgba(220,38,38,0.08); max-width: calc(100% - 56px);
}
.aura-bubble strong { color: var(--purple); }

.user-bubble { background: linear-gradient(135deg,var(--purple),var(--purple-lt)); color: #fff; border-radius: 18px 4px 18px 18px; padding: 12px 18px; font-size: 15px; font-weight: 600; max-width: 70%; }

.typing-bubble { background: rgba(255,255,255,0.85); backdrop-filter: blur(8px); border: 1px solid rgba(254,202,202,0.6); border-radius: 4px 18px 18px 18px; padding: 14px 18px; display: flex; gap: 5px; align-items: center; box-shadow: 0 2px 16px rgba(220,38,38,0.08); }
.tdot { width: 8px; height: 8px; border-radius: 50%; background: var(--purple-border); animation: tdot 1.2s ease infinite; }
.tdot:nth-child(2) { animation-delay: .2s; }
.tdot:nth-child(3) { animation-delay: .4s; }
@keyframes tdot { 0%,80%,100% { transform: scale(.8); background: var(--purple-border); } 40% { transform: scale(1.3); background: var(--purple); } }

/* ---- CAROUSEL ---- */
.carousel-wrap { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.car-overflow { flex: 1; overflow: hidden; border-radius: var(--r); }
.car-track { display: flex; transition: transform .4s cubic-bezier(.4,0,.2,1); }
.car-btn { width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--purple-border); background: var(--white); color: var(--purple); font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .2s; }
.car-btn:hover { background: var(--purple-soft); }

.fb-card { min-width: 100%; border-radius: var(--r); overflow: hidden; box-shadow: 0 2px 20px rgba(0,0,0,0.1); }
.fb-post-img { width: 100%; display: block; }

.car-dots { display: flex; justify-content: center; gap: 6px; margin-bottom: 20px; }
.cdot { width: 8px; height: 8px; border-radius: 50%; background: var(--purple-border); cursor: pointer; transition: all .2s; }
.cdot.active { background: var(--purple); width: 22px; border-radius: 4px; }

.ready-txt { text-align: center; font-size: 16px; font-weight: 600; margin-bottom: 14px; }

/* ---- INPUTS ---- */
.input-section { display: grid; gap: 12px; }
.input-hint { font-size: 14px; color: var(--text-mid); text-align: center; }
.text-input { width: 100%; padding: 16px 20px; background: rgba(255,255,255,0.9); backdrop-filter: blur(8px); border: 1.5px solid var(--purple-border); border-radius: 50px; font-family: 'Inter',sans-serif; font-size: 16px; color: var(--text); outline: none; text-align: center; transition: border-color .2s; }
.text-input::placeholder { color: var(--text-muted); }
.text-input:focus { border-color: var(--purple); }

/* ---- DATE ---- */
.date-section { display: grid; gap: 14px; }
.date-label { font-size: 15px; font-weight: 600; text-align: center; color: var(--text-mid); }
.date-row { display: flex; gap: 12px; }
.sel-input { flex: 1; padding: 14px 16px; background: rgba(255,255,255,0.9); border: 1.5px solid var(--purple-border); border-radius: 12px; font-family: 'Inter',sans-serif; font-size: 15px; color: var(--text); outline: none; cursor: pointer; appearance: none; transition: border-color .2s; }
.sel-input:focus { border-color: var(--purple); }

/* ---- TRANSITION TEXT ---- */
.transition-text { text-align: center; font-size: 16px; font-weight: 700; color: var(--purple); font-style: italic; margin-bottom: 24px; line-height: 1.5; animation: fadeIn .5s ease; }

/* ---- BIG QUESTION SCREENS ---- */
.q-title { font-size: clamp(19px,4.5vw,24px); font-weight: 800; text-align: center; text-transform: uppercase; background: linear-gradient(135deg,var(--purple),#f87171); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 24px; line-height: 1.3; }
.q-options { display: grid; gap: 12px; }
.q-opt {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(8px);
  border: 1.5px solid var(--purple-border); border-radius: 50px;
  padding: 14px 20px; cursor: pointer; text-align: left;
  font-family: 'Inter',sans-serif; font-size: 14px; font-weight: 500; color: var(--text);
  transition: all .22s ease;
  box-shadow: 0 2px 10px rgba(220,38,38,0.06);
}
.q-opt:hover { border-color: var(--purple); background: var(--purple-soft); transform: translateX(5px); box-shadow: 0 4px 18px rgba(220,38,38,0.15); }
.q-icon-wrap { width: 40px; height: 40px; min-width: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; }

/* ---- OFFER ---- */
.offer-card { background: rgba(255,255,255,0.9); backdrop-filter: blur(12px); border-radius: var(--r); padding: 24px 20px; box-shadow: 0 4px 32px rgba(220,38,38,0.15); text-align: center; }
.offer-badge { display: inline-block; background: var(--purple-soft); color: var(--purple); font-size: 13px; font-weight: 700; padding: 6px 16px; border-radius: 100px; margin-bottom: 16px; }
.offer-img { width: 100%; border-radius: 12px; margin-bottom: 18px; }
.offer-title { font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.offer-desc { font-size: 14px; color: var(--text-mid); line-height: 1.6; margin-bottom: 18px; }
.offer-feats { text-align: left; display: grid; gap: 8px; margin-bottom: 20px; }
.feat { font-size: 14px; font-weight: 500; }
.price-block { margin-bottom: 20px; }
.price-old { font-size: 13px; color: var(--text-muted); text-decoration: line-through; display: block; }
.price-new { font-size: 30px; font-weight: 900; color: var(--purple); }
.price-after { font-size: 12px; color: var(--text-muted); display: block; margin-top: 4px; }
.guarantee { margin-top: 12px; font-size: 12px; color: var(--text-muted); }

/* ---- AUDIO PLAYER ---- */
.audio-card { background: rgba(255,255,255,0.9); backdrop-filter: blur(10px); border-radius: var(--r); overflow: hidden; border: 1px solid var(--purple-border); box-shadow: 0 4px 20px rgba(220,38,38,0.1); margin-bottom: 16px; }
.audio-top { display: flex; align-items: center; gap: 10px; padding: 14px 16px; }
.audio-play-btn { width: 44px; height: 44px; min-width: 44px; border-radius: 50%; background: linear-gradient(135deg,var(--purple),var(--purple-lt)); color: #fff; border: none; font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 10px rgba(220,38,38,0.3); transition: transform .2s; }
.audio-play-btn:hover { transform: scale(1.08); }
.audio-right { flex: 1; }
.audio-track { height: 5px; background: var(--purple-border); border-radius: 100px; overflow: hidden; margin-bottom: 5px; }
.audio-fill { height: 100%; background: linear-gradient(90deg,var(--purple),#f87171); width: 0%; border-radius: 100px; transition: width .5s linear; }
.audio-times { display: flex; justify-content: space-between; font-size: 12px; color: var(--text-muted); }
.audio-cover { width: 100%; display: block; max-height: 240px; object-fit: cover; }

/* ---- RECORDING INDICATOR ---- */
.rec-bubble { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.85); backdrop-filter: blur(8px); border: 1px solid rgba(254,202,202,0.6); border-radius: 4px 18px 18px 18px; padding: 14px 16px; font-size: 14px; color: var(--text-muted); font-style: italic; }
.rec-mic { font-size: 18px; }
.rec-wave { display: flex; align-items: center; gap: 2px; margin-left: 8px; }
.rec-wave span { width: 3px; border-radius: 3px; background: var(--purple); animation: wave 0.8s ease-in-out infinite alternate; }
.rec-wave span:nth-child(1) { height: 8px; animation-delay: 0s; }
.rec-wave span:nth-child(2) { height: 14px; animation-delay: .1s; }
.rec-wave span:nth-child(3) { height: 10px; animation-delay: .2s; }
.rec-wave span:nth-child(4) { height: 16px; animation-delay: .15s; }
.rec-wave span:nth-child(5) { height: 8px; animation-delay: .05s; }
@keyframes wave { from { transform: scaleY(0.6); } to { transform: scaleY(1.2); } }

/* ---- SOCIAL PROOF ---- */
.social-title { font-size: clamp(20px,5vw,26px); font-weight: 800; text-align: center; margin-bottom: 24px; }
.story-card { background: rgba(255,255,255,0.9); backdrop-filter: blur(8px); border-radius: var(--r); overflow: hidden; border: 1px solid var(--purple-border); box-shadow: 0 2px 16px rgba(220,38,38,0.08); margin-bottom: 18px; }
.story-header { font-size: 15px; font-weight: 700; padding: 14px 16px 4px; }
.story-quote { font-size: 13px; font-style: italic; color: var(--text-mid); padding: 0 16px 14px; line-height: 1.55; }
.story-img { width: 100%; display: block; aspect-ratio: 3 / 4; object-fit: cover; }
.social-question { text-align: center; font-size: 15px; font-weight: 600; color: var(--text-mid); margin-bottom: 16px; margin-top: 4px; }

/* ---- CARTA NATAL (photo + overlay) ---- */
.carta-photo-wrap { position: relative; border-radius: 14px; overflow: hidden; box-shadow: 0 6px 28px rgba(0,0,0,0.18); margin-bottom: 18px; }
.carta-bg-img { width: 100%; display: block; }

/* Two overlay zones: left paper / right paper */
.carta-overlay { position: absolute; top: 0; bottom: 0; width: 48%; padding: 24% 4% 8% 10%; display: flex; flex-direction: column; gap: 6px; justify-content: flex-start; }
.carta-overlay-left  { left: 0; }
.carta-overlay-right { right: 30px; }

/* Graphite handwriting text */
.grf { font-family: 'Dancing Script', cursive; font-size: clamp(11px, 2.8vw, 15px); color: #1a1a1a; line-height: 1.7; text-shadow: 0 0 1px rgba(0,0,0,0.15); }
.grf-title { font-size: clamp(13px,3.2vw,18px); font-weight: 700; color: #222; margin-bottom: 4px; }
.grf-label { opacity: 0.65; }
.grf-val { font-weight: 700; color: #0f0f0f; }
.grf-muted { opacity: 0.55; }
.grf-blur { filter: blur(3.5px); opacity: 0.45; user-select: none; }


/* ---- PURPLE AURA BUBBLE (Carta step) ---- */
.aura-bubble-purple { display: flex; align-items: flex-start; gap: 10px; background: linear-gradient(135deg,rgba(220,38,38,0.92),rgba(239,68,68,0.88)); backdrop-filter: blur(8px); border-radius: 4px 18px 18px 18px; padding: 14px 16px; margin-bottom: 18px; }
.aura-bubble-purple p { font-size: 14px; color: #fff; line-height: 1.6; }
.aura-bubble-purple u { cursor: pointer; }
.aura-av-sm { width: 36px; height: 36px; min-width: 36px; border-radius: 50%; overflow: hidden; border: 2px solid rgba(255,255,255,0.4); }
.aura-av-sm img { width: 100%; height: 100%; object-fit: cover; }

/* ---- VSL ---- */
.progress-pct { font-size: 13px; font-weight: 700; color: var(--purple); margin-bottom: 10px; letter-spacing: 1px; text-transform: uppercase; }
.vsl-title { font-size: clamp(20px,5vw,26px); font-weight: 800; margin-bottom: 8px; }
.vsl-sub { font-size: 15px; color: var(--text-mid); margin-bottom: 18px; }

.vsl-wrap { position: relative; border-radius: var(--r); overflow: hidden; box-shadow: 0 6px 32px rgba(220,38,38,0.2); background: #000; margin-bottom: 20px; width: 100%; max-width: 400px; margin-left: auto; margin-right: auto; }
.vsl-wrap video { width: 100%; display: block; max-height: 480px; }

/* Spots urgency badge */
.vsl-spots-badge { display: inline-block; background: rgba(220,38,38,0.08); border: 1.5px solid var(--purple-border); color: var(--text-mid); font-size: 12px; padding: 6px 14px; border-radius: 100px; margin-bottom: 10px; animation: pulse 2s ease-in-out infinite; }
.vsl-spots-badge strong { color: var(--purple); }

/* Play overlay */
.vsl-play-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.25); transition: opacity .3s; }
.vsl-play-overlay.hidden { opacity: 0; pointer-events: none; }
.vsl-play-btn { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--purple), var(--purple-lt)); display: flex; align-items: center; justify-content: center; font-size: 26px; color: #fff; box-shadow: 0 4px 24px rgba(220,38,38,0.5); transition: transform .2s; padding-left: 4px; }
.vsl-play-overlay:hover .vsl-play-btn { transform: scale(1.1); }


/* CTA */
.vsl-cta-wrap { animation: ctaSlideUp .6s cubic-bezier(.34,1.56,.64,1); }
@keyframes ctaSlideUp { from { opacity:0; transform:translateY(30px) scale(.95); } to { opacity:1; transform:translateY(0) scale(1); } }
.vsl-cta-note { margin-top: 10px; font-size: 12px; color: var(--text-muted); }

/* ---- VSL LOCATION URGENCY ---- */
.vsl-location-block { background: rgba(255,255,255,0.92); border: 1.5px solid var(--purple-border); border-radius: var(--r); padding: 14px 16px; margin-top: 24px; margin-bottom: 20px; text-align: center; animation: fadeIn .6s ease; }
.vsl-loc-line { font-size: 14px; color: var(--text-mid); line-height: 1.6; }
.vsl-loc-line strong { color: var(--purple); font-weight: 800; }

/* ---- VSL POST-CTA CHAT FEED ---- */
#vsl-chat-feed { display: flex; flex-direction: column; gap: 12px; padding-bottom: 40px; }

/* Blurred locked portrait */
.vsl-reveal-card { width: 100%; animation: fadeIn .5s ease; margin-top: 20px; margin-bottom: 20px; }
.vsl-locked-portrait {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  max-width: 360px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(220,38,38,0.2);
}
.vsl-portrait-img {
  width: 100%;
  display: block;
}
.vsl-portrait-img.blurred {
  filter: blur(18px) brightness(0.75);
  transform: scale(1.04);
}
.vsl-lock-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(30,10,10,0.35);
  gap: 8px;
}
.vsl-lock-icon { font-size: 2.4rem; }
.vsl-lock-overlay p {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: rgba(220,38,38,0.75);
  border-radius: 20px;
  padding: 5px 16px;
}

/* Info cards grid */
.vsl-info-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 4px 0;
  animation: fadeIn .5s ease;
}
.vsl-info-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-radius: 12px;
  gap: 10px;
}
.vsl-info-card.unlocked {
  background: rgba(255,255,255,0.95);
  border: 1.5px solid var(--purple-border);
}
.vsl-info-card.locked {
  background: rgba(30,10,10,0.04);
  border: 1.5px dashed var(--purple-border);
  opacity: 0.78;
}
.vic-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
  white-space: nowrap;
}
.vic-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  text-align: right;
}
.vic-locked {
  color: var(--text-muted);
  letter-spacing: 1px;
}
.vic-lock { font-size: 12px; margin-left: 4px; }

/* ---- GUARANTEE CARD ---- */
.vsl-guarantee-faq { margin-top: 12px; animation: fadeIn .6s ease; }

.vsl-guarantee-card {
  background: rgba(240, 255, 244, 0.9);
  border: 1.5px solid #86efac;
  border-radius: 14px;
  padding: 18px 20px;
  text-align: center;
  margin-bottom: 28px;
}
.vgc-title {
  font-size: 14px;
  font-weight: 800;
  color: #15803d;
  margin-bottom: 8px;
}
.vgc-text {
  font-size: 13px;
  color: #166534;
  line-height: 1.6;
}

/* ---- FAQ SECTION ---- */
.vsl-faq { text-align: center; padding-bottom: 32px; }

.faq-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.faq-heading {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 24px;
}
.faq-heading em {
  font-style: italic;
  color: var(--purple);
}

.faq-item {
  border-bottom: 1px solid var(--purple-border);
  text-align: left;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 16px 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  gap: 12px;
}
.faq-icon {
  font-size: 18px;
  font-weight: 400;
  color: var(--purple);
  flex-shrink: 0;
  transition: transform .25s;
}
.faq-a {
  display: none;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
  padding: 0 4px 16px;
}
.faq-a.open { display: block; animation: fadeIn .3s ease; }

/* ─── STRIPE EMBEDDED CHECKOUT ─── */
.stripe-checkout-box {
  background: linear-gradient(160deg, #1a0833 0%, #120626 100%);
  border: 1px solid rgba(159, 95, 224, 0.35);
  border-radius: 20px;
  padding: 28px 24px;
  margin: 0 auto;
  max-width: 480px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.06);
}
.stripe-checkout-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(159,95,224,0.18);
}
.stripe-lock { font-size: 1.8rem; }
.stripe-checkout-title {
  font-size: 1rem;
  font-weight: 700;
  color: #f0e6ff;
  letter-spacing: .01em;
}
.stripe-checkout-sub {
  font-size: .72rem;
  color: rgba(240,230,255,.5);
  margin-top: 2px;
}
.stripe-field-group { margin-bottom: 18px; }
.stripe-label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(240,230,255,.7);
  margin-bottom: 8px;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.stripe-input {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(159,95,224,.35);
  border-radius: 10px;
  padding: 13px 15px;
  color: #f0e6ff;
  font-size: .95rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border .2s, box-shadow .2s;
}
.stripe-input::placeholder { color: rgba(240,230,255,.3); }
.stripe-input:focus {
  border-color: #9f5fe0;
  box-shadow: 0 0 0 3px rgba(159,95,224,.18);
}
.stripe-error {
  background: rgba(248,113,113,.12);
  border: 1px solid rgba(248,113,113,.4);
  border-radius: 10px;
  color: #fca5a5;
  font-size: .85rem;
  padding: 11px 14px;
  margin-bottom: 16px;
  line-height: 1.4;
}
.stripe-pay-btn {
  width: 100%;
  margin-top: 8px;
  font-size: 1rem;
  padding: 16px 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, #9f5fe0, #7c3aed);
  box-shadow: 0 4px 24px rgba(124,58,237,.45);
  transition: opacity .2s, transform .15s;
}
.stripe-pay-btn:disabled { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }
.stripe-pay-btn:not(:disabled):hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(124,58,237,.55); }
.stripe-trust-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: .72rem;
  color: rgba(240,230,255,.45);
  flex-wrap: wrap;
}
/* Success screen */
.stripe-success-wrap {
  text-align: center;
  padding: 48px 20px;
  animation: fadeIn .5s ease;
}
.stripe-success-icon { font-size: 3rem; margin-bottom: 16px; animation: pulse-glow 1.5s ease-in-out infinite; }
@keyframes pulse-glow {
  0%,100% { transform: scale(1); filter: drop-shadow(0 0 8px rgba(159,95,224,.6)); }
  50% { transform: scale(1.15); filter: drop-shadow(0 0 20px rgba(159,95,224,1)); }
}
.stripe-success-title { font-size: 1.4rem; font-weight: 700; color: #f0e6ff; margin-bottom: 10px; }
.stripe-success-sub { font-size: .9rem; color: rgba(240,230,255,.6); }

/* ─── BOTTOM CTA BANNER ─── */
.bottom-cta-banner {
  background: linear-gradient(135deg, #2a0a5e 0%, #1a0633 60%, #3b1080 100%);
  padding: 56px 24px 48px;
  text-align: center;
  margin-top: 0;
}
.bottom-cta-label {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.4rem, 5vw, 2rem);
  font-weight: 800;
  color: #f0e6ff;
  margin-bottom: 10px;
  line-height: 1.3;
}
.bottom-cta-label em {
  color: #f4a742;
  font-style: italic;
}
.bottom-cta-sub {
  font-size: .95rem;
  color: rgba(240, 230, 255, 0.65);
  margin-bottom: 28px;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}
.bottom-cta-btn {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 16px 36px;
  border-radius: 50px;
  max-width: 360px;
  width: 100%;
}
.bottom-cta-note {
  margin-top: 14px;
  font-size: .78rem;
  color: rgba(240, 230, 255, 0.45);
}

/* ─── EXIT INTENT POPUP ─── */
.exit-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.exit-popup-overlay.exit-popup-visible { opacity: 1; }

.exit-popup-card {
  background: linear-gradient(160deg, #1e0845 0%, #120626 100%);
  border: 1px solid rgba(159, 95, 224, 0.4);
  border-radius: 24px;
  padding: 36px 28px 28px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.06);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.exit-popup-overlay.exit-popup-visible .exit-popup-card { transform: translateY(0); }

.exit-popup-x {
  position: absolute;
  top: 14px; right: 16px;
  background: none;
  border: none;
  color: rgba(240,230,255,0.4);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
}
.exit-popup-x:hover { color: #f0e6ff; }

.exit-badge {
  display: inline-block;
  background: linear-gradient(90deg, #f4a742, #e07b20);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.exit-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #f0e6ff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.exit-desc {
  font-size: .88rem;
  color: rgba(240,230,255,0.6);
  margin-bottom: 20px;
  line-height: 1.5;
}

.exit-price-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}
.exit-price-old {
  font-size: 1.1rem;
  color: rgba(240,230,255,0.4);
  text-decoration: line-through;
}
.exit-price-new {
  font-size: 2rem;
  font-weight: 900;
  color: #f0e6ff;
}
.exit-discount-pill {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: .05em;
}

.exit-price-note {
  font-size: .72rem;
  color: rgba(240,230,255,0.35);
  margin-bottom: 20px;
}

.exit-cta-btn {
  width: 100%;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.exit-no-thanks {
  background: none;
  border: none;
  color: rgba(240,230,255,0.3);
  font-size: .75rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
  width: 100%;
  padding: 6px;
}
.exit-no-thanks:hover { color: rgba(240,230,255,0.55); }

/* ─── SOCIAL PROOF NOTIFICATION TOAST ─── */
.notif-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9000;
  background: rgba(18, 6, 38, 0.94);
  border: 1px solid rgba(159, 95, 224, 0.35);
  border-radius: 14px;
  padding: 11px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  max-width: 270px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-16px);
  transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.34, 1.5, 0.64, 1);
}
.notif-toast.notif-visible {
  opacity: 1;
  transform: translateY(0);
}
.notif-bell {
  font-size: 1.1rem;
  flex-shrink: 0;
  animation: bellShake 0.5s ease 0.1s;
}
@keyframes bellShake {
  0%,100% { transform: rotate(0); }
  20%      { transform: rotate(-15deg); }
  40%      { transform: rotate(12deg); }
  60%      { transform: rotate(-8deg); }
  80%      { transform: rotate(5deg); }
}
.notif-text {
  font-size: .8rem;
  color: rgba(240,230,255,0.85);
  line-height: 1.3;
}
.notif-text strong { color: #d4b8ff; }

/* Mobile: centered at top */
@media (max-width: 540px) {
  .notif-toast {
    right: auto;
    left: 50%;
    transform: translateX(-50%) translateY(-16px);
    max-width: 88vw;
    top: 14px;
  }
  .notif-toast.notif-visible {
    transform: translateX(-50%) translateY(0);
  }
}
