/* ═══════════════════════════════════════════
   AGI SERVICES — MAIN STYLESHEET
   agiservices.co
═══════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #1a1f2e;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ── DESIGN TOKENS ── */
:root {
  --ink:       #0d1321;
  --navy:      #0f2856;
  --navy-mid:  #1a3a6e;
  --navy-lt:   #2a5298;
  --rule:      #dce4f0;
  --bg-lt:     #f4f7fc;
  --bg-warm:   #f8f9fb;
  --bg-dark:   #0a1520;
  --gold:      #b8960c;
  --gold-bg:   #fdf8ec;
  --text:      #3a4255;
  --muted:     #6b7480;
  --success:   #16a34a;
  --danger:    #dc2626;
  --serif:     'Libre Baskerville', Georgia, 'Times New Roman', serif;
  --sans:      'Inter', system-ui, sans-serif;
  --w:         1140px;
  --r:         3px;
  --r-lg:      6px;
  --shadow:    0 1px 4px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.14);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.18; color: var(--ink); }
h1 { font-size: clamp(2.1rem, 4vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 2.8vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 700; }
p  { line-height: 1.78; color: var(--text); }
.lead { font-size: 1.05rem; line-height: 1.82; color: var(--text); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .68rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--navy-lt); margin-bottom: 1.1rem;
}
.eyebrow::before { content: ''; width: 22px; height: 1.5px; background: var(--navy-lt); }
.eyebrow--light { color: rgba(255,255,255,.45); }
.eyebrow--light::before { background: rgba(255,255,255,.3); }
.eyebrow--center { justify-content: center; }
.eyebrow-hero {
  font-size: .68rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: .6rem;
}
.eyebrow-hero::before { content: ''; width: 20px; height: 1px; background: rgba(255,255,255,.35); }

.text-white  { color: #fff !important; }
.text-muted  { color: var(--muted); }
.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2rem; }

/* ── LAYOUT ── */
.wrap { max-width: var(--w); margin: 0 auto; padding: 0 2rem; }
section { padding: 6rem 0; }
.section-dark  { background: var(--navy); }
.section-light { background: var(--bg-lt); }
.section-warm  { background: var(--bg-warm); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--sans); font-size: .85rem; font-weight: 500;
  letter-spacing: .03em; border: none; transition: all .18s ease;
  border-radius: var(--r); padding: .78rem 1.55rem; line-height: 1;
  text-align: center; white-space: nowrap;
}
.btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0; }
.btn-lg { padding: .9rem 1.85rem; font-size: .9rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-primary    { background: var(--navy); color: #fff; }
.btn-primary:hover    { background: #0c1f45; }
.btn-outline    { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover    { background: var(--navy); color: #fff; }
.btn-outline-nav { background: transparent; color: var(--navy); border: 1.5px solid var(--rule); }
.btn-outline-nav:hover { border-color: var(--navy); }
.btn-ghost-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.45); }
.btn-ghost-white:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.8); }
.btn:disabled { opacity: .6; cursor: not-allowed; }
.btn:focus-visible { outline: 2px solid var(--navy-lt); outline-offset: 3px; }

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
#navbar {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow .2s;
}
#navbar.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,.08); }
.nav-wrap {
  max-width: var(--w); margin: 0 auto; padding: 0 2rem;
  height: 68px; display: flex; align-items: center; justify-content: space-between;
}
.wordmark { display: flex; align-items: center; gap: 14px; }
.wm-badge {
  width: 38px; height: 38px; background: var(--navy); border-radius: var(--r);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
}
.wm-line { height: 2px; background: #fff; border-radius: 1px; width: 18px; }
.wm-line--short { width: 12px; align-self: flex-start; margin-left: 4px; }
.wm-text { display: flex; flex-direction: column; line-height: 1; }
.wm-name   { font-family: var(--serif); font-size: .95rem; font-weight: 700; color: var(--navy); }
.wm-parent { font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }
.nav-center { display: flex; gap: 2rem; align-items: center; }
.nav-center a { font-size: .8rem; font-weight: 500; color: var(--text); transition: color .15s; }
.nav-center a:hover { color: var(--navy); }
.nav-right  { display: flex; gap: .75rem; align-items: center; }
.nav-mob    { display: none; background: none; border: none; padding: 6px; }
.nav-mob span {
  display: block; width: 22px; height: 2px; background: var(--navy);
  border-radius: 1px; margin: 4px 0; transition: all .2s;
}

/* Mobile Menu */
.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  background: #fff; border-top: 1px solid var(--rule);
  padding: 1rem 2rem 1.5rem;
}
.mobile-menu.open { display: flex; }
.mob-link {
  padding: .75rem 0; font-size: .9rem; font-weight: 500; color: var(--text);
  border-bottom: 1px solid var(--rule); transition: color .15s;
}
.mob-link:hover { color: var(--navy); }
.mob-cta { margin-top: 1rem; justify-content: center; }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
#hero {
  background: var(--navy); padding: 5.5rem 0 5rem;
  position: relative; overflow: hidden; min-height: 88vh;
  display: flex; align-items: center;
}
.hero-geo {
  position: absolute; right: -60px; top: -60px;
  width: 560px; height: 560px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.04); pointer-events: none;
}
.hero-geo::before {
  content: ''; position: absolute; inset: 70px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.03);
}
.hero-geo::after {
  content: ''; position: absolute; inset: 150px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.025);
}
.hero-inner {
  max-width: var(--w); margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 5rem;
  align-items: center; position: relative; z-index: 1; width: 100%;
}
.hero-content h1 {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 700; color: #fff; line-height: 1.12; margin-bottom: 1.4rem;
}
.hero-content h1 em { font-style: italic; color: rgba(255,255,255,.6); }
.hero-sub {
  font-size: 1rem; color: rgba(255,255,255,.65); line-height: 1.85;
  max-width: 480px; margin-bottom: 2.25rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2.75rem; }
.hero-proof {
  display: flex; gap: 2.5rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hp-item { display: flex; flex-direction: column; gap: 3px; }
.hp-num   { font-family: var(--serif); font-size: 1.55rem; font-weight: 700; color: #fff; }
.hp-label { font-size: .68rem; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.4); }

/* Hero Card */
.hero-visual { position: relative; }
.hero-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-lg); padding: 2rem;
}
.hc-label {
  font-size: .66rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: .6rem;
}
.hc-label::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,.07); }
.hc-row {
  display: flex; align-items: center; gap: 1rem;
  padding: .85rem 0; border-bottom: 1px solid rgba(255,255,255,.06);
}
.hc-row--last { border-bottom: none; }
.hc-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.hc-dot--green { background: #22c55e; }
.hc-dot--blue  { background: #60a5fa; }
.hc-dot--amber { background: #f59e0b; }
.hc-text { flex: 1; }
.hc-title { font-size: .84rem; font-weight: 500; color: #fff; display: block; }
.hc-sub   { font-size: .7rem; color: rgba(255,255,255,.4); display: block; margin-top: 1px; }
.hc-status { font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.55); }
.hero-tag {
  position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%);
  background: #fff; border-radius: var(--r); padding: .5rem 1rem;
  display: flex; align-items: center; gap: .55rem;
  box-shadow: 0 4px 18px rgba(0,0,0,.18); white-space: nowrap;
}
.ht-dot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; }
.hero-tag span { font-size: .73rem; font-weight: 500; color: var(--ink); }

/* ══════════════════════════════════════════
   CREDENTIAL BAR
══════════════════════════════════════════ */
.cred-bar {
  background: var(--bg-lt); border-bottom: 1px solid var(--rule); padding: 1.4rem 0;
}
.cred-list {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 2.5rem; list-style: none;
}
.cred-list li {
  display: flex; align-items: center; gap: .55rem;
  font-size: .74rem; font-weight: 500; letter-spacing: .04em;
  text-transform: uppercase; color: var(--muted);
}
.cred-list svg {
  width: 13px; height: 13px; stroke: var(--navy-mid); fill: none;
  stroke-width: 2.5; flex-shrink: 0;
}

/* ══════════════════════════════════════════
   PROBLEM
══════════════════════════════════════════ */
#problem { background: #fff; padding-bottom: 4rem; }
.problem-layout {
  display: grid; grid-template-columns: 5fr 7fr; gap: 5rem; align-items: start;
}
.pl-left h2 { margin-bottom: 1.25rem; }
.pl-left p  { margin-bottom: 1rem; }
.revenue-block {
  background: var(--navy); border-radius: var(--r-lg); padding: 2rem; margin-top: 2.25rem;
}
.rb-caption {
  font-size: .66rem; letter-spacing: .13em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: 1.35rem;
}
.rb-row {
  display: grid; grid-template-columns: 90px 1fr; gap: 1rem; align-items: start;
  padding-bottom: 1.25rem; margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.rb-row--last { border: none; margin: 0; padding: 0; }
.rb-num { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: #fff; line-height: 1; }
.rb-row p { font-size: .78rem; color: rgba(255,255,255,.5); line-height: 1.65; margin: 0; }
.problem-list { display: flex; flex-direction: column; gap: 0; }
.prob-item {
  display: grid; grid-template-columns: 30px 1fr; gap: 1.25rem;
  padding: 1.75rem 0; border-bottom: 1px solid var(--rule); align-items: start;
}
.prob-item:first-child { padding-top: 0; border-top: 1px solid var(--rule); }
.prob-num { font-family: var(--serif); font-size: .75rem; font-weight: 700; color: var(--rule); padding-top: .2rem; }
.prob-item h3 { font-family: var(--sans); font-size: 1rem; font-weight: 600; color: var(--ink); margin-bottom: .4rem; }
.prob-item p  { font-size: .88rem; color: var(--muted); line-height: 1.7; margin: 0; }

/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */
#services { background: var(--bg-warm); }
.services-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  margin-bottom: 4rem; align-items: end;
}
.sh-desc p { font-size: .9rem; color: var(--muted); line-height: 1.8; margin: 0; }
.services-list { display: flex; flex-direction: column; gap: 0; }
.svc-item {
  display: grid; grid-template-columns: 30px 1fr 110px; gap: 2.5rem;
  padding: 2.75rem 0; border-top: 1px solid var(--rule);
  align-items: start; transition: background .15s;
}
.svc-item:last-child { border-bottom: 1px solid var(--rule); }
.svc-item:hover {
  background: rgba(15,40,86,.025);
  margin: 0 -2rem; padding-left: 2rem; padding-right: 2rem;
}
.svc-index { font-family: var(--serif); font-size: .78rem; color: #d0d8e8; font-weight: 700; padding-top: .25rem; }
.svc-body h3 {
  font-family: var(--serif); font-size: 1.15rem; font-weight: 700;
  color: var(--navy); margin-bottom: .7rem;
}
.svc-body p { font-size: .88rem; color: var(--text); line-height: 1.75; margin: 0; max-width: 560px; }
.svc-outcomes {
  display: flex; flex-direction: column; gap: .45rem; margin-top: 1rem; list-style: none;
}
.svc-outcomes li {
  display: flex; align-items: flex-start; gap: .55rem;
  font-size: .82rem; color: var(--muted);
}
.svc-outcomes li::before { content: '→'; color: var(--navy-lt); flex-shrink: 0; margin-top: 1px; }
.svc-badge {
  font-size: .66rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--navy-lt); text-align: right; padding-top: .3rem; white-space: nowrap;
}

/* ══════════════════════════════════════════
   WHY AGI
══════════════════════════════════════════ */
#why { background: #fff; }
.why-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5.5rem; align-items: start; }
.why-left h2 { margin-bottom: 1.25rem; }
.why-left p  { margin-bottom: 1rem; }
.agi-parent-mark {
  display: flex; align-items: center; gap: .9rem; margin: 2rem 0 2.25rem;
  padding: 1.2rem 1.5rem; border: 1px solid var(--rule);
  border-radius: var(--r); background: var(--bg-lt);
}
.apm-badge {
  width: 44px; height: 44px; background: var(--navy); border-radius: var(--r);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.apm-badge span { font-family: var(--serif); font-size: .82rem; font-weight: 700; color: #fff; }
.apm-name { font-family: var(--serif); font-size: .92rem; font-weight: 700; color: var(--ink); display: block; }
.apm-sub  { font-size: .7rem; color: var(--muted); display: block; margin-top: 2px; }
.differentiators { display: flex; flex-direction: column; }
.diff {
  display: grid; grid-template-columns: 38px 1fr; gap: 1.1rem;
  padding: 1.4rem 0; border-bottom: 1px solid var(--rule); align-items: start;
}
.diff:first-child { border-top: 1px solid var(--rule); }
.diff-ic {
  width: 38px; height: 38px; border: 1.5px solid var(--rule); border-radius: var(--r);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--navy-mid);
}
.diff-ic svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.75; }
.diff-title { font-weight: 600; font-size: .88rem; color: var(--ink); margin-bottom: 4px; }
.diff-desc  { font-size: .82rem; color: var(--muted); line-height: 1.65; margin: 0; }
.crm-panel {
  background: var(--bg-lt); border: 1px solid var(--rule);
  border-radius: var(--r-lg); padding: 2.25rem; margin-bottom: 1.25rem;
}
.crm-panel h3 { font-size: 1rem; color: var(--navy); margin-bottom: .45rem; }
.crm-panel > p { font-size: .85rem; color: var(--muted); margin-bottom: 1.5rem; line-height: 1.75; }
.crm-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; margin-bottom: 1.5rem;
}
.crm-item {
  border: 1px solid var(--rule); border-radius: var(--r); padding: .65rem 1rem;
  font-size: .78rem; font-weight: 600; color: var(--navy-mid); background: #fff;
}
.crm-note { font-size: .78rem; color: var(--muted); line-height: 1.7; border-top: 1px solid var(--rule); padding-top: 1.25rem; margin: 0; }
.not-panel {
  background: var(--bg-lt); border: 1px solid var(--rule);
  border-radius: var(--r); padding: 1.75rem;
}
.not-panel strong { display: block; font-size: .9rem; color: var(--ink); margin-bottom: .5rem; }
.not-panel p { font-size: .82rem; color: var(--muted); line-height: 1.75; margin: 0; }

/* ══════════════════════════════════════════
   PROCESS
══════════════════════════════════════════ */
#process { background: var(--navy); padding: 6rem 0; }
.process-header { text-align: center; margin-bottom: 4.5rem; }
.process-header h2 { color: #fff; }
.proc-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  position: relative; gap: 0;
}
.proc-connector {
  position: absolute; top: 27px;
  left: calc(12.5% + 14px); right: calc(12.5% + 14px);
  height: 1px; background: rgba(255,255,255,.12);
}
.proc-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 1.5rem; position: relative; z-index: 1;
}
.proc-node {
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255,255,255,.07); border: 1.5px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; font-family: var(--serif);
  font-size: .95rem; font-weight: 700; color: #fff;
}
.proc-step--active .proc-node {
  background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.5);
}
.proc-label {
  font-size: .63rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: .5rem;
}
.proc-title {
  font-family: var(--serif); font-size: 1rem; font-weight: 700;
  color: #fff; margin-bottom: .6rem;
}
.proc-desc { font-size: .8rem; color: rgba(255,255,255,.45); line-height: 1.7; margin: 0; }
.proc-cta { text-align: center; margin-top: 4rem; }

/* ══════════════════════════════════════════
   PILOT / ASSESSMENT
══════════════════════════════════════════ */
#pilot { background: #fff; }
.pilot-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.pilot-badge {
  display: inline-block; background: var(--gold-bg); color: var(--gold);
  font-size: .67rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .28rem .75rem; border-radius: 2px; margin-bottom: 1.25rem;
  border: 1px solid rgba(184,150,12,.2);
}
.pilot-left h2  { margin-bottom: 1rem; }
.pilot-left p   { margin-bottom: 1rem; }
.pilot-steps    { display: flex; flex-direction: column; margin-top: 2rem; list-style: none; }
.pstep {
  display: grid; grid-template-columns: 28px 1fr; gap: 1rem;
  padding: 1.2rem 0; border-bottom: 1px solid var(--rule); align-items: start;
}
.pstep:last-child { border: none; }
.pstep-num   { font-family: var(--serif); font-size: .78rem; font-weight: 700; color: var(--navy-lt); padding-top: .1rem; }
.pstep-title { font-weight: 600; font-size: .88rem; color: var(--ink); margin-bottom: 3px; }
.pstep-desc  { font-size: .82rem; color: var(--muted); line-height: 1.65; margin: 0; }
.pilot-box {
  background: var(--navy); border-radius: var(--r-lg); padding: 2.75rem;
}
.pb-head { margin-bottom: 2rem; }
.pb-head h3 { font-family: var(--serif); font-size: 1.3rem; color: #fff; margin-bottom: .5rem; }
.pb-head p  { font-size: .875rem; color: rgba(255,255,255,.55); line-height: 1.75; margin: 0; }
.pb-items   { display: flex; flex-direction: column; gap: .85rem; list-style: none; }
.pb-item {
  display: flex; align-items: flex-start; gap: .85rem;
  font-size: .85rem; color: rgba(255,255,255,.7); line-height: 1.65;
}
.pb-item strong { color: #fff; font-weight: 500; }
.pb-check {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.pb-check svg { width: 9px; height: 9px; stroke: #fff; fill: none; stroke-width: 2.5; }
.pb-cta { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.1); }
.pb-note { font-size: .75rem; color: rgba(255,255,255,.35); margin-top: .75rem; line-height: 1.65; margin-bottom: 0; }

/* ══════════════════════════════════════════
   INDUSTRIES
══════════════════════════════════════════ */
#industries { background: var(--bg-lt); }
.ind-layout { display: grid; grid-template-columns: 4fr 8fr; gap: 5rem; align-items: start; }
.ind-left h2 { margin-bottom: 1rem; }
.ind-left p  { margin-bottom: 0; }
.ind-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--rule);
  border: 1px solid var(--rule); border-radius: var(--r-lg); overflow: hidden;
}
.ind-cell { background: #fff; padding: 1.65rem 1.5rem; transition: background .15s; }
.ind-cell:hover { background: var(--bg-lt); }
.ind-name { font-family: var(--serif); font-size: .97rem; font-weight: 700; color: var(--navy); margin-bottom: .35rem; }
.ind-note { font-size: .78rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* ══════════════════════════════════════════
   TRUST
══════════════════════════════════════════ */
#trust { background: #fff; }
.trust-h2 { max-width: 540px; margin-bottom: 3rem; }
.trust-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.trust-card { border: 1px solid var(--rule); border-radius: var(--r-lg); padding: 2rem; }
.tc-icon {
  width: 40px; height: 40px; border: 1.5px solid var(--rule); border-radius: var(--r);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; color: var(--navy-mid);
}
.tc-icon svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.75; }
.trust-card h3 { font-size: 1rem; margin-bottom: .55rem; }
.trust-card p  { font-size: .85rem; color: var(--muted); line-height: 1.72; margin: 0; }
.trust-placeholders {
  margin-top: 2.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  background: var(--bg-lt); border: 1px solid var(--rule);
  border-radius: var(--r-lg); padding: 2rem;
}
.trust-ph h3 { font-size: .97rem; margin-bottom: .5rem; }
.trust-ph p  { font-size: .85rem; color: var(--muted); line-height: 1.72; margin: 0; }
.ph-label {
  display: inline-block; font-size: .62rem; color: var(--muted);
  border: 1px dashed var(--rule); border-radius: 2px; padding: .22rem .6rem;
  margin-bottom: .75rem; letter-spacing: .06em; text-transform: uppercase;
}

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
#faq { background: var(--bg-warm); }
.faq-layout { display: grid; grid-template-columns: 4fr 8fr; gap: 5rem; align-items: start; }
.faq-left h2 { margin-bottom: 1rem; }
.faq-left p  { margin-bottom: 0; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-item:first-child { border-top: 1px solid var(--rule); }
.faq-q {
  width: 100%; background: none; border: none; padding: 1.35rem 0;
  font-family: var(--sans); font-size: .92rem; font-weight: 600; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  text-align: left; cursor: pointer; transition: color .15s;
}
.faq-q:hover { color: var(--navy); }
.faq-icon {
  width: 20px; height: 20px; border: 1px solid var(--rule); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--muted); position: relative; transition: all .15s;
}
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: currentColor; border-radius: 1px;
}
.faq-icon::before { width: 8px; height: 1.5px; }
.faq-icon::after  { width: 1.5px; height: 8px; transition: transform .2s; }
.faq-item.open .faq-icon { background: var(--navy); border-color: var(--navy); color: #fff; }
.faq-item.open .faq-icon::after { transform: rotate(90deg); }
/* Answers hidden by default; revealed when parent has .open */
.faq-a {
  font-size: .88rem; color: var(--muted); line-height: 1.8;
  padding-bottom: 1.35rem; margin: 0;
  display: none;
}
.faq-item.open .faq-a { display: block; }

/* ══════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════ */
.cta-band { background: var(--navy); padding: 5.5rem 0; text-align: center; }
.ctab-inner { max-width: 640px; margin: 0 auto; }
.ctab-inner h2 { color: #fff; margin-bottom: 1rem; }
.ctab-sub {
  color: rgba(255,255,255,.6); font-size: 1rem; line-height: 1.85;
  margin-bottom: 2.25rem;
}
.ctab-acts { display: flex; justify-content: center; gap: .9rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.ctab-reassure { font-size: .74rem; color: rgba(255,255,255,.3); }

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
#contact { background: var(--bg-lt); }
.contact-layout { display: grid; grid-template-columns: 5fr 7fr; gap: 5rem; align-items: start; }
.cl-left h2 { margin-bottom: 1rem; }
.cl-left p  { margin-bottom: 0; }
.contact-dets { display: flex; flex-direction: column; gap: .85rem; margin-top: 2rem; }
.cdet { display: flex; align-items: center; gap: .85rem; }
.cdet-ic {
  width: 34px; height: 34px; border: 1.5px solid var(--rule); border-radius: var(--r);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--navy-mid); background: #fff;
}
.cdet-ic svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }
.cdet-label { font-size: .67rem; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); display: block; }
.cdet-value { font-size: .88rem; font-weight: 500; color: var(--ink); }
a.cdet-value:hover { color: var(--navy); text-decoration: underline; }

/* Contact Form */
.contact-form-wrap {
  background: #fff; border: 1px solid var(--rule);
  border-radius: var(--r-lg); padding: 2.5rem;
}
.contact-form-wrap h3 { font-family: var(--serif); font-size: 1.05rem; color: var(--ink); margin-bottom: .3rem; }
.form-sub { font-size: .82rem; color: var(--muted); margin-bottom: 1.5rem; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { margin-bottom: 1.1rem; }
.fg label {
  display: block; font-size: .7rem; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase; color: var(--muted); margin-bottom: .35rem;
}
.req { color: var(--danger); }
.fg input, .fg select, .fg textarea {
  width: 100%; padding: .72rem .95rem;
  border: 1.5px solid var(--rule); border-radius: var(--r);
  font-family: var(--sans); font-size: .875rem; color: var(--ink);
  background: #fff; transition: border-color .15s; outline: none;
  appearance: none; -webkit-appearance: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--navy); }
.fg input.error, .fg select.error, .fg textarea.error { border-color: var(--danger); }
.fg textarea { height: 110px; resize: vertical; line-height: 1.65; }
.field-error { display: block; font-size: .73rem; color: var(--danger); margin-top: .3rem; min-height: 1rem; }
.form-status {
  margin-bottom: 1rem; padding: .85rem 1rem; border-radius: var(--r);
  font-size: .875rem; font-weight: 500; display: none;
}
.form-status.success { background: #dcfce7; color: #15803d; display: block; }
.form-status.error   { background: #fee2e2; color: #b91c1c; display: block; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer { background: var(--bg-dark); color: #fff; padding: 4rem 0 2.25rem; }
.foot-grid {
  display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.foot-name   { font-family: var(--serif); font-size: 1rem; font-weight: 700; color: #fff; }
.foot-parent { font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); margin: .2rem 0 1rem; }
.foot-brand p { font-size: .8rem; color: rgba(255,255,255,.35); line-height: 1.75; margin: 0; }
.foot-url   { font-size: .72rem; color: rgba(255,255,255,.2); margin-top: .9rem; display: block; }
.foot-col nav { display: flex; flex-direction: column; gap: .55rem; }
.foot-col a { font-size: .8rem; color: rgba(255,255,255,.45); transition: color .15s; }
.foot-col a:hover { color: #fff; }
.fc-title   { font-size: .64rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: .9rem; }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.foot-bottom p { font-size: .73rem; color: rgba(255,255,255,.25); margin: 0; }
.fbot-links { display: flex; gap: 1.5rem; }
.fbot-links a { font-size: .73rem; color: rgba(255,255,255,.25); transition: color .15s; }
.fbot-links a:hover { color: rgba(255,255,255,.65); }

/* ══════════════════════════════════════════
   MODAL
══════════════════════════════════════════ */
.modal-backdrop {
  display: none; position: fixed; inset: 0;
  background: rgba(10,21,32,.78); z-index: 300;
}
.modal-backdrop.open { display: block; }
.modal-overlay {
  display: none; position: fixed; inset: 0;
  z-index: 400; overflow-y: auto;
  padding: 2rem 1.5rem 3rem;
}
.modal-overlay.open { display: flex; align-items: flex-start; justify-content: center; }
.modal-box {
  background: #fff; border-radius: var(--r-lg); padding: 2.5rem;
  max-width: 680px; width: 100%; position: relative;
  box-shadow: var(--shadow-lg);
}
.modal-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 1.25rem;
}
.modal-head h2 { font-size: 1.4rem; color: var(--navy); }
.modal-close {
  background: none; border: none; padding: 4px;
  color: var(--muted); transition: color .15s; border-radius: var(--r);
}
.modal-close:hover { color: var(--ink); }
.modal-close svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; display: block; }
.modal-box > p { font-size: .875rem; color: var(--text); line-height: 1.8; margin-bottom: 1.5rem; }
.calendly-placeholder {
  background: var(--bg-lt); border: 1.5px dashed var(--rule);
  border-radius: var(--r); padding: 2.5rem 2rem; text-align: center;
}
.cal-ph-icon { margin: 0 auto .9rem; width: 40px; height: 40px; color: var(--navy-lt); }
.cal-ph-icon svg { width: 40px; height: 40px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.calendly-placeholder strong { display: block; font-size: .97rem; font-weight: 600; color: var(--navy); margin-bottom: .5rem; }
.calendly-placeholder > p { font-size: .82rem; color: var(--muted); margin-bottom: .75rem; }
.cal-code {
  display: block; font-size: .72rem; background: #e8eef8; padding: .75rem 1rem;
  border-radius: var(--r); color: var(--navy-mid); font-family: monospace;
  text-align: left; white-space: pre; overflow-x: auto; line-height: 1.6; margin-top: .75rem;
}

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .problem-layout  { grid-template-columns: 1fr; gap: 3rem; }
  .why-layout      { grid-template-columns: 1fr; gap: 3rem; }
  .pilot-layout    { grid-template-columns: 1fr; gap: 3rem; }
  .contact-layout  { grid-template-columns: 1fr; gap: 3rem; }
  .services-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .sh-desc         { display: none; }
  .ind-layout      { grid-template-columns: 1fr; gap: 3rem; }
  .faq-layout      { grid-template-columns: 1fr; gap: 2.5rem; }
  .foot-grid       { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 900px) {
  .hero-inner   { grid-template-columns: 1fr; gap: 0; }
  .hero-visual  { display: none; }
  .nav-center, .nav-right { display: none; }
  .nav-mob      { display: block; }
  section       { padding: 4rem 0; }
  .proc-grid    { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .proc-connector { display: none; }
  .trust-grid   { grid-template-columns: 1fr; }
  .trust-placeholders { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .wrap            { padding: 0 1.25rem; }
  .f-row           { grid-template-columns: 1fr; }
  .ind-grid        { grid-template-columns: 1fr 1fr; }
  .crm-grid        { grid-template-columns: 1fr 1fr; }
  .proc-grid       { grid-template-columns: 1fr; }
  .hero-proof      { flex-wrap: wrap; gap: 1.25rem; }
  .foot-grid       { grid-template-columns: 1fr; }
  .cred-list       { gap: 1.25rem; }
  .ctab-acts       { flex-direction: column; align-items: center; }
  .svc-item        { grid-template-columns: 1fr; gap: .75rem; }
  .svc-index       { display: none; }
  .svc-badge       { text-align: left; padding-top: 0; }
  .pilot-box       { padding: 2rem 1.5rem; }
  .rb-row          { grid-template-columns: 70px 1fr; }
}

/* ── PRINT ── */
@media print {
  #navbar, .modal-overlay, .modal-backdrop, .hero-visual, .cta-band { display: none; }
}
