:root {
  --navy: #061a33;
  --navy-2: #0a284b;
  --blue: #1278e8;
  --blue-bright: #25a4ff;
  --ice: #eef6ff;
  --ink: #0b1726;
  --muted: #5e6b79;
  --line: #dbe4ee;
  --white: #fff;
  --max: 1220px;
  --shadow: 0 24px 70px rgba(6, 26, 51, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 100; background: white; color: var(--navy); padding: 12px 18px; border-radius: 8px; font-weight: 800; transition: top .2s; }
.skip-link:focus { top: 16px; }

.site-header { position: absolute; inset: 0 0 auto; z-index: 10; color: white; }
.nav-wrap { width: min(var(--max), calc(100% - 48px)); height: 92px; margin: auto; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.18); }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 250px; }
.brand-symbol-crop { width: 54px; height: 54px; position: relative; overflow: hidden; flex: 0 0 54px; filter: drop-shadow(0 5px 10px rgba(0,0,0,.24)); }
.brand-symbol-crop img { position: absolute; width: 120px; max-width: none; height: auto; left: -33px; top: -4px; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font-size: 27px; line-height: 1; letter-spacing: -1px; font-weight: 850; }
.brand-copy strong span { color: var(--blue-bright); }
.brand-copy small { margin-top: 6px; color: rgba(255,255,255,.72); font-size: 10px; text-transform: uppercase; letter-spacing: .13em; }
.main-nav { display: flex; align-items: center; gap: 22px; font-size: 13px; font-weight: 650; }
.main-nav > a:not(.nav-cta) { position: relative; }
.main-nav > a:not(.nav-cta)::after { content: ""; position: absolute; height: 2px; left: 0; right: 100%; bottom: -8px; background: var(--blue-bright); transition: right .25s; }
.main-nav > a:not(.nav-cta):hover::after, .main-nav > a:not(.nav-cta):focus-visible::after { right: 0; }
.nav-cta { padding: 12px 20px; border: 1px solid rgba(255,255,255,.45); transition: .2s ease; }
.nav-cta:hover, .nav-cta:focus-visible { background: white; color: var(--navy); }
.portal-link { color: #a9d7ff; font-weight: 800; }
.menu-button { display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.4); background: transparent; padding: 11px; }
.menu-button > span:not(.sr-only) { display: block; height: 2px; background: white; margin: 5px 0; transition: .2s; }

.hero { min-height: 780px; height: min(900px, 100vh); position: relative; overflow: hidden; background: var(--navy); color: white; }
.hero-photo { position: absolute; inset: 0; background: url("assets/equipe-fullserv.png") center/cover no-repeat; transform: scale(1.012); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,16,32,.98) 0%, rgba(5,25,49,.94) 31%, rgba(5,25,49,.58) 56%, rgba(5,25,49,.05) 80%), linear-gradient(0deg, rgba(3,16,32,.52), transparent 45%); }
.hero-grid { position: absolute; inset: 0; opacity: .17; background-image: linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(90deg, #000 0%, transparent 72%); }
.hero::after { content: ""; position: absolute; width: 300px; height: 300px; right: -170px; top: 210px; border: 52px solid rgba(37,164,255,.22); border-radius: 50%; }
.hero-content { width: min(var(--max), calc(100% - 48px)); margin: auto; height: 100%; position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding-top: 75px; }
.eyebrow, .kicker { margin: 0 0 23px; color: var(--blue); text-transform: uppercase; font-size: 13px; font-weight: 850; letter-spacing: .18em; }
.eyebrow { color: #a9d7ff; display: flex; align-items: center; gap: 12px; }
.eyebrow span { width: 38px; height: 2px; background: var(--blue-bright); }
.hero h1 { max-width: 820px; margin: 0; font-size: clamp(48px, 6vw, 87px); line-height: .97; letter-spacing: -.055em; font-weight: 820; }
.hero h1 em { color: var(--blue-bright); font-style: normal; font-weight: 500; }
.hero-lead { max-width: 645px; margin: 27px 0 34px; color: rgba(255,255,255,.78); font-size: 19px; line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 28px; padding: 14px 22px; font-weight: 800; font-size: 14px; border: 1px solid transparent; transition: transform .2s, background .2s, color .2s, border-color .2s; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { background: var(--blue); color: white; }
.button-primary:hover, .button-primary:focus-visible { background: var(--blue-bright); }
.button-ghost { border-color: rgba(255,255,255,.34); color: white; }
.button-ghost:hover, .button-ghost:focus-visible { border-color: white; background: rgba(255,255,255,.1); }
.hero-proof { display: flex; gap: 0; margin-top: 52px; border-top: 1px solid rgba(255,255,255,.2); }
.hero-proof div { min-width: 185px; padding: 18px 28px 0 0; margin-right: 28px; border-right: 1px solid rgba(255,255,255,.18); }
.hero-proof div:last-child { border: 0; }
.hero-proof strong, .hero-proof span { display: block; }
.hero-proof strong { font-size: 15px; }
.hero-proof span { color: rgba(255,255,255,.56); font-size: 12px; }
.hero-index { position: absolute; z-index: 2; right: 30px; bottom: 48px; writing-mode: vertical-rl; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.6); font-size: 11px; letter-spacing: .25em; }
.hero-index span { display: inline-block; height: 55px; width: 1px; background: rgba(255,255,255,.38); }

.section { width: min(var(--max), calc(100% - 48px)); margin: auto; padding: 120px 0; }
.section-head { display: grid; grid-template-columns: 1.5fr .75fr; gap: 80px; align-items: end; margin-bottom: 55px; }
.section h2, .process h2, .contact h2 { margin: 0; font-size: clamp(36px, 4.8vw, 64px); line-height: 1.04; letter-spacing: -.045em; }
.section-head > p { margin: 0 0 6px; color: var(--muted); font-size: 17px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 325px; padding: 31px; position: relative; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: white; overflow: hidden; transition: transform .25s, box-shadow .25s, border-color .25s; }
.service-card:hover { z-index: 2; transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.service-card-featured { grid-row: span 2; min-height: 650px; color: white; background: linear-gradient(160deg, var(--navy-2), var(--navy)); display: flex; flex-direction: column; justify-content: flex-end; }
.service-card-featured::before { content: ""; position: absolute; width: 290px; height: 290px; top: 70px; left: 50%; transform: translateX(-50%); border: 1px solid rgba(37,164,255,.35); border-radius: 50%; box-shadow: 0 0 0 45px rgba(37,164,255,.05), 0 0 0 90px rgba(37,164,255,.035); }
.service-number { position: absolute; right: 24px; top: 20px; color: #a7b2bf; font-size: 12px; font-weight: 800; }
.service-card-featured .service-number { color: rgba(255,255,255,.42); }
.service-icon { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: auto; color: var(--blue); border: 1px solid var(--line); font-size: 24px; }
.service-card-featured .service-icon { position: absolute; left: calc(50% - 25px); top: 190px; margin: 0; color: white; border-color: rgba(255,255,255,.35); background: var(--blue); transform: rotate(45deg); }
.service-card-featured .service-icon::first-letter { transform: rotate(-45deg); }
.service-card h3 { margin: 20px 0 11px; font-size: 24px; line-height: 1.2; letter-spacing: -.025em; }
.service-card p { margin: 0; color: var(--muted); }
.service-card-featured p { color: rgba(255,255,255,.68); }
.service-card ul { margin: 28px 0 0; padding: 22px 0 0; list-style: none; border-top: 1px solid rgba(255,255,255,.15); }
.service-card li { margin: 6px 0; color: rgba(255,255,255,.82); font-size: 14px; }
.service-card li::before { content: "+"; color: var(--blue-bright); margin-right: 9px; }

.process { background: var(--navy); color: white; position: relative; overflow: hidden; }
.process::before { content: "FULLSERV"; position: absolute; left: -15px; bottom: -65px; color: rgba(255,255,255,.028); font-size: 200px; line-height: 1; font-weight: 950; letter-spacing: -.07em; }
.process-inner { width: min(var(--max), calc(100% - 48px)); margin: auto; padding: 120px 0; display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; position: relative; }
.kicker-light { color: var(--blue-bright); }
.process-intro > p:not(.kicker) { margin: 24px 0; color: rgba(255,255,255,.63); font-size: 17px; }
.text-link { display: inline-flex; gap: 25px; align-items: center; margin-top: 18px; color: white; font-weight: 800; border-bottom: 1px solid rgba(255,255,255,.3); padding-bottom: 8px; }
.text-link span { color: var(--blue-bright); }
.steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.16); }
.steps li { display: grid; grid-template-columns: 62px 1fr; gap: 20px; padding: 29px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.steps li > span { color: var(--blue-bright); font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.steps h3 { margin: 0 0 7px; font-size: 21px; }
.steps p { margin: 0; color: rgba(255,255,255,.58); }

.about { display: grid; grid-template-columns: 1.05fr .95fr; gap: 100px; align-items: center; }
.about-copy > p:not(.kicker) { max-width: 610px; color: var(--muted); font-size: 17px; }
.about-panel { min-height: 480px; padding: 54px; color: white; background: var(--blue); position: relative; display: flex; flex-direction: column; justify-content: space-between; box-shadow: 24px 24px 0 var(--ice); overflow: hidden; }
.about-panel::after { content: ""; position: absolute; width: 260px; height: 260px; right: -95px; top: -95px; border: 38px solid rgba(255,255,255,.12); border-radius: 50%; }
.panel-label { margin: 0; text-transform: uppercase; font-size: 12px; font-weight: 800; letter-spacing: .15em; opacity: .74; }
.about-panel blockquote { margin: 40px 0; font-size: 27px; line-height: 1.35; letter-spacing: -.025em; font-weight: 650; position: relative; z-index: 1; }
.panel-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.panel-tags span { padding: 7px 11px; border: 1px solid rgba(255,255,255,.34); font-size: 12px; }

.simulator { padding: 112px max(24px, calc((100vw - var(--max)) / 2)); background: #f6faff; position: relative; overflow: hidden; }
.simulator::before, .simulator::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; }
.simulator::before { width: 520px; height: 520px; right: -310px; top: 38px; border: 1px solid rgba(18,120,232,.12); box-shadow: 0 0 0 72px rgba(18,120,232,.028), 0 0 0 144px rgba(18,120,232,.018); }
.simulator::after { width: 330px; height: 330px; left: -250px; bottom: 190px; background: rgba(37,164,255,.065); }
.simulator-heading { display: grid; grid-template-columns: 1.22fr .78fr; align-items: end; gap: 70px; margin-bottom: 34px; position: relative; z-index: 1; }
.simulator-heading .kicker { margin-bottom: 15px; }
.simulator-heading h2 { max-width: 760px; margin: 0; color: var(--navy); font-size: clamp(38px, 4.6vw, 62px); line-height: 1.01; letter-spacing: -.052em; }
.simulator-heading h2 em { color: var(--blue); font-style: normal; }
.simulator-lead { max-width: 780px; margin: 16px 0 0; color: #30445f; font-size: 17px; line-height: 1.5; }
.simulator-progress { margin: 0 0 7px; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.simulator-progress li { min-width: 92px; position: relative; color: #7b8ca4; text-align: center; }
.simulator-progress li:not(:last-child)::after { content: ""; height: 3px; position: absolute; left: calc(50% + 24px); right: calc(-50% + 24px); top: 19px; border-radius: 3px; background: #d5dfeb; }
.simulator-progress span { width: 40px; height: 40px; margin: auto; display: grid; place-items: center; border-radius: 50%; background: #e7eef7; color: #6b7e97; font-weight: 850; position: relative; z-index: 1; }
.simulator-progress small { display: block; margin-top: 7px; font-size: 11px; font-weight: 750; white-space: nowrap; }
.simulator-progress .is-active span, .simulator-progress .is-complete span { background: var(--blue); color: white; box-shadow: 0 6px 16px rgba(18,120,232,.22); }
.simulator-progress .is-active, .simulator-progress .is-complete { color: var(--blue); }
.simulator-progress .is-complete:not(:last-child)::after { background: var(--blue); }
.simulator-shell { display: grid; grid-template-columns: .92fr 1.38fr; background: white; border: 1px solid #dce8f3; border-radius: 20px; box-shadow: 0 24px 70px rgba(11,52,93,.11); overflow: hidden; position: relative; z-index: 1; }
.simulator-controls { padding: 36px 34px 24px; border-right: 1px solid #dce8f3; display: flex; flex-direction: column; }
.simulator-panel-title, .results-heading { display: flex; align-items: flex-start; gap: 16px; }
.simulator-panel-title h3, .results-heading h3 { margin: 1px 0 0; color: var(--navy); font-size: clamp(21px, 2.1vw, 27px); line-height: 1.2; letter-spacing: -.025em; }
.simulator-panel-title p, .results-heading p { margin: 5px 0 0; color: #526783; font-size: 13px; line-height: 1.45; }
.panel-icon { width: 56px; height: 56px; flex: 0 0 56px; display: grid; place-items: center; border-radius: 14px; background: linear-gradient(145deg, #e1f3ff, #f4faff); color: var(--blue); font-size: 13px; font-weight: 900; letter-spacing: -2px; }
.panel-icon-document { font-size: 27px; letter-spacing: 0; }
.simulator-field-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 25px; }
.field { display: flex; flex-direction: column; gap: 7px; margin: 0; color: var(--navy); font-size: 13px; font-weight: 750; }
.money-input, .plain-input { width: 100%; height: 53px; border: 1px solid #cddbea; border-radius: 7px; background: white; color: var(--navy); transition: border-color .2s, box-shadow .2s; }
.money-input { display: flex; align-items: center; gap: 8px; padding: 0 15px; }
.money-input:focus-within, .plain-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(18,120,232,.1); outline: 0; }
.money-input small { color: #788ba4; font-size: 12px; font-weight: 800; }
.money-input input { width: 100%; min-width: 0; padding: 0; border: 0; outline: 0; background: transparent; color: var(--navy); font: inherit; font-size: 17px; font-weight: 700; }
.plain-input { padding: 0 15px; font: inherit; font-size: 16px; appearance: auto; }
select.plain-input { cursor: pointer; font-size: 14px; }
.simulator-action { margin-top: auto; padding-top: 22px; }
.simulator-calculate { width: 100%; min-height: 58px; margin: 0; padding: 14px 22px; display: flex; align-items: center; justify-content: center; gap: 18px; border: 0; border-radius: 8px; color: white; background: linear-gradient(90deg, #0b75df, #1294ef); font: inherit; font-weight: 850; cursor: pointer; box-shadow: 0 12px 24px rgba(18,120,232,.18); transition: transform .2s, box-shadow .2s; }
.simulator-calculate:hover, .simulator-calculate:focus-visible { transform: translateY(-2px); box-shadow: 0 16px 28px rgba(18,120,232,.25); }
.privacy-note { margin: 0 0 10px; color: #71839a; text-align: center; font-size: 11px; }
.privacy-note span { margin-right: 7px; color: #607895; }
.simulator-results { padding: 32px 30px 24px; background: linear-gradient(145deg, #fbfdff, #f4f9fe); color: var(--navy); display: flex; flex-direction: column; }
.scenario-choice { margin: 15px 0 12px 72px; padding: 0; border: 0; display: flex; flex-wrap: wrap; gap: 7px; }
.scenario-choice legend { width: 100%; margin-bottom: 2px; color: #657891; font-size: 11px; font-weight: 750; }
.scenario-choice label { flex: 1; position: relative; }
.scenario-choice input { position: absolute; opacity: 0; pointer-events: none; }
.scenario-choice span { min-height: 36px; display: grid; place-items: center; border: 1px solid #d3e0ed; border-radius: 6px; background: white; color: #637691; font-size: 11px; font-weight: 800; cursor: pointer; }
.scenario-choice input:checked + span { border-color: var(--blue); background: #eaf5ff; color: var(--blue); box-shadow: inset 0 0 0 1px var(--blue); }
.scenario-choice input:focus-visible + span { outline: 2px solid var(--blue); outline-offset: 2px; }
.cost-summary { margin: 0; border: 1px solid #d6e2ed; border-radius: 9px; overflow: hidden; background: white; }
.cost-summary div { min-height: 39px; padding: 8px 14px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid #e2eaf2; }
.cost-summary div:last-child { border-bottom: 0; }
.cost-summary dt { color: #506580; font-size: 13px; }
.cost-summary dt span { width: 22px; display: inline-block; color: var(--blue); text-align: center; font-weight: 900; }
.cost-summary dd { margin: 0; color: var(--navy); white-space: nowrap; font-size: 14px; font-weight: 850; }
.cost-summary .cost-summary-total { background: linear-gradient(90deg, #e5f3ff, #f1f8ff); }
.cost-summary-total dt, .cost-summary-total dd { color: var(--navy); font-weight: 900; }
.fullserv-cost-card { min-height: 90px; margin-top: 11px; padding: 15px 16px; display: grid; grid-template-columns: 50px minmax(0, 1fr); align-items: center; gap: 15px; border: 1px solid #b9dafa; border-radius: 10px; background: linear-gradient(90deg, #eaf5ff, #f7fbff); }
.fullserv-cost-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 11px; color: white; background: linear-gradient(145deg, #0b69cb, #16a0f4); font-size: 13px; font-weight: 900; }
.fullserv-cost-card > div { min-width: 0; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.fullserv-cost-card small, .fullserv-cost-card strong { display: block; }
.fullserv-cost-card small { color: #315f8f; font-size: 11px; font-weight: 800; line-height: 1.3; text-transform: uppercase; letter-spacing: .035em; }
.fullserv-cost-card strong { margin-top: 5px; color: #0759a8; font-size: clamp(24px, 2.7vw, 34px); line-height: 1; letter-spacing: -.04em; }
.economy-panel { min-height: 102px; margin-top: 10px; padding: 15px 16px; display: grid; grid-template-columns: 54px minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: 15px; border: 1px solid #bfe9ca; border-radius: 10px; background: linear-gradient(90deg, #e9ffed, #f2fff4); color: #086b38; }
.economy-panel.is-negative { border-color: #efc6c6; background: #fff1f1; color: #9e3030; }
.economy-icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 12px; background: #ccf8d4; font-size: 25px; font-weight: 900; }
.economy-value, .economy-annual { min-width: 0; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.economy-value > small:first-child, .economy-annual > small { width: 100%; color: inherit; font-size: 11px; font-weight: 850; line-height: 1.25; }
.economy-amount { margin-top: 5px; display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 8px; }
.economy-value strong, .economy-annual strong { font-size: clamp(22px, 2.4vw, 31px); line-height: 1; letter-spacing: -.04em; }
.economy-value span, .economy-annual span { color: #315f44; font-size: 11px; }
.economy-annual { min-height: 62px; padding-left: 26px; border-left: 1px solid #75bd8a; }
.economy-percent { margin-top: 7px; color: #3b7652; font-size: 10px; font-weight: 750; line-height: 1.25; }
.client-cost-basis { margin: 9px 0 0; border: 1px solid #c9ddf0; border-radius: 8px; background: #f7fbff; }
.client-cost-basis summary { padding: 11px 14px; color: #175d9e; font-size: 12px; font-weight: 850; cursor: pointer; }
.client-cost-basis[open] summary { border-bottom: 1px solid #dce8f3; }
.client-cost-basis ul { margin: 0; padding: 12px 18px 5px 31px; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 22px; color: #526b86; font-size: 10px; line-height: 1.45; }
.client-cost-basis li::marker { color: var(--blue); }
.client-cost-basis p { margin: 7px 14px 12px; padding-top: 9px; border-top: 1px solid #dfeaf4; color: #687b91; font-size: 10px; line-height: 1.45; }
.simulator-diagnostic { min-height: 58px; margin-top: auto; padding: 12px 18px; display: flex; align-items: center; justify-content: center; gap: 16px; border-radius: 8px; color: white; background: linear-gradient(90deg, #087a3d, #07934a); font-size: 12px; font-weight: 850; transition: filter .2s, transform .2s; }
.simulator-diagnostic:hover, .simulator-diagnostic:focus-visible { filter: brightness(1.08); transform: translateY(-1px); }
.managed-services { margin-top: 28px; position: relative; z-index: 1; }
.managed-services h3 { margin: 0 auto 14px; display: flex; align-items: center; gap: 18px; color: var(--navy); text-align: center; font-size: 16px; }
.managed-services h3::before, .managed-services h3::after { content: ""; height: 1px; flex: 1; background: #b8d4ec; }
.managed-services h3 em { color: var(--blue); font-style: normal; }
.managed-services > div { display: grid; grid-template-columns: repeat(8, 1fr); gap: 10px; }
.managed-services span { display: flex; flex-direction: column; align-items: center; gap: 6px; color: #183a6b; text-align: center; font-size: 10px; font-weight: 700; line-height: 1.2; }
.managed-services i { width: 45px; height: 42px; display: grid; place-items: center; border-radius: 9px; background: #e5f3ff; color: var(--blue); font-size: 21px; font-style: normal; font-weight: 850; }
.simulator-disclaimer { display: flex; gap: 16px; margin-top: 22px; padding: 17px 20px; border: 1px solid #d9e3ec; border-radius: 8px; background: rgba(255,255,255,.82); position: relative; z-index: 1; }
.simulator-disclaimer strong { flex: 0 0 auto; color: var(--navy); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.simulator-disclaimer p { margin: 0; color: #697786; font-size: 11px; line-height: 1.55; }
.simulator-disclaimer a { color: var(--blue); font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }

.careers { padding: 108px max(24px, calc((100vw - var(--max)) / 2)); display: grid; grid-template-columns: .82fr 1.18fr; gap: 86px; align-items: start; color: white; background: linear-gradient(145deg, #071b35, #0a315d); position: relative; overflow: hidden; }
.careers::before { content: ""; width: 560px; height: 560px; position: absolute; left: -360px; top: -210px; border: 1px solid rgba(37,164,255,.18); border-radius: 50%; box-shadow: 0 0 0 75px rgba(37,164,255,.025), 0 0 0 150px rgba(37,164,255,.018); }
.careers-intro, .careers-form { position: relative; z-index: 1; }
.careers-intro h2 { margin: 0; font-size: clamp(37px, 4.6vw, 61px); line-height: 1.03; letter-spacing: -.045em; }
.careers-intro > p:not(.kicker) { max-width: 520px; margin: 24px 0 32px; color: rgba(255,255,255,.67); font-size: 17px; }
.careers-points { display: grid; gap: 0; border-top: 1px solid rgba(255,255,255,.15); }
.careers-points span { padding: 16px 0; display: flex; align-items: center; gap: 15px; border-bottom: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.82); font-size: 14px; }
.careers-points strong { color: var(--blue-bright); font-size: 11px; letter-spacing: .1em; }
.careers-form { padding: 34px; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; background: white; color: var(--navy); box-shadow: 0 28px 80px rgba(0,0,0,.18); }
.form-heading { display: flex; align-items: center; gap: 15px; margin-bottom: 24px; }
.form-heading h3 { margin: 0; font-size: 25px; line-height: 1.2; letter-spacing: -.025em; }
.form-heading p { margin: 4px 0 0; color: #62758c; font-size: 13px; }
.public-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px 16px; }
.field-wide { grid-column: 1 / -1; }
.public-textarea { min-height: 96px; padding-top: 13px; padding-bottom: 13px; resize: vertical; line-height: 1.45; }
.consent-check { margin: 18px 0 0; display: grid; grid-template-columns: 19px 1fr; gap: 10px; align-items: start; color: #5f7187; font-size: 12px; line-height: 1.45; }
.consent-check input { width: 17px; height: 17px; margin-top: 1px; accent-color: var(--blue); }
.public-submit { width: 100%; min-height: 55px; margin-top: 18px; padding: 13px 20px; display: flex; justify-content: center; align-items: center; gap: 20px; border: 0; border-radius: 8px; color: white; background: linear-gradient(90deg, #0b75df, #1294ef); font: inherit; font-size: 14px; font-weight: 850; cursor: pointer; box-shadow: 0 12px 24px rgba(18,120,232,.18); }
.public-submit:hover, .public-submit:focus-visible { filter: brightness(1.06); transform: translateY(-1px); }
.public-submit:disabled { opacity: .62; cursor: wait; transform: none; }
.form-feedback { min-height: 0; margin: 12px 0 0; color: #9e3030; font-size: 12px; font-weight: 700; }
.form-feedback:empty { display: none; }
.form-feedback.is-success { color: #087a3d; }
.data-note { margin: 16px 0 0; color: #6b7d91; font-size: 11px; line-height: 1.45; }

.lead-dialog { width: min(970px, calc(100% - 28px)); max-height: calc(100svh - 28px); padding: 0; border: 0; border-radius: 20px; color: var(--ink); background: white; box-shadow: 0 28px 100px rgba(0,0,0,.36); overflow: auto; }
.lead-dialog::backdrop { background: rgba(2,14,29,.76); backdrop-filter: blur(6px); }
.dialog-shell { min-height: 610px; display: grid; grid-template-columns: .8fr 1.2fr; position: relative; }
.dialog-close { width: 42px; height: 42px; position: absolute; right: 15px; top: 15px; z-index: 3; border: 1px solid #d9e5ef; border-radius: 50%; background: white; color: var(--navy); font-size: 25px; line-height: 1; cursor: pointer; }
.dialog-intro { padding: 52px 38px; color: white; background: linear-gradient(155deg, #072443, #0b69ca); position: relative; overflow: hidden; }
.dialog-intro::after { content: ""; width: 250px; height: 250px; position: absolute; right: -150px; bottom: -130px; border: 34px solid rgba(255,255,255,.11); border-radius: 50%; }
.dialog-intro .kicker { color: #a9d7ff; }
.dialog-intro h2 { margin: 0; font-size: clamp(33px, 4vw, 48px); line-height: 1.02; letter-spacing: -.045em; }
.dialog-intro > p:not(.kicker) { margin: 22px 0; color: rgba(255,255,255,.72); font-size: 15px; }
.dialog-result { margin-top: 38px; padding: 22px; border: 1px solid rgba(255,255,255,.18); background: rgba(3,25,50,.34); }
.dialog-result small, .dialog-result span { display: block; color: rgba(255,255,255,.62); font-size: 11px; }
.dialog-result strong { display: block; margin: 6px 0; color: white; font-size: 34px; line-height: 1; letter-spacing: -.04em; }
.lead-form { padding: 50px 38px 34px; }
.dialog-success { grid-column: 2; padding: 70px 48px; align-self: center; text-align: center; }
.dialog-success[hidden] { display: none; }
.dialog-success > span { width: 70px; height: 70px; margin: 0 auto 20px; display: grid; place-items: center; border-radius: 50%; color: #087a3d; background: #dcf9e4; font-size: 30px; font-weight: 900; }
.dialog-success h3 { margin: 0; color: var(--navy); font-size: 30px; letter-spacing: -.035em; }
.dialog-success p { max-width: 460px; margin: 15px auto 25px; color: #5d7087; }

.simulator-diagnostic { border: 0; font-family: inherit; cursor: pointer; }

.contact { padding: 105px max(24px, calc((100vw - var(--max)) / 2)); background: linear-gradient(125deg, #0b5fc2, var(--blue)); color: white; display: grid; grid-template-columns: 1.15fr .85fr; gap: 90px; align-items: center; position: relative; overflow: hidden; }
.contact-orbit { position: absolute; width: 670px; height: 670px; left: -320px; top: -240px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.02); }
.contact-main { position: relative; z-index: 1; }
.contact-main > p:not(.kicker) { max-width: 650px; margin: 22px 0 34px; color: rgba(255,255,255,.77); font-size: 18px; }
.contact-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 28px; }
.button-white { background: white; color: var(--navy); }
.button-white:hover { background: var(--navy); color: white; }
.contact-phone { display: flex; flex-direction: column; }
.contact-phone small, .contact-card small { color: rgba(255,255,255,.56); text-transform: uppercase; font-size: 10px; font-style: normal; font-weight: 800; letter-spacing: .15em; }
.contact-phone strong { font-size: 18px; }
.contact-card { padding: 38px; background: rgba(4,27,54,.68); border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(12px); font-style: normal; position: relative; z-index: 1; }
.contact-card > div { display: flex; flex-direction: column; gap: 5px; padding: 19px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.contact-card > div:last-child { border: 0; }
.contact-card a, .contact-card span { font-weight: 650; overflow-wrap: anywhere; }

.footer { width: min(var(--max), calc(100% - 48px)); margin: auto; padding: 48px 0; display: grid; grid-template-columns: 1fr 1fr auto; gap: 50px; align-items: end; }
.footer-brand { min-height: 138px; display: flex; align-items: center; }
.footer-logo-crop { width: 210px; height: auto; }
.footer-logo-crop img { display: block; width: 100%; height: auto; }
.footer-meta p, .copyright { margin: 5px 0 0; color: var(--muted); font-size: 13px; }
.footer-meta { text-align: center; }
.copyright { text-align: right; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .main-nav { gap: 20px; }
  .main-nav a:not(.nav-cta) { display: none; }
  .hero-shade { background: linear-gradient(90deg, rgba(3,16,32,.98) 0%, rgba(5,25,49,.86) 65%, rgba(5,25,49,.25)); }
  .section-head, .about, .contact, .simulator-heading, .careers { grid-template-columns: 1fr; gap: 45px; }
  .section-head { align-items: start; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card-featured { grid-row: span 2; }
  .process-inner { grid-template-columns: 1fr; gap: 55px; }
  .about-panel { min-height: 390px; }
  .simulator-shell { grid-template-columns: 1fr; }
  .simulator-controls { border-right: 0; border-bottom: 1px solid var(--line); }
  .simulator-progress { max-width: 520px; }
  .managed-services > div { grid-template-columns: repeat(4, 1fr); gap: 18px 10px; }
  .footer { grid-template-columns: 1fr 1fr; }
  .copyright { grid-column: 1 / -1; text-align: left; }
  .dialog-shell { grid-template-columns: 1fr; }
  .dialog-intro { padding: 42px 34px; }
  .dialog-result { margin-top: 24px; }
  .dialog-success { grid-column: 1; }
}

@media (max-width: 700px) {
  html { scroll-padding-top: 72px; }
  .nav-wrap { height: 74px; width: min(100% - 30px, var(--max)); }
  .brand { min-width: 0; }
  .brand-symbol-crop { width: 43px; height: 43px; flex-basis: 43px; }
  .brand-symbol-crop img { width: 96px; left: -26px; top: -3px; }
  .brand-copy strong { font-size: 21px; }
  .brand-copy small { display: none; }
  .menu-button { display: block; }
  .main-nav { display: none; position: absolute; top: 74px; left: 0; right: 0; padding: 20px 16px 24px; background: rgba(6,26,51,.98); border-top: 1px solid rgba(255,255,255,.14); flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav.is-open { display: flex; }
  .main-nav a:not(.nav-cta) { display: block; padding: 13px 4px; }
  .nav-cta { text-align: center; margin-top: 10px; }
  .hero { min-height: 780px; height: 100svh; }
  .hero-photo { background-position: 59% center; opacity: .72; }
  .hero-shade { background: linear-gradient(90deg, rgba(3,16,32,.98), rgba(5,25,49,.68)), linear-gradient(0deg, rgba(3,16,32,.86), transparent 45%); }
  .hero-content { width: calc(100% - 32px); padding-top: 70px; justify-content: center; }
  .hero h1 { font-size: clamp(43px, 13.5vw, 61px); }
  .hero-lead { font-size: 17px; margin: 22px 0 28px; }
  .hero-actions { width: 100%; }
  .button { width: 100%; }
  .hero-proof { width: 100%; margin-top: 36px; }
  .hero-proof div { min-width: 0; flex: 1; padding-right: 10px; margin-right: 10px; }
  .hero-proof span { display: none; }
  .hero-index { display: none; }
  .section, .process-inner { width: calc(100% - 32px); padding: 80px 0; }
  .section-head { margin-bottom: 35px; }
  .section-head > p { font-size: 16px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card-featured { min-height: 300px; grid-row: auto; }
  .service-card-featured { min-height: 520px; }
  .process::before { font-size: 90px; bottom: -20px; }
  .about { gap: 55px; }
  .about-panel { min-height: 420px; padding: 34px; box-shadow: 12px 12px 0 var(--ice); }
  .about-panel blockquote { font-size: 23px; }
  .simulator { padding: 80px 16px; }
  .simulator-heading { gap: 20px; margin-bottom: 34px; }
  .simulator-lead { font-size: 15px; }
  .simulator-progress { width: 100%; gap: 8px; }
  .simulator-progress li { min-width: 0; }
  .simulator-progress small { font-size: 9px; white-space: normal; line-height: 1.25; }
  .simulator-progress li:not(:last-child)::after { left: calc(50% + 21px); right: calc(-50% + 21px); }
  .simulator-controls, .simulator-results { padding: 25px 20px; }
  .simulator-field-grid { grid-template-columns: 1fr; }
  .scenario-choice { margin-left: 0; }
  .cost-summary div { align-items: flex-start; }
  .cost-summary dt { max-width: 65%; }
  .fullserv-cost-card { grid-template-columns: 44px 1fr; }
  .fullserv-cost-icon { width: 42px; height: 42px; }
  .economy-panel { grid-template-columns: 45px 1fr; }
  .economy-icon { width: 43px; height: 43px; }
  .economy-annual { grid-column: 1 / -1; min-height: 0; padding: 12px 0 0 60px; border-top: 1px solid #75bd8a; border-left: 0; }
  .client-cost-basis ul { grid-template-columns: 1fr; }
  .managed-services h3 { display: block; font-size: 15px; }
  .managed-services h3::before, .managed-services h3::after { display: none; }
  .managed-services > div { grid-template-columns: repeat(2, 1fr); }
  .field-row, .scenario-grid { grid-template-columns: 1fr; }
  .comparison-grid { grid-template-columns: 1fr; }
  .management-grid { grid-template-columns: 1fr; }
  .scenario-card { padding: 21px; }
  .cost-card { padding: 21px; }
  .credit-summary { grid-template-columns: 1fr; }
  .credit-summary > div + div { padding: 13px 0 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.14); }
  .savings-card { align-items: flex-start; }
  .annual-saving { min-width: 110px; }
  .simulator-disclaimer { flex-direction: column; gap: 6px; }
  .careers { padding: 80px 16px; }
  .careers-form { padding: 25px 20px; }
  .public-form-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  .lead-dialog { width: calc(100% - 16px); max-height: calc(100svh - 16px); border-radius: 14px; }
  .dialog-intro { padding: 40px 25px 28px; }
  .dialog-intro h2 { padding-right: 34px; }
  .lead-form { padding: 28px 20px 24px; }
  .dialog-success { padding: 60px 25px 36px; }
  .contact { padding: 80px 16px; gap: 55px; }
  .contact-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .contact-phone { align-items: center; }
  .footer { width: calc(100% - 32px); grid-template-columns: 1fr; gap: 22px; align-items: start; }
  .footer-meta { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}
