/* ============================================
   ClearCUI Design System
   ============================================ */

/* --- Custom Properties --- */
:root {
  --navy: #0d2137;
  --navy-light: #1a3a5c;
  --navy-dark: #091a2a;
  --teal: #00b4d8;
  --teal-hover: #0096b7;
  --teal-light: rgba(0, 180, 216, 0.08);
  --teal-glow: rgba(0, 180, 216, 0.15);
  --bg: #f8fafb;
  --card: #ffffff;
  --text: #0d2137;
  --text-secondary: #6b7f96;
  --text-muted: #94a3b8;
  --border: #e2e8f0;
  --success: #10b981;
  --success-light: rgba(16, 185, 129, 0.08);
  --warning: #f59e0b;
  --warning-light: rgba(245, 158, 11, 0.08);
  --danger: #ef4444;
  --danger-light: rgba(239, 68, 68, 0.08);
  --shadow-sm: 0 1px 2px rgba(13, 33, 55, 0.05);
  --shadow: 0 1px 3px rgba(13, 33, 55, 0.08), 0 1px 2px rgba(13, 33, 55, 0.06);
  --shadow-md: 0 4px 6px rgba(13, 33, 55, 0.07), 0 2px 4px rgba(13, 33, 55, 0.05);
  --shadow-lg: 0 10px 25px rgba(13, 33, 55, 0.1), 0 4px 10px rgba(13, 33, 55, 0.06);
  --shadow-teal: 0 4px 14px rgba(0, 180, 216, 0.25);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --max-width: 1080px;
  --tool-width: 720px;
  --transition: 0.2s ease;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--teal-hover); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal); }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* --- Typography --- */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: var(--navy); }
h1 { font-size: 2.75rem; letter-spacing: -0.03em; }
h2 { font-size: 1.875rem; letter-spacing: -0.02em; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }
p { color: var(--text-secondary); }
.mono { font-family: var(--font-mono); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.tool-container {
  max-width: var(--tool-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Navigation --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-link .nav-icon { height: 36px; width: auto; flex-shrink: 0; }
.nav-wordmark {
  font-size: 1.35rem;
  letter-spacing: -0.5px;
  color: var(--navy);
  line-height: 1;
}
.nav-wordmark span { font-weight: 300; }
.nav-wordmark strong { font-weight: 700; }
.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  background: var(--teal-light);
}
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  color: var(--navy);
}
.nav-hamburger svg { width: 24px; height: 24px; }

@media (max-width: 768px) {
  .nav-hamburger { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--card);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 8px 16px;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; }
}

/* --- Hero Section --- */
.hero {
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--teal-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }
.hero h1 {
  margin-bottom: 20px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.hero .hero-accent {
  color: var(--teal);
}
.hero p {
  font-size: 1.2rem;
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero { padding: 64px 0 48px; }
  .hero p { font-size: 1.05rem; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  transition: all 0.25s ease;
  text-decoration: none;
  line-height: 1.4;
}
.btn-primary {
  background: var(--teal);
  color: #fff;
}
.btn-primary:hover {
  background: var(--teal-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-teal);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--teal);
  color: var(--teal-hover);
  background: var(--teal-light);
  transform: translateY(-1px);
}
.btn-large {
  padding: 16px 36px;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}
.btn-block { width: 100%; }
.btn-success { background: var(--success); color: #fff; }
.btn-success:hover { background: #0ea572; color: #fff; transform: translateY(-2px); box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3); }

/* --- Cards --- */
.card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.card h3 { margin-bottom: 8px; }
.card p { font-size: 0.95rem; }

/* Tool card links get extra interactivity */
a.card {
  display: block;
}
a.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}
a.card:hover .card-icon {
  transform: scale(1.1);
}
a.card:hover .btn-primary {
  background: var(--teal-hover);
  box-shadow: var(--shadow-teal);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .card-grid { grid-template-columns: 1fr; }
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}
.card-icon.teal { background: var(--teal-light); color: var(--teal); }
.card-icon.green { background: var(--success-light); color: var(--success); }
.card-icon.amber { background: var(--warning-light); color: var(--warning); }

/* Number labels on cards */
.card-number {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

/* --- Progress Bar --- */
.progress-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 32px;
}
.progress-step {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  transition: background 0.4s ease;
}
.progress-step.completed { background: var(--teal); }
.progress-step.active { background: var(--navy); }
.progress-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

/* --- Control Cards (SPRS Calculator) --- */
.control-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  transition: all var(--transition);
  cursor: pointer;
}
.control-card:hover { border-color: var(--teal); }
.control-card.implemented { border-color: var(--success); background: var(--success-light); }
.control-card.planned { border-color: var(--warning); background: var(--warning-light); }
.control-card.not-implemented { border-color: var(--danger); background: var(--danger-light); }
.control-id {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}
.control-body { flex: 1; min-width: 0; }
.control-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.control-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.control-status {
  display: flex;
  gap: 6px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.status-btn {
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 2px solid var(--border);
  border-radius: 20px;
  background: var(--card);
  color: var(--text-secondary);
  transition: all var(--transition);
  cursor: pointer;
}
.status-btn:hover { border-color: var(--text-muted); }
.status-btn.active-implemented { border-color: var(--success); background: var(--success-light); color: var(--success); }
.status-btn.active-planned { border-color: var(--warning); background: var(--warning-light); color: var(--warning); }
.status-btn.active-not-implemented { border-color: var(--danger); background: var(--danger-light); color: var(--danger); }

.point-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  border-radius: 14px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.point-badge.high { background: var(--danger-light); color: var(--danger); }
.point-badge.medium { background: var(--warning-light); color: var(--warning); }
.point-badge.low { background: rgba(107, 127, 150, 0.1); color: var(--text-secondary); }

/* --- Score Gauge --- */
.score-gauge {
  text-align: center;
  margin: 32px 0;
}
.score-gauge svg { margin: 0 auto; }
.score-value {
  font-family: var(--font-mono);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}
.score-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* --- Result Sections --- */
.result-section {
  padding: 20px 24px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  border-left: 4px solid;
}
.result-section.success { background: var(--success-light); border-color: var(--success); }
.result-section.warning { background: var(--warning-light); border-color: var(--warning); }
.result-section.danger { background: var(--danger-light); border-color: var(--danger); }
.result-section.info { background: var(--teal-light); border-color: var(--teal); }
.result-section h4 { margin-bottom: 4px; }
.result-section p { font-size: 0.9rem; }

/* --- Collapsible Sections --- */
.collapsible {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
}
.collapsible-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--card);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  border: none;
  width: 100%;
  text-align: left;
  transition: background var(--transition);
}
.collapsible-header:hover { background: var(--bg); }
.collapsible-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  color: var(--text-muted);
  flex-shrink: 0;
}
.collapsible.open .collapsible-arrow { transform: rotate(180deg); }
.collapsible-body {
  display: none;
  padding: 0 20px 16px;
  background: var(--card);
}
.collapsible.open .collapsible-body { display: block; }

/* --- Email Capture Modal --- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13, 33, 55, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.2s ease;
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--card);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 440px;
  width: 100%;
  position: relative;
  animation: slideUp 0.3s ease;
  box-shadow: var(--shadow-lg);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  padding: 4px;
  font-size: 1.25rem;
  line-height: 1;
}
.modal-close:hover { color: var(--navy); }
.modal h3 { margin-bottom: 8px; }
.modal p { margin-bottom: 20px; font-size: 0.9rem; }
.modal input[type="email"] {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  margin-bottom: 12px;
  transition: border-color var(--transition);
}
.modal input[type="email"]:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-glow);
}

/* --- Form Elements --- */
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.form-hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.radio-group,
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.radio-option,
.checkbox-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}
.radio-option:hover,
.checkbox-option:hover { border-color: var(--teal); }
.radio-option.selected,
.checkbox-option.selected {
  border-color: var(--teal);
  background: var(--teal-light);
}
.radio-option input,
.checkbox-option input { accent-color: var(--teal); }
.option-label {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--navy);
}
.option-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* --- Quiz Answer Buttons --- */
.quiz-answer {
  display: block;
  width: 100%;
  padding: 16px 24px;
  text-align: left;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
  transition: all 0.25s ease;
}
.quiz-answer:hover {
  border-color: var(--teal);
  background: var(--teal-light);
  transform: translateX(6px);
  box-shadow: var(--shadow);
}

/* --- Data Tables --- */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.data-table th {
  text-align: left;
  padding: 10px 16px;
  background: var(--bg);
  font-weight: 600;
  color: var(--navy);
  border-bottom: 2px solid var(--border);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table .amount {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--navy);
  text-align: right;
}
.data-table .total-row {
  font-weight: 700;
  background: var(--bg);
}
.data-table .total-row td { color: var(--navy); }

/* --- Trust Strip --- */
.trust-strip {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 32px 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.trust-item svg { width: 20px; height: 20px; flex-shrink: 0; }
.trust-item .trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon.teal { background: var(--teal-light); color: var(--teal); }
.trust-icon.green { background: var(--success-light); color: var(--success); }
.trust-icon.navy { background: rgba(13, 33, 55, 0.06); color: var(--navy); }

/* --- Section Spacing --- */
.section { padding: 80px 0; }
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p { max-width: 520px; margin: 0 auto; font-size: 1.05rem; }

/* --- Divider --- */
.section-divider {
  width: 48px;
  height: 3px;
  background: var(--teal);
  border-radius: 2px;
  margin: 0 auto 16px;
}

/* --- Footer --- */
.footer {
  padding: 48px 0;
  background: var(--navy-dark);
  text-align: center;
}
.footer p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}
.footer a { color: rgba(255, 255, 255, 0.6); }
.footer a:hover { color: var(--teal); }
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}
.footer-logo img { height: 24px; width: auto; }
.footer-logo span {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}
.footer-logo strong {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}
.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 8px;
  letter-spacing: 0.5px;
}

/* --- Bar Charts --- */
.bar-chart { margin: 16px 0; }
.bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.bar-label {
  width: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  text-align: right;
  flex-shrink: 0;
}
.bar-track {
  flex: 1;
  height: 24px;
  background: var(--bg);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
}
.bar-fill-implemented {
  height: 100%;
  background: var(--success);
  transition: width 0.6s ease;
}
.bar-fill-planned {
  height: 100%;
  background: var(--warning);
  transition: width 0.6s ease;
}
.bar-fill-gap {
  height: 100%;
  background: var(--danger);
  transition: width 0.6s ease;
}
.bar-count {
  width: 40px;
  font-size: 0.8rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  flex-shrink: 0;
}

/* --- Summary Stats --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.stat-card {
  text-align: center;
  padding: 20px 16px;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.stat-value {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-value.green { color: var(--success); }
.stat-value.amber { color: var(--warning); }
.stat-value.red { color: var(--danger); }
.stat-value.teal { color: var(--teal); }
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
}

/* --- Comparison Box (Cost Estimator) --- */
.comparison-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: #fff;
  text-align: center;
  margin: 24px 0;
}
.comparison-box h3 { color: #fff; margin-bottom: 16px; }
.comparison-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.comparison-item { text-align: center; }
.comparison-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.7;
  margin-bottom: 4px;
}
.comparison-value {
  font-family: var(--font-mono);
  font-size: 1.75rem;
  font-weight: 700;
}
.comparison-value.savings { color: var(--success); }
.comparison-value.old { text-decoration: line-through; opacity: 0.5; }

/* --- Animations --- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
.fade-in { animation: fadeIn 0.5s ease; }
.slide-up { animation: slideUp 0.5s ease; }
.slide-in { animation: slideIn 0.4s ease; }

/* --- Level Badges (Quiz) --- */
.level-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 24px;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.level-badge.level-1 { background: var(--success-light); color: var(--success); }
.level-badge.level-2 { background: var(--warning-light); color: var(--warning); }
.level-badge.level-3 { background: var(--danger-light); color: var(--danger); }

/* --- Tool Page Header --- */
.tool-header {
  padding: 48px 0 32px;
  text-align: center;
}
.tool-header h1 { font-size: 2rem; margin-bottom: 8px; }
.tool-header p { max-width: 480px; margin: 0 auto; }

/* --- Wizard Navigation --- */
.wizard-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* --- About section --- */
.about-section {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-content {
  max-width: 640px;
  margin: 0 auto;
}
.about-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-content p:last-child { margin-bottom: 0; }

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { color: #fff; margin-bottom: 8px; }
.cta-banner p { color: rgba(255, 255, 255, 0.7); margin-bottom: 24px; font-size: 1.05rem; }
.cta-banner .btn-primary {
  background: #fff;
  color: var(--navy);
}
.cta-banner .btn-primary:hover {
  background: var(--teal-light);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

/* --- Print Styles --- */
@media print {
  .nav, .footer, .wizard-nav, .modal-overlay, .btn, .email-capture,
  .no-print { display: none !important; }
  body { background: #fff; }
  .card { box-shadow: none; border: 1px solid #ddd; page-break-inside: avoid; }
  .score-gauge { page-break-after: avoid; }
  .collapsible-body { display: block !important; }
  .hero::before { display: none; }
}
