/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --gold:        #5BC0F8;
  --gold-dark:   #3AACE8;
  --gold-deep:   #1A8FC8;
  --gold-text:   #0F73A8;
  --accent:      #E63946;
  --green:       #1AAB5F;
  --bg:          #FFFFFF;
  --bg-alt:      #F8F9FA;
  --bg-gold:     #EBF7FE;
  --text:        #111111;
  --text-muted:  #555555;
  --text-light:  #888888;
  --border:      #EEEEEE;
  --border-gold: rgba(91,192,248,0.45);
  --radius:      16px;
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:   0 6px 28px rgba(0,0,0,0.10);
  --shadow-lg:   0 16px 48px rgba(0,0,0,0.13);
  --shadow-gold: 0 6px 32px rgba(91,192,248,0.40);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== UTILITIES ===== */
.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.2;
  color: var(--text);
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 56px;
  font-weight: 400;
}
.section-subtitle strong { color: var(--text); font-weight: 700; }
.highlight      { color: var(--gold-text); }
.highlight-gold { color: var(--gold-deep); }
.badge {
  display: inline-block;
  background: var(--gold-deep);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  border-radius: 4px;
  margin: 16px auto 0;
}

/* ===== TOPBAR ===== */
.topbar {
  background: var(--gold-deep);
  text-align: center;
  padding: 11px 20px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
}

/* ===== HERO ===== */
.hero {
  background: var(--bg);
  padding: 72px 0 88px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91,192,248,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91,192,248,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { text-align: center; }
.hero-badge { margin-bottom: 20px; }
.hero-title {
  font-size: clamp(2rem, 4.8vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text);
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.75;
  font-weight: 400;
}
.hero-subtitle strong { color: var(--text); font-weight: 700; }
.hero-features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 36px;
  align-items: center;
}
.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.97rem;
  color: var(--text);
  font-weight: 500;
}

/* ===== BUTTONS ===== */
.hero-cta { display: flex; flex-direction: column; align-items: center; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold-deep);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  padding: 18px 40px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  width: 100%;
  max-width: 420px;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  background: var(--gold);
  box-shadow: 0 12px 40px rgba(91,192,248,0.55);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #111;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  padding: 18px 40px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  width: 100%;
  max-width: 420px;
}
.btn-secondary:hover {
  transform: translateY(-3px) scale(1.02);
  background: #222;
  box-shadow: var(--shadow-lg);
}
.btn-gold-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: var(--gold-deep);
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 50px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: transform 0.3s, background 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: #111;
  transform: translateY(-2px);
}
.btn-small-note {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 12px;
}

/* ===== HERO MOCKUP CARD ===== */
.hero-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-product-img-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  display: inline-block;
}
.hero-product-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
  filter: drop-shadow(0 20px 48px rgba(0,0,0,0.14));
  transition: transform 0.4s ease;
}
.hero-product-img:hover { transform: translateY(-6px) scale(1.01); }
.hero-product-img-wrap .mockup-badge {
  top: 16px;
  right: 16px;
}
.mockup-card {
  background: var(--bg);
  border: 2px solid var(--border-gold);
  border-radius: 24px;
  padding: 40px 36px;
  text-align: center;
  box-shadow: var(--shadow-lg), 0 0 0 6px rgba(91,192,248,0.06);
  position: relative;
  width: 100%;
  max-width: 380px;
}
.mockup-emoji { font-size: 5rem; margin-bottom: 16px; display: block; }
.mockup-title {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--gold-deep);
  margin-bottom: 6px;
}
.mockup-sub { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 24px; font-weight: 500; }
.mockup-items { display: flex; flex-direction: column; gap: 8px; text-align: left; }
.mockup-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  background: var(--bg-gold);
  padding: 9px 12px;
  border-radius: 8px;
  border-left: 3px solid var(--gold);
  color: var(--text);
}
.mockup-badge {
  position: absolute;
  top: -16px;
  right: -16px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 7px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(230,57,70,0.35);
}

/* ===== SOCIAL PROOF BAR ===== */
.social-proof {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.social-proof-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--gold-deep);
  display: block;
}
.stat-label { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; }

/* ===== BENEFITS ===== */
.benefits { background: var(--bg); }
.benefits-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.benefits-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.benefits-slide {
  min-width: 100%;
  display: flex;
  gap: 24px;
}
.benefit-card {
  flex: 1 1 0;
  min-width: 0;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.benefit-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md), 0 0 0 3px rgba(91,192,248,0.08);
}
.benefit-icon-wrap {
  width: 76px;
  height: 76px;
  background: var(--bg-gold);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2.4rem;
  border: 1.5px solid rgba(91,192,248,0.3);
}
.benefit-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.benefit-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }
.benefit-desc strong { color: var(--text); font-weight: 700; }
.benefits-highlight {
  background: var(--bg-gold);
  border: 2px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 32px 44px;
  text-align: center;
  max-width: 760px;
  margin: 48px auto 0;
  font-size: 1.08rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.7;
  box-shadow: var(--shadow-md);
}
.benefits-highlight strong { color: var(--gold-deep); font-weight: 800; }

/* ===== WHAT YOU GET ===== */
.what-you-get { background: var(--bg-alt); }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.content-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.content-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.content-card-icon { font-size: 2.2rem; margin-bottom: 14px; }
.content-card-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.content-card-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }
.bonus-section {
  background: var(--bg-gold);
  border: 2px dashed var(--gold);
  border-radius: var(--radius);
  padding: 44px 40px;
  text-align: center;
}
.bonus-label {
  display: inline-block;
  background: var(--gold-deep);
  color: #fff;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 5px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.bonus-title { font-size: 1.55rem; font-weight: 800; margin-bottom: 12px; color: var(--text); }
.bonus-desc { color: var(--text-muted); max-width: 520px; margin: 0 auto; font-size: 0.95rem; }

/* ===== GALLERY / PREVIEW ===== */
.gallery { background: var(--bg); }
.slider-container { position: relative; overflow: hidden; border-radius: var(--radius); }
.slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.slide {
  min-width: 100%;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 64px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.slide-emoji { font-size: 3.8rem; }
.slide-title { font-size: 1.7rem; font-weight: 800; color: var(--text); }
.slide-desc { color: var(--text-muted); max-width: 500px; font-size: 0.97rem; line-height: 1.7; }
.slide-tags { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.slide-tag {
  background: var(--bg-gold);
  color: var(--gold-deep);
  border: 1px solid rgba(91,192,248,0.45);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
}
.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}
.slider-btn {
  width: 44px;
  height: 44px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  box-shadow: var(--shadow-sm);
}
.slider-btn:hover { background: var(--gold); border-color: var(--gold); color: #111; }
.slider-dots { display: flex; gap: 8px; }
.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: 1.5px solid #ddd;
}
.dot.active { background: var(--gold); border-color: var(--gold-dark); transform: scale(1.3); }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--bg-alt); }
.testimonials-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.testimonial-card {
  min-width: 100%;
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
}
.testimonial-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
}
.testimonial-text::before {
  content: '"';
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: -10px;
  font-style: normal;
  font-family: Georgia, serif;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(91,192,248,0.3);
}
.author-name { font-weight: 700; font-size: 0.92rem; color: var(--text); }
.author-role { font-size: 0.78rem; color: var(--text-light); }

/* ===== COUNTDOWN ===== */
.countdown-bar {
  background: #0d1b40;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  padding: 32px 0;
  text-align: center;
}
.countdown-title {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
}
.countdown-timer { display: flex; justify-content: center; gap: 20px; }
.countdown-unit { text-align: center; }
.countdown-number {
  display: block;
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--gold);
  background: rgba(91,192,248,0.08);
  border: 2px solid rgba(91,192,248,0.4);
  border-radius: 10px;
  padding: 10px 18px;
  min-width: 76px;
  font-variant-numeric: tabular-nums;
  font-family: 'Poppins', sans-serif;
}
.countdown-label { font-size: 0.72rem; color: rgba(255,255,255,0.55); margin-top: 6px; text-transform: uppercase; letter-spacing: 1px; }

/* ===== OFFER ===== */
.offer { background: var(--bg-alt); }
.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}
.plan-card {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: box-shadow 0.3s;
}
.plan-card.featured {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-lg), 0 0 0 6px rgba(91,192,248,0.07);
}
.plan-popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-deep);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}
.plan-name {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 20px;
}
.plan-price-old {
  font-size: 1rem;
  color: #E63946;
  text-decoration: line-through;
  margin-bottom: 4px;
  font-weight: 500;
}
.plan-price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  line-height: 1;
  margin-bottom: 8px;
}
.plan-currency { font-size: 1.4rem; font-weight: 700; color: var(--green); margin-bottom: 8px; }
.plan-amount   { font-size: 4.5rem; font-weight: 900; color: var(--green); }
.plan-cents    { font-size: 1.6rem; font-weight: 700; color: var(--green); margin-bottom: 8px; }
.plan-installment { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 14px; }
.plan-savings {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(26,171,95,0.10);
  color: var(--green);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.plan-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  text-align: left;
}
.plan-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.87rem;
  color: var(--text);
  font-weight: 500;
  padding: 8px 10px;
  background: var(--bg-alt);
  border-radius: 8px;
}
.plan-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 16px 20px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(26,171,95,0.35);
  margin-bottom: 10px;
}
.plan-btn:hover { transform: translateY(-2px); background: #159f52; }
.plan-btn-featured {
  background: var(--gold-deep);
  box-shadow: var(--shadow-gold);
}
.plan-btn-featured:hover { background: var(--gold); color: #111; }
.plan-secure { font-size: 0.76rem; color: var(--text-muted); }
.plan-product-img {
  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;
  margin: 0 auto 20px;
  border-radius: 12px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.12));
  transition: transform 0.3s;
}
.plan-product-img:hover { transform: translateY(-4px) scale(1.02); }
.offer-label-spaced { margin-bottom: 16px; }
.secure-badges-spaced { margin-top: 12px; }
.plan-hint {
  margin-top: 20px;
  padding: 12px 14px;
  background: var(--bg-gold);
  border-radius: 10px;
  font-size: 0.82rem;
  color: var(--gold-deep);
  font-weight: 600;
  border: 1px solid var(--border-gold);
}
.plan-hint-arrow { font-size: 1.1rem; display: block; margin-top: 4px; }
@media (max-width: 720px) {
  .plans-grid { grid-template-columns: 1fr; }
}
.offer-box {
  background: var(--bg);
  border: 2px solid var(--border-gold);
  border-radius: 24px;
  padding: 60px 52px;
  text-align: center;
  max-width: 660px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg), 0 0 0 8px rgba(91,192,248,0.06);
}
.offer-product-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 14px;
  margin: 0 auto 28px;
  display: block;
  box-shadow: var(--shadow-md);
}
.offer-label { margin-bottom: 20px; }
.offer-title { font-size: clamp(1.5rem, 3.5vw, 2.1rem); font-weight: 800; margin-bottom: 8px; color: var(--text); }
.offer-subtitle { color: var(--text-muted); margin-bottom: 32px; font-size: 0.97rem; }
.price-wrapper { margin-bottom: 32px; }
.price-old {
  font-size: 1.2rem;
  color: #E63946;
  text-decoration: line-through;
  margin-bottom: 6px;
  font-weight: 500;
}
.price-current {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  line-height: 1;
  margin-bottom: 8px;
}
.price-currency { font-size: 1.6rem; font-weight: 700; color: var(--green); margin-bottom: 10px; }
.price-amount { font-size: 5.5rem; font-weight: 900; color: var(--green); line-height: 1; }
.price-cents { font-size: 2.1rem; font-weight: 700; color: var(--green); margin-bottom: 10px; }
.price-note { color: var(--text-light); font-size: 0.85rem; margin-top: 8px; }
.offer-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
  text-align: left;
}
.offer-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.93rem;
  color: var(--text);
  font-weight: 500;
  padding: 10px 14px;
  background: var(--bg-alt);
  border-radius: 10px;
  border-left: 3px solid var(--gold);
}
.offer-benefit .check { font-size: 1rem; flex-shrink: 0; }
.secure-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.secure-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== GUARANTEE ===== */
.guarantee { background: var(--bg); }
.guarantee-box {
  background: var(--bg-gold);
  border: 2px solid rgba(91,192,248,0.5);
  border-radius: 24px;
  padding: 60px 52px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 52px;
  align-items: center;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}
.guarantee-seal { text-align: center; flex-shrink: 0; }
.seal-circle {
  width: 158px;
  height: 158px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: 6px solid rgba(91,192,248,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(91,192,248,0.45);
}
.seal-emoji { font-size: 2.2rem; }
.seal-days { font-size: 2.4rem; font-weight: 900; color: #fff; line-height: 1; }
.seal-text { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.85); font-weight: 700; }
.guarantee-title { font-size: 1.75rem; font-weight: 800; margin-bottom: 16px; color: var(--text); }
.guarantee-text { color: var(--text-muted); line-height: 1.85; font-size: 0.97rem; }
.guarantee-text strong { color: var(--text); }

/* ===== FAQ ===== */
.faq { background: var(--bg-alt); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item.open {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(91,192,248,0.12);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-icon {
  width: 26px;
  height: 26px;
  background: var(--bg-gold);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  font-size: 1.1rem;
  font-weight: 700;
  transition: transform 0.3s, background 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: #111; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.92rem;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: var(--bg-gold);
  border-top: 2px solid rgba(91,192,248,0.35);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91,192,248,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.final-cta .section-title { font-size: clamp(1.9rem, 4.5vw, 3.2rem); position: relative; }
.final-cta .section-subtitle { font-size: 1.1rem; margin-bottom: 40px; position: relative; }
.final-cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  position: relative;
}
.urgency-text {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 12px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 36px 0;
  text-align: center;
  color: var(--text-light);
  font-size: 0.83rem;
}
.footer p { margin-bottom: 4px; }
.footer-gold-bar {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-bottom: 28px;
}
.footer-links a {
  color: var(--text-muted);
  margin: 0 12px;
  transition: color 0.2s;
  font-weight: 500;
}
.footer-links a:hover { color: var(--gold-deep); }

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 1000;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.whatsapp-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
}
.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: var(--text);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; }

/* ===== STICKY CTA BAR ===== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-top: 2px solid var(--gold);
  padding: 12px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-label { font-size: 0.88rem; font-weight: 600; color: var(--text-muted); }
.sticky-price { font-weight: 900; color: var(--green); font-size: 1.2rem; }
.sticky-btn {
  background: var(--gold-deep);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: transform 0.3s, background 0.3s;
  box-shadow: var(--shadow-gold);
}
.sticky-btn:hover { transform: scale(1.04); background: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-mockup { order: -1; }
  .content-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .guarantee-box { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .guarantee-seal { display: flex; justify-content: center; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .social-proof-inner { gap: 24px; }
  .offer-box { padding: 36px 20px; }
  .guarantee-box { padding: 36px 20px; }
  .sticky-cta { flex-wrap: wrap; gap: 8px; padding: 12px 16px; }
  .sticky-label { display: none; }
  .mockup-card { padding: 28px 20px; }
  .hero { padding: 48px 0 64px; }
  .bonus-section { padding: 32px 20px; }
  .benefits-highlight { padding: 24px 22px; font-size: 0.95rem; }
}

/* ===== INLINE STYLE UTILITIES ===== */
.divider-hero  { margin: 16px 0 20px; }
.divider-cta   { margin-bottom: 16px; }
.section-subtitle-spaced { margin-top: 16px; }
.section-subtitle-wide { max-width: 700px; }
.btn-offer     { max-width: 100%; font-size: 1.1rem; padding: 20px; }
.btn-cta-large { font-size: 1.15rem; padding: 22px 56px; max-width: 500px; }

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