@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

/* ══════════════════════════════════
   TOKENS
══════════════════════════════════ */
:root {
  --hero-bg:    #1C6B2A;
  --green:      #34C24B;
  --green-dark: #1A5C23;
  --green-text: #1A6328;
  --green-light:#EEF8F0;
  --green-mid:  #C4E8CA;
  --red:        #E53030;
  --red-light:  #FEF0F0;
  --gold:       #C99010;
  --gold-light: #FEF7DC;
  --bg:         #FFFFFF;
  --bg-gray:    #F6F6F6;
  --border:     rgba(0,0,0,0.09);
  --border-g:   rgba(42,158,70,0.28);
  --text:       #1A1A1A;
  --text2:      #444444;
  --muted:      #888888;
  --shadow:     0 3px 16px rgba(0,0,0,0.07);
  --shadow-md:  0 8px 28px rgba(0,0,0,0.1);
  --radius:     14px;
  --radius-lg:  22px;
  --pill:       999px;
}

/* ══════════════════════════════════
   RESET
══════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  padding-bottom: 5.5rem;
}

img  { max-width: 100%; display: block; height: auto; }
h1, h2, h3 { line-height: 1.15; font-weight: 900; }
p    { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
a    { -webkit-tap-highlight-color: transparent; }

/* ══════════════════════════════════
   LAYOUT
══════════════════════════════════ */
.container { width: min(100% - 1.6rem, 1160px); margin-inline: auto; }
.narrow    { max-width: 720px; margin-inline: auto; }
.max-680   { max-width: 680px; }
.center    { text-align: center; }
.section   { padding: 3rem 0; }

/* ══════════════════════════════════
   TYPOGRAPHY — mobile base
══════════════════════════════════ */
h1 { font-size: 1.85rem; letter-spacing: -0.02em; }
h2 { font-size: 1.5rem;  letter-spacing: -0.01em; color: var(--green-text); }
h3 { font-size: 1rem;    font-weight: 800; }

/* ══════════════════════════════════
   EYEBROW
══════════════════════════════════ */
.eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: var(--pill);
  margin-bottom: 1rem;
}

.eyebrow-dark {
  background: var(--green-light);
  color: var(--green-text);
  border-color: var(--border-g);
}

/* ══════════════════════════════════
   HERO  (dark green bg)
══════════════════════════════════ */
.hero {
  background: var(--hero-bg);
  border-radius: 0;
  padding-top: 2.5rem;
  padding-bottom: 2.8rem;
  overflow: hidden;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero h1      { color: #fff; margin-bottom: 1rem; }
.hero-accent  { color: var(--green); }
.subtitle     { color: rgba(255,255,255,0.82); font-size: 0.97rem; margin-bottom: 1.8rem; line-height: 1.65; }
.hero .btn    { justify-content: center; text-align: center; }

.hero-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.hero-image {
  object-fit: cover;
  object-position: top center;
  width: 100%;
  max-height: 520px;
  display: block;
  transform: scale(1.15);
  transform-origin: 50% 20%;
}

/* ══════════════════════════════════
   TICKER BAR
══════════════════════════════════ */
.ticker-wrap {
  background: var(--red);
  overflow: hidden;
  padding: 0.65rem 0;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  animation: ticker 28s linear infinite;
  will-change: transform;
}

.ticker-item {
  padding: 0 1.8rem;
  color: #fff;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════
   BUTTONS
══════════════════════════════════ */
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  border: none;
  border-radius: var(--pill);
  font-family: inherit;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1rem 1.8rem;
  min-height: 54px;
  cursor: pointer;
  width: 100%;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
}

.cta {
  background: var(--green);
  color: #fff;
  box-shadow: 0 6px 22px rgba(52,194,75,0.4);
}

.cta:active { transform: scale(0.98); }

.cta-white {
  background: #fff;
  color: var(--green-text);
  box-shadow: 0 6px 22px rgba(0,0,0,0.15);
}

.cta-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 6px 22px rgba(229,48,48,0.35);
}

.cta-yellow {
  background: #FFD600;
  color: #1A1A1A;
  box-shadow: 0 6px 24px rgba(255,214,0,0.5), 0 2px 8px rgba(0,0,0,0.15);
  font-weight: 900;
}

.cta-yellow:active { transform: scale(0.98); }

/* ══════════════════════════════════
   STORY
══════════════════════════════════ */
.story { background: var(--bg-gray); }
.story h2 { color: var(--green-text); margin-bottom: 1.4rem; }

.story p {
  font-size: 0.97rem;
  color: var(--text2);
  padding-left: 1rem;
  border-left: 4px solid var(--green-mid);
  margin-bottom: 0.9rem;
}

.story p:last-child { color: var(--text); font-weight: 700; border-left-color: var(--green); }

.story-for-you {
  margin-top: 2.8rem;
  background: #fff;
  border: 1.5px solid var(--border-g);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.4rem;
  box-shadow: var(--shadow);
}

.story-for-you-title {
  font-weight: 900;
  font-size: 1.15rem !important;
  color: #1a2e5a !important;
  border-left: none !important;
  padding-left: 0 !important;
  margin-bottom: 0.9rem !important;
}

.para-ti-img {
  width: calc(100% + 2.8rem);
  height: 280px;
  margin-left: -1.4rem;
  margin-right: -1.4rem;
  margin-top: 1.2rem;
  margin-bottom: -1.3rem;
  display: block;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  object-fit: cover;
  object-position: left top;
}

.story-check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text2);
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

.story-check-item:last-child { margin-bottom: 0; }

/* ══════════════════════════════════
   UVP
══════════════════════════════════ */
.uvp { background: var(--green-light); }
.uvp h2   { color: var(--green-text); margin-bottom: 0.8rem; }
.uvp .lead { font-size: 0.97rem; color: var(--text2); margin-bottom: 1.6rem; line-height: 1.7; }
.uvp strong { color: var(--green-text); }

.icon-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: 1fr;
}

.icon-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.icon     { font-size: 1.6rem; flex-shrink: 0; }
.icon-card h3 { color: var(--green-text); margin-bottom: 0.2rem; font-size: 0.92rem; }
.icon-card p  { color: var(--text2); font-size: 0.84rem; margin: 0; }

/* ══════════════════════════════════
   BENEFITS
══════════════════════════════════ */
.benefits { background: var(--bg); }
.benefits h2 { color: var(--green-text); margin-bottom: 1.4rem; }

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--green-light);
  border: 1px solid var(--border-g);
  border-radius: var(--pill);
  padding: 0.85rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-text);
  min-height: 48px;
}

.check { color: var(--green); font-size: 1rem; flex-shrink: 0; }

.benefits-cta { margin-top: 1.8rem; display: flex; justify-content: center; }

/* ══════════════════════════════════
   SOCIAL PROOF
══════════════════════════════════ */
.social-proof { background: var(--green-light); border-top: 1px solid var(--green-mid); }
.social-proof h2 { color: var(--green-text); margin-bottom: 1rem; }
.social-proof > .container > p { color: var(--text2); font-size: 0.95rem; margin-bottom: 1.4rem; }

.proof-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--border-g);
  border-radius: var(--radius-lg);
  padding: 1rem 1.2rem;
  margin-bottom: 1.6rem;
  box-shadow: var(--shadow);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  white-space: nowrap;
}

.stat-label { font-size: 0.85rem; color: var(--text2); font-weight: 600; margin: 0; }

.testimonial-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: 1fr;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  box-shadow: var(--shadow);
}

.stars            { color: #F59E0B; font-size: 0.95rem; margin-bottom: 0.5rem; }
.testimonial-text { font-size: 0.88rem; color: var(--text2); font-style: italic; margin-bottom: 0.9rem; line-height: 1.55; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--green-mid);
}

.testimonial-name { font-size: 0.82rem; font-weight: 800; color: var(--text); margin: 0 0 0.1rem; }
.testimonial-age  { font-size: 0.73rem; color: var(--muted); margin: 0; }

/* ══════════════════════════════════
   MID-PAGE CTA
══════════════════════════════════ */
.mid-cta {
  background: var(--hero-bg);
  border-radius: 28px;
  margin: 0 0.8rem;
  text-align: center;
  padding: 2.5rem 1rem;
}

.mid-cta h2 { color: #fff; margin-bottom: 0.6rem; }
.mid-cta p  { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin-bottom: 1.4rem; }
.mid-cta .btn { max-width: 420px; margin-inline: auto; }

/* ══════════════════════════════════
   DEEP DIVE
══════════════════════════════════ */
/* ══════════════════════════════════
   RAC EXAMPLE SECTION
══════════════════════════════════ */
.rac-example-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  text-align: center;
  padding-bottom: 4rem;
}

.rac-example-section .rac-step-body,
.rac-example-section .rac-scenario-body { text-align: left; }

.rac-section-label {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-text);
  border: 1px solid var(--border-g);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: var(--pill);
  margin-bottom: 0.7rem;
}

.rac-section-title {
  color: var(--green-text);
  text-align: center;
  margin-bottom: 2rem;
}

/* Scenario card */
.rac-scenario-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-width: 720px;
  margin: 0 auto;
}

.rac-scenario-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.rac-scenario-img {
  width: 100%;
  height: auto;
  display: block;
}

.rac-scenario-overlay {
  position: absolute;
  bottom: 0.8rem;
  left: 0.8rem;
}

.rac-scenario-badge {
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: var(--pill);
  backdrop-filter: blur(4px);
}

.rac-scenario-body {
  padding: 1.1rem 1.3rem;
}

.rac-scenario-text {
  font-size: 0.95rem;
  color: var(--text2);
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

/* Connector */
.rac-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin: 0.5rem auto;
  max-width: 720px;
}

.rac-connector-line {
  display: block;
  width: 2px;
  height: 24px;
  background: var(--green-mid);
}

.rac-connector-dot {
  font-size: 0.7rem;
  color: var(--green);
  line-height: 1;
}

/* Steps */
.rac-steps {
  max-width: 720px;
  margin: 0 auto;
}

.rac-step {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.rac-step--alt { border-left-color: var(--green-dark); }

.rac-step-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.rac-step-img {
  width: 100%;
  height: auto;
  display: block;
}

.rac-step-num {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(0,0,0,0.25);
}

.rac-step-num--a { background: var(--green-dark); }
.rac-step-num--c { background: var(--hero-bg); }

.rac-step-body {
  padding: 1rem 1.2rem;
}

.rac-step-tag {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.3rem;
}

.rac-step--alt .rac-step-tag { color: var(--green-dark); }

.rac-step-title {
  color: var(--text);
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 0.4rem;
}

.rac-step-desc {
  font-size: 0.88rem;
  color: var(--text2);
  line-height: 1.55;
  margin: 0;
}

/* Result banner */
.rac-result {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--green-light);
  border: 1.5px solid var(--border-g);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.5rem;
  max-width: 720px;
  margin: 1.2rem auto 0;
  box-shadow: var(--shadow);
}

.rac-result-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.rac-result p {
  font-size: 0.93rem;
  color: var(--green-text);
  margin: 0;
  line-height: 1.5;
}

/* Desktop: 3 steps side by side */
@media (min-width: 900px) {
  .rac-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: none;
  }

  /* hide vertical connectors between steps on desktop */
  .rac-steps + .rac-connector,
  .rac-steps .rac-connector { display: none; }

  /* Connectors between scenario→steps and steps→result remain */
  .rac-step { border-left: none; border-top: 4px solid var(--green); }
  .rac-step--alt { border-top-color: var(--green-dark); }

  .rac-step-img { height: auto; }
}

/* ══════════════════════════════════ */
.deep-dive { background: var(--bg-gray); }
.deep-dive h2 { color: var(--green-text); margin-bottom: 1.2rem; }
.deep-dive p  { font-size: 0.97rem; color: var(--text2); }
.deep-dive strong { color: var(--green-text); }

/* ══════════════════════════════════
   MODULES
══════════════════════════════════ */
.modules { background: var(--bg); }
.modules h2    { color: var(--green-text); margin-bottom: 0.5rem; }
.modules .lead { font-size: 0.88rem; color: var(--muted); margin-bottom: 1.6rem; }

.module-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}

.module-card {
  background: var(--green-light);
  border: 1px solid var(--border-g);
  border-left: 5px solid var(--green);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  box-shadow: var(--shadow);
}

.module-num {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  white-space: nowrap;
  padding-top: 0.15rem;
  flex-shrink: 0;
  min-width: 50px;
  background: rgba(52,194,75,0.12);
  border-radius: 6px;
  padding: 0.25rem 0.5rem;
  text-align: center;
}

.module-content h3 { color: var(--green-text); margin-bottom: 0.25rem; font-size: 0.9rem; }
.module-content p  { color: var(--muted); font-size: 0.82rem; margin: 0; line-height: 1.45; }

/* ══════════════════════════════════
   BONUSES
══════════════════════════════════ */
.bonuses { background: var(--gold-light); border-top: 2px solid rgba(201,144,16,0.2); }
.bonuses h2 { color: var(--gold); margin-bottom: 1.4rem; }

.bonus-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.bonus-card {
  background: #fff;
  border: 2px solid rgba(201,144,16,0.3);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.tag {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  border-radius: var(--pill);
  padding: 0.4rem 1.1rem;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.bonus-card h3 { color: var(--text); margin-bottom: 0.4rem; }
.bonus-card p  { color: var(--muted); font-size: 0.88rem; margin: 0; }

.bonus-img {
  width: 100%;
  max-width: 220px;
  height: auto;
  margin: 0.6rem auto 1rem;
  display: block;
  border-radius: var(--radius);
  mix-blend-mode: multiply;
}

/* ══════════════════════════════════
   PRICE + GUARANTEE
══════════════════════════════════ */
.price-section {
  background: var(--green-light);
  border-top: 2px solid var(--green-mid);
  text-align: center;
}

.price-section h2 { color: var(--green-text); margin-bottom: 0.6rem; }
.price-lead       { font-size: 0.93rem; color: var(--text2); margin-bottom: 1.4rem; line-height: 1.6; }

.ebook-image-wrap {
  margin: 0 auto 1rem;
  max-width: 680px;
  background: var(--green-light);
}

.ebook-image {
  width: 100%;
  height: auto;
  border-radius: 0;
  mix-blend-mode: multiply;
  display: block;
}

.price-block { margin-bottom: 1.2rem; }

/* Precio tachado — más grande y visible */
.price-old {
  display: inline-block;
  background: rgba(229,48,48,0.1);
  border: 1.5px solid rgba(229,48,48,0.3);
  border-radius: var(--pill);
  padding: 0.25rem 1rem;
  text-decoration: line-through;
  color: var(--red);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

/* Precio real — grande y llamativo */
.price-value {
  font-size: 5.5rem;
  font-weight: 900;
  color: var(--green-text);
  line-height: 1;
  letter-spacing: -0.03em;
}

.price-currency { font-size: 2rem; vertical-align: super; }
.price-note     { color: var(--muted); font-size: 0.84rem; margin-top: 0.3rem; margin-bottom: 1.8rem; }

/* Botón CTA centrado */
.price-cta {
  margin-bottom: 1.4rem;
  display: flex;
  justify-content: center;
}

.price-cta .btn {
  max-width: 500px;
  font-size: 1rem;
  padding: 1.1rem 2.4rem;
  min-height: 58px;
}

.guarantee-inline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  background: #fff;
  border: 1.5px solid var(--border-g);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  max-width: 500px;
  margin-inline: auto;
}

.pago-seguro-wrap {
  text-align: center;
  margin: 0.75rem auto 0;
  max-width: 500px;
}
.pago-seguro-img {
  max-width: 100%;
  width: 340px;
  mix-blend-mode: multiply;
  display: inline-block;
}

.garantia-img {
  width: 210px;
  height: 210px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}
@media (max-width: 599px) {
  .garantia-img {
    width: 155px;
    height: 155px;
  }
}

.guarantee-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.guarantee-text strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--green-text);
  display: block;
}

.guarantee-text p {
  font-size: 0.85rem;
  color: var(--text2);
  margin: 0;
  line-height: 1.55;
  max-width: 380px;
}

/* ══════════════════════════════════
   FAQ
══════════════════════════════════ */
.faq { background: var(--bg); }
.faq h2 { color: var(--green-text); margin-bottom: 1.4rem; }
.faq .accordion { text-align: left; }

.accordion {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0.65rem;
  box-shadow: var(--shadow);
  transition: border-color 0.2s;
}

.accordion.open { border-color: var(--border-g); }

.accordion-trigger {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  font-size: 0.92rem;
  font-family: inherit;
  font-weight: 700;
  color: var(--text);
  padding: 1rem 1.1rem;
  min-height: 52px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  -webkit-tap-highlight-color: transparent;
}

.accordion-icon {
  color: var(--green);
  font-size: 1.3rem;
  font-weight: 900;
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.25s;
}

.accordion.open .accordion-icon { transform: rotate(45deg); }

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.accordion-panel p {
  padding: 0 1.1rem 1rem;
  color: var(--text2);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.6;
}

/* ══════════════════════════════════
   WARNING
══════════════════════════════════ */
.warning { background: var(--red-light); border-top: 2px solid rgba(229,48,48,0.15); }

.warning-box {
  background: #fff;
  border: 1.5px solid rgba(229,48,48,0.25);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.3rem;
  box-shadow: var(--shadow);
}

.warning-box h2 { color: var(--red); margin-bottom: 1.1rem; }

.no-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--text2);
  font-size: 0.92rem;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.cross { color: var(--red); font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; }

.warning-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(229,48,48,0.12);
  color: var(--text);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ══════════════════════════════════
   FINAL CTA
══════════════════════════════════ */
.final-hero {
  background: var(--hero-bg);
  border-radius: 0;
  text-align: center;
}

.final-hero h2  { color: #fff; margin-bottom: 0.8rem; }
.final-hero p   { color: rgba(255,255,255,0.82); font-size: 0.97rem; margin-bottom: 1.8rem; line-height: 1.65; }
.final-hero .btn { max-width: 500px; margin-inline: auto; }

.urgency-tag {
  display: inline-block;
  width: fit-content;
  background: var(--red);
  color: #fff !important;
  font-weight: 800;
  font-size: 0.65rem !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: var(--pill);
  margin: 0 auto 1rem;
  white-space: nowrap;
}

/* ══════════════════════════════════
   PROMO BAR (countdown)
══════════════════════════════════ */
.promo-bar {
  background: var(--red);
  text-align: center;
  padding: 0.55rem 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.promo-bar-text {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.promo-bar-text strong { color: #FFD600; }

.countdown {
  display: inline-block;
  background: rgba(0,0,0,0.25);
  color: #FFD600;
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  padding: 0.1rem 0.6rem;
  border-radius: 6px;
  margin-left: 0.3rem;
  font-variant-numeric: tabular-nums;
}

/* ══════════════════════════════════
   MOBILE STICKY CTA
══════════════════════════════════ */
.mobile-sticky-cta {
  position: fixed;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.75rem;
  z-index: 50;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: var(--pill);
  padding: 1rem 1.4rem;
  min-height: 54px;
  box-shadow: 0 8px 28px rgba(52,194,75,0.45), 0 2px 8px rgba(0,0,0,0.1);
  -webkit-tap-highlight-color: transparent;
  /* Hidden by default — shown after 35% scroll */
  opacity: 0;
  transform: translateY(120%);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.mobile-sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-sticky-cta:active { opacity: 0.88; transform: scale(0.98); }

/* Shake animation */
@keyframes shake {
  0%,100% { transform: translateX(0); }
  15%      { transform: translateX(-5px); }
  30%      { transform: translateX(5px); }
  45%      { transform: translateX(-4px); }
  60%      { transform: translateX(4px); }
  75%      { transform: translateX(-2px); }
  90%      { transform: translateX(2px); }
}

@keyframes rock {
  0%,  60%, 100% { transform: rotate(0deg); }
  65%            { transform: rotate(-4deg); }
  70%            { transform: rotate(4deg); }
  75%            { transform: rotate(-3deg); }
  80%            { transform: rotate(3deg); }
  85%            { transform: rotate(-1.5deg); }
  90%            { transform: rotate(1.5deg); }
  95%            { transform: rotate(0deg); }
}

.hero-cta {
  transform-origin: center bottom;
  animation: rock 4s ease-in-out infinite;
  display: inline-flex;
}

.mobile-sticky-cta.shake {
  animation: shake 0.55s ease;
}

/* ══════════════════════════════════
   TABLET ≥ 600px
══════════════════════════════════ */
@media (min-width: 600px) {
  .section { padding: 4rem 0; }
  h1 { font-size: 2.3rem; }
  h2 { font-size: 1.9rem; }

  .btn { width: auto; padding: 1rem 2.4rem; font-size: 0.95rem; }
  .hero-cta { display: flex; width: fit-content; margin-left: auto; margin-right: auto; }
  .benefits-cta .btn,
  .mid-cta .btn,
  .price-cta .btn,
  .final-hero .btn { width: 100%; max-width: 500px; }

  .benefits-grid    { grid-template-columns: repeat(2, 1fr); }
  .icon-grid        { grid-template-columns: repeat(3, 1fr); }
  .icon-card        { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .module-grid      { grid-template-columns: repeat(2, 1fr); }
  .bonus-grid       { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }

  .hero-image-wrap { max-width: 460px; margin-left: auto; margin-right: auto; }
  .hero-image { max-height: 640px; }
  .para-ti-img { height: auto; }
  .mid-cta    { margin: 0 1.5rem; border-radius: 24px; }
}

/* ══════════════════════════════════
   DESKTOP ≥ 900px
══════════════════════════════════ */
@media (min-width: 900px) {
  .section { padding: 5rem 0; }
  h1 { font-size: clamp(2.4rem, 3.8vw, 3.3rem); }
  h2 { font-size: clamp(1.9rem, 2.8vw, 2.4rem); }

  .hero         { border-radius: 0; }
  .hero-grid    {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: end;
  }
  .hero-image   { max-height: none; min-height: 440px; }
  .hero-cta     { width: auto; margin-left: 0; margin-right: 0; }
  .subtitle     { font-size: 1.05rem; }

  .btn:hover         { transform: translateY(-2px); }
  .cta:hover         { box-shadow: 0 12px 32px rgba(52,194,75,0.5); }
  .cta-white:hover   { box-shadow: 0 12px 32px rgba(0,0,0,0.2); }
  .cta-red:hover     { box-shadow: 0 12px 32px rgba(229,48,48,0.45); }

  .icon-card:hover   { border-color: var(--border-g); box-shadow: var(--shadow-md); }
  .module-card:hover { border-left-color: var(--green-dark); box-shadow: var(--shadow-md); }
  .accordion-trigger:hover { color: var(--green); }

  .module-grid  { grid-template-columns: repeat(3, 1fr); }
  .price-value  { font-size: 5.5rem; }

  .mid-cta { margin: 0 0; border-radius: 0; }

  .final-hero { border-radius: 0; }

  .mobile-sticky-cta { display: none; }
  body { padding-bottom: 0; }
}
