/* ============================================================
   ACHADINHOS VIRAIS SHOPEE — DARK THEME, MOBILE-FIRST
   Base = 375px → scale up with min-width queries
   ============================================================ */

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

:root {
  /* Brand */
  --pink:         #e91e8c;
  --pink-light:   #ff4db2;
  --pink-dim:     rgba(233,30,140,0.12);
  --pink-border:  rgba(233,30,140,0.25);
  --yellow:       #FFEE58;
  --yellow-dark:  #f0c000;
  --green:        #22c55e;

  /* Dark backgrounds */
  --bg:           #0b0b12;
  --bg-section:   #0f0f18;
  --bg-card:      #14141f;
  --bg-card2:     #1a1a28;
  --bg-input:     #1e1e2e;

  /* Text */
  --text:         #f0f0f8;
  --text-muted:   #8888a8;
  --text-dim:     #5a5a7a;

  /* Borders */
  --border:       rgba(255,255,255,0.07);
  --border-pink:  rgba(233,30,140,0.3);

  /* Misc */
  --white:        #ffffff;
  --radius:       16px;
  --radius-sm:    10px;
  --shadow:       0 4px 24px rgba(0,0,0,0.4);
  --shadow-pink:  0 6px 30px rgba(233,30,140,0.22);
  --shadow-glow:  0 0 40px rgba(233,30,140,0.12);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--pink), var(--yellow-dark));
  border-radius: 2px;
}

.container {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}

s       { color: var(--text-dim); text-decoration: line-through; }
strong  { font-weight: 700; color: var(--text); }
.pink   { color: var(--pink); }

/* ============================================================
   PURCHASE NOTIFICATION
   ============================================================ */
.notification {
  position: fixed;
  bottom: 12px;
  left: 8px;
  right: 8px;
  z-index: 9999;
  background: var(--bg-card2);
  border: 1.5px solid var(--border-pink);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-pink);
  animation: slideIn 0.4s ease;
  transition: opacity 0.4s ease;
}
.notification.hidden { display: none; }
.notification.fading { opacity: 0; }
.notif-icon { font-size: 1.5rem; flex-shrink: 0; }
.notif-text { font-size: 0.88rem; line-height: 1.4; }
.notif-name { font-weight: 800; color: var(--pink); }
.notif-msg  { color: var(--text); }

@keyframes slideIn {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* ============================================================
   URGENCY BAR
   ============================================================ */
.urgency-bar {
  background: linear-gradient(90deg, #1a0a12, #2a0f1e, #1a0a12);
  color: var(--text);
  text-align: center;
  padding: 11px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-bottom: 1px solid var(--border-pink);
  line-height: 1.3;
}
.urgency-bar strong { color: var(--yellow); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  background: rgba(11,11,18,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 8px 0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.header-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(233,30,140,0.3));
}
.header-tagline {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  display: none;
}
.header-tagline strong { color: var(--pink); }
.secure-icons {
  height: 26px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1) opacity(0.6);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(233,30,140,0.12) 0%, transparent 70%),
    linear-gradient(180deg, #0f0a14 0%, var(--bg) 100%);
  padding: 32px 0 44px;
  text-align: center;
}

.hero-logo-img {
  display: block;
  text-align: center;
  margin-bottom: 16px;
}
.hero-logo-img img { max-width: 260px; }

.hero-tag {
  display: inline-block;
  background: var(--pink-dim);
  border: 1px solid var(--border-pink);
  color: var(--pink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  font-family: 'Fira Code', monospace;
  text-transform: uppercase;
}

.hero-title {
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 auto 14px;
  letter-spacing: -0.02em;
}
.hero-highlight { color: var(--pink); }

.hero-subtitle {
  font-size: 1.05rem;
  color: #c8c8e0;
  margin: 0 auto 24px;
  line-height: 1.65;
}
.hero-subtitle strong { color: #ffffff; }

/* Mobile mockup */
.hero-mockup-wrap {
  margin: 0 auto 28px;
  max-width: 300px;
}
.hero-mockup {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 40px rgba(233,30,140,0.28));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* Checklist */
.hero-checklist {
  list-style: none;
  margin-bottom: 24px;
  text-align: left;
}
.hero-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1.08rem;
  font-weight: 700;
  color: #ffffff;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
}
.hero-checklist li:last-child { border-bottom: none; }
.check { color: var(--pink); font-weight: 900; flex-shrink: 0; margin-top: 1px; }

/* Price box */
.hero-price-area {
  background: var(--bg-card);
  border: 1.5px solid var(--border-pink);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-pink);
}
.price-de   { font-size: 1rem; color: #e53e3e; font-weight: 700; margin-bottom: 2px; }
.price-de s { text-decoration-color: #e53e3e; }
.price-por  { font-size: 0.9rem; color: #ffffff; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.price-value {
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1.05;
  margin: 4px 0 2px;
  text-shadow: 0 0 24px rgba(34,197,94,0.5);
}
.price-tipo { font-size: 0.88rem; color: #c8c8e0; font-weight: 600; font-family: 'Fira Code', monospace; }

/* CTA button */
.btn-cta {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--pink), var(--pink-light));
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 0 28px;
  height: 60px;
  line-height: 60px;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  box-shadow: 0 6px 28px rgba(233,30,140,0.4);
  animation: ctaPulse 2.5s ease-in-out infinite;
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@keyframes ctaPulse {
  0%,100% { box-shadow: 0 6px 28px rgba(233,30,140,0.38); }
  50%      { box-shadow: 0 8px 40px rgba(233,30,140,0.65); }
}
.btn-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
  animation: none !important;
}
.btn-subtext {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}
.hero-secure-img {
  margin-top: 18px;
  text-align: center;
}
.hero-secure-img img {
  max-width: 260px;
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1) opacity(0.45);
}

.hero-right { display: none; }

/* ============================================================
   SECTION COMMONS
   ============================================================ */
section { padding: 48px 0; }

.section-title {
  font-size: 1.7rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 10px;
  color: var(--text);
  line-height: 1.2;
}
.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
  line-height: 1.55;
}

/* ============================================================
   PROOF SECTION
   ============================================================ */
.proof-section {
  background: #080810;
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-section .section-title { color: var(--text); }
.proof-section .section-sub   { color: var(--text-muted); }

.proof-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6), 0 0 0 1px var(--border);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.proof-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 520px;
  object-fit: cover;
  object-position: top;
}

/* ============================================================
   FOR WHO
   ============================================================ */
.for-who { background: var(--bg-section); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.forwho-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.forwho-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: border-color 0.25s;
}
.forwho-card:active { border-color: var(--border-pink); }
.forwho-icon {
  font-size: 1.9rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.forwho-card p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   WHAT YOU GET
   ============================================================ */
.what-you-get { background: var(--bg); }

.product-box {
  background: var(--bg-card);
  border: 1px solid var(--border-pink);
  border-radius: var(--radius);
  padding: 28px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow-glow);
}
.product-mockup {
  width: 100%;
  max-width: 240px;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(233,30,140,0.2));
}
.product-badge {
  display: inline-block;
  background: var(--pink-dim);
  border: 1px solid var(--border-pink);
  color: var(--pink);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: .05em;
  margin-bottom: 12px;
}
.product-box-right { width: 100%; }
.product-box-right h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text);
  line-height: 1.3;
}
.product-list { list-style: none; }
.product-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
}
.product-list li:last-child { border-bottom: none; }

/* ============================================================
   BONUSES
   ============================================================ */
.bonuses { background: var(--bg-section); border-top: 1px solid var(--border); }

.bonus-label {
  display: inline-block;
  background: var(--pink-dim);
  border: 1px solid var(--border-pink);
  color: var(--pink);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 50px;
  letter-spacing: .06em;
  margin-bottom: 12px;
}
.bonuses .section-title { margin-bottom: 8px; }

.bonus-pack-img {
  margin: 0 auto 32px;
  max-width: 480px;
}
.bonus-pack-img img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 24px rgba(0,0,0,0.5));
}

.bonus-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: stretch;
  transition: border-color 0.25s;
}
.bonus-card:active { border-color: var(--border-pink); }
.bonus-card img {
  width: 100px;
  min-width: 100px;
  object-fit: cover;
  flex-shrink: 0;
}
.bonus-info {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bonus-num {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--pink);
  background: var(--pink-dim);
  border: 1px solid var(--border-pink);
  border-radius: 50px;
  padding: 2px 10px;
  letter-spacing: .04em;
  margin-bottom: 6px;
  align-self: flex-start;
}
.bonus-num-destaque { background: rgba(240,192,0,0.1); border-color: rgba(240,192,0,0.3); color: var(--yellow-dark); }
.bonus-card h4 {
  font-size: 0.93rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.3;
}
.bonus-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.bonus-extra { align-items: center; }
.bonus-extra-icon {
  width: 100px;
  min-width: 100px;
  background: var(--bg-card2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  flex-shrink: 0;
  align-self: stretch;
  border-right: 1px solid var(--border);
}
.bonus-destaque {
  border-color: rgba(240,192,0,0.25);
}
.bonus-destaque .bonus-extra-icon {
  background: rgba(240,192,0,0.06);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--bg); border-top: 1px solid var(--border); }

.testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  transition: border-color 0.25s;
}
.testimonial-card:active { border-color: var(--border-pink); }
.stars {
  font-size: 1.05rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.testimonial-card > p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--pink-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.93rem;
  color: var(--text);
}
.testimonial-author small {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--bg-section); border-top: 1px solid var(--border); }

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 28px;
}
.pricing-featured { order: 1; }

/* ── Base card ── */
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px 24px;
  text-align: center;
  position: relative;
}

/* ── Basic card — muted ── */
.plan-basic {
  background: #0e0e18;
  border-color: rgba(255,255,255,0.09);
}

/* ── Premium card — highlighted ── */
.pricing-featured {
  border-color: var(--pink);
  border-width: 2px;
  box-shadow: var(--shadow-pink), 0 0 60px rgba(233,30,140,0.1);
  background: linear-gradient(160deg, #180d18 0%, #0e0e1e 100%);
}

/* ── Badge top ── */
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--pink), var(--pink-light));
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 800;
  padding: 5px 20px;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: .05em;
  box-shadow: 0 4px 14px rgba(233,30,140,0.4);
}

.plan-stars {
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

/* ── Plan names ── */
.plan-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.plan-name-premium {
  font-size: 1.4rem;
  color: var(--pink);
  letter-spacing: 0.08em;
  text-shadow: 0 0 20px rgba(233,30,140,0.35);
}

/* ── Type tag ── */
.plan-type-tag {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.plan-type-tag-premium {
  color: rgba(233,30,140,0.6);
}

/* ── Prices ── */
.plan-de    { font-size: 0.85rem; color: var(--text-dim); margin-bottom: 2px; }
.plan-price {
  font-size: 3.6rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin: 4px 0 2px;
  text-shadow: 0 0 20px rgba(34,197,94,0.35);
}
.plan-price-basic {
  font-size: 3rem;
  color: var(--text-muted);
  text-shadow: none;
}
.cents { font-size: 1.5rem; vertical-align: super; }

.plan-economy {
  display: inline-block;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.25);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  margin: 6px 0 18px;
}

/* ── Feature list ── */
.plan-list { list-style: none; text-align: left; margin-bottom: 22px; }
.plan-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
}
.plan-list li:last-child { border-bottom: none; }
.plan-list li strong { color: var(--text); font-size: 0.9rem; }
.plan-list li small  { color: var(--text-muted); font-size: 0.78rem; display: block; margin-top: 2px; }

/* Included ✔ */
.check      { color: var(--green); font-weight: 900; flex-shrink: 0; margin-top: 2px; font-size: 0.95rem; }
.check-bonus { color: var(--pink); }

/* NOT included ✘ */
.plan-item-no {
  opacity: 1;
}
.cross {
  color: #e53e3e;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.95rem;
}
.plan-item-no s   { color: var(--text-dim); }
.no-small         { color: #7a3a3a !important; }

/* Bonus rows in premium */
.plan-item-bonus {
  background: rgba(233,30,140,0.04);
  border-radius: 6px;
  padding-left: 8px !important;
  padding-right: 8px !important;
  border-color: rgba(233,30,140,0.1) !important;
}
.plan-item-vip {
  background: rgba(240,192,0,0.05);
  border-color: rgba(240,192,0,0.15) !important;
}
.plan-item-vip strong { color: var(--yellow-dark) !important; }

/* ── Buttons ── */
.btn-plan {
  width: 100%;
  height: 56px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: var(--text-muted);
  font-family: 'Manrope', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}
.btn-plan-primary {
  background: linear-gradient(135deg, var(--pink), var(--pink-light));
  color: var(--white);
  border-color: transparent;
  height: 62px;
  font-size: 0.92rem;
  box-shadow: 0 6px 24px rgba(233,30,140,0.4);
}
.plan-note {
  display: block;
  font-size: 0.74rem;
  color: var(--text-dim);
}

/* ── Alert boxes below buttons ── */
.plan-warning {
  margin-top: 16px;
  padding: 12px 14px;
  background: rgba(255,193,7,0.07);
  border: 1px solid rgba(255,193,7,0.2);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: #c8a500;
  line-height: 1.5;
  text-align: center;
}
.plan-warning strong { color: #ffc107; }

.plan-urgency {
  margin-top: 16px;
  padding: 12px 14px;
  background: rgba(233,30,140,0.08);
  border: 1px solid rgba(233,30,140,0.2);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--pink-light);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.01em;
}

.secure-bar { text-align: center; padding-top: 8px; }
.secure-bar img {
  max-width: 320px;
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1) opacity(0.4);
}

/* ============================================================
   GUARANTEE
   ============================================================ */
.guarantee { background: var(--bg); border-top: 1px solid var(--border); }

.guarantee-inner {
  background: linear-gradient(135deg, rgba(34,197,94,0.07), var(--bg-card));
  border: 1.5px solid rgba(34,197,94,0.25);
  border-radius: var(--radius);
  padding: 28px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-shadow: 0 0 40px rgba(34,197,94,0.06);
}
.guarantee-badge-wrap img {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(34,197,94,0.2));
}
.guarantee-text h2 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 6px;
  color: var(--text);
  line-height: 1.2;
}
.guarantee-sub {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 10px;
}
.guarantee-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 10px;
}
.guarantee-text strong { color: var(--text); }
.guarantee-contact {
  font-size: 0.9rem;
  color: var(--green);
  font-weight: 700;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bg-section); border-top: 1px solid var(--border); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--border-pink); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 16px;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
}
.faq-q:active { background: var(--pink-dim); }
.faq-arrow {
  font-size: 0.65rem;
  color: var(--pink);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 16px 18px;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.65;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.faq-a strong         { color: var(--text); }
.faq-item.open .faq-a { display: block; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(233,30,140,0.1) 0%, transparent 70%),
    var(--bg);
  text-align: center;
  border-top: 1px solid var(--border);
}
.final-logo {
  max-width: 180px;
  width: 100%;
  height: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 12px rgba(233,30,140,0.25));
}
.final-cta h2 {
  font-size: 1.7rem;
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--text);
  line-height: 1.2;
}
.final-cta > .container > p {
  font-size: 0.97rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.55;
}
.final-price-box {
  display: inline-block;
  background: var(--bg-card);
  border: 1.5px solid var(--border-pink);
  border-radius: var(--radius);
  padding: 16px 32px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-pink);
}
.final-price-box .price-value {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--pink);
  text-shadow: 0 0 20px rgba(233,30,140,0.4);
}
.final-cta .btn-cta { max-width: 100%; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #060609;
  color: var(--text-muted);
  padding: 36px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}
.footer-logo img {
  max-width: 160px;
  width: 100%;
  height: auto;
  margin-bottom: 16px;
  opacity: 0.7;
  filter: drop-shadow(0 0 8px rgba(233,30,140,0.15));
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 10px;
  margin-bottom: 16px;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.84rem;
  padding: 4px 2px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--pink); }
.footer-links span    { color: var(--text-dim); }
.footer-disclaimer {
  font-size: 0.72rem;
  color: var(--text-dim);
  max-width: 700px;
  margin: 0 auto 10px;
  line-height: 1.6;
}
.footer-copy {
  font-size: 0.76rem;
  color: var(--text-dim);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   ── TABLET  min-width: 600px ──
   ============================================================ */
@media (min-width: 600px) {
  .container { max-width: 560px; padding: 0 20px; }

  .header-tagline       { display: block; }
  .header-logo img      { height: 50px; }
  .secure-icons         { height: 30px; }

  .hero         { padding: 40px 0 52px; }
  .hero-title   { font-size: 1.9rem; }
  .hero-mockup-wrap { max-width: 340px; }

  .notification {
    left: 16px;
    right: auto;
    max-width: 320px;
  }

  /* For-who: 2 cols */
  .forwho-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .forwho-card { flex-direction: column; text-align: center; padding: 24px 16px; }
  .forwho-icon { margin: 0 auto 10px; }

  /* Bonuses: 2 cols */
  .bonus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

  .section-title { font-size: 1.85rem; }

  /* Pricing: 2 cols */
  .pricing-grid { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .pricing-card { flex: 1 1 260px; max-width: 320px; }
  .pricing-featured { order: 0; }

  /* Guarantee: horizontal */
  .guarantee-inner {
    flex-direction: row;
    text-align: left;
    padding: 32px 28px;
    gap: 24px;
  }
  .guarantee-badge-wrap img { width: 130px; }
  .guarantee-text h2 { font-size: 1.6rem; }
}

/* ============================================================
   ── DESKTOP  min-width: 960px ──
   ============================================================ */
@media (min-width: 960px) {
  .container { max-width: 1080px; padding: 0 24px; }

  section { padding: 72px 0; }

  .header-logo img { height: 56px; }
  .secure-icons    { height: 36px; }

  /* Hero: two-column */
  .hero {
    padding: 64px 0 72px;
    text-align: left;
  }
  .hero-logo-img {
    display: block;
    margin-bottom: 20px;
    text-align: center;
  }
  .hero-logo-img img { max-width: 390px; }
  .hero-tag     { font-size: 0.82rem; }
  .hero-title   { font-size: 2.6rem; max-width: 100%; margin-left: 0; }
  .hero-subtitle { font-size: 1.05rem; max-width: 100%; margin-left: 0; text-align: left; }

  .hero-mockup-wrap { display: none; }
  .hero-right       { display: flex; justify-content: center; align-items: center; }
  .hero-mockup      { max-width: 440px; }

  .hero-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
  }

  /* For-who: 4 cols */
  .forwho-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .forwho-card { flex-direction: column; text-align: center; padding: 26px 18px; }
  .forwho-icon { margin: 0 auto 12px; }

  /* Product box: horizontal */
  .product-box {
    flex-direction: row;
    padding: 40px;
    gap: 48px;
    text-align: left;
  }
  .product-mockup { max-width: 280px; }
  .product-box-right h3 { font-size: 1.5rem; }

  /* Bonuses: 3 cols */
  .bonus-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }

  /* Testimonials: 3 cols */
  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

  /* Pricing: side by side */
  .pricing-grid { flex-direction: row; justify-content: center; gap: 24px; max-width: 860px; margin-left: auto; margin-right: auto; align-items: flex-start; }
  .pricing-featured { order: 0; }
  .pricing-card { flex: 1 1 0; max-width: 420px; }
  .plan-price { font-size: 4rem; }
  .plan-price-basic { font-size: 3.4rem; }

  /* Proof image: cap width on desktop */
  .proof-img-wrap { max-width: 520px; }

  /* Final CTA */
  .final-cta .btn-cta { max-width: 480px; margin-left: auto; margin-right: auto; }
  .final-cta h2 { font-size: 2.4rem; }

  .section-title { font-size: 2.1rem; }

  /* Proof: show full image */
  .proof-img { max-height: none; object-fit: unset; }
}
