/* ============================================================
   Neurodiverse You — Main Stylesheet
   Fonts: Lexend + Atkinson Hyperlegible
   Accessibility: WCAG 2.1 AA/AAA throughout
   ============================================================ */

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
  --bg:           #F7F5F2;
  --bg-card:      #FFFFFF;
  --bg-alt:       #EFF0F3;
  --ink:          #1A1A2E;
  --ink-mid:      #3D3D55;
  --ink-soft:     #6B6B85;
  --teal:         #006B6B;
  --teal-mid:     #008080;
  --teal-light:   #E0F2F2;
  --teal-bg:      #F0FAFA;
  --amber:        #B45309;
  --amber-bg:     #FFF7ED;
  --amber-light:  #FFEDD5;
  --green:        #166534;
  --green-bg:     #DCFCE7;
  --violet:       #5B21B6;
  --violet-bg:    #EDE9FE;
  --rose:         #9F1239;
  --rose-bg:      #FFE4E6;
  --blue:         #1D4ED8;
  --blue-bg:      #DBEAFE;
  --border:       #D4D4DC;
  --border-soft:  #E8E8EF;
  --shadow-sm:    0 1px 3px rgba(26,26,46,.08);
  --shadow-md:    0 4px 16px rgba(26,26,46,.10);
  --shadow-lg:    0 12px 40px rgba(26,26,46,.12);
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    20px;
  --radius-xl:    28px;
  --nav-h:        68px;
  --max-w:        1200px;
  --px:           clamp(20px, 5vw, 64px);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Atkinson Hyperlegible', Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--teal); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--teal-mid);
  outline-offset: 3px;
}
[hidden] { display: none !important; }

/* ── Typography ────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Lexend', Arial, sans-serif;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3rem);    font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.375rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem);   font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }
p  { font-size: 1.0625rem; line-height: 1.75; color: var(--ink-mid); }
strong { font-weight: 700; color: var(--ink); }

/* ── Layout Utilities ──────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px); }
.section { padding: clamp(48px, 7vw, 96px) var(--px); }
.section-alt  { background: var(--bg-alt); }
.section-dark { background: var(--ink); }
.section-teal { background: var(--teal-bg); }
.section-dark h1,
.section-dark h2,
.section-dark h3 { color: #fff; }
.section-dark p   { color: rgba(255,255,255,0.65); }

.section-label {
  font-family: 'Lexend', sans-serif;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: .5rem;
}
.section-label::before { content:''; width:20px; height:2px; background:var(--teal); flex-shrink:0; }

.section-title { margin-bottom: .75rem; max-width: 680px; }
.section-sub   { font-size: 1.0625rem; color: var(--ink-mid); max-width: 600px; margin-bottom: 2.5rem; line-height: 1.75; }

/* ── Navigation ────────────────────────────────────────────── */
.site-nav {
  background: var(--bg-card);
  border-bottom: 2px solid var(--teal);
  height: var(--nav-h);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  font-family: 'Lexend', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.logo-dot { width: 10px; height: 10px; background: var(--teal); border-radius: 50%; }
.nav-menu { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.nav-links { display: flex; list-style: none; gap: 4px; align-items: center; }
.nav-links a {
  font-family: 'Lexend', sans-serif;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--ink-mid);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); background: var(--teal-bg); }
.nav-cta-btn {
  background: var(--teal);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  font-size: .9375rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s;
}
.nav-cta-btn:hover { background: var(--ink); }
.nav-toggle { display: none; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--bg-card);
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  list-style: none;
  display: none;
  z-index: 300;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { display: block; }
.dropdown li a {
  display: block;
  padding: 10px 14px;
  font-size: .875rem;
  border-radius: var(--radius-sm);
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Lexend', sans-serif;
  font-size: .9375rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s, color .15s, border-color .15s;
  line-height: 1;
}
.btn-primary   { background: var(--teal); color: #fff; border-color: var(--teal); }
.btn-primary:hover { background: var(--ink); border-color: var(--ink); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-secondary:hover { border-color: var(--ink); }
.btn-white     { background: #fff; color: var(--teal); }
.btn-white:hover { background: var(--teal-light); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline-white:hover { border-color: #fff; }
.btn-lg { padding: 16px 32px; font-size: 1.0625rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Forms ─────────────────────────────────────────────────── */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-family: 'Lexend', sans-serif;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--ink-mid);
  margin-bottom: 6px;
  letter-spacing: .02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Atkinson Hyperlegible', Arial, sans-serif;
  font-size: 1.0625rem;
  color: var(--ink);
  background: var(--bg-card);
  transition: border-color .15s, box-shadow .15s;
  -webkit-appearance: none;
  line-height: 1.5;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal-mid);
  box-shadow: 0 0 0 3px rgba(0,128,128,.15);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-error { color: var(--rose); font-size: .8125rem; margin-top: 4px; font-weight: 600; }
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea { border-color: var(--rose); }

.field-honeypot { display: none !important; visibility: hidden !important; }

/* Form card */
.form-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-lg);
}
.form-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal-light);
  color: var(--teal);
  padding: 3px 10px;
  border-radius: 4px;
  font-family: 'Lexend', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.form-card h3 { margin-bottom: 4px; }
.form-card-sub { font-size: .9375rem; color: var(--ink-soft); margin-bottom: 20px; }
.form-note { text-align: center; font-size: .75rem; color: var(--ink-soft); margin-top: 10px; line-height: 1.5; }

/* Alert messages */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: .9375rem;
  margin-bottom: 16px;
  border: 1.5px solid transparent;
}
.alert-success { background: var(--green-bg); border-color: #86EFAC; color: var(--green); }
.alert-error   { background: var(--rose-bg);  border-color: #FCA5A5; color: var(--rose); }
.alert-info    { background: var(--teal-bg);  border-color: var(--teal-light); color: var(--teal); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  background: var(--ink);
  padding: clamp(48px, 8vw, 96px) var(--px);
  position: relative;
  overflow: hidden;
}
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,128,128,.12);
  pointer-events: none;
}
.hero-ring-1 { width: 700px; height: 700px; top: -200px; right: -150px; }
.hero-ring-2 { width: 450px; height: 450px; top: -50px; right: 60px; }
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,128,128,.2);
  border: 1.5px solid var(--teal-mid);
  color: #5ECECE;
  padding: 6px 14px;
  border-radius: 6px;
  font-family: 'Lexend', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.live-dot { width: 7px; height: 7px; background: #5ECECE; border-radius: 50%; animation: blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1}50%{opacity:.3} }

.hero h1 { color: #fff; max-width: 540px; margin-bottom: 16px; }
.hero h1 strong { color: #5ECECE; }
.hero-body { color: rgba(255,255,255,.72); font-size: 1.0625rem; max-width: 460px; margin-bottom: 28px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.trust-avatars { display: flex; }
.t-av {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2.5px solid var(--ink);
  margin-right: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lexend', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  color: #fff;
}
.av-a{background:#006B6B}.av-b{background:#1e6b6b}.av-c{background:#385B7A}.av-d{background:#5B5B8A}
.trust-stat { color: rgba(255,255,255,.7); font-size: .9375rem; line-height: 1.4; }
.trust-stat strong { color: #fff; }

/* ── Insurer Bar ───────────────────────────────────────────── */
.insurer-bar {
  background: var(--bg-alt);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 18px var(--px);
  display: flex;
  align-items: center;
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: none;
}
.insurer-bar::-webkit-scrollbar { display: none; }
.insurer-label {
  font-family: 'Lexend', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  color: var(--ink-soft);
  white-space: nowrap;
  letter-spacing: .05em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.insurer-pill {
  font-family: 'Lexend', sans-serif;
  font-size: .875rem;
  font-weight: 500;
  color: var(--ink-mid);
  padding: 6px 16px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Service Cards ─────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.service-card {
  background: var(--bg-card);
  border: 2px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: clamp(24px, 3vw, 32px);
  position: relative;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.service-card:hover { border-color: var(--teal-mid); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-stripe { height: 4px; position: absolute; top: 0; left: 0; right: 0; border-radius: 4px 4px 0 0; }
.s-teal   { background: var(--teal); }
.s-violet { background: #7C3AED; }
.s-amber  { background: var(--amber); }
.s-blue   { background: var(--blue); }
.s-green  { background: var(--green); }
.s-rose   { background: #BE185D; }
.card-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 16px; }
.ic-teal   { background: var(--teal-light); }
.ic-violet { background: var(--violet-bg); }
.ic-amber  { background: var(--amber-light); }
.ic-blue   { background: var(--blue-bg); }
.ic-green  { background: var(--green-bg); }
.ic-rose   { background: var(--rose-bg); }
.age-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.age-badge { font-family:'Lexend',sans-serif; font-size:.7rem; font-weight:600; padding:3px 9px; border-radius:4px; }
.b-teal   { background:var(--teal-light); color:var(--teal); }
.b-violet { background:var(--violet-bg);  color:var(--violet); }
.service-card h3 { font-size:1.125rem; margin-bottom:8px; }
.service-card p  { font-size:.9375rem; margin-bottom:16px; line-height:1.6; }
.price-from { font-family:'Lexend',sans-serif; font-size:.9375rem; font-weight:600; color:var(--teal); margin-bottom:14px; }
.card-link { font-family:'Lexend',sans-serif; font-size:.875rem; font-weight:600; color:var(--teal); text-decoration:none; display:inline-flex; align-items:center; gap:6px; border-bottom:2px solid var(--teal-light); padding-bottom:1px; }
.card-link:hover { border-color:var(--teal); }
.card-link::after { content:'→'; }

/* ── Quiz ──────────────────────────────────────────────────── */
.quiz-wrap { max-width: 760px; margin: 0 auto; }
.quiz-progress-label { display:flex; justify-content:space-between; font-family:'Lexend',sans-serif; font-size:.8125rem; font-weight:600; color:var(--ink-mid); margin-bottom:8px; }
.quiz-progress-bar { height:8px; background:var(--border-soft); border-radius:4px; overflow:hidden; margin-bottom:28px; }
.quiz-progress-fill { height:100%; background:var(--teal); border-radius:4px; transition:width .4s ease; }
.quiz-card { background:var(--bg-card); border:2px solid var(--border-soft); border-radius:var(--radius-lg); padding:clamp(24px,4vw,40px); box-shadow:var(--shadow-md); }
.quiz-step { display:none; }
.quiz-step.active { display:block; }
.quiz-q-num { font-family:'Lexend',sans-serif; font-size:.8125rem; font-weight:600; color:var(--teal); text-transform:uppercase; letter-spacing:.08em; margin-bottom:12px; }
.quiz-question { font-family:'Lexend',sans-serif; font-size:1.375rem; font-weight:600; color:var(--ink); line-height:1.35; margin-bottom:8px; }
.quiz-hint { font-size:.9375rem; color:var(--ink-soft); margin-bottom:24px; line-height:1.65; }
.quiz-options { display:flex; flex-direction:column; gap:12px; }
.quiz-option {
  display:flex; align-items:center; gap:14px;
  padding:16px 20px;
  border:2px solid var(--border);
  border-radius:var(--radius-md);
  background:var(--bg);
  cursor:pointer;
  text-align:left;
  width:100%;
  font-family:'Atkinson Hyperlegible',Arial,sans-serif;
  font-size:1.0625rem;
  color:var(--ink);
  line-height:1.4;
  transition:border-color .15s, background .15s;
}
.quiz-option:hover { border-color:var(--teal-mid); background:var(--teal-bg); }
.quiz-option.selected { border-color:var(--teal); background:var(--teal-bg); font-weight:600; }
.quiz-option.selected .opt-radio { background:var(--teal); border-color:var(--teal); }
.quiz-option.selected .opt-radio::after { content:''; width:8px; height:8px; background:#fff; border-radius:50%; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); }
.opt-radio { width:22px; height:22px; border-radius:50%; border:2px solid var(--border); flex-shrink:0; position:relative; transition:background .15s, border-color .15s; }
.opt-emoji { font-size:1.2rem; flex-shrink:0; }
.opt-label { flex:1; }
.quiz-nav { display:flex; justify-content:space-between; align-items:center; margin-top:24px; padding-top:20px; border-top:1px solid var(--border-soft); }
.quiz-btn { font-family:'Lexend',sans-serif; font-size:.9375rem; font-weight:600; padding:12px 24px; border-radius:var(--radius-sm); cursor:pointer; border:none; transition:background .15s; }
.quiz-btn-next { background:var(--teal); color:#fff; }
.quiz-btn-next:hover { background:var(--ink); }
.quiz-btn-back { background:transparent; color:var(--ink-mid); border:2px solid var(--border); }
.quiz-btn-back:hover { border-color:var(--ink-mid); }
.quiz-btn:disabled { opacity:.35; cursor:not-allowed; }

/* Result cards */
.result-banner { border-radius:var(--radius-lg); padding:24px 28px; margin-bottom:20px; display:flex; align-items:flex-start; gap:20px; }
.r-teal   { background:var(--teal-bg);   border:2px solid var(--teal); }
.r-violet { background:var(--violet-bg); border:2px solid #7C3AED; }
.r-amber  { background:var(--amber-bg);  border:2px solid var(--amber); }
.result-icon { font-size:2.2rem; flex-shrink:0; }
.result-content h3 { font-size:1.25rem; font-weight:700; margin-bottom:6px; }
.result-content p  { font-size:.9375rem; line-height:1.65; }
.rec-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin:20px 0; }
.rec-card { background:var(--bg-card); border:2px solid var(--border-soft); border-radius:var(--radius-md); padding:20px; text-align:center; }
.rec-card.highlight { border-color:var(--teal); }
.rec-icon { font-size:1.6rem; margin-bottom:8px; }
.rec-title { font-family:'Lexend',sans-serif; font-weight:700; font-size:.9375rem; margin-bottom:6px; }
.rec-match { font-family:'Lexend',sans-serif; font-size:.7rem; font-weight:700; padding:2px 8px; border-radius:4px; display:inline-block; margin-bottom:8px; }
.m-high   { background:var(--green-bg);    color:var(--green); }
.m-medium { background:var(--amber-light); color:var(--amber); }
.m-low    { background:var(--bg-alt);      color:var(--ink-soft); }
.rec-desc { font-size:.8125rem; color:var(--ink-soft); line-height:1.5; }
.rec-price { font-family:'Lexend',sans-serif; font-size:.75rem; font-weight:600; color:var(--teal); margin-top:8px; }
.result-actions { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.quiz-restart { display:block; text-align:center; margin-top:14px; font-size:.9375rem; color:var(--ink-soft); cursor:pointer; background:none; border:none; text-decoration:underline; font-family:'Atkinson Hyperlegible',sans-serif; }

/* ── CRM Pipeline (dark section) ───────────────────────────── */
.pipeline { display:grid; grid-template-columns:repeat(6,1fr); border:1.5px solid rgba(255,255,255,.1); border-radius:var(--radius-md); overflow:hidden; }
.pipe-stage { padding:24px 18px; border-right:1px solid rgba(255,255,255,.07); }
.pipe-stage:last-child { border-right:none; }
.pipe-num  { font-family:'Lexend',sans-serif; font-size:.65rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.3); margin-bottom:12px; }
.pipe-dot  { width:8px; height:8px; background:#5ECECE; border-radius:50%; box-shadow:0 0 10px #5ECECE; margin-bottom:12px; }
.pipe-icon { font-size:1.4rem; margin-bottom:10px; }
.pipe-title { font-family:'Lexend',sans-serif; font-size:.9375rem; font-weight:600; color:#fff; margin-bottom:6px; line-height:1.3; }
.pipe-desc  { font-size:.8125rem; color:rgba(255,255,255,.4); line-height:1.55; }
.integrations-row { display:flex; flex-wrap:wrap; gap:10px; margin-top:32px; }
.int-pill { background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12); border-radius:6px; padding:7px 14px; font-size:.8125rem; color:rgba(255,255,255,.6); font-family:'Lexend',sans-serif; font-weight:500; display:flex; align-items:center; gap:7px; }
.int-pill::before { content:''; width:5px; height:5px; background:#5ECECE; border-radius:50%; flex-shrink:0; }

/* ── FAQ Accordion ─────────────────────────────────────────── */
.faq-list { max-width:780px; }
.faq-item { border-bottom:1px solid var(--border-soft); }
.faq-btn {
  width:100%; display:flex; justify-content:space-between; align-items:center;
  padding:20px 0; background:none; border:none; cursor:pointer;
  font-family:'Lexend',sans-serif; font-size:1.0625rem; font-weight:600; color:var(--ink);
  text-align:left; gap:16px;
}
.faq-btn:hover { color:var(--teal); }
.faq-arrow { font-size:1.2rem; flex-shrink:0; transition:transform .25s; color:var(--teal); }
.faq-item.open .faq-arrow { transform:rotate(180deg); }
.faq-answer { display:none; padding-bottom:20px; font-size:.9375rem; color:var(--ink-mid); line-height:1.75; }
.faq-item.open .faq-answer { display:block; }

/* ── Booking/Contact layout ────────────────────────────────── */
.two-col { display:grid; grid-template-columns:1fr 480px; gap:64px; align-items:start; max-width:var(--max-w); margin:0 auto; }
.contact-details h2 { margin-bottom:16px; }
.contact-info { margin:24px 0; }
.contact-info-item { display:flex; gap:14px; align-items:flex-start; margin-bottom:18px; font-size:.9375rem; color:var(--ink-mid); }
.contact-info-item .ci-icon { font-size:1.3rem; flex-shrink:0; margin-top:2px; }
.contact-info-item a { color:var(--teal); }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer { background:#0D0D1A; padding:64px var(--px) 28px; }
.footer-inner { max-width:var(--max-w); margin:0 auto; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; margin-bottom:48px; padding-bottom:40px; border-bottom:1px solid rgba(255,255,255,.07); }
.footer-logo { font-family:'Lexend',sans-serif; font-weight:700; font-size:1.25rem; color:#fff; margin-bottom:12px; }
.footer-logo span { color:#5ECECE; }
.footer-brand p { font-size:.875rem; color:rgba(255,255,255,.45); line-height:1.7; max-width:280px; margin-bottom:16px; }
.footer-badges { display:flex; gap:8px; flex-wrap:wrap; }
.f-badge { background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.1); border-radius:4px; padding:4px 10px; font-family:'Lexend',sans-serif; font-size:.7rem; color:rgba(255,255,255,.5); }
.footer-col h3 { font-family:'Lexend',sans-serif; font-size:.75rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:rgba(255,255,255,.3); margin-bottom:14px; }
.footer-col ul { list-style:none; }
.footer-col ul li { margin-bottom:10px; }
.footer-col ul li a { font-size:.9375rem; color:rgba(255,255,255,.55); text-decoration:none; }
.footer-col ul li a:hover { color:#fff; }
.emergency-link { color:#FCA5A5 !important; font-weight:600; }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; }
.footer-bottom p { font-size:.8125rem; color:rgba(255,255,255,.25); }
.footer-bottom a { color:rgba(255,255,255,.4); }

/* ── Accessibility Utility ─────────────────────────────────── */
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }
.skip-link { position:absolute; top:-999px; left:0; background:var(--teal); color:#fff; padding:12px 24px; z-index:9999; font-family:'Lexend',sans-serif; font-weight:700; text-decoration:none; border-radius:0 0 8px 0; }
.skip-link:focus { top:0; }

/* ── Page hero (inner pages) ───────────────────────────────── */
.page-hero { background:var(--ink); padding:clamp(40px,6vw,80px) var(--px); position:relative; overflow:hidden; }
.page-hero-inner { max-width:var(--max-w); margin:0 auto; position:relative; z-index:1; }
.page-hero .section-label { color:#5ECECE; }
.page-hero .section-label::before { background:#5ECECE; }
.page-hero h1 { color:#fff; }
.page-hero p  { color:rgba(255,255,255,.7); max-width:580px; font-size:1.125rem; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width:1024px) {
  .services-grid { grid-template-columns:repeat(2,1fr); }
  .pipeline      { grid-template-columns:repeat(3,1fr); }
  .pipeline .pipe-stage:nth-child(3) { border-right:none; }
  .two-col       { grid-template-columns:1fr; }
  .footer-grid   { grid-template-columns:1fr 1fr; }
}
@media (max-width:768px) {
  .hero-inner    { grid-template-columns:1fr; }
  .services-grid { grid-template-columns:1fr; }
  .rec-grid      { grid-template-columns:1fr; }
  .result-actions{ grid-template-columns:1fr; }
  .pipeline      { grid-template-columns:1fr 1fr; }
  .footer-grid   { grid-template-columns:1fr; }
  .nav-links,
  .nav-cta-btn   { display:none; }
  .nav-toggle    {
    display:flex; flex-direction:column; justify-content:space-between;
    width:28px; height:20px; background:none; border:none; cursor:pointer; padding:0;
  }
  .nav-toggle span { display:block; width:100%; height:2px; background:var(--ink); border-radius:2px; }
  .nav-menu.open { display:flex; flex-direction:column; position:fixed; top:var(--nav-h); left:0; right:0; bottom:0; background:var(--bg-card); padding:24px var(--px); overflow-y:auto; z-index:199; }
  .nav-menu.open .nav-links { display:flex; flex-direction:column; gap:4px; }
  .nav-menu.open .nav-cta-btn { display:block; margin-top:16px; text-align:center; }
  .form-row      { grid-template-columns:1fr; }
}
