/* ====================================================
   ROYAL CYBER AUDIT REPORT — STYLESHEET
   Font: DM Serif Display + DM Sans
   Palette: Deep Navy · Off-White · Gold Accent · Status Colors
   ==================================================== */

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

:root {
  --navy: #0b1529;
  --navy-mid: #142040;
  --navy-light: #1e3060;
  --off-white: #f4f5f7;
  --white: #ffffff;
  --gold: #c9a84c;
  --gold-light: #e8c97e;
  --alt-bg: #eef0f5;

  --green: #1a8c5b;
  --green-bg: #e8f7f0;
  --amber: #c47c00;
  --amber-bg: #fff4e0;
  --red: #c0392b;
  --red-bg: #fdecea;
  --blue: #1a6db5;
  --blue-bg: #e8f0fb;

  --text-primary: #0b1529;
  --text-secondary: #4a5568;
  --text-light: #8a95a3;
  --border: #dde2ea;
  --border-dark: #2a3a5c;

  --radius: 12px;
  --radius-sm: 6px;
  --shadow: 0 4px 24px rgba(11,21,41,0.10);
  --shadow-lg: 0 8px 48px rgba(11,21,41,0.18);

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  scroll-behavior: smooth;
}

html { font-size: 16px; }
body { font-family: var(--font-body); color: var(--text-primary); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }

/* ---- CONTAINERS ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ====================================================
   NAVIGATION
   ==================================================== */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(11,21,41,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dark);
  height: 64px;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo {
  width: 36px; height: 36px; background: var(--gold); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; color: var(--navy); letter-spacing: 0.5px;
}
.nav-title { color: var(--white); font-size: 14px; font-weight: 500; letter-spacing: 0.3px; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 13px; font-weight: 500; letter-spacing: 0.3px; transition: color .2s; }
.nav-links a:hover { color: var(--gold); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; display: block; transition: .3s; }

@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; flex-direction: column; background: var(--navy); padding: 20px 32px; gap: 20px; border-bottom: 1px solid var(--border-dark); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
}

/* ====================================================
   HERO
   ==================================================== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 100px 0 80px; overflow: hidden; background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, #1e3575 0%, var(--navy) 70%);
}
.hero-grid-overlay {
  position: absolute; inset: 0; opacity: 0.06;
  background-image: linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.3) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero-badge {
  display: inline-flex; align-items: center;
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light); font-size: 12px; font-weight: 600;
  letter-spacing: 1.2px; text-transform: uppercase; padding: 6px 16px;
  border-radius: 100px; margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-display); font-size: clamp(44px, 7vw, 84px);
  color: var(--white); line-height: 1.05; margin-bottom: 24px; letter-spacing: -1px;
}
.hero-title em { color: var(--gold); font-style: normal; }
.hero-sub {
  font-size: 18px; color: rgba(255,255,255,0.7); max-width: 640px;
  line-height: 1.7; margin-bottom: 48px;
}
.hero-sub strong { color: var(--white); }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 0;
  border: 1px solid var(--border-dark); border-radius: var(--radius);
  overflow: hidden; max-width: 640px;
}
.hero-meta-item {
  flex: 1 1 140px; padding: 18px 24px; border-right: 1px solid var(--border-dark);
  background: rgba(255,255,255,0.04);
}
.hero-meta-item:last-child { border-right: none; }
.hero-meta-item .label { display: block; font-size: 10px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 6px; }
.hero-meta-item .value { display: block; font-size: 15px; color: var(--white); font-weight: 600; }
.hero-meta-item .score-value { color: var(--amber); font-size: 18px; }
.hero-scroll-hint {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4); font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  animation: bobHint 2s ease-in-out infinite;
}
@keyframes bobHint { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ====================================================
   SECTIONS
   ==================================================== */
.section { padding: 100px 0; }
.section-light { background: var(--white); }
.section-dark { background: var(--navy); }
.section-alt { background: var(--alt-bg); }

.section-header { margin-bottom: 56px; }
.section-header.light h2, .section-header.light .section-tag { color: var(--white); }
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.65); }

.section-tag {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.section-header.light .section-tag { color: var(--gold-light); }

.section-header h2 {
  font-family: var(--font-display); font-size: clamp(30px, 4vw, 48px);
  color: var(--navy); line-height: 1.1; letter-spacing: -0.5px;
}
.section-desc { margin-top: 16px; color: var(--text-secondary); font-size: 16px; max-width: 640px; }
.section-desc.dark { color: var(--text-secondary); }

/* ====================================================
   EXECUTIVE SUMMARY
   ==================================================== */
.exec-grid { display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: start; }
.exec-lead { font-size: 20px; font-weight: 500; line-height: 1.5; color: var(--navy); margin-bottom: 20px; }
.exec-copy p { color: var(--text-secondary); margin-bottom: 16px; line-height: 1.75; }
.exec-copy strong { color: var(--text-primary); }
.exec-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.kpi-card {
  padding: 24px; border-radius: var(--radius); text-align: center;
  border: 1px solid transparent;
}
.kpi-red { background: var(--red-bg); border-color: #f5c6c2; }
.kpi-amber { background: var(--amber-bg); border-color: #fad28a; }
.kpi-green { background: var(--green-bg); border-color: #a3d9be; }

.kpi-icon { font-size: 24px; margin-bottom: 8px; }
.kpi-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-secondary); margin-bottom: 8px; }
.kpi-value { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.kpi-red .kpi-value { color: var(--red); }
.kpi-amber .kpi-value { color: var(--amber); }
.kpi-green .kpi-value { color: var(--green); }
.kpi-note { font-size: 12px; color: var(--text-secondary); line-height: 1.4; }

@media (max-width: 900px) { .exec-grid { grid-template-columns: 1fr; } }

/* ====================================================
   SCORES
   ==================================================== */
.scores-layout { display: grid; grid-template-columns: 260px 1fr; gap: 64px; align-items: center; }
.overall-score-ring { position: relative; display: flex; align-items: center; justify-content: center; }
.ring-label {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.ring-number { font-family: var(--font-display); font-size: 42px; color: var(--white); line-height: 1; }
.ring-sub { font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }
.ring-grade { margin-top: 8px; font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 100px; display: inline-block; }
.grade-c { background: var(--amber-bg); color: var(--amber); }

.score-bar-item { margin-bottom: 22px; }
.score-bar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.score-bar-label { font-size: 14px; color: rgba(255,255,255,0.85); font-weight: 500; }
.score-bar-value { font-size: 14px; font-weight: 700; }
.score-bar-value.green { color: #4ade80; }
.score-bar-value.amber { color: #fbbf24; }
.score-bar-value.red { color: #f87171; }

.score-bar-track { height: 8px; background: rgba(255,255,255,0.1); border-radius: 100px; overflow: hidden; }
.score-bar-fill { height: 100%; border-radius: 100px; transition: width 1s ease; }
.score-bar-fill.green { background: linear-gradient(90deg, #22c55e, #4ade80); }
.score-bar-fill.amber { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.score-bar-fill.red { background: linear-gradient(90deg, #ef4444, #f87171); }

@media (max-width: 900px) { .scores-layout { grid-template-columns: 1fr; } .overall-score-ring { margin-bottom: 40px; } }

/* ====================================================
   FINDINGS
   ==================================================== */
.two-col-equal { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.findings-heading { font-size: 18px; font-weight: 700; margin-bottom: 28px; padding-bottom: 16px; border-bottom: 2px solid var(--border); }
.wins-heading { color: var(--green); border-color: var(--green-bg); }
.issues-heading { color: var(--red); border-color: var(--red-bg); }

.finding-item { display: flex; gap: 16px; margin-bottom: 24px; }
.finding-dot { width: 10px; height: 10px; border-radius: 50%; margin-top: 6px; flex-shrink: 0; }
.finding-dot.green { background: var(--green); }
.finding-dot.amber { background: var(--amber); }
.finding-dot.red { background: var(--red); }
.finding-item strong { display: block; font-size: 15px; margin-bottom: 6px; color: var(--navy); }
.finding-item p { font-size: 13.5px; color: var(--text-secondary); line-height: 1.65; }

@media (max-width: 768px) { .two-col-equal { grid-template-columns: 1fr; } }

/* ====================================================
   PERFORMANCE — CWV
   ==================================================== */
.cwv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 56px; }
.cwv-card {
  background: rgba(255,255,255,0.05); border: 1px solid var(--border-dark);
  border-radius: var(--radius); padding: 28px; position: relative; overflow: hidden;
}
.cwv-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.cwv-amber::before { background: var(--amber); }
.cwv-red::before { background: var(--red); }

.cwv-badge { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 4px 10px; border-radius: 100px; display: inline-block; margin-bottom: 16px; }
.badge-amber { background: rgba(196,124,0,0.2); color: #fbbf24; }
.badge-red { background: rgba(192,57,43,0.2); color: #f87171; }
.badge-green { background: rgba(26,140,91,0.2); color: #4ade80; }

.cwv-metric { font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.cwv-full { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.cwv-value { font-family: var(--font-display); font-size: 48px; color: var(--white); line-height: 1; margin-bottom: 4px; }
.cwv-amber .cwv-value { color: #fbbf24; }
.cwv-red .cwv-value { color: #f87171; }
.cwv-target { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 16px; }

.cwv-bar-track { height: 6px; background: rgba(255,255,255,0.1); border-radius: 100px; overflow: hidden; margin-bottom: 16px; }
.cwv-bar-fill { height: 100%; border-radius: 100px; }
.cwv-bar-amber { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.cwv-bar-red { background: linear-gradient(90deg, #ef4444, #f87171); }
.cwv-desc { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.65; }

.supporting-metrics { margin-bottom: 56px; }
.sub-heading { font-family: var(--font-display); font-size: 24px; margin-bottom: 24px; color: var(--navy); }
.sub-heading.light { color: var(--white); }
.supporting-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.supp-card { background: rgba(255,255,255,0.05); border: 1px solid var(--border-dark); border-radius: var(--radius); padding: 24px; }
.supp-label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7); margin-bottom: 12px; letter-spacing: 0.3px; }
.supp-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.supp-value { font-family: var(--font-display); font-size: 36px; }
.amber-text { color: #fbbf24; }
.green-text { color: #4ade80; }
.red-text { color: #f87171; }
.supp-card p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.65; }

.perf-rec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 56px; }
.perf-rec-item { background: rgba(255,255,255,0.04); border: 1px solid var(--border-dark); border-radius: var(--radius); padding: 22px; }
.perf-rec-priority { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 3px 10px; border-radius: 100px; display: inline-block; margin-bottom: 12px; }
.badge-low { background: rgba(26,109,181,0.2); color: #60a5fa; }
.perf-rec-item strong { display: block; font-size: 14px; color: var(--white); margin-bottom: 8px; }
.perf-rec-item p { font-size: 12.5px; color: rgba(255,255,255,0.55); line-height: 1.6; }

.chart-block { margin-top: 40px; }
.chart-wrap { background: rgba(255,255,255,0.04); border: 1px solid var(--border-dark); border-radius: var(--radius); padding: 32px; max-height: 360px; }
.chart-wrap canvas { max-height: 300px; }

@media (max-width: 900px) {
  .cwv-grid { grid-template-columns: 1fr; }
  .perf-rec-grid { grid-template-columns: 1fr 1fr; }
  .supporting-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) { .perf-rec-grid { grid-template-columns: 1fr; } }

/* ====================================================
   FINDINGS TABLE
   ==================================================== */
.table-wrap { overflow-x: auto; }
.findings-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.findings-table thead tr { background: var(--navy); }
.findings-table th { padding: 14px 16px; text-align: left; color: rgba(255,255,255,0.75); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; white-space: nowrap; }
.findings-table td { padding: 16px; border-bottom: 1px solid var(--border); vertical-align: top; color: var(--text-secondary); line-height: 1.55; }
.findings-table tr:hover td { background: #f8faff; }

.id-col { font-family: monospace; font-size: 12px; color: var(--text-light); white-space: nowrap; }

.cat-badge { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; padding: 3px 10px; border-radius: 100px; white-space: nowrap; }
.cat-perf { background: #ede9fe; color: #6d28d9; }
.cat-seo { background: #dbeafe; color: #1e40af; }
.cat-ux { background: #e0f2fe; color: #0369a1; }
.cat-cro { background: #fef3c7; color: #92400e; }
.cat-acc { background: #dcfce7; color: #166534; }
.cat-msg { background: #fce7f3; color: #9d174d; }

.sev-badge { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; padding: 3px 10px; border-radius: 100px; white-space: nowrap; }
.sev-high { background: var(--red-bg); color: var(--red); }
.sev-med { background: var(--amber-bg); color: var(--amber); }
.sev-low { background: var(--blue-bg); color: var(--blue); }

.effort-badge { font-size: 10px; font-weight: 600; padding: 3px 10px; border-radius: 100px; white-space: nowrap; }
.effort-high { background: #fee2e2; color: #b91c1c; }
.effort-med { background: #fef9c3; color: #854d0e; }
.effort-low { background: #dcfce7; color: #166534; }

/* ====================================================
   SEO ANALYSIS
   ==================================================== */
.analysis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.analysis-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.analysis-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.analysis-icon { font-size: 28px; margin-bottom: 12px; }
.analysis-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 10px; color: var(--navy); }
.status-row { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; font-size: 12px; font-weight: 600; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.status-dot.green { background: var(--green); }
.status-dot.amber { background: var(--amber); }
.status-dot.red { background: var(--red); }
.analysis-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.65; }

.opp-table-wrap { overflow-x: auto; }
.opp-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.opp-table th { background: var(--navy); color: rgba(255,255,255,0.8); padding: 12px 16px; text-align: left; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }
.opp-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); color: var(--text-secondary); }
.opp-table tr:hover td { background: #f0f4ff; }

@media (max-width: 900px) { .analysis-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .analysis-grid { grid-template-columns: 1fr; } }

/* ====================================================
   UX ANALYSIS
   ==================================================== */
.radar-row { display: grid; grid-template-columns: 380px 1fr; gap: 64px; align-items: start; }
.radar-chart-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.ux-breakdown { }
.ux-item { padding: 20px 0; border-bottom: 1px solid var(--border); }
.ux-item:last-child { border-bottom: none; }
.ux-item-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.ux-item-header strong { font-size: 15px; color: var(--navy); }
.ux-score { font-family: var(--font-display); font-size: 20px; font-weight: 700; }
.ux-item p { font-size: 13.5px; color: var(--text-secondary); line-height: 1.65; }

@media (max-width: 900px) { .radar-row { grid-template-columns: 1fr; } }

/* ====================================================
   ACCESSIBILITY
   ==================================================== */
.a11y-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.a11y-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.a11y-status { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; padding: 4px 10px; border-radius: 100px; display: inline-block; margin-bottom: 12px; }
.a11y-warn { background: var(--amber-bg); color: var(--amber); }
.a11y-ok { background: var(--green-bg); color: var(--green); }
.a11y-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.a11y-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 12px; }
.a11y-guideline { font-size: 11px; color: var(--text-light); font-style: italic; }

@media (max-width: 900px) { .a11y-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .a11y-grid { grid-template-columns: 1fr; } }

/* ====================================================
   CRO
   ==================================================== */
.cro-funnel-block { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; margin-bottom: 48px; box-shadow: var(--shadow); }
.cro-funnel-block h3 { font-family: var(--font-display); font-size: 22px; margin-bottom: 32px; color: var(--navy); }

.funnel-stages { display: flex; flex-direction: column; gap: 20px; }
.funnel-stage { }
.funnel-stage-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-secondary); margin-bottom: 8px; }
.funnel-stage-bar { background: #f0f2f7; border-radius: 100px; height: 12px; overflow: hidden; margin-bottom: 6px; }
.funnel-fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, #22c55e, #4ade80); }
.funnel-amber { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.funnel-red { background: linear-gradient(90deg, #ef4444, #f87171); }
.funnel-note { font-size: 12.5px; color: var(--text-secondary); }

.cro-recs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.cro-rec-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.cro-rec-num { font-family: var(--font-display); font-size: 48px; color: var(--off-white); line-height: 1; margin-bottom: 12px; }
.cro-rec-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: var(--navy); }
.cro-rec-card p { font-size: 13.5px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 16px; }
.cro-impact { font-size: 13px; font-weight: 600; color: var(--green); background: var(--green-bg); padding: 8px 14px; border-radius: var(--radius-sm); }

@media (max-width: 768px) { .cro-recs-grid { grid-template-columns: 1fr; } }

/* ====================================================
   CONTENT / BEFORE-AFTER
   ==================================================== */
.before-after-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 56px; }
.ba-card { border-radius: var(--radius); overflow: hidden; }
.ba-label { padding: 12px 24px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; }
.before-label { background: rgba(192,57,43,0.2); color: #f87171; }
.after-label { background: rgba(26,140,91,0.2); color: #4ade80; }
.ba-content { padding: 28px; background: rgba(255,255,255,0.06); border: 1px solid var(--border-dark); border-top: none; border-radius: 0 0 var(--radius) var(--radius); }
.ba-quote { font-size: 15px; font-style: italic; color: rgba(255,255,255,0.8); line-height: 1.65; margin-bottom: 20px; padding-left: 16px; border-left: 3px solid rgba(255,255,255,0.2); }
.ba-issues, .ba-fixes { list-style: none; }
.ba-issues li { font-size: 13px; color: rgba(255,255,255,0.55); padding: 5px 0 5px 20px; position: relative; }
.ba-issues li::before { content: '✗'; position: absolute; left: 0; color: #f87171; }
.ba-fixes li { font-size: 13px; color: rgba(255,255,255,0.55); padding: 5px 0 5px 20px; position: relative; }
.ba-fixes li::before { content: '✓'; position: absolute; left: 0; color: #4ade80; }

.content-gaps h3 { font-family: var(--font-display); font-size: 24px; color: var(--white); margin-bottom: 24px; }
.gap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.gap-item { background: rgba(255,255,255,0.05); border: 1px solid var(--border-dark); border-radius: var(--radius); padding: 24px; }
.gap-icon { font-size: 28px; margin-bottom: 12px; }
.gap-item strong { display: block; font-size: 14px; color: var(--white); margin-bottom: 8px; }
.gap-item p { font-size: 12.5px; color: rgba(255,255,255,0.55); line-height: 1.6; }

@media (max-width: 900px) {
  .before-after-grid { grid-template-columns: 1fr; }
  .gap-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) { .gap-grid { grid-template-columns: 1fr; } }

/* ====================================================
   ROADMAP
   ==================================================== */
.roadmap-timeline { display: flex; flex-direction: column; gap: 36px; }
.roadmap-phase { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.phase-header { padding: 32px; }
.phase-30 .phase-header { background: linear-gradient(135deg, #0b1529, #1a3a6e); }
.phase-60 .phase-header { background: linear-gradient(135deg, #1a2e4a, #0e4a7c); }
.phase-90 .phase-header { background: linear-gradient(135deg, #0e2e1a, #0a5c2e); }

.phase-badge { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; padding: 5px 14px; border-radius: 100px; margin-bottom: 12px; }
.badge-30 { background: rgba(201,168,76,0.25); color: var(--gold-light); }
.badge-60 { background: rgba(26,109,181,0.3); color: #93c5fd; }
.badge-90 { background: rgba(26,140,91,0.25); color: #86efac; }

.phase-header h3 { font-family: var(--font-display); font-size: 24px; color: var(--white); margin-bottom: 8px; }
.phase-focus { font-size: 14px; color: rgba(255,255,255,0.6); }
.phase-tasks { background: var(--white); padding: 28px 32px; }
.phase-task { display: flex; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.phase-task:last-child { border-bottom: none; }
.task-check { width: 24px; height: 24px; background: var(--green-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.phase-task strong { display: block; font-size: 14px; color: var(--navy); margin-bottom: 4px; }
.task-meta { display: block; font-size: 12.5px; color: var(--text-secondary); line-height: 1.55; }
.phase-impact { background: var(--navy); padding: 16px 32px; font-size: 13px; color: var(--gold-light); font-weight: 500; }

/* ====================================================
   IMPACT MATRIX
   ==================================================== */
.matrix-wrap { background: rgba(255,255,255,0.04); border: 1px solid var(--border-dark); border-radius: var(--radius); padding: 32px; display: flex; justify-content: center; margin-bottom: 24px; }
.matrix-wrap canvas { max-width: 100%; }
.matrix-legend { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.legend-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.7); }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; }
.legend-dot.green { background: #22c55e; }
.legend-dot.amber { background: #f59e0b; }
.legend-dot.blue { background: #3b82f6; }
.legend-dot.red { background: #ef4444; }

/* ====================================================
   BUSINESS IMPACT
   ==================================================== */
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 32px; }
.impact-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; text-align: center; box-shadow: var(--shadow); }
.impact-metric { font-family: var(--font-display); font-size: 36px; color: var(--navy); margin-bottom: 8px; }
.impact-label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--gold); margin-bottom: 12px; }
.impact-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.65; }

.impact-note { background: var(--amber-bg); border: 1px solid #fad28a; border-radius: var(--radius); padding: 18px 24px; font-size: 13px; color: var(--text-secondary); line-height: 1.65; }
.impact-note strong { color: var(--amber); }

@media (max-width: 900px) { .impact-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .impact-grid { grid-template-columns: 1fr; } }

/* ====================================================
   CONCLUSION
   ==================================================== */
.conclusion-block { max-width: 800px; margin: 0 auto; }
.conclusion-lead { font-size: 20px; font-weight: 500; color: var(--white); line-height: 1.6; margin-bottom: 20px; }
.conclusion-block p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.75; margin-bottom: 18px; }
.conclusion-block strong { color: var(--gold-light); }

.conclusion-scores { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 48px; flex-wrap: wrap; }
.conc-score-item { text-align: center; }
.conc-score-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1.2px; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.conc-score-val { font-family: var(--font-display); font-size: 36px; color: var(--white); }
.conc-score-val.target { color: #fbbf24; }
.conc-score-val.potential { color: #4ade80; }
.conc-arrow { font-size: 28px; color: rgba(255,255,255,0.3); }

/* ====================================================
   FOOTER
   ==================================================== */
.site-footer { background: #060e1d; padding: 48px 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.footer-brand { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.8); font-weight: 600; font-size: 14px; }
.footer-note { font-size: 12px; color: rgba(255,255,255,0.35); max-width: 640px; line-height: 1.7; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }

/* ====================================================
   ANIMATIONS
   ==================================================== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.6s ease forwards; }

/* ====================================================
   SCROLLBAR
   ==================================================== */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: #c0c8d8; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #9aa5b8; }

/* ====================================================
   PRINT
   ==================================================== */
@media print {
  .site-nav, .hero-scroll-hint { display: none; }
  .hero { min-height: auto; padding: 60px 0; }
  .section { padding: 60px 0; }
  * { animation: none !important; }
}
