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

:root {
  /* Brand palette (per brand guide) */
  --dark:      #090C13; /* Midnight — background */
  --dark-2:    #12182E; /* Surface — cards / panels */
  --indigo:    #6366F1; /* Indigo — primary */
  --indigo-lt: #818CF8; /* Periwinkle — accent / links / hover */
  --cyan:      #818CF8; /* (cyan retired → Periwinkle) */
  --lavender:  #B4B8E4; /* Lavender — subtitles on dark */
  --slate:     #64748B;
  --slate-lt:  #94A3B8;
  --border:    #E2E8F0;
  --bg:        #F8FAFC;
  --white:     #FFFFFF;
  --radius:    12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark-2);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
  color: var(--dark);
}

a { color: inherit; text-decoration: none; }

/* ─── SKIP LINK (accessibility) ──────────────── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 6px;
  background: var(--indigo);
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  z-index: 9999;
}
.skip-link:focus { left: 6px; }

/* ─── NAV ─────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15,23,42,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.logo-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo), var(--cyan));
  display: inline-block;
  flex-shrink: 0;
}
.logo-mark-img {
  display: block;
  flex-shrink: 0;
  width: 28px; height: 28px;
}
/* Wordmark lockup — matches the logo: bold ADAPTING over spaced SERVICES */
.logo-words { display: inline-flex; flex-direction: column; line-height: 1; }
.logo-w1 {
  font-family: 'Outfit', sans-serif; font-weight: 800;
  font-size: 18px; letter-spacing: 0.5px; color: var(--white);
}
.logo-w2 {
  font-family: 'Outfit', sans-serif; font-weight: 600;
  font-size: 8.5px; letter-spacing: 5.5px; color: #A5B4FC;
  margin-top: 6px; padding-top: 6px;
  border-top: 1px solid rgba(255,255,255,0.18);
  /* nudge so the wide letter-spacing stays visually centred under ADAPTING */
  text-indent: 5.5px;
}
.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  transition: color 0.2s;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a.active { color: white; }
.nav-links a.active { border-bottom-color: var(--indigo-lt); }
.nav-cta {
  background: var(--indigo);
  color: white !important;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
  border-bottom: none !important;
}
.nav-cta:hover { background: var(--indigo-lt); transform: translateY(-1px); }
.nav-cta.active { border-bottom: none !important; }

/* ─── HERO ───────────────────────────────────── */
.hero {
  background: var(--dark);
  padding: 100px 24px 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(99,102,241,0.35) 0%, transparent 70%),
              radial-gradient(ellipse 50% 40% at 80% 80%, rgba(129,140,248,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(99,102,241,0.18);
  border: 1px solid rgba(99,102,241,0.4);
  color: #A5B4FC;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--indigo-lt);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; } 50% { opacity: 0.4; }
}

/* ─── HERO LOGO LOCKUP ───────────────────────── */
.hero-logo {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.hero-logo-mark { width: 58px; height: 58px; display: block; flex-shrink: 0; }
.hero-logo-words { display: flex; flex-direction: column; line-height: 1; text-align: left; }
.hl-w1 {
  font-family: 'Outfit', sans-serif; font-weight: 800;
  font-size: 42px; letter-spacing: 1px; color: var(--white);
}
.hl-w2 {
  font-family: 'Outfit', sans-serif; font-weight: 600;
  font-size: 15px; letter-spacing: 12px; color: var(--slate-lt);
  margin-top: 10px; padding-top: 11px;
  border-top: 1px solid rgba(255,255,255,0.2);
  text-indent: 12px;
}
.hero-logo-tag {
  display: flex; align-items: center; justify-content: center; gap: 11px; flex-wrap: wrap;
  font-family: 'Geist Mono', ui-monospace, monospace; font-weight: 500; font-size: 13px;
  color: var(--indigo-lt); letter-spacing: 0.4px; margin-bottom: 34px;
  padding: 0 16px;
}
.hero-logo-tag .sep { width: 5px; height: 5px; border-radius: 50%; background: #3B82F6; display: inline-block; }
.hero-logo-tag .muted { color: var(--slate-lt); }
@media (max-width: 560px) {
  .hero-logo-mark { width: 44px; height: 44px; }
  .hl-w1 { font-size: 30px; }
  .hl-w2 { font-size: 11px; letter-spacing: 8px; text-indent: 8px; }
}

.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  color: white;
  max-width: 820px;
  margin: 0 auto 24px;
  letter-spacing: -1.5px;
}
.hero h1 span {
  background: linear-gradient(135deg, #818CF8, #818CF8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.7;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--indigo);
  color: white;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(99,102,241,0.4);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover {
  background: var(--indigo-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(99,102,241,0.5);
}
.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.15);
  transition: background 0.2s, transform 0.15s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }

/* ─── STATS BAR ─────────────────────────────── */
.stats-bar {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 36px 24px;
}
.stats-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--indigo);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: var(--slate);
  font-weight: 500;
}

/* ─── SECTIONS ───────────────────────────────── */
section { padding: 96px 24px; }
.section-inner { max-width: 1160px; margin: 0 auto; }
.section-label {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--indigo);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--slate);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 56px;
}

/* ─── OPPORTUNITY ────────────────────────────── */
#opportunity { background: var(--bg); }
.opp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.opp-card {
  background: white;
  border: 1px solid var(--border);
  border-top: 4px solid var(--indigo);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.opp-card:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(15,23,42,0.07); }
.opp-num {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--indigo);
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.opp-card p { font-size: 14px; color: var(--slate); line-height: 1.6; }
.opp-source { font-size: 12px; color: var(--slate-lt); margin-top: 28px; }

/* ─── PROBLEM ────────────────────────────────── */
#problem { background: var(--dark); }
#problem .section-label { color: #818CF8; }
#problem .section-title { color: white; }
.prob-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.prob-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 16px;
  transition: transform 0.2s, background 0.2s;
}
.prob-card:hover { transform: translateY(-3px); background: rgba(255,255,255,0.06); }
.prob-icon { font-size: 22px; flex-shrink: 0; line-height: 1.2; }
.prob-card h3 { color: white; font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.prob-card p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.6; }

/* ─── SERVICES ───────────────────────────────── */
#services { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15,23,42,0.08);
  border-color: #C7D2FE;
}
.service-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.service-card p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.7;
}
.service-tag {
  display: inline-block;
  margin-top: 18px;
  font-size: 12px;
  font-weight: 600;
  color: var(--indigo);
  background: #EEF2FF;
  padding: 4px 10px;
  border-radius: 6px;
}

/* ─── PROCESS ────────────────────────────────── */
#process { background: white; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(16.67% + 24px);
  right: calc(16.67% + 24px);
  height: 1px;
  background: linear-gradient(90deg, var(--indigo), var(--cyan));
  opacity: 0.3;
}
.process-step { text-align: center; }
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--indigo);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px #EEF2FF;
}
.process-step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.process-step p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.7;
}

/* ─── CONFIDENCE GAP ─────────────────────────── */
#confidence { background: var(--dark); }
#confidence .section-label { color: var(--cyan); }
#confidence .section-title { color: white; }
#confidence .section-sub { color: rgba(255,255,255,0.55); }
.gap-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
  max-width: 760px;
}
.gap-num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(56px, 9vw, 104px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
}
.gap-stat.ca .gap-num { color: white; }
.gap-stat.us .gap-num { color: var(--cyan); }
.gap-stat p { color: rgba(255,255,255,0.6); font-size: 15px; margin-top: 12px; max-width: 300px; line-height: 1.6; }
.gap-bars { max-width: 640px; margin-bottom: 36px; }
.gap-bar-row { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.gap-bar-track { flex: 1; height: 18px; background: rgba(255,255,255,0.07); border-radius: 9px; overflow: hidden; }
.gap-bar-fill { height: 100%; border-radius: 9px; }
.gap-bar-fill.ca { width: 14%; background: rgba(255,255,255,0.85); }
.gap-bar-fill.us { width: 35%; background: var(--cyan); }
.gap-bar-label { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.85); white-space: nowrap; min-width: 78px; }
.gap-punch {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.25;
  color: white;
}
.gap-punch .accent { color: var(--cyan); }
.gap-source { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 18px; }

/* ─── WHY US ─────────────────────────────────── */
#why { background: var(--bg); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.why-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  gap: 20px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.why-card:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(15,23,42,0.07); }
.why-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: #EEF2FF;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.why-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--slate); line-height: 1.7; }

/* ─── GOVERNANCE ─────────────────────────────── */
#governance { background: var(--dark); }
#governance .section-label { color: #818CF8; }
#governance .section-title { color: white; }
#governance .section-sub { color: rgba(255,255,255,0.55); }
.gov-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.gov-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 4px solid var(--indigo);
  border-radius: 12px;
  padding: 22px 24px;
  transition: transform 0.2s, background 0.2s;
}
.gov-card:hover { transform: translateY(-3px); background: rgba(255,255,255,0.06); }
.gov-card h3 { color: white; font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.gov-card p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.6; }
.gov-card.accent-indigo { border-left-color: var(--indigo); }
.gov-card.accent-amber  { border-left-color: #FFBA4D; }
.gov-card.accent-cyan   { border-left-color: var(--cyan); }
.gov-card.accent-purple { border-left-color: #A78BFA; }
.gov-closing {
  margin-top: 36px;
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  max-width: 640px;
  line-height: 1.7;
}
.gov-closing strong { color: white; font-weight: 700; }

/* ─── INDUSTRIES ─────────────────────────────── */
#industries { background: white; }
.industries-wrap { text-align: center; }
.industries-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
}
.industry-pill {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-2);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  cursor: default;
}
.industry-pill:hover {
  border-color: var(--indigo);
  background: #EEF2FF;
  color: var(--indigo);
}

/* ─── FAQ ────────────────────────────────────── */
#faq { background: var(--bg); }
.faq-list { max-width: 840px; margin-top: 8px; }
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item[open] { border-color: #C7D2FE; box-shadow: 0 10px 30px rgba(15,23,42,0.06); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 22px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 16.5px;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--indigo); }
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1;
  color: var(--indigo);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 22px 20px;
  font-size: 15px;
  color: var(--slate);
  line-height: 1.75;
}
.faq-answer a { color: var(--indigo); font-weight: 600; }
/* Reliable collapse across browsers (don't rely on UA details styling) */
.faq-item:not([open]) .faq-answer { display: none; }

/* ─── CONTACT (two-column) ───────────────────── */
#contact {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-lt) 55%, #4338CA 100%);
  padding: 96px 24px;
}
.contact-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.contact-left .section-label { color: #A5B4FC; }
.contact-left h2 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: white;
  letter-spacing: -1px;
  margin: 12px 0 20px;
}
.contact-left > p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 440px;
}
.contact-ctas {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.contact-email-link {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.contact-email-link:hover { color: white; }

/* Form card */
.contact-form-wrap {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.2);
}
.contact-form-wrap h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--dark);
  letter-spacing: -0.3px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}
.form-group.full { grid-column: 1 / -1; }
.form-group.visually-hidden { display: none; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-2);
}
.form-group input,
.form-group textarea,
.form-group select {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  font-family: 'Outfit', sans-serif;
  color: var(--dark-2);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.12);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--slate-lt); }
.form-submit {
  width: 100%;
  background: var(--indigo);
  color: white;
  border: none;
  padding: 13px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(99,102,241,0.35);
  margin-top: 4px;
}
.form-submit:hover {
  background: var(--indigo-lt);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(99,102,241,0.45);
}
.form-submit:active { transform: translateY(0); }
.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--slate);
  margin-top: 12px;
}

/* ─── FOOTER ─────────────────────────────────── */
footer {
  background: var(--dark);
  padding: 64px 24px 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  margin-top: 16px;
  max-width: 280px;
  line-height: 1.7;
}
.footer-reg {
  font-size: 12px !important;
  color: rgba(255,255,255,0.3) !important;
  margin-top: 12px !important;
  line-height: 1.6 !important;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: white; }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-bottom a:hover { color: white; }

/* ─── BACK TO TOP ────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 88px; /* sit above cookie banner if visible */
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--indigo);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  box-shadow: 0 4px 16px rgba(99,102,241,0.4);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s, transform 0.25s, background 0.2s, box-shadow 0.2s;
  pointer-events: none;
  z-index: 200;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--indigo-lt);
  box-shadow: 0 8px 24px rgba(99,102,241,0.5);
}

/* ─── COOKIE BANNER ──────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 20px 28px;
  max-width: 700px;
  width: calc(100% - 48px);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 300;
  box-shadow: 0 8px 48px rgba(0,0,0,0.35);
  flex-wrap: wrap;
  transition: opacity 0.3s, transform 0.3s;
}
.cookie-banner.hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(16px);
  pointer-events: none;
}
.cookie-banner p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  flex: 1;
  min-width: 200px;
  margin: 0;
  line-height: 1.6;
}
.cookie-banner p a {
  color: #818CF8;
  text-decoration: underline;
}
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn-accept {
  background: var(--indigo);
  color: white;
  border: none;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-btn-accept:hover { background: var(--indigo-lt); }
.cookie-btn-decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.cookie-btn-decline:hover { border-color: rgba(255,255,255,0.45); color: white; }

/* ─── BUTTON STYLES (shared) ─────────────────── */
.btn-white {
  background: white;
  color: var(--indigo);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.btn-outline-white {
  background: transparent;
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.4);
  transition: border-color 0.2s, background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.1); }

/* ─── LEGAL PAGES (privacy / terms) ──────────── */
.legal-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}
.legal-page h1 {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.legal-page .legal-updated {
  font-size: 14px;
  color: var(--slate);
  margin-bottom: 40px;
}
.legal-page h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 36px 0 12px;
}
.legal-page p,
.legal-page li {
  font-size: 16px;
  color: var(--dark-2);
  line-height: 1.8;
}
.legal-page ul { padding-left: 22px; margin: 8px 0; }
.legal-page li { margin-bottom: 6px; }
.legal-page a { color: var(--indigo); text-decoration: underline; }
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--indigo);
  margin-bottom: 32px;
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1000px) {
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-left > p { max-width: 100%; }
  .contact-ctas { flex-direction: row; flex-wrap: wrap; align-items: center; }
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .gov-grid { grid-template-columns: 1fr; }
  .prob-grid { grid-template-columns: 1fr; }
  .opp-grid { grid-template-columns: 1fr; }
  .gap-stats { grid-template-columns: 1fr; gap: 28px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
}
/* Inline nav links need room for the full brand name + tabs;
   drop them below this width (no hamburger in this design). */
@media (max-width: 940px) {
  .nav-links { display: none; }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 24px; }
  .back-to-top { bottom: 100px; right: 16px; }
  .cookie-banner { bottom: 16px; padding: 16px 20px; }
}
