/* =====================================================
   MÉTODO SUEÑITO DEL BEBÉ — Estilos Completos (Mobile-First High Converting)
   Paleta: Azul bebê (#4a90d9), Rosa (#f06292), Cream (#fef9f0), Navy (#0d2550)
   Fontes: Nunito (corpo) + Poppins (títulos)
   ===================================================== */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }
body {
  font-family: 'Nunito', Arial, sans-serif;
  color: #1a2b3c;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 70px; /* Espaço para o botão flutuante mobile */
}

/* === VARIÁVEIS === */
:root {
  --blue:   #84b7ec; /* Soft baby blue from mockups */
  --blue-d: #2a5a8f; /* Medium-dark blue for accents */
  --pink:   #eb5b81; /* Soft pink from mockups */
  --pink-d: #b81e4b; /* Deep pink for badges/buttons */
  --navy:   #1b365d; /* Warm navy from mockups */
  --cream:  #faf4ec; /* Warm cream background from mockups */
  --cream2: #faf5ef; /* Secondary soft cream background */
  --gold:   #ffd54f; /* Accent gold for stars/timer */
  --white:  #ffffff;
  --text:   #2d3748; /* Off-black for better readability */
  --text-s: #4a5568;
}

/* === UTILITÁRIOS === */
.container   { max-width: 920px; margin: 0 auto; padding: 0 16px; }
.text-center { text-align: center; }
.white-text  { color: var(--white) !important; }
.pink-text   { color: var(--pink); }

/* === TOP URGENCY BANNER === */
.top-urgency-bar {
  background: linear-gradient(90deg, var(--pink-d) 0%, var(--pink) 100%);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  text-align: center;
  padding: 8px 12px;
  letter-spacing: 0.3px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.bar-divider { opacity: 0.6; }
.top-urgency-bar strong { color: var(--gold); font-size: 0.85rem; }

/* === BLOCOS BASE === */
.block { width: 100%; padding: 50px 0; }

.cream-block     { background: var(--cream); }
.white-block     { background: var(--white); }
.blue-block      { background: linear-gradient(135deg, var(--navy) 0%, var(--blue-d) 100%); }
.bonus-block     { background: var(--cream2); }
.offer-block     { background: var(--cream); }
.guarantee-block { background: linear-gradient(135deg, #ecf5fd, #d1e6f9); }
.final-block     { background: linear-gradient(135deg, var(--navy) 0%, var(--blue-d) 100%); padding: 60px 0; }

/* === PRE-TAG === */
.pre-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: var(--blue-d);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}
.white-tag { color: rgba(255,255,255,0.8); }

/* === TÍTULOS === */
.section-h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.4rem, 4.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--navy);
  text-align: center;
  margin-bottom: 1.8rem;
}

/* === BOTÃO CTA PRINCIPAL === */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--pink), var(--pink-d));
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  padding: 16px 32px;
  min-height: 52px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: filter 0.2s, transform 0.15s;
  box-shadow: 0 6px 20px rgba(235, 91, 129, 0.35);
  text-align: center;
}
.btn-cta:hover { filter: brightness(1.08); transform: translateY(-2px); }
.btn-cta:active { transform: translateY(1px); }
.btn-cta.btn-big  { font-size: 1.05rem; padding: 18px 36px; min-height: 56px; }
.btn-cta.btn-full { display: flex; width: 100%; text-align: center; }

.btn-white-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  box-shadow: none;
}
.btn-white-outline:hover { background: rgba(255,255,255,0.15); }

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(235, 91, 129, 0.35); }
  50%       { box-shadow: 0 4px 32px rgba(235, 91, 129, 0.55), 0 0 0 8px rgba(235, 91, 129, 0.14); }
}
.pulse { animation: pulse 2.2s infinite; }

/* ===================================================
   BLOCO 1 — HERO
   =================================================== */
.hero-block {
  background: linear-gradient(160deg, #ecf5fd 0%, var(--cream) 60%, #fdf0f4 100%);
  padding: 36px 0 48px;
  border-bottom: 4px solid var(--blue);
}

.hero-grid {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
}

.hero-text { flex: 1; min-width: 290px; }

.hero-seal {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.hero-h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 5.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 14px;
}
.h1-pink { color: var(--pink); }
.h1-blue { color: var(--blue); }

.hero-sub {
  font-size: 1rem;
  color: var(--text-s);
  line-height: 1.6;
  margin-bottom: 8px;
}

.hero-note-small {
  font-size: 0.8rem;
  color: #7a8a9a;
  margin-bottom: 18px;
  font-style: italic;
}

.hero-checks {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 22px;
}

.hero-checks span {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--blue-d);
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-micro {
  font-size: 0.75rem;
  color: #7a8a9a;
  margin-top: 10px;
  text-align: center;
}

/* Coluna imagem */
.hero-img { flex: 1; max-width: 480px; display: flex; justify-content: center; align-items: center; margin: 12px 0; }

.product-mockup { position: relative; display: inline-block; width: 100%; }

.product-img {
  width: 100%;
  max-width: 460px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(74,144,217,0.3);
  display: block;
}

.product-badge {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.badge-ebook {
  top: -10px;
  left: -14px;
  color: var(--blue-d);
  border: 2px solid var(--blue);
  font-size: 1.1rem;
}

.badge-acceso {
  bottom: 8px;
  left: -14px;
  color: var(--pink-d);
  border: 2px solid var(--pink);
  font-size: 1.1rem;
}

/* ===================================================
   BLOCO 2 — ¿QUÉ ES? / PARA TI SI
   =================================================== */
.section-body { font-size: 0.98rem; color: var(--text-s); line-height: 1.7; }
.center-text { text-align: center; }

.for-you-box {
  background: #fff;
  border: 2px solid #bbdefb;
  border-radius: 16px;
  padding: 24px 20px;
  max-width: 720px;
  margin: 0 auto 1.8rem;
  box-shadow: 0 4px 15px rgba(74,144,217,0.08);
}

.for-you-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  text-align: center;
}

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

.for-you-list li {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.li-check {
  color: #2e7d32;
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ===================================================
   BLOCO 3 — APRENDERÁS
   =================================================== */
.learn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 1.8rem;
}

.learn-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  backdrop-filter: blur(4px);
}

.learn-icon { font-size: 2rem; margin-bottom: 8px; display: block; }

.learn-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.35;
}

.learn-card p { font-size: 0.82rem; color: rgba(255,255,255,0.85); line-height: 1.55; }

/* ===================================================
   BLOCO 4 — BENEFÍCIOS
   =================================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  margin-bottom: 1rem;
}

.benefit-card {
  background: #f0f7ff;
  border: 1px solid #bbdefb;
  border-radius: 14px;
  padding: 20px 14px;
  text-align: center;
}

.ben-icon { font-size: 1.8rem; display: block; margin-bottom: 8px; }

.benefit-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.benefit-card p { font-size: 0.78rem; color: var(--text-s); line-height: 1.45; }

.disclaimer-small {
  font-size: 0.72rem;
  color: #9aa5b4;
  text-align: center;
  margin-top: 1.2rem;
  font-style: italic;
}

/* ===================================================
   BLOCO 5 — PARA QUEM É
   =================================================== */
.for-who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-bottom: 1rem;
}

.for-who-card {
  background: #fff;
  border: 1px solid #f8bbd0;
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
}

.fw-icon { font-size: 1.8rem; display: block; margin-bottom: 8px; }

.for-who-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
}

.for-who-card p { font-size: 0.78rem; color: var(--text-s); line-height: 1.45; }

/* ===================================================
   BLOCO 6 — BÔNUS (5 bônus)
   =================================================== */
.bonus-tag-label {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  color: var(--pink-d);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.bonus-intro {
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-s);
  max-width: 680px;
  margin: -0.8rem auto 1.8rem;
  line-height: 1.6;
}

.bonus-list { display: flex; flex-direction: column; gap: 14px; max-width: 860px; margin: 0 auto; }

.bonus-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 2px solid #f8bbd0;
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 3px 10px rgba(240,98,146,0.06);
}

.bonus-header-mobile { display: flex; align-items: center; gap: 10px; }

.bonus-num-badge {
  background: var(--pink-d);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.bonus-emoji { font-size: 2rem; flex-shrink: 0; }

.bonus-body { flex: 1; min-width: 180px; }

.bonus-body h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.3;
}

.bonus-body p { font-size: 0.8rem; color: var(--text-s); line-height: 1.5; }

.bonus-anchor { text-align: center; flex-shrink: 0; }

.anc-old {
  display: block;
  font-size: 0.75rem;
  color: #aaa;
  text-decoration: line-through;
}

.anc-free {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  color: #2e7d32;
  background: #e8f5e9;
  border-radius: 6px;
  padding: 4px 8px;
  margin-top: 2px;
}

.bonus-total-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #fce4ec, #f8bbd0);
  border: 2px dashed var(--pink);
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}

.btn-today { color: var(--pink-d); font-weight: 800; }

/* ===================================================
   BLOCO 7 — OFERTA / PREÇO
   =================================================== */
.offer-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 880px;
  margin: 0 auto;
}

.offer-value-col { flex: 1; min-width: 280px; }

.offer-value-list {
  list-style: none;
  background: #fff;
  border: 1px solid #bbdefb;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.offer-value-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-size: 0.85rem;
  color: var(--text);
  border-bottom: 1px solid #f0f4f8;
}

.ov-check { color: var(--blue); font-weight: 900; flex-shrink: 0; }
.ov-val { margin-left: auto; font-weight: 700; color: #888; white-space: nowrap; font-size: 0.78rem; }

.ov-total-row {
  background: #e3f2fd;
  font-family: 'Poppins', sans-serif;
  font-weight: 800 !important;
  color: var(--navy) !important;
  font-size: 0.95rem !important;
  border-bottom: none !important;
}

.ov-total { color: var(--pink-d) !important; font-size: 1.05rem !important; }

/* Coluna preço */
.offer-price-col { flex: 0 1 320px; width: 100%; }

.offer-cover-img {
  width: 100%;
  max-width: 180px;
  border-radius: 12px;
  display: block;
  margin: 0 auto 16px;
  box-shadow: 0 8px 20px rgba(74,144,217,0.25);
}

.offer-price-box {
  background: #fff;
  border: 2px solid #bbdefb;
  border-radius: 16px;
  padding: 22px 18px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(74,144,217,0.1);
}

.op-not-paying { font-size: 0.82rem; color: #888; margin-bottom: 4px; }
.op-access { font-family: 'Poppins', sans-serif; font-size: 0.75rem; font-weight: 800; letter-spacing: 1px; color: var(--text-s); }

.op-price {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--pink-d);
  line-height: 1;
  margin: 6px 0;
}
.op-price span { font-size: 0.95rem; font-weight: 600; color: #888; }

.op-local { font-size: 0.7rem; color: #aaa; margin-bottom: 16px; }
.op-micro { font-size: 0.72rem; color: #9aa5b4; margin-top: 10px; }

.trust-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #eef2f7;
}

.trust-item { text-align: center; }
.trust-item span { font-size: 1.3rem; display: block; }
.trust-item small { font-size: 0.6rem; font-weight: 700; color: #7a8a9a; line-height: 1.25; }

.cta-strip {
  margin-top: 2rem;
  background: linear-gradient(135deg, #fce4ec, #e3f2fd);
  border-radius: 16px;
  padding: 24px 18px;
  text-align: center;
}

.cta-strip p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

/* ===================================================
   BLOCO 8 — GARANTIA
   =================================================== */
.guarantee-inner {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
  max-width: 780px;
  margin: 0 auto;
}

.guarantee-seal {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, #ffd54f, #f9a825);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 6px 18px rgba(249,168,37,0.35);
  padding: 8px;
  margin: 0 auto;
}

.seal-emoji { font-size: 2rem; line-height: 1; display: block; }
.guarantee-seal strong { font-family: 'Poppins', sans-serif; font-size: 0.85rem; font-weight: 900; color: #fff; }
.guarantee-seal small { font-size: 0.6rem; font-weight: 700; color: rgba(255,255,255,0.9); }

.guarantee-body { flex: 1; min-width: 260px; }
.guarantee-body h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.guarantee-body p { font-size: 0.88rem; color: #2d4a6a; line-height: 1.65; margin-bottom: 6px; }
.guarantee-seal-text { font-family: 'Poppins', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; color: var(--blue-d); }

/* ===================================================
   BLOCO 9 — FAQ
   =================================================== */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #bbdefb; }

.faq-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 16px 4px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-btn:hover { color: var(--blue); }

.faq-ic {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--pink);
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}

.faq-ans {
  display: none;
  padding: 0 4px 16px;
  font-size: 0.85rem;
  color: var(--text-s);
  line-height: 1.65;
}

.faq-item.open .faq-ic { transform: rotate(45deg); }
.faq-item.open .faq-ans { display: block; }

/* ===================================================
   BLOCO 10 — CTA FINAL
   =================================================== */
.final-body {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  line-height: 1.6;
}

.final-price-display {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.fp-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}

.fp-val {
  font-family: 'Poppins', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: #ffd4e8;
  line-height: 1;
}

.final-micro {
  margin-top: 14px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
}

/* ===================================================
   BARRA FLUTUANTE MOBILE (Sticky Bottom CTA)
   =================================================== */
.sticky-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 3px solid var(--pink);
  padding: 10px 14px;
  box-shadow: 0 -6px 25px rgba(0,0,0,0.18);
  z-index: 9999;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  transform: translateY(120%);
  transition: transform 0.3s cubic-bezier(0.1, 0.9, 0.2, 1);
}

.sticky-bottom-bar.show { transform: translateY(0); }

.sticky-bar-info { display: flex; flex-direction: column; }
.sticky-bar-title { font-family: 'Poppins', sans-serif; font-size: 0.78rem; font-weight: 800; color: var(--navy); line-height: 1.2; }
.sticky-bar-price { font-family: 'Poppins', sans-serif; font-size: 0.95rem; font-weight: 900; color: var(--pink-d); }

.btn-sticky {
  font-size: 0.85rem !important;
  padding: 10px 18px !important;
  min-height: 44px !important;
  box-shadow: 0 4px 12px rgba(240,98,146,0.3) !important;
  white-space: nowrap;
}



/* ===================================================
   MOCKUPS & PLACEHOLDERS (BASE MOBILE-FIRST)
   =================================================== */
.preview-mockup-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 16px;
}
.preview-pages-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  display: block;
}
.bonus-media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}
.bonus-mockup-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.12));
}

/* ===================================================
   TESTIMONIALS (BASE MOBILE-FIRST)
   =================================================== */
.testimonials-block { background: var(--white); }
.testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 1.5rem;
}
.testimonial-card {
  background: #fff;
  border: 1px solid #f0f4f8;
  border-radius: 14px;
  padding: 20px 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.t-stars { color: #ffd54f; font-size: 1rem; margin-bottom: 8px; }
.t-text { font-size: 0.88rem; line-height: 1.55; color: var(--text-s); margin-bottom: 14px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 10px; }
.t-avatar-placeholder { width: 36px; height: 36px; background: #e3f2fd; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.t-author strong { font-size: 0.84rem; color: var(--navy); display: block; }
.t-author small { font-size: 0.72rem; color: #7a8a9a; display: block; }

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: var(--navy);
  padding: 28px 0;
  text-align: center;
}

.footer-legal {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  max-width: 700px;
  margin: 0 auto 12px;
  line-height: 1.55;
}

.footer-links { margin-bottom: 8px; }
.footer-links span { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin: 0 4px; }

.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.35); }

/* ===================================================
   RESPONSIVO ESPECÍFICO MOBILE (< 680px)
   =================================================== */
@media (max-width: 680px) {
  .block { padding: 40px 0; }
  
  /* Exibir a barra flutuante mobile */
  .sticky-bottom-bar { display: flex; }
  
  .btn-full-mobile { display: flex; width: 100%; text-align: center; justify-content: center; }
  
  /* Ajustes dos bônus no mobile */
  .bonus-row {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 16px 14px;
    gap: 10px;
  }
  .bonus-header-mobile { width: 100%; justify-content: space-between; margin-bottom: 4px; }
  .bonus-anchor { width: 100%; display: flex; align-items: center; justify-content: space-between; border-top: 1px dashed #f8bbd0; padding-top: 10px; margin-top: 6px; }
  .anc-free { margin-top: 0; }
  
  .offer-wrapper { flex-direction: column; }
  .offer-price-col { flex: unset; width: 100%; }
  
  .guarantee-inner { flex-direction: column; text-align: center; }
  
  .section-h2 { font-size: 1.35rem; }
  .learn-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .for-who-grid { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 1.6rem; }
}

/* ===================================================
   RESPONSIVO ESPECÍFICO DESKTOP (> 992px)
   =================================================== */
@media (min-width: 992px) {
  /* Aumentar largura do contêiner e espaçamentos */
  .container { max-width: 1140px; }
  .block { padding: 80px 0; }

  /* Otimização Hero Desktop */
  .hero-block { padding: 80px 0; }
  .hero-grid { gap: 48px; flex-wrap: nowrap; }
  .hero-text { flex: 1.2; }
  .hero-img { flex: 1; max-width: 520px; }
  .product-img { width: 100%; max-width: 480px; }
  .badge-ebook { width: 72px; height: 72px; font-size: 0.65rem; top: -15px; left: -20px; }
  .badge-acceso { width: 72px; height: 72px; font-size: 0.65rem; bottom: 15px; left: -20px; }
  .hero-h1 { margin-bottom: 20px; }
  .hero-sub { font-size: 1.15rem; margin-bottom: 12px; }
  .hero-note-small { font-size: 0.88rem; margin-bottom: 24px; }
  .hero-checks { flex-direction: row; flex-wrap: wrap; gap: 12px 24px; margin-bottom: 30px; }
  .hero-checks span { font-size: 0.95rem; }

  /* Correção grid de 5 itens */
  .learn-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
  }
  .learn-card:nth-child(1) { grid-column: span 2; }
  .learn-card:nth-child(2) { grid-column: span 2; }
  .learn-card:nth-child(3) { grid-column: span 2; }
  .learn-card:nth-child(4) { grid-column: 2 / span 2; }
  .learn-card:nth-child(5) { grid-column: 4 / span 2; }
  .learn-card h3 { font-size: 1.05rem; }
  .learn-card p { font-size: 0.88rem; }

  /* Ajustes espaçamentos grids */
  .benefits-grid { gap: 20px; }
  .benefit-card { padding: 24px 16px; }
  .benefit-card h4 { font-size: 0.95rem; }
  .benefit-card p { font-size: 0.82rem; }

  .for-who-grid { gap: 20px; }
  .for-who-card { padding: 24px 20px; }
  .for-who-card h4 { font-size: 0.95rem; }
  .for-who-card p { font-size: 0.82rem; }

  /* Grid de Bônus Premium */
  .bonus-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1140px;
  }
  .bonus-row {
    grid-column: span 2;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
    height: 100%;
    justify-content: space-between;
  }
  .bonus-row:nth-child(4) { grid-column: 2 / span 2; }
  .bonus-row:nth-child(5) { grid-column: 4 / span 2; }
  .bonus-body { margin: 15px 0; min-width: unset; }
  .bonus-body h3 { font-size: 1.05rem; margin-bottom: 8px; }
  .bonus-body p { font-size: 0.85rem; }
  .bonus-anchor {
    width: 100%;
    border-top: 1px dashed #f8bbd0;
    padding-top: 15px;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }

  /* Grid de Testemunhos */
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 2rem;
  }
  .testimonial-card {
    padding: 28px 24px;
    box-shadow: 0 10px 25px rgba(74, 144, 217, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s;
  }
  .testimonial-card:hover { transform: translateY(-4px); }
  .t-stars { color: #f9a825; font-size: 1.1rem; margin-bottom: 12px; }
  .t-text { font-size: 0.95rem; line-height: 1.6; margin-bottom: 20px; }
  .t-author { gap: 12px; }
  .t-avatar-placeholder { width: 44px; height: 44px; font-size: 1.4rem; }
  .t-author strong { font-size: 0.92rem; }
  .t-author small { font-size: 0.78rem; }

  /* Caixa de Oferta Unificada e Centrada */
  .offer-wrapper {
    display: flex;
    gap: 0;
    align-items: stretch;
    background: #ffffff;
    border: 2px solid #e3f2fd;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(74, 144, 217, 0.08);
    max-width: 960px;
    margin: 0 auto 2.5rem;
  }
  .offer-value-col {
    flex: 1.2;
    padding: 40px;
    border-right: 1px solid #e3f2fd;
  }
  .offer-value-list {
    border: none;
    box-shadow: none;
  }
  .offer-value-list li {
    padding: 16px 0;
    font-size: 0.95rem;
  }
  .offer-value-list li:first-child { padding-top: 0; }
  .offer-value-list li:last-child { border-bottom: none; }
  .ov-val { font-size: 0.88rem; }
  .ov-total-row {
    background: transparent !important;
    border-top: 2px solid var(--blue) !important;
    padding-top: 20px !important;
    margin-top: 10px;
  }

  .offer-price-col {
    flex: 1;
    padding: 40px;
    background: #fbfdff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .offer-cover-img {
    max-width: 140px;
    margin-bottom: 24px;
    box-shadow: 0 6px 15px rgba(74, 144, 217, 0.2);
  }
  .offer-price-box {
    border: none;
    box-shadow: none;
    padding: 0;
    width: 100%;
    background: transparent;
  }
  .op-not-paying { font-size: 0.95rem; }
  .op-price { font-size: 3.6rem; }
  .op-price span { font-size: 1.1rem; }
  .op-local { font-size: 0.78rem; margin-bottom: 20px; }
  .op-micro { font-size: 0.78rem; margin-top: 14px; }
  
  /* Ajustes FAQ */
  .faq-wrap { margin-top: 2rem; }
  .faq-btn { font-size: 1.05rem; padding: 20px 8px; }
  .faq-ans { font-size: 0.95rem; padding: 0 8px 20px; }

  /* Ajustes Preview Mockup Desktop */
  .preview-mockup-container {
    max-width: 800px;
  }
}

/* ===================================================
   ADDITIONAL STYLES FOR RESTRUCTURED LTM DESIGN
   =================================================== */

/* Font size upgrades for accessibility & reading on mobile */
.section-body {
  font-size: 1.05rem;
  line-height: 1.65;
}
p, li {
  font-size: 1.02rem;
  line-height: 1.6;
}

/* ===================================================
   CSS FIXES - responsive hardening and safe wrapping
   =================================================== */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
}

.container,
.hero-grid,
.offer-wrapper,
.qualification-grid,
.calma-grid,
.steps-grid,
.build-grid,
.bonus-list,
.ebook-details-grid,
.guarantee-inner,
.cta-strip,
.offer-price-box,
.hero-price-action {
  min-width: 0;
}

.hero-h1,
.section-h2,
.qualification-title,
.calma-card strong,
.step-card h4,
.build-card h4,
.bonus-body h3,
.offer-receive-title,
.faq-btn,
.sticky-bar-title,
.btn-cta {
  overflow-wrap: anywhere;
  word-break: normal;
}

.btn-cta,
.btn-sticky {
  max-width: 100%;
  white-space: normal;
}

.qualification-col.is-for .qualification-list li::before {
  content: "\2713";
}

.qualification-col.is-not-for .qualification-list li::before {
  content: "\2715";
}

.qualification-list li::before {
  content: "\2022";
}

@media (max-width: 680px) {
  body {
    padding-bottom: 86px;
  }

  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .top-urgency-bar {
    font-size: 0.68rem;
    line-height: 1.35;
    gap: 6px;
  }

  .hero-block {
    padding-top: 34px;
    padding-bottom: 42px;
  }

  .hero-price-action,
  .cta-strip,
  .offer-price-box,
  .qualification-col,
  .calma-card,
  .step-card,
  .build-card {
    border-radius: 12px;
  }

  .offer-value-list li {
    align-items: flex-start;
  }

  .sticky-bottom-bar {
    min-height: 76px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  }

  .sticky-bar-info {
    min-width: 0;
  }

  .btn-sticky {
    flex: 0 0 auto;
    max-width: 48%;
    padding-left: 12px !important;
    padding-right: 12px !important;
    font-size: 0.78rem !important;
    line-height: 1.15;
  }
}

@media (max-width: 360px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-h1 {
    font-size: 1.48rem;
  }

  .sticky-bar-title {
    font-size: 0.7rem;
  }

  .sticky-bar-price {
    font-size: 0.86rem;
  }
}

/* qualification-grid: is-for vs is-not-for */
.qualification-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.qualification-col {
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.qualification-col.is-for {
  background-color: #f1f8e9; /* soft green tint */
  border: 1px solid #c5e1a5;
}
.qualification-col.is-not-for {
  background-color: #ffebee; /* soft red tint */
  border: 1px solid #ffcdd2;
}
.qualification-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--navy);
}
.qualification-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.qualification-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.qualification-list li:last-child {
  margin-bottom: 0;
}
.qualification-list li::before {
  content: "•";
  color: var(--navy);
  font-weight: bold;
  flex-shrink: 0;
}
.qualification-col.is-for .qualification-list li::before {
  content: "✓";
  color: #558b2f;
}
.qualification-col.is-not-for .qualification-list li::before {
  content: "✕";
  color: #c62828;
}

/* calma-grid: C.A.L.M.A. method display */
.calma-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 900px;
  margin: 2rem auto;
}
.calma-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.calma-letter {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: #ffd4e8;
  line-height: 1;
}
.calma-card strong {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  color: #fff;
}
.calma-card p {
  font-size: 0.92rem;
  color: #e3f2fd;
  margin: 0;
}
.calma-footer {
  max-width: 700px;
  margin: 2.5rem auto 0;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffd4e8;
  line-height: 1.5;
}

/* steps-grid: 3 simple steps */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 2rem auto 0;
}
.step-card {
  background: #fff;
  border: 1px solid #e3f2fd;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.step-num {
  width: 48px;
  height: 48px;
  background: var(--blue);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 10px rgba(74, 144, 217, 0.2);
}
.step-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.step-card p {
  font-size: 0.92rem;
  color: var(--text-s);
  margin: 0;
}

/* ebook-details-grid */
.ebook-details-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}
.ebook-showcase-img {
  width: 100%;
  max-width: 260px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(74,144,217,0.18);
}
.ebook-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ebook-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1rem;
  color: var(--text);
}
.ebook-features-list li span {
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* build-grid: what the method helps to build */
.build-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 900px;
  margin: 2rem auto 0;
}
.build-card {
  background: #fff;
  border: 1px solid #e3f2fd;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.build-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.build-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.build-card p {
  font-size: 0.92rem;
  color: var(--text-s);
  margin: 0;
}

/* Hero elements and Pricing tag */
.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 1.5rem 0;
}
.bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text);
}
.bullet-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}
.hero-price-action {
  background: rgba(74, 144, 217, 0.04);
  border: 1px dashed var(--blue);
  border-radius: 16px;
  padding: 20px;
  margin-top: 1.5rem;
  text-align: center;
}
.hero-price-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.price-highlight {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--pink-d);
}

.offer-receive-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  text-align: left;
  padding-left: 4px;
}

/* Responsive upgrades for tablet and desktop */
@media (min-width: 768px) {
  .qualification-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .calma-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
  }
  .calma-card {
    text-align: center;
    align-items: center;
    padding: 20px 12px;
  }
  .calma-letter {
    font-size: 2.5rem;
  }
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .build-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
  }
  .build-card {
    padding: 20px 12px;
  }
  .ebook-details-grid {
    flex-direction: row;
    align-items: center;
    gap: 50px;
  }
  .ebook-mockup-col {
    flex: 1;
    text-align: right;
  }
  .ebook-list-col {
    flex: 1.3;
  }
  .hero-price-action {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===================================================
   MOBILE-HERO-IMG (Bundle no topo mobile)
   =================================================== */
.mobile-hero-img {
  display: none;
  width: 100%;
  margin: 1.2rem 0;
  text-align: center;
}

.mobile-product-img {
  width: 90%;
  max-width: 360px;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(74, 144, 217, 0.22);
  display: inline-block;
}

/* ===================================================
   RESPONSIVO CONSOLIDADO — MOBILE (< 767px)
   =================================================== */
@media (max-width: 767px) {
  /* Mostrar bundle mobile, esconder coluna desktop */
  .mobile-hero-img {
    display: block;
  }
  .hero-img {
    display: none !important;
  }

  /* Hero text */
  .hero-grid {
    flex-direction: column;
    gap: 0;
  }
  .hero-text {
    width: 100%;
    text-align: center;
  }
  .hero-h1 {
    font-size: 1.65rem;
    text-align: center;
    line-height: 1.22;
    margin-bottom: 10px;
  }
  .h1-pink, .h1-blue {
    display: inline;
  }
  .hero-sub {
    font-size: 0.92rem;
    text-align: center;
    line-height: 1.55;
  }
  .hero-seal {
    display: inline-block;
    margin: 0 auto 10px;
    text-align: center;
    font-size: 0.56rem;
    letter-spacing: 1.2px;
    padding: 4px 12px;
  }
  .hero-note-small {
    text-align: center;
    font-size: 0.78rem;
  }

  /* Bullets */
  .hero-bullets {
    align-items: flex-start;
    margin: 1rem auto;
    max-width: 340px;
  }
  .bullet-item {
    text-align: left;
    font-size: 0.88rem;
  }
  .hero-checks {
    align-items: center;
  }

  /* Price action */
  .hero-price-action {
    text-align: center;
    padding: 16px;
    margin-top: 1rem;
  }
  .hero-price-tag {
    font-size: 1.1rem;
  }
  .price-highlight {
    font-size: 1.5rem;
  }

  /* Ebook showcase */
  .ebook-details-grid {
    flex-direction: column !important;
  }
  .ebook-showcase-img {
    max-width: 280px !important;
    margin: 0 auto;
  }

  /* Qualification grid */
  .qualification-grid {
    grid-template-columns: 1fr !important;
  }

  /* CALMA cards */
  .calma-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  /* Steps grid */
  .steps-grid {
    grid-template-columns: 1fr !important;
  }

  /* Build grid */
  .build-grid {
    grid-template-columns: 1fr !important;
  }

  /* Offer section */
  .offer-cover-img {
    max-width: 300px !important;
    margin: 0 auto;
  }

  /* Section titles */
  .section-h2 {
    font-size: 1.3rem;
    line-height: 1.3;
  }
  .pre-tag {
    font-size: 0.6rem;
  }
}

/* ===================================================
   RESPONSIVO CONSOLIDADO — TABLET (768px - 991px)
   =================================================== */
@media (min-width: 768px) and (max-width: 991px) {
  .mobile-hero-img {
    display: none;
  }
  .hero-img {
    display: flex;
    flex: 0 0 320px;
  }
  .product-img {
    max-width: 300px;
  }
  .hero-grid {
    flex-wrap: nowrap;
    gap: 24px;
  }
}

/* ===================================================
   FINAL POLISH - stronger mockups and inside previews
   =================================================== */
.hero-img {
  max-width: 560px;
}

.product-img {
  max-width: 540px;
  border-radius: 18px;
}

.hero-price-action .btn-cta {
  font-size: 1.12rem;
  min-height: 64px;
  padding: 20px 38px;
}

.mobile-product-img {
  width: 100%;
  max-width: 430px;
}

.ebook-details-grid {
  max-width: 980px;
}

.ebook-showcase-img {
  max-width: 360px;
}

.offer-cover-img {
  max-width: 260px;
}

.bonus-media {
  width: 86px;
  height: 86px;
}

.bonus-mockup-img {
  filter: drop-shadow(0 8px 12px rgba(0,0,0,0.14));
}

.inside-preview-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  max-width: 1080px;
  margin: 3rem auto 0;
}

.inside-preview-card {
  background: #fff;
  border: 1px solid #e3f2fd;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 8px 22px rgba(27,54,93,0.08);
  text-align: center;
}

.inside-preview-card img {
  width: 100%;
  aspect-ratio: 9 / 13;
  object-fit: cover;
  object-position: top center;
  border-radius: 8px;
  border: 1px solid #f0f4f8;
  background: #fff;
}

.inside-preview-card figcaption {
  font-family: 'Poppins', sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--navy);
  margin-top: 10px;
  line-height: 1.25;
}

@media (min-width: 992px) {
  .hero-grid {
    align-items: center;
  }

  .hero-img {
    flex: 1.1;
    max-width: 580px;
  }

  .hero-text {
    flex: 1;
  }

  .product-img {
    max-width: 560px;
  }

  .ebook-showcase-img {
    max-width: 400px;
  }

  .offer-cover-img {
    max-width: 220px;
  }

  .bonus-media {
    width: 96px;
    height: 96px;
  }
}

@media (max-width: 991px) {
  .inside-preview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .hero-price-action .btn-cta {
    font-size: 1rem;
    min-height: 58px;
    padding: 18px 24px;
  }

  .mobile-product-img {
    max-width: 390px;
  }

  .ebook-showcase-img,
  .offer-cover-img {
    max-width: 340px !important;
  }

  .bonus-media {
    width: 92px;
    height: 92px;
  }

  .inside-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 2rem;
  }

  .inside-preview-card {
    padding: 8px;
  }

  .inside-preview-card figcaption {
    font-size: 0.68rem;
  }
}

@media (max-width: 390px) {
  .inside-preview-grid {
    gap: 10px;
  }

  .mobile-product-img,
  .ebook-showcase-img,
  .offer-cover-img {
    max-width: 310px !important;
  }
}

/* ===================================================
   BONUS SECTION REWORK - compact, stronger mockups
   =================================================== */
.bonus-block .container {
  max-width: 1180px;
}

.bonus-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 2rem auto 0;
}

.bonus-row {
  grid-column: span 2;
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: stretch;
  gap: 14px;
  min-height: 330px;
  padding: 22px 22px 18px;
  border: 2px solid #f7a6c2;
  border-radius: 14px;
  background: #fff;
  text-align: center;
  box-shadow: 0 10px 28px rgba(184, 30, 75, 0.06);
}

.bonus-row:nth-child(4) {
  grid-column: 2 / span 2;
}

.bonus-row:nth-child(5) {
  grid-column: 4 / span 2;
}

.bonus-header-mobile {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  width: 100%;
}

.bonus-num-badge {
  grid-column: 1;
  justify-self: start;
  align-self: center;
  padding: 7px 14px;
  font-size: 0.7rem;
  border-radius: 999px;
}

.bonus-media {
  grid-column: 2;
  justify-self: center;
  width: 120px;
  height: 138px;
  padding: 0;
}

.bonus-mockup-img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  border-radius: 10px;
}

.bonus-cover-img {
  width: 86px;
  height: 122px;
  object-fit: cover;
  object-position: top center;
  box-shadow: 0 8px 18px rgba(27, 54, 93, 0.14);
}

.bonus-body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  margin: 0;
}

.bonus-body h3 {
  font-size: 1.12rem;
  line-height: 1.25;
  margin-bottom: 10px;
}

.bonus-body p {
  max-width: 320px;
  margin: 0 auto;
  font-size: 0.93rem;
  line-height: 1.55;
}

.bonus-anchor {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 44px;
  padding-top: 14px;
  border-top: 1px dashed #f7a6c2;
}

.anc-free {
  padding: 6px 14px;
  font-size: 0.86rem;
}

.bonus-total-banner {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 991px) {
  .bonus-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    max-width: 760px;
  }

  .bonus-row,
  .bonus-row:nth-child(4),
  .bonus-row:nth-child(5) {
    grid-column: auto;
    min-height: 320px;
  }

  .bonus-row:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 370px;
    width: 100%;
    justify-self: center;
  }
}

@media (max-width: 680px) {
  .bonus-list {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 430px;
  }

  .bonus-row,
  .bonus-row:nth-child(4),
  .bonus-row:nth-child(5) {
    grid-column: auto;
    display: grid;
    grid-template-rows: auto auto auto;
    min-height: unset;
    max-width: none;
    padding: 18px 16px;
    text-align: left;
  }

  .bonus-header-mobile {
    grid-template-columns: auto 1fr;
    gap: 16px;
    justify-content: start;
    margin: 0;
  }

  .bonus-num-badge {
    justify-self: start;
  }

  .bonus-media {
    justify-self: start;
    width: 104px;
    height: 122px;
  }

  .bonus-cover-img {
    width: 82px;
    height: 112px;
  }

  .bonus-body h3 {
    font-size: 1.02rem;
    margin-top: 2px;
  }

  .bonus-body p {
    max-width: none;
    margin: 0;
    font-size: 0.9rem;
  }

  .bonus-anchor {
    justify-content: flex-start;
    min-height: unset;
    margin: 0;
    padding-top: 12px;
  }
}

/* ===================================================
   MOBILE READABILITY + FINAL ALIGNMENT PASS
   =================================================== */
.bonus-media {
  width: 174px;
  height: 150px;
}

.bonus-row .bonus-mockup-img:not(.bonus-cover-img) {
  width: 174px;
  height: 150px;
  object-fit: contain;
}

.bonus-cover-img {
  width: 96px;
  height: 132px;
}

.bonus-body h3 {
  min-height: 2.8em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bonus-body p {
  min-height: 4.7em;
}

@media (max-width: 680px) {
  body {
    font-size: 17px;
  }

  .block {
    padding: 46px 0;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-h1 {
    font-size: 1.82rem;
    line-height: 1.18;
  }

  .section-h2 {
    font-size: 1.52rem;
    line-height: 1.28;
    margin-bottom: 1.35rem;
  }

  .section-body,
  p,
  li,
  .hero-sub,
  .bullet-item,
  .qualification-list li,
  .calma-card p,
  .step-card p,
  .ebook-features-list li,
  .build-card p,
  .bonus-intro,
  .bonus-body p,
  .guarantee-body p,
  .faq-ans,
  .final-body,
  .footer-legal {
    font-size: 1.02rem !important;
    line-height: 1.68 !important;
  }

  .pre-tag,
  .bonus-tag-label {
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .hero-price-tag {
    font-size: 1.18rem;
  }

  .price-highlight {
    font-size: 1.68rem;
  }

  .btn-cta {
    font-size: 1rem;
    line-height: 1.22;
    padding: 17px 22px;
  }

  .btn-micro,
  .op-micro,
  .final-micro {
    font-size: 0.86rem !important;
    line-height: 1.45 !important;
  }

  .qualification-col,
  .calma-card,
  .step-card,
  .build-card,
  .offer-price-box,
  .hero-price-action {
    padding: 22px 18px;
  }

  .ebook-features-list {
    gap: 14px;
  }

  .ebook-features-list li span {
    font-size: 1.35rem;
  }

  .bonus-row,
  .bonus-row:nth-child(4),
  .bonus-row:nth-child(5) {
    gap: 12px;
    padding: 18px;
    text-align: left;
  }

  .bonus-header-mobile {
    grid-template-columns: 88px 1fr;
    align-items: center;
  }

  .bonus-num-badge {
    align-self: center;
    padding: 7px 12px;
    font-size: 0.68rem;
  }

  .bonus-media {
    justify-self: center;
    width: 150px;
    height: 128px;
  }

  .bonus-row .bonus-mockup-img:not(.bonus-cover-img) {
    width: 150px;
    height: 128px;
  }

  .bonus-cover-img {
    width: 82px;
    height: 112px;
  }

  .bonus-body h3 {
    min-height: 0;
    justify-content: flex-start;
    font-size: 1.16rem;
    line-height: 1.28;
    margin-bottom: 8px;
  }

  .bonus-body p {
    min-height: 0;
  }

  .bonus-anchor {
    justify-content: flex-start;
  }

  .faq-btn {
    font-size: 1.04rem;
    line-height: 1.35;
    padding: 18px 4px;
  }

  .sticky-bottom-bar {
    gap: 12px;
  }

  .sticky-bar-title {
    font-size: 0.86rem;
  }

  .sticky-bar-price {
    font-size: 1.02rem;
  }

  .btn-sticky {
    max-width: 50%;
    font-size: 0.86rem !important;
  }
}

@media (max-width: 380px) {
  .hero-h1 {
    font-size: 1.66rem;
  }

  .section-h2 {
    font-size: 1.4rem;
  }

  .bonus-header-mobile {
    grid-template-columns: 82px 1fr;
  }

  .bonus-media,
  .bonus-row .bonus-mockup-img:not(.bonus-cover-img) {
    width: 136px;
    height: 116px;
  }

  .btn-sticky {
    max-width: 52%;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .pulse {
    animation: none;
  }

  .btn-cta,
  .sticky-bottom-bar,
  .faq-ic {
    transition: none;
  }
}

/* Final mobile readability and ebook section alignment pass */
.ebook-details-grid {
  align-items: center;
}

.ebook-list-col {
  min-width: 0;
  width: 100%;
}

.ebook-features-list {
  gap: 0;
}

.ebook-features-list li {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid #edf3f8;
  font-size: 1rem;
  line-height: 1.5;
}

.ebook-features-list li:last-child {
  border-bottom: 0;
}

.ebook-features-list .feature-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid #e1eef9;
  border-radius: 10px;
  background: #f7fbff;
  font-size: 1.12rem;
  line-height: 1;
}

.ebook-features-list .feature-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.ebook-features-list .feature-copy strong {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.32;
  color: var(--navy);
}

.ebook-features-list .feature-copy small {
  font-size: 0.96rem;
  line-height: 1.5;
  color: var(--text-s);
}

@media (min-width: 992px) {
  .ebook-details-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.92fr) minmax(460px, 1.08fr);
    gap: 46px;
    max-width: 1060px;
  }

  .ebook-mockup-col {
    width: 100%;
    text-align: center;
  }

  .ebook-showcase-img {
    max-width: 390px;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .block {
    padding: 44px 0;
  }

  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-h1 {
    font-size: clamp(1.55rem, 6.8vw, 1.82rem);
    line-height: 1.18;
  }

  .section-h2 {
    font-size: 1.42rem;
    line-height: 1.3;
    margin-bottom: 1.15rem;
  }

  .section-body,
  .hero-sub,
  .bullet-item,
  .qualification-list li,
  .calma-card p,
  .step-card p,
  .build-card p,
  .bonus-intro,
  .bonus-body p,
  .guarantee-body p,
  .faq-ans,
  .final-body,
  .footer-legal {
    font-size: 0.98rem !important;
    line-height: 1.6 !important;
  }

  .pre-tag,
  .bonus-tag-label {
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .btn-cta {
    font-size: 0.95rem;
    line-height: 1.22;
    padding: 16px 20px;
  }

  .faq-btn {
    font-size: 0.98rem;
    line-height: 1.35;
  }

  .ebook-details-grid {
    gap: 24px;
    max-width: 430px;
  }

  .ebook-showcase-img {
    max-width: 300px !important;
  }

  .ebook-features-list li {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    padding: 11px 0;
  }

  .ebook-features-list .feature-icon {
    width: 34px;
    height: 34px;
    font-size: 1.02rem;
  }

  .ebook-features-list .feature-copy strong {
    font-size: 0.96rem;
  }

  .ebook-features-list .feature-copy small {
    font-size: 0.93rem;
    line-height: 1.48;
  }
}

@media (max-width: 380px) {
  .hero-h1 {
    font-size: 1.54rem;
  }

  .section-h2 {
    font-size: 1.34rem;
  }

  .ebook-showcase-img {
    max-width: 280px !important;
  }
}

/* Visual polish pass: desktop and mobile */
@media (min-width: 992px) {
  .container {
    max-width: 1080px;
  }

  .hero-block {
    padding: 68px 0 62px;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 56px;
    align-items: center;
  }

  .hero-img {
    max-width: none;
    justify-content: flex-end;
  }

  .product-img {
    max-width: 420px;
  }

  .hero-price-action {
    max-width: 450px;
  }
}

.hero-seal,
.bonus-tag-label,
.pre-tag {
  text-wrap: balance;
}

.hero-bullets {
  gap: 10px;
}

.bullet-item {
  align-items: flex-start;
  padding: 10px 12px;
  border: 1px solid rgba(132, 183, 236, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.bullet-icon,
.build-icon,
.feature-icon,
.seal-emoji {
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
}

.bullet-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
  border: 1px solid #d9edf9;
  border-radius: 8px;
  background: #f8fcff;
  font-size: 0.98rem;
  line-height: 1;
}

.hero-price-action,
.qualification-col,
.calma-card,
.step-card,
.build-card,
.offer-wrapper,
.offer-price-box,
.guarantee-body,
.faq-wrap,
.bonus-row,
.bonus-total-banner {
  border-radius: 8px;
}

.qualification-col,
.calma-card,
.step-card,
.build-card,
.offer-price-box,
.bonus-row {
  box-shadow: 0 10px 30px rgba(27, 54, 93, 0.07);
}

.calma-card,
.step-card,
.build-card {
  border-color: #dfeefa;
}

.build-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dfeefa;
  border-radius: 8px;
  background: #f8fcff;
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.bonus-block .container {
  max-width: 1120px;
}

.bonus-list {
  max-width: 1080px;
  gap: 18px;
}

@media (min-width: 900px) {
  .bonus-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .bonus-row,
  .bonus-row:nth-child(4),
  .bonus-row:nth-child(5) {
    grid-column: auto;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 14px;
    min-height: 360px;
    padding: 24px 22px;
  }

  .bonus-row:nth-child(4) {
    grid-column: 1 / span 1;
  }

  .bonus-row:nth-child(5) {
    grid-column: 2 / span 1;
  }

  .bonus-header-mobile {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 14px;
    align-items: center;
    width: 100%;
  }

  .bonus-media {
    justify-self: center;
    width: 160px;
    height: 132px;
  }

  .bonus-row .bonus-mockup-img:not(.bonus-cover-img) {
    width: 160px;
    height: 132px;
  }

  .bonus-cover-img {
    width: 92px;
    height: 132px;
  }

  .bonus-body {
    margin: 0;
  }

  .bonus-body h3 {
    min-height: auto;
    font-size: 1.02rem;
    line-height: 1.25;
    margin-bottom: 8px;
    text-align: center;
  }

  .bonus-body p {
    min-height: auto;
    font-size: 0.92rem;
    line-height: 1.55;
    text-align: center;
  }

  .bonus-anchor {
    align-self: end;
    padding-top: 14px;
  }
}

.bonus-row {
  border: 1px solid rgba(235, 91, 129, 0.34);
  background: rgba(255, 255, 255, 0.94);
}

.bonus-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(27, 54, 93, 0.1);
}

.bonus-num-badge {
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(184, 30, 75, 0.18);
}

.anc-free {
  border-radius: 8px;
  background: #e8f7ea;
  color: #137333;
  border: 1px solid #cae9ce;
}

.bonus-total-banner {
  border: 1px solid rgba(235, 91, 129, 0.28);
  background: linear-gradient(90deg, #fff3f7 0%, #f2f8ff 100%);
}

.faq-wrap {
  border: 1px solid #d8eafa;
  background: #fff;
  padding: 6px 16px;
  box-shadow: 0 8px 28px rgba(27, 54, 93, 0.06);
}

.faq-btn {
  min-height: 56px;
}

.sticky-bottom-bar {
  border-radius: 12px 12px 0 0;
  border-top: 1px solid rgba(132, 183, 236, 0.28);
}

@media (max-width: 680px) {
  .top-urgency-bar {
    font-size: 0.66rem;
    line-height: 1.25;
    padding: 7px 10px;
  }

  .hero-block {
    padding: 38px 0 44px;
  }

  .hero-grid {
    gap: 18px;
  }

  .hero-seal {
    max-width: 310px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.66rem;
    letter-spacing: 1.1px;
  }

  .hero-h1 {
    max-width: 355px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .hero-sub {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .mobile-hero-img {
    margin: 14px auto 16px;
  }

  .mobile-product-img {
    max-width: 315px;
  }

  .hero-bullets {
    gap: 9px;
    margin-top: 6px;
  }

  .bullet-item {
    padding: 10px 11px;
    font-size: 0.95rem !important;
    line-height: 1.48 !important;
  }

  .bullet-icon {
    width: 27px;
    height: 27px;
    flex-basis: 27px;
    font-size: 0.92rem;
  }

  .hero-price-action {
    margin-top: 18px;
    padding: 18px 16px;
  }

  .hero-price-tag {
    font-size: 1.02rem;
    line-height: 1.25;
  }

  .price-highlight {
    font-size: 1.46rem;
  }

  .section-h2 {
    text-wrap: balance;
  }

  .qualification-col,
  .calma-card,
  .step-card,
  .build-card,
  .offer-price-box,
  .hero-price-action,
  .bonus-row {
    padding: 20px 16px;
  }

  .calma-grid,
  .build-grid,
  .steps-grid {
    gap: 12px;
  }

  .build-card {
    text-align: left;
  }

  .build-icon {
    margin-bottom: 10px;
  }

  .bonus-block {
    padding-top: 46px;
  }

  .bonus-intro {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }

  .bonus-list {
    gap: 14px;
    max-width: 390px;
  }

  .bonus-row,
  .bonus-row:nth-child(4),
  .bonus-row:nth-child(5) {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: left;
    min-height: 0;
  }

  .bonus-header-mobile {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 12px;
    align-items: center;
    width: 100%;
    margin-bottom: 0;
  }

  .bonus-num-badge {
    justify-self: start;
    font-size: 0.66rem;
    padding: 7px 10px;
  }

  .bonus-media {
    justify-self: end;
    width: 142px;
    height: 116px;
  }

  .bonus-row .bonus-mockup-img:not(.bonus-cover-img) {
    width: 142px;
    height: 116px;
  }

  .bonus-cover-img {
    width: 78px;
    height: 116px;
  }

  .bonus-body h3 {
    display: block;
    min-height: 0;
    text-align: left;
    font-size: 1.02rem;
    line-height: 1.28;
    margin-bottom: 7px;
  }

  .bonus-body p {
    min-height: 0;
    text-align: left;
    font-size: 0.95rem !important;
    line-height: 1.55 !important;
  }

  .bonus-anchor {
    justify-content: flex-start;
    border-top: 1px dashed #f4b5c9;
    padding-top: 11px;
  }

  .bonus-total-banner {
    max-width: 390px;
    padding: 12px 14px;
    line-height: 1.35;
  }

  .faq-wrap {
    padding: 2px 12px;
  }

  .sticky-bottom-bar {
    padding: 10px 12px;
    gap: 10px;
  }

  .sticky-bar-title {
    font-size: 0.78rem;
  }

  .sticky-bar-price {
    font-size: 0.96rem;
  }

  .btn-sticky {
    max-width: 48%;
    min-height: 42px;
    font-size: 0.78rem !important;
    padding: 10px 12px !important;
  }
}

@media (max-width: 380px) {
  .mobile-product-img {
    max-width: 292px;
  }

  .bonus-header-mobile {
    grid-template-columns: 76px 1fr;
  }

  .bonus-media,
  .bonus-row .bonus-mockup-img:not(.bonus-cover-img) {
    width: 128px;
    height: 106px;
  }

  .bonus-cover-img {
    width: 72px;
    height: 106px;
  }
}

/* Structure conversion pass: proof, mid offer, recap and choice */
.proof-block {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.proof-showcase {
  display: grid;
  gap: 28px;
  align-items: center;
}

.proof-pack {
  position: relative;
  display: flex;
  justify-content: center;
}

.proof-pack-img {
  width: min(100%, 360px);
  border-radius: 8px;
  filter: drop-shadow(0 18px 30px rgba(27, 54, 93, 0.14));
}

.proof-pack-badge {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #dcebf8;
  border-radius: 999px;
  padding: 8px 12px;
  box-shadow: 0 8px 18px rgba(27, 54, 93, 0.1);
}

.page-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.page-preview-card {
  min-height: 232px;
  padding: 18px 16px;
  border: 1px solid #dcebf8;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.98)),
    repeating-linear-gradient(0deg, transparent 0 22px, rgba(132, 183, 236, 0.12) 22px 23px);
  box-shadow: 0 14px 28px rgba(27, 54, 93, 0.08);
  position: relative;
  overflow: hidden;
}

.page-preview-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 7px;
  background: linear-gradient(90deg, var(--pink), var(--blue));
}

.page-preview-card:nth-child(2),
.page-preview-card:nth-child(3) {
  transform: translateY(12px);
}

.page-preview-kicker,
.mid-offer-kicker,
.recap-kicker {
  display: inline-flex;
  width: fit-content;
  font-family: 'Poppins', sans-serif;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: var(--pink-d);
  background: #fff1f5;
  border-radius: 999px;
  padding: 6px 9px;
  margin-bottom: 12px;
}

.page-preview-card h3 {
  font-family: 'Poppins', sans-serif;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.25;
  margin-bottom: 12px;
}

.page-preview-card p,
.page-preview-card li {
  color: var(--text-s);
  font-size: 0.9rem;
  line-height: 1.45;
}

.page-preview-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.page-preview-card li {
  position: relative;
  padding-left: 18px;
}

.page-preview-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.mini-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 12px 0;
}

.mini-timeline span,
.mini-table span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: 6px;
  background: #eef7ff;
  color: var(--blue-d);
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
}

.mini-table {
  display: grid;
  gap: 6px;
  margin: 12px 0;
}

.check-list-preview li::before {
  border-radius: 2px;
  background: #45b36b;
}

.proof-cta {
  margin-top: 2.3rem;
}

.mid-offer-strip {
  background: linear-gradient(90deg, var(--navy), var(--blue-d));
  padding: 28px 0;
}

.mid-offer-box {
  display: grid;
  gap: 18px;
  align-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 22px;
}

.mid-offer-kicker {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  margin-bottom: 8px;
}

.mid-offer-box h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  line-height: 1.22;
  margin-bottom: 6px;
}

.mid-offer-box p {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
}

.decision-block {
  background: #fff;
}

.fit-grid,
.choice-grid {
  display: grid;
  gap: 16px;
}

.fit-card,
.choice-card,
.recap-panel {
  border-radius: 8px;
  border: 1px solid #dcebf8;
  background: #fff;
  box-shadow: 0 12px 30px rgba(27, 54, 93, 0.07);
}

.fit-card,
.choice-card {
  padding: 22px;
}

.fit-card h3,
.choice-card h3,
.recap-copy h3 {
  font-family: 'Poppins', sans-serif;
  color: var(--navy);
  font-size: 1.2rem;
  line-height: 1.25;
  margin-bottom: 14px;
}

.fit-card ul {
  list-style: none;
  display: grid;
  gap: 11px;
}

.fit-card li {
  position: relative;
  padding-left: 24px;
  color: var(--text-s);
  line-height: 1.5;
}

.fit-card li::before {
  position: absolute;
  left: 0;
  top: 0.05em;
  font-weight: 900;
}

.fit-positive li::before {
  content: "✓";
  color: #178a46;
}

.fit-careful {
  background: #fff8fb;
  border-color: #f5c7d6;
}

.fit-careful li::before {
  content: "•";
  color: var(--pink-d);
}

.recap-panel {
  display: grid;
  gap: 20px;
  margin-top: 20px;
  padding: 24px;
  background: linear-gradient(135deg, #f8fcff 0%, #ffffff 55%, #fff6f9 100%);
}

.recap-copy p {
  color: var(--text-s);
  line-height: 1.55;
}

.recap-list {
  list-style: none;
  display: grid;
  gap: 8px;
}

.recap-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(132, 183, 236, 0.22);
  color: var(--text-s);
}

.recap-list li:last-child {
  border-bottom: 0;
}

.recap-list strong {
  color: var(--navy);
}

.recap-list span {
  flex-shrink: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: var(--pink-d);
}

.choice-card p {
  color: var(--text-s);
  line-height: 1.6;
}

.choice-muted {
  background: #ffffff;
}

.choice-highlight {
  border-color: #b8dcf6;
  background: linear-gradient(135deg, #f0f8ff 0%, #fff 100%);
}

.choice-highlight h3::before,
.choice-muted h3::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: 8px;
  border-radius: 50%;
  font-size: 0.9rem;
}

.choice-muted h3::before {
  content: "1";
  color: var(--text-s);
  background: #f1f5f9;
}

.choice-highlight h3::before {
  content: "2";
  color: #fff;
  background: var(--blue-d);
}

@media (min-width: 900px) {
  .proof-showcase {
    grid-template-columns: 0.78fr 1.22fr;
    gap: 44px;
  }

  .page-preview-grid {
    gap: 18px;
  }

  .mid-offer-box {
    grid-template-columns: 1fr auto;
    padding: 24px 28px;
  }

  .mid-offer-box .btn-cta {
    white-space: nowrap;
  }

  .fit-grid,
  .choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .recap-panel {
    grid-template-columns: minmax(260px, 0.8fr) minmax(420px, 1.2fr);
    align-items: center;
    margin-top: 24px;
  }
}

@media (max-width: 680px) {
  .proof-showcase {
    gap: 20px;
  }

  .proof-pack-img {
    width: min(100%, 310px);
  }

  .page-preview-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .page-preview-card,
  .page-preview-card:nth-child(2),
  .page-preview-card:nth-child(3) {
    min-height: 0;
    transform: none;
    padding: 17px 15px;
  }

  .page-preview-card h3 {
    font-size: 0.98rem;
  }

  .page-preview-card p,
  .page-preview-card li {
    font-size: 0.92rem !important;
    line-height: 1.5 !important;
  }

  .mid-offer-strip {
    padding: 22px 0;
  }

  .mid-offer-box {
    padding: 18px 16px;
    text-align: center;
  }

  .mid-offer-kicker {
    margin-left: auto;
    margin-right: auto;
  }

  .mid-offer-box h2 {
    font-size: 1.18rem;
  }

  .mid-offer-box p {
    font-size: 0.95rem;
  }

  .mid-offer-box .btn-cta {
    width: 100%;
  }

  .fit-card,
  .choice-card,
  .recap-panel {
    padding: 18px 16px;
  }

  .fit-card h3,
  .choice-card h3,
  .recap-copy h3 {
    font-size: 1.08rem;
  }

  .fit-card li,
  .choice-card p,
  .recap-copy p {
    font-size: 0.95rem !important;
    line-height: 1.55 !important;
  }

  .recap-list li {
    display: grid;
    gap: 3px;
    font-size: 0.94rem !important;
    line-height: 1.35 !important;
  }

  .recap-list span {
    font-size: 0.86rem;
  }
}

/* Offer checkout card refinement */
.offer-price-box {
  position: relative;
  overflow: hidden;
  border: 1px solid #b8dcf6;
  border-radius: 10px;
  padding: 24px 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.95)),
    linear-gradient(135deg, #f8fcff, #fff6f9);
  box-shadow: 0 16px 36px rgba(27, 54, 93, 0.1);
}

.offer-price-box::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--blue), var(--pink));
}

.op-not-paying {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--blue-d);
  margin-bottom: 8px;
}

.op-includes {
  max-width: 260px;
  margin: 0 auto 12px;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.35;
}

.op-price {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  font-size: 2.8rem;
  line-height: 0.95;
  letter-spacing: 0;
  margin: 4px 0 8px;
}

.op-local {
  max-width: 280px;
  margin: 0 auto 18px;
  color: #64748b;
  font-size: 0.82rem;
  line-height: 1.35;
}

.offer-price-box .btn-cta {
  width: 100%;
  max-width: 320px;
  min-height: 54px;
  box-shadow: 0 10px 22px rgba(184, 30, 75, 0.28);
}

.op-micro {
  max-width: 280px;
  margin: 11px auto 0;
  color: #6b7c91;
  font-size: 0.82rem;
  line-height: 1.45;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #e7eef7;
}

.trust-item {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 6px;
  min-width: 0;
}

.trust-item span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dcebf8;
  border-radius: 8px;
  background: #f8fcff;
  color: var(--blue-d);
  font-size: 1rem;
  line-height: 1;
}

.trust-item small {
  color: var(--navy);
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1.2;
}

@media (max-width: 680px) {
  .offer-price-box {
    padding: 24px 16px 20px;
  }

  .op-not-paying {
    font-size: 0.74rem;
  }

  .op-includes {
    font-size: 0.92rem;
  }

  .op-price {
    font-size: 2.42rem;
  }

  .op-local,
  .op-micro {
    font-size: 0.82rem !important;
  }

  .trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .trust-item {
    grid-template-columns: 30px 1fr;
    align-items: center;
    justify-items: start;
    text-align: left;
    gap: 8px;
  }

  .trust-item span {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }

  .trust-item small {
    font-size: 0.7rem;
  }
}

/* Lean conversion version spacing */
@media (min-width: 900px) {
  .block {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .hero-block {
    padding-top: 58px;
    padding-bottom: 54px;
  }

  .proof-block {
    padding-top: 42px;
  }

  .bonus-block {
    padding-bottom: 48px;
  }

  .final-block {
    padding-top: 52px;
    padding-bottom: 56px;
  }
}

@media (max-width: 680px) {
  .block {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .hero-block {
    padding-top: 34px;
    padding-bottom: 38px;
  }

  .proof-block {
    padding-top: 36px;
  }

  .section-h2 {
    margin-bottom: 1rem;
  }

  .calma-footer,
  .proof-cta,
  .cta-strip {
    margin-top: 1.5rem !important;
  }

  .page-preview-grid,
  .bonus-list,
  .fit-grid {
    gap: 12px;
  }

  .final-block {
    padding-top: 42px;
    padding-bottom: 48px;
  }
}
