/* ─── Sections 2–10 + Footer — Dark Premium 2026 ─────────── */

/* ════════════════════════════════════════════════════════════
   SHARED LAYOUT PRIMITIVES
   ════════════════════════════════════════════════════════════ */

.section {
  padding: clamp(88px, 12vh, 128px) 0;
  position: relative;
  overflow: hidden;
}

.section--alt {
  background: var(--bg-2);
}

/* ── Premium Glass Card System ─────────────────────────── */
/* backdrop-filter only on elevated cards to avoid GPU overload on mobile */
.module-card,
.bonus-card,
.case-card {
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}

/* Top light edge on elevated cards */
.module-card,
.bonus-card,
.case-card {
  border-top: 1px solid rgba(255,255,255,0.15);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.12) inset,
    0 -1px 0 rgba(0,0,0,0.25) inset,
    0 12px 40px rgba(0,0,0,0.50),
    0 4px 12px rgba(0,0,0,0.35);
}

/* ── Section ambient lighting (unique per section) ───── */
.problem::before,
.insight::before,
.system::before,
.moduly::before,
.bonusy::before,
.transformacja::before,
.opinie::before,
.oferta::before,
.faq::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.problem::before {
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255,80,80,0.18) 0%, transparent 60%);
}
.insight::before {
  background: radial-gradient(ellipse 60% 50% at 80% 70%, rgba(232,129,58,0.20) 0%, transparent 55%);
}
.system::before {
  background: radial-gradient(ellipse 55% 60% at 20% 50%, rgba(232,129,58,0.18) 0%, transparent 55%);
}
.moduly::before {
  background:
    radial-gradient(ellipse 50% 55% at 85% 20%, rgba(107,122,232,0.18) 0%, transparent 50%),
    radial-gradient(ellipse 45% 50% at 15% 80%, rgba(232,129,58,0.14) 0%, transparent 50%);
}
.bonusy::before {
  background: radial-gradient(ellipse 55% 45% at 50% 50%, rgba(232,129,58,0.16) 0%, transparent 55%);
}
.transformacja::before {
  background:
    radial-gradient(ellipse 45% 55% at 15% 50%, rgba(255,80,80,0.14) 0%, transparent 50%),
    radial-gradient(ellipse 45% 55% at 85% 50%, rgba(232,129,58,0.18) 0%, transparent 50%);
}
.opinie::before {
  background: radial-gradient(ellipse 55% 45% at 20% 10%, rgba(107,122,232,0.16) 0%, transparent 55%);
}
.oferta::before {
  background: radial-gradient(ellipse 65% 55% at 50% 50%, rgba(232,129,58,0.22) 0%, transparent 55%);
}
.faq::before {
  background: radial-gradient(ellipse 60% 35% at 50% 0%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

/* ── Section gradient transitions ────────────────────── */
.problem::after,
.insight::after,
.system::after,
.moduly::after,
.bonusy::after,
.transformacja::after,
.opinie::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  pointer-events: none;
  z-index: 1;
}

/* bg → bg-2 transitions */
.problem::after   { background: linear-gradient(to bottom, transparent, var(--bg-2)); }
.system::after    { background: linear-gradient(to bottom, transparent, var(--bg-2)); }
.bonusy::after    { background: linear-gradient(to bottom, transparent, var(--bg-2)); }
.opinie::after    { background: linear-gradient(to bottom, transparent, var(--bg-2)); }

/* bg-2 → bg transitions */
.insight::after   { background: linear-gradient(to bottom, transparent, var(--bg)); }
.moduly::after    { background: linear-gradient(to bottom, transparent, var(--bg)); }
.transformacja::after { background: linear-gradient(to bottom, transparent, var(--bg)); }

.section__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
  z-index: 2;
}

/* Eyebrow / label pill — mirrors hero__label */
.section__label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(232,129,58,0.70);
  margin-bottom: 20px;
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-max);
  padding: 5px 12px 5px 8px;
  width: fit-content;
}

/* Heading styles */
.section__heading {
  font-family: var(--font);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--ink-1);
  margin-bottom: 16px;
  font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
  text-shadow: 0 0 80px rgba(255,255,255,0.04);
}

.section__subheading {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 600px;
  margin-bottom: clamp(40px, 6vh, 60px);
  letter-spacing: -0.005em;
}

.section__subheading strong {
  font-weight: 600;
  color: var(--ink-1);
}

/* Gradient accent text */
.text--accent {
  background: linear-gradient(118deg,
    var(--accent-lo) 0%,
    var(--accent)    42%,
    var(--accent-hi) 72%,
    #FFBB78          100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--accent);
  filter: drop-shadow(0 0 18px rgba(232,129,58,0.30));
}

/* ── Shared CTA button (reusable across all sections) ── */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #fff;
  background: var(--accent);
  text-decoration: none;
  height: 52px;
  padding: 0 28px;
  border-radius: var(--r-max);
  position: relative;
  white-space: nowrap;
  user-select: none;
  will-change: transform;
  overflow: hidden;
  transition:
    background  var(--fast) var(--ease),
    box-shadow  var(--mid)  var(--spring),
    transform   var(--fast) var(--spring);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.14) inset,
    0 1px 4px rgba(0,0,0,0.28),
    0 0 0 rgba(232,129,58,0);
}

.cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(to bottom,
    rgba(255,255,255,0.18) 0%,
    rgba(255,255,255,0.04) 50%,
    transparent 100%);
  pointer-events: none;
}

.cta-btn:hover {
  background: var(--accent-hi);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.16) inset,
    0 6px 24px rgba(0,0,0,0.32),
    0 0 56px rgba(232,129,58,0.30);
  transform: translateY(-1px);
}

.cta-btn:active {
  transform: scale(0.985) translateY(0);
}

.cta-btn svg {
  flex-shrink: 0;
  transition: transform var(--fast) var(--spring);
}

.cta-btn:hover svg {
  transform: translateX(3px);
}

/* ════════════════════════════════════════════════════════════
   SECTION 2 — PROBLEM (#problem)
   ════════════════════════════════════════════════════════════ */

.problem {
  background: var(--bg);
}

.problem__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

/* ── Pain stats row ── */
.pstat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: clamp(40px, 6vh, 56px);
}

.pstat {
  background: linear-gradient(145deg, rgba(255,60,60,0.14) 0%, rgba(255,60,60,0.06) 100%);
  border: 1px solid rgba(255, 80, 80, 0.30);
  border-top: 1px solid rgba(255,80,80,0.30);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vh, 40px) clamp(20px, 3vw, 28px);
  text-align: center;
  position: relative;
  box-shadow: 0 0 40px rgba(255,80,80,0.10), 0 1px 0 rgba(255,80,80,0.15) inset;
  animation: red-pulse 3s ease-in-out infinite;
  transition: box-shadow var(--mid) var(--ease), border-color var(--mid) var(--ease);
}


@keyframes red-pulse {
  0%, 100% { box-shadow: 0 0 40px rgba(255,80,80,0.08), 0 1px 0 rgba(255,80,80,0.15) inset; }
  50%      { box-shadow: 0 0 50px rgba(255,80,80,0.18), 0 1px 0 rgba(255,80,80,0.20) inset, 0 0 0 1px rgba(255,80,80,0.25); }
}

.pstat:hover {
  box-shadow: 0 0 50px rgba(255,80,80,0.18);
  border-color: rgba(255,80,80,0.40);
}

.pstat__num {
  display: block;
  font-family: var(--font);
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1;
  color: #FF6060;
  margin-bottom: 10px;
  font-feature-settings: 'kern' 1;
  filter: drop-shadow(0 0 28px rgba(255,80,80,0.35));
}

.pstat__desc {
  font-size: clamp(11px, 1.2vw, 13px);
  font-weight: 400;
  color: rgba(255,96,96,0.55);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

/* ── Problem prose ── */
.problem__prose {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.75;
  color: var(--ink-2);
  margin-bottom: 32px;
  text-align: left;
  font-weight: 300;
  letter-spacing: -0.005em;
}

/* ── Pain list ── */
.pain-list {
  list-style: none;
  padding: 0; margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.pain-list__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 400;
  color: var(--ink-2);
  padding: 12px 16px;
  background: rgba(255,80,80,0.08);
  border: 1px solid rgba(255,80,80,0.20);
  border-left: 3px solid rgba(255,80,80,0.45);
  border-radius: var(--r-md);
}

.pain-list__x {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,80,80,0.12);
  border: 1px solid rgba(255,80,80,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF6060;
}

/* ── Punchline & reveal ── */
.problem__punchline {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 20px;
  text-align: left;
  font-weight: 300;
  letter-spacing: -0.01em;
}

.problem__punchline strong {
  font-weight: 600;
  color: var(--ink-1);
}

.problem__reveal {
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: 600;
  letter-spacing: -0.02em;
  text-align: left;
  line-height: 1.3;
  background: linear-gradient(118deg,
    var(--accent-lo) 0%,
    var(--accent)    42%,
    var(--accent-hi) 72%,
    #FFBB78          100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--accent);
  filter: drop-shadow(0 0 18px rgba(232,129,58,0.30));
}

/* ════════════════════════════════════════════════════════════
   SECTION 3 — INSIGHT (#insight)
   ════════════════════════════════════════════════════════════ */

.insight {
  background: var(--bg-2);
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(107,122,232,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 80% at 30% 80%, rgba(232,129,58,0.06) 0%, transparent 50%);
}

.insight__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}

.insight__heading {
  font-family: var(--font);
  font-size: clamp(28px, 3.8vw, 50px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--ink-1);
  margin-bottom: 12px;
  font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
  text-shadow: 0 0 80px rgba(255,255,255,0.04);
}

.insight__sub {
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.015em;
  margin-bottom: 24px;
  line-height: 1.4;
}

.insight__body {
  font-size: clamp(14px, 1.35vw, 16px);
  line-height: 1.75;
  color: var(--ink-2);
  font-weight: 300;
  letter-spacing: -0.005em;
  margin-bottom: 32px;
}

.insight__line {
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 600;
  color: var(--ink-1);
  letter-spacing: -0.02em;
  line-height: 1.4;
  padding: 20px 24px;
  background: rgba(232,129,58,0.14);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  box-shadow: 0 0 30px rgba(232,129,58,0.10);
}

/* Contrast rows visual */
.contrast-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contrast-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: var(--r-md);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    var(--shadow-1);
}

.contrast-row--wrong {
  background: rgba(255,80,80,0.10);
  border-color: rgba(255,80,80,0.22);
  border-left: 3px solid rgba(255,80,80,0.50);
}

.contrast-row--right {
  background: rgba(232,129,58,0.12);
  border-color: rgba(232,129,58,0.30);
  border-left: 3px solid var(--accent);
  box-shadow: 0 0 30px rgba(232,129,58,0.08);
}

.contrast-row__left {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: -0.01em;
  text-align: right;
}

.contrast-row__right {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: -0.01em;
  text-align: left;
}

.contrast-row--right .contrast-row__right {
  font-weight: 700;
  color: var(--accent);
  filter: drop-shadow(0 0 18px rgba(232,129,58,0.30));
}

.contrast-row__op {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.contrast-row--wrong .contrast-row__op {
  background: rgba(255,80,80,0.18);
  border: 1px solid rgba(255,80,80,0.30);
  color: #FF6060;
}

.contrast-row--right .contrast-row__op {
  background: var(--accent-bg);
  color: var(--accent);
  filter: drop-shadow(0 0 18px rgba(232,129,58,0.30));
}

/* ════════════════════════════════════════════════════════════
   SECTION 4 — SYSTEM (#system)
   ════════════════════════════════════════════════════════════ */

.system {
  background: var(--bg);
}

.system__grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}

.system__heading {
  font-family: var(--font);
  font-size: clamp(28px, 3.8vw, 50px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--ink-1);
  margin-bottom: 16px;
  font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
  text-shadow: 0 0 80px rgba(255,255,255,0.04);
}

.system__body {
  font-size: clamp(14px, 1.35vw, 16px);
  line-height: 1.75;
  color: var(--ink-2);
  font-weight: 300;
  letter-spacing: -0.005em;
  margin-bottom: 32px;
}

/* Phases list */
.phases {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}

.phase {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: linear-gradient(145deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.10);
  border-top: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--r-md);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, var(--shadow-1);
  transition: border-color var(--mid) var(--ease), background var(--mid) var(--ease), transform var(--mid) var(--spring), box-shadow var(--mid) var(--ease);
  position: relative;
  overflow: hidden;
}

/* Gradient top border on phases */
.phase::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-lo), var(--accent), var(--accent-hi), transparent 80%);
  z-index: 1;
}

.phase:hover {
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.10) inset, var(--shadow-2), 0 0 30px rgba(232,129,58,0.08);
}

.phase__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, rgba(232,129,58,0.22) 0%, rgba(232,129,58,0.08) 100%);
  border: 1px solid rgba(232,129,58,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  box-shadow: 0 0 12px rgba(232,129,58,0.15);
}

.phase__days {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.02em;
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-max);
  padding: 2px 8px;
  white-space: nowrap;
}

.phase__title {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-1);
  letter-spacing: -0.015em;
  flex: 1;
}

/* System CTA mid-block */
.system__mid-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.system__cta-note {
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-3);
  letter-spacing: -0.005em;
}

/* Big 14 visual */
.system__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sys-num-block {
  text-align: center;
  padding: clamp(48px, 7vh, 80px) clamp(40px, 5vw, 64px);
  background: linear-gradient(145deg, rgba(30,30,42,0.85) 0%, rgba(10,10,16,0.95) 100%);
  border: 1px solid rgba(232,129,58,0.30);
  border-top: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-xl);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.10) inset,
    var(--shadow-3),
    0 0 100px rgba(232,129,58,0.25),
    0 0 200px rgba(232,129,58,0.12);
  position: relative;
  overflow: hidden;
}

.sys-num-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%,
    rgba(232,129,58,0.22) 0%,
    transparent 65%);
  pointer-events: none;
}

/* Animated shimmer on top edge */
.sys-num-block::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--accent-lo) 20%,
    var(--accent) 40%,
    var(--accent-hi) 60%,
    var(--secondary) 80%,
    transparent 100%);
  background-size: 200% 100%;
  animation: offer-shimmer 4s ease-in-out infinite;
  z-index: 2;
}

.sys-num-block__big {
  display: block;
  font-family: var(--font);
  font-size: clamp(96px, 13vw, 160px);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.08em;
  background: linear-gradient(118deg,
    var(--accent-lo) 0%,
    var(--accent)    42%,
    var(--accent-hi) 72%,
    #FFBB78          100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--accent);
  filter: drop-shadow(0 0 48px rgba(232,129,58,0.40));
  position: relative;
  z-index: 1;
}

.sys-num-block__dni {
  display: block;
  font-family: var(--font);
  font-size: clamp(18px, 2.5vw, 30px);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.sys-num-block__desc {
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-3);
  line-height: 1.6;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 1;
}

/* ════════════════════════════════════════════════════════════
   SECTION 5 — MODULES (#moduly)
   ════════════════════════════════════════════════════════════ */

.moduly {
  background: var(--bg-2);
  background-image:
    radial-gradient(ellipse 70% 50% at 80% 30%, rgba(107,122,232,0.10) 0%, transparent 50%),
    radial-gradient(ellipse 50% 60% at 20% 70%, rgba(232,129,58,0.08) 0%, transparent 50%);
}

.modules-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.module-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  background: linear-gradient(145deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.04) 100%);
  border: 1px solid rgba(255,255,255,0.10);
  border-top: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    var(--shadow-2);
  transition:
    border-color var(--mid) var(--ease),
    background   var(--mid) var(--ease),
    box-shadow   var(--mid) var(--ease),
    transform    var(--mid) var(--spring);
}

.module-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-lo), var(--accent), var(--accent-hi), transparent 90%);
  z-index: 2;
}

.module-card:nth-child(even)::before {
  background: linear-gradient(90deg, #5B6AD8, var(--secondary), #8B96F0, transparent 90%);
}

.module-card + .module-card {
  margin-top: 0;
}

.module-card:hover {
  border-color: rgba(255,255,255,0.14);
  border-top-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.10) inset,
    var(--shadow-3),
    0 0 50px rgba(232,129,58,0.12);
}

.module-card:nth-child(even):hover {
  box-shadow:
    0 1px 0 rgba(255,255,255,0.10) inset,
    var(--shadow-3),
    0 0 50px rgba(107,122,232,0.12);
}

.module-card__num {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(232,129,58,0.20) 0%, rgba(232,129,58,0.06) 100%);
  border-right: 1px solid var(--accent-border);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent);
  flex-shrink: 0;
  padding-top: 0;
  transition: background var(--mid) var(--ease);
}

.module-card:nth-child(even) .module-card__num {
  background: linear-gradient(180deg, rgba(107,122,232,0.20) 0%, rgba(107,122,232,0.06) 100%);
}

.module-card:hover .module-card__num {
  background: rgba(232,129,58,0.12);
}

.module-card__body {
  padding: clamp(16px, 2.5vh, 24px) clamp(16px, 2.5vw, 28px);
}

.module-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.module-card__title {
  font-family: var(--font);
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 600;
  color: var(--ink-1);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.module-card__days {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.02em;
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-max);
  padding: 3px 10px;
  white-space: nowrap;
}

.module-card__desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--ink-2);
  font-weight: 300;
  letter-spacing: -0.005em;
  margin-bottom: 14px;
}

.module-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.module-feature {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--ink-3);
  background: rgba(255,255,255,0.045);
  border: 1px solid var(--border);
  border-radius: var(--r-max);
  padding: 3px 10px;
  letter-spacing: -0.005em;
  transition: color var(--fast) var(--ease), border-color var(--fast) var(--ease);
}

.module-card:hover .module-feature {
  color: var(--ink-2);
  border-color: var(--border-2);
}

/* ── Secondary accent on even module badges ──────────── */
.module-card:nth-child(even) .module-card__days {
  color: var(--secondary);
  background: var(--secondary-bg);
  border-color: var(--secondary-border);
}

/* ════════════════════════════════════════════════════════════
   SECTION 6 — BONUSES (#bonusy)
   ════════════════════════════════════════════════════════════ */

.bonusy {
  background: var(--bg);
}

.bonusy__heading {
  font-family: var(--font);
  font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--ink-1);
  margin-bottom: 12px;
  font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
  max-width: 720px;
  text-shadow: 0 0 80px rgba(255,255,255,0.04);
}

.bonusy__sub {
  font-size: clamp(14px, 1.35vw, 16px);
  font-weight: 300;
  color: var(--ink-2);
  letter-spacing: -0.005em;
  margin-bottom: clamp(36px, 5vh, 52px);
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.bonus-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.04) 100%);
  border: 1px solid rgba(255,255,255,0.10);
  border-top: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-lg);
  padding: clamp(22px, 3vh, 30px) clamp(18px, 2.5vw, 24px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    var(--shadow-2);
  transition:
    border-color var(--mid) var(--ease),
    background   var(--mid) var(--ease),
    box-shadow   var(--mid) var(--ease),
    transform    var(--mid) var(--spring);
  position: relative;
  overflow: hidden;
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-lo), var(--accent), var(--accent-hi), transparent 85%);
  z-index: 1;
}

.bonus-card:nth-child(odd)::before {
  background: linear-gradient(90deg, #5B6AD8, var(--secondary), #8B96F0, transparent 85%);
}

.bonus-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,129,58,0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}

.bonus-card:nth-child(odd)::after {
  background: linear-gradient(135deg, rgba(107,122,232,0.05) 0%, transparent 50%);
}

/* Span last two across to fill row of 3+2 → make last 2 span differently */
.bonus-card:nth-child(4) {
  grid-column: span 1;
}

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

/* Center last two when odd row */
.bonuses-grid {
  grid-template-columns: repeat(3, 1fr);
}

@supports (grid-template-columns: subgrid) {
  /* fallback already handled */
}

.bonus-card:hover {
  border-color: rgba(255,255,255,0.14);
  border-top-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.10) inset,
    var(--shadow-3),
    0 0 40px rgba(232,129,58,0.10);
}

/* Alternate bonus cards with secondary glow on hover */
.bonus-card:nth-child(odd):hover {
  box-shadow:
    0 1px 0 rgba(255,255,255,0.10) inset,
    var(--shadow-3),
    0 0 40px rgba(107,122,232,0.10);
}

.bonus-card__tag,
.bonus-card__title,
.bonus-card__desc,
.bonus-card__stat {
  position: relative;
  z-index: 1;
}

.bonus-card__tag {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-max);
  padding: 4px 12px;
  margin-bottom: 14px;
}

.bonus-card__tag::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
  margin-right: 6px;
}

.bonus-card__title {
  font-family: var(--font);
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 600;
  color: var(--ink-1);
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin-bottom: 10px;
}

.bonus-card__desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--ink-2);
  font-weight: 300;
  letter-spacing: -0.005em;
}

.bonus-card__stat {
  margin-top: 14px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.bonus-card__stat::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
}

/* ── Secondary accent alternation on bonus cards ────── */
.bonus-card:nth-child(odd) .bonus-card__tag {
  color: var(--secondary);
  background: var(--secondary-bg);
  border-color: var(--secondary-border);
}

.bonus-card:nth-child(odd) .bonus-card__stat {
  color: var(--secondary);
}

.bonus-card:nth-child(odd) .bonus-card__stat::before {
  background: var(--secondary);
  box-shadow: 0 0 6px var(--secondary);
}

/* ════════════════════════════════════════════════════════════
   SECTION 7 — TRANSFORMATION (#transformacja)
   ════════════════════════════════════════════════════════════ */

.transformacja {
  background: var(--bg-2);
  background-image:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(107,122,232,0.07) 0%, transparent 50%);
}

.transform__heading {
  font-family: var(--font);
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--ink-1);
  margin-bottom: 12px;
  font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
  max-width: 720px;
  text-shadow: 0 0 80px rgba(255,255,255,0.04);
}

.transform__sub {
  font-size: clamp(14px, 1.35vw, 16px);
  font-weight: 300;
  color: var(--ink-2);
  letter-spacing: -0.005em;
  margin-bottom: clamp(36px, 5vh, 52px);
  max-width: 560px;
}

/* Before/After grid */
.transform__ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: clamp(40px, 6vh, 60px);
}

.ba-col {
  flex: 1;
  border-radius: 0;
  overflow: hidden;
}

.ba-col--before {
  background: rgba(255, 60, 60, 0.08);
  border-top: 1px solid rgba(255,80,80,0.10);
  border-right: 1px solid rgba(255,80,80,0.06);
  border-bottom: 1px solid rgba(255,80,80,0.10);
  border-left: 4px solid rgba(255,80,80,0.50);
  border-radius: var(--r-md) 0 0 var(--r-md);
  box-shadow: inset 0 0 40px rgba(255,80,80,0.04);
}

.ba-col--after {
  background: rgba(232,129,58,0.08);
  border-top: 1px solid var(--accent-border);
  border-right: 1px solid var(--accent-border);
  border-bottom: 1px solid var(--accent-border);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  box-shadow: 0 0 50px rgba(232,129,58,0.10), inset 0 0 40px rgba(232,129,58,0.04);
}

.ba-col__header {
  padding: 14px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ba-col--before .ba-col__header {
  color: #FF6060;
  border-bottom-color: rgba(255,80,80,0.12);
}

.ba-col--after .ba-col__header {
  color: var(--accent);
  border-bottom-color: var(--accent-border);
}

.ba-col__header svg {
  flex-shrink: 0;
}

.ba-col__list {
  list-style: none;
  padding: 0; margin: 0;
}

.ba-col__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.01em;
  border-bottom: 1px solid var(--border);
}

.ba-col__item:last-child {
  border-bottom: none;
}

.ba-col--before .ba-col__item {
  color: var(--ink-2);
}

.ba-col--after .ba-col__item {
  color: var(--ink-1);
}

.ba-col__dot {
  flex-shrink: 0;
  margin-top: 4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.ba-col--before .ba-col__dot {
  background: rgba(255,80,80,0.60);
}

.ba-col--after .ba-col__dot {
  background: var(--accent);
  box-shadow: 0 0 6px rgba(232,129,58,0.40);
}

/* Outcome stats — no boxes, Apple-style editorial */
.outcomes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  border-top: none;
  border-bottom: none;
  position: relative;
}

/* Gradient divider lines instead of solid borders */
.outcomes::before,
.outcomes::after {
  content: '';
  position: absolute;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.06), transparent);
}
.outcomes::before { top: 0; }
.outcomes::after  { bottom: 0; }

.outcome-card {
  padding: clamp(40px, 6vh, 64px) clamp(24px, 3vw, 40px);
  text-align: center;
  position: relative;
}

.outcome-card::after {
  content: '';
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,129,58,0.14) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(16px);
}

/* Vertical divider — gradient instead of solid */
.outcome-card + .outcome-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.06), transparent);
}

.outcome-card__num {
  display: block;
  font-family: var(--font);
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1;
  background: linear-gradient(118deg,
    var(--accent-lo) 0%,
    var(--accent)    42%,
    var(--accent-hi) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--accent);
  margin-bottom: 12px;
  filter: drop-shadow(0 0 36px rgba(232,129,58,0.35));
}

.outcome-card__desc {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-3);
  line-height: 1.45;
  letter-spacing: -0.01em;
}

/* ════════════════════════════════════════════════════════════
   SECTION 8 — SOCIAL PROOF (#opinie)
   ════════════════════════════════════════════════════════════ */

.opinie {
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 70% 60% at 20% 30%, rgba(107,122,232,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 80% 70%, rgba(232,129,58,0.06) 0%, transparent 50%);
}

/* Secondary accent label for social proof section */
.opinie .section__label {
  color: rgba(107,122,232,0.70);
  background: var(--secondary-bg);
  border-color: var(--secondary-border);
}

.opinie .section__label .label__dot {
  background: var(--secondary);
  box-shadow: 0 0 6px var(--secondary);
}

.opinie__heading {
  font-family: var(--font);
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--ink-1);
  margin-bottom: clamp(36px, 5vh, 52px);
  font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
  max-width: 640px;
  text-shadow: 0 0 80px rgba(255,255,255,0.04);
}

/* Case study cards */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: clamp(36px, 5vh, 52px);
}

.case-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.04) 100%);
  border: 1px solid rgba(255,255,255,0.10);
  border-top: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-lg);
  padding: clamp(20px, 3vh, 28px) clamp(18px, 2.5vw, 24px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    var(--shadow-2);
  position: relative;
  overflow: hidden;
  transition:
    border-color var(--mid) var(--ease),
    transform    var(--mid) var(--spring),
    box-shadow   var(--mid) var(--ease);
}

.case-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right,
    var(--accent-lo),
    var(--accent),
    var(--accent-hi),
    transparent 90%);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}

.case-card:hover {
  border-color: rgba(255,255,255,0.10);
  border-top-color: rgba(255,255,255,0.22);
  transform: translateY(-4px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    var(--shadow-3),
    0 0 40px rgba(232,129,58,0.08);
}

/* Alternate case card glow colors */
.case-card:nth-child(2):hover {
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    var(--shadow-3),
    0 0 40px rgba(107,122,232,0.08);
}

.case-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.case-card__av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.12), 0 0 20px rgba(232,129,58,0.18);
}

.case-card__meta {
  flex: 1;
}

.case-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-1);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 3px;
}

.case-card__info {
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-3);
  letter-spacing: -0.005em;
}

.case-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 10px;
  color: #F5C842;
  filter: drop-shadow(0 0 8px rgba(245,200,66,0.40));
}

.case-card__result {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--accent);
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-max);
  padding: 3px 10px;
  margin-bottom: 14px;
}

.case-card__quote {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ink-2);
  font-weight: 300;
  letter-spacing: -0.005em;
  font-style: italic;
  border-left: 2px solid rgba(232,129,58,0.30);
  padding-left: 14px;
}

.case-card:first-child {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto;
  gap: 0 24px;
  padding: clamp(28px, 4vh, 40px) clamp(24px, 3vw, 36px);
}

.case-card:first-child .case-card__header {
  grid-column: 1;
  grid-row: 1 / 3;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.case-card:first-child .case-card__av {
  width: 64px;
  height: 64px;
  font-size: 22px;
}

.case-card:first-child .case-card__quote {
  grid-column: 2;
  font-size: 16px;
  line-height: 1.7;
}

.case-card:first-child .case-card__stars,
.case-card:first-child .case-card__result {
  grid-column: 2;
}

/* Mini reviews */
.mini-reviews {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mini-review {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid rgba(232,129,58,0.30);
  border-radius: var(--r-md);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset;
  transition: border-color var(--mid) var(--ease);
}

.mini-review:nth-child(even) {
  border-left-color: rgba(107,122,232,0.30);
}

.mini-review:hover {
  border-color: var(--border-2);
  background: rgba(255,255,255,0.04);
}

.mini-review__stars {
  display: flex;
  gap: 1px;
  flex-shrink: 0;
  color: #F5C842;
}

.mini-review__text {
  flex: 1;
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-2);
  letter-spacing: -0.01em;
  line-height: 1.4;
}

.mini-review__text em {
  font-style: normal;
  font-weight: 500;
  color: var(--ink-1);
}

.mini-review__author {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-3);
  white-space: nowrap;
}

/* ════════════════════════════════════════════════════════════
   SECTION 9 — GUARANTEE + CTA (#oferta)
   ════════════════════════════════════════════════════════════ */

.oferta {
  background: var(--bg-2);
  background-image:
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(232,129,58,0.12) 0%, transparent 50%);
}

.oferta__heading {
  font-family: var(--font);
  font-size: clamp(26px, 3.5vw, 50px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--ink-1);
  margin-bottom: 12px;
  font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
  max-width: 640px;
  text-shadow: 0 0 80px rgba(255,255,255,0.04);
}

.oferta__sub {
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 300;
  color: var(--ink-2);
  letter-spacing: -0.01em;
  margin-bottom: clamp(36px, 5vh, 52px);
  max-width: 520px;
  line-height: 1.6;
}

/* Offer box */
/* ── Offer box — Premium product feature ──────────────────── */
.offer-box {
  max-width: 740px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(30,30,42,0.90) 0%, rgba(12,12,18,0.95) 100%);
  border: 1px solid rgba(255,255,255,0.12);
  border-top: 1px solid rgba(255,255,255,0.20);
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 60px 120px rgba(0,0,0,0.65),
    0 20px 50px rgba(0,0,0,0.40),
    0 0 100px rgba(232,129,58,0.12),
    0 0 200px rgba(232,129,58,0.06);
  animation: offer-box-pulse 4s ease-in-out infinite;
}

@keyframes offer-box-pulse {
  0%, 100% {
    box-shadow:
      0 1px 0 rgba(255,255,255,0.08) inset,
      0 60px 120px rgba(0,0,0,0.65),
      0 20px 50px rgba(0,0,0,0.40),
      0 0 100px rgba(232,129,58,0.15),
      0 0 200px rgba(232,129,58,0.08);
  }
  50% {
    box-shadow:
      0 1px 0 rgba(255,255,255,0.12) inset,
      0 60px 120px rgba(0,0,0,0.65),
      0 20px 50px rgba(0,0,0,0.40),
      0 0 120px rgba(232,129,58,0.28),
      0 0 250px rgba(232,129,58,0.14);
  }
}

/* Animated shimmer top line */
.offer-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--accent-lo) 15%,
    var(--accent) 30%,
    var(--accent-hi) 45%,
    var(--secondary) 60%,
    var(--accent) 75%,
    var(--accent-lo) 85%,
    transparent 100%);
  background-size: 200% 100%;
  animation: offer-shimmer 4s ease-in-out infinite;
  z-index: 2;
}

@keyframes offer-shimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Guarantee inline bar at top */
.offer-box__guarantee-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 40px;
  background: rgba(232,129,58,0.06);
  border-bottom: 1px solid rgba(232,129,58,0.14);
  font-family: var(--font);
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(232,129,58,0.80);
  letter-spacing: -0.01em;
}

.offer-box__guarantee-bar svg {
  flex-shrink: 0;
  color: var(--accent);
  filter: drop-shadow(0 0 18px rgba(232,129,58,0.30));
}

/* Main layout: 2 columns */
.offer-box__layout {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 0;
}

/* Left column: title + checklist */
.offer-box__left {
  padding: 32px 36px 36px;
  border-right: 1px solid var(--border);
}

.offer-box__product-name {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
}

.offer-box__title {
  font-family: var(--font);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: var(--ink-1);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 24px;
}

/* Checklist 2 columns */
.offer-checklist {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 16px;
}

.offer-checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-2);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.offer-check {
  flex-shrink: 0;
  margin-top: 1px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(60,200,100,0.12);
  border: 1px solid rgba(60,200,100,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(80,210,110,0.80);
}

/* Right column: price + CTA */
.offer-box__right {
  padding: 32px 28px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

.offer-price-old {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  color: var(--ink-4);
  text-decoration: line-through;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.offer-price-new {
  font-family: var(--font);
  font-size: clamp(52px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.065em;
  color: var(--ink-1);
  line-height: 0.9;
  margin-bottom: 4px;
  background: linear-gradient(135deg, #fff 0%, var(--accent-hi) 60%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 24px rgba(232,129,58,0.20));
}

.offer-price-currency {
  font-size: 22px;
  font-weight: 500;
  color: var(--ink-2);
  vertical-align: top;
  line-height: 1.8;
  margin-right: 2px;
}

.offer-price-badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  color: rgba(80,210,110,0.90);
  background: rgba(60,200,100,0.10);
  border: 1px solid rgba(60,200,100,0.22);
  border-radius: var(--r-max);
  padding: 3px 10px;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.offer-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  width: 100%;
  margin-top: auto;
}

.offer-cta-wrap .cta-btn {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  height: 56px;
  padding: 0 18px;
  background: linear-gradient(135deg, var(--accent-lo) 0%, var(--accent) 50%, var(--accent-hi) 100%);
  background-size: 200% 200%;
  animation: cta-glow-pulse 3s ease-in-out infinite, cta-gradient-shift 6s ease-in-out infinite;
}

@keyframes cta-gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

@keyframes cta-glow-pulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(255,255,255,0.16) inset, 0 2px 8px rgba(0,0,0,0.30), 0 0 40px rgba(232,129,58,0.18); }
  50%      { box-shadow: 0 0 0 1px rgba(255,255,255,0.20) inset, 0 4px 16px rgba(0,0,0,0.30), 0 0 70px rgba(232,129,58,0.35); }
}

.offer-note {
  font-size: 10.5px;
  font-weight: 400;
  color: var(--ink-4);
  text-align: center;
  letter-spacing: -0.005em;
  line-height: 1.55;
}

/* Responsive: stack columns on smaller screens */
@media (max-width: 600px) {
  .offer-box__layout {
    grid-template-columns: 1fr;
  }
  .offer-box__left {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 24px 24px 28px;
  }
  .offer-box__right {
    padding: 24px 24px 28px;
  }
  .offer-checklist {
    grid-template-columns: 1fr;
  }
  .offer-box__guarantee-bar {
    padding: 12px 24px;
  }
}

/* ════════════════════════════════════════════════════════════
   SECTION 10 — FAQ (#faq)
   ════════════════════════════════════════════════════════════ */

.faq {
  background: var(--bg);
}

.faq__heading {
  font-family: var(--font);
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--ink-1);
  margin-bottom: clamp(36px, 5vh, 52px);
  font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
  text-shadow: 0 0 80px rgba(255,255,255,0.04);
}

.faq__grid {
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

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

.faq-item {
  background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid var(--border);
  border-left: 3px solid rgba(232,129,58,0.20);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset;
  transition: border-color var(--mid) var(--ease);
}

.faq-item.is-open {
  border-color: var(--border-2);
  border-left-color: var(--accent);
}

.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
}

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

.faq-item__q-text {
  font-size: clamp(14px, 1.4vw, 15.5px);
  font-weight: 600;
  color: var(--ink-1);
  letter-spacing: -0.02em;
  line-height: 1.35;
  flex: 1;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-2);
  transition: transform var(--mid) var(--spring), background var(--mid) var(--ease), color var(--mid) var(--ease), border-color var(--mid) var(--ease);
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--slow) var(--spring), padding var(--slow) var(--spring);
  padding: 0 22px;
}

.faq-item.is-open .faq-item__a {
  max-height: 320px;
  padding: 0 22px 20px;
}

.faq-item__a-text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-2);
  font-weight: 300;
  letter-spacing: -0.005em;
  border-top: none;
  background-image: linear-gradient(to right, transparent, rgba(255,255,255,0.05), transparent);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: top;
  padding-top: 16px;
}

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */

.footer {
  background: var(--bg);
  border-top: none;
  padding: clamp(28px, 4vh, 40px) 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.06), transparent);
}

.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer__badge {
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--accent);
  flex-shrink: 0;
}

.footer__brand-text {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: -0.02em;
}

.footer__copy {
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-4);
  letter-spacing: -0.005em;
  text-align: center;
  white-space: nowrap;
}

.footer__links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.footer__link {
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-3);
  text-decoration: none;
  letter-spacing: -0.005em;
  transition: color var(--fast) var(--ease);
}

.footer__link:hover {
  color: var(--ink-1);
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — 1024px
   ════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .outcomes {
    grid-template-columns: repeat(2, 1fr);
  }

  .bonuses-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — 880px
   ════════════════════════════════════════════════════════════ */

@media (max-width: 880px) {
  .insight__grid {
    grid-template-columns: 1fr;
    gap: clamp(32px, 4vh, 48px);
  }

  .system__grid {
    grid-template-columns: 1fr;
    gap: clamp(32px, 4vh, 48px);
  }

  .system__visual {
    order: -1;
  }

  .cases-grid {
    grid-template-columns: 1fr;
  }

  .transform__ba {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .footer__links {
    justify-content: center;
  }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — 600px
   ════════════════════════════════════════════════════════════ */

@media (max-width: 600px) {
  .pstat-row {
    grid-template-columns: 1fr;
  }

  .bonuses-grid {
    grid-template-columns: 1fr;
  }

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

  .outcomes {
    grid-template-columns: repeat(2, 1fr);
  }

  .mini-review {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .mini-review__author {
    align-self: flex-end;
  }

  .offer-box__top {
    flex-direction: column;
  }

  .guarantee-badge {
    width: 100%;
    flex-direction: row;
    text-align: left;
  }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — 480px
   ════════════════════════════════════════════════════════════ */

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

  .module-card {
    grid-template-columns: 50px 1fr;
  }

  .module-card__num {
    font-size: 20px;
  }

  .contrast-row__left,
  .contrast-row__right {
    font-size: 12px;
  }
}

/* ════════════════════════════════════════════════════════════
   CONVERSION — URGENCY BAR + STICKY MOBILE CTA
   ════════════════════════════════════════════════════════════ */

/* ── Offer urgency timer bar ─────────────────────────── */
.offer-urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 129, 58, 0.10);
  border: 1px solid rgba(232, 129, 58, 0.25);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 13px;
  color: #E8813A;
  margin-bottom: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.offer-urgency__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #E8813A;
  animation: pulse-dot 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.75); }
}

/* ── Sticky mobile buy bar ───────────────────────────── */
.sticky-buy {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: linear-gradient(to top, rgba(5,5,6,0.98) 60%, transparent);
  padding: 16px 20px;
  padding-bottom: max(20px, env(safe-area-inset-bottom, 20px));
  pointer-events: none;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

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

/* Only relevant on mobile */
@media (min-width: 1024px) {
  .sticky-buy,
  .sticky-buy--visible {
    display: none !important;
  }
}

.sticky-buy__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #E8813A;
  color: #fff;
  font-family: var(--font);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
  text-align: center;
  padding: 15px 24px;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(232,129,58,0.35);
  transition: background var(--fast) var(--ease), transform var(--fast) var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.sticky-buy__btn:hover   { background: #F5A050; }
.sticky-buy__btn:active  { transform: scale(0.98); }

.sticky-buy__note {
  text-align: center;
  color: rgba(255,255,255,0.30);
  font-size: 11px;
  margin-top: 7px;
  letter-spacing: -0.005em;
}
