/* === High Trust Advisor — Design System === */
/* Color palette: gov.uk trust meets modern SaaS */

:root {
  --navy: #0f2b46;
  --navy-light: #1a3a5c;
  --teal: #0891b2;
  --teal-light: #22d3ee;
  --teal-bg: #ecfeff;
  --green: #059669;
  --green-bg: #ecfdf5;
  --amber: #d97706;
  --amber-bg: #fffbeb;
  --red: #dc2626;
  --red-bg: #fef2f2;
  --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;
  --white: #ffffff;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
  --max-width: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--gray-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--teal); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--navy); }

/* === Nav === */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--navy);
  text-decoration: none;
}

.nav-logo .shield { font-size: 1.5rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: var(--radius);
  color: var(--gray-600);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.15s;
}

.nav-links a:hover { color: var(--navy); background: var(--gray-100); }

.nav-links .btn-nav {
  background: var(--teal);
  color: var(--white);
  padding: 8px 20px;
  border-radius: var(--radius);
  font-weight: 600;
}

.nav-links .btn-nav:hover { background: var(--navy); color: var(--white); }

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  color: var(--gray-700);
}

@media (max-width: 768px) {
  .hamburger { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; text-align: center; padding: 12px; }
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  line-height: 1.4;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 1px 2px rgba(8,145,178,0.3);
}

.btn-primary:hover {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(15,43,70,0.3);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.btn-ghost {
  background: transparent;
  color: var(--gray-600);
  padding: 8px 16px;
}

.btn-ghost:hover { color: var(--navy); background: var(--gray-100); }

.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }

.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* === Hero === */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #1e4d6e 100%);
  color: var(--white);
  padding: 80px 24px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(8,145,178,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero .subtitle {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero .btn-primary {
  background: var(--teal);
  padding: 16px 36px;
  font-size: 1.1rem;
  box-shadow: 0 4px 14px rgba(8,145,178,0.4);
}

.hero .btn-primary:hover {
  background: var(--teal-light);
  color: var(--navy);
}

.trust-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

.trust-badge .icon { font-size: 1.1rem; }

/* === Sections === */
.section {
  padding: 80px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--gray-500);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* === Cards === */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}

.card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gray-300);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

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

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.card p { color: var(--gray-500); font-size: 0.95rem; }

/* === Features Grid === */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; gap: 24px; }
}

.feature-card .card-icon {
  background: var(--teal-bg);
  color: var(--teal);
}

/* === Auth Forms === */
.auth-container {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: var(--gray-50);
}

.auth-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow-md);
}

.auth-card h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  text-align: center;
}

.auth-card .subtitle {
  text-align: center;
  color: var(--gray-500);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font);
  transition: border-color 0.15s;
  line-height: 1.5;
}

.form-group input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(8,145,178,0.1);
}

.form-error {
  color: var(--red);
  font-size: 0.85rem;
  margin-top: 4px;
  display: none;
}

.alert {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: none;
}

.alert-error {
  background: var(--red-bg);
  color: var(--red);
  border: 1px solid #fecaca;
}

.alert-success {
  background: var(--green-bg);
  color: var(--green);
  border: 1px solid #a7f3d0;
}

.auth-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--gray-500);
}

.auth-footer a { font-weight: 600; }

/* === Chat / Assessment === */
.chat-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 24px;
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
}

.chat-header {
  text-align: center;
  padding: 24px 0;
}

.chat-header h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}

.chat-header p {
  color: var(--gray-500);
  font-size: 0.95rem;
  margin-top: 4px;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.message {
  display: flex;
  gap: 12px;
  max-width: 85%;
  animation: fadeIn 0.3s ease;
}

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

.message.assistant { align-self: flex-start; }
.message.user { align-self: flex-end; flex-direction: row-reverse; }

.message-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.message.assistant .message-avatar {
  background: var(--teal-bg);
  color: var(--teal);
}

.message.user .message-avatar {
  background: var(--navy);
  color: var(--white);
}

.message-content {
  padding: 12px 16px;
  border-radius: var(--radius-lg);
  font-size: 0.95rem;
  line-height: 1.6;
}

.message.assistant .message-content {
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--gray-800);
}

.message.user .message-content {
  background: var(--navy);
  color: var(--white);
}

.chat-input-area {
  padding: 16px 0;
  border-top: 1px solid var(--gray-200);
  display: flex;
  gap: 12px;
}

.chat-input-area input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-family: var(--font);
  line-height: 1.5;
}

.chat-input-area input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(8,145,178,0.1);
}

.chat-input-area button {
  padding: 12px 24px;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  font-size: 0.95rem;
}

.chat-input-area button:hover { background: var(--navy); }
.chat-input-area button:disabled { opacity: 0.5; cursor: not-allowed; }

.typing-indicator {
  display: none;
  align-self: flex-start;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  margin-left: 48px;
}

.typing-indicator span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-400);
  margin: 0 2px;
  animation: bounce 1.4s infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-6px); }
}

.chat-complete {
  text-align: center;
  padding: 32px;
  background: var(--green-bg);
  border: 1px solid #a7f3d0;
  border-radius: var(--radius-lg);
  margin-top: 16px;
}

.chat-complete h3 {
  color: var(--green);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.chat-complete p {
  color: var(--gray-600);
  margin-bottom: 16px;
}

/* === Dashboard === */
.dashboard {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px 24px;
}

.dashboard-header {
  margin-bottom: 32px;
}

.dashboard-header h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
}

.dashboard-header p {
  color: var(--gray-500);
  margin-top: 4px;
}

.score-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.score-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  flex-shrink: 0;
}

.score-info h2 { font-size: 1.25rem; font-weight: 600; }
.score-info p { color: rgba(255,255,255,0.75); margin-top: 4px; }

.score-meta {
  display: flex;
  gap: 24px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.score-meta span {
  font-size: 0.85rem;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
}

.dashboard-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--gray-200);
  margin-bottom: 24px;
  overflow-x: auto;
}

.tab-btn {
  padding: 12px 20px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-500);
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}

.tab-btn:hover { color: var(--navy); }
.tab-btn.active { color: var(--teal); border-bottom-color: var(--teal); }

.tab-content { display: none; }
.tab-content.active { display: block; }

/* === Recommendations === */
.rec-list { display: flex; flex-direction: column; gap: 16px; }

.rec-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.15s;
}

.rec-card:hover { border-color: var(--gray-300); box-shadow: var(--shadow); }

.priority-badge {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.priority-critical { background: var(--red-bg); color: var(--red); }
.priority-high { background: var(--amber-bg); color: var(--amber); }
.priority-medium { background: var(--teal-bg); color: var(--teal); }
.priority-low { background: var(--gray-100); color: var(--gray-500); }

.rec-content { flex: 1; }
.rec-content h3 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.rec-content p { font-size: 0.9rem; color: var(--gray-500); }

.rec-status {
  font-size: 0.8rem;
  margin-top: 8px;
}

.rec-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

/* === Checklist === */
.checklist-group { margin-bottom: 32px; }

.checklist-group h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.obligation-must { color: var(--red); }
.obligation-should { color: var(--amber); }
.obligation-could { color: var(--teal); }

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.15s;
}

.checklist-item:hover { border-color: var(--gray-300); }

.checklist-item.completed {
  opacity: 0.6;
  text-decoration: line-through;
}

.checklist-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--teal);
  cursor: pointer;
}

.checklist-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}

.checklist-text p {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 2px;
}

.regulation-tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--gray-100);
  color: var(--gray-600);
  margin-top: 4px;
}

/* === Resources Page === */
.resources-page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px 24px;
}

.resources-header {
  margin-bottom: 32px;
}

.resources-header h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
}

.resources-header p {
  color: var(--gray-500);
  margin-top: 4px;
}

.resources-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.resources-filters input {
  flex: 1;
  min-width: 200px;
  padding: 10px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font);
}

.resources-filters input:focus {
  outline: none;
  border-color: var(--teal);
}

.resources-filters select {
  padding: 10px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font);
  background: var(--white);
  cursor: pointer;
}

.category-section { margin-bottom: 36px; }

.category-section h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--teal-bg);
  display: flex;
  align-items: center;
  gap: 8px;
}

.resource-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: all 0.15s;
}

.resource-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow);
}

.resource-info { flex: 1; }

.resource-info h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.resource-info p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.resource-meta {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.resource-tag {
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.tag-free { background: var(--green-bg); color: var(--green); }
.tag-freemium { background: var(--teal-bg); color: var(--teal); }
.tag-paid { background: var(--amber-bg); color: var(--amber); }
.tag-uk { background: #ede9fe; color: #7c3aed; }
.tag-us { background: #dbeafe; color: #2563eb; }

.resource-link {
  flex-shrink: 0;
}

/* === Empty States === */
.empty-state {
  text-align: center;
  padding: 60px 24px;
  color: var(--gray-400);
}

.empty-state .icon { font-size: 3rem; margin-bottom: 16px; }
.empty-state h3 { color: var(--gray-600); margin-bottom: 8px; }
.empty-state p { margin-bottom: 24px; }

/* === Footer === */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 40px 24px;
  text-align: center;
  font-size: 0.85rem;
  margin-top: 80px;
}

.footer a { color: var(--teal-light); }

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer p { margin-bottom: 8px; }

/* === Loading === */
.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}

.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--teal);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* === Utility === */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }
.hidden { display: none !important; }

/* How it works section */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}

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

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.step-card p { color: var(--gray-500); font-size: 0.95rem; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--teal) 0%, #0e7490 100%);
  color: var(--white);
  padding: 60px 24px;
  text-align: center;
  border-radius: var(--radius-lg);
  margin: 0 24px;
}

.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.cta-banner .btn {
  background: var(--white);
  color: var(--teal);
  font-weight: 700;
}

.cta-banner .btn:hover {
  background: var(--navy);
  color: var(--white);
}

/* Stats bar on landing */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 32px 24px;
  flex-wrap: wrap;
}

.stat-item { text-align: center; }
.stat-item .number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy);
}
.stat-item .label {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 4px;
}
