/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:       #2d7d46;
  --green-light: #4caf6e;
  --green-pale:  #e8f5ed;
  --green-dark:  #1a5230;
  --yellow:      #f9c846;
  --yellow-pale: #fffbe8;
  --orange:      #f97316;
  --text:        #1a1a2e;
  --text-muted:  #6b7280;
  --white:       #ffffff;
  --bg:          #fafaf8;
  --card-bg:     #ffffff;
  --radius:      16px;
  --radius-sm:   10px;
  --shadow:      0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:   0 12px 48px rgba(0,0,0,.14);
  --font-body:   'Nunito', sans-serif;
  --font-head:   'Playfair Display', serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

img { display: block; max-width: 100%; }

/* ============================================
   TYPOGRAPHY HELPERS
   ============================================ */
.section-label {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 24px;
}

.accent { color: var(--green); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  border-radius: 100px;
  padding: 14px 28px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform .18s, box-shadow .18s, background .18s;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--green-light), var(--green));
  color: var(--white);
  box-shadow: 0 6px 24px rgba(45,125,70,.35);
}
.btn-primary:hover {
  box-shadow: 0 10px 32px rgba(45,125,70,.45);
}

.btn-nav {
  background: var(--green);
  color: var(--white);
  padding: 10px 22px;
  font-size: .9rem;
  align-self: center;
  line-height: 1;
}

.btn-big {
  font-size: 1.15rem;
  padding: 18px 38px;
}

.btn-block {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  background: #f97316;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 7px 20px;
}

.top-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-bar-row--1 {
  font-size: .83rem;
  color: var(--white);
  font-weight: 600;
  white-space: nowrap;
}
.top-bar-row--1 strong { font-weight: 900; }

.top-bar-row--2 {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.top-bar-countdown {
  font-family: var(--font-head);
  font-size: .98rem;
  font-weight: 900;
  color: var(--white);
  background: rgba(0,0,0,.22);
  padding: 3px 10px;
  border-radius: 6px;
  letter-spacing: .06em;
  white-space: nowrap;
}

.top-bar-btn {
  background: var(--white);
  color: #f97316;
  font-weight: 800;
  font-size: .78rem;
  padding: 5px 14px;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .15s, box-shadow .15s;
}
.top-bar-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,.15); }

@media (max-width: 640px) {
  .top-bar {
    flex-direction: column;
    gap: 5px;
    padding: 8px 16px;
    text-align: center;
  }
  .top-bar-row--1 {
    font-size: .78rem;
    white-space: normal;
    justify-content: center;
  }
  .top-bar-row--2 {
    justify-content: center;
  }
  .top-bar-countdown {
    font-size: .92rem;
  }
  .top-bar-btn {
    font-size: .75rem;
    padding: 5px 12px;
  }
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 14px 0;
  background: rgba(250,250,248,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: box-shadow .2s;
}
.nav.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.08); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
}

.logo {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0 80px;
  overflow: hidden;
}

/* ============================================
   HERO V2 — Product-launch centered
   ============================================ */
.hero-v2 {
  min-height: unset;
  padding: 60px 0 72px;
  background: linear-gradient(180deg, #e8f5ed 0%, #f5fbf7 40%, #ffffff 80%);
  text-align: center;
  overflow: hidden;
}

.hero-v2-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(76,175,110,.18), transparent 70%);
  pointer-events: none;
}

.hero-v2-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-launch-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  font-size: .8rem;
  padding: 7px 22px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: .03em;
  animation: badge-pulse 3s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 16px rgba(249,115,22,.3); }
  50%       { transform: scale(1.02); box-shadow: 0 6px 24px rgba(249,115,22,.5); }
}

.hero-v2-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 18px;
  max-width: 780px;
}

.hero-v2-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 48px;
}

.hero-product-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 52px;
}

.hero-product-glow {
  position: absolute;
  width: 500px; height: 500px;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(76,175,110,.22), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-v2-book {
  width: 375px;
  border-radius: 8px 18px 18px 8px;
  box-shadow:
    -10px 0 0 0 var(--green-dark),
    0 48px 80px rgba(0,0,0,.22),
    0 16px 40px rgba(45,125,70,.25);
  position: relative;
  z-index: 1;
  animation: float 4s ease-in-out infinite;
}

.hero-float {
  position: absolute;
  z-index: 2;
  background: var(--white);
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: 0 6px 24px rgba(0,0,0,.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  min-width: 100px;
  animation: float 4s ease-in-out infinite;
}

.hero-float--tl {
  left: -110px; top: 24px;
  animation-delay: -0.8s;
  border-bottom: 3px solid var(--yellow);
}

.hero-float--tr {
  right: -110px; top: 24px;
  animation-delay: -1.6s;
  border-bottom: 3px solid var(--green);
}

.hero-float--bc {
  bottom: -22px; left: 50%;
  transform: translateX(-50%);
  animation-delay: -2.4s;
  border-bottom: 3px solid var(--orange);
  flex-direction: row;
  gap: 8px;
  min-width: unset;
  padding: 8px 18px;
}

.hf-stars {
  font-size: .85rem;
  color: var(--yellow);
  letter-spacing: 1px;
  line-height: 1;
}

.hf-icon { font-size: 1.3rem; line-height: 1; }

.hf-label {
  font-size: .75rem;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
}

.hero-price-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-price-was {
  font-size: .98rem;
  font-weight: 800;
  color: #ef4444;
}
.hero-price-was s {
  text-decoration-thickness: 3px;
  text-decoration-color: #ef4444;
}

.hero-price-old {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ef4444;
  text-decoration: line-through;
  text-decoration-thickness: 3px;
}

.hero-price-arrow {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.hero-price-new {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--green-dark);
}

.hero-price-tag {
  background: #ef4444;
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero-v2-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 560px;
}

.btn-cta-hero {
  width: 100%;
  font-size: 1.25rem;
  padding: 24px 44px;
  border-radius: 100px;
  animation: cta-glow 3s ease-in-out infinite;
}

@media (max-width: 420px) {
  .btn-cta-hero { font-size: 1.05rem; padding: 18px 22px; }
}

@keyframes cta-glow {
  0%, 100% { box-shadow: 0 6px 24px rgba(45,125,70,.38); }
  50%       { box-shadow: 0 12px 48px rgba(45,125,70,.6), 0 0 0 6px rgba(45,125,70,.1); }
}

.hero-v2-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .79rem;
  color: var(--text-muted);
  font-weight: 600;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-dot { color: #d1d5db; }

.hero-social-proof--center {
  justify-content: center;
  margin-top: 28px;
}

@media (max-width: 700px) {
  .hero-v2-book { width: 250px; }
  .hero-float--tl { left: -14px; top: -36px; }
  .hero-float--tr { right: -14px; top: -36px; min-width: 80px; padding: 8px 10px; }
  .hero-float--bc { bottom: -30px; }
  .hero-product-wrap { margin-bottom: 60px; }
  .hero-v2 { padding: 48px 0 64px; }
  .hero-v2-sub { font-size: .98rem; }
}

@media (max-width: 860px) {
  .bundle-grid { flex-direction: column; }
  .bundle-plus { width: 56px; height: 56px; font-size: 2rem; }
  .bundle-cover { height: 300px; }
  .bundle-cover-img { height: 300px; }
  .bundle-cover .ebook-cover { transform: scale(1); }
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
  pointer-events: none;
}
.blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #a8dfb8, #4caf6e);
  top: -200px; right: -200px;
}
.blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #fde68a, #f9c846);
  bottom: -100px; left: -150px;
}
.blob-3 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, #a8dfb8, #4caf6e);
  top: -250px; left: 50%;
  transform: translateX(-50%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  display: inline-block;
  background: var(--yellow-pale);
  border: 2px solid var(--yellow);
  color: #92400e;
  font-weight: 800;
  font-size: .85rem;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 22px;
  color: var(--text);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-sub strong { color: var(--text); }

.hero-cta { margin-bottom: 28px; }

.hero-cta-note {
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: 10px;
  font-weight: 600;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatars {
  display: flex;
}
.avatars img {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 3px solid var(--white);
  margin-left: -10px;
  object-fit: cover;
}
.avatars img:first-child { margin-left: 0; }

.hero-social-proof p {
  font-size: .88rem;
  color: var(--text-muted);
  font-weight: 600;
}
.hero-social-proof strong { color: var(--green-dark); }

/* Portada del ebook */
.hero-book-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-book-mockup {
  position: relative;
  animation: float 4s ease-in-out infinite;
}

.hero-book-img {
  width: 360px;
  border-radius: 8px 16px 16px 8px;
  box-shadow: -8px 0 0 0 var(--green-dark), 0 32px 64px rgba(0,0,0,.3);
  display: block;
}

.hero-book-badge {
  position: absolute;
  bottom: -14px;
  right: -18px;
  background: var(--yellow);
  color: #1a1a2e;
  font-weight: 900;
  font-size: 1.6rem;
  line-height: 1;
  border-radius: 50%;
  width: 72px; height: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 3px solid var(--white);
  box-shadow: var(--shadow);
}

.hero-book-badge span {
  font-size: .58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

.ebook-cover {
  display: flex;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.28));
}

.ebook-spine {
  width: 28px;
  background: linear-gradient(180deg, #1a5230, #2d7d46);
  border-radius: 6px 0 0 6px;
  flex-shrink: 0;
}

.ebook-front {
  width: 220px;
  min-height: 300px;
  background: linear-gradient(145deg, #2d7d46, #1a5230);
  border-radius: 0 12px 12px 0;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.ebook-front::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(255,255,255,.12), transparent);
  border-radius: 50%;
}

.ebook-leaf {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.ebook-cover-title {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 10px;
}

.ebook-cover-sub {
  font-size: .78rem;
  color: rgba(255,255,255,.75);
  line-height: 1.4;
  margin-bottom: auto;
}

.ebook-cover-badge {
  position: absolute;
  bottom: 20px; right: 20px;
  background: var(--yellow);
  color: #1a1a2e;
  font-weight: 900;
  font-size: 0.9rem;
  line-height: 1;
  border-radius: 50%;
  width: 68px; height: 68px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.ebook-cover-badge span { font-size: .6rem; font-weight: 700; }

.bundle {
  background: var(--white);
  padding: 84px 0 70px;
  text-align: center;
}

.bundle-sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: -10px;
}

.bundle-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 32px;
}

.bundle-item {
  background: var(--bg);
  border: 1.5px solid #e5e7eb;
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: 0 16px 46px rgba(0,0,0,.06);
  flex: 1;
  max-width: 520px;
}

.bundle-cover {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 360px;
  margin-bottom: 18px;
}

.bundle-cover-img {
  height: 360px;
  width: auto;
  border-radius: 10px 18px 18px 10px;
  box-shadow:
    -10px 0 0 0 var(--green-dark),
    0 28px 60px rgba(0,0,0,.18),
    0 16px 34px rgba(45,125,70,.16);
}

.bundle-plus {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green-pale);
  border: 2px solid rgba(45,125,70,.25);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 2.2rem;
  line-height: 1;
  box-shadow: 0 14px 30px rgba(45,125,70,.12);
  flex: 0 0 auto;
}

.bundle-item h3 {
  font-family: var(--font-head);
  font-size: 1.28rem;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.bundle-item p {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.65;
}

.bundle-cover .ebook-cover {
  transform: scale(1.1);
  transform-origin: top center;
}

.bundle-value {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px 18px;
  flex-wrap: wrap;
}

.bundle-was {
  font-weight: 900;
  color: #ef4444;
}
.bundle-was s { text-decoration-thickness: 3px; }

.bundle-now {
  font-weight: 900;
  color: var(--text);
  background: var(--green-pale);
  border-radius: 999px;
  padding: 8px 14px;
}
.bundle-now strong { color: var(--green-dark); }

/* ============================================
   PROBLEM
   ============================================ */
.problem {
  background: var(--white);
  padding: 90px 0 80px;
  text-align: center;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.problem-card {
  background: #fef2f2;
  border: 1.5px solid #fecaca;
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: left;
}

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

.problem-card p {
  font-size: .95rem;
  color: #374151;
  line-height: 1.6;
}

.problem-bottom {
  background: var(--green-pale);
  border-left: 5px solid var(--green);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ============================================
   SOLUTION
   ============================================ */
.solution {
  padding: 90px 0;
}

.solution-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.solution-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 24px;
}
.solution-desc strong { color: var(--text); }

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.check-list li {
  font-size: .97rem;
  color: var(--text);
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}
.check-list li strong { color: var(--green-dark); }

/* Activity preview card */
.activity-preview {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1.5px solid #e5e7eb;
}

.ap-header {
  background: linear-gradient(135deg, var(--green-light), var(--green));
  color: var(--white);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1rem;
}
.ap-header span { font-size: 1.4rem; }

.ap-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid #f3f4f6;
  font-size: .93rem;
  transition: background .15s;
}
.ap-item:hover { background: var(--green-pale); }

.ap-num {
  background: var(--green-pale);
  color: var(--green-dark);
  font-weight: 900;
  font-size: .78rem;
  min-width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ap-more {
  background: var(--green-pale);
  color: var(--green-dark);
  font-weight: 800;
  font-size: .88rem;
  justify-content: center;
  border-bottom: none;
}

.ap-highlight {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-bottom: none;
  padding: 16px 20px;
  align-items: center;
  gap: 14px;
}

.ap-highlight-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ap-highlight-text strong {
  color: var(--white);
  font-size: .95rem;
  line-height: 1.35;
}

.ap-highlight-text small {
  color: rgba(255,255,255,.7);
  font-size: .75rem;
  font-weight: 600;
}

.ap-num--star {
  background: var(--yellow);
  color: var(--green-dark);
  font-size: .85rem;
}

.ap-cta {
  padding: 16px;
  background: var(--white);
}

/* ============================================
   CATEGORIES
   ============================================ */
.categories {
  background: var(--white);
  padding: 90px 0;
  text-align: center;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
  margin-top: 48px;
}

.cat-card {
  background: var(--bg);
  border: 1.5px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--green-light);
}

.cat-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
}

.cat-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--green-dark);
}

.cat-card p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ============================================
   FOR WHO
   ============================================ */
.for-who {
  padding: 90px 0;
  text-align: center;
}

.for-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 40px;
  text-align: left;
}

.for-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 22px;
  border: 1.5px solid #e5e7eb;
}

.for-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.for-item p {
  font-size: .95rem;
  color: var(--text);
}
.for-item p strong { color: var(--green-dark); }

/* ============================================
   NOT FOR WHO
   ============================================ */
.not-for-who {
  background: #fff5f5;
  padding: 80px 0;
  text-align: center;
}

.not-accent {
  color: #dc2626;
}

.not-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin: 36px 0;
  text-align: left;
}

.not-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #ffffff;
  border: 1.5px solid #fecaca;
  border-radius: var(--radius);
  padding: 20px 22px;
}

.not-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: #dc2626;
  color: #ffffff;
  font-weight: 900;
  font-size: .9rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.not-item p {
  font-size: .95rem;
  color: #374151;
  line-height: 1.6;
}

.not-bottom {
  background: var(--green-pale);
  border-left: 5px solid var(--green);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  text-align: left;
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--white);
  padding: 90px 0;
  text-align: center;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 48px;
  text-align: left;
}

.testi-card {
  background: var(--bg);
  border: 1.5px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 28px;
}

.testi-featured {
  background: linear-gradient(145deg, var(--green-dark), var(--green));
  border-color: transparent;
  color: var(--white);
}
.testi-featured p { color: #ffffff !important; }
.testi-featured .stars { color: var(--yellow) !important; }
.testi-featured strong { color: #ffffff !important; }
.testi-featured span { color: rgba(255,255,255,.8) !important; }

.stars {
  color: var(--yellow);
  font-size: 1.1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testi-card > p {
  font-size: .95rem;
  line-height: 1.65;
  margin-bottom: 20px;
  color: var(--text-muted);
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-author img {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
}

.testi-author strong {
  display: block;
  font-size: .95rem;
  color: var(--text);
}

.testi-author span {
  font-size: .8rem;
  color: var(--text-muted);
}

/* ============================================
   GUARANTEE
   ============================================ */
.guarantee {
  padding: 70px 0;
  background: #f8fafc;
}

.guarantee-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 44px;
  border: 1.5px solid #e5e7eb;
  box-shadow: 0 18px 46px rgba(17, 24, 39, .08);
}

.guarantee-badge {
  flex-shrink: 0;
  width: 120px; height: 120px;
  background: linear-gradient(135deg, var(--green-light), var(--green));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
  color: var(--white);
}

.guarantee-icon { display: inline-flex; }
.guarantee-badge strong { font-size: .8rem; font-weight: 800; line-height: 1.2; }

.guarantee-text h2 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--green-dark);
}

.guarantee-text p {
  color: var(--text-muted);
  font-size: .97rem;
  margin-bottom: 8px;
}
.guarantee-text p strong { color: var(--text); }

.guarantee-points {
  list-style: none;
  padding: 0;
  margin: 16px 0 18px;
  display: grid;
  gap: 10px;
  text-align: left;
}

.guarantee-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.5;
}

.guarantee-points li strong { color: var(--text); }

.gp-icon {
  width: 18px;
  height: 18px;
  color: var(--green-dark);
  flex: 0 0 auto;
  margin-top: 2px;
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  padding: 100px 0 80px;
  text-align: center;
  background: var(--white);
}

.pricing-card {
  max-width: 520px;
  margin: 48px auto 32px;
  background: var(--bg);
  border: 2px solid var(--green-light);
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: 0 20px 60px rgba(45,125,70,.15);
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  font-size: .85rem;
  padding: 6px 20px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--green-dark);
  margin-bottom: 16px;
}

.pricing-original {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 4px;
}

.pricing-price {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: 6px;
}
.pricing-price span { font-size: 1.4rem; font-weight: 700; }

.pricing-usd {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  font-weight: 600;
}

.pricing-includes {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-includes li {
  font-size: .95rem;
  color: var(--text);
  padding: 8px 12px;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
}

.pricing-note,
.pricing-guarantee {
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: 10px;
  font-weight: 600;
}

/* Countdown */
.countdown-wrap {
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
}

/* Urgency box */
.urgency-box {
  max-width: 520px;
  margin: 0 auto;
  background: #1a1a2e;
  border: 2px solid #f97316;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(229,62,62,.25);
}

.urgency-header {
  background: #f97316;
  color: var(--white);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: .06em;
  text-align: center;
  padding: 12px 20px;
  animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
  0%, 100% { background: #f97316; }
  50%       { background: #ea6c0a; }
}

.urgency-text {
  text-align: center;
  color: rgba(255,255,255,.75);
  font-size: .92rem;
  font-weight: 600;
  padding: 16px 20px 8px;
}
.urgency-text strong { color: #fed7aa; }

.urgency-after {
  text-align: center;
  color: rgba(255,255,255,.5);
  font-size: .8rem;
  padding: 10px 20px 18px;
  font-weight: 500;
}
.urgency-after s { color: rgba(255,255,255,.35); }

.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
}

.cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f97316;
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  min-width: 72px;
}

.cd-block span {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  font-family: var(--font-head);
}

.cd-block small {
  font-size: .65rem;
  color: rgba(255,255,255,.8);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.cd-sep {
  font-size: 2rem;
  font-weight: 900;
  color: #fed7aa;
  margin-bottom: 18px;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 90px 0;
  background: var(--bg);
}

.faq .section-title { text-align: center; }
.faq .section-label { display: block; text-align: center; margin-bottom: 12px; }

.faq-list {
  max-width: 720px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid #e5e7eb;
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}

.faq-item:has(.faq-q[aria-expanded="true"]) {
  border-color: var(--green-light);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  flex-shrink: 0;
  color: var(--green);
  transition: transform .25s;
}

.faq-q[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .2s;
}

.faq-a.open {
  max-height: 300px;
}

.faq-a p {
  padding: 0 24px 20px;
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.faq-a p strong { color: var(--text); }

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  padding: 100px 0;
  background: linear-gradient(160deg, #1a5230 0%, #2d7d46 60%, #4caf6e 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta .section-label {
  background: rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  border: none;
}

.final-cta-inner { position: relative; z-index: 1; }

.final-cta h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.final-cta p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.82);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.final-cta .btn-primary {
  background: var(--yellow);
  color: #1a1a2e;
  box-shadow: 0 8px 30px rgba(249,200,70,.4);
}
.final-cta .btn-primary:hover {
  box-shadow: 0 12px 40px rgba(249,200,70,.55);
}

.final-note {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  margin-top: 14px;
  font-weight: 600;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--text);
  padding: 36px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--white);
}

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

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .15s;
}
.footer-links a:hover { color: var(--white); }

/* ============================================
   BEFORE / AFTER
   ============================================ */
.before-after {
  padding: 90px 0;
  background: var(--bg);
  text-align: center;
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
  text-align: left;
}

.ba-col {
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ba-before {
  background: #fff5f5;
  border: 1.5px solid #fecaca;
}

.ba-after {
  background: var(--green-pale);
  border: 1.5px solid var(--green-light);
}

.ba-col-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}

.ba-col-icon { font-size: 2rem; }

.ba-col-header h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--text);
}

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

.ba-before .ba-list li {
  padding: 10px 14px 10px 36px;
  background: #ffffff;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  color: #374151;
  position: relative;
}
.ba-before .ba-list li::before {
  content: '✕';
  position: absolute;
  left: 12px;
  color: #dc2626;
  font-weight: 900;
}

.ba-after .ba-list li {
  padding: 10px 14px 10px 36px;
  background: #ffffff;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  color: var(--text);
  position: relative;
}
.ba-after .ba-list li::before {
  content: '✓';
  position: absolute;
  left: 12px;
  color: var(--green);
  font-weight: 900;
}
.ba-after .ba-list li strong { color: var(--green-dark); }

@media (max-width: 700px) {
  .ba-grid { grid-template-columns: 1fr; }
}

/* ============================================
   AUTHOR
   ============================================ */
.author {
  padding: 90px 0;
  background: var(--white);
}

.author-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
}

.author-photo-wrap {
  position: relative;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.author-photo {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--green-light);
  box-shadow: 0 16px 48px rgba(45,125,70,.2);
}

.author-ig-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white);
  font-weight: 700;
  font-size: .8rem;
  padding: 6px 16px;
  border-radius: 100px;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
}
.author-ig-badge:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(204,35,102,.35); }

.author-name {
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.author-title {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: .03em;
}

.author-bio {
  font-size: .97rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}
.author-bio strong { color: var(--text); }

.author-stats {
  display: flex;
  gap: 28px;
  margin: 24px 0;
  padding: 20px 24px;
  background: var(--green-pale);
  border-radius: var(--radius);
  flex-wrap: wrap;
}

.author-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.author-stat strong {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--green-dark);
  line-height: 1;
}

.author-stat span {
  font-size: .72rem;
  color: var(--text-muted);
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.author-ig-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #bc1888;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: color .15s;
}
.author-ig-link:hover { color: #8b0f6a; }

@media (max-width: 820px) {
  .author-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 36px;
  }
  .author-stats { justify-content: center; }
  .author-ig-link { justify-content: center; }
}

/* ============================================
   TESTIMONIALS – WhatsApp style
   ============================================ */
.testi-grid--whatsapp {
  margin-top: 24px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.testi-grid--single {
  margin-top: 24px;
  grid-template-columns: 1fr;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.testi-4star {
  background: var(--yellow-pale);
  border-color: var(--yellow);
}

.testi-whatsapp {
  background: #ECE5DD;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.wa-header {
  background: #075E54;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.wa-contact {
  flex: 1;
  min-width: 0;
}

.wa-contact strong {
  display: block;
  color: #ffffff;
  font-size: .9rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wa-contact span {
  display: block;
  color: rgba(255,255,255,.7);
  font-size: .72rem;
  font-weight: 500;
  margin-top: 1px;
}

.wa-icon { flex-shrink: 0; }

.wa-body {
  padding: 16px 14px;
  background: #ECE5DD url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c4b59b' fill-opacity='0.15' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
  min-height: 80px;
}

.wa-bubble {
  background: #DCF8C6;
  border-radius: 8px 8px 2px 8px;
  padding: 10px 14px 6px;
  max-width: 92%;
  margin-left: auto;
  position: relative;
  box-shadow: 0 1px 2px rgba(0,0,0,.15);
}

.wa-bubble::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -8px;
  width: 0; height: 0;
  border-left: 8px solid #DCF8C6;
  border-bottom: 8px solid transparent;
}

.wa-bubble p {
  font-size: .88rem;
  color: #1a1a1a;
  line-height: 1.55;
  margin-bottom: 4px;
}

.wa-time {
  display: block;
  text-align: right;
  font-size: .68rem;
  color: #8696A0;
  font-weight: 500;
  margin-top: 2px;
}

.wa-footer {
  background: #f7f7f7;
  padding: 8px 14px;
  font-size: .72rem;
  color: #8696A0;
  text-align: center;
  font-weight: 500;
  border-top: 1px solid #e0e0e0;
}

/* ============================================
   GUARANTEE
   ============================================ */
.guarantee {
  padding: 70px 0;
  background: #f8fafc;
}

.guarantee-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 44px;
  border: 1.5px solid #e5e7eb;
  box-shadow: 0 18px 46px rgba(17, 24, 39, .08);
}

.guarantee-badge {
  flex-shrink: 0;
  width: 120px; height: 120px;
  background: linear-gradient(135deg, var(--green-light), var(--green));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
  color: var(--white);
}

.guarantee-icon { display: inline-flex; }
.guarantee-badge strong { font-size: .8rem; font-weight: 800; line-height: 1.2; }

.guarantee-text h2 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--green-dark);
}

.guarantee-text p {
  color: var(--text-muted);
  font-size: .97rem;
  margin-bottom: 12px;
}
.guarantee-text p strong { color: var(--text); }

.guarantee-text .btn {
  margin-top: 6px;
}

@media (max-width: 700px) {
  .guarantee-inner {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }
}

/* ============================================
   NO ACTÚAS
   ============================================ */
.no-actuas {
  padding: 90px 0;
  background: #1a1a2e;
  text-align: center;
}

.no-actuas-label {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  border: none;
}

.no-actuas-title {
  color: var(--white);
}

.no-actuas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 48px 0;
  text-align: left;
}

.no-actuas-item {
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.no-actuas-time {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--yellow);
  font-weight: 700;
  margin-bottom: 12px;
}

.no-actuas-item p {
  font-size: .95rem;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
}

.no-actuas-cta {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.no-actuas-cta-text {
  font-size: 1.2rem;
  color: rgba(255,255,255,.85);
  font-weight: 600;
}

.no-actuas .btn-primary {
  background: var(--yellow);
  color: #1a1a2e;
  box-shadow: 0 8px 30px rgba(249,200,70,.35);
}
.no-actuas .btn-primary:hover {
  box-shadow: 0 12px 40px rgba(249,200,70,.5);
}

/* ============================================
   VALUE STACK
   ============================================ */
.value-stack {
  max-width: 560px;
  margin: 48px auto 0;
  background: var(--bg);
  border: 1.5px solid #e5e7eb;
  border-radius: var(--radius);
  overflow: hidden;
}

.vs-title {
  background: var(--text);
  color: var(--white);
  font-weight: 800;
  font-size: .9rem;
  padding: 12px 20px;
  text-align: center;
  letter-spacing: .03em;
}

.vs-items {
  padding: 8px 0;
}

.vs-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 20px;
  font-size: .9rem;
  color: var(--text-muted);
  border-bottom: 1px solid #f3f4f6;
}

.vs-item--total {
  background: #fef2f2;
  font-weight: 700;
  color: var(--text);
  border-bottom: none;
}

.vs-price {
  flex-shrink: 0;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}

.vs-item--total .vs-price {
  color: #dc2626;
}

.vs-final {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: var(--green-pale);
  font-weight: 700;
  font-size: 1rem;
  color: var(--green-dark);
}

.vs-final-price {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--green-dark);
  white-space: nowrap;
}

/* Bonus item in pricing */
.pricing-bonus {
  background: var(--yellow-pale) !important;
  border: 1.5px solid var(--yellow) !important;
  font-size: .95rem !important;
}

/* Final CTA price display */
.final-cta-price {
  margin-bottom: 12px;
}

.final-old-price {
  font-size: 1rem;
  color: rgba(255,255,255,.6);
  font-weight: 600;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .hero {
    padding: 60px 0 60px;
    text-align: center;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .hero-text { align-items: center; }
  .hero-social-proof { justify-content: center; }
  .hero-book-wrap { margin-top: 8px; }
  .hero-book-img { width: 200px; }
  .solution-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .guarantee-inner {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }
}

@media (max-width: 600px) {
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.6rem; }
  .pricing-card { padding: 32px 20px; }
  .pricing-price { font-size: 2.5rem; }
  .ebook-front { width: 180px; min-height: 240px; }
  .hero-sub { font-size: 1rem; }
  .guarantee-inner { padding: 28px 20px; }
}

body.checkout-body {
  background: #f8fafc;
  color: var(--text);
}

.checkout-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248,250,252,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.checkout-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.checkout-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}

.checkout-brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.checkout-brand-name {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--green-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.checkout-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(0,0,0,.06);
  color: var(--text-muted);
  font-weight: 700;
  font-size: .9rem;
  white-space: nowrap;
}

.checkout-lock {
  width: 14px;
  height: 14px;
  display: inline-block;
  background: no-repeat center / contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M17 11V8a5 5 0 0 0-10 0v3' stroke='%236b7280' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M6 11h12a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-6a2 2 0 0 1 2-2Z' stroke='%236b7280' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M12 15v2' stroke='%236b7280' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.checkout-main {
  padding: 28px 0 56px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 32px;
  align-items: start;
}

.checkout-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(15, 23, 42, .06);
  padding: 22px;
}

.checkout-card-head {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  margin-bottom: 18px;
}

.checkout-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 8px;
}

.checkout-subtitle {
  color: var(--text-muted);
  font-weight: 600;
  font-size: .95rem;
}

.checkout-block {
  margin-top: 18px;
}

.checkout-h2 {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 12px;
}

.checkout-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.checkout-label {
  font-size: .9rem;
  font-weight: 800;
  color: #374151;
}

.checkout-input {
  width: 100%;
  appearance: none;
  border: 1px solid rgba(0,0,0,.12);
  background: #ffffff;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--text);
  outline: none;
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.checkout-input::placeholder {
  color: #9ca3af;
}

.checkout-input:focus,
.checkout-input:focus-visible {
  border-color: rgba(45,125,70,.55);
  box-shadow: 0 0 0 4px rgba(45,125,70,.14);
}

.checkout-grid {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.checkout-grid-1 { grid-template-columns: 1fr; }
.checkout-grid-2 { grid-template-columns: 1fr 1fr; }

.checkout-pay-method {
  margin: 10px 0 12px;
}

.checkout-method-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(45,125,70,.06);
  border: 1px solid rgba(45,125,70,.18);
  color: var(--text);
  font-weight: 900;
}

.checkout-brands {
  color: var(--text-muted);
  font-weight: 800;
  font-size: .85rem;
  white-space: nowrap;
}

.checkout-help {
  margin-top: 10px;
  font-size: .86rem;
  color: var(--text-muted);
  font-weight: 600;
}

.checkout-actions {
  margin-top: 20px;
  display: grid;
  gap: 10px;
}

.checkout-pay-btn {
  width: 100%;
  border: none;
  border-radius: 14px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 1.05rem;
  cursor: pointer;
  background: #111827;
  color: #ffffff;
  box-shadow: 0 12px 34px rgba(17,24,39,.18);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.checkout-pay-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 42px rgba(17,24,39,.22);
  background: #0b1220;
}

.checkout-fineprint {
  font-size: .8rem;
  color: var(--text-muted);
  font-weight: 600;
}

.checkout-summary {
  position: sticky;
  top: 88px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(15, 23, 42, .06);
  padding: 18px;
}

.checkout-product {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.checkout-product-media {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  overflow: hidden;
  background: #f3f4f6;
  border: 1px solid rgba(0,0,0,.06);
}

.checkout-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checkout-product-name {
  font-weight: 900;
  color: var(--text);
  line-height: 1.2;
}

.checkout-product-meta {
  margin-top: 3px;
  color: var(--text-muted);
  font-weight: 600;
  font-size: .85rem;
}

.checkout-product-price {
  font-weight: 900;
  color: var(--text);
  white-space: nowrap;
}

.checkout-divider {
  height: 1px;
  background: rgba(0,0,0,.06);
  margin: 14px 0;
}

.checkout-total-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  font-weight: 900;
  color: var(--text);
}

.checkout-total-amount {
  white-space: nowrap;
}

.checkout-security {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,.06);
  display: grid;
  gap: 8px;
  color: var(--text-muted);
  font-weight: 700;
  font-size: .86rem;
}

.checkout-security-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkout-security-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(45,125,70,.9);
  box-shadow: 0 0 0 3px rgba(45,125,70,.12);
}

@media (max-width: 980px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-summary { position: relative; top: 0; }
}

@media (max-width: 560px) {
  .checkout-card { padding: 18px; }
  .checkout-title { font-size: 1.55rem; }
  .checkout-grid-2 { grid-template-columns: 1fr; }
  .checkout-summary { padding: 16px; }
}
