/* MPO CONSULT — Homepage Stylesheet v3.0 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --dark:    #060b18;
  --dark2:   #0d1424;
  --dark3:   #162033;
  --border:  #1e2d45;
  --accent:  #6366f1;
  --accent2: #818cf8;
  --accent3: #e0e7ff;
  --green:   #10b981;
  --yellow:  #f59e0b;
  --red:     #ef4444;
  --text:    #f1f5f9;
  --muted:   #94a3b8;
  --body-text: #1e293b;
  --body-bg:   #ffffff;
  --radius:  14px;
  --max-w:   1140px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.06);
  --shadow-xl: 0 24px 64px rgba(0,0,0,.16), 0 8px 24px rgba(0,0,0,.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--body-text);
  background: var(--body-bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── NAV ─────────────────────────────────────────────── */
nav {
  background: rgba(6,11,24,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(99,102,241,.12);
  padding: 0 32px;
  position: sticky;
  top: 0;
  z-index: 100;
  height: 68px;
  display: flex;
  align-items: center;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.nav-logo span {
  color: var(--accent2);
  font-weight: 900;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  flex: 1;
}
.nav-links a {
  color: #64748b;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color .2s;
}
.nav-links a:hover { color: #e2e8f0; }
.nav-cta {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: #fff;
  padding: 9px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .2s, transform .15s;
  box-shadow: 0 4px 12px rgba(99,102,241,.35);
}
.nav-cta:hover { opacity: .9; transform: translateY(-1px); }

/* ── HERO ────────────────────────────────────────────── */
.hero {
  background: var(--dark);
  color: var(--text);
  padding: 120px 32px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* grid overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99,102,241,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,.06) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
/* main glow */
.hero::before {
  content: '';
  position: absolute;
  top: -160px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 700px;
  background: radial-gradient(ellipse, rgba(99,102,241,.22) 0%, rgba(99,102,241,.06) 45%, transparent 70%);
  pointer-events: none;
}
/* left glow */
.hero-glow-left {
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(16,185,129,.08) 0%, transparent 70%);
  pointer-events: none;
}
/* right glow */
.hero-glow-right {
  position: absolute;
  top: 100px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(139,92,246,.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99,102,241,.1);
  border: 1px solid rgba(99,102,241,.25);
  color: var(--accent2);
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero h1 {
  font-size: clamp(34px, 5.5vw, 60px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  color: #fff;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent2) 0%, #a78bfa 50%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px;
  color: #94a3b8;
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.75;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.btn-primary {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: #fff;
  padding: 15px 36px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .2s, transform .15s;
  display: inline-block;
  box-shadow: 0 8px 24px rgba(99,102,241,.4);
  letter-spacing: -0.1px;
}
.btn-primary:hover { opacity: .92; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(99,102,241,.5); }
.btn-secondary {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: #e2e8f0;
  padding: 15px 32px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, border-color .2s, transform .15s;
  display: inline-block;
}
.btn-secondary:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); transform: translateY(-2px); }
.hero-trust {
  font-size: 12px;
  color: #475569;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-trust span { color: #cbd5e1; }
.hero-trust span::before { content: '✓  '; color: var(--green); }

/* ── MPO MEANING ─────────────────────────────────────── */
.mpo-meaning {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 36px auto 44px;
  padding: 20px 32px;
  background: rgba(99,102,241,.07);
  border: 1px solid rgba(99,102,241,.18);
  border-radius: 16px;
  max-width: 620px;
  backdrop-filter: blur(8px);
}
.mpo-meaning-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mpo-letter {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--accent), #4f46e5);
  color: #fff;
  border-radius: 10px;
  font-size: 19px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(99,102,241,.4);
}
.mpo-text { text-align: left; }
.mpo-text strong { display: block; color: #e2e8f0; font-size: 14px; font-weight: 700; }
.mpo-text span   { display: block; color: #cbd5e1; font-size: 11px; margin-top: 1px; }
.mpo-separator   { color: rgba(255,255,255,.1); font-size: 24px; font-weight: 200; padding: 0 4px; }

/* ── TRUST BAR ───────────────────────────────────────── */
.trust-bar {
  background: #080e1d;
  border-top: 1px solid rgba(99,102,241,.08);
  border-bottom: 1px solid rgba(99,102,241,.08);
  padding: 24px 32px;
}
.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  text-align: center;
  padding: 8px 36px;
}
.trust-num {
  font-size: 17px;
  font-weight: 800;
  color: var(--accent2);
  letter-spacing: -0.3px;
  margin-bottom: 4px;
}
.trust-label {
  font-size: 11px;
  color: #cbd5e1;
  letter-spacing: 0.2px;
  white-space: nowrap;
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(99,102,241,.2), transparent);
}

/* ── MARKET REALITY ──────────────────────────────────── */
.market-reality {
  background: linear-gradient(180deg, #0d1424 0%, #0a1020 100%);
  padding: 64px 32px;
  border-bottom: 1px solid rgba(99,102,241,.08);
}
.market-reality-inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  max-width: var(--max-w);
  margin: 0 auto;
}
.market-stat {
  flex: 1;
  min-width: 200px;
  padding: 16px 32px;
  text-align: center;
}
.market-num {
  font-size: 26px;
  font-weight: 900;
  color: var(--accent2);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.market-text { font-size: 13px; color: #cbd5e1; line-height: 1.6; }
.market-text em { display: block; font-size: 11px; color: #94a3b8; margin-top: 5px; font-style: normal; }
.market-divider {
  width: 1px;
  align-self: stretch;
  min-height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(99,102,241,.15), transparent);
}

/* ── SECTION LAYOUT ──────────────────────────────────── */
section { padding: 96px 32px; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  padding: 4px 12px;
  background: rgba(99,102,241,.08);
  border-radius: 100px;
  border: 1px solid rgba(99,102,241,.15);
}
.section-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 900;
  color: #0f172a;
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin-bottom: 18px;
}
.section-sub {
  font-size: 17px;
  color: #64748b;
  max-width: 600px;
  line-height: 1.75;
  font-weight: 400;
}
.section-dark {
  background: linear-gradient(180deg, var(--dark2) 0%, var(--dark) 100%);
  color: var(--text);
}
.section-dark .section-title { color: #f1f5f9; }
.section-dark .section-sub   { color: var(--muted); }
.section-gray { background: #f8fafc; }

/* ── VALUE GRID ──────────────────────────────────────── */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 52px;
}
.value-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 32px;
  border-top: 3px solid var(--accent);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s;
}
.value-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.value-num {
  font-size: 34px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: -1px;
  line-height: 1;
}
.value-card h3 { font-size: 16px; font-weight: 700; color: #0f172a; margin-bottom: 10px; letter-spacing: -0.2px; }
.value-card p  { font-size: 14px; color: #64748b; line-height: 1.65; }

/* ── PAIN / SOLUTION LIST ────────────────────────────── */
.pain-solution-list {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.psl-row {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  align-items: stretch;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s;
}
.psl-row:hover { box-shadow: var(--shadow-md); }
.psl-pain {
  padding: 24px 28px;
  border-right: 1px solid #f1f5f9;
  background: #fffbfb;
}
.psl-solution {
  padding: 24px 28px;
  background: #f9fffe;
}
.psl-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
}
.psl-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 8px;
  padding: 3px 10px;
  border-radius: 100px;
  display: inline-block;
}
.psl-pain .psl-label { color: #b91c1c; background: #fef2f2; border: 1px solid #fecaca; }
.psl-solution .psl-label { color: #065f46; background: #f0fdf4; border: 1px solid #bbf7d0; }
.psl-pain p { font-size: 14px; color: #374151; line-height: 1.65; font-style: italic; }
.psl-solution p { font-size: 14px; color: #1e293b; line-height: 1.65; }

/* ── AUDIENCE GRID ───────────────────────────────────── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 52px;
}
.audience-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.audience-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: rgba(99,102,241,.3); }
.audience-role {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
  padding: 4px 12px;
  background: rgba(99,102,241,.06);
  border-radius: 100px;
  display: inline-block;
  border: 1px solid rgba(99,102,241,.12);
}
.audience-card p { font-size: 14px; color: #64748b; line-height: 1.65; }

/* ── PROBLEM SECTION ─────────────────────────────────── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 52px;
}
.problem-card {
  border-radius: var(--radius);
  padding: 32px;
  border-top: 3px solid #ef4444;
}
.problem-num {
  font-size: 42px;
  font-weight: 900;
  color: #ef4444;
  margin-bottom: 10px;
  letter-spacing: -1.5px;
  line-height: 1;
}
.problem-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.problem-card p  { font-size: 14px; line-height: 1.65; opacity: .8; }

/* ── KPI SHOWCASE ────────────────────────────────────── */
.kpi-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin-top: 52px;
}
.kpi-card {
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.kpi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.kpi-dark {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
}
.kpi-dark .kpi-label { color: #e2e8f0; }
.kpi-dark .kpi-desc  { color: #cbd5e1; }
.kpi-card-alert { border-top: 2px solid var(--yellow); }
.kpi-label {
  font-size: 10px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}
.kpi-value { font-size: 26px; font-weight: 900; line-height: 1; margin-bottom: 8px; letter-spacing: -0.5px; }
.kpi-desc  { font-size: 11px; color: #94a3b8; line-height: 1.4; }
.kpi-green  { color: var(--green); }
.kpi-yellow { color: var(--yellow); }
.kpi-red    { color: var(--red); }

/* ── STEPS SECTION ───────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 52px;
}
.step {
  text-align: center;
  padding: 36px 28px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s;
  position: relative;
}
.step:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.step-num {
  display: inline-flex;
  width: 30px; height: 30px;
  background: linear-gradient(135deg, var(--accent), #4f46e5);
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 4px 10px rgba(99,102,241,.4);
}
.step-text-icon {
  display: inline-block;
  background: rgba(99,102,241,.08);
  border: 1px solid rgba(99,102,241,.2);
  color: var(--accent2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 7px 16px;
  border-radius: 8px;
  margin-bottom: 18px;
}
.step h3 { font-size: 17px; font-weight: 700; color: #0f172a; margin-bottom: 10px; letter-spacing: -0.2px; }
.step p  { font-size: 14px; color: #64748b; line-height: 1.65; }

/* ── FEATURES GRID ───────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 52px;
}
.feature-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: rgba(99,102,241,.25); }
.feature-accent {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #a78bfa);
  border-radius: 2px;
  margin-bottom: 18px;
}
.feature-card h3 { font-size: 16px; font-weight: 700; color: #0f172a; margin-bottom: 10px; letter-spacing: -0.2px; }
.feature-card p  { font-size: 14px; color: #64748b; line-height: 1.65; }

/* ── ENTERPRISE SECTION ──────────────────────────────── */
.enterprise-section { background: #f8fafc; }
.enterprise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 52px;
}
.enterprise-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.enterprise-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: #0f172a; }
.enterprise-icon {
  display: inline-block;
  background: #0f172a;
  color: var(--accent2);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 5px 12px;
  border-radius: 6px;
  width: fit-content;
  margin-bottom: 6px;
}
.enterprise-card h3 { font-size: 15px; font-weight: 700; color: #0f172a; letter-spacing: -0.2px; }
.enterprise-card p  { font-size: 13.5px; color: #64748b; line-height: 1.65; }
.btn-enterprise {
  display: inline-block;
  background: #0f172a;
  color: var(--accent2);
  border: 1px solid rgba(99,102,241,.3);
  padding: 15px 40px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.btn-enterprise:hover { background: #1e293b; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }

/* ── EXPERTISE SECTION ───────────────────────────────── */
.expertise-section { padding: 96px 32px; }
.expertise-text { max-width: 780px; }
.expertise-stats {
  display: flex;
  gap: 48px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.expertise-num {
  font-size: 30px;
  font-weight: 900;
  color: var(--accent2);
  letter-spacing: -0.5px;
  margin-bottom: 5px;
  line-height: 1;
}
.expertise-label { font-size: 12px; color: #cbd5e1; }

/* ── SOCIAL PROOF ────────────────────────────────────── */
.quote-card {
  background: rgba(99,102,241,.06);
  border: 1px solid rgba(99,102,241,.18);
  border-radius: 18px;
  padding: 48px;
  max-width: 720px;
  margin: 52px auto 0;
  text-align: center;
  position: relative;
}
.quote-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 72px;
  color: var(--accent2);
  font-family: Georgia, serif;
  line-height: 1;
  opacity: .4;
}
.quote-text {
  font-size: 19px;
  font-style: italic;
  color: #e2e8f0;
  margin-bottom: 24px;
  line-height: 1.75;
  font-weight: 400;
}
.quote-author { font-size: 13px; color: var(--muted); }
.quote-author strong { color: var(--accent2); font-weight: 700; }

/* ── PRICING ─────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 52px;
}
.pricing-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-card.popular {
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 4px rgba(99,102,241,.08), var(--shadow-md);
}
.popular-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), #4f46e5);
  color: #fff;
  padding: 4px 18px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(99,102,241,.4);
}
.pricing-tier { font-size: 12px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.pricing-price { font-size: 44px; font-weight: 900; color: #0f172a; line-height: 1; margin-bottom: 4px; letter-spacing: -1.5px; }
.pricing-price span { font-size: 16px; font-weight: 400; color: #94a3b8; letter-spacing: 0; }
.pricing-projects { font-size: 13px; color: #94a3b8; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid #f1f5f9; }
.pricing-features { list-style: none; margin-bottom: 32px; }
.pricing-features li { font-size: 14px; color: #374151; padding: 6px 0; display: flex; align-items: flex-start; gap: 8px; }
.pricing-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.pricing-btn {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
}
.pricing-btn-outline { border: 2px solid var(--accent); color: var(--accent); }
.pricing-btn-outline:hover { background: var(--accent); color: #fff; }
.pricing-btn-filled { background: linear-gradient(135deg, var(--accent), #4f46e5); color: #fff; box-shadow: 0 4px 14px rgba(99,102,241,.4); }
.pricing-btn-filled:hover { opacity: .9; transform: translateY(-1px); }
.pricing-annual-note { text-align: center; margin-top: 24px; font-size: 13px; color: #94a3b8; }
.pricing-annual-note strong { color: var(--green); }

/* ── CTA SECTION ─────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #0d1424 0%, #0f0a2a 50%, #0a1420 100%);
  text-align: center;
  padding: 120px 32px;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -150px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(99,102,241,.18) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section > * { position: relative; z-index: 1; }
.cta-section h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 900; color: #fff; margin-bottom: 18px; letter-spacing: -1px; line-height: 1.1; }
.cta-section p  { font-size: 18px; color: #cbd5e1; margin-bottom: 44px; line-height: 1.7; }

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  background: #040810;
  border-top: 1px solid rgba(99,102,241,.08);
  padding: 48px 32px;
  color: var(--muted);
  font-size: 13px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo { font-size: 18px; font-weight: 900; color: #fff; }
.footer-logo span { color: var(--accent2); }
.footer-links { display: flex; gap: 28px; }
.footer-links a { color: #64748b; text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: #94a3b8; }

/* ── LANGUAGE TOGGLE ─────────────────────────────────── */
html[lang="de"] .en { display: none !important; }
html[lang="en"] .de { display: none !important; }

.lang-toggle {
  background: transparent;
  border: 1px solid rgba(255,255,255,.12);
  color: #94a3b8;
  padding: 6px 14px;
  border-radius: 7px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  letter-spacing: 0.8px;
  font-family: inherit;
  flex-shrink: 0;
  white-space: nowrap;
  min-width: 42px;
  text-align: center;
}
.lang-toggle:hover { border-color: var(--accent2); color: var(--accent2); }

/* ── LEGAL PAGES ─────────────────────────────────────── */
.legal-header {
  background: var(--dark);
  color: var(--text);
  padding: 72px 32px 48px;
  border-bottom: 1px solid var(--border);
}
.legal-header h1 { font-size: 38px; font-weight: 900; margin-bottom: 8px; letter-spacing: -0.5px; }
.legal-header p  { color: var(--muted); font-size: 14px; }
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 32px;
}
.legal-content h2 { font-size: 21px; font-weight: 800; color: #0f172a; margin: 44px 0 14px; letter-spacing: -0.3px; padding-top: 16px; border-top: 2px solid #f1f5f9; }
.legal-content h3 { font-size: 15px; font-weight: 700; color: #1e293b; margin: 28px 0 10px; }
.legal-content p  { margin-bottom: 14px; color: #374151; line-height: 1.75; font-size: 15px; }
.legal-content ul { margin: 10px 0 16px 0; list-style: none; }
.legal-content ul li { margin-bottom: 8px; color: #374151; line-height: 1.65; font-size: 14px; padding-left: 20px; position: relative; }
.legal-content ul li::before { content: '—'; position: absolute; left: 0; color: #94a3b8; }
.legal-content table { width: 100%; border-collapse: collapse; margin: 16px 0 20px; font-size: 14px; border-radius: 10px; overflow: hidden; border: 1px solid #e2e8f0; }
.legal-content th { background: #f8fafc; padding: 11px 16px; text-align: left; font-weight: 700; border-bottom: 1px solid #e2e8f0; color: #374151; }
.legal-content td { padding: 11px 16px; border-bottom: 1px solid #f1f5f9; color: #4b5563; vertical-align: top; }
.legal-content tr:last-child td { border-bottom: none; }
.info-box {
  background: #eff6ff;
  border-left: 4px solid #3b82f6;
  padding: 16px 20px;
  border-radius: 0 10px 10px 0;
  margin: 20px 0;
  font-size: 14px;
  color: #1e40af;
  line-height: 1.6;
}
.disclaimer-box {
  background: #fff7ed;
  border: 2px solid #f97316;
  border-left: 6px solid #ea580c;
  border-radius: 0 10px 10px 0;
  padding: 22px 26px;
  margin: 24px 0 36px;
  font-size: 14px;
  color: #7c2d12;
  line-height: 1.75;
}
.agb-toc {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 0 0 36px;
  font-size: 13px;
}
.agb-toc strong { display: block; font-size: 12px; color: #64748b; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.toc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.toc-grid div { color: #94a3b8; line-height: 1.7; }
.toc-grid a { color: var(--accent); text-decoration: none; font-weight: 600; display: block; margin-bottom: 5px; }
.toc-grid a:hover { text-decoration: underline; }

/* ── PRICING PAGE FULL ───────────────────────────────── */
.pricing-hero {
  background: var(--dark);
  color: var(--text);
  padding: 80px 32px 60px;
  text-align: center;
}
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 32px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}
.toggle-btn {
  width: 48px; height: 26px;
  background: var(--accent);
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  border: none;
  transition: background .2s;
}
.toggle-btn::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: left .2s;
}
.toggle-btn.monthly::after { left: 25px; }
.savings-badge {
  background: rgba(16,185,129,.12);
  border: 1px solid rgba(16,185,129,.25);
  color: var(--green);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
}
.faq-item { border-bottom: 1px solid #e2e8f0; padding: 22px 0; }
.faq-q { font-weight: 700; color: #0f172a; margin-bottom: 8px; font-size: 15px; }
.faq-a { font-size: 14px; color: #64748b; line-height: 1.7; }

/* ── DEMO PAGE ───────────────────────────────────────── */
.demo-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 96px;
}
.demo-feature.reverse { direction: rtl; }
.demo-feature.reverse > * { direction: ltr; }
.demo-screen {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  font-family: 'Inter', monospace;
  font-size: 13px;
  color: var(--muted);
  min-height: 200px;
  box-shadow: var(--shadow-xl);
}
.demo-screen .kpi-row { display: flex; gap: 14px; margin-bottom: 14px; flex-wrap: wrap; }
.demo-kpi {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  flex: 1; min-width: 100px;
}
.demo-kpi .label { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
.demo-kpi .value { font-size: 22px; font-weight: 800; color: var(--text); }
.demo-kpi.green .value { color: var(--green); }
.demo-kpi.red .value   { color: var(--red); }
.demo-kpi.yellow .value{ color: var(--yellow); }

/* ── WHY NOW SECTION ─────────────────────────────────── */
.why-now-section { padding: 96px 32px; }
.why-now-header { max-width: 620px; margin-bottom: 56px; }
.why-now-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.why-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 36px;
  transition: border-color .25s, transform .25s, background .25s;
}
.why-card:hover {
  background: rgba(99,102,241,.06);
  border-color: rgba(99,102,241,.25);
  transform: translateY(-4px);
}
.why-number {
  font-size: 11px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: .7;
}
.why-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.4px;
  line-height: 1.2;
}
.why-card p {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 20px;
}
.why-highlight {
  font-size: 13px;
  color: #cbd5e1;
  padding: 12px 16px;
  background: rgba(255,255,255,.04);
  border-left: 3px solid rgba(99,102,241,.4);
  border-radius: 0 8px 8px 0;
  line-height: 1.5;
}
.why-highlight-accent {
  border-left-color: var(--accent2);
  color: var(--accent2);
  background: rgba(99,102,241,.08);
}
.why-highlight-accent strong { color: #fff; }

/* ── HERO SPLIT LAYOUT ───────────────────────────────── */
.hero { padding: 80px 32px 80px; }
.hero-split {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text { text-align: left; }
.hero-text .hero-badge { margin-bottom: 24px; }
.hero-text h1 { margin-bottom: 20px; font-size: clamp(32px, 4vw, 52px); }
.hero-text .hero-sub { margin: 0 0 32px; font-size: 17px; }
.hero-text .hero-actions { justify-content: flex-start; }
.hero-text .hero-trust { justify-content: flex-start; margin-top: 20px; }

/* ── MOCK WINDOW (HERO DASHBOARD) ────────────────────── */
.hero-visual { position: relative; }
.mock-window {
  background: #0d1629;
  border: 1px solid rgba(99,102,241,.2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(99,102,241,.1), inset 0 1px 0 rgba(255,255,255,.05);
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
}
.mock-chrome {
  background: #162033;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mock-dots { display: flex; gap: 6px; }
.mock-dots span { width: 12px; height: 12px; border-radius: 50%; }
.dot-red    { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green  { background: #28c840; }
.mock-title { font-size: 11px; color: #e2e8f0; font-family: 'Inter', monospace; }
.mock-body { padding: 16px; }
.mock-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.mock-kpi {
  background: #162033;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 8px;
  padding: 10px 10px 8px;
}
.mock-kpi-label { font-size: 9px; color: #e2e8f0; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 4px; }
.mock-kpi-value { font-size: 15px; font-weight: 800; letter-spacing: -0.3px; }
.mock-green  { color: #10b981; }
.mock-yellow { color: #f59e0b; }
.mock-red    { color: #ef4444; }
.mock-section-title { font-size: 9px; color: #94a3b8; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.mock-progress-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.mock-phase { display: flex; align-items: center; gap: 8px; }
.mock-phase-name { font-size: 9px; color: #e2e8f0; width: 68px; flex-shrink: 0; }
.mock-bar-track { flex: 1; height: 6px; background: #162033; border-radius: 3px; overflow: hidden; }
.mock-bar-fill { height: 100%; background: #10b981; border-radius: 3px; }
.mock-bar-yellow { background: #f59e0b; }
.mock-bar-muted  { background: #1e2d45; }
.mock-bar-pct { font-size: 9px; font-weight: 700; width: 28px; text-align: right; }
.mock-muted { color: #94a3b8; }
.mock-health-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: rgba(245,158,11,.08);
  border: 1px solid rgba(245,158,11,.2);
  border-radius: 8px;
  margin-bottom: 10px;
}
.mock-badge-atrisk {
  font-size: 9px;
  font-weight: 800;
  color: #f59e0b;
  background: rgba(245,158,11,.15);
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.mock-health-text { font-size: 10px; color: #e2e8f0; }
.mock-ai-card {
  background: rgba(99,102,241,.08);
  border: 1px solid rgba(99,102,241,.2);
  border-radius: 8px;
  padding: 10px 12px;
}
.mock-ai-header { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.mock-ai-badge {
  font-size: 9px;
  font-weight: 800;
  background: var(--accent);
  color: #fff;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}
.mock-ai-title { font-size: 10px; color: var(--accent2); font-weight: 600; }
.mock-ai-text { font-size: 10px; color: #e2e8f0; line-height: 1.5; }

/* ── FEATURE SPLIT SECTIONS ──────────────────────────── */
.fsplit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.fsplit-reverse { direction: rtl; }
.fsplit-reverse > * { direction: ltr; }
.fsplit-text .section-label { margin-bottom: 14px; }
.fsplit-list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fsplit-list li {
  font-size: 14px;
  color: #475569;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}
.fsplit-list li::before { content: '→'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* ── VIS: KPI BOARD ──────────────────────────────────── */
.vis-kpi-board {
  background: #0d1629;
  border: 1px solid rgba(99,102,241,.2);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,.3);
}
.vis-board-title { font-size: 11px; color: #e2e8f0; margin-bottom: 14px; font-weight: 600; }
.vis-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.vis-kpi-card {
  background: #162033;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  padding: 14px 12px;
}
.vis-kpi-card.vis-kpi-alert { border-color: rgba(239,68,68,.3); background: rgba(239,68,68,.05); }
.vis-kpi-l { font-size: 9px; color: #e2e8f0; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
.vis-kpi-v { font-size: 20px; font-weight: 900; letter-spacing: -0.5px; margin-bottom: 4px; }
.vis-kpi-d { font-size: 9px; color: #94a3b8; }
.g { color: #10b981; }
.y { color: #f59e0b; }
.r { color: #ef4444; }

/* ── VIS: TIMELINE ───────────────────────────────────── */
.vis-timeline {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-lg);
}
.vis-tl-title { font-size: 11px; color: #e2e8f0; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; font-weight: 700; }
.vis-tl-track { position: relative; display: flex; flex-direction: column; gap: 0; }
.vis-tl-track::before {
  content: '';
  position: absolute;
  left: 9px; top: 10px; bottom: 10px;
  width: 2px;
  background: linear-gradient(to bottom, #10b981, #f59e0b, #6366f1);
}
.vis-tl-event {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  position: relative;
}
.vis-tl-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  z-index: 1;
  border: 2px solid #fff;
}
.vis-dot-green  { background: #10b981; }
.vis-dot-yellow { background: #f59e0b; }
.vis-dot-pulse  {
  background: #6366f1;
  box-shadow: 0 0 0 4px rgba(99,102,241,.2);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(99,102,241,.2); } 50% { box-shadow: 0 0 0 8px rgba(99,102,241,.1); } }
.vis-tl-content { flex: 1; }
.vis-tl-day { font-size: 11px; color: #cbd5e1; margin-bottom: 4px; }
.vis-tl-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 100px;
  margin-bottom: 4px;
  letter-spacing: 0.3px;
}
.vis-badge-green  { background: #f0fdf4; color: #065f46; border: 1px solid #bbf7d0; }
.vis-badge-yellow { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }
.vis-tl-note { font-size: 12px; color: #94a3b8; }
.vis-tl-now .vis-tl-content { background: #f8fafc; border-radius: 8px; padding: 8px 10px; border: 1px solid #e2e8f0; }

/* ── VIS: DECISION ENGINE ────────────────────────────── */
.vis-decision {
  background: #0d1629;
  border: 1px solid rgba(99,102,241,.2);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,.3);
}
.vis-dec-header { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.vis-dec-badge {
  font-size: 10px; font-weight: 800;
  background: linear-gradient(135deg, var(--accent), #4f46e5);
  color: #fff; padding: 4px 10px; border-radius: 6px;
  box-shadow: 0 2px 8px rgba(99,102,241,.4);
}
.vis-dec-title { font-size: 11px; color: #e2e8f0; font-weight: 600; }
.vis-dec-options { display: flex; flex-direction: column; gap: 8px; }
.vis-dec-opt {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color .2s;
}
.vis-dec-recommended {
  border-color: rgba(99,102,241,.4);
  background: rgba(99,102,241,.06);
}
.vis-dec-opt-label { font-size: 9px; color: #e2e8f0; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 4px; }
.vis-dec-recommended .vis-dec-opt-label { color: var(--accent2); }
.vis-dec-opt-title { font-size: 14px; font-weight: 700; color: #e2e8f0; margin-bottom: 8px; }
.vis-dec-meta { display: flex; gap: 6px; flex-wrap: wrap; }
.vis-dec-tag {
  font-size: 10px; font-weight: 600;
  padding: 3px 9px; border-radius: 100px;
}
.vis-tag-cost    { background: rgba(239,68,68,.12); color: #fca5a5; border: 1px solid rgba(239,68,68,.2); }
.vis-tag-save    { background: rgba(16,185,129,.12); color: #6ee7b7; border: 1px solid rgba(16,185,129,.2); }
.vis-tag-time    { background: rgba(245,158,11,.12); color: #fcd34d; border: 1px solid rgba(245,158,11,.2); }
.vis-tag-scope   { background: rgba(99,102,241,.12); color: #a5b4fc; border: 1px solid rgba(99,102,241,.2); }
.vis-tag-neutral { background: rgba(255,255,255,.06); color: #94a3b8; border: 1px solid rgba(255,255,255,.1); }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 768px) {
  section { padding: 64px 20px; }
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { padding: 72px 20px 56px; }
  .demo-feature { grid-template-columns: 1fr; gap: 40px; }
  .demo-feature.reverse { direction: ltr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .trust-item { padding: 8px 16px; }
  .trust-divider { display: none; }
  .mpo-meaning { flex-direction: column; gap: 16px; }
  .mpo-separator { display: none; }
  .psl-row { grid-template-columns: 1fr; }
  .psl-arrow { display: none; }
  .psl-pain { border-right: none; border-bottom: 1px solid #f1f5f9; }
  .market-divider { display: none; }
  .market-stat { padding: 16px 20px; }
  .hero-split { grid-template-columns: 1fr; gap: 48px; }
  .hero-text { text-align: center; }
  .hero-text .hero-actions { justify-content: center; }
  .hero-text .hero-trust { justify-content: center; }
  .mock-window { transform: none; }
  .fsplit { grid-template-columns: 1fr; gap: 40px; }
  .fsplit-reverse { direction: ltr; }
  .vis-kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .mock-kpi-row { grid-template-columns: repeat(2, 1fr); }
}
