/* ═══════════════════════════════════════════════════════════════
   21 DIAS DE ORAÇÕES — Premium Landing Page v3
   ═══════════════════════════════════════════════════════════════ */

:root {
  --ink: #07151d;
  --ink-light: #1a2e3a;
  --muted: #52616a;
  --paper: #fff8ef;
  --paper-2: #f2dcc0;
  --gold: #c99435;
  --gold-2: #f3ca6a;
  --gold-3: #ffe4a0;
  --dark: #061016;
  --dark-2: #0a1a24;
  --dark-3: #0c2030;
  --line: rgba(191, 136, 48, 0.25);
  --glow: rgba(243, 202, 106, 0.12);
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.18);
  --shadow-lg: 0 24px 84px rgba(0, 0, 0, 0.32);
  --shadow-gold: 0 8px 32px rgba(201, 148, 53, 0.25);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);

  /* Text colors for readability */
  --text-on-light: #12262f;
  --text-on-light-secondary: #2a4050;
  --text-on-dark: #f0e8dc;
  --text-on-dark-secondary: rgba(255, 255, 255, 0.78);
}

/* ═══ TOP URGENCY BAR ═══ */
.top-bar {
  width: min(100%, 560px);
  margin: 0 auto 22px;
  color: var(--text-on-dark);
  padding: 10px 14px;
  position: relative;
  z-index: 1;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.24);
  font-family: 'Inter', sans-serif;
  border: 1px solid rgba(243, 202, 106, 0.24);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 248, 239, 0.08), rgba(201, 148, 53, 0.12));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.top-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.top-bar-fire {
  display: none;
}
.top-bar-text {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.top-bar-text strong {
  color: var(--gold-2);
  text-shadow: none;
}
.top-bar-divider {
  display: none;
}
.top-bar-timer {
  font-family: monospace;
  font-size: 15px;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.28);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(243, 202, 106, 0.18);
  color: var(--gold-2);
  letter-spacing: 0.05em;
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.28);
}
@keyframes flameBounce {
  0% { transform: scale(1) translateY(0); }
  100% { transform: scale(1.2) translateY(-2px); }
}

/* ── Reset & Base ─────────────────────────────────── */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--dark);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
}

/* ── Scroll Reveal Animations ─────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Keyframes ────────────────────────────────────── */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 32px rgba(201, 148, 53, 0.3);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 12px 48px rgba(201, 148, 53, 0.5);
  }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

@keyframes countdownPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(120%); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideOutRight {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(120%); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-120%); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideOutLeft {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(-120%); }
}

@keyframes progressFill {
  from { width: 0; }
}

@keyframes bounceIn {
  0% { transform: scale(0.8); opacity: 0; }
  60% { transform: scale(1.05); }
  100% { transform: scale(1); opacity: 1; }
}

/* ── Sections Common ──────────────────────────────── */

.hero,
section {
  overflow: hidden;
  position: relative;
}

/* ── Wave Dividers ────────────────────────────────── */

.wave-divider {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 2;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

.wave-divider-top {
  position: absolute;
  top: -2px;
  bottom: auto;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 2;
}

.wave-divider-top svg {
  display: block;
  width: 100%;
  height: 60px;
  transform: scaleY(-1);
}

/* ── HERO ──────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100svh;
  background:
    radial-gradient(ellipse 80% 50% at 50% -8%, rgba(243, 202, 106, 0.22), transparent),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(201, 148, 53, 0.08), transparent),
    radial-gradient(ellipse 60% 40% at 20% 30%, rgba(191, 136, 48, 0.06), transparent),
    linear-gradient(180deg, #020303 0%, #081116 60%, #0a1a24 100%);
  color: white;
  padding-bottom: 80px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(243, 202, 106, 0.06), transparent 60%);
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(100%, 900px);
  min-height: 100svh;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding: 30px clamp(18px, 5vw, 64px) 78px;
  text-align: center;
}

.hero-copy > * {
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-copy > .top-bar { animation-delay: 0.05s; }
.hero-copy > .kicker { animation-delay: 0.14s; }
.hero-copy > h1 { animation-delay: 0.28s; }
.hero-copy > p:not(.kicker) { animation-delay: 0.42s; }
.hero-copy > .social-proof-bar { animation-delay: 0.5s; }
.hero-copy > .hero-portrait { animation-delay: 0.6s; }
.hero-copy > .hero-actions { animation-delay: 0.75s; }

.hero-portrait {
  width: min(100%, 700px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  margin: 28px auto 0;
  border: 1px solid rgba(243, 202, 106, 0.3);
  border-radius: var(--radius-lg);
  box-shadow:
    0 24px 84px rgba(0, 0, 0, 0.48),
    0 0 60px rgba(243, 202, 106, 0.08);
  transition: var(--transition);
}

.hero-portrait:hover {
  border-color: rgba(243, 202, 106, 0.55);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(243, 202, 106, 0.12);
  transform: scale(1.01);
}

/* ── Social Proof Bar ─────────────────────────────── */

.social-proof-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 20px auto 0;
  padding: 12px 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(243, 202, 106, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.avatar-stack {
  display: flex;
  margin-right: 4px;
}

.avatar-stack .mini-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--dark);
  margin-left: -10px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.avatar-stack .mini-avatar:first-child {
  margin-left: 0;
}

.social-proof-bar span {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 700;
}

.social-proof-bar strong {
  color: var(--gold-2);
}

/* ── Scarcity Bar ─────────────────────────────────── */
.scarcity-bar {
  margin: 24px auto 0;
  width: min(100%, 540px);
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(243, 202, 106, 0.2);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: left;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.scarcity-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
}
.scarcity-label {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.scarcity-numbers {
  color: white;
}
.scarcity-numbers strong {
  color: var(--gold-2);
}
.scarcity-track {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}
.scarcity-fill {
  height: 100%;
  background: linear-gradient(90deg, #d32f2f, #ff7043);
  border-radius: 4px;
  position: relative;
  animation: pulseScarcity 2s infinite alternate;
}
.scarcity-warning {
  display: block;
  font-size: 13px;
  color: #ff5252;
  font-weight: 700;
  text-align: center;
}
@keyframes pulseScarcity {
  0% { opacity: 0.95; }
  100% { opacity: 1; box-shadow: 0 0 10px rgba(211, 47, 47, 0.6); }
}

/* ── Typography ───────────────────────────────────── */

.kicker,
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Cinzel, Georgia, serif;
  font-weight: 800;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.96;
  background: linear-gradient(135deg, #ffffff 30%, var(--gold-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: clamp(34px, 5.5vw, 66px);
  line-height: 1.02;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.12;
  text-transform: uppercase;
}

.hero-copy > p:not(.kicker),
.split-copy > p {
  color: var(--text-on-dark-secondary);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.6;
}

/* ── Hero Actions ─────────────────────────────────── */

.hero-actions {
  display: grid;
  gap: 14px;
  justify-items: center;
  margin-top: 22px;
}

.hero-actions span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ── Buttons ──────────────────────────────────────── */

.button,
.sticky-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  border: 1px solid rgba(255, 246, 218, 0.5);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f5d071 0%, #d4972e 40%, #bf8328 60%, #f2c86b 100%);
  background-size: 200% 100%;
  color: #07151d;
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  overflow: hidden;
  cursor: pointer;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
  border-radius: inherit;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 42px rgba(201, 148, 53, 0.45);
  border-color: rgba(255, 246, 218, 0.8);
  background-position: 100% center;
}

.button:active {
  transform: translateY(0);
  box-shadow: 0 6px 20px rgba(201, 148, 53, 0.35);
}

.button {
  width: min(100%, 420px);
  padding: 18px 28px;
}

/* ── Light Sections Background ────────────────────── */

.section-light,
.protocol,
.included,
.offer,
.faq {
  background:
    radial-gradient(ellipse 60% 40% at 18% 8%, rgba(201, 148, 53, 0.1), transparent),
    radial-gradient(ellipse 50% 30% at 85% 90%, rgba(201, 148, 53, 0.06), transparent),
    linear-gradient(165deg, var(--paper) 0%, var(--paper-2) 100%);
}

/* ── Section Padding ──────────────────────────────── */

.pain,
.protocol,
.included,
.offer,
.testimonials,
.guarantees,
.purpose,
.faq,
.footer {
  padding: clamp(44px, 6vw, 80px) clamp(18px, 7vw, 110px);
}

/* ── PAIN Section ─────────────────────────────────── */

.pain {
  text-align: center;
}

.pain-media img {
  width: 100%;
  max-width: 760px;
  margin: 32px auto 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.pain-media img:hover {
  transform: scale(1.01);
  box-shadow: 0 28px 80px rgba(23, 33, 42, 0.25);
}

.pain-copy {
  min-width: 0;
}

.pain h2,
.section-head h2,
.offer h2 {
  max-width: 920px;
  margin: 0 auto;
  color: var(--text-on-light);
}

.lead {
  max-width: 680px;
  margin: 20px auto 0;
  color: var(--text-on-light-secondary);
  font-size: clamp(18px, 2.4vw, 28px);
  line-height: 1.5;
}

.pain-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1040px;
  margin: 38px auto 0;
}

.pain-list div,
.cards article,
.included-list div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.pain-list div:hover,
.cards article:hover,
.included-list div:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 148, 53, 0.4);
  background: rgba(255, 255, 255, 0.7);
}

.pain-list div {
  padding: 22px;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-on-light);
}

.pain-list span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-family: Inter, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.callout {
  max-width: 760px;
  margin: 36px auto 0;
  padding: 22px 28px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  border: 1px solid rgba(243, 202, 106, 0.15);
  color: white;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.08;
  box-shadow: var(--shadow-lg);
}

/* ── Section Head ─────────────────────────────────── */

.section-head {
  max-width: 980px;
  margin: 0 auto 38px;
  text-align: center;
}

/* ── PROTOCOL Section ─────────────────────────────── */

.protocol-image {
  width: min(100%, 860px);
  margin: 0 auto 38px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.protocol-image:hover {
  transform: scale(1.005);
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.cards article {
  min-height: 280px;
  padding: 28px;
}

.cards .card-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: var(--gold-2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.cards .card-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--gold-2);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cards article:hover .card-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(201, 148, 53, 0.25);
}

.cards h3 {
  color: var(--text-on-light);
}

.cards p,
.included-list div,
.check-list li {
  color: var(--text-on-light-secondary);
  font-size: 18px;
  line-height: 1.45;
}

/* ── SPLIT Sections ───────────────────────────────── */

.split {
  display: block;
  padding: clamp(44px, 6vw, 80px) clamp(18px, 7vw, 110px);
}

.split.dark {
  background:
    radial-gradient(ellipse 60% 40% at 70% 20%, rgba(201, 148, 53, 0.06), transparent),
    linear-gradient(180deg, #050707 0%, #081018 100%);
  color: white;
}

.split.calm {
  background:
    radial-gradient(ellipse 60% 40% at 30% 20%, rgba(201, 148, 53, 0.08), transparent),
    linear-gradient(165deg, #fff8ef 0%, #f6e3c9 100%);
}

.split.calm h2 {
  color: var(--text-on-light);
}

.split img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.split img:hover {
  transform: scale(1.01);
}

.split-copy {
  max-width: 860px;
  margin: 0 auto;
}

.guided-image,
.peace-image {
  margin: 28px 0 28px;
}

.peace-image {
  margin-bottom: 0;
}

.split-copy h2 {
  color: currentColor;
}

.split.calm .split-copy > p {
  color: var(--text-on-light-secondary);
}

/* ── Check List ───────────────────────────────────── */

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.included-list div {
  position: relative;
  padding-left: 42px;
  color: var(--text-on-light-secondary);
}

.check-list li::before,
.included-list div::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--dark);
  content: "✓";
  font-size: 13px;
  font-weight: 900;
}

.check-list li {
  transition: var(--transition-fast);
  font-size: 18px;
  line-height: 1.5;
}

.check-list li:hover {
  transform: translateX(6px);
}

/* ── INCLUDED Section ─────────────────────────────── */

.included-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 980px;
  margin: 34px auto 0;
}

.included-list div {
  padding: 20px 20px 20px 56px;
  font-weight: 700;
  font-size: 17px;
  color: var(--text-on-light);
}

.product-image {
  width: min(100%, 680px);
  margin: 32px auto 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 70px rgba(74, 50, 18, 0.18);
  transition: var(--transition);
}

.product-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 80px rgba(74, 50, 18, 0.24);
}

/* ── BONUS Block — Premium Redesign ───────────────── */

.bonus-block {
  max-width: 1020px;
  margin: 52px auto 0;
  padding: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #081420 0%, #0f2840 50%, #081420 100%);
  border: 1px solid rgba(243, 202, 106, 0.18);
  color: white;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.bonus-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 5%, var(--gold-2), var(--gold), var(--gold-2), transparent 95%);
  opacity: 0.6;
}

.bonus-block::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 202, 106, 0.08), transparent 60%);
  pointer-events: none;
}

.bonus-header {
  padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 44px) 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.bonus-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  box-shadow: 0 4px 18px rgba(201, 148, 53, 0.35);
}

.bonus-block h3 {
  margin: 0 0 8px;
  color: white;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.06;
  text-transform: none;
}

.bonus-subtitle {
  color: var(--text-on-dark-secondary);
  font-size: 17px;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
}

.bonus-image {
  width: 100%;
  margin: 24px 0 0;
  display: block;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 32px clamp(24px, 4vw, 44px);
  position: relative;
  z-index: 1;
}

.bonus-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(243, 202, 106, 0.15);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.bonus-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(243, 202, 106, 0.05), transparent 70%);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.bonus-card:hover::before {
  opacity: 1;
}

.bonus-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(243, 202, 106, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.bonus-card-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-family: 'Cinzel', serif;
  font-size: 32px;
  font-weight: 800;
  color: rgba(243, 202, 106, 0.1);
  transition: var(--transition);
}

.bonus-card:hover .bonus-card-number {
  color: rgba(243, 202, 106, 0.2);
  transform: scale(1.1);
}

.bonus-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(243, 202, 106, 0.08);
  border: 1px solid rgba(243, 202, 106, 0.15);
  display: grid;
  place-items: center;
  transition: var(--transition);
}

.bonus-card:hover .bonus-card-icon {
  background: rgba(243, 202, 106, 0.15);
  border-color: rgba(243, 202, 106, 0.35);
  transform: scale(1.05);
}

.bonus-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold-2);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bonus-card h4 {
  color: #fff8e9;
  font-weight: 800;
  font-size: 17px;
  line-height: 1.35;
  margin: 0;
  font-family: Cinzel, Georgia, serif;
}

.bonus-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  flex-grow: 1;
}

.bonus-card-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 8px;
}

.bonus-card-free {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(201, 148, 53, 0.25), rgba(243, 202, 106, 0.2));
  border: 1px solid rgba(243, 202, 106, 0.25);
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.bonus-card del {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  font-size: 14px;
}

/* Vibrantly Colored Left Borders for High Contrast & Premium Look */
.bonus-card--1,
.bonus-card--2,
.bonus-card--3,
.bonus-card--4,
.bonus-card--5 {
  border-left: 4px solid var(--gold);
  box-shadow: inset 0 0 20px rgba(201, 148, 53, 0.04);
}

.bonus-card--1:hover,
.bonus-card--2:hover,
.bonus-card--3:hover,
.bonus-card--4:hover,
.bonus-card--5:hover {
  border-color: var(--gold-2);
  box-shadow: 0 16px 40px rgba(201, 148, 53, 0.16);
}

.bonus-block {
  max-width: 1120px;
  background:
    radial-gradient(ellipse 60% 42% at 50% 0%, rgba(201, 148, 53, 0.12), transparent 62%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.64), rgba(255, 248, 239, 0.82));
  border-color: rgba(201, 148, 53, 0.22);
  color: var(--text-on-light);
  box-shadow: 0 24px 58px rgba(74, 50, 18, 0.16);
}

.bonus-block::after {
  display: none;
}

.bonus-header {
  padding-bottom: 8px;
}

.bonus-badge {
  background: rgba(201, 148, 53, 0.12);
  border: 1px solid rgba(201, 148, 53, 0.24);
  color: #8b5b0c;
  box-shadow: none;
}

.bonus-block h3 {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  color: var(--text-on-light);
  font-size: clamp(28px, 4vw, 48px);
}

.bonus-slider {
  position: relative;
  z-index: 1;
  padding: 8px clamp(20px, 5vw, 58px) 4px;
}

.bonus-track {
  display: grid;
  grid-auto-columns: minmax(300px, 390px);
  grid-auto-flow: column;
  gap: 22px;
  overflow-x: auto;
  padding: 10px 2px 24px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.bonus-track::-webkit-scrollbar {
  display: none;
}

.bonus-track .bonus-card,
.bonus-card {
  min-height: 0;
  padding: 0;
  gap: 0;
  overflow: hidden;
  scroll-snap-align: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(201, 148, 53, 0.2);
  border-left: 1px solid rgba(201, 148, 53, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.bonus-track .bonus-card:hover,
.bonus-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 148, 53, 0.38);
  box-shadow: 0 24px 48px rgba(74, 50, 18, 0.18);
  background: rgba(255, 255, 255, 0.92);
}

.bonus-card::before {
  display: none;
}

.bonus-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #f9f3eb;
}

.bonus-card-copy {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.bonus-card-copy span {
  width: max-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(243, 202, 106, 0.11);
  border: 1px solid rgba(201, 148, 53, 0.2);
  color: #8b5b0c;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.bonus-card h4 {
  color: var(--text-on-light);
  font-size: 20px;
}

.bonus-card p {
  min-height: 42px;
  margin: 0;
  color: var(--text-on-light-secondary);
  font-size: 14px;
  line-height: 1.45;
}

.bonus-price {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.bonus-price del {
  color: rgba(18, 38, 47, 0.45);
  font-size: 14px;
  font-weight: 800;
}

.bonus-price b {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(22, 163, 74, 0.22);
  color: #15803d;
  font-size: 15px;
  font-weight: 900;
}

.bonus-arrow {
  position: absolute;
  top: 44%;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(243, 202, 106, 0.32);
  border-radius: 50%;
  background: rgba(255, 248, 239, 0.92);
  color: #7b500b;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition-fast);
}

.bonus-arrow:hover {
  transform: translateY(-2px);
  background: #ffffff;
}

.bonus-arrow--prev {
  left: 14px;
}

.bonus-arrow--next {
  right: 14px;
}

.bonus-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0 20px 22px;
}

.bonus-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(122, 80, 11, 0.22);
  cursor: pointer;
  transition: var(--transition-fast);
}

.bonus-dots button.active {
  width: 28px;
  background: var(--gold);
}

.bonus-total {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 24px;
  border-top: 1px solid rgba(201, 148, 53, 0.16);
  background: rgba(201, 148, 53, 0.1);
  position: relative;
  z-index: 1;
}

.bonus-total span {
  color: var(--text-on-light-secondary);
  font-weight: 700;
  font-size: 15px;
}

.bonus-total strong {
  color: #15803d;
  font-size: 22px;
  font-weight: 900;
}

.bonus-total del {
  color: rgba(18, 38, 47, 0.42);
  font-weight: 700;
  font-size: 18px;
}

/* ── TESTIMONIALS ─────────────────────────────────── */

.testimonials {
  background:
    radial-gradient(ellipse 60% 40% at 20% 20%, rgba(201, 148, 53, 0.06), transparent),
    linear-gradient(180deg, #071018 0%, #0a1a28 100%);
  color: white;
}

.testimonials .section-head h2 {
  color: white;
}

.testimonial-track {
  display: grid;
  grid-auto-columns: minmax(290px, 360px);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding: 6px 0 22px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}

.testimonial-track::-webkit-scrollbar {
  height: 6px;
}

.testimonial-track::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.testimonial-track::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

.testimonial-track article {
  min-height: 300px;
  padding: 24px;
  border: 1px solid rgba(243, 202, 106, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  scroll-snap-align: start;
  transition: var(--transition);
}

.testimonial-track article:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(243, 202, 106, 0.3);
  transform: translateY(-3px);
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
  color: var(--gold-2);
  font-size: 16px;
}

.avatar {
  width: 54px;
  height: 54px;
  margin-bottom: 12px;
  border: 2px solid var(--gold-2);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(201, 148, 53, 0.2);
}

.testimonial-track strong {
  color: var(--gold-2);
  font-size: 17px;
}

.testimonial-track p {
  color: var(--text-on-dark-secondary);
  font-size: 16px;
  line-height: 1.55;
}

/* ── OFFER Section ────────────────────────────────── */

.offer {
  padding-top: clamp(52px, 7vw, 90px);
  padding-bottom: clamp(52px, 8vw, 100px);
  position: relative;
}

.offer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.25;
}

.offer-card {
  display: grid;
  grid-template-columns: minmax(150px, 0.68fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 36px);
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid rgba(201, 148, 53, 0.25);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(ellipse 60% 40% at 50% 10%, rgba(201, 148, 53, 0.06), transparent),
    linear-gradient(135deg, #071018 0%, #0c1e2c 100%);
  color: white;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
  opacity: 0.4;
}

.offer-card > img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  border-radius: var(--radius);
  background: #fff;
  transition: var(--transition);
}

.offer-card > img:hover {
  transform: scale(1.02);
}

.offer-badge {
  grid-column: 1 / -1;
  justify-self: start;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f5d071 0%, #d4972e 50%, #bf8328 100%);
  color: #07151d;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 18px rgba(201, 148, 53, 0.35);
  animation: countdownPulse 2s ease-in-out infinite;
}

.offer-badge strong {
  margin-left: 6px;
  font-variant-numeric: tabular-nums;
}

/* ── Urgency Bar ──────────────────────────────────── */

.urgency-bar {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.urgency-bar span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 700;
}

.urgency-bar strong {
  color: var(--gold-2);
}

.progress-track {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  width: 87%;
  animation: progressFill 2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.progress-fill::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  animation: glowPulse 1.5s ease-in-out infinite;
}

/* ── Price ─────────────────────────────────────────── */

.price {
  display: grid;
  gap: 6px;
}

.price small {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
  font-size: 15px;
}

.price del {
  text-decoration-color: rgba(255, 100, 100, 0.6);
  color: rgba(255, 255, 255, 0.5);
}

.price b {
  color: var(--gold-2);
  font-size: clamp(48px, 8vw, 78px);
  line-height: 1;
  text-shadow: 0 4px 24px rgba(243, 202, 106, 0.2);
}

/* ── Offer Box ────────────────────────────────────── */

.offer-box {
  display: grid;
  gap: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  color: white;
  box-shadow: none;
}

.offer-box strong {
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(24px, 3.5vw, 40px);
  line-height: 1.08;
}

.offer-bundle-list {
  list-style: none;
  padding: 0;
  margin: 8px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offer-bundle-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-on-dark-secondary);
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 600;
  line-height: 1.4;
}

.offer-bundle-list li span {
  color: var(--gold-2);
  font-weight: 900;
  font-size: 16px;
  flex-shrink: 0;
}

.offer-box .button {
  width: 100%;
  margin-top: 8px;
  animation: pulse 2.5s ease-in-out infinite;
}



/* ── Sticky CTA (mobile) ─────────────────────────── */

.sticky-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  min-height: 0;
  padding: 14px 20px;
  border-radius: 0;
  border: none;
  border-top: 1px solid rgba(243, 202, 106, 0.3);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  text-decoration: none;
  font-size: 15px;
  display: none;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.sticky-cta.show {
  opacity: 1;
  transform: translateY(0);
}

/* ── GUARANTEES ───────────────────────────────────── */

.guarantees {
  background:
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(201, 148, 53, 0.04), transparent),
    linear-gradient(180deg, #050707 0%, #081018 100%);
  color: white;
}

.guarantees-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 36px;
}

.guarantees-heading h2 {
  color: white;
  font-size: clamp(28px, 4.5vw, 48px);
}

.guarantees-heading .eyebrow {
  color: var(--gold-2);
}

.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.guarantees-grid > div {
  padding: 26px;
  border: 1px solid rgba(243, 202, 106, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: var(--transition);
}

.guarantees-grid > div:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(243, 202, 106, 0.3);
  transform: translateY(-3px);
}

.guarantees .guarantee-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--dark);
  font-weight: 900;
  font-size: 22px;
  box-shadow: 0 4px 18px rgba(201, 148, 53, 0.3);
}

.guarantees strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
  color: white;
}

.guarantees p,
.purpose p,
.faq p,
.footer p {
  color: var(--text-on-dark-secondary);
  font-size: 17px;
  line-height: 1.55;
}

/* ── PURPOSE Section ──────────────────────────────── */

.purpose,
.footer {
  background:
    radial-gradient(ellipse 50% 30% at 50% 20%, rgba(201, 148, 53, 0.06), transparent),
    linear-gradient(180deg, #071018 0%, #0a1a28 100%);
  color: white;
  text-align: center;
}

.purpose h2 {
  color: white;
}

.purpose p {
  max-width: 760px;
  margin: 20px auto 0;
}

.purpose img {
  width: min(100%, 720px);
  margin: 28px auto 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.purpose img:hover {
  transform: scale(1.01);
}

/* ── FAQ Section ──────────────────────────────────── */

.faq details {
  max-width: 860px;
  margin: 0 auto 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: var(--transition);
  overflow: hidden;
}

.faq details:hover {
  border-color: rgba(201, 148, 53, 0.4);
  box-shadow: var(--shadow-sm);
}

.faq details[open] {
  border-color: rgba(201, 148, 53, 0.4);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-sm);
}

.faq summary {
  cursor: pointer;
  padding: 20px;
  color: var(--text-on-light);
  font-weight: 800;
  font-size: 17px;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition-fast);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::before {
  content: "+";
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--dark);
  font-size: 20px;
  font-weight: 900;
  transition: var(--transition-fast);
}

.faq details[open] summary::before {
  content: "−";
}

.faq summary:hover {
  color: var(--gold);
}

.faq details p {
  margin: 0;
  padding: 0 20px 20px 66px;
  color: var(--text-on-light-secondary);
  line-height: 1.6;
  font-size: 16px;
}

/* ── Footer ───────────────────────────────────────── */

.footer {
  position: relative;
  padding-bottom: 100px;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.2;
}

.footer strong {
  display: block;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(28px, 5vw, 52px);
  line-height: 1.04;
}

.footer .button {
  margin-top: 22px;
}

/* ── Social Proof Popup (Someone just bought) ──── */

.proof-popup {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 360px;
  padding: 16px 20px;
  border-radius: var(--radius);
  background: rgba(10, 20, 32, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(243, 202, 106, 0.2);
  color: white;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  animation: slideInLeft 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
  pointer-events: none;
}

.proof-popup.hide {
  animation: slideOutLeft 0.4s cubic-bezier(0.4, 0, 1, 1) both;
}

.proof-popup-product {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  border: 1.5px solid var(--gold-2);
  background: white;
  object-fit: contain;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.proof-popup-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.proof-popup-name {
  font-weight: 800;
  font-size: 14px;
  color: var(--gold-2);
}

.proof-popup-action {
  font-size: 13px;
  color: var(--text-on-dark-secondary);
  line-height: 1.35;
}

.proof-popup-time {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}

.proof-popup-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-left: auto;
  animation: bounceIn 0.4s 0.3s both;
}

.proof-popup-check svg {
  width: 12px;
  height: 12px;
  stroke: white;
  stroke-width: 3;
  fill: none;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 880px) {
  .hero {
    min-height: auto;
  }

  .hero-copy {
    width: 100%;
    min-height: auto;
    margin: 0;
    padding: 22px 16px 96px;
  }

  .hero-portrait {
    width: min(100%, 520px);
    margin-top: 24px;
  }

  h1 {
    font-size: clamp(39px, 11vw, 54px);
  }

  h2 {
    font-size: clamp(32px, 9vw, 46px);
  }

  .hero-copy > p:not(.kicker),
  .split-copy > p,
  .lead {
    font-size: 17px;
  }

  .pain,
  .protocol,
  .included,
  .offer,
  .split,
  .testimonials,
  .guarantees,
  .purpose,
  .faq,
  .footer {
    padding: 36px 16px 64px;
  }

  .pain-list,
  .cards,
  .split,
  .pain,
  .included-list,
  .guarantees-grid {
    grid-template-columns: 1fr;
  }

  .pain-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    text-align: left;
  }

  .offer-card {
    grid-template-columns: 1fr;
  }

  .offer-card > img {
    max-height: 320px;
  }

  .offer-badge {
    justify-self: stretch;
    text-align: center;
  }

  .bonus-slider {
    padding-right: 12px;
    padding-left: 12px;
  }

  .bonus-track {
    grid-auto-columns: minmax(282px, 86vw);
    gap: 14px;
    padding-bottom: 18px;
  }

  .bonus-arrow {
    display: none;
  }

  .callout {
    font-size: 25px;
  }

  .cards article {
    min-height: auto;
    padding: 22px;
  }

  .cards .card-icon {
    width: 60px;
    height: 60px;
  }

  .cards .card-icon svg {
    width: 28px;
    height: 28px;
  }

  .split.calm img,
  .offer > img {
    order: -1;
  }

  .button {
    width: 100%;
  }

  .offer {
    padding-bottom: 96px;
  }

  /* Sticky CTA visible on mobile */
  .sticky-cta {
    display: flex;
  }

  .footer {
    padding-bottom: 120px;
  }

  .proof-popup {
    display: none;
  }

  .social-proof-bar {
    flex-wrap: wrap;
    padding: 10px 16px;
    gap: 8px;
  }

  .top-bar {
    margin-bottom: 18px;
  }

  .top-bar-inner {
    gap: 8px;
  }

  .top-bar-text {
    font-size: 12px;
  }

  .faq details p {
    padding-left: 20px;
  }

  .wave-divider svg,
  .wave-divider-top svg {
    height: 35px;
  }
}

@media (max-width: 480px) {
  .pain-list {
    grid-template-columns: 1fr;
  }

  .offer-card {
    padding: 16px;
  }

  .bonus-header {
    padding: 20px 16px 0;
  }

  .bonus-block h3 {
    font-size: 26px;
  }
}

/* ── Readability / Contrast Adjustments for Light Sections ── */
.section-light .eyebrow,
.protocol .eyebrow,
.split.calm .eyebrow,
.included .eyebrow,
.faq .eyebrow {
  color: #9c690c; /* High contrast gold/bronze (4.7:1 contrast ratio on light backgrounds) */
}

.pain-list span {
  color: #9c690c;
}
