/* ── Fortark Design System ─────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg-0: #02020d;
  --bg-1: #07071a;
  --bg-2: #0c0c22;
  --bg-3: #11112c;
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(99,120,255,0.4);

  --accent: #4f6ef5;
  --accent-dim: rgba(79,110,245,0.15);
  --accent-glow: rgba(79,110,245,0.25);
  --cyan: #00d4ff;
  --cyan-dim: rgba(0,212,255,0.12);

  --text-1: #f0f0ff;
  --text-2: #a0a0c0;
  --text-3: #606080;

  --green: #00e676;
  --amber: #ffb300;
  --red: #ff5252;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow: 0 4px 32px rgba(0,0,0,0.5);
  --shadow-accent: 0 0 40px rgba(79,110,245,0.2);

  --transition: 0.2s ease;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-0);
  color: var(--text-1);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; }

/* ── Typography ────────────────────────────────────────────── */
.mono { font-family: 'JetBrains Mono', monospace; }
.text-accent { color: var(--accent); }
.text-cyan { color: var(--cyan); }
.text-muted { color: var(--text-2); }

/* ── Layout ────────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 24px var(--accent-glow);
}
.btn-primary:hover {
  background: #6080ff;
  box-shadow: 0 0 36px var(--accent-glow);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--text-1);
  border: 1px solid var(--border-hover);
}
.btn-outline:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--text-2);
  padding: 14px 20px;
}
.btn-ghost:hover { color: var(--text-1); }
.btn-lg { padding: 18px 36px; font-size: 16px; border-radius: var(--radius-md); }

/* ── Badge ─────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-accent {
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(79,110,245,0.2);
}
.badge-cyan {
  background: var(--cyan-dim);
  color: var(--cyan);
  border: 1px solid rgba(0,212,255,0.2);
}

/* ── Cards ─────────────────────────────────────────────────── */
.card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-accent);
  transform: translateY(-2px);
}

/* ── Section Headers ───────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 18px;
  color: var(--text-2);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Nav ───────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  background: rgba(2,2,13,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-mark {
  width: 32px; height: 32px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 0 16px var(--accent-glow);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--text-1); background: var(--bg-2); }
.nav-links a.active { color: var(--text-1); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--text-2);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79,110,245,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,110,245,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}
.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(79,110,245,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 32px;
}
.hero-eyebrow span { color: var(--accent); font-weight: 600; }
.hero-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}
.hero-title {
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 19px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 40px;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-3);
}

/* ── Trust Bar ─────────────────────────────────────────────── */
.trust-bar {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-1);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-right: 8px;
}
.trust-badge {
  padding: 7px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  background: var(--bg-2);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.03em;
}

/* ── Problem ───────────────────────────────────────────────── */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.problem-text h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.problem-text p {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 16px;
}
.problem-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}
.stat-card .stat-number {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card .stat-label {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}

/* ── How It Works ──────────────────────────────────────────── */
.how-it-works { background: var(--bg-1); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}
.step {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: all var(--transition);
}
.step:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-accent);
}
.step-number {
  width: 48px; height: 48px;
  background: var(--accent-dim);
  border: 1px solid rgba(79,110,245,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 24px;
  font-family: 'JetBrains Mono', monospace;
}
.step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.step p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ── Services ──────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  transition: all var(--transition);
}
.pricing-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}
.pricing-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(79,110,245,0.08) 0%, var(--bg-2) 100%);
  box-shadow: 0 0 48px var(--accent-glow);
}
.featured-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-tier {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.pricing-name {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}
.pricing-desc {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 24px;
  line-height: 1.6;
}
.pricing-price {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.pricing-price .amount {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}
.pricing-price .period {
  font-size: 14px;
  color: var(--text-2);
  margin-top: 4px;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
}
.feature-icon {
  width: 18px; height: 18px;
  background: rgba(0,230,118,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 10px;
}
.pricing-card .btn { width: 100%; justify-content: center; }

/* ── Why Fortark ───────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.why-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.why-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  background: var(--accent-dim);
  border: 1px solid rgba(79,110,245,0.2);
}
.why-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}
.why-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-banner {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-banner-inner {
  text-align: center;
  padding: 80px 0;
  position: relative;
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 200px;
  background: radial-gradient(ellipse, rgba(79,110,245,0.1), transparent 70%);
  pointer-events: none;
}
.cta-banner h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 17px;
  color: var(--text-2);
  max-width: 500px;
  margin: 0 auto 36px;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Footer ────────────────────────────────────────────────── */
footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 16px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 14px;
  color: var(--text-2);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--text-1); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-3);
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
  color: var(--text-3);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--text-2); }

/* ── Page Hero (inner pages) ───────────────────────────────── */
.page-hero {
  padding: 140px 0 80px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79,110,245,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,110,245,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 100% at 50% 50%, black, transparent);
}
.page-hero h1 {
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
  position: relative;
}
.page-hero p {
  font-size: 18px;
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto;
  position: relative;
}

/* ── Scorecard ─────────────────────────────────────────────── */
.scorecard-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
}
.scorecard-box {
  width: 100%;
  max-width: 640px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
}
.progress-bar-wrap {
  margin-bottom: 40px;
}
.progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 10px;
  font-family: 'JetBrains Mono', monospace;
}
.progress-bar {
  height: 3px;
  background: var(--bg-3);
  border-radius: 2px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--cyan));
  border-radius: 2px;
  transition: width 0.4s ease;
}
.question-block { display: none; }
.question-block.active { display: block; animation: fadeUp 0.3s ease; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.question-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.question-text {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.options-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.option-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 15px;
  color: var(--text-1);
  text-align: left;
  transition: all var(--transition);
  width: 100%;
}
.option-btn:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
}
.option-btn.selected {
  border-color: var(--accent);
  background: var(--accent-dim);
  color: var(--text-1);
}
.option-key {
  width: 28px; height: 28px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-3);
  flex-shrink: 0;
  font-family: 'JetBrains Mono', monospace;
}
.option-btn:hover .option-key,
.option-btn.selected .option-key {
  border-color: var(--accent);
  color: var(--accent);
}
.question-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
}
.btn-nav {
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
}
.btn-prev {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border);
}
.btn-prev:hover {
  border-color: var(--text-2);
  color: var(--text-1);
}
.btn-next {
  background: var(--accent);
  color: #fff;
  border: 1px solid transparent;
}
.btn-next:hover {
  background: #6080ff;
}
.btn-next:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
}

/* ── Results ───────────────────────────────────────────────── */
#results-section { display: none; }
#results-section.visible { display: block; animation: fadeUp 0.4s ease; }
.results-header {
  text-align: center;
  margin-bottom: 40px;
}
.overall-score {
  width: 120px; height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 3px solid;
  position: relative;
}
.overall-score .score-num {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}
.overall-score .score-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}
.score-high { border-color: var(--red); color: var(--red); background: rgba(255,82,82,0.08); }
.score-medium { border-color: var(--amber); color: var(--amber); background: rgba(255,179,0,0.08); }
.score-low { border-color: var(--green); color: var(--green); background: rgba(0,230,118,0.08); }
.results-header h2 { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.results-header p { font-size: 14px; color: var(--text-2); }
.domain-scores {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.domain-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.domain-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}
.domain-name { font-weight: 600; }
.domain-score-val { font-family: 'JetBrains Mono', monospace; font-weight: 600; }
.domain-bar {
  height: 8px;
  background: var(--bg-3);
  border-radius: 4px;
  overflow: hidden;
}
.domain-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1s ease;
}
.fill-high { background: var(--red); }
.fill-medium { background: var(--amber); }
.fill-low { background: var(--green); }
.results-findings {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 32px;
}
.results-findings h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-2);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.finding-item {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: var(--text-2);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.finding-item:last-child { border-bottom: none; padding-bottom: 0; }
.finding-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}
.results-cta {
  text-align: center;
  padding: 28px;
  background: var(--accent-dim);
  border: 1px solid rgba(79,110,245,0.2);
  border-radius: var(--radius-md);
}
.results-cta p {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 16px;
}
.results-cta .btn { margin: 0 auto; }

/* ── Email capture ─────────────────────────────────────────── */
.email-capture-box {
  padding: 20px 0 4px;
}
.email-capture-box input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
}

/* ── Contact ───────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.contact-info p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 36px;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-item-icon {
  width: 40px; height: 40px;
  background: var(--accent-dim);
  border: 1px solid rgba(79,110,245,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.contact-item-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-item-text span {
  font-size: 14px;
  color: var(--text-2);
}
.form-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.form-group {
  margin-bottom: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-1);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: all var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: var(--bg-2);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-3);
}
.form-group select option { background: var(--bg-2); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }
.form-note {
  font-size: 12px;
  color: var(--text-3);
  text-align: center;
  margin-top: 12px;
}

/* ── Services Detail ───────────────────────────────────────── */
.services-detail-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.service-row {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: center;
  transition: all var(--transition);
}
.service-row:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.service-row-header { margin-bottom: 16px; }
.service-row h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.service-row p { font-size: 15px; color: var(--text-2); line-height: 1.7; }
.service-includes h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 14px;
}
.service-includes ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-includes ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
}
.service-includes ul li::before {
  content: '→';
  color: var(--accent);
  font-size: 12px;
  flex-shrink: 0;
}

/* ── Mobile ────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .hamburger { display: flex; }

  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 1fr; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .scorecard-box { padding: 32px 24px; }
}

@media (max-width: 600px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .problem-stats { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ── Utility ───────────────────────────────────────────────── */
.hidden { display: none !important; }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.divider { height: 1px; background: var(--border); margin: 0; }
