/* ═══════════════════════════════════════════════════
   GECKKOPROOF · DESIGN SYSTEM
   Premium childcare compliance platform
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

:root {
  --navy:     #060e1e;
  --navy-mid: #0c1a30;
  --navy-ui:  #122340;
  --blue:     #1a6faf;
  --blue-mid: #2388d4;
  --blue-lt:  #5aafe8;
  --cyan:     #38bdf8;
  --green:    #10b981;
  --green-dk: #059669;
  --amber:    #f59e0b;
  --red:      #ef4444;
  --white:    #ffffff;
  --off:      #f4f8fd;
  --muted:    #64748b;
  --border:   #e2eaf4;
  --text:     #0f172a;

  --font-head: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,.08), 0 2px 8px rgba(0,0,0,.04);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.12), 0 4px 16px rgba(0,0,0,.06);
  --shadow-xl: 0 24px 80px rgba(0,0,0,.16), 0 8px 24px rgba(0,0,0,.08);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 600; }

p { color: #334155; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
strong { font-weight: 600; color: var(--text); }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-sm {
  width: 100%;
  max-width: 740px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-md {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all .2s cubic-bezier(.34,1.56,.64,1);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -.01em;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, #1a6faf, #2388d4);
  color: white;
  box-shadow: 0 6px 24px rgba(26,111,175,.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #1563a0, #1f7ec4);
  box-shadow: 0 10px 32px rgba(26,111,175,.45);
  color: white;
}

.btn-cta {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  font-size: 16px;
  padding: 15px 32px;
  box-shadow: 0 6px 24px rgba(16,185,129,.35);
}
.btn-cta:hover {
  box-shadow: 0 10px 36px rgba(16,185,129,.45);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid rgba(26,111,175,.3);
}
.btn-outline:hover {
  background: rgba(26,111,175,.06);
  border-color: var(--blue);
  color: var(--blue);
}

.btn-ghost {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.2);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.2);
  color: white;
}

.btn-sm { font-size: 13px; padding: 9px 18px; }
.btn-lg { font-size: 17px; padding: 17px 36px; }

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6,14,30,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #1a6faf, #38bdf8);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.nav-logo-text {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: white;
  letter-spacing: -.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  padding: 6px 12px;
  border-radius: 8px;
  transition: all .15s;
  text-decoration: none;
}
.nav-links a:hover { color: white; background: rgba(255,255,255,.08); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-signin {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 8px;
  transition: all .15s;
}
.nav-signin:hover { color: white; background: rgba(255,255,255,.08); text-decoration: none; }

/* Mobile nav hamburger */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,.7);
  border-radius: 2px;
  transition: all .2s;
}

/* Deadline banner */
.deadline-banner {
  background: linear-gradient(90deg, #7c2d12, #9a3412, #7c2d12);
  background-size: 200% 100%;
  animation: bannerPulse 4s ease infinite;
  text-align: center;
  padding: 10px 20px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: #fef3c7;
  letter-spacing: .01em;
}
.deadline-banner strong { color: white; }
@keyframes bannerPulse {
  0%,100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ── Hero ── */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 80px 0 96px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 900px 600px at 60% 0%, rgba(26,111,175,.18) 0%, transparent 70%),
    radial-gradient(ellipse 600px 400px at 10% 100%, rgba(56,189,248,.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239,68,68,.12);
  border: 1px solid rgba(239,68,68,.3);
  border-radius: 50px;
  padding: 7px 14px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: #fca5a5;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,.2);
  animation: pulseDot 2s ease infinite;
}
@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 0 3px rgba(239,68,68,.2); }
  50% { box-shadow: 0 0 0 6px rgba(239,68,68,.1); }
}
.hero h1 { color: white; margin-bottom: 20px; }
.hero h1 span { color: var(--cyan); }
.hero-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin-bottom: 32px;
  font-weight: 400;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 40px; }
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  font-weight: 500;
}
.hero-social-proof-dot { color: rgba(255,255,255,.2); }

/* Stats row */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 64px;
}
.stat-item {
  background: rgba(255,255,255,.03);
  padding: 24px 20px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: white;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── Dashboard card (hero right) ── */
.dashboard-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,.04);
}
.dc-topbar {
  background: var(--navy-ui);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.dc-dots { display: flex; gap: 6px; }
.dc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dc-dot-r { background: #ef4444; }
.dc-dot-y { background: #f59e0b; }
.dc-dot-g { background: #10b981; }
.dc-title {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.dc-body { padding: 18px; }
.dc-service-name {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  margin-bottom: 14px;
}
.dc-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 14px; }
.dc-stat {
  background: rgba(255,255,255,.05);
  border-radius: var(--radius-sm);
  padding: 10px;
  text-align: center;
}
.dc-stat-num { font-family: var(--font-head); font-size: 18px; font-weight: 800; color: white; }
.dc-stat-label { font-size: 10px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .05em; margin-top: 2px; }
.dc-stat.green .dc-stat-num { color: #34d399; }
.dc-stat.red .dc-stat-num { color: #f87171; }

.dc-table { width: 100%; border-collapse: collapse; }
.dc-table th {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,.3);
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 6px 8px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.dc-table td {
  font-size: 12.5px;
  color: rgba(255,255,255,.7);
  padding: 9px 8px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  font-weight: 500;
}
.dc-table tr:last-child td { border-bottom: none; }
.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 50px;
  white-space: nowrap;
}
.tag-done { background: rgba(16,185,129,.15); color: #34d399; }
.tag-pending { background: rgba(245,158,11,.12); color: #fcd34d; }
.tag-overdue { background: rgba(239,68,68,.15); color: #f87171; }

/* ── Sections ── */
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 100px 0; }
.section-dark { background: var(--navy); color: white; }
.section-mid { background: var(--navy-mid); }
.section-off { background: var(--off); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,111,175,.1);
  border: 1px solid rgba(26,111,175,.2);
  border-radius: 50px;
  padding: 6px 14px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-dark .section-tag {
  background: rgba(56,189,248,.1);
  border-color: rgba(56,189,248,.2);
  color: var(--cyan);
}
.section-heading { margin-bottom: 14px; }
.section-lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.section-dark .section-lead { color: rgba(255,255,255,.55); }
.section-dark h2 { color: white; }

/* ── Cards ── */
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.card-dark {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
}
.card-dark:hover { background: rgba(255,255,255,.06); }

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  background: rgba(26,111,175,.1);
}

/* ── Grid helpers ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }

/* ── Problem/solution ── */
.problem-box {
  background: rgba(239,68,68,.06);
  border: 1px solid rgba(239,68,68,.15);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.problem-box h3 { color: #dc2626; margin-bottom: 8px; }
.problem-box p { color: #7f1d1d; font-size: .95rem; }

.solution-box {
  background: rgba(16,185,129,.06);
  border: 1px solid rgba(16,185,129,.15);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.solution-box h3 { color: #059669; margin-bottom: 8px; }
.solution-box p { color: #064e3b; font-size: .95rem; }

/* ── Steps ── */
.steps { display: flex; flex-direction: column; gap: 0; }
.step-item {
  display: flex;
  gap: 24px;
  position: relative;
  padding-bottom: 36px;
}
.step-item:last-child { padding-bottom: 0; }
.step-item:last-child .step-line { display: none; }
.step-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: white;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(26,111,175,.3);
}
.step-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, rgba(26,111,175,.3), rgba(26,111,175,.05));
  margin: 6px 0;
  min-height: 30px;
}
.step-content { padding-top: 8px; }
.step-content h3 { margin-bottom: 6px; font-size: 1.05rem; }
.step-content p { font-size: .95rem; color: var(--muted); }

/* ── Feature grid ── */
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}
.feature-icon-blue { background: rgba(26,111,175,.1); }
.feature-icon-green { background: rgba(16,185,129,.1); }
.feature-icon-amber { background: rgba(245,158,11,.1); }
.feature-icon-cyan { background: rgba(56,189,248,.1); }

/* ── Pricing ── */
.pricing-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  transition: all .25s;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-card.featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(26,111,175,.1), var(--shadow-lg);
}
.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: white;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 50px;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pricing-name {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 8px;
}
.pricing-price {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 6px;
}
.pricing-dollar {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-top: 8px;
}
.pricing-amount {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  letter-spacing: -.03em;
}
.pricing-period { font-size: 15px; color: var(--muted); font-weight: 500; align-self: flex-end; margin-bottom: 6px; }
.pricing-desc { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.pricing-features { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: #334155;
  font-weight: 500;
}
.pricing-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color .15s;
}
.faq-question:hover { color: var(--blue); }
.faq-chevron {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--off);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  transition: all .2s;
  color: var(--muted);
}
.faq-item.open .faq-chevron {
  background: var(--blue);
  color: white;
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .2s;
}
.faq-answer-inner {
  padding-bottom: 20px;
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner a { color: var(--blue); }

/* ── Table ── */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}
.comparison-table th {
  text-align: left;
  padding: 12px 16px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  border-bottom: 2px solid var(--border);
  background: var(--off);
}
.comparison-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: #334155;
  vertical-align: top;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: rgba(26,111,175,.03); }
.check { color: var(--green); font-weight: 800; }
.cross { color: #cbd5e1; }

/* ── Alert box ── */
.alert {
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 14.5px;
  line-height: 1.6;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.alert-warning {
  background: rgba(245,158,11,.08);
  border: 1px solid rgba(245,158,11,.25);
  color: #78350f;
}
.alert-warning strong { color: #92400e; }
.alert-info {
  background: rgba(26,111,175,.07);
  border: 1px solid rgba(26,111,175,.2);
  color: #1e3a5f;
}
.alert strong { font-weight: 700; }

/* ── CTA Section ── */
.cta-section {
  background: linear-gradient(135deg, #060e1e 0%, #0c1a30 50%, #071828 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(26,111,175,.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-inner h2 { color: white; margin-bottom: 14px; }
.cta-inner p { color: rgba(255,255,255,.55); font-size: 1.05rem; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-footnote { margin-top: 18px; font-size: 13px; color: rgba(255,255,255,.3); font-weight: 500; }

/* ── Footer ── */
footer {
  background: #030810;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,.35);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 300px;
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.35);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .15s;
}
.footer-col ul a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.25); }
.footer-bottom a { color: rgba(255,255,255,.35); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,.6); }

/* ── Inner page layout ── */
.page-header {
  background: var(--navy);
  padding: 56px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 400px at 80% 50%, rgba(26,111,175,.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-header-inner { position: relative; z-index: 1; }
.page-header h1 { color: white; margin-bottom: 12px; }
.page-header .lead { color: rgba(255,255,255,.55); font-size: 1.05rem; max-width: 560px; }

/* ── Prose ── */
.prose h2 { font-size: 1.4rem; margin: 36px 0 12px; padding-top: 36px; border-top: 1px solid var(--border); }
.prose h2:first-child { padding-top: 0; border-top: none; margin-top: 0; }
.prose h3 { font-size: 1.1rem; margin: 24px 0 8px; }
.prose p { margin-bottom: 14px; font-size: .975rem; line-height: 1.75; }
.prose ul, .prose ol { margin: 14px 0 14px 22px; }
.prose li { margin-bottom: 8px; font-size: .975rem; line-height: 1.7; color: #334155; }
.prose strong { color: var(--text); }
.prose a { color: var(--blue); }

/* ── Utilities ── */
.text-center { text-align: center; }
.text-white { color: white; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-4 { gap: 16px; }
.opacity-60 { opacity: .6; }

/* ── Back link ── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  transition: all .15s;
  margin-bottom: 24px;
}
.back-link:hover { color: white; background: rgba(255,255,255,.12); text-decoration: none; }

/* ── Scroll fade animation ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .dashboard-card { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .nav-links, .nav-signin { display: none; }
  .nav-mobile-toggle { display: flex; }
  .nav-mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(6,14,30,.98);
    padding: 20px 24px 32px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    z-index: 99;
    gap: 4px;
  }
  .nav-mobile-open .nav-signin { display: block; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: repeat(2,1fr); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
