/* ===== VARIABLES ===== */
:root {
  --navy: #1A3C5E;
  --blue: #2563EB;
  --blue-light: #2E86C1;
  --bg: #FFFFFF;
  --bg-alt: #F8FAFC;
  --text: #1E293B;
  --text-light: #64748B;
  --text-muted: #94A3B8;
  --border: #E2E8F0;
  --red: #EF4444;
  --orange: #F97316;
  --yellow: #EAB308;
  --green: #22C55E;
  --radius: 0.75rem;
  --shadow: 0 20px 50px rgba(26,60,94,0.1);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', system-ui, sans-serif; background: var(--bg); color: var(--text); -webkit-font-smoothing: antialiased; }
a { color: var(--text-light); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--blue); }
.hidden { display: none !important; }

/* ===== LAYOUT ===== */
.container { max-width: 1024px; margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }

/* ===== HEADER ===== */
#header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner { max-width: 1024px; margin: 0 auto; padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 8px; }
.logo .material-symbols-outlined { font-size: 28px; color: var(--navy); }
.logo-text { font-size: 20px; font-weight: 800; color: var(--navy); letter-spacing: -0.5px; }
.logo-accent { color: var(--blue); }
nav { display: flex; align-items: center; gap: 32px; font-size: 14px; font-weight: 500; }
.btn-nav {
  background: var(--navy); color: white; border: none; padding: 10px 20px;
  border-radius: var(--radius); font-weight: 600; cursor: pointer; font-size: 14px;
  transition: background 0.2s;
}
.btn-nav:hover { background: #2C5282; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block; width: 100%;
  background: linear-gradient(135deg, var(--navy), var(--blue-light));
  color: white; border: none; padding: 18px 32px;
  border-radius: var(--radius); font-size: 17px; font-weight: 700;
  cursor: pointer; transition: all 0.2s; box-shadow: 0 4px 16px rgba(26,60,94,0.2);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(26,60,94,0.3); }
.btn-primary:active { transform: scale(0.98); }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.btn-secondary {
  display: inline-block; width: 100%;
  background: white; color: var(--navy); border: 2px solid var(--border);
  padding: 14px 24px; border-radius: var(--radius); font-size: 15px; font-weight: 700;
  cursor: pointer; transition: all 0.2s;
}
.btn-secondary:hover { background: var(--bg-alt); border-color: var(--navy); }

/* ===== HERO ===== */
#hero {
  position: relative; overflow: hidden;
  padding: 80px 0 60px; text-align: center;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, white, var(--bg-alt));
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(var(--blue) 0.5px, transparent 0.5px);
  background-size: 24px 24px; opacity: 0.06;
}
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(37,99,235,0.08); color: var(--blue);
  padding: 6px 16px; border-radius: 999px; font-size: 14px; font-weight: 600;
  margin-bottom: 32px;
}
#hero h1 {
  font-size: clamp(32px, 5vw, 56px); font-weight: 800;
  color: var(--navy); letter-spacing: -1px; line-height: 1.1; max-width: 700px; margin: 0 auto 20px;
}
#hero h1 em { color: var(--blue); font-style: italic; }
.subtitle { font-size: 18px; color: var(--text-light); line-height: 1.7; max-width: 560px; margin: 0 auto 40px; }
.subtitle span { font-weight: 500; color: var(--text-muted); }

/* ===== SCAN CARD ===== */
.scan-card {
  max-width: 600px; margin: 0 auto 48px;
  background: white; border-radius: 16px; padding: 8px;
  box-shadow: var(--shadow); border: 1px solid var(--border);
}
.scan-card form { padding: 24px; }
.input-group {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0 16px; margin-bottom: 12px;
  transition: border-color 0.2s;
}
.input-group:focus-within { border-color: var(--blue); }
.input-group .material-symbols-outlined { font-size: 20px; color: var(--text-muted); }
.input-group input {
  flex: 1; border: none; background: none; padding: 16px 0;
  font-size: 15px; font-family: inherit; color: var(--text); outline: none;
}
.input-group input::placeholder { color: var(--text-muted); }
.input-group select {
  flex: 1; border: none; background: none; padding: 16px 0;
  font-size: 15px; font-family: inherit; color: var(--text); outline: none;
  cursor: pointer; appearance: none;
}
.input-group select option { color: var(--text); }
.input-group select:invalid, .input-group select option[value=""] { color: var(--text-muted); }

.captcha-row {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 12px; padding: 12px 16px;
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius);
}
.captcha-label { font-size: 14px; font-weight: 500; color: var(--text); white-space: nowrap; }
.captcha-input {
  width: 100px; border: 1px solid var(--border); background: white;
  padding: 10px 12px; border-radius: var(--radius); font-size: 15px;
  font-family: inherit; color: var(--text); outline: none; text-align: center;
}
.captcha-input:focus { border-color: var(--blue); }

.checkbox-row {
  display: flex; align-items: flex-start; gap: 10px;
  margin: 16px 0 20px; text-align: left; cursor: pointer;
  font-size: 14px; font-weight: 500; color: var(--text-light);
}
.checkbox-row input { margin-top: 3px; accent-color: var(--blue); }

.reassurance { margin-top: 16px; font-size: 13px; color: var(--text-muted); font-style: italic; }

/* ===== TRUST BAR ===== */
.trust-bar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  border-top: 1px solid var(--border); padding-top: 40px; margin-bottom: 48px;
}
.trust-item {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.trust-item .material-symbols-outlined { font-size: 24px; color: var(--blue); }
.trust-item span:last-child { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--navy); }

/* ===== ALERT ===== */
.alert-card {
  display: flex; align-items: center; gap: 16px;
  max-width: 640px; margin: 0 auto;
  background: #FFF8E7; border: 1px solid #FDBA74; border-radius: 16px;
  padding: 16px 20px; text-align: left;
}
.alert-icon {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: #FED7AA; display: flex; align-items: center; justify-content: center;
}
.alert-icon .material-symbols-outlined { color: #C2410C; font-size: 24px; }
.alert-card p { font-size: 14px; color: #92400E; line-height: 1.6; }

/* ===== PROGRESS ===== */
#progress-section { padding: 60px 0; }
.progress-card {
  max-width: 600px; margin: 0 auto;
  background: white; border: 1px solid var(--border); border-radius: 16px;
  padding: 32px; box-shadow: var(--shadow);
}
.progress-card h2 { font-size: 20px; margin-bottom: 20px; color: var(--navy); }
.progress-bar { height: 6px; background: var(--bg-alt); border-radius: 3px; overflow: hidden; margin-bottom: 20px; }
.progress-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--blue), var(--blue-light)); border-radius: 3px; transition: width 0.5s ease; }
.scan-logs { font-family: 'SF Mono', 'Fira Code', monospace; font-size: 12px; line-height: 2; color: var(--text-light); max-height: 200px; overflow-y: auto; }
.scan-logs .ok { color: var(--green); }
.scan-logs .warn { color: var(--orange); }
.scan-logs .error { color: var(--red); }

/* ===== RESULTS ===== */
#results-section { padding: 60px 0; background: var(--bg-alt); }
.section-title { font-size: 28px; font-weight: 800; color: var(--navy); text-align: center; margin-bottom: 40px; }

.result-card {
  background: white; border: 1px solid var(--border); border-radius: 16px;
  padding: 32px; margin-bottom: 24px; box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.score-card { display: flex; align-items: center; gap: 40px; }
.score-gauge { position: relative; flex-shrink: 0; }
.score-text { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.score-value { font-size: 40px; font-weight: 900; color: var(--navy); }
.score-max { font-size: 14px; color: var(--text-muted); }
.score-info h3 { font-size: 22px; margin-bottom: 8px; }
.risk-label { font-weight: 800; }

.stat-row { display: flex; align-items: center; gap: 16px; margin-bottom: 12px; }
.stat-label { width: 140px; font-size: 13px; color: var(--text-light); font-weight: 500; }
.stat-track { flex: 1; height: 6px; background: var(--bg-alt); border-radius: 3px; overflow: hidden; }
.stat-fill { height: 100%; border-radius: 3px; transition: width 1s ease; }
.stat-val { width: 40px; text-align: right; font-size: 13px; font-weight: 700; }

/* ===== SCAN ALERT ===== */
.alert-scan {
  background: white; border: 1px solid var(--border);
  border-radius: 16px; padding: 24px; margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.alert-scan-header {
  display: flex; align-items: center; gap: 16px;
}
.alert-scan-header .material-symbols-outlined { font-size: 32px; color: var(--navy); }
.alert-scan-header h3 { font-size: 17px; font-weight: 700; color: var(--navy); }
.alert-scan-header p { font-size: 13px; color: var(--text-light); margin-top: 2px; }

/* ===== SEVERITY GRID ===== */
.severity-grid {
  display: flex; gap: 12px; margin-bottom: 20px; flex-wrap: wrap;
}
.sev-box {
  flex: 1; min-width: 80px; display: flex; flex-direction: column;
  align-items: center; padding: 16px 12px; border-radius: 12px;
}
.sev-box-critique { background: #FEF2F2; border: 2px solid #EF4444; }
.sev-box-elevee { background: #FFF7ED; border: 2px solid #F97316; }
.sev-box-moyenne { background: #FFFBEB; border: 1px solid #EAB308; }
.sev-box-info { background: #EFF6FF; border: 1px solid #3B82F6; }
.sev-box-num { font-size: 32px; font-weight: 900; }
.sev-box-critique .sev-box-num { color: #EF4444; }
.sev-box-elevee .sev-box-num { color: #F97316; }
.sev-box-moyenne .sev-box-num { color: #D97706; }
.sev-box-info .sev-box-num { color: #3B82F6; }
.sev-box-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; margin-top: 2px;
}
.sev-box-critique .sev-box-label { color: #DC2626; }
.sev-box-elevee .sev-box-label { color: #EA580C; }
.sev-box-moyenne .sev-box-label { color: #CA8A04; }
.sev-box-info .sev-box-label { color: #2563EB; }

/* ===== LOCKED CRITICAL BLOCK ===== */
.locked-critical-block {
  background: linear-gradient(135deg, #1E1B2E, #2D1B3E);
  border-radius: 16px; padding: 28px; margin-bottom: 20px;
  border: 1px solid rgba(239,68,68,0.3);
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.lcb-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
}
.lcb-header .material-symbols-outlined { font-size: 24px; color: #EF4444; }
.lcb-header h3 { color: white; font-size: 17px; font-weight: 700; }
.lcb-desc { color: rgba(255,255,255,0.75); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.lcb-consequences { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.lcb-item {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.06); padding: 10px 14px; border-radius: 8px;
}
.lcb-item .material-symbols-outlined { font-size: 20px; color: #FBBF24; flex-shrink: 0; }
.lcb-item span:last-child { color: rgba(255,255,255,0.9); font-size: 13px; font-weight: 500; }
.lcb-cta {
  color: #FBBF24; font-size: 13px; font-weight: 600;
  padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.1);
}

/* ===== FREE SECTION ===== */
.free-section-header {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--text-light);
  text-transform: uppercase; letter-spacing: 0.5px;
  margin: 20px 0 12px; padding-bottom: 8px; border-bottom: 1px solid var(--border);
}
.free-section-header .material-symbols-outlined { font-size: 18px; }

/* ===== VULNERABILITIES ===== */
.vuln-list { margin-bottom: 24px; }
.vuln-item {
  background: white; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; margin-bottom: 12px; display: flex; gap: 16px; align-items: flex-start;
  transition: all 0.2s;
}
.vuln-item:hover { border-color: #CBD5E1; }
.vuln-free { background: #FAFAFA; }
.vuln-critical-highlight {
  border-color: var(--red); border-width: 2px;
  background: linear-gradient(135deg, #FEF2F2, white);
  box-shadow: 0 2px 12px rgba(239, 68, 68, 0.1);
}
.vuln-left { display: flex; flex-direction: column; align-items: center; gap: 6px; flex-shrink: 0; }
.vuln-sev-badge {
  font-size: 9px; font-weight: 800; letter-spacing: 0.5px; padding: 4px 10px;
  border-radius: 4px; color: white; text-align: center; min-width: 64px;
}
.sev-critique { background: var(--red); }
.sev-elevee { background: var(--orange); }
.sev-moyenne { background: var(--yellow); color: #92400E; }
.sev-info { background: #3B82F6; }
.vuln-content { flex: 1; }
.vuln-title { font-weight: 700; color: var(--text); margin-bottom: 6px; font-size: 15px; }
.vuln-desc { font-size: 14px; color: var(--text-light); line-height: 1.6; margin-bottom: 8px; }
.vuln-desc-mini { font-size: 13px; color: var(--text-muted); font-style: italic; }

/* Paid report - extra details */
.vuln-example {
  display: flex; align-items: flex-start; gap: 8px;
  background: #EFF6FF; border-left: 3px solid #3B82F6;
  padding: 10px 14px; border-radius: 0 8px 8px 0;
  margin-top: 8px; font-size: 13px; color: #1E40AF; line-height: 1.5;
}
.vuln-example .material-symbols-outlined { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.vuln-impact {
  font-size: 13px; color: #92400E; background: #FFFBEB; padding: 8px 12px;
  border-radius: 8px; margin-top: 8px; line-height: 1.5;
}
.vuln-legal {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; color: #7C2D12; background: #FEF2F2;
  border-left: 3px solid #EF4444; padding: 10px 14px;
  border-radius: 0 8px 8px 0; margin-top: 8px; line-height: 1.5;
}
.vuln-legal .material-symbols-outlined { font-size: 18px; flex-shrink: 0; margin-top: 1px; color: #EF4444; }
.vuln-reco {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; color: #166534; background: #F0FDF4;
  border-left: 3px solid #22C55E; padding: 10px 14px;
  border-radius: 0 8px 8px 0; margin-top: 8px; line-height: 1.5;
}
.vuln-reco .material-symbols-outlined { font-size: 18px; flex-shrink: 0; margin-top: 1px; color: #22C55E; }

/* ===== REPORT SECTIONS (paid) ===== */
.report-section-card {
  background: white; border: 1px solid var(--border); border-radius: 16px;
  padding: 28px; margin-top: 20px; box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.report-section-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--border);
}
.report-section-header .material-symbols-outlined { font-size: 28px; color: var(--navy); }
.report-section-header h3 { font-size: 18px; font-weight: 700; color: var(--navy); }

/* Action plan table */
.action-plan-table-wrap { overflow-x: auto; }
.action-plan-table {
  width: 100%; border-collapse: collapse; font-size: 13px;
}
.action-plan-table th {
  text-align: left; padding: 10px 12px; font-weight: 700; color: var(--navy);
  background: var(--bg-alt); border-bottom: 2px solid var(--border);
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px;
}
.action-plan-table td {
  padding: 12px; border-bottom: 1px solid var(--border); vertical-align: top;
}
.action-plan-table tr:last-child td { border-bottom: none; }
.ap-priority {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--navy); color: white; font-weight: 800; font-size: 12px;
}
.ap-action { font-weight: 600; color: var(--text); line-height: 1.5; }
.ap-why { font-size: 12px; color: var(--text-muted); margin-top: 4px; font-style: italic; }
.ap-badge {
  display: inline-block; padding: 3px 10px; border-radius: 4px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.3px;
}
.ap-impact-critique { background: #FEF2F2; color: #DC2626; }
.ap-impact-élevé, .ap-impact-élevée { background: #FFF7ED; color: #EA580C; }
.ap-impact-moyen { background: #FFFBEB; color: #CA8A04; }
.ap-diff-facile { background: #F0FDF4; color: #166534; }
.ap-diff-moyen { background: #FFFBEB; color: #CA8A04; }
.ap-diff-avancé { background: #FEF2F2; color: #DC2626; }
.ap-cost { font-weight: 600; color: var(--text); white-space: nowrap; }
.ap-who { font-size: 12px; color: var(--text-light); }

/* Global recommendations */
.global-reco-list { list-style: none; }
.global-reco-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  font-size: 14px; color: var(--text); line-height: 1.6;
}
.global-reco-list li:last-child { border-bottom: none; }
.global-reco-list .material-symbols-outlined { font-size: 20px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }

/* Next steps */
.next-steps-card { background: linear-gradient(135deg, #F0FDF4, #FFFFFF); border-color: #BBF7D0; }
.next-steps-text { font-size: 15px; color: var(--text); line-height: 1.8; }

/* ===== PERSUASION BLOCK ===== */
.persuasion-block {
  display: flex; gap: 20px; align-items: flex-start;
  background: linear-gradient(135deg, #1A3C5E, #2C5282);
  border-radius: 16px; padding: 28px; margin-top: 20px;
  box-shadow: 0 4px 20px rgba(26,60,94,0.2);
}
.persuasion-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: rgba(255,255,255,0.1); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.persuasion-icon .material-symbols-outlined { font-size: 28px; color: #FBBF24; }
.persuasion-content h3 { color: white; font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.persuasion-content > p { color: rgba(255,255,255,0.75); font-size: 14px; margin-bottom: 16px; }
.persuasion-content ul { list-style: none; }
.persuasion-content li {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.9); font-size: 13px; padding: 5px 0;
}
.persuasion-content li .material-symbols-outlined { font-size: 16px; color: #22C55E; }

/* Loading spinner */
.loading-spinner {
  width: 48px; height: 48px; border: 4px solid var(--border);
  border-top-color: var(--blue); border-radius: 50%;
  animation: spin 0.8s linear infinite; margin: 0 auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== PAYWALL ===== */
.paywall-card {
  background: white; border: 3px solid var(--navy); border-radius: 16px;
  padding: 48px; text-align: center; box-shadow: var(--shadow);
}
.paywall-card h2 { font-size: 24px; color: var(--navy); margin-bottom: 12px; }
.paywall-card > p { color: var(--text-light); margin-bottom: 24px; line-height: 1.6; }
.included { list-style: none; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 32px; }
.included li {
  font-size: 13px; font-weight: 500; color: var(--text-light);
  background: var(--bg-alt); padding: 8px 16px; border-radius: var(--radius); border: 1px solid var(--border);
}
.price { margin-bottom: 24px; }
.price-amount { font-size: 48px; font-weight: 900; color: var(--navy); }
.price-info { font-size: 14px; color: var(--text-muted); margin-left: 8px; }
.btn-pay { max-width: 400px; margin: 0 auto; display: block; }

/* ===== HOW IT WORKS ===== */
#how { padding: 80px 0; background: white; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.step { text-align: center; }
.step-icon {
  width: 72px; height: 72px; border-radius: 16px;
  background: var(--bg-alt); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; transition: all 0.3s;
}
.step-icon .material-symbols-outlined { font-size: 32px; color: var(--navy); }
.step:hover .step-icon { background: var(--navy); }
.step:hover .step-icon .material-symbols-outlined { color: white; }
.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text-light); }

/* ===== PRICING ===== */
#pricing { padding: 80px 0; background: var(--bg-alt); }
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; max-width: 800px; margin: 0 auto; align-items: stretch; }
.pricing-card {
  background: white; border: 2px solid var(--border); border-radius: 16px;
  padding: 40px; display: flex; flex-direction: column;
}
.pricing-card.featured {
  border-color: var(--navy); box-shadow: var(--shadow); position: relative; transform: scale(1.03);
}
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: white; padding: 4px 16px;
  border-radius: 999px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
}
.pricing-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.pricing-price { font-size: 40px; font-weight: 900; color: var(--navy); }
.pricing-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.pricing-card ul { list-style: none; flex: 1; margin-bottom: 24px; }
.pricing-card li { padding: 8px 0; font-size: 14px; }
.included-item { color: var(--text); }
.locked-item { color: var(--text-muted); }

/* ===== CTA FINAL ===== */
#cta-final { padding: 80px 0; background: white; }
.cta-icon { font-size: 48px; color: var(--green); display: block; margin: 0 auto 24px; }
#cta-final h2 { font-size: 28px; color: var(--navy); margin-bottom: 12px; }
#cta-final p { color: var(--text-light); max-width: 520px; margin: 0 auto 32px; line-height: 1.6; }
#cta-final .btn-primary { max-width: 400px; margin: 0 auto; display: block; }

/* ===== FOOTER ===== */
footer { border-top: 1px solid var(--border); padding: 40px 24px 20px; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; max-width: 1024px; margin: 0 auto; }
.footer-links { display: flex; gap: 24px; font-size: 14px; }
.disclaimer {
  max-width: 640px; margin: 24px auto 0; text-align: center;
  font-size: 11px; color: var(--text-muted); line-height: 1.5;
}

/* ===== LEGAL PAGES ===== */
.legal-page { padding: 80px 0 60px; }
.legal-page h1 {
  font-size: 32px; font-weight: 800; color: var(--navy); margin-bottom: 8px;
}
.legal-updated { font-size: 14px; color: var(--text-muted); margin-bottom: 40px; }
.legal-page h2 {
  font-size: 20px; font-weight: 700; color: var(--navy); margin-top: 36px; margin-bottom: 12px;
  padding-bottom: 8px; border-bottom: 2px solid var(--border);
}
.legal-page h3 { font-size: 16px; font-weight: 600; color: var(--text); margin-top: 20px; margin-bottom: 8px; }
.legal-page p { line-height: 1.7; margin-bottom: 12px; color: var(--text); }
.legal-page ul { margin: 0 0 16px 20px; line-height: 1.8; }
.legal-page ul li { margin-bottom: 4px; }
.legal-page a { color: var(--blue); text-decoration: underline; }
.legal-table {
  width: 100%; border-collapse: collapse; margin: 16px 0 24px;
  font-size: 14px;
}
.legal-table th, .legal-table td {
  padding: 10px 14px; text-align: left; border: 1px solid var(--border);
}
.legal-table th { background: var(--bg-alt); font-weight: 600; color: var(--navy); }
.legal-table td { color: var(--text); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav a:not(.btn-nav) { display: none; }
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .score-card { flex-direction: column; text-align: center; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .action-plan-table { font-size: 12px; }
  .action-plan-table th, .action-plan-table td { padding: 8px 6px; }
  .report-section-card { padding: 20px 16px; }
}
