/** Shopify CDN: Minification failed

Line 852:0 Expected "}" to go with "{"

**/
/* =====================================================
   RESET & BASE
===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

/* =====================================================
   TOKENS
===================================================== */
:root {
  --bg:        #FFF8F2;
  --primary:   #E85D04;
  --primary-d: #C94E00;
  --secondary: #FFB703;
  --success:   #2A9D8F;
  --text:      #222222;
  --muted:     #666666;
  --white:     #FFFFFF;
  --card-bg:   rgba(255,255,255,0.75);
  --border:    rgba(232,93,4,0.12);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 40px rgba(232,93,4,0.12);
  --shadow-lg: 0 24px 80px rgba(232,93,4,0.16);
  --radius:    20px;
  --radius-lg: 32px;
  font-family: 'Inter', system-ui, sans-serif;
}

body { background: var(--bg); color: var(--text); overflow-x: hidden; }

/* =====================================================
   PROGRESS BAR
===================================================== */
#progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  z-index: 9999; transition: width 0.1s linear;
}

/* =====================================================
   STICKY NAV
===================================================== */
nav {
  position: fixed; top: 3px; left: 0; right: 0; z-index: 999;
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
  background: rgba(255,248,242,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-logo { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.1rem; color: var(--primary); }
.nav-cta {
  background: var(--primary); color: var(--white);
  padding: 10px 24px; border-radius: 999px; font-weight: 600; font-size: 0.85rem;
  text-decoration: none; transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--primary-d); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(232,93,4,0.35); }

/* =====================================================
   UTILITY
===================================================== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 5%; }
.container-sm { max-width: 780px; margin: 0 auto; padding: 0 5%; }

.section { padding: 100px 0; }
.section-sm { padding: 70px 0; }

.label {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--primary); background: rgba(232,93,4,0.08);
  padding: 6px 16px; border-radius: 999px; margin-bottom: 20px;
}

h1, h2, h3 { font-family: 'Fraunces', serif; line-height: 1.15; }

.headline-xl { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 900; }
.headline-lg { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 700; }
.headline-md { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; }

.body-lg { font-size: 1.15rem; line-height: 1.75; color: var(--muted); }
.body-md { font-size: 1rem; line-height: 1.7; color: var(--muted); }

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-success { color: var(--success); }

/* =====================================================
   BUTTON
===================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 40px; border-radius: 999px; font-weight: 700; font-size: 1.05rem;
  text-decoration: none; transition: all 0.25s; cursor: pointer; border: none;
  position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: rgba(255,255,255,0);
  transition: background 0.2s;
}
.btn:hover::after { background: rgba(255,255,255,0.1); }

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #FF7A2F 100%);
  color: var(--white);
  box-shadow: 0 6px 30px rgba(232,93,4,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(232,93,4,0.5); }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: white; }

.btn-xl { padding: 22px 52px; font-size: 1.2rem; }

.btn-pulse {
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 30px rgba(232,93,4,0.4); }
  50% { box-shadow: 0 6px 50px rgba(232,93,4,0.65), 0 0 0 14px rgba(232,93,4,0.06); }
}

/* =====================================================
   CARDS / GLASS
===================================================== */
.glass-card {
  background: var(--card-bg);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

/* =====================================================
   HERO
===================================================== */
#hero {
  min-height: 100vh; padding-top: 120px; padding-bottom: 80px;
  display: flex; align-items: center;
  background: radial-gradient(ellipse 80% 60% at 60% 20%, rgba(232,93,4,0.07) 0%, transparent 70%),
              radial-gradient(ellipse 50% 40% at 20% 80%, rgba(255,183,3,0.06) 0%, transparent 60%);
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-kicker { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.hero-kicker-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); animation: blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.4;} }
.hero-kicker-text { font-size: 0.82rem; font-weight: 600; color: var(--success); }

.hero-title { margin-bottom: 24px; }
.hero-title em { font-style: italic; color: var(--primary); }

.hero-subtitle { font-size: 1.2rem; line-height: 1.7; color: var(--muted); margin-bottom: 36px; max-width: 520px; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.hero-badge {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--border);
  font-size: 0.82rem; font-weight: 600; color: var(--text);
  box-shadow: var(--shadow-sm);
}
.hero-badge svg { color: var(--primary); }

.hero-cta-group { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-guarantee { font-size: 0.82rem; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.hero-guarantee svg { color: var(--success); }

/* Mockup */
.hero-visual { display: flex; align-items: center; justify-content: center; position: relative; }
.mockup-book {
  width: 320px; max-width: 100%;
  aspect-ratio: 3/4;
  border-radius: 16px;
  background: linear-gradient(145deg, #1a1a1a 0%, #2d1a0e 40%, #3d2010 100%);
  box-shadow: -8px 8px 0px 0px rgba(0,0,0,0.3), 0 30px 80px rgba(0,0,0,0.25);
  position: relative; overflow: hidden;
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%,100%{transform:translateY(0) rotate(-1deg);}
  50%{transform:translateY(-14px) rotate(-1deg);}
}
.mockup-spine {
  position: absolute; left: 0; top: 0; bottom: 0; width: 28px;
  background: linear-gradient(180deg, var(--primary) 0%, #a03d00 100%);
}
.mockup-content {
  position: absolute; left: 28px; right: 0; top: 0; bottom: 0; padding: 28px 22px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.mockup-tag {
  display: inline-block;
  background: var(--secondary); color: #222; font-size: 0.55rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 4px;
  align-self: flex-start; margin-bottom: 12px;
}
.mockup-title {
  font-family: 'Fraunces', serif;
  color: white; font-size: 1.25rem; font-weight: 900; line-height: 1.2;
}
.mockup-subtitle {
  color: rgba(255,255,255,0.6); font-size: 0.62rem; margin-top: 8px; line-height: 1.5;
}
.mockup-icon-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 16px;
}
.mockup-icon-item {
  background: rgba(255,255,255,0.07); border-radius: 8px; padding: 8px;
  text-align: center; font-size: 1.2rem;
}
.mockup-footer {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 14px;
  color: rgba(255,255,255,0.4); font-size: 0.55rem; letter-spacing: 0.08em;
}

.hero-orbits { position: absolute; width: 100%; height: 100%; pointer-events: none; }
.orbit-tag {
  position: absolute; padding: 10px 16px; border-radius: 14px;
  background: rgba(255,255,255,0.95); border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  font-size: 0.78rem; font-weight: 600; white-space: nowrap;
  animation: float-slow 6s ease-in-out infinite;
}
.orbit-tag:nth-child(2) { animation-delay: -2s; }
.orbit-tag:nth-child(3) { animation-delay: -4s; }
@keyframes float-slow { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-8px);} }
.ot1 { top: 10%; right: -20px; }
.ot2 { bottom: 22%; right: -30px; }
.ot3 { bottom: 10%; left: -10px; }
.orbit-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 6px; }
.dot-green { background: var(--success); }
.dot-orange { background: var(--primary); }
.dot-yellow { background: var(--secondary); }

/* Trust bar */
.trust-bar {
  border-top: 1px solid var(--border);
  padding: 28px 0; margin-top: 48px;
  display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--muted); }
.trust-item strong { color: var(--text); }

/* =====================================================
   PAIN SECTION
===================================================== */
#pain { background: var(--text); }
.pain-inner { text-align: center; }
.pain-title { color: white; }
.pain-sub { color: rgba(255,255,255,0.55); margin: 20px auto 60px; max-width: 580px; }

.pain-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px;
  text-align: left;
}
.pain-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 28px; transition: border-color 0.3s, background 0.3s;
}
.pain-card:hover { background: rgba(232,93,4,0.08); border-color: rgba(232,93,4,0.3); }
.pain-emoji { font-size: 1.8rem; margin-bottom: 14px; }
.pain-card h3 { font-family: 'Fraunces', serif; color: white; font-size: 1.05rem; margin-bottom: 8px; }
.pain-card p { color: rgba(255,255,255,0.5); font-size: 0.9rem; line-height: 1.6; }

/* =====================================================
   STORY SECTION
===================================================== */
#story { background: var(--bg); }
.story-inner { max-width: 760px; margin: 0 auto; }
.story-inner p { font-size: 1.1rem; line-height: 1.85; color: var(--muted); margin-bottom: 24px; }
.story-inner p strong { color: var(--text); }
.story-inner p em { color: var(--primary); font-style: normal; font-weight: 600; }

.story-highlight {
  border-left: 4px solid var(--primary); padding: 20px 28px;
  background: rgba(232,93,4,0.05); border-radius: 0 var(--radius) var(--radius) 0;
  margin: 36px 0; font-size: 1.15rem; font-weight: 500; color: var(--text); font-style: italic;
}

/* =====================================================
   OPPORTUNITY
===================================================== */
#opportunity {
  background: linear-gradient(135deg, rgba(232,93,4,0.04) 0%, rgba(255,183,3,0.04) 100%);
}
.opp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 60px; }
.opp-card {
  background: white; border-radius: var(--radius); padding: 32px 28px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  text-align: center; transition: transform 0.3s, box-shadow 0.3s;
}
.opp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.opp-num {
  font-family: 'Fraunces', serif; font-size: 2.8rem; font-weight: 900;
  color: var(--primary); line-height: 1;
}
.opp-unit { font-size: 1rem; font-weight: 400; color: var(--muted); display: block; margin-top: 4px; }
.opp-desc { font-size: 0.88rem; color: var(--muted); margin-top: 12px; line-height: 1.5; }

/* =====================================================
   PRODUCT PRESENTATION
===================================================== */
#product { background: var(--bg); }
.product-inner {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 70px; align-items: center;
}
.product-mockup-wrap { position: relative; display: flex; justify-content: center; }
.product-book-shadow {
  width: 280px; aspect-ratio: 3/4;
  border-radius: 16px;
  background: linear-gradient(145deg, #1a1a1a, #3d2010);
  box-shadow: -6px 6px 0 rgba(0,0,0,0.25), 0 40px 80px rgba(232,93,4,0.2);
  position: relative; overflow: hidden;
}
.product-book-shadow .mockup-spine { background: linear-gradient(180deg, var(--secondary) 0%, #c88d00 100%); }
.product-badge-float {
  position: absolute; right: -20px; top: 20px;
  background: var(--success); color: white;
  padding: 10px 20px; border-radius: 999px;
  font-size: 0.78rem; font-weight: 700; box-shadow: 0 4px 20px rgba(42,157,143,0.4);
}
.product-chapters {
  display: flex; flex-direction: column; gap: 16px; margin-top: 36px;
}
.chap-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px; border-radius: 14px;
  background: white; border: 1px solid var(--border);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.chap-item:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.chap-num {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  background: rgba(232,93,4,0.1); color: var(--primary);
  font-size: 0.8rem; font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.chap-title { font-weight: 600; font-size: 0.95rem; color: var(--text); margin-bottom: 4px; }
.chap-desc { font-size: 0.83rem; color: var(--muted); }

/* =====================================================
   BENEFITS
===================================================== */
#benefits { background: var(--white); }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; margin-top: 60px; }
.benefit-card {
  padding: 36px 30px; border-radius: var(--radius);
  border: 1px solid var(--border); background: var(--bg);
  transition: transform 0.3s, box-shadow 0.3s;
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.benefit-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(232,93,4,0.1); display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
}
.benefit-card h3 { font-family: 'Fraunces', serif; font-size: 1.2rem; margin-bottom: 10px; }
.benefit-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

/* =====================================================
   WHAT YOU LEARN — ACCORDION
===================================================== */
#learn { background: var(--bg); }
.learn-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.learn-accordion { display: flex; flex-direction: column; gap: 12px; }
.acc-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: white; overflow: hidden; transition: box-shadow 0.3s;
}
.acc-item.open { box-shadow: var(--shadow-sm); border-color: var(--primary); }
.acc-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; cursor: pointer; gap: 16px;
}
.acc-header-left { display: flex; align-items: center; gap: 14px; }
.acc-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(232,93,4,0.1); color: var(--primary);
  font-size: 0.72rem; font-weight: 700; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.acc-label { font-weight: 600; font-size: 0.95rem; }
.acc-arrow {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(232,93,4,0.08); display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s; flex-shrink: 0; color: var(--primary);
}
.acc-item.open .acc-arrow { transform: rotate(180deg); background: var(--primary); color: white; }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; padding: 0 24px; }
.acc-item.open .acc-body { max-height: 400px; padding: 0 24px 20px; }
.acc-body ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.acc-body li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--muted); line-height: 1.5; }
.acc-body li::before { content: '✓'; color: var(--success); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.learn-visual {
  background: var(--text); border-radius: var(--radius-lg);
  padding: 40px 36px; color: white; position: sticky; top: 90px;
}
.learn-visual h3 { font-family: 'Fraunces', serif; font-size: 1.6rem; margin-bottom: 16px; }
.learn-visual p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.65; margin-bottom: 28px; }
.learn-stat { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.learn-stat:last-child { border-bottom: none; }
.learn-stat-num { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 900; color: var(--primary); line-height: 1; flex-shrink: 0; width: 70px; }
.learn-stat-label { font-size: 0.88rem; color: rgba(255,255,255,0.65); }

/* =====================================================
   BONUSES
===================================================== */
#bonuses {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1a0e 100%);
}
.bonuses-header { text-align: center; margin-bottom: 60px; }
.bonuses-header h2 { color: white; }
.bonuses-header p { color: rgba(255,255,255,0.55); margin-top: 16px; }
.bonus-grid { display: flex; flex-direction: column; gap: 20px; }
.bonus-card {
  display: flex; align-items: center; gap: 28px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 28px; transition: border-color 0.3s, background 0.3s;
}
.bonus-card:hover { border-color: rgba(255,183,3,0.4); background: rgba(255,183,3,0.05); }
.bonus-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: rgba(255,183,3,0.15); display: flex; align-items: center; justify-content: center;
  font-size: 2rem; flex-shrink: 0;
}
.bonus-info { flex: 1; }
.bonus-info h3 { font-family: 'Fraunces', serif; color: white; font-size: 1.1rem; margin-bottom: 6px; }
.bonus-info p { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.55; }
.bonus-price-wrap { text-align: right; flex-shrink: 0; }
.bonus-old { color: rgba(255,255,255,0.3); font-size: 0.82rem; text-decoration: line-through; }
.bonus-free {
  background: var(--success); color: white;
  padding: 6px 16px; border-radius: 999px;
  font-size: 0.8rem; font-weight: 700; margin-top: 4px; display: inline-block;
}

/* =====================================================
   VALUE STACK
===================================================== */
#value-stack { background: var(--bg); }
.value-box {
  max-width: 680px; margin: 0 auto;
  background: white; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.value-box-header {
  background: var(--text); padding: 36px 40px; text-align: center;
}
.value-box-header h2 { color: white; font-family: 'Fraunces', serif; font-size: 1.8rem; }
.value-box-header p { color: rgba(255,255,255,0.6); margin-top: 8px; font-size: 0.95rem; }
.value-items { padding: 36px 40px; display: flex; flex-direction: column; gap: 16px; }
.value-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
}
.value-row:last-child { border-bottom: none; }
.value-row-name { display: flex; align-items: center; gap: 12px; font-weight: 500; font-size: 0.95rem; }
.value-row-icon { width: 36px; height: 36px; border-radius: 10px; background: rgba(232,93,4,0.08); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.value-row-price { font-weight: 700; color: var(--muted); font-size: 0.95rem; }
.value-total {
  background: rgba(232,93,4,0.04); padding: 24px 40px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 2px solid var(--border);
}
.value-total-label { font-weight: 700; font-size: 1rem; }
.value-total-num { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 900; color: var(--muted); text-decoration: line-through; }
.value-cta-box { padding: 36px 40px; text-align: center; }
.price-display { margin-bottom: 8px; }
.price-before { color: var(--muted); font-size: 0.9rem; text-decoration: line-through; }
.price-now {
  font-family: 'Fraunces', serif; font-size: 3.5rem; font-weight: 900;
  color: var(--primary); line-height: 1;
}
.price-currency { font-size: 1.5rem; vertical-align: top; margin-top: 8px; display: inline-block; }
.price-note { font-size: 0.82rem; color: var(--muted); margin-top: 4px; }
.value-cta-box .btn { width: 100%; justify-content: center; margin-top: 24px; }

/* =====================================================
   BEFORE / AFTER
===================================================== */
#transformation { background: var(--white); }
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 60px; }
.ba-col { border-radius: var(--radius); padding: 36px 32px; }
.ba-before { background: #f5f5f5; border: 1px solid #e0e0e0; }
.ba-after { background: rgba(42,157,143,0.06); border: 1px solid rgba(42,157,143,0.25); }
.ba-col h3 { font-family: 'Fraunces', serif; font-size: 1.3rem; margin-bottom: 28px; display: flex; align-items: center; gap: 10px; }
.ba-before h3 { color: #888; }
.ba-after h3 { color: var(--success); }
.ba-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.ba-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; line-height: 1.55; }
.ba-before .ba-list li { color: #777; }
.ba-after .ba-list li { color: var(--text); }
.ba-icon { flex-shrink: 0; margin-top: 1px; }

/* =====================================================
   TESTIMONIALS
===================================================== */
#testimonials { background: var(--bg); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 60px; }
.testi-card {
  background: white; border-radius: var(--radius); padding: 28px;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: transform 0.3s;
}
.testi-card:hover { transform: translateY(-4px); }
.testi-stars { color: var(--secondary); font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testi-quote { font-size: 0.95rem; color: var(--muted); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: white; font-size: 0.9rem; flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 0.9rem; }
.testi-location { font-size: 0.78rem; color: var(--muted); }

/* =====================================================
   FOR WHO / NOT FOR WHO
===================================================== */
#for-who { background: var(--white); }
.for-who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; margin-top: 60px; }
.fw-col { border-radius: var(--radius); padding: 36px 32px; }
.fw-yes { background: rgba(42,157,143,0.05); border: 1px solid rgba(42,157,143,0.2); }
.fw-no { background: rgba(232,93,4,0.04); border: 1px solid rgba(232,93,4,0.15); }
.fw-col h3 { font-family: 'Fraunces', serif; font-size: 1.2rem; margin-bottom: 24px; }
.fw-yes h3 { color: var(--success); }
.fw-no h3 { color: var(--primary); }
.fw-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.fw-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; line-height: 1.55; color: var(--muted); }
.fw-check { color: var(--success); flex-shrink: 0; font-weight: 700; }
.fw-cross { color: var(--primary); flex-shrink: 0; font-weight: 700; }

/* =====================================================
   TRUST / CONFIDENCE SECTION  (reemplaza garantía)
===================================================== */
#trust { background: var(--bg); }
.trust-box {
  max-width: 780px; margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.trust-box-header {
  background: var(--text); padding: 40px; text-align: center;
}
.trust-box-header h2 { color: white; font-family: 'Fraunces', serif; font-size: 1.8rem; margin-bottom: 10px; }
.trust-box-header p { color: rgba(255,255,255,0.6); font-size: 0.95rem; }
.trust-features {
  background: white; padding: 40px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px;
}
.trust-feature {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px;
  padding: 24px 16px; border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: transform 0.3s, box-shadow 0.3s;
}
.trust-feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.trust-feature-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(232,93,4,0.1); display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
}
.trust-feature h3 { font-family: 'Fraunces', serif; font-size: 1rem; color: var(--text); }
.trust-feature p { font-size: 0.85rem; color: var(--muted); line-height: 1.55; }

/* =====================================================
   FAQ
===================================================== */
#faq { background: var(--white); }
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 60px; max-width: 760px; margin-left: auto; margin-right: auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--bg); overflow: hidden;
}
.faq-item.open { border-color: var(--primary); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 28px; cursor: pointer; font-weight: 600; gap: 16px;
  font-size: 0.97rem;
}
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(232,93,4,0.08); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; transition: transform 0.3s, background 0.3s; flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--primary); color: white; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 28px 22px; font-size: 0.93rem; color: var(--muted); line-height: 1.7; border-top: 1px solid var(--border); padding-top: 16px; }

/* =====================================================
   FINAL CTA
===================================================== */
#final-cta {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1a0e 60%, #1a1a1a 100%);
  position: relative; overflow: hidden;
}
#final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(232,93,4,0.15) 0%, transparent 70%);
}
.final-cta-inner { position: relative; z-index: 1; text-align: center; }
.final-cta-inner h2 { color: white; }
.final-cta-inner .body-lg { color: rgba(255,255,255,0.55); max-width: 580px; margin: 20px auto 40px; }
.final-price { color: white; margin-bottom: 36px; }
.final-price-note { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin-top: 10px; }
.final-guarantee-note { margin-top: 24px; color: rgba(255,255,255,0.45); font-size: 0.84rem; }

/* =====================================================
   FOOTER
===================================================== */
footer {
  background: #111; color: rgba(255,255,255,0.4); padding: 48px 5%;
  font-size: 0.83rem; line-height: 1.7;
}
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; gap: 24px; align-items: center; text-align: center; }
.footer-logo { font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 700; color: rgba(255,255,255,0.7); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.7); }
.footer-disclaimer { max-width: 640px; font-size: 0.76rem; opacity: 0.55; }

/* =====================================================
   SCROLL ANIMATIONS
===================================================== */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.from-left { transform: translateX(-32px); }
.reveal.from-right { transform: translateX(32px); }
.reveal.visible { opacity: 1; transform: translate(0); }

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .product-inner { grid-template-columns: 1fr; }
  .learn-inner { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .for-who-grid { grid-template-columns: 1fr; }
  .learn-visual { position: static; }
  .bonus-card { flex-direction: column; text-align: center; }
  .bonus-price-wrap { text-align: center; }
  .trust-box-header { padding: 28px; }
  .trust-features { padding: 28px; }
  .value-box-header, .value-items, .value-cta-box, .value-total { padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 600px) {
  .section { padding: 70px 0; }
  .trust-bar { gap: 20px; }
  .nav-logo span { display: none; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .btn-xl { font-size: 1rem; padding: 18px 36px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
/* =====================================================
   MOCKUP REAL — imagen oficial del producto (Hero)
===================================================== */
.mockup-real {
  width: 320px; max-width: 100%;
  border-radius: 16px;
  box-shadow: -8px 8px 0px 0px rgba(0,0,0,0.22), 0 30px 80px rgba(232,93,4,0.22);
  animation: float 5s ease-in-out infinite;
  overflow: hidden; display: block;
}
.mockup-real-img {
  width: 100%; height: auto; display: block;
  border-radius: 16px;
  object-fit: cover;
}

/* =====================================================
   PRODUCT — imagen oficial sección producto
===================================================== */
.product-img-wrap {
  position: relative; display: inline-block;
}
.product-real-img {
  width: 280px; max-width: 100%; height: auto;
  border-radius: 16px; display: block;
  box-shadow: -6px 6px 0 rgba(0,0,0,0.2), 0 40px 80px rgba(232,93,4,0.18);
}

/* =====================================================
   BONUS — imagen oficial en cada bono
===================================================== */
.bonus-img-wrap {
  width: 80px; height: 80px;
  border-radius: 16px; overflow: hidden;
  flex-shrink: 0; display: flex;
  align-items: center; justify-content: center;
  background: rgba(255,183,3,0.1);
}
.bonus-real-img {
  width: 80px; height: 80px;
  object-fit: cover; border-radius: 12px; display: block;
}

/* =====================================================
   CRO — mejoras de conversión
===================================================== */

/* Nav CTA más visible */
.nav-cta {
  background: var(--primary);
  box-shadow: 0 2px 12px rgba(232,93,4,0.35);
}

/* Urgency badge en value stack */
.urgency-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,93,4,0.12); border: 1px solid rgba(232,93,4,0.3);
  color: var(--primary); font-size: 0.82rem; font-weight: 700;
  padding: 8px 20px; border-radius: 999px; margin-bottom: 16px;
}

/* Botón dentro de learn-visual */
.learn-visual .btn {
  display: flex; width: 100%;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, #FF7A2F 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(232,93,4,0.4);
  margin-top: 28px;
}

/* =====================================================
   MOBILE — mejoras premium para celular
===================================================== */
@media (max-width: 600px) {

  /* Hero */
  #hero { padding-top: 100px; padding-bottom: 60px; }
  .mockup-real { width: 240px; }
  .orbit-tag { font-size: 0.72rem; padding: 8px 12px; }
  .ot1 { right: -10px; top: 8%; }
  .ot2 { right: -10px; }
  .ot3 { left: -4px; }

  /* Tipografía */
  .headline-xl { font-size: 2rem; }
  .headline-lg { font-size: 1.75rem; }
  .hero-subtitle { font-size: 1rem; }

  /* Badges hero */
  .hero-badges { gap: 8px; }
  .hero-badge { font-size: 0.78rem; padding: 6px 12px; }

  /* Botones */
  .btn-xl { width: 100%; justify-content: center; text-align: center; font-size: 0.95rem; padding: 18px 24px; }
  .btn { font-size: 0.95rem; padding: 16px 28px; }

  /* Trust bar */
  .trust-bar { flex-direction: column; gap: 12px; align-items: flex-start; padding: 20px 5%; }
  .trust-item { font-size: 0.85rem; }

  /* Pain grid */
  .pain-grid { grid-template-columns: 1fr; }

  /* Product */
  .product-real-img { width: 200px; }

  /* Bonus cards */
  .bonus-card { padding: 20px; gap: 16px; }
  .bonus-img-wrap { width: 60px; height: 60px; }
  .bonus-real-img { width: 60px; height: 60px; }
  .bonus-info h3 { font-size: 0.95rem; }
  .bonus-price-wrap { text-align: left; }

  /* Value box */
  .value-box-header { padding: 28px 20px; }
  .value-box-header h2 { font-size: 1.4rem; }
  .value-items { padding: 24px 20px; gap: 8px; }
  .value-row { flex-direction: column; gap: 4px; align-items: flex-start; }
  .value-row-price { font-size: 0.88rem; color: var(--primary); font-weight: 700; }
  .value-total { flex-direction: column; gap: 4px; padding: 20px; }
  .value-total-num { font-size: 1.2rem; }
  .value-cta-box { padding: 24px 20px; }
  .price-now { font-size: 2.8rem; }

  /* Before/After */
  .ba-col { padding: 24px 20px; }

  /* Testimonials */
  .testi-grid { grid-template-columns: 1fr; }

  /* For who */
  .fw-col { padding: 24px 20px; }

  /* Trust box */
  .trust-features { grid-template-columns: 1fr; padding: 20px; gap: 16px; }
  .trust-feature { padding: 16px; }

  /* FAQ */
  .faq-q { font-size: 0.88rem; padding: 18px 20px; }
  .faq-a-inner { padding: 0 20px 18px; font-size: 0.88rem; }

  /* Final CTA */
  #final-cta .btn-xl { width: 100%; justify-content: center; font-size: 1rem; padding: 20px 24px; }
  #final-cta .price-now-final { font-size: 3rem; }

  /* Learn accordion */
  .learn-visual { margin-top: 32px; }
  .acc-header { padding: 16px 18px; }
  .acc-label { font-size: 0.88rem; }

  /* Opp grid */
  .opp-grid { grid-template-columns: 1fr 1fr; }
  .opp-num { font-size: 2rem; }

  /* Benefits */
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-card { padding: 24px 20px; }

  /* Section padding mobile */
  .section { padding: 60px 0; }
  .section-sm { padding: 50px 0; }
}

@media (max-width: 400px) {
  .opp-grid { grid-template-columns: 1fr; }
  .mockup-real { width: 200px; }
