/* ============================================================
   Vindscore — Premium Design System
   ============================================================ */

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

:root {
  /* Brand palette */
  --navy: #0f172a;
  --navy-light: #1e293b;
  --navy-mid: #334155;
  --accent: #06b6d4;
  --accent-light: #22d3ee;
  --accent-dark: #0891b2;
  --accent-glow: rgba(6, 182, 212, 0.15);
  --accent-subtle: rgba(6, 182, 212, 0.08);

  /* Status colors */
  --green: #10b981;
  --green-bg: #ecfdf5;
  --yellow: #f59e0b;
  --yellow-bg: #fffbeb;
  --orange: #f97316;
  --red: #ef4444;
  --red-bg: #fef2f2;

  /* Neutrals */
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
  --shadow-card: 0 0 0 1px rgba(0,0,0,0.03), 0 2px 4px rgba(0,0,0,0.04), 0 12px 24px rgba(0,0,0,0.06);
  --shadow-accent: 0 4px 14px rgba(6, 182, 212, 0.35);

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: var(--font);
  color: var(--gray-900);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ============================================================
   Layout
   ============================================================ */
.container { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1040px; margin: 0 auto; padding: 0 24px; }

/* ============================================================
   Navigation
   ============================================================ */
nav {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
nav .container-wide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}
.logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s var(--ease);
}
.logo:hover { opacity: 0.8; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
nav a {
  color: var(--gray-500);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin-left: 0;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
nav a:hover {
  color: var(--navy);
  background: var(--gray-50);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  text-align: center;
  padding: 80px 0 56px;
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, var(--accent-subtle) 0%, transparent 70%),
    linear-gradient(180deg, var(--gray-50) 0%, #fff 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 1px 1px, var(--gray-200) 1px, transparent 0);
  background-size: 40px 40px;
  opacity: 0.4;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-glow);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  border: 1px solid rgba(6, 182, 212, 0.2);
}
.hero-badge svg {
  width: 14px;
  height: 14px;
}
.hero h1 {
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -1px;
  font-weight: 800;
  color: var(--navy);
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 18px;
  color: var(--gray-500);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ============================================================
   Scan Form
   ============================================================ */
.scan-form {
  display: flex;
  gap: 12px;
  max-width: 580px;
  margin: 0 auto;
  flex-wrap: wrap;
  background: #fff;
  padding: 8px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-200);
}
.scan-form input {
  flex: 1;
  min-width: 160px;
  padding: 14px 18px;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-family: var(--font);
  outline: none;
  background: var(--gray-50);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
  color: var(--gray-900);
}
.scan-form input::placeholder { color: var(--gray-400); }
.scan-form input:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.scan-form button {
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: transform 0.15s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
  white-space: nowrap;
  box-shadow: var(--shadow-accent);
  position: relative;
  overflow: hidden;
}
.scan-form button::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.1) 100%);
  opacity: 0;
  transition: opacity 0.2s var(--ease);
}
.scan-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
}
.scan-form button:hover::after { opacity: 1; }
.scan-form button:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 8px rgba(6, 182, 212, 0.3);
}
.scan-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ============================================================
   Trust Bar (below hero)
   ============================================================ */
.trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-500);
  font-weight: 500;
}
.trust-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.trust-icon svg {
  width: 18px;
  height: 18px;
}
.trust-num {
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
}

/* ============================================================
   Result Card
   ============================================================ */
.result-card {
  max-width: 580px;
  margin: 32px auto 0;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  display: none;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}
.result-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
}
.result-card.visible { display: block; animation: slideUp 0.4s var(--ease); }

@keyframes slideUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.result-card.example-card {
  display: block;
  background: #fff;
  border: 1px solid var(--gray-200);
  opacity: 1;
  box-shadow: var(--shadow-card);
}
.result-card.example-card::before { display: block; }

.score-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  position: relative;
}
.score-circle::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.15);
}
.score-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.result-name {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--navy);
}

/* Section dividers within result card */
.check-section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-400);
  border-top: 1px solid var(--gray-200);
  margin: 16px 0 8px;
  padding-top: 16px;
}

.check-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 12px;
  margin: 0 -12px;
  border-bottom: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  transition: background 0.15s var(--ease);
}
.check-item:hover { background: var(--gray-50); }
.check-item:last-child { border-bottom: none; }
.check-icon { font-size: 16px; margin-right: 10px; font-weight: 700; }
.check-score {
  font-weight: 600;
  color: var(--gray-500);
  font-size: 13px;
  background: var(--gray-50);
  padding: 2px 10px;
  border-radius: var(--radius-full);
}

/* ============================================================
   CTA Card
   ============================================================ */
.cta-card {
  max-width: 580px;
  margin: 24px auto 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border: none;
  border-radius: var(--radius-xl);
  padding: 32px;
  text-align: center;
  display: none;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}
.cta-card.visible { display: block; animation: slideUp 0.4s var(--ease) 0.1s both; }
.cta-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #fff;
  font-weight: 700;
  position: relative;
}
.cta-card p {
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 20px;
  position: relative;
}

.email-form {
  display: flex;
  gap: 8px;
  max-width: 420px;
  margin: 0 auto;
  position: relative;
}
.email-form input {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-family: var(--font);
  outline: none;
  background: rgba(255,255,255,0.08);
  color: #fff;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.email-form input::placeholder { color: var(--gray-400); }
.email-form input:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.12);
}
.email-form button {
  padding: 14px 24px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.15s var(--ease);
  white-space: nowrap;
}
.email-form button:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}
.email-form button:active { transform: translateY(0) scale(0.98); }

.consent-check {
  position: relative;
}
.consent-check span { color: var(--gray-400) !important; }
.consent-check a { color: var(--gray-300) !important; text-decoration: underline; }

.consent-text {
  font-size: 11px;
  color: var(--gray-400);
  margin-top: 10px;
  position: relative;
}
.consent-text a { color: var(--gray-300); }

.success-msg {
  color: var(--accent-light);
  font-weight: 600;
  display: none;
  position: relative;
}
.success-msg.visible { display: block; }

/* ============================================================
   Sections
   ============================================================ */
.section {
  padding: 80px 0;
}
.section-alt {
  padding: 80px 0;
  background: var(--gray-50);
  position: relative;
}
.section h2, .section-alt h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  color: var(--navy);
}
.section-subtitle {
  text-align: center;
  color: var(--gray-500);
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* ============================================================
   How it Works — Steps
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
  position: relative;
}
.step-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.step-num {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--accent-light);
  font-weight: 700;
  font-size: 20px;
  line-height: 48px;
  margin: 0 auto 16px;
}
.steps h3 {
  font-size: 17px;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--navy);
}
.steps p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ============================================================
   Trust / Why Section
   ============================================================ */
.trust-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.trust-stat {
  text-align: center;
  padding: 24px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}
.trust-stat-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
  line-height: 1.2;
}
.trust-stat-label {
  font-size: 14px;
  color: var(--gray-500);
  margin-top: 4px;
}
.trust-text {
  text-align: center;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
}
.trust-text + .trust-text { margin-top: 16px; }

/* ============================================================
   Example Card Section
   ============================================================ */
.example-section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
  color: var(--navy);
}
.example-section-sub {
  text-align: center;
  color: var(--gray-500);
  margin-bottom: 32px;
  font-size: 16px;
}
.example-link {
  text-align: center;
  margin-top: 20px;
}
.example-link a {
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.example-link a:hover { color: var(--accent); }

/* ============================================================
   Footer
   ============================================================ */
footer {
  background: var(--navy);
  padding: 0;
  color: var(--gray-400);
  font-size: 13px;
  text-align: left;
}
.footer-cta {
  padding: 48px 0;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-cta h3 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.footer-cta p {
  color: var(--gray-400);
  font-size: 15px;
  margin-bottom: 20px;
}
.footer-cta-btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s var(--ease), transform 0.15s var(--ease), box-shadow 0.2s var(--ease);
  box-shadow: var(--shadow-accent);
}
.footer-cta-btn:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
}
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 0;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-brand {
  max-width: 280px;
}
.footer-brand .logo-text {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.6;
}
.footer-links {
  display: flex;
  gap: 48px;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-300);
  margin-bottom: 12px;
}
.footer-col a {
  display: block;
  color: var(--gray-400);
  text-decoration: none;
  font-size: 13px;
  padding: 4px 0;
  transition: color 0.15s var(--ease);
  margin: 0;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
  color: var(--gray-500);
}
footer a { color: var(--gray-400); text-decoration: none; margin: 0; }
footer .legal { margin-top: 0; }

/* ============================================================
   Pricing (diensten.html)
   ============================================================ */
.pricing-hero {
  text-align: center;
  padding: 64px 0 32px;
}
.pricing-hero h1 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--navy);
  margin-bottom: 12px;
}
.pricing-hero p {
  font-size: 18px;
  color: var(--gray-500);
  max-width: 500px;
  margin: 0 auto;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 40px 0;
}
.plan {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.plan:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.plan.featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--accent);
  transform: scale(1.02);
}
.plan.featured:hover {
  transform: scale(1.02) translateY(-4px);
  box-shadow: var(--shadow-xl), 0 0 0 1px var(--accent);
}
.plan.featured::before {
  content: 'Populairst';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 20px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-accent);
}
.plan-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}
.plan-price {
  font-size: 48px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1px;
  line-height: 1.1;
}
.plan-price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-400);
  letter-spacing: 0;
}
.plan-desc {
  color: var(--gray-500);
  font-size: 14px;
  margin: 8px 0 28px;
}
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  text-align: left;
}
.plan-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 14px;
  color: var(--gray-700);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.plan-features li::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: var(--green-bg);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2310b981'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 0;
  margin-top: 1px;
}
.plan-btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s var(--ease);
  width: 100%;
}
.plan-btn-primary {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
  color: #fff;
  box-shadow: var(--shadow-accent);
}
.plan-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
}
.plan-btn-secondary {
  background: var(--gray-100);
  color: var(--navy);
  border: 1px solid var(--gray-200);
}
.plan-btn-secondary:hover {
  background: var(--gray-200);
}
.plan-free {
  border-style: solid;
  border-color: var(--gray-200);
}

/* FAQ */
.faq {
  max-width: 640px;
  margin: 0 auto;
}
.faq dt {
  font-weight: 700;
  margin-top: 28px;
  font-size: 16px;
  color: var(--navy);
}
.faq dd {
  color: var(--gray-500);
  margin: 8px 0 0 0;
  font-size: 15px;
  line-height: 1.7;
}

/* ============================================================
   Report Page
   ============================================================ */
.report-header {
  text-align: center;
  padding: 48px 0 24px;
}
.report-section {
  margin-bottom: 32px;
}
.report-section h3 {
  font-size: 18px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gray-200);
  font-weight: 700;
  color: var(--navy);
}
.issue-critical { color: var(--red); }
.issue-partial { color: var(--orange); }
.issue-good { color: var(--green); }

.tip-box {
  background: var(--green-bg);
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-md);
  padding: 20px;
  margin-top: 12px;
}

/* ============================================================
   Legal Pages
   ============================================================ */
.legal-page {
  padding: 48px 0 80px;
}
.legal-page h1 {
  font-size: 32px;
  margin-bottom: 8px;
  font-weight: 800;
  color: var(--navy);
}
.legal-page .updated {
  color: var(--gray-400);
  font-size: 13px;
  margin-bottom: 32px;
}
.legal-page h2 {
  font-size: 20px;
  margin: 32px 0 12px;
  font-weight: 700;
  color: var(--navy);
}
.legal-page p, .legal-page li {
  color: var(--gray-600);
  font-size: 15px;
  margin-bottom: 12px;
  line-height: 1.7;
}
.legal-page ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

/* ============================================================
   Unsubscribe
   ============================================================ */
.unsub-page {
  text-align: center;
  padding: 120px 0;
}
.unsub-page h1 { font-size: 24px; margin-bottom: 12px; color: var(--navy); }
.unsub-page p { color: var(--gray-500); }

/* ============================================================
   Error / Loading
   ============================================================ */
.error-msg {
  color: var(--red);
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  display: none;
  font-weight: 500;
}
.error-msg.visible { display: block; }
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 768px) {
  .hero { padding: 56px 0 40px; }
  .hero h1 { font-size: 32px; letter-spacing: -0.5px; }
  .hero p { font-size: 16px; }
  .scan-form {
    flex-direction: column;
    padding: 6px;
  }
  .scan-form input { min-width: 100%; }
  .scan-form button { width: 100%; }
  .email-form { flex-direction: column; }
  .email-form button { width: 100%; }
  .steps { grid-template-columns: 1fr; gap: 16px; }
  .trust-bar { gap: 20px; }
  .trust-bar .trust-item { font-size: 13px; }
  .section, .section-alt { padding: 56px 0; }
  .section h2, .section-alt h2 { font-size: 26px; }
  .result-card { padding: 28px 20px; }
  .footer-main { flex-direction: column; gap: 24px; }
  .footer-links { gap: 32px; }
  .pricing { grid-template-columns: 1fr; }
  .plan.featured { transform: none; }
  .plan.featured:hover { transform: translateY(-4px); }
  .pricing-hero h1 { font-size: 28px; }
}

@media (max-width: 480px) {
  nav .container-wide { padding: 0 16px; }
  .nav-links a { font-size: 12px; padding: 6px 6px; }
  .container, .container-wide { padding: 0 16px; }
  .hero h1 { font-size: 28px; }
  .trust-bar { flex-direction: column; gap: 12px; align-items: flex-start; padding-left: 16px; }
  .footer-links { flex-direction: column; gap: 24px; }
}
