/* ============================================================
   MICRO-NICHE DISCOVERY ENGINE — Landing Page Stylesheet
   Design: Dark premium with electric accent, modern SaaS feel
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --bg-base:       #070b12;
  --bg-surface:    #0d1420;
  --bg-card:       #111827;
  --bg-card-hover: #161e2e;
  --border:        rgba(255,255,255,0.07);
  --border-accent: rgba(99,210,255,0.25);

  --accent:        #3de0ff;
  --accent-2:      #7c6aff;
  --accent-glow:   rgba(61,224,255,0.18);
  --accent2-glow:  rgba(124,106,255,0.18);

  --text-primary:  #f0f4f8;
  --text-secondary:#94a3b8;
  --text-muted:    #64748b;

  --green:         #22c55e;
  --red:           #ef4444;

  --font-body:    'Noto Sans SC', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Inter', 'Noto Sans SC', sans-serif;

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --shadow-card: 0 4px 32px rgba(0,0,0,0.35);
  --shadow-glow: 0 0 60px rgba(61,224,255,0.12);

  --max-w: 1140px;
  --section-py: 96px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.text-accent   { color: var(--accent); }
.text-gradient {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section        { padding: var(--section-py) 0; }
.section-label  {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(61,224,255,0.08);
  border: 1px solid var(--border-accent);
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-title.left-align { text-align: left; }
.section-sub {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 56px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.22s ease;
  border: none;
  text-align: center;
  white-space: nowrap;
}
.btn-xl { padding: 17px 36px; font-size: 1.1rem; border-radius: var(--radius-lg); }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #070b12;
  box-shadow: 0 4px 24px rgba(61,224,255,0.28);
}
.btn-primary:hover {
  filter: brightness(1.08) saturate(1.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(61,224,255,0.4);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(61,224,255,0.05);
}

.btn-nav {
  padding: 9px 20px;
  font-size: 0.9rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #070b12;
}

.btn-arrow { transition: transform 0.2s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* Pulse ring animation */
.pulse-ring { position: relative; isolation: isolate; }
.pulse-ring::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  opacity: 0;
  animation: pulseRing 2.5s ease-out infinite;
  z-index: -1;
}
@keyframes pulseRing {
  0%   { opacity: 0.5; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.25); }
}

/* ---------- Nav ---------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: transparent;
}
.site-nav.scrolled {
  background: rgba(7,11,18,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
}
.logo-icon { color: var(--accent); font-size: 1.3rem; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-links a:not(.btn) {
  color: var(--text-secondary);
  transition: color 0.2s;
}
.nav-links a:not(.btn):hover { color: var(--text-primary); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 99px;
  transition: all 0.3s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 40%, transparent 80%);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: var(--accent-glow);
  top: -100px; left: -150px;
  animation: floatGlow 8s ease-in-out infinite;
}
.hero-glow-2 {
  width: 400px; height: 400px;
  background: var(--accent2-glow);
  bottom: 50px; right: -100px;
  animation: floatGlow 10s ease-in-out infinite reverse;
}
@keyframes floatGlow {
  0%, 100% { transform: translate(0,0); }
  50%       { transform: translate(20px, 30px); }
}

.hero-inner {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: rgba(61,224,255,0.07);
  border: 1px solid var(--border-accent);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.hero-headline {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.highlight-wrap {
  position: relative;
  display: inline-block;
}
.highlight-wrap::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 99px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 660px;
  margin: 0 auto 36px;
  line-height: 1.75;
}
.hero-sub strong { color: var(--text-primary); }

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-proof-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 32px;
  flex-wrap: wrap;
  gap: 8px 0;
}
.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}
.proof-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1.1;
  font-family: var(--font-display);
}
.proof-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
  white-space: nowrap;
}
.proof-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  animation: bounceDown 1.5s ease-in-out infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translateY(0) rotate(45deg); }
  50%       { transform: translateY(6px) rotate(45deg); }
}

/* ---------- Ticker ---------- */
.ticker-wrap {
  overflow: hidden;
  background: linear-gradient(135deg, rgba(61,224,255,0.08), rgba(124,106,255,0.08));
  border-top: 1px solid var(--border-accent);
  border-bottom: 1px solid var(--border-accent);
  padding: 14px 0;
}
.ticker-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: ticker 40s linear infinite;
  white-space: nowrap;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
}
.ticker-track span { flex-shrink: 0; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Pain Section ---------- */
.section-pain { background: var(--bg-base); }
.section-pain .section-label,
.section-pain .section-title,
.section-pain .section-sub {
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), #ff6b6b);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: opacity 0.3s;
}
.pain-card:hover::before { opacity: 1; }
.pain-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(239,68,68,0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.pain-icon {
  font-size: 1.5rem;
  color: var(--red);
  margin-bottom: 14px;
  opacity: 0.7;
}
.pain-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.pain-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; }

.pain-bridge {
  display: flex;
  align-items: center;
  gap: 20px;
}
.bridge-line { flex: 1; height: 1px; background: var(--border); }
.bridge-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  white-space: nowrap;
}
.bridge-text strong { color: var(--text-primary); }

/* ---------- What Section ---------- */
.section-what { background: var(--bg-surface); }
.what-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.what-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.what-desc strong { color: var(--text-primary); }
.what-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.tag {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(61,224,255,0.07);
  border: 1px solid var(--border-accent);
  padding: 4px 12px;
  border-radius: 999px;
}

.checklist-card {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-glow);
}
.checklist-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.checklist-icon { font-size: 1.2rem; }
.checklist-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.checklist-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.check {
  color: var(--green);
  font-weight: 900;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- How It Works ---------- */
.section-how { background: var(--bg-base); }

.phases-timeline {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-top: 24px;
}

.phase-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
}
.phase-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 50px;
  top: 80px;
  bottom: -64px;
  width: 2px;
  background: linear-gradient(to bottom, var(--border-accent), transparent);
}

.phase-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(61,224,255,0.1), rgba(124,106,255,0.1));
  border: 1.5px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--accent);
  font-family: var(--font-display);
  flex-shrink: 0;
}

.phase-content { padding-top: 16px; }
.phase-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.phase-desc {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 28px;
}

/* Phase 1 – Industries */
.phase-industries { display: flex; flex-direction: column; gap: 16px; }
.industry-group { display: flex; align-items: flex-start; gap: 14px; flex-wrap: wrap; }
.ig-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
  padding-top: 5px;
  min-width: 80px;
}
.ig-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.ig-tags span {
  font-size: 0.78rem;
  font-weight: 500;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  padding: 4px 11px;
  border-radius: 999px;
  color: var(--text-secondary);
  transition: all 0.2s;
}
.ig-tags span:hover {
  background: rgba(61,224,255,0.07);
  border-color: var(--border-accent);
  color: var(--accent);
}

/* Phase 2 – Filter grid */
.filter-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.filter-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: all 0.2s;
}
.filter-item:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
}
.filter-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.85rem;
  color: #070b12;
  flex-shrink: 0;
}
.filter-item strong { font-size: 0.95rem; color: var(--text-primary); display: block; margin-bottom: 4px; }
.filter-item p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.5; }

/* Phase 3 – Matrix */
.matrix-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
}
.matrix-row {
  display: grid;
  grid-template-columns: 1fr 2fr 3fr;
  border-bottom: 1px solid var(--border);
}
.matrix-row:last-child { border-bottom: none; }
.header-row {
  background: rgba(61,224,255,0.05);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.matrix-cell {
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
}
.label-cell { color: var(--text-primary); font-weight: 600; }
.score-cell {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.score-bar {
  display: inline-block;
  height: 4px;
  width: var(--w);
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 99px;
  flex-shrink: 0;
}

.matrix-tip {
  font-size: 0.83rem;
  color: var(--text-muted);
  background: rgba(34,197,94,0.06);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: var(--radius-md);
  padding: 12px 16px;
}

/* Phase 4 – Weeks */
.weeks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.week-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: all 0.2s;
}
.week-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
}
.week-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}
.week-card strong { font-size: 1rem; color: var(--text-primary); display: block; margin-bottom: 6px; }
.week-card p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }

.roadmap-extras {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.roadmap-extras span {
  font-size: 0.83rem;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
}

/* ---------- Proof / Examples ---------- */
.section-proof { background: var(--bg-surface); }

.examples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.example-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.example-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.example-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  border-color: var(--border-accent);
}
.example-industry {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.example-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.ep-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}
.example-problem,
.example-monetize,
.example-why {
  margin-bottom: 14px;
}
.example-problem p,
.example-monetize p,
.example-why p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.examples-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 24px;
}

/* ---------- For Whom ---------- */
.section-whom { background: var(--bg-base); }
.whom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.whom-col {
  border-radius: var(--radius-xl);
  padding: 36px;
}
.whom-for {
  background: rgba(34,197,94,0.05);
  border: 1px solid rgba(34,197,94,0.2);
}
.whom-not {
  background: rgba(239,68,68,0.04);
  border: 1px solid rgba(239,68,68,0.15);
}
.whom-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.whom-for .whom-title { color: var(--green); }
.whom-not .whom-title { color: var(--red); }
.whom-col ul { display: flex; flex-direction: column; gap: 10px; }
.whom-col ul li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding-left: 4px;
  position: relative;
}
.whom-for li::before {
  content: '✓  ';
  color: var(--green);
  font-weight: 700;
}
.whom-not li::before {
  content: '✗  ';
  color: var(--red);
  font-weight: 700;
}

/* ---------- Why Works ---------- */
.section-why { background: var(--bg-surface); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s ease;
}
.why-card:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.why-icon { font-size: 1.8rem; margin-bottom: 14px; }
.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.why-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; }

/* ---------- CTA ---------- */
.section-cta {
  background: var(--bg-base);
  position: relative;
  overflow: hidden;
}
.cta-bg-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61,224,255,0.06) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(61,224,255,0.08);
  border: 1px solid var(--border-accent);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.cta-headline {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.cta-sub {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 36px;
}
.cta-sub strong { color: var(--text-primary); }

.cta-price-block {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 36px;
  margin-bottom: 32px;
}
.price-tag {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 10px;
}
.price-original {
  font-size: 1.5rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.price-current {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent);
  font-family: var(--font-display);
}
.price-note {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 380px;
}

.cta-btn { margin-bottom: 20px; }

.cta-guarantees {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.cta-guarantees span::before { margin-right: 4px; }

.cta-final {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.cta-final strong { color: var(--text-primary); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
}
.footer-tagline { color: var(--text-secondary); font-size: 0.9rem; }
.footer-copy { color: var(--text-muted); font-size: 0.78rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .what-inner { grid-template-columns: 1fr; }
  .why-grid   { grid-template-columns: repeat(2, 1fr); }
  .weeks-grid { grid-template-columns: repeat(2, 1fr); }
  .phase-item { grid-template-columns: 72px 1fr; gap: 24px; }
}

@media (max-width: 768px) {
  :root { --section-py: 64px; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(7,11,18,0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    font-size: 1.2rem;
    backdrop-filter: blur(12px);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; z-index: 1001; }

  .hero { padding: 120px 0 60px; }
  .hero-proof-bar {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }
  .proof-divider { display: none; }

  .pain-grid      { grid-template-columns: 1fr; }
  .examples-grid  { grid-template-columns: 1fr; }
  .whom-grid      { grid-template-columns: 1fr; }
  .why-grid       { grid-template-columns: 1fr; }
  .weeks-grid     { grid-template-columns: 1fr; }
  .filter-grid    { grid-template-columns: 1fr; }
  .matrix-row     { grid-template-columns: 120px 1fr; }
  .matrix-row .matrix-cell:last-child { display: none; }

  .phase-item { grid-template-columns: 1fr; }
  .phase-item::after { display: none; }
  .phase-number { width: 56px; height: 56px; font-size: 1rem; margin-bottom: 8px; }

  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .btn-xl { text-align: center; justify-content: center; }

  .cta-guarantees { flex-direction: column; gap: 10px; }
  .cta-price-block { padding: 20px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.2rem; }
  .section-title { font-size: 1.8rem; }
  .container { padding: 0 16px; }
  .checklist-card { padding: 22px; }
  .pain-card { padding: 22px; }
}

/* ---------- Scroll animation helpers ---------- */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos].aos-visible {
  opacity: 1;
  transform: none;
}
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
