/* Extends each satellite page’s inline :root; values are literal parity only. */
:root {
  --ev-line-faint-w: rgba(255,255,255,0.08);
  --ev-line-soft-w: rgba(255,255,255,0.1);
  --ev-line-mid-w: rgba(255,255,255,0.12);
  --ev-green-edge: #B7DFD0;
  --ev-amber-edge: #FCD34D;
  /* Motion: default browser easing only (no easing keyword in originals). */
  --ev-t-fast: .15s;
  --ev-t-mid: .2s;
  /* Primitives duplicated with identical roles in this sheet. */
  --ev-r-2: 2px;
  --ev-measure-copy: 520px;
  --ev-measure-cta: 640px;
  --ev-card-pad: 1.5rem;
  --ev-panel-pad-lg: 1.75rem;
}

.nav-hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:6px; background:none; border:none; margin-left:auto; }
.nav-hamburger span { display:block; width:22px; height:2px; background:var(--text); border-radius:var(--ev-r-2); transition:all var(--ev-t-mid); }
.nav-hamburger.open span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity:0; }
.nav-hamburger.open span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }
.nav-drawer { display:none; position:fixed; top:62px; left:0; right:0; background:var(--white); border-bottom:1px solid var(--border); box-shadow:var(--sh3); z-index:999; padding:.5rem 1.5rem max(1rem, env(safe-area-inset-bottom)); }
.nav-drawer.open { display:block; }
.nav-drawer ul { list-style:none; }
.nav-drawer li a { display:block; padding:.75rem 0; font-family:var(--fb); font-size:1rem; color:var(--text-2); text-decoration:none; border-bottom:1px solid var(--border-2); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PAGE HERO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.page-hero {
  background: var(--navy);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(0,119,182,0.25), transparent);
  pointer-events: none;
}
.page-hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
}
.page-hero .eyebrow { color: var(--blue-200); }
.page-hero .eyebrow::before { background: var(--blue-400); }
.page-hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.page-hero .lead { color: rgba(255,255,255,0.88); max-width: var(--ev-measure-copy); margin-bottom: 2rem; }
.page-hero-ctas { display:flex; gap:.75rem; flex-wrap:wrap; }

/* Hero pricing strip */
.hero-pricing-strip {
  display: grid;
  grid-template-columns: 1fr 100px 1fr;
  gap: 0;
  margin-top: 2.5rem;
  border: 1px solid var(--ev-line-soft-w);
  border-radius: var(--r);
  overflow: hidden;
  background: rgba(0,20,40,0.4);
}
.hps-col { padding: 1.25rem 1.5rem; }
.hps-before { border-right: 1px solid var(--ev-line-faint-w); }
.hps-after  {}
.hps-label {
  font-family: var(--fb);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: .625rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--ev-line-faint-w);
}
.hps-rows { display: flex; flex-direction: column; gap: .3rem; }
.hps-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .4rem .5rem;
  border-radius: var(--ev-r-2);
}
.hps-row-hi  { background: rgba(155,28,28,0.25); border: 1px solid rgba(252,165,165,0.15); }
.hps-total-row {
  margin-top: .25rem;
  padding-top: .5rem;
  border-top: 1px solid var(--ev-line-mid-w);
}
.hps-item {
  font-family: var(--fb);
  font-size: .78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}
.hps-item small {
  display: block;
  font-size: .68rem;
  color: rgba(252,165,165,0.7);
}
.hps-total-label { font-weight: 600; color: rgba(255,255,255,0.9); }
.hps-val {
  font-family: var(--fd);
  font-size: .9rem;
  font-weight: 800;
  white-space: nowrap;
  letter-spacing: -.01em;
}
.hps-total { font-size: 1.05rem !important; }
.hps-red   { color: rgba(252,165,165,0.9); }
.hps-green { color: rgba(110,231,183,0.95); }
.hps-check { color: rgba(110,231,183,0.8); font-size: .875rem; flex-shrink:0; }
.hps-row-feature { background: rgba(10,107,66,0.12); border-radius: var(--ev-r-2); }
.hps-note {
  font-family: var(--fb);
  font-size: .65rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  margin-top: .5rem;
  font-style: italic;
}
.hps-arrow-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .3rem;
  padding: 1rem .5rem;
  border-right: 1px solid var(--ev-line-faint-w);
  background: rgba(0,119,182,0.15);
}
.hps-arrow-icon {
  font-size: 1.5rem;
  color: var(--blue-400);
}
.hps-saving {
  font-family: var(--fd);
  font-size: .8rem;
  font-weight: 800;
  color: rgba(110,231,183,0.9);
  text-align: center;
}
.hps-arrow-sub {
  font-family: var(--fb);
  font-size: .62rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  text-align: center;
  line-height: 1.4;
}

/* Hero onboarding timeline */
.hero-timeline {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--ev-line-faint-w);
}
.ht-label {
  font-family: var(--fb);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: .875rem;
}
.ht-svg {
  width: 100%;
  display: block;
  overflow: visible;
}

/* Service model card on the right */
.model-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--ev-line-mid-w);
  border-radius: var(--r);
  padding: var(--ev-panel-pad-lg);
}
.model-card-title {
  font-family: var(--fb);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.60);
  margin-bottom: 1.25rem;
}
.model-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--ev-line-faint-w);
}
.model-row:last-child { border-bottom: none; }
.model-icon {
  width: 40px; height: 40px;
  border-radius: var(--r);
  background: var(--blue-600);
  display:flex; align-items:center; justify-content:center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.model-icon svg { width:18px; height:18px; stroke:var(--white); fill:none; stroke-width:2; }
.model-row-title {
  font-family: var(--fd);
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .2rem;
}
.model-row-desc {
  font-family: var(--fb);
  font-size: .78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
}
.model-row-callout {
  margin-top: .625rem;
  padding: .75rem .875rem;
  background: rgba(144,224,239,0.08);
  border-left: 2px solid rgba(144,224,239,0.4);
  border-radius: 0 var(--r) var(--r) 0;
}
.mrc-label {
  font-family: var(--fb);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(144,224,239,0.8);
  margin-bottom: .3rem;
}
.mrc-text {
  font-family: var(--fb);
  font-size: .72rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.mrc-text strong { font-weight: 600; color: rgba(255,255,255,0.92); }
.model-pricing {
  margin-top: 1.25rem;
  padding: 1rem;
  background: rgba(0,30,50,0.35);
  border-radius: var(--r);
  border: 1px solid var(--ev-line-mid-w);
}
.model-pricing-context { display:flex; flex-direction:column; gap:.35rem; }
.mpc-row { display:flex; align-items:center; justify-content:space-between; gap:.75rem; padding:.5rem .75rem; border-radius:var(--ev-r-2); }
.mpc-before  { background:rgba(155,28,28,0.2);  border:1px solid rgba(252,165,165,0.15); }
.mpc-danger  { background:rgba(155,28,28,0.32); border:1px solid rgba(252,165,165,0.25); }
.mpc-after   { background:rgba(10,107,66,0.3);  border:1px solid rgba(110,231,183,0.25); }
.mpc-total-before {
  display:flex; align-items:center; justify-content:space-between; gap:.75rem;
  padding:.4rem .75rem;
  border-top: 1px solid rgba(252,165,165,0.3);
  margin-top:.1rem;
}
.mpc-total-val { font-size:1.3rem !important; }
.mpc-label-group { display:flex; flex-direction:column; gap:2px; flex:1; min-width:0; }
.mpc-label { font-family:var(--fb); font-size:.75rem; font-weight:500; color:rgba(255,255,255,0.88); }
.mpc-label-sub { font-family:var(--fb); font-size:.65rem; font-weight:300; color:rgba(255,255,255,0.5); }
.mpc-val { font-family:var(--fd); font-size:1.05rem; font-weight:800; letter-spacing:-.02em; line-height:1; white-space:nowrap; }
.mpc-unit { font-family:var(--fb); font-size:.65rem; font-weight:400; color:rgba(255,255,255,0.5); }
.mpc-val-before { color:rgba(252,165,165,0.9); }
.mpc-val-after  { color:rgba(110,231,183,0.95); }
.mpc-arrow { text-align:center; font-family:var(--fb); font-size:.68rem; font-weight:600; color:rgba(144,224,239,0.8); letter-spacing:.02em; padding:.25rem .5rem; background:rgba(0,150,199,0.15); border-radius:var(--ev-r-2); }
.model-pricing-note {
  font-family: var(--fb);
  font-size: .68rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  margin-top: .625rem;
  text-align: center;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION: 4-PHASE JOURNEY
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#journey { background: var(--white); border-top: 1px solid var(--border-2); }

/* Shared 4-column hairline grid shell (journey + mission metrics). */
.journey-phases,
.mission-nums {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin-top: 2.5rem;
  box-shadow: var(--sh1);
}
.phase {
  background: var(--white);
  padding: 2rem 1.5rem;
  position: relative;
  transition: background var(--ev-t-mid);
}
.phase:hover { background: var(--blue-50); }
/* Active phase indicator */
.phase-num {
  font-family: var(--fm);
  font-size: .65rem;
  font-weight: 500;
  color: var(--blue-400);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .875rem;
}
.phase-icon {
  width: 48px; height: 48px;
  background: var(--blue-600);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
  box-shadow: 0 2px 8px rgba(0,119,182,0.25);
}
.phase-icon svg { width:22px; height:22px; stroke:var(--white); fill:none; stroke-width:1.75; }
.phase-title { font-family:var(--fd); font-size:1rem; font-weight:700; color:var(--navy); margin-bottom:.5rem; }
.phase-desc { font-family:var(--fb); font-size:.8125rem; font-weight:300; color:var(--text-3); line-height:1.65; margin-bottom:1rem; }
.phase-timeline {
  font-family: var(--fm);
  font-size: .68rem;
  font-weight: 500;
  color: var(--green);
  background: var(--green-bg);
  padding: .2rem .5rem;
  border-radius: var(--ev-r-2);
  display: inline-block;
}
.phase-items {
  list-style: none;
  margin-top: .875rem;
  padding-top: .875rem;
  border-top: 1px solid var(--border-2);
}
.phase-item {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  padding: .3rem 0;
  font-family: var(--fb);
  font-size: .78rem;
  font-weight: 300;
  color: var(--text-3);
}
.phase-dot { width:4px; height:4px; border-radius:50%; background:var(--blue-400); margin-top:8px; flex-shrink:0; }
/* Connector — top border accent instead of broken arrow */
.phase { border-top: 3px solid transparent; }
.phase:hover { border-top-color: var(--blue-600); }
.phase::after { display: none; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION: WHAT'S INCLUDED
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#inclus { background: var(--bg); border-top: 1px solid var(--border-2); }

.inclus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2.5rem;
  align-items: start;
}

/* Bordered neutral shell: table/callout/comparison (inner rows supply faces). */
.inclus-table,
.pricing-callout,
.comp-table {
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sh1);
}
.pricing-callout,
.comp-table {
  margin-top: 2.5rem;
}
.inclus-head {
  padding: .75rem 1.25rem;
  font-family: var(--fb);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.inclus-head.green { background: var(--green-bg); color: var(--green); }
.inclus-head.red   { background: var(--red-bg);   color: var(--red); }
/* Prereq table — neutral tone */
.inclus-prereq .inclus-svg-icon {
  background: var(--bg);
  color: var(--text-3);
}
.inclus-row {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .75rem 1.25rem;
  border-bottom: 1px solid var(--border-2);
  background: var(--white);
  transition: background var(--ev-t-fast);
}
.inclus-row:last-child { border-bottom: none; }
.inclus-row:hover { background: var(--bg-panel); }
.inclus-icon { font-size: .875rem; flex-shrink: 0; margin-top: 1px; }
.inclus-svg-icon {
  width: 32px; height: 32px;
  background: var(--blue-50);
  border: 1px solid var(--border);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--blue-700);
}
.inclus-svg-icon svg { width: 15px; height: 15px; }
.inclus-label {
  font-family: var(--fb);
  font-size: .875rem;
  font-weight: 400;
  color: var(--text-2);
  line-height: 1.5;
}
.inclus-label small {
  display: block;
  font-size: .72rem;
  font-weight: 300;
  color: var(--text-4);
  margin-top: 1px;
}

/* Prereq panel (client obligations) */
.prereq-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sh1);
}
.prereq-head {
  padding: .875rem 1.25rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  font-family: var(--fb);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-3);
}
.prereq-item {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-2);
}
.prereq-item:last-child { border-bottom: none; }
.prereq-num {
  font-family: var(--fm);
  font-size: .65rem;
  font-weight: 500;
  color: var(--text-4);
  width: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.prereq-content {}
.prereq-title {
  font-family: var(--fd);
  font-size: .875rem;
  font-weight: 700;
  color: var(--blue-900, var(--navy));
  margin-bottom: .2rem;
}
.prereq-desc {
  font-family: var(--fb);
  font-size: .78rem;
  font-weight: 300;
  color: var(--text-3);
  line-height: 1.55;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION: CONTRAT
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#contrat { background: var(--white); border-top: 1px solid var(--border-2); }

.contrat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.contrat-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sh1);
}
.cc-head {
  padding: 1rem 1.25rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  gap: .625rem;
}
.cc-head-icon {
  width: 30px; height: 30px;
  background: var(--blue-50);
  border: 1px solid var(--border);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cc-head-icon svg { width:14px; height:14px; stroke:var(--blue-700); fill:none; stroke-width:2; }
.cc-head-label {
  font-family: var(--fd);
  font-size: .875rem;
  font-weight: 700;
  color: var(--navy);
}
.cc-body { padding: 1.25rem; }
.cc-item {
  padding: .5rem 0;
  border-bottom: 1px solid var(--border-2);
}
.cc-item:last-child { border-bottom: none; }
.cc-item-label {
  font-family: var(--fb);
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-4);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .2rem;
}
.cc-item-val {
  font-family: var(--fb);
  font-size: .875rem;
  font-weight: 400;
  color: var(--text-2);
  line-height: 1.5;
}
.cc-item-val strong {
  font-weight: 600;
  color: var(--navy);
}
.cc-item-sub {
  font-family: var(--fm);
  font-size: .68rem;
  color: var(--text-4);
  margin-top: 2px;
}
.cc-item ul {
  margin: 0.35rem 0 0 1.15rem;
  padding: 0;
  line-height: 1.5;
}

/* Pricing band callout — shell shared with .inclus-table / .comp-table above. */
.pc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .875rem 1.5rem;
  background: var(--navy);
  color: var(--white);
}
.pc-title {
  font-family: var(--fb);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.pc-body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-2);
}
.pc-cell {
  background: var(--white);
  padding: 1.25rem;
}
.pc-cell-label {
  font-family: var(--fb);
  font-size: .68rem;
  font-weight: 600;
  color: var(--text-4);
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: .375rem;
}
.pc-cell-val {
  font-family: var(--fd);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--blue-600);
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: .3rem;
}
.pc-cell-desc {
  font-family: var(--fb);
  font-size: .72rem;
  font-weight: 300;
  color: var(--text-3);
  line-height: 1.5;
}
.pc-note {
  padding: .75rem 1.5rem;
  background: var(--bg);
  border-top: 1px solid var(--border-2);
  font-family: var(--fb);
  font-size: .72rem;
  font-weight: 300;
  color: var(--text-4);
  font-style: italic;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION: COMPARISON
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#comparaison { background: var(--bg); border-top: 1px solid var(--border-2); }

/* .comp-table shell + margin: grouped with .inclus-table / .pricing-callout */
.comp-header {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  background: var(--navy);
}
.comp-col-head {
  padding: 1rem 1.25rem;
  font-family: var(--fd);
  font-size: .8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  border-right: 1px solid var(--ev-line-soft-w);
}
.comp-col-head:first-child { color: rgba(255,255,255,0.45); font-weight:400; font-family:var(--fb); }
.comp-col-head.highlighted { background: rgba(0,119,182,0.4); color: var(--white); }
.comp-col-head:last-child { border-right: none; }
.comp-row {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border-2);
  background: var(--white);
  transition: background var(--ev-t-fast);
}
.comp-row:last-child { border-bottom: none; }
.comp-row:hover { background: var(--blue-50); }
.comp-row.section-row {
  background: var(--bg);
  border-bottom: 2px solid var(--border);
}
.comp-cell {
  padding: .75rem 1.25rem;
  font-family: var(--fb);
  font-size: .875rem;
  font-weight: 400;
  color: var(--text-3);
  border-right: 1px solid var(--border-2);
  display: flex;
  align-items: center;
}
.comp-cell:last-child { border-right: none; }
.comp-cell:first-child {
  font-weight: 500;
  color: var(--text-2);
  font-size: .875rem;
}
.comp-cell.highlighted {
  background: rgba(0,119,182,0.04);
  color: var(--navy);
  font-weight: 500;
}
.comp-row.section-row .comp-cell {
  font-family: var(--fb);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-4);
}
.comp-tick-g { color: var(--green); font-size: 1rem; }
.comp-tick-a { color: var(--amber); font-size: 1rem; }
.comp-tick-r { color: var(--red); font-size: 1rem; }
.comp-dash  { color: var(--text-4); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION: CONVERSION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#contact { background: var(--navy); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 4rem;
  align-items: center;
  padding: 5rem 0;
}
.contact-left .eyebrow { color:var(--blue-200); }
.contact-left .eyebrow::before { background:var(--blue-400); }
.contact-left h2 { color:var(--white); margin-bottom:.875rem; }
.contact-left .lead { color:rgba(255,255,255,0.6); }
.contact-steps {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: .625rem;
}
.cs {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: .875rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--ev-line-soft-w);
  border-radius: var(--r);
}
.cs-n {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(144,224,239,0.4);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fm); font-size: .68rem; font-weight: 500;
  color: var(--blue-200);
  flex-shrink: 0;
}
.cs-text { font-family:var(--fb); font-size:.8125rem; font-weight:300; color:rgba(255,255,255,0.6); line-height:1.5; }
.cs-text strong { color:var(--white); font-weight:500; }

/* Contact form card */
.contact-form-card {
  background: var(--white);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sh3);
}
.form-card-head {
  padding: 1.25rem 1.5rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.form-card-title {
  font-family: var(--fd);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .25rem;
}
.form-card-sub {
  font-family: var(--fb);
  font-size: .78rem;
  font-weight: 300;
  color: var(--text-3);
}
.form-card-body { padding: var(--ev-card-pad); }
.fg { margin-bottom: .875rem; }
.fl { display:block; font-family:var(--fb); font-size:.7rem; font-weight:600; letter-spacing:.05em; text-transform:uppercase; color:var(--text-3); margin-bottom:.35rem; }
.fi, .fs {
  width:100%; padding:.65rem .875rem;
  background:var(--white); border:1px solid var(--border); border-radius:var(--r);
  color:var(--text); font-family:var(--fb); font-size:.875rem; font-weight:400;
  transition:border-color var(--ev-t-fast); outline:none; -webkit-appearance:none;
}
.fi:focus, .fs:focus { border-color:var(--blue-600); box-shadow:0 0 0 3px rgba(0,119,182,0.1); }
.fr-2 { display:grid; grid-template-columns:1fr 1fr; gap:.75rem; }
.form-note { margin-top:.75rem; font-family:var(--fb); font-size:.72rem; font-weight:300; color:var(--text-4); text-align:center; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
footer {
  background: var(--navy);
  padding: 2.25rem 0;
  border-top: 3px solid var(--blue-600);
}
.footer-inner { display:flex; align-items:center; justify-content:space-between; }
.f-logo { font-family:var(--fd); font-weight:800; font-size:1.1rem; color:rgba(255,255,255,0.6); text-decoration:none; }
.f-links { display:flex; gap:1.75rem; list-style:none; }
.f-links a { font-family:var(--fb); font-size:.78rem; color:rgba(255,255,255,0.35); text-decoration:none; transition:color var(--ev-t-fast); }
.f-links a:hover { color:rgba(255,255,255,0.7); }
.f-cert { font-family:var(--fm); font-size:.65rem; color:rgba(255,255,255,0.3); letter-spacing:.05em; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1024px) {
  .journey-phases { grid-template-columns: 1fr 1fr; }
  .phase::after { display: none; }
  .comp-header, .comp-row { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
@media (max-width: 900px) {
  .page-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .inclus-grid { grid-template-columns: 1fr; }
  .contrat-grid { grid-template-columns: 1fr; }
  .pc-body { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .hero-pricing-strip { grid-template-columns: 1fr; }
  .hps-before { border-right: none; border-bottom: 1px solid var(--ev-line-faint-w); }
  .hps-arrow-col { flex-direction: row; gap: 1rem; padding: .75rem 1.5rem; border-right: none; border-top: 1px solid var(--ev-line-faint-w); border-bottom: 1px solid var(--ev-line-faint-w); }
  .ht-svg { min-width: 620px; }
  .hero-timeline { overflow-x: auto; -webkit-overflow-scrolling: touch; -webkit-mask-image: linear-gradient(to right, black 90%, transparent 100%); mask-image: linear-gradient(to right, black 90%, transparent 100%); }
  .nav-links { display: none; }
  .nav-compliance span { display: none; }
  .nav-compliance { padding: .25rem .5rem; }
  .nav-hamburger { display: flex; }
  nav { padding: 0 1.25rem; }
  .container { padding: 0 1.25rem; }
  .section-pad { padding: 3rem 0; }
  .page-hero { padding: 3.5rem 0 3rem; }
  .journey-phases { grid-template-columns: 1fr; }
  .pc-body { grid-template-columns: 1fr; }
  .comp-header, .comp-row { grid-template-columns: 1.2fr repeat(3, 1fr); font-size: .78rem; }
  .comp-cell { padding: .625rem .875rem; font-size: .78rem; }
  .fr-2 { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 1.25rem; align-items: flex-start; }
  .f-links { flex-wrap: wrap; gap: .625rem 1.25rem; }
  .fi, .fs { font-size: 16px !important; }
}

/* === Satellite HTML: restores layout not present in truncated inline <style> === */
.page-hero-inner { grid-template-columns: 1fr; max-width: 880px; }
.ph-ctas { display: flex; gap: .75rem; flex-wrap: wrap; }
.nav-cta-desktop { display: inline-flex; align-items: center; }
@media (max-width: 768px) {
  .nav-cta-desktop { display: none !important; }
}

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-steps { display: flex; flex-direction: column; gap: .625rem; margin-top: .5rem; }
.cs-step { display: flex; gap: .875rem; padding: .75rem 1rem; background: var(--bg-panel); border: 1px solid var(--border); border-radius: var(--r); }
.cs-num { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--blue-400); display: flex; align-items: center; justify-content: center; font-family: var(--fm); font-size: .68rem; font-weight: 600; color: var(--blue-600); flex-shrink: 0; }
.cs-text { font-family: var(--fb); font-size: .8125rem; font-weight: 300; color: var(--text-2); line-height: 1.55; }
.cs-text strong { font-weight: 600; color: var(--navy); }
.address-card { margin-top: 1.5rem; padding: 1.25rem; border: 1px solid var(--border); border-radius: var(--r); background: var(--white); }
.ac-label { font-family: var(--fm); font-size: .62rem; font-weight: 600; color: var(--text-4); letter-spacing: .08em; text-transform: uppercase; margin-bottom: .35rem; }
.ac-name { font-family: var(--fd); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.ac-addr { font-family: var(--fb); font-size: .875rem; color: var(--text-2); line-height: 1.6; }
.map-placeholder { margin-top: 1rem; border-radius: var(--r); overflow: hidden; border: 1px solid var(--border); }
.map-svg { display: block; width: 100%; height: auto; vertical-align: middle; }
.map-label { padding: .5rem .75rem; background: var(--bg); font-family: var(--fm); font-size: .65rem; color: var(--text-3); text-align: center; }
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); box-shadow: var(--sh2); overflow: hidden; align-self: start; }
.fc-head { padding: 1.25rem 1.5rem; background: var(--bg); border-bottom: 1px solid var(--border); }
.fc-title { font-family: var(--fd); font-size: 1rem; font-weight: 700; color: var(--navy); }
.fc-sub { font-family: var(--fb); font-size: .78rem; font-weight: 300; color: var(--text-3); margin-top: .25rem; }
.fc-body { padding: var(--ev-card-pad); }

.story-grid { display: grid; grid-template-columns: 1fr minmax(280px, 380px); gap: 3rem; align-items: start; }
.story-body p { margin-bottom: 1rem; font-family: var(--fb); font-size: .9375rem; font-weight: 300; color: var(--text-2); line-height: 1.7; }
/* White bordered shell: infra credentials, live-data panel, conformité cards, pain/sol. */
.infra-creds,
.ps-card,
.reg-card,
.cd {
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--sh1);
}
.cd {
  position: sticky;
  top: 78px;
  align-self: start;
}
.ic-head { padding: 1rem 1.25rem; background: var(--navy); color: var(--white); }
.ic-head-title { font-family: var(--fd); font-size: .95rem; font-weight: 700; }
.ic-head-sub { font-family: var(--fb); font-size: .72rem; font-weight: 300; color: rgba(255,255,255,.7); margin-top: .25rem; }
.ic-item { display: flex; gap: 1rem; padding: 1rem 1.25rem; border-bottom: 1px solid var(--border-2); }
.ic-item:last-child { border-bottom: none; }
.ic-icon { width: 40px; height: 40px; background: var(--blue-50); border: 1px solid var(--border); border-radius: var(--r); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ic-icon svg { width: 20px; height: 20px; stroke: var(--blue-700); fill: none; stroke-width: 1.75; }
.ic-text-title { font-family: var(--fd); font-size: .875rem; font-weight: 700; color: var(--navy); }
.ic-text-desc { font-family: var(--fb); font-size: .75rem; font-weight: 300; color: var(--text-3); line-height: 1.55; margin-top: .2rem; }
.mn-cell { background: var(--white); padding: 1.25rem 1rem; text-align: center; }
.mn-val { font-family: var(--fd); font-size: 1.5rem; font-weight: 800; color: var(--blue-600); letter-spacing: -.02em; }
.mn-label { font-family: var(--fb); font-size: .72rem; font-weight: 300; color: var(--text-3); margin-top: .35rem; line-height: 1.45; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2rem; }
.value-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: var(--ev-card-pad); box-shadow: var(--sh1); }
.value-icon,
.feat-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-50);
  border: 1px solid var(--border);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.value-icon svg,
.feat-icon svg { width: 22px; height: 22px; stroke: var(--blue-700); fill: none; stroke-width: 1.75; }
.value-title { font-family: var(--fd); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.value-desc { font-family: var(--fb); font-size: .8125rem; font-weight: 300; color: var(--text-3); line-height: 1.65; }
.advisory-wrap { margin-top: 1rem; padding: var(--ev-panel-pad-lg); background: var(--white); border: 1px solid var(--border); border-radius: var(--r); }
.advisory-lead { font-family: var(--fb); font-size: .9375rem; font-weight: 300; color: var(--text-2); line-height: 1.7; margin: 1rem 0 1.25rem; }
.adv-profiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.adv-card { border: 1px solid var(--border-2); border-radius: var(--r); padding: 1.25rem; background: var(--bg-panel); }
.adv-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--border-2); display: flex; align-items: center; justify-content: center; margin-bottom: .75rem; }
.adv-avatar svg { width: 22px; stroke: var(--text-4); fill: none; }
.adv-role { font-family: var(--fm); font-size: .62rem; font-weight: 600; color: var(--blue-600); text-transform: uppercase; letter-spacing: .06em; }
.adv-sector { font-family: var(--fb); font-size: .75rem; color: var(--text-4); margin: .15rem 0 .5rem; }
.adv-bio { font-family: var(--fb); font-size: .78rem; font-weight: 300; color: var(--text-3); line-height: 1.55; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band-text h3 { color: var(--white); margin-bottom: .5rem; }
.cta-band-text p { color: rgba(255,255,255,.75); max-width: var(--ev-measure-copy); }

.adv-box { background: var(--bg-panel); border: 1px solid var(--border); border-radius: var(--r); padding: 1.75rem 1.5rem; margin-top: .5rem; }
.adv-box .eyebrow { margin-bottom: .75rem; }
.adv-box h3 { margin-bottom: 1rem; }
.adv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.adv-item { display: flex; flex-direction: column; gap: .5rem; }
.adv-item .adv-icon { width: 40px; height: 40px; background: var(--blue-600); border-radius: var(--r); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.adv-item .adv-icon svg { width: 20px; height: 20px; stroke: var(--white); fill: none; stroke-width: 2; }
.adv-title { font-family: var(--fd); font-size: .9rem; font-weight: 700; color: var(--navy); }
.adv-desc { font-family: var(--fb); font-size: .78rem; font-weight: 300; color: var(--text-3); line-height: 1.6; }
.sys-layout { display: grid; grid-template-columns: 1fr minmax(260px, 340px); gap: 2.5rem; align-items: start; }
.process-steps { display: flex; flex-direction: column; }
.pstep { display: flex; gap: 0; }
.pstep-connector { display: flex; flex-direction: column; align-items: center; width: 48px; flex-shrink: 0; padding-top: 1rem; }
.pstep-circle { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--blue-600); display: flex; align-items: center; justify-content: center; font-family: var(--fm); font-size: .62rem; font-weight: 600; color: var(--blue-600); background: var(--white); }
.pstep-circle.core { background: var(--blue-600); color: var(--white); border-color: var(--blue-600); }
.pstep-circle.green { border-color: var(--green); background: var(--green); color: var(--white); }
.pstep-circle.mc { font-size: .55rem; padding: 0 .35rem; width: auto; min-width: 32px; border-radius: var(--r); }
.pstep-line { flex: 1; width: 2px; background: var(--border); margin-top: 6px; min-height: 16px; }
.pstep-line.green { background: var(--green); opacity: .35; }
.pstep:last-child .pstep-connector .pstep-line { display: none; }
.pstep-body { flex: 1; padding: 1rem 1rem 1.25rem 0; border-bottom: 1px solid var(--border-2); }
.pstep:last-child .pstep-body { border-bottom: none; }
.pstep-head { display: flex; align-items: center; justify-content: space-between; gap: .75rem; flex-wrap: wrap; margin-bottom: .5rem; }
.pstep-name { font-family: var(--fd); font-size: .9375rem; font-weight: 700; color: var(--navy); }
.pstep-3col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: .5rem 0 .75rem; }
.pstep-3col p { font-family: var(--fb); font-size: .78rem; font-weight: 300; color: var(--text-3); line-height: 1.6; }
.pstep-col-label { font-family: var(--fb); font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-4); margin-bottom: .35rem; }
.sp-row { display: flex; flex-wrap: wrap; gap: .375rem; margin-top: .25rem; }
.sp { font-family: var(--fm); font-size: .65rem; font-weight: 500; padding: .2rem .5rem; border-radius: var(--ev-r-2); border: 1px solid var(--border); background: var(--bg-alt); color: var(--text-2); }
.sp.blue { background: var(--blue-50); color: var(--blue-700); border-color: var(--blue-100); }
.sp.green { background: var(--green-bg); color: var(--green); border-color: var(--ev-green-edge); }
.db-header { display: flex; align-items: center; gap: .75rem; margin: 1.25rem 0 .75rem; }
.db-line { flex: 1; height: 1px; background: var(--green); opacity: .35; }
.db-label { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; font-family: var(--fb); font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--green); padding: .35rem .75rem; background: var(--green-bg); border: 1px solid var(--ev-green-edge); border-radius: var(--r); }
.barrier-tag { font-family: var(--fm); font-size: .62rem; font-weight: 500; padding: .18rem .5rem; background: var(--green-bg); color: var(--green); border: 1px solid var(--ev-green-edge); border-radius: var(--ev-r-2); white-space: nowrap; }
.pstep.barrier-step .pstep-body { border-left: 2px solid var(--green); padding-left: 1rem; margin-left: 0; background: linear-gradient(90deg, rgba(10,107,66,0.04) 0%, transparent 55%); border-radius: 0 var(--r) var(--r) 0; }

.cd-head { display: flex; align-items: center; justify-content: space-between; padding: .875rem 1.25rem; background: var(--bg); border-bottom: 1px solid var(--border); }
.cd-title { font-family: var(--fb); font-size: .72rem; font-weight: 600; color: var(--text-2); letter-spacing: .08em; text-transform: uppercase; }
.cd-live { display: flex; align-items: center; gap: 6px; font-family: var(--fm); font-size: .65rem; color: var(--green); }
.cd-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); animation: live 2s infinite; }
.cd-sec { padding: 1rem 1.25rem; border-bottom: 1px solid var(--border-2); }
.cd-sec:last-child { border-bottom: none; }
.cd-sec-title { font-family: var(--fb); font-size: .68rem; font-weight: 600; color: var(--text-4); letter-spacing: .08em; text-transform: uppercase; margin-bottom: .65rem; }
.cd-row { display: flex; align-items: center; justify-content: space-between; gap: .75rem; padding: .4rem 0; border-bottom: 1px solid var(--border-2); font-family: var(--fb); font-size: .8125rem; }
.cd-row:last-child { border-bottom: none; }
.cd-param { color: var(--text-3); }
.cd-val { font-family: var(--fm); font-size: .78rem; font-weight: 500; color: var(--text); text-align: right; }
.cd-val.ok { color: var(--green); }
.cd-val.hi { color: var(--blue-600); }

.conf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 2rem; }
.reg-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .875rem 1.25rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border-2);
}
.reg-card-ref {
  font-family: var(--fm);
  font-size: .75rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: .04em;
}
.reg-card-body { padding: 1.25rem; }
.reg-card-title {
  font-family: var(--fd);
  font-size: .9375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .4rem;
}
.reg-card-desc {
  font-family: var(--fb);
  font-size: .8125rem;
  font-weight: 300;
  color: var(--text-3);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.reg-card-body ul { list-style: none; margin: 0; padding: 0; }
.rc-item { display: flex; align-items: flex-start; gap: .5rem; padding: .35rem 0; font-family: var(--fb); font-size: .8125rem; font-weight: 300; color: var(--text-3); line-height: 1.5; }
.trace-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--border-2); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; margin-top: 2rem; }
.tc { background: var(--white); padding: 1.1rem 1rem; }
.tc-num { font-family: var(--fm); font-size: .6rem; color: var(--blue-600); letter-spacing: .1em; margin-bottom: .35rem; }
.tc-title { font-family: var(--fd); font-size: .8125rem; font-weight: 700; color: var(--navy); margin-bottom: .25rem; }
.tc-desc { font-family: var(--fb); font-size: .72rem; font-weight: 300; color: var(--text-3); line-height: 1.5; }
.tc-freq { display: inline-block; margin-top: .5rem; font-family: var(--fm); font-size: .62rem; color: var(--green); background: var(--green-bg); padding: .15rem .4rem; border-radius: var(--ev-r-2); }

.risk-table { margin-top: 2rem; border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; box-shadow: var(--sh1); }
.risk-table .rt-head { display: grid; grid-template-columns: 1fr 40px 1fr; background: var(--navy); padding: .75rem 1rem; align-items: center; }
.risk-table .rt-col { font-family: var(--fb); font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.88); }
.risk-table .rt-row { display: grid; grid-template-columns: 1fr 40px 1fr; border-bottom: 1px solid var(--border-2); background: var(--white); padding: .65rem 1rem; align-items: center; }
.risk-table .rt-row:last-child { border-bottom: none; }
.risk-table .rt-off, .risk-table .rt-on { font-family: var(--fb); font-size: .8125rem; color: var(--text-3); line-height: 1.45; }
.risk-table .rt-vs { text-align: center; font-size: .75rem; color: var(--text-4); }

.nav-secteurs { background: var(--bg); border-bottom: 1px solid var(--border-2); }
.ns-inner { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem 1rem; padding: .65rem 0; font-family: var(--fb); font-size: .78rem; }
.ns-link { color: var(--text-3); text-decoration: none; transition: color var(--ev-t-fast); }
.ns-link:hover, .ns-link.active { color: var(--blue-600); font-weight: 500; }
.ns-sep { color: var(--border); user-select: none; }
.breadcrumb { font-family: var(--fb); font-size: .75rem; color: rgba(255,255,255,.55); margin-bottom: .75rem; }
.breadcrumb a { color: rgba(255,255,255,.75); text-decoration: none; }
.breadcrumb a:hover { color: var(--white); }
.bc-sep { margin: 0 .35rem; opacity: .6; }
.kpi-row,
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--sh1);
}
.kpi-cell,
.stat-cell { background: var(--white); padding: 1.1rem 1rem; text-align: center; }
.kpi-val { font-family: var(--fd); font-size: 1.35rem; font-weight: 800; color: var(--blue-600); letter-spacing: -.02em; }
.kpi-lbl,
.stat-lbl { font-family: var(--fb); font-size: .68rem; font-weight: 300; color: var(--text-3); margin-top: .35rem; line-height: 1.4; }
.sect-layout { display: grid; grid-template-columns: 1fr minmax(260px, 320px); gap: 2.5rem; align-items: start; }
.pain-sol-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 1.5rem 0; }
.ps-head { padding: .75rem 1rem; font-family: var(--fd); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.ps-head.pain { background: var(--red-bg); color: var(--red); }
.ps-head.sol { background: var(--green-bg); color: var(--green); }
.ps-item { padding: .55rem 1rem; font-family: var(--fb); font-size: .78rem; font-weight: 300; color: var(--text-2); line-height: 1.5; border-top: 1px solid var(--border-2); display: flex; gap: .5rem; align-items: flex-start; }
.ps-item:first-of-type { border-top: none; }
.ps-dot-p { width: 6px; height: 6px; border-radius: 50%; background: var(--red); margin-top: 6px; flex-shrink: 0; opacity: .75; }
.ps-dot-s { width: 6px; height: 6px; border-radius: 50%; background: var(--green); margin-top: 6px; flex-shrink: 0; }
.roi-card { border: 1px solid var(--border); border-radius: var(--r); background: var(--white); padding: 1.25rem; box-shadow: var(--sh2); position: sticky; top: 78px; align-self: start; }
.roi-head { font-family: var(--fd); font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem; padding-bottom: .75rem; border-bottom: 1px solid var(--border-2); }
.roi-row { display: grid; grid-template-columns: 1fr 1fr auto; gap: .5rem; align-items: center; margin-bottom: .75rem; font-family: var(--fb); font-size: .75rem; color: var(--text-3); }
.roi-controls { grid-column: span 1; }
.roi-slider { width: 100%; }
.roi-val { font-family: var(--fm); font-size: .72rem; font-weight: 600; color: var(--blue-600); white-space: nowrap; }
.roi-result { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border-2); display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.rr-val { font-family: var(--fd); font-size: 1.4rem; font-weight: 800; color: var(--green); }
.rr-lbl { font-family: var(--fb); font-size: .68rem; color: var(--text-4); margin-top: .2rem; }
.rr-note { grid-column: 1 / -1; font-family: var(--fb); font-size: .62rem; color: var(--text-4); line-height: 1.45; margin-top: .5rem; }
.cta-section,
.cta-band {
  background: var(--navy);
  padding: 3.5rem 0;
  border-top: 3px solid var(--blue-600);
}
.cta-section .container { text-align: left; }
.cta-section .eyebrow { color: var(--blue-200); }
.cta-section .eyebrow::before { background: var(--blue-400); }
.cta-section h2 { color: var(--white); max-width: var(--ev-measure-cta); }
.cta-section .lead { color: rgba(255,255,255,.78); max-width: var(--ev-measure-cta); margin: 1rem 0 1.5rem; }
.reg-badge { display: inline-flex; align-items: center; padding: .22rem .55rem; border-radius: var(--ev-r-2); font-family: var(--fm); font-size: .62rem; font-weight: 600; letter-spacing: .04em; margin: .15rem; }
.reg-badge.blue { background: var(--blue-50); color: var(--blue-700); border: 1px solid var(--blue-100); }
.reg-badge.amber { background: var(--amber-bg); color: var(--amber); border: 1px solid var(--ev-amber-edge); }
.reg-badge.green { background: var(--green-bg); color: var(--green); border: 1px solid var(--ev-green-edge); }

.stat-val { font-family: var(--fd); font-size: 1.35rem; font-weight: 800; color: var(--blue-600); }
.featured-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; margin-top: 2rem; }
.feat-card { display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: var(--r); padding: var(--ev-card-pad); background: var(--white); text-decoration: none; color: inherit; box-shadow: var(--sh1); transition: box-shadow var(--ev-t-mid), transform var(--ev-t-mid); }
.feat-card:hover { box-shadow: var(--sh3); transform: translateY(-2px); }
.feat-name { font-family: var(--fd); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .35rem; }
.feat-kpi { font-family: var(--fm); font-size: .65rem; color: var(--blue-600); margin-bottom: .75rem; }
.feat-desc { font-family: var(--fb); font-size: .8125rem; font-weight: 300; color: var(--text-3); line-height: 1.6; flex: 1; }
.feat-cta { margin-top: 1rem; font-family: var(--fd); font-size: .78rem; font-weight: 600; color: var(--blue-600); display: inline-flex; align-items: center; gap: .35rem; }
.sect-cta-band { background: var(--navy); padding: 3rem 0; border-top: 1px solid var(--ev-line-faint-w); }
.sect-cta-band .eyebrow { color: var(--blue-200); }
.sect-cta-band h2 { color: var(--white); max-width: 720px; }
.sect-cta-band .lead { color: rgba(255,255,255,.78); max-width: var(--ev-measure-cta); margin: 1rem 0 1.25rem; }
.all-sectors { margin-top: 1rem; }
.sector-pills { display: flex; flex-wrap: wrap; gap: .4rem; }
.sector-pill { display: inline-flex; padding: .35rem .65rem; border-radius: var(--ev-r-2); border: 1px solid var(--border); font-family: var(--fb); font-size: .72rem; color: var(--text-2); text-decoration: none; background: var(--white); transition: background var(--ev-t-fast), border-color var(--ev-t-fast); }
.sector-pill:hover { background: var(--blue-50); border-color: var(--blue-100); color: var(--blue-700); }
.sector-pill.featured { border-color: var(--blue-400); background: var(--blue-50); font-weight: 500; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-grid { grid-template-columns: 1fr; }
  .adv-profiles { grid-template-columns: 1fr; }
  .mission-nums { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .pstep-3col { grid-template-columns: 1fr; }
  .conf-grid { grid-template-columns: 1fr; }
  .trace-grid { grid-template-columns: 1fr 1fr; }
  .kpi-row { grid-template-columns: 1fr 1fr; }
  .sect-layout { grid-template-columns: 1fr; }
  .pain-sol-grid { grid-template-columns: 1fr; }
  .roi-card, .cd { position: static; }
}
@media (max-width: 768px) {
  .mission-nums { grid-template-columns: 1fr; }
  .trace-grid { grid-template-columns: 1fr; }
  .kpi-row { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
}

/* ━━ Nav dropdown interaction fixes (site-wide, no visual change) ━━ */
nav,
.nav-links,
.nav-links > li,
.has-dropdown {
  overflow: visible;
}
nav {
  z-index: 1000;
}
.has-dropdown::after {
  content: '';
  position: absolute;
  left: -8px;
  right: 0;
  top: 100%;
  height: 10px;
  z-index: 1001;
}
nav .nav-dropdown {
  top: calc(100% + 8px);
  z-index: 1002;
  pointer-events: auto;
}
nav .has-dropdown.is-open .nav-dropdown,
nav .has-dropdown:hover .nav-dropdown,
nav .has-dropdown:focus-within .nav-dropdown {
  display: block;
}
nav .has-dropdown.is-open .drop-chev,
nav .has-dropdown:hover .drop-chev {
  transform: rotate(180deg);
}
