/* ================================================
   MÉTODO FLUENCY HUB — Styles
   Brand: #6B46C1 purple | Outfit + DM Sans
   ================================================ */

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

:root {
  --purple: #6B46C1;
  --purple-light: #8B5CF6;
  --purple-dark: #553098;
  --purple-glow: rgba(107, 70, 193, 0.25);
  --purple-soft: #F3EEFF;
  --purple-muted: #E9DFFE;

  --gold: #F59E0B;
  --gold-dark: #D97706;
  --gold-soft: #FEF3C7;

  --ink: #0F0B1F;
  --ink-light: #2D2545;
  --muted: #6B6180;
  --subtle: #9B92AB;

  --bg: #FAFAFE;
  --surface: #FFFFFF;
  --surface-alt: #F5F3FA;
  --stroke: #E8E3F3;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(15, 11, 31, 0.04);
  --shadow-md: 0 8px 30px rgba(15, 11, 31, 0.07);
  --shadow-lg: 0 20px 60px rgba(15, 11, 31, 0.10);
  --shadow-purple: 0 12px 40px rgba(107, 70, 193, 0.25);
  --shadow-gold: 0 12px 40px rgba(245, 158, 11, 0.25);

  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: min(1140px, 100%);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- URGENCY BAR --- */
.urgency-bar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), #FB923C);
  color: #fff;
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.urgency-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.urgency-pulse {
  width: 8px; height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

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

.urgency-cta {
  background: rgba(255,255,255,0.2);
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
  font-weight: 700;
  transition: background 0.3s;
}
.urgency-cta:hover { background: rgba(255,255,255,0.35); }

/* --- NAV --- */
.nav {
  position: sticky;
  top: 32px;
  z-index: 150;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s var(--ease);
}

.nav.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
}
.nav-logo strong { font-weight: 800; }

.nav-logo-icon {
  width: 32px; height: 32px;
  background: var(--purple);
  color: #fff;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 1.8rem;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--purple); }

.nav-cta {
  background: var(--purple);
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--purple-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-purple);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}

/* --- HERO --- */
.hero {
  position: relative;
  background: linear-gradient(160deg, #0F0720 0%, #1A0B3E 40%, #2D1460 100%);
  color: #fff;
  padding: 6rem 0 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(107, 70, 193, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 70, 193, 0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 70%);
}

.hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(107, 70, 193, 0.3), transparent 60%);
  top: -200px; right: -200px;
  border-radius: 50%;
  filter: blur(60px);
  animation: float 8s ease-in-out infinite;
}

.hero-glow--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15), transparent 60%);
  bottom: -150px; left: -100px;
  top: auto; right: auto;
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--purple-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 620px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
}

.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

.hero-stat-divider {
  width: 1px; height: 36px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.hero-micro {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn--lg { padding: 1rem 2.2rem; font-size: 1rem; }
.btn--full { width: 100%; }

.btn--primary {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
  box-shadow: var(--shadow-purple);
}
.btn--primary:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(107, 70, 193, 0.35);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn--elite {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #fff;
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.btn--elite:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(245, 158, 11, 0.35);
}

/* --- SECTION BASE --- */
.section {
  padding: 5rem 0;
}

.section--dark {
  background: linear-gradient(170deg, #0F0720, #1A0B3E);
  color: #fff;
}

.section--subtle {
  background: var(--surface-alt);
}

.section--pricing {
  background: linear-gradient(170deg, #0F0720, #1A0B3E);
  color: #fff;
}

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

.section-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--purple-light);
  margin-bottom: 0.6rem;
}

.section--dark .section-label,
.section--pricing .section-label { color: var(--gold); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.section--dark .section-desc,
.section--pricing .section-desc { color: rgba(255, 255, 255, 0.55); }

/* --- TICKER --- */
.ticker-section {
  background: var(--purple-soft);
  padding: 0.9rem 0;
  overflow: hidden;
}

.ticker { overflow: hidden; }

.ticker-track {
  display: flex;
  gap: 3rem;
  animation: scroll-left 35s linear infinite;
  width: max-content;
}

.ticker-item {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--purple-dark);
  white-space: nowrap;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- PAIN GRID --- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.pain-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  transition: all 0.4s var(--ease);
}

.pain-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(107, 70, 193, 0.3);
  transform: translateY(-4px);
}

.pain-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.pain-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pain-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.92rem;
  line-height: 1.6;
}

.pain-solution {
  text-align: center;
}

.pain-solution-inner {
  display: inline-block;
  background: rgba(107, 70, 193, 0.15);
  border: 1px solid rgba(107, 70, 193, 0.25);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2.5rem;
}

.pain-solution-arrow {
  font-size: 1.5rem;
  color: var(--purple-light);
  margin-bottom: 0.5rem;
  animation: bounce 2s ease infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.pain-solution-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.6;
}
.pain-solution-text strong { color: var(--gold); }

/* --- METHOD PILLARS --- */
.method-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.method-pillar {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.4s var(--ease);
}

.method-pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--purple-light);
}

.method-pillar-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--purple-soft);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.method-pillar-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.method-pillar h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--ink);
}

.method-pillar p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.method-quote {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.method-quote blockquote {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.5;
  padding: 2rem;
  background: linear-gradient(135deg, var(--purple-soft), var(--purple-muted));
  border-radius: var(--radius-lg);
  border-left: 5px solid var(--purple);
}

.method-quote em {
  font-style: normal;
  color: var(--purple);
}

/* --- MODULES GRID --- */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.module-card {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.5rem;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.module-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.module-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--purple-light);
}

.module-card:hover::before { transform: scaleX(1); }

.module-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--purple);
  background: var(--purple-soft);
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  margin-bottom: 0.8rem;
}

.module-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.module-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}

.modules-footer {
  text-align: center;
  background: var(--purple-soft);
  padding: 1.2rem 2rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--purple);
}

.modules-footer p {
  font-size: 0.95rem;
  color: var(--ink);
}

/* --- WEEK FLOW --- */
.week-flow {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.week-step {
  flex: 1 1 250px;
  max-width: 320px;
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.35s var(--ease);
}

.week-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.week-step-day {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple);
  background: var(--purple-soft);
  display: inline-block;
  padding: 0.25rem 0.8rem;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.week-step-content h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.week-step-content p {
  font-size: 0.88rem;
  color: var(--muted);
}

.week-step-arrow {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  color: var(--purple-light);
  font-weight: 700;
}

/* --- COMPARISON TABLE --- */
.compare-toggle-wrap {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.compare-toggle {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s;
  cursor: pointer;
}
.compare-toggle.active,
.compare-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.compare-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.compare-col {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  transition: all 0.4s var(--ease);
}

.compare-col:hover {
  background: rgba(255, 255, 255, 0.06);
}

.compare-col--elite {
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(245, 158, 11, 0.04);
}

.compare-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.compare-badge {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--purple);
  color: #fff;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 0.8rem;
}

.compare-badge--elite {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}

.compare-header h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}

.compare-header h3 em {
  font-style: normal;
  color: var(--purple-light);
}

.compare-col--elite .compare-header h3 em {
  color: var(--gold);
}

.compare-subtitle {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.compare-price-amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
}

.compare-price-period {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
}

.compare-features {
  list-style: none;
  margin-bottom: 2rem;
}

.compare-features li {
  padding: 0.5rem 0;
  padding-left: 1.8rem;
  position: relative;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.compare-features li:last-child { border-bottom: none; }

.compare-features li.included::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #34D399;
  font-weight: 700;
}

.compare-features li.excluded {
  color: rgba(255, 255, 255, 0.25);
}

.compare-features li.excluded::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.15);
}

.compare-features li.highlight {
  color: var(--gold);
  font-weight: 600;
}

/* --- TESTIMONIALS --- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: all 0.35s var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--ink-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg,
    hsl(var(--hue, 270) 60% 55%),
    hsl(var(--hue, 270) 50% 40%)
  );
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--muted);
}

.testimonial-plan {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--purple-soft);
  color: var(--purple);
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
}

.testimonial-plan--elite {
  background: var(--gold-soft);
  color: var(--gold-dark);
}

/* --- VS GRID --- */
.vs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.vs-card {
  padding: 1.8rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  background: var(--surface);
}

.vs-card h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.vs-card ul {
  list-style: none;
}

.vs-card ul li {
  padding: 0.35rem 0;
  padding-left: 1.3rem;
  position: relative;
  font-size: 0.85rem;
  color: var(--muted);
}

.vs-card--bad ul li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #EF4444;
  font-weight: 700;
  font-size: 0.8rem;
}

.vs-card--good {
  background: linear-gradient(135deg, var(--purple-soft), var(--purple-muted));
  border-color: var(--purple);
  border-width: 2px;
}

.vs-card--good h4 { color: var(--purple-dark); }

.vs-card--good ul li {
  color: var(--ink);
  font-weight: 500;
}

.vs-card--good ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--purple);
  font-weight: 700;
}

/* --- PRICING --- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
}

.pricing-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
}

.pricing-card--elite {
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(245, 158, 11, 0.04);
}

.pricing-card--elite:hover {
  background: rgba(245, 158, 11, 0.06);
}

.pricing-card-top {
  padding: 2.5rem 2rem 1.5rem;
  text-align: center;
}

.pricing-badge {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--purple);
  color: #fff;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 0.8rem;
}

.pricing-badge--elite {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}

.pricing-card-top h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}

.pricing-card-top h3 em {
  font-style: normal;
  color: var(--purple-light);
}

.pricing-card--elite .pricing-card-top h3 em {
  color: var(--gold);
}

.pricing-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.2rem;
}

.pricing-price {
  margin-bottom: 0.3rem;
}

.pricing-old {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: line-through;
  display: block;
  margin-bottom: 0.3rem;
}

.pricing-current {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
}

.pricing-current small {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.6;
}

.pricing-equiv {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.pricing-features {
  list-style: none;
  padding: 1.5rem 2rem;
  flex: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-features li {
  padding: 0.45rem 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
}

.pricing-features li strong { color: rgba(255, 255, 255, 0.95); }

.pricing-action {
  padding: 0 2rem 2.5rem;
  text-align: center;
}

.pricing-guarantee {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.8rem;
}

.pricing-footer {
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-footer strong { color: var(--gold); }

/* --- FAQ --- */
.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--stroke);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: color 0.2s;
}

.faq-q:hover { color: var(--purple); }

.faq-icon {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--purple);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  padding-bottom: 1.3rem;
}

.faq-a p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.faq-a strong { color: var(--ink); }

/* --- FINAL CTA --- */
.cta-final {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 0;
}

.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--ink);
}

.cta-final > p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cta-final-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.cta-final-sub {
  font-size: 0.82rem;
  color: var(--subtle);
}

/* --- FOOTER --- */
.footer {
  background: #0A0618;
  color: rgba(255, 255, 255, 0.6);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo {
  margin-bottom: 1rem;
  color: #fff;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer-links h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links p {
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
}

.footer-links a {
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--purple-light); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
}

.footer-bottom a {
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--purple-light); }

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 1024px) {
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .vs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  /* Mobile nav open */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--stroke);
    box-shadow: var(--shadow-md);
  }

  .hero { padding: 4rem 0 3rem; }
  .hero-title { font-size: clamp(2rem, 7vw, 2.8rem); }
  .hero-stats { gap: 1.2rem; }
  .hero-stat-divider { display: none; }

  .section { padding: 3.5rem 0; }

  .pain-grid { grid-template-columns: 1fr; gap: 1rem; }
  .method-pillars { grid-template-columns: 1fr; }
  .modules-grid { grid-template-columns: 1fr 1fr; }
  .compare-table { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .vs-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .week-flow { flex-direction: column; align-items: center; }
  .week-step { max-width: 100%; }
  .week-step-arrow { transform: rotate(90deg); }

  .btn--lg { padding: 0.9rem 1.8rem; }
  .btn--full { width: 100%; }
}

@media (max-width: 480px) {
  .modules-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .cta-final-buttons { flex-direction: column; width: 100%; }
  .cta-final-buttons .btn { width: 100%; }
}

/* --- SCROLL ANIMATIONS --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
