/* =============================================
   AI WorkFlow: The 10-Hour Weekly Reset
   style.css — Mobile-first, no external deps
   Dark premium theme
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Brand accents */
  --accent-purple:  #7c3aed;
  --accent-pink:    #db2777;
  --accent-cyan:    #06b6d4;
  --accent-amber:   #f59e0b;
  --success:        #10b981;
  --success-dark:   #059669;

  /* Primary accent (CTA / links) */
  --accent:         #a78bfa;          /* soft violet — readable on dark */
  --accent-dark:    #7c3aed;
  --accent-light:   rgba(167,139,250,.12); /* tinted surface for tags/boxes */

  /* Text */
  --text:           #e7e5f0;
  --text-muted:     #9b96b8;
  --text-inverse:   #0d0b1a;

  /* Backgrounds */
  --bg:             #0d0b1a;          /* near-black, slight purple tint */
  --bg-alt:         #13112a;          /* slightly lighter dark */
  --bg-surface:     #1a1830;          /* card / elevated surface */
  --bg-surface-2:   #1c1a2e;          /* secondary surface */

  /* Borders */
  --border:         rgba(255,255,255,.08);
  --border-accent:  rgba(124,58,237,.45);

  /* Shadows & glows */
  --shadow:         0 1px 3px rgba(0,0,0,.40), 0 1px 2px rgba(0,0,0,.30);
  --shadow-md:      0 4px 16px rgba(0,0,0,.50), 0 2px 8px rgba(0,0,0,.30);
  --glow-purple:    0 8px 32px rgba(124,58,237,.30);
  --glow-pink:      0 8px 32px rgba(219,39,119,.25);

  /* Misc */
  --radius:         8px;
  --font:           -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
                    Helvetica, Arial, sans-serif, "Apple Color Emoji";
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* --- Layout Helpers --- */
.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

.container--wide {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

section { padding: 60px 0; }

/* --- Typography --- */
h1 { font-size: clamp(1.75rem, 5vw, 2.75rem); line-height: 1.2; font-weight: 800; color: var(--text); }
h2 { font-size: clamp(1.4rem, 4vw, 2rem);   line-height: 1.25; font-weight: 700; color: var(--text); }
h3 { font-size: 1.15rem; font-weight: 700; color: var(--text); }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-center { text-align: center; }
.text-muted  { color: var(--text-muted); font-size: .95rem; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: background .18s, transform .12s, box-shadow .18s;
  text-align: center;
  line-height: 1.3;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(124,58,237,.40);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #6d28d9 0%, #be185d 100%);
  box-shadow: 0 6px 24px rgba(124,58,237,.55);
  transform: translateY(-1px);
  text-decoration: none;
  color: #fff;
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: linear-gradient(135deg, var(--success) 0%, var(--accent-cyan) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(16,185,129,.35);
}
.btn-secondary:hover {
  background: linear-gradient(135deg, var(--success-dark) 0%, #0891b2 100%);
  box-shadow: 0 6px 20px rgba(16,185,129,.50);
  transform: translateY(-1px);
  text-decoration: none;
  color: #fff;
}

.btn-block { display: block; width: 100%; }

/* --- Header / Nav bar --- */
.site-header {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  background: rgba(13,11,26,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background .2s, box-shadow .2s, padding .2s;
}

.site-header .container--wide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-logo {
  font-weight: 800;
  font-size: 1rem;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}
.site-logo span {
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-cta .btn { padding: 10px 22px; font-size: .9rem; }

/* Header scrolled state */
.site-header.scrolled {
  background: rgba(13,11,26,.97);
  box-shadow: 0 2px 20px rgba(0,0,0,.40);
  padding: 8px 0;
}

/* --- Hero --- */
.hero {
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(124,58,237,.35) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 85% 30%, rgba(219,39,119,.18) 0%, transparent 60%),
    linear-gradient(180deg, #130f24 0%, #0d0b1a 100%);
  color: #fff;
  padding: 80px 0 72px;
  text-align: center;
}

.hero h1 {
  color: #fff;
  margin-bottom: 18px;
}

/* Gradient heading accent for hero */
.hero h1 span,
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-pink), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,.80);
  max-width: 580px;
  margin: 0 auto 32px;
}

.hero-badge {
  display: inline-block;
  background: rgba(124,58,237,.20);
  border: 1px solid rgba(167,139,250,.35);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #c4b5fd;
}

.hero .btn { font-size: 1.15rem; padding: 18px 36px; }

.hero-note {
  margin-top: 14px;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
}

/* --- Pain / Solution --- */
.pain-section { background: var(--bg-alt); }

.pain-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 24px 0 32px;
}

.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: .97rem;
  transition: border-color .18s, box-shadow .18s;
}

.pain-list li:hover {
  border-color: rgba(167,139,250,.25);
  box-shadow: var(--shadow);
}

.pain-list .icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }

.solution-box {
  background: rgba(124,58,237,.12);
  border-left: 4px solid var(--accent-purple);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 24px;
}
.solution-box p {
  font-size: 1.05rem;
  color: var(--text);
}

/* --- What's Included --- */
.included-section { background: var(--bg); }

.included-grid {
  display: grid;
  gap: 24px;
  margin-top: 36px;
}

.included-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  background: var(--bg-surface);
  box-shadow: var(--shadow);
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.included-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--glow-purple), 0 12px 32px rgba(0,0,0,.40);
  border-color: var(--border-accent);
}

.included-card .card-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
}

.included-card h3 { margin-bottom: 8px; }

.included-card .tag {
  display: inline-block;
  background: rgba(124,58,237,.18);
  color: #c4b5fd;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 2px 8px;
  margin-top: 10px;
  border: 1px solid rgba(167,139,250,.22);
}

/* --- Social Proof / Value / Guarantee --- */
.value-section { background: var(--bg-alt); }

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

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .97rem;
}

.benefits-list .check {
  color: var(--success);
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

.guarantee-box {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--bg-surface);
  border: 2px solid rgba(16,185,129,.40);
  border-radius: 12px;
  padding: 24px;
  margin-top: 8px;
  box-shadow: 0 4px 20px rgba(16,185,129,.12);
}

.guarantee-box .g-icon { font-size: 2.4rem; flex-shrink: 0; }

.guarantee-box h3 { margin-bottom: 6px; color: var(--success); }

/* --- Lead Magnet / Email Capture --- */
.leadmagnet-section {
  background:
    radial-gradient(ellipse 70% 70% at 30% 50%, rgba(219,39,119,.18) 0%, transparent 70%),
    linear-gradient(135deg, #13112a 0%, #1a1830 100%);
  color: var(--text);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.leadmagnet-section h2 {
  color: var(--text);
  margin-bottom: 12px;
  /* vibrant gradient heading */
  background: linear-gradient(90deg, #c4b5fd, var(--accent-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.leadmagnet-section .lm-sub {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.leadmagnet-section .lm-sub strong {
  color: var(--text);
}

.email-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.email-form input[type="email"] {
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  background: var(--bg-surface-2);
  color: var(--text);
  font-size: 1rem;
  font-family: var(--font);
  outline: none;
  transition: border-color .18s, box-shadow .18s;
}
.email-form input[type="email"]::placeholder { color: var(--text-muted); }
.email-form input[type="email"]:focus {
  border-color: var(--accent-purple);
  box-shadow: 0 0 0 3px rgba(124,58,237,.25);
}

.email-form .btn { font-size: 1rem; padding: 14px 28px; }

.lm-privacy {
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: 10px;
}
.lm-privacy a { color: var(--accent); }

/* --- FAQ --- */
.faq-section { background: var(--bg); }

.faq-list {
  display: grid;
  gap: 16px;
  margin-top: 36px;
}

details.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-surface);
  transition: border-color .18s;
}

details.faq-item:hover {
  border-color: rgba(167,139,250,.25);
}

details.faq-item[open] {
  border-color: var(--border-accent);
  box-shadow: 0 4px 16px rgba(124,58,237,.12);
}

details.faq-item summary {
  padding: 18px 20px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  user-select: none;
  background: var(--bg-surface);
  color: var(--text);
}
details.faq-item summary::-webkit-details-marker { display: none; }

details.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent-purple);
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform .2s;
}

details.faq-item[open] summary::after { content: "−"; }

.faq-answer {
  padding: 0 20px 18px;
  font-size: .97rem;
  color: var(--text);
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.faq-answer a { color: var(--accent); }

/* --- CTA Strip --- */
.cta-strip {
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(124,58,237,.25) 0%, transparent 70%),
    linear-gradient(180deg, #13112a 0%, #0d0b1a 100%);
  color: #fff;
  text-align: center;
  padding: 64px 0;
  border-top: 1px solid var(--border);
}
.cta-strip h2 {
  color: #fff;
  margin-bottom: 12px;
}
.cta-strip p  { color: rgba(255,255,255,.65); margin-bottom: 28px; font-size: 1.05rem; }
.cta-strip .btn { font-size: 1.15rem; padding: 18px 38px; }
.cta-strip .hero-note { color: rgba(255,255,255,.45); margin-top: 14px; }

/* --- Footer --- */
.site-footer {
  background: #09080f;
  border-top: 1px solid var(--border);
  padding: 32px 0;
  text-align: center;
  font-size: .85rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 12px;
}
.footer-links a { color: var(--text-muted); }
.footer-links a:hover { color: var(--accent); text-decoration: underline; }

/* --- Inner pages (privacy, terms) --- */
.inner-page { padding: 64px 0; }
.inner-page h1 { margin-bottom: 8px; }
.inner-page .last-updated { color: var(--text-muted); font-size: .9rem; margin-bottom: 36px; }
.inner-page h2 { font-size: 1.25rem; margin: 32px 0 10px; color: var(--text); }
.inner-page h3 { color: var(--text); }
.inner-page p, .inner-page li { font-size: .97rem; margin-bottom: .75rem; color: var(--text); }
.inner-page ul { padding-left: 20px; margin-bottom: 1rem; }
.inner-page a { color: var(--accent); }
.inner-page strong { color: var(--text); }

/* --- Hero Image --- */
.hero-image-wrap {
  margin-top: 40px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  will-change: transform;
  transition: none;
}

.hero-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,.60), 0 0 40px rgba(124,58,237,.20);
  display: block;
}

/* --- Before/After Image --- */
.before-after-wrap {
  margin-top: 36px;
}

.before-after-img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: block;
}

/* --- Bundle Mockup --- */
.bundle-mockup-wrap {
  margin-top: 40px;
  text-align: center;
}

.bundle-mockup-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--glow-purple), var(--shadow-md);
  display: block;
  margin: 0 auto;
}

/* --- 8-Category Section --- */
.categories-section {
  background: var(--bg-alt);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 16px 20px;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, border-color .2s, transform .2s;
}

.category-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(124,58,237,.30), 0 2px 6px rgba(0,0,0,.30);
  border-color: var(--border-accent);
}

/* Icon container — subtle dark glow so colorful SVGs pop on dark bg */
.category-item .category-icon-wrap {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
}

.category-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
}

.category-label {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
}

/* --- Guarantee Badge --- */
.guarantee-box {
  align-items: center;
}

.guarantee-badge-img {
  width: 110px;
  height: auto;
  flex-shrink: 0;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(16,185,129,.30));
}

/* --- CTA Strip Guarantee --- */
.cta-guarantee {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

.cta-guarantee-badge {
  width: 110px;
  height: auto;
  display: block;
  opacity: .85;
  filter: drop-shadow(0 4px 12px rgba(16,185,129,.25));
}

/* =============================================
   ANIMATIONS — scroll-driven, performant
   All keyed on .is-animatable (set by JS)
   so content is visible without JS.
   ============================================= */

/* ── Scroll progress bar ── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #7c3aed 0%, #db2777 50%, #06b6d4 100%);
  transform-origin: left center;
  transform: scaleX(0);
  z-index: 9999;
  pointer-events: none;
  transition: transform .05s linear;
}

/* ── Scroll reveal ── */
.is-animatable .reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
  /* stagger for grid children: transition-delay = index × 80ms */
  transition-delay: calc(var(--stagger-i, 0) * 80ms);
}

.is-animatable .reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── CTA pulse on primary buy buttons ── */
@keyframes cta-pulse {
  0%   { box-shadow: 0 4px 14px rgba(124,58,237,.45); }
  50%  { box-shadow: 0 4px 32px rgba(124,58,237,.70), 0 0 0 6px rgba(124,58,237,.15); }
  100% { box-shadow: 0 4px 14px rgba(124,58,237,.45); }
}

/* Hero and CTA strip buttons get the pulse */
.hero .btn-primary,
.cta-strip .btn-primary,
.header-cta .btn-primary {
  animation: cta-pulse 2.8s ease-in-out infinite;
}

/* ── Hero image subtle float ── */
@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.hero-img {
  animation: hero-float 5s ease-in-out infinite;
}

/* ── Stats strip ── */
.stats-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 32px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, #7c3aed 0%, #db2777 55%, #06b6d4 100%);
  box-shadow: 0 8px 40px rgba(124,58,237,.45);
}

.stats-strip__item {
  flex: 1 1 120px;
  padding: 22px 20px;
  text-align: center;
  color: #fff;
  border-right: 1px solid rgba(255,255,255,.15);
}
.stats-strip__item:last-child { border-right: none; }

.stats-strip__number {
  display: block;
  font-size: clamp(1.9rem, 5vw, 2.6rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.02em;
}

.stats-strip__label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.80);
  margin-top: 5px;
}

/* Second strip — formats / Notion */
.stats-strip--formats {
  margin-top: 14px;
  background: linear-gradient(135deg, #06b6d4 0%, #7c3aed 55%, #fb7185 100%);
  box-shadow: 0 8px 40px rgba(6,182,212,.35);
}
.stats-strip__tag {
  display: block;
  font-size: clamp(1rem, 3.2vw, 1.4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.01em;
}

/* Value stack — optional upgrade note */
.value-stack__upgrade {
  margin: 14px 0 18px;
  padding: 10px 14px;
  font-size: .85rem;
  line-height: 1.45;
  color: #fcd9a8;
  background: rgba(251,146,60,.08);
  border: 1px solid rgba(251,146,60,.30);
  border-radius: 10px;
}
.value-stack__upgrade strong { color: #fbbf24; }

/* ── Reduced-motion overrides ── */
@media (prefers-reduced-motion: reduce) {
  /* Show all content immediately */
  .reveal-item,
  .is-animatable .reveal-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  /* Kill all keyframe animations */
  .hero .btn-primary,
  .cta-strip .btn-primary,
  .header-cta .btn-primary {
    animation: none;
  }
  .hero-img {
    animation: none;
  }
  /* Kill parallax on hero image */
  .hero-image-wrap {
    transform: none !important;
  }
}

/* =============================================
   Responsive — Desktop (≥ 640px)
   ============================================= */
@media (min-width: 640px) {
  .included-grid { grid-template-columns: repeat(3, 1fr); }
  .email-form { flex-direction: row; }
  .email-form input[type="email"] { flex: 1; }
  .categories-grid { grid-template-columns: repeat(4, 1fr); }
  .category-icon { width: 72px; height: 72px; }
}

@media (min-width: 768px) {
  section { padding: 80px 0; }
  .categories-grid { grid-template-columns: repeat(4, 1fr); }
  .category-icon { width: 80px; height: 80px; }
}

/* =============================================
   CRO ADDITIONS
   ============================================= */

/* --- Trust badges strip --- */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-top: 18px;
}

.trust-strip__item {
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  letter-spacing: .02em;
  white-space: nowrap;
}

/* Variant for dark CTA section — slightly different tint */
.trust-strip--dark .trust-strip__item {
  color: rgba(255,255,255,.45);
}

/* --- Value anchor stack --- */
.value-stack {
  background: var(--bg-surface);
  border: 1px solid var(--border-accent);
  border-radius: 14px;
  padding: 28px 28px 24px;
  margin-top: 40px;
  box-shadow: var(--glow-purple), var(--shadow-md);
}

.value-stack__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 18px;
}

.value-stack__list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.value-stack__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .97rem;
  color: var(--text);
}

.value-stack__item-name { font-weight: 500; }

.value-stack__item-price {
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
  margin-left: 12px;
}

.value-stack__divider {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}

.value-stack__totals { display: grid; gap: 8px; margin-bottom: 22px; }

.value-stack__total-row,
.value-stack__today-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.value-stack__total-row { font-size: .97rem; color: var(--text-muted); }

.value-stack__strikethrough {
  text-decoration: line-through;
  color: var(--text-muted);
  font-weight: 700;
}

.value-stack__today-row {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.value-stack__price-highlight {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
}

.value-stack__price-highlight small {
  font-size: .7rem;
  font-weight: 600;
  opacity: .75;
  -webkit-text-fill-color: initial;
  background: none;
  color: var(--text-muted);
}

.value-stack__cta { margin-top: 4px; }

/* --- Founder / Why I built this --- */
.founder-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.founder-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent-purple);
  border-radius: 12px;
  padding: 32px 28px 28px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.founder-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: .04em;
  flex-shrink: 0;
}

.founder-quote {
  margin: 0;
  padding: 0;
  border: none;
}

.founder-quote p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
  margin: 0;
}

.founder-byline {
  font-size: .875rem;
  color: var(--text-muted);
  font-weight: 600;
  margin: 0;
}

/* --- Testimonials (hidden scaffold) --- */
.testimonials-section { background: var(--bg); }

.testimonials-grid {
  display: grid;
  gap: 20px;
  margin-top: 36px;
}

.testimonial-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.testimonial-stars {
  color: var(--accent-amber);
  font-size: 1.1rem;
  letter-spacing: .08em;
  margin-bottom: 10px;
}

.testimonial-text {
  font-size: .97rem;
  color: var(--text);
  font-style: italic;
  margin-bottom: 12px;
}

.testimonial-author {
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 600;
  margin: 0;
}

/* --- Sticky mobile CTA bar --- */
.mobile-cta-bar {
  display: none; /* hidden on desktop */
}

@media (max-width: 768px) {
  .mobile-cta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-accent);
    padding: 12px 18px;
    box-shadow: 0 -4px 24px rgba(124,58,237,.25);
  }

  .mobile-cta-bar__price {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--text);
    white-space: nowrap;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
  }

  .mobile-cta-bar__price small {
    font-size: .7rem;
    font-weight: 600;
    -webkit-text-fill-color: initial;
    background: none;
    color: var(--text-muted);
  }

  .mobile-cta-bar__btn {
    flex: 1;
    text-align: center;
    padding: 12px 18px;
    font-size: .95rem;
    white-space: nowrap;
  }

  /* Ensure footer content isn't hidden behind the bar */
  body { padding-bottom: 72px; }

  /* Testimonials grid: single column on mobile */
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (min-width: 640px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =============================================
   OPTIONAL UPGRADE — Automation Pack section
   Amber/coral accent to echo the cover art;
   styled as a secondary "upgrade card" so it
   reads as a bonus, never competes with the
   primary €27 CTA.
   ============================================= */

.upgrade-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.upgrade-card {
  background: var(--bg-surface);
  border: 1px solid rgba(245, 158, 11, .30);  /* amber border */
  border-radius: 16px;
  padding: 36px 32px 32px;
  box-shadow:
    0 8px 32px rgba(245, 158, 11, .12),
    0 2px 8px rgba(0,0,0,.30);
  position: relative;
  overflow: hidden;
}

/* Subtle amber glow in top-right corner */
.upgrade-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251,146,60,.18) 0%, transparent 70%);
  pointer-events: none;
}

.upgrade-eyebrow {
  display: inline-block;
  background: rgba(245, 158, 11, .15);
  border: 1px solid rgba(245, 158, 11, .40);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fbbf24;            /* amber-300 */
  margin-bottom: 22px;
}

.upgrade-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.upgrade-heading {
  font-size: clamp(1.2rem, 3.5vw, 1.7rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 14px;
  /* Amber/coral gradient accent on the heading */
  background: linear-gradient(90deg, #fbbf24 0%, #fb923c 60%, #f43f5e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.upgrade-intro {
  color: var(--text-muted);
  font-size: .97rem;
  margin-bottom: 18px;
}

.upgrade-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

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

.upgrade-check {
  color: #fbbf24;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

.upgrade-price {
  font-size: 1rem;
  color: var(--text);
  background: rgba(245, 158, 11, .08);
  border-left: 3px solid #fbbf24;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 12px 16px;
  margin-bottom: 14px;
}

.upgrade-price strong {
  color: #fbbf24;
  font-size: 1.1rem;
}

.upgrade-note {
  font-size: .88rem;
  color: var(--text-muted);
  margin: 0;
  font-style: italic;
}

.upgrade-note-link {
  color: #fbbf24;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.upgrade-note-link:hover {
  color: #fb923c;
}

/* Cover image */
.upgrade-visual {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-shrink: 0;
}

.upgrade-cover-img {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 10px;
  box-shadow:
    0 12px 36px rgba(245, 158, 11, .25),
    0 4px 12px rgba(0,0,0,.40);
  display: block;
  margin: 0 auto;
}

/* Desktop: side-by-side layout */
@media (min-width: 640px) {
  .upgrade-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 36px;
  }

  .upgrade-text {
    flex: 1;
    min-width: 0;
  }

  .upgrade-visual {
    flex-shrink: 0;
    width: 200px;
  }

  .upgrade-cover-img {
    max-width: 200px;
    position: sticky;
    top: 80px; /* below sticky header */
  }
}

@media (min-width: 768px) {
  .upgrade-card {
    padding: 44px 40px 36px;
  }

  .upgrade-cover-img {
    max-width: 240px;
  }

  .upgrade-visual {
    width: 240px;
  }
}

/* =============================================
   THE 3-S LOOP — method section
   ============================================= */

.method-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.method-eyebrow {
  display: inline-block;
  background: rgba(124,58,237,.15);
  border: 1px solid rgba(167,139,250,.30);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: #c4b5fd;
  margin-bottom: 16px;
}

.method-section h2 {
  margin-bottom: 10px;
}

.method-sub {
  margin-bottom: 36px;
  font-size: 1.05rem;
}

/* Three-card grid */
.method-cards {
  display: grid;
  gap: 20px;
  margin-bottom: 32px;
}

@media (min-width: 640px) {
  .method-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.method-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 22px 24px;
  box-shadow: var(--shadow);
  position: relative;
  transition: box-shadow .2s, border-color .2s, transform .2s;
}

.method-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--glow-purple), 0 12px 32px rgba(0,0,0,.40);
  border-color: var(--border-accent);
}

/* Step number badge — top-right corner */
.method-card__step {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
  color: #fff;
  font-size: .78rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.method-card__icon {
  font-size: 2rem;
  margin-bottom: 12px;
  line-height: 1;
}

.method-card__title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 8px;
  /* gradient accent matching hero */
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.method-card__body {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Closing line under cards */
.method-closer {
  background: rgba(124,58,237,.10);
  border-left: 4px solid var(--accent-purple);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 1rem;
  color: var(--text);
  font-style: italic;
  margin: 0;
}

/* =============================================
   FORMAT BADGE (PDF + Notion)
   ============================================= */

.format-badge {
  display: inline-block;
  background: rgba(124,58,237,.12);
  border: 1px solid rgba(167,139,250,.25);
  border-radius: 20px;
  padding: 6px 18px;
  font-size: .85rem;
  font-weight: 600;
  color: #c4b5fd;
  margin: 10px 0 0;
  letter-spacing: .01em;
}

/* Notion variant tag on included cards */
.tag--notion {
  background: rgba(6,182,212,.12);
  color: #67e8f9;
  border-color: rgba(6,182,212,.25);
  margin-left: 6px;
}
