/*
 * Krause subpage design system
 * One stylesheet for company, audiences, services, issues, locations and editorial pages.
 * New pages should use the sp-* primitives; legacy feature classes below remain centralized here.
 */
:root {
  --sp-ink: #071d33;
  --sp-text: #294553;
  --sp-muted: #647680;
  --sp-line: #dce2e6;
  --sp-soft: #f3f5f6;
  --sp-white: #fff;
  --sp-blue: #07539b;
  --sp-action: #cf1765;
  --sp-action-dark: #a80f50;
  --sp-radius: 8px;
  --sp-section-space: 100px;
  --sp-content-gap: clamp(48px, 7vw, 108px);
  --detail-ink: var(--sp-ink); --detail-text: var(--sp-text); --detail-muted: var(--sp-muted); --detail-line: var(--sp-line); --detail-soft: var(--sp-soft); --detail-blue: var(--sp-blue); --detail-action: var(--sp-action); --detail-action-dark: var(--sp-action-dark);
  --company-ink: var(--sp-ink); --company-text: var(--sp-text); --company-muted: var(--sp-muted); --company-line: var(--sp-line); --company-soft: var(--sp-soft); --company-blue: var(--sp-blue); --company-action: var(--sp-action); --company-action-dark: var(--sp-action-dark);
  --guide-ink: var(--sp-ink); --guide-text: var(--sp-text); --guide-muted: var(--sp-muted); --guide-line: var(--sp-line); --guide-soft: #f4f6f7; --guide-blue: var(--sp-blue); --guide-action: var(--sp-action); --guide-action-dark: var(--sp-action-dark);
}

/* Shared hero API: split | media-left | immersive | compact */
.sp-hero { position: relative; overflow: hidden; background: var(--sp-white); }
.sp-hero__grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(420px,.9fr); gap: var(--sp-content-gap); align-items: center; min-height: 680px; padding-block: 76px; }
.sp-hero__copy { position: relative; z-index: 3; }
.sp-hero__watermark { position: absolute; z-index: 1; top: 46px; left: max(24px,calc((100vw - min(1320px,calc(100vw - 48px))) / 2)); color: rgba(7,29,51,.045); font-family: var(--eco-display); font-size: 11rem; font-weight: 900; line-height: .75; pointer-events: none; white-space: nowrap; }
.sp-hero__kicker { color: var(--sp-blue); font-size: .74rem; font-weight: 800; }
.sp-hero__copy h1 { max-width: 820px; margin: 15px 0 23px; color: var(--sp-ink); font-family: var(--eco-display); font-size: clamp(4.1rem,6.1vw,6.9rem); line-height: .88; }
.sp-hero__copy > p { max-width: 710px; margin: 0; color: var(--sp-muted); font-size: 1.04rem; line-height: 1.78; }
.sp-hero__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.sp-hero__actions:empty { display: none; }
.sp-hero__actions > a { display: inline-flex; min-height: 50px; align-items: center; gap: 9px; padding: 0 18px; border: 1px solid var(--sp-line); border-radius: 6px; color: var(--sp-ink); font-size: .8rem; font-weight: 800; text-decoration: none; }
.sp-hero__actions > a:first-child { border-color: var(--sp-action); background: var(--sp-action); color: #fff; }
.sp-hero__actions > a:first-child:hover { border-color: var(--sp-action-dark); background: var(--sp-action-dark); }
.sp-hero__actions > a:not(:first-child):hover { border-color: #9ba9b1; background: var(--sp-soft); }
.sp-hero__actions svg { width: 17px; }
.sp-hero__signals { display: flex; flex-wrap: wrap; gap: 12px 24px; max-width: 760px; margin: 30px 0 0; padding: 22px 0 0; border-top: 1px solid var(--sp-line); list-style: none; }
.sp-hero__signals li { display: inline-flex; align-items: center; gap: 7px; color: var(--sp-text); font-size: .72rem; font-weight: 700; }
.sp-hero__signals svg { width: 14px; color: var(--sp-blue); }
.sp-hero__media { position: relative; margin: 0; }
.sp-hero__media img { display: block; width: 100%; min-height: 560px; aspect-ratio: 4/5; object-fit: cover; border-radius: 9px 9px 52px 9px; }
.sp-hero__marker { position: absolute; right: 18px; bottom: 18px; display: inline-flex; gap: 7px; align-items: center; padding: 10px 13px; border-radius: 5px; background: #fff; color: var(--sp-ink); font-size: .7rem; font-weight: 800; }
.sp-hero__marker svg { width: 15px; color: var(--sp-action); }
.sp-hero--media-left .sp-hero__grid { grid-template-columns: minmax(420px,.9fr) minmax(0,1fr); }
.sp-hero--media-left .sp-hero__media { order: -1; }
.sp-hero--media-left .sp-hero__media img { border-radius: 9px 52px 9px 9px; }
.sp-hero--immersive { min-height: 650px; background: var(--sp-ink); color: #fff; }
.sp-hero--immersive::after { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg,rgba(4,20,34,.96) 0%,rgba(4,20,34,.78) 46%,rgba(4,20,34,.18) 100%); content: ""; }
.sp-hero--immersive .sp-hero__grid { display: flex; min-height: 650px; align-items: center; padding-block: 90px; }
.sp-hero--immersive .sp-hero__copy { width: min(700px,62%); }
.sp-hero--immersive .sp-hero__kicker { color: #a8cae9; }
.sp-hero--immersive .sp-hero__copy h1 { color: #fff; }
.sp-hero--immersive .sp-hero__copy > p { color: rgba(255,255,255,.72); }
.sp-hero--immersive .sp-hero__watermark { z-index: 2; top: 70px; color: rgba(255,255,255,.075); }
.sp-hero--immersive .sp-hero__signals { border-color: rgba(255,255,255,.2); }
.sp-hero--immersive .sp-hero__signals li { color: rgba(255,255,255,.78); }
.sp-hero--immersive .sp-hero__signals svg { color: #fff; }
.sp-hero--immersive .sp-hero__actions > a:not(:first-child) { border-color: rgba(255,255,255,.35); color: #fff; }
.sp-hero--immersive .sp-hero__actions > a:not(:first-child):hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.1); }
.sp-hero--immersive .sp-hero__media { position: absolute; inset: 0; }
.sp-hero--immersive .sp-hero__media img { width: 100%; height: 100%; min-height: 0; border-radius: 0; }
.sp-hero--immersive .sp-hero__marker { z-index: 3; right: max(24px,calc((100vw - min(1320px,calc(100vw - 48px))) / 2)); }
.sp-hero--compact { background: var(--sp-soft); }
.sp-hero--compact .sp-hero__grid { grid-template-columns: minmax(0,1.25fr) minmax(360px,.75fr); min-height: 560px; padding-block: 64px; }
.sp-hero--compact .sp-hero__copy h1 { max-width: 850px; font-size: clamp(3.8rem,5vw,5.7rem); }
.sp-hero--compact .sp-hero__media img { min-height: 370px; aspect-ratio: 16/11; border-radius: 8px; }

/* Shared section API for new modules. */
.sp-section { padding-block: var(--sp-section-space); background: #fff; }
.sp-section--soft { background: var(--sp-soft); }
.sp-section--dark { background: var(--sp-ink); color: #fff; }
.sp-section__head { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: end; margin-bottom: 42px; }
.sp-section__head h2 { margin: 9px 0 0; color: var(--sp-ink); font-family: var(--eco-display); font-size: clamp(3rem,4.8vw,5rem); line-height: .95; }
.sp-section__head p { max-width: 580px; margin: 0; color: var(--sp-muted); line-height: 1.75; }
.sp-section--dark .sp-section__head h2 { color: #fff; }
.sp-section--dark .sp-section__head p { color: rgba(255,255,255,.62); }
.section-layout--offset .detail-section-head,
.section-layout--offset .company-section-head { grid-template-columns: .72fr 1.28fr; }
.section-layout--center .detail-section-head,
.section-layout--center .company-section-head { display: block; max-width: 880px; margin-inline: auto; text-align: center; }
.section-layout--center .detail-section-head p,
.section-layout--center .company-section-head p { margin: 18px auto 0; }
.section-layout--rail .detail-use-grid,
.section-layout--rail .company-role-grid { border-bottom: 1px solid var(--sp-line); }
.section-layout--stagger .detail-use-grid article:nth-child(2),
.section-layout--stagger .company-role-grid article:nth-child(2) { transform: translateY(22px); background: #fff; }

@media (prefers-reduced-motion: no-preference) {
  .sp-hero__copy { animation: sp-copy-in .6s cubic-bezier(.2,.75,.25,1) both; }
  .sp-hero__media { animation: sp-media-in .75s .08s cubic-bezier(.2,.75,.25,1) both; }
  @keyframes sp-copy-in { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
  @keyframes sp-media-in { from { opacity: 0; transform: translateY(12px) scale(.99); } to { opacity: 1; transform: none; } }
}

/* Detail-page modules */
:root { --detail-ink:#071d33; --detail-text:#294553; --detail-muted:#647680; --detail-line:#dce2e6; --detail-soft:#f3f5f6; --detail-blue:#07539b; --detail-action:#cf1765; --detail-action-dark:#a80f50; }
.detail-kicker { color:var(--detail-blue); font-size:.74rem; font-weight:800; }
.detail-hero { padding:82px 0 68px; background:#fff; }
.detail-hero-grid { display:grid; grid-template-columns:minmax(0,1fr) minmax(420px,.9fr); gap:clamp(52px,7vw,108px); align-items:center; }
.detail-hero-copy h1 { max-width:820px; margin:15px 0 23px; color:var(--detail-ink); font-family:var(--eco-display); font-size:clamp(4.2rem,6.2vw,7rem); line-height:.88; }
.detail-hero-copy > p { max-width:720px; margin:0; color:var(--detail-muted); font-size:1.04rem; line-height:1.78; }
.detail-hero-actions { display:flex; flex-wrap:wrap; gap:10px; margin-top:30px; }
.detail-hero-actions > a { display:inline-flex; min-height:50px; align-items:center; gap:9px; padding:0 18px; border:1px solid var(--detail-line); border-radius:6px; color:var(--detail-ink); font-size:.8rem; font-weight:800; text-decoration:none; }
.detail-hero-actions > a:first-child { border-color:var(--detail-action); background:var(--detail-action); color:#fff; }
.detail-hero-actions > a:first-child:hover { border-color:var(--detail-action-dark); background:var(--detail-action-dark); }
.detail-hero-actions svg { width:17px; }
.detail-hero figure { position:relative; margin:0; }
.detail-hero figure img { display:block; width:100%; min-height:560px; aspect-ratio:4/5; object-fit:cover; border-radius:9px 9px 52px 9px; }
.detail-hero figcaption { position:absolute; right:18px; bottom:18px; display:inline-flex; gap:7px; align-items:center; padding:10px 13px; border-radius:5px; background:#fff; color:var(--detail-ink); font-size:.7rem; font-weight:800; }
.detail-hero figcaption svg { width:15px; color:var(--detail-action); }
.detail-intro { padding:96px 0; }
.detail-intro-grid { display:grid; grid-template-columns:minmax(0,.85fr) minmax(0,1.15fr); gap:clamp(50px,9vw,145px); align-items:start; }
.detail-intro h2,.detail-section-head h2 { margin:9px 0 0; color:var(--detail-ink); font-family:var(--eco-display); font-size:clamp(3rem,4.8vw,5rem); line-height:.95; }
.detail-intro-copy > p { margin:0 0 18px; color:var(--detail-text); font-size:.98rem; line-height:1.85; }
.detail-checks { display:grid; margin:28px 0 0; padding:0; border-top:1px solid var(--detail-line); list-style:none; }
.detail-checks li { display:grid; grid-template-columns:20px 1fr; gap:11px; padding:15px 0; border-bottom:1px solid var(--detail-line); color:var(--detail-text); font-size:.86rem; line-height:1.55; }
.detail-checks svg { width:16px; color:var(--detail-blue); }
.detail-section { padding:100px 0; }
.detail-section.is-soft { background:var(--detail-soft); }
.detail-section.is-dark { background:var(--detail-ink); color:#fff; }
.detail-section.is-dark .detail-kicker { color:#9bc2e5; }
.detail-section.is-dark .detail-section-head h2 { color:#fff; }
.detail-section.is-dark .detail-section-head p { color:rgba(255,255,255,.62); }
.detail-section-head { display:grid; grid-template-columns:1.1fr .9fr; gap:70px; align-items:end; margin-bottom:42px; }
.detail-section-head p { max-width:580px; margin:0; color:var(--detail-muted); line-height:1.75; }
.detail-use-grid { display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid var(--detail-line); }
.detail-use-grid article { display:flex; min-height:275px; flex-direction:column; padding:30px; border-right:1px solid var(--detail-line); }
.detail-use-grid article:last-child { border-right:0; }
.detail-use-grid > article > svg { width:24px; color:var(--detail-blue); }
.detail-use-grid h3 { margin:42px 0 9px; color:var(--detail-ink); font-family:var(--eco-display); font-size:1.95rem; line-height:1; }
.detail-use-grid p { margin:0; color:var(--detail-muted); font-size:.83rem; line-height:1.65; }
.detail-use-grid a { display:inline-flex; align-items:center; gap:7px; width:fit-content; margin-top:auto; color:var(--detail-blue); font-size:.75rem; font-weight:800; text-decoration:none; }
.detail-use-grid a svg { width:14px; }
.detail-process { display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid rgba(255,255,255,.2); }
.detail-process article { min-height:245px; padding:30px 26px; border-right:1px solid rgba(255,255,255,.2); }
.detail-process article:last-child { border-right:0; }
.detail-process span { color:#9bc2e5; font-family:var(--eco-display); font-size:.85rem; font-weight:800; }
.detail-process h3 { margin:44px 0 9px; font-family:var(--eco-display); font-size:1.8rem; }
.detail-process p { margin:0; color:rgba(255,255,255,.6); font-size:.8rem; line-height:1.65; }
.detail-service-list { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.detail-service-list a { display:flex; min-height:250px; flex-direction:column; padding:28px; border:1px solid var(--detail-line); border-radius:7px; background:#fff; color:var(--detail-ink); text-decoration:none; }
.detail-service-list span { color:var(--detail-blue); font-size:.68rem; font-weight:800; }
.detail-service-list h3 { margin:30px 0 9px; font-family:var(--eco-display); font-size:1.9rem; }
.detail-service-list p { margin:0; color:var(--detail-muted); font-size:.8rem; line-height:1.6; }
.detail-service-list b { display:inline-flex; align-items:center; gap:7px; margin-top:auto; color:var(--detail-blue); font-size:.74rem; }
.detail-service-list b svg { width:14px; }
.detail-service-list a:hover { border-color:#aeb9bf; }
.detail-alert { display:grid; grid-template-columns:28px 1fr; gap:17px; padding:24px; border-left:4px solid var(--detail-action); background:#faf7f8; }
.detail-alert > svg { width:24px; color:var(--detail-action); }
.detail-alert h3 { margin:0 0 6px; color:var(--detail-ink); font-size:.9rem; }
.detail-alert p { margin:0; color:var(--detail-text); font-size:.84rem; line-height:1.65; }
.detail-faq { border-top:1px solid var(--detail-line); }
.detail-faq details { border-bottom:1px solid var(--detail-line); }
.detail-faq summary { display:flex; justify-content:space-between; gap:18px; align-items:center; padding:20px 0; color:var(--detail-ink); font-size:.9rem; font-weight:750; cursor:pointer; list-style:none; }
.detail-faq summary::-webkit-details-marker { display:none; }
.detail-faq summary svg { width:18px; transition:transform .2s ease; }
.detail-faq details[open] summary svg { transform:rotate(45deg); }
.detail-faq p { max-width:760px; margin:-4px 0 22px; color:var(--detail-muted); font-size:.86rem; line-height:1.75; }
.detail-region { display:grid; grid-template-columns:minmax(0,1fr) minmax(360px,.8fr); gap:70px; align-items:center; }
.detail-region img { width:100%; min-height:440px; object-fit:cover; border-radius:8px; }
.detail-region-copy h2 { margin:9px 0 17px; color:var(--detail-ink); font-family:var(--eco-display); font-size:clamp(3rem,4.5vw,4.7rem); line-height:.96; }
.detail-region-copy > p { color:var(--detail-muted); line-height:1.8; }
.detail-region-facts { display:grid; grid-template-columns:1fr 1fr; margin-top:28px; border-top:1px solid var(--detail-line); }
.detail-region-facts div { padding:20px 0; border-bottom:1px solid var(--detail-line); }
.detail-region-facts div:nth-child(odd) { border-right:1px solid var(--detail-line); padding-right:18px; }
.detail-region-facts div:nth-child(even) { padding-left:18px; }
.detail-region-facts small { display:block; color:var(--detail-muted); font-size:.65rem; }
.detail-region-facts b { color:var(--detail-ink); font-size:.82rem; }
.detail-cta { padding:78px 0; background:var(--detail-ink); color:#fff; }
.detail-cta .detail-kicker { color:#9bc2e5; }
.detail-cta-inner { display:grid; grid-template-columns:1fr auto; gap:50px; align-items:center; }
.detail-cta h2 { max-width:790px; margin:8px 0; font-family:var(--eco-display); font-size:clamp(2.9rem,4vw,4.4rem); line-height:.97; }
.detail-cta p { max-width:700px; margin:0; color:rgba(255,255,255,.63); line-height:1.7; }
.detail-cta-actions { display:flex; gap:10px; }
.detail-cta-actions > a { display:inline-flex; min-height:52px; align-items:center; gap:10px; padding:0 18px; border:1px solid rgba(255,255,255,.24); border-radius:6px; color:#fff; text-decoration:none; }
.detail-cta-actions > a:first-child { border-color:var(--detail-action); background:var(--detail-action); }
.detail-cta-actions > a:first-child:hover { border-color:var(--detail-action-dark); background:var(--detail-action-dark); }
.detail-cta-actions svg { width:18px; }.detail-cta-actions span { display:grid; }.detail-cta-actions small { color:rgba(255,255,255,.55); font-size:.6rem; }.detail-cta-actions b { font-size:.76rem; }
@media (max-width:991.98px) { .detail-hero-grid,.detail-intro-grid,.detail-section-head,.detail-region { grid-template-columns:1fr; } .detail-hero figure img { min-height:450px; aspect-ratio:16/10; } .detail-use-grid,.detail-service-list { grid-template-columns:repeat(2,1fr); } .detail-process { grid-template-columns:1fr 1fr; } .detail-process article:nth-child(2) { border-right:0; } .detail-process article { border-bottom:1px solid rgba(255,255,255,.2); } .detail-cta-inner { grid-template-columns:1fr; } }
@media (max-width:640px) { .detail-hero { padding-top:58px; } .detail-hero-copy h1 { font-size:3.65rem; } .detail-hero figure img { min-height:390px; aspect-ratio:4/5; border-radius:8px 8px 30px 8px; } .detail-intro,.detail-section { padding:72px 0; } .detail-use-grid,.detail-service-list,.detail-process { grid-template-columns:1fr; } .detail-use-grid article,.detail-process article { border-right:0; border-bottom:1px solid var(--detail-line); } .detail-process article { border-bottom-color:rgba(255,255,255,.2); } .detail-cta-actions { align-items:stretch; flex-direction:column; } }
@media (prefers-reduced-motion:reduce) { .detail-faq summary svg { transition:none; } }

/* Company modules */
:root { --company-ink:#071d33; --company-text:#294553; --company-muted:#647680; --company-line:#dce2e6; --company-soft:#f3f5f6; --company-blue:#07539b; --company-action:#cf1765; --company-action-dark:#a80f50; }
.company-kicker { color:var(--company-blue); font-size:.74rem; font-weight:800; }
.company-hero { padding:84px 0 72px; background:#fff; }
.company-hero-grid { display:grid; grid-template-columns:minmax(0,1fr) minmax(430px,.9fr); gap:clamp(54px,7vw,110px); align-items:center; }
.company-hero-copy h1 { max-width:790px; margin:15px 0 23px; color:var(--company-ink); font-family:var(--eco-display); font-size:clamp(4.2rem,6.2vw,7rem); line-height:.88; }
.company-hero-copy > p { max-width:700px; margin:0; color:var(--company-muted); font-size:1.04rem; line-height:1.78; }
.company-hero-actions { display:flex; flex-wrap:wrap; gap:10px; margin-top:30px; }
.company-hero-actions:empty { display:none; }
.company-hero-actions > a { display:inline-flex; min-height:50px; align-items:center; gap:9px; padding:0 18px; border:1px solid var(--company-line); border-radius:6px; color:var(--company-ink); font-size:.8rem; font-weight:800; text-decoration:none; }
.company-hero-actions > a:first-child { border-color:var(--company-action); background:var(--company-action); color:#fff; }
.company-hero-actions > a:first-child:hover { border-color:var(--company-action-dark); background:var(--company-action-dark); }
.company-hero-actions svg { width:17px; }
.company-hero-media { position:relative; margin:0; }
.company-hero-media img { display:block; width:100%; min-height:570px; aspect-ratio:4/5; object-fit:cover; border-radius:9px 9px 54px 9px; }
.company-hero-media figcaption { position:absolute; right:18px; bottom:18px; display:inline-flex; gap:7px; align-items:center; padding:10px 13px; border-radius:5px; background:#fff; color:var(--company-ink); font-size:.7rem; font-weight:800; }
.company-hero-media figcaption svg { width:15px; color:var(--company-action); }
.company-intro { padding:96px 0; }
.company-intro-grid { display:grid; grid-template-columns:minmax(0,.85fr) minmax(0,1.15fr); gap:clamp(50px,9vw,150px); align-items:start; }
.company-intro h2,.company-section-head h2 { margin:10px 0 0; color:var(--company-ink); font-family:var(--eco-display); font-size:clamp(3rem,4.8vw,5rem); line-height:.95; }
.company-intro-copy > p { margin:0 0 18px; color:var(--company-text); font-size:.98rem; line-height:1.85; }
.company-signature { display:block; margin-top:28px; color:var(--company-blue); font-family:Georgia,serif; font-size:1.6rem; font-style:italic; }
.company-values { display:grid; grid-template-columns:repeat(3,1fr); margin-top:70px; border-top:1px solid var(--company-line); }
.company-values article { min-height:210px; padding:28px 26px; border-right:1px solid var(--company-line); }
.company-values article:last-child { border-right:0; }
.company-values span { color:var(--company-blue); font-family:var(--eco-display); font-size:.8rem; font-weight:800; }
.company-values h3 { margin:34px 0 8px; color:var(--company-ink); font-family:var(--eco-display); font-size:1.9rem; line-height:1; }
.company-values p { margin:0; color:var(--company-muted); font-size:.82rem; line-height:1.65; }
.company-section { padding:100px 0; }
.company-section.is-soft { background:var(--company-soft); }
.company-section.is-dark { background:var(--company-ink); color:#fff; }
.company-section.is-dark .company-kicker { color:#9bc2e5; }
.company-section.is-dark .company-section-head h2 { color:#fff; }
.company-section.is-dark .company-section-head p { color:rgba(255,255,255,.62); }
.company-section-head { display:grid; grid-template-columns:1.1fr .9fr; gap:70px; align-items:end; margin-bottom:42px; }
.company-section-head p { max-width:580px; margin:0; color:var(--company-muted); line-height:1.75; }
.company-routes { display:grid; grid-template-columns:1.15fr .85fr .85fr; gap:18px; }
.company-route { position:relative; display:flex; overflow:hidden; min-height:480px; flex-direction:column; justify-content:flex-end; padding:30px; border-radius:8px; background:var(--company-ink); color:#fff; text-decoration:none; }
.company-route img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform .45s ease; }
.company-route::after { position:absolute; inset:25% 0 0; background:linear-gradient(transparent,rgba(4,19,31,.92)); content:""; }
.company-route > *:not(img) { position:relative; z-index:1; }
.company-route span { color:rgba(255,255,255,.7); font-size:.7rem; font-weight:800; }
.company-route h3 { max-width:390px; margin:9px 0 10px; font-family:var(--eco-display); font-size:2.4rem; line-height:1; }
.company-route p { max-width:380px; margin:0 0 20px; color:rgba(255,255,255,.72); font-size:.82rem; line-height:1.6; }
.company-route b { display:inline-flex; align-items:center; gap:7px; font-size:.76rem; }
.company-route b svg { width:15px; }
.company-route:hover img { transform:scale(1.025); }
.company-process { display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid rgba(255,255,255,.2); }
.company-process article { min-height:250px; padding:30px 26px; border-right:1px solid rgba(255,255,255,.2); }
.company-process article:last-child { border-right:0; }
.company-process span { color:#9bc2e5; font-family:var(--eco-display); font-weight:800; }
.company-process h3 { margin:46px 0 9px; font-family:var(--eco-display); font-size:1.8rem; }
.company-process p { margin:0; color:rgba(255,255,255,.6); font-size:.8rem; line-height:1.65; }
.company-process.is-light { border-color:var(--company-line); }
.company-process.is-light article { border-color:var(--company-line); }
.company-process.is-light h3 { color:var(--company-ink); }
.company-process.is-light p { color:var(--company-muted); }
.company-proof-image { display:grid; grid-template-columns:1.2fr .8fr; gap:18px; }
.company-proof-image figure { position:relative; overflow:hidden; min-height:520px; margin:0; border-radius:8px; }
.company-proof-image figure:last-child { min-height:390px; align-self:end; }
.company-proof-image img { width:100%; height:100%; object-fit:cover; }
.company-proof-image figcaption { position:absolute; right:20px; bottom:20px; left:20px; color:#fff; font-size:.75rem; font-weight:800; }
.company-tabs { display:flex; gap:6px; overflow-x:auto; margin-bottom:30px; padding-bottom:17px; border-bottom:1px solid var(--company-line); }
.company-tabs button { min-height:42px; padding:0 16px; border:0; border-radius:5px; background:transparent; color:#53666f; font:750 .78rem var(--eco-body); white-space:nowrap; }
.company-tabs button:hover { background:#fff; color:var(--company-ink); }
.company-tabs button.is-active { background:var(--company-ink); color:#fff; }
.company-tab-panel { display:grid; grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr); gap:70px; align-items:start; }
.company-tab-panel[hidden] { display:none; }
.company-tab-panel h3 { margin:0 0 15px; color:var(--company-ink); font-family:var(--eco-display); font-size:2.8rem; line-height:1; }
.company-tab-panel p { color:var(--company-muted); line-height:1.75; }
.company-list { display:grid; margin:0; padding:0; border-top:1px solid var(--company-line); list-style:none; }
.company-list li { display:grid; grid-template-columns:20px 1fr; gap:11px; padding:15px 0; border-bottom:1px solid var(--company-line); color:var(--company-text); font-size:.86rem; line-height:1.55; }
.company-list svg { width:16px; color:var(--company-blue); }
.company-role-grid { display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid var(--company-line); }
.company-role-grid article { display:flex; min-height:265px; flex-direction:column; padding:30px; border-right:1px solid var(--company-line); }
.company-role-grid article:last-child { border-right:0; }
.company-role-grid svg { width:23px; color:var(--company-blue); }
.company-role-grid h3 { margin:38px 0 8px; color:var(--company-ink); font-family:var(--eco-display); font-size:1.85rem; }
.company-role-grid p { margin:0; color:var(--company-muted); font-size:.82rem; line-height:1.65; }
.company-role-grid a { display:inline-flex; gap:7px; align-items:center; width:fit-content; margin-top:auto; color:var(--company-blue); font-size:.75rem; font-weight:800; text-decoration:none; }
.company-role-grid a svg { width:14px; }
.company-cta { padding:78px 0; background:var(--company-ink); color:#fff; }
.company-cta .company-kicker { color:#9bc2e5; }
.company-cta-inner { display:grid; grid-template-columns:1fr auto; gap:50px; align-items:center; }
.company-cta h2 { max-width:760px; margin:8px 0; font-family:var(--eco-display); font-size:clamp(2.9rem,4vw,4.4rem); line-height:.97; }
.company-cta p { max-width:700px; margin:0; color:rgba(255,255,255,.63); line-height:1.7; }
.company-cta-actions { display:flex; gap:10px; }
.company-cta-actions > a { display:inline-flex; min-height:52px; align-items:center; gap:10px; padding:0 18px; border:1px solid rgba(255,255,255,.24); border-radius:6px; color:#fff; text-decoration:none; }
.company-cta-actions > a:first-child { border-color:var(--company-action); background:var(--company-action); }
.company-cta-actions > a:first-child:hover { border-color:var(--company-action-dark); background:var(--company-action-dark); }
.company-cta-actions svg { width:18px; }
.company-cta-actions span { display:grid; }
.company-cta-actions small { color:rgba(255,255,255,.55); font-size:.6rem; }
.company-cta-actions b { font-size:.76rem; }
@media (max-width:991.98px) { .company-hero-grid,.company-intro-grid,.company-section-head,.company-tab-panel { grid-template-columns:1fr; } .company-hero-media img { min-height:450px; aspect-ratio:16/10; } .company-routes { grid-template-columns:1fr 1fr; } .company-route:first-child { grid-column:1/-1; } .company-process { grid-template-columns:1fr 1fr; } .company-process article:nth-child(2) { border-right:0; } .company-process article { border-bottom:1px solid rgba(255,255,255,.2); } .company-process.is-light article { border-bottom-color:var(--company-line); } .company-cta-inner { grid-template-columns:1fr; } }
@media (max-width:640px) { .company-hero { padding-top:58px; } .company-hero-copy h1 { font-size:3.7rem; } .company-hero-media img { min-height:390px; aspect-ratio:4/5; border-radius:8px 8px 30px 8px; } .company-intro,.company-section { padding:72px 0; } .company-values,.company-routes,.company-process,.company-proof-image,.company-role-grid { grid-template-columns:1fr; } .company-values article,.company-route,.company-process article,.company-role-grid article { border-right:0; border-bottom:1px solid var(--company-line); } .company-route:first-child { grid-column:auto; } .company-route { min-height:400px; } .company-proof-image figure,.company-proof-image figure:last-child { min-height:390px; } .company-cta-actions { align-items:stretch; flex-direction:column; } }
@media (prefers-reduced-motion:reduce) { .company-route img { transition:none; } }

/* Ratgeber modules */
:root {
  --guide-ink: #071d33;
  --guide-text: #294553;
  --guide-muted: #657680;
  --guide-line: #dce2e6;
  --guide-soft: #f4f6f7;
  --guide-blue: #07539b;
  --guide-action: #cf1765;
  --guide-action-dark: #a80f50;
}

.guide-kicker { color: var(--guide-blue); font-size: .75rem; font-weight: 800; }
.guide-hero { padding: 88px 0 64px; background: #fff; }
.guide-hero-grid { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(420px,.95fr); gap: clamp(48px,7vw,108px); align-items: center; }
.guide-hero-copy h1 { max-width: 760px; margin: 16px 0 24px; color: var(--guide-ink); font-family: var(--eco-display); font-size: clamp(4rem,6.2vw,6.8rem); line-height: .88; }
.guide-hero-copy h1 em { color: var(--guide-blue); font-style: normal; }
.guide-hero-copy > p { max-width: 700px; margin: 0; color: var(--guide-muted); font-size: 1.05rem; line-height: 1.75; }
.guide-search { display: grid; grid-template-columns: 22px minmax(0,1fr) auto; gap: 12px; align-items: center; max-width: 720px; min-height: 64px; margin-top: 34px; padding: 0 18px; border: 1px solid #cdd5da; border-radius: 8px; background: #fff; }
.guide-search:focus-within { border-color: #72838d; }
.guide-search svg { width: 20px; color: var(--guide-blue); }
.guide-search input { min-width: 0; border: 0; outline: 0; color: var(--guide-ink); font: 500 .94rem var(--eco-body); }
.guide-search input::placeholder { color: #7d8b93; }
.guide-search kbd { padding: 3px 8px; border: 1px solid var(--guide-line); border-radius: 4px; background: var(--guide-soft); color: #687780; font-size: .72rem; }
.guide-popular { display: flex; flex-wrap: wrap; gap: 8px 14px; margin-top: 16px; color: var(--guide-muted); font-size: .76rem; }
.guide-popular span { font-weight: 700; }
.guide-popular a { color: var(--guide-blue); text-underline-offset: 3px; }
.guide-feature-visual { position: relative; display: block; overflow: hidden; min-height: 570px; border-radius: 10px 10px 52px 10px; background: var(--guide-ink); color: #fff; text-decoration: none; }
.guide-feature-visual > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.guide-feature-visual::after { position: absolute; inset: 30% 0 0; background: linear-gradient(transparent,rgba(5,18,30,.92)); content: ""; }
.guide-feature-visual:hover > img { transform: scale(1.025); }
.guide-feature-label { position: absolute; z-index: 2; top: 22px; left: 22px; display: inline-flex; align-items: center; gap: 8px; padding: 9px 12px; border-radius: 5px; background: #fff; color: var(--guide-ink); font-size: .72rem; font-weight: 800; }
.guide-feature-label svg { width: 16px; color: var(--guide-action); }
.guide-feature-visual > div { position: absolute; z-index: 2; right: 32px; bottom: 30px; left: 32px; display: grid; }
.guide-feature-visual small { color: rgba(255,255,255,.7); font-size: .72rem; font-weight: 700; }
.guide-feature-visual strong { max-width: 500px; margin: 8px 0 18px; font-family: var(--eco-display); font-size: 2.55rem; line-height: 1.02; }
.guide-feature-visual div > span { display: inline-flex; align-items: center; gap: 7px; font-size: .8rem; font-weight: 800; }
.guide-feature-visual div svg { width: 16px; }

.guide-library { padding: 52px 0 110px; }
.guide-library-head { display: flex; justify-content: space-between; gap: 40px; align-items: end; margin-bottom: 30px; }
.guide-library-head h2 { margin: 8px 0 0; color: var(--guide-ink); font-family: var(--eco-display); font-size: clamp(2.8rem,4vw,4.4rem); line-height: .96; }
.guide-library-head > p { display: grid; margin: 0; text-align: right; }
.guide-library-head > p strong { color: var(--guide-ink); font-size: .9rem; }
.guide-library-head > p span { margin-top: 3px; color: var(--guide-muted); font-size: .75rem; }
.guide-library-head > a { display: inline-flex; align-items: center; gap: 7px; color: var(--guide-blue); font-size: .8rem; font-weight: 800; text-decoration: none; }
.guide-library-head > a svg { width: 16px; }
.guide-filters { display: flex; gap: 6px; overflow-x: auto; padding-bottom: 18px; border-bottom: 1px solid var(--guide-line); scrollbar-width: thin; }
.guide-filters button { min-height: 40px; padding: 0 15px; border: 0; border-radius: 5px; background: transparent; color: #52656f; font: 750 .78rem var(--eco-body); white-space: nowrap; }
.guide-filters button:hover { background: var(--guide-soft); color: var(--guide-ink); }
.guide-filters button.is-active { background: var(--guide-ink); color: #fff; }
.guide-results { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 38px 24px; padding-top: 36px; }
.guide-card { display: grid; grid-template-rows: 230px 1fr; min-width: 0; border-bottom: 1px solid var(--guide-line); }
.guide-card[hidden] { display: none; }
.guide-card-image { overflow: hidden; border-radius: 7px; background: #e8ecef; }
.guide-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.guide-card:hover .guide-card-image img { transform: scale(1.025); }
.guide-card-body { display: flex; flex-direction: column; padding: 22px 2px 26px; }
.guide-card-meta { display: flex; justify-content: space-between; gap: 12px; color: var(--guide-muted); font-size: .7rem; }
.guide-card-meta span { color: var(--guide-blue); font-weight: 800; }
.guide-card h3 { margin: 13px 0 12px; color: var(--guide-ink); font-family: var(--eco-display); font-size: 2rem; line-height: 1.03; }
.guide-card h3 a { text-decoration: none; }
.guide-card h3 a:hover { color: var(--guide-blue); }
.guide-card p { margin: 0 0 22px; color: var(--guide-muted); font-size: .86rem; line-height: 1.65; }
.guide-card-link { display: inline-flex; gap: 7px; align-items: center; width: fit-content; margin-top: auto; color: var(--guide-blue); font-size: .77rem; font-weight: 800; text-decoration: none; }
.guide-card-link svg { width: 15px; transition: transform .2s ease; }
.guide-card-link:hover svg { transform: translateX(3px); }
.guide-empty { padding: 70px 20px; text-align: center; }
.guide-empty svg { width: 32px; color: var(--guide-muted); }
.guide-empty h3 { margin: 14px 0 6px; color: var(--guide-ink); font-family: var(--eco-display); font-size: 2rem; }
.guide-empty p { color: var(--guide-muted); }
.guide-empty a { color: var(--guide-blue); font-weight: 800; }

.guide-paths { padding: 100px 0; background: var(--guide-soft); }
.guide-path-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid #cfd7dc; }
.guide-path-grid > a { display: flex; flex-direction: column; min-height: 300px; padding: 34px 30px; border-right: 1px solid #cfd7dc; color: var(--guide-ink); text-decoration: none; }
.guide-path-grid > a:last-child { border-right: 0; }
.guide-path-grid > a > svg { width: 26px; height: 26px; color: var(--guide-blue); }
.guide-path-grid > a > span { margin-top: 42px; color: var(--guide-muted); font-size: .74rem; font-weight: 750; }
.guide-path-grid strong { max-width: 310px; margin-top: 9px; font-family: var(--eco-display); font-size: 2rem; line-height: 1.04; }
.guide-path-grid b { display: inline-flex; align-items: center; gap: 7px; margin-top: auto; color: var(--guide-blue); font-size: .77rem; }
.guide-path-grid b svg { width: 15px; }
.guide-path-grid a:hover { background: #fff; }

.guide-contact { padding: 76px 0; background: var(--guide-ink); color: #fff; }
.guide-contact .guide-kicker { color: #9bc2e5; }
.guide-contact-inner { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; }
.guide-contact h2 { max-width: 760px; margin: 9px 0 8px; font-family: var(--eco-display); font-size: clamp(2.8rem,4vw,4.3rem); line-height: .98; }
.guide-contact p { max-width: 700px; margin: 0; color: rgba(255,255,255,.65); line-height: 1.7; }
.guide-contact-actions { display: flex; gap: 10px; align-items: center; }
.guide-contact-actions > a { display: inline-flex; min-height: 52px; align-items: center; gap: 10px; padding: 0 18px; border-radius: 6px; color: #fff; text-decoration: none; }
.guide-contact-actions > a:first-child { border-color: var(--guide-action); background: var(--guide-action); }
.guide-contact-actions > a:first-child:hover { border-color: var(--guide-action-dark); background: var(--guide-action-dark); }
.guide-contact-actions > a:last-child { border: 1px solid rgba(255,255,255,.25); }
.guide-contact-actions svg { width: 18px; }
.guide-contact-actions span { display: grid; }
.guide-contact-actions small { color: rgba(255,255,255,.55); font-size: .6rem; }
.guide-contact-actions b { font-size: .76rem; }

.article-hero { padding: 72px 0 58px; background: #fff; }
.article-hero-grid { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(380px,.75fr); gap: clamp(42px,7vw,100px); align-items: center; }
.article-hero h1 { max-width: 850px; margin: 16px 0 22px; color: var(--guide-ink); font-family: var(--eco-display); font-size: clamp(3.7rem,5.5vw,6rem); line-height: .92; }
.article-hero-copy > p { max-width: 760px; margin: 0; color: var(--guide-muted); font-size: 1.05rem; line-height: 1.75; }
.article-meta { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 28px; color: var(--guide-muted); font-size: .73rem; }
.article-meta span { display: inline-flex; gap: 7px; align-items: center; }
.article-meta svg { width: 15px; color: var(--guide-blue); }
.article-hero figure { margin: 0; }
.article-hero figure img { display: block; width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 8px 8px 42px 8px; }
.article-hero figcaption { margin-top: 9px; color: var(--guide-muted); font-size: .66rem; }
.article-layout { display: grid; grid-template-columns: 220px minmax(0,760px); gap: clamp(60px,9vw,140px); justify-content: center; padding-top: 58px; padding-bottom: 110px; }
.article-toc { position: sticky; top: 150px; align-self: start; }
.article-toc > span { display: block; margin-bottom: 14px; color: var(--guide-muted); font-size: .68rem; font-weight: 800; }
.article-toc nav { display: grid; border-top: 1px solid var(--guide-line); }
.article-toc nav a { padding: 11px 0; border-bottom: 1px solid var(--guide-line); color: #566a75; font-size: .72rem; line-height: 1.35; text-decoration: none; }
.article-toc nav a:hover { color: var(--guide-blue); }
.article-toc-help { display: flex; align-items: center; gap: 10px; margin-top: 24px; color: var(--guide-ink); text-decoration: none; }
.article-toc-help > svg { width: 18px; color: var(--guide-action); }
.article-toc-help span { display: grid; }
.article-toc-help b { font-size: .72rem; }
.article-toc-help small { color: var(--guide-muted); font-size: .65rem; }
.article-answer { margin-bottom: 64px; padding: 28px 30px; border-left: 4px solid var(--guide-action); background: var(--guide-soft); }
.article-answer > span { display: inline-flex; gap: 7px; align-items: center; color: var(--guide-action-dark); font-size: .7rem; font-weight: 800; }
.article-answer > span svg { width: 16px; }
.article-answer h2 { margin: 10px 0 9px; color: var(--guide-ink); font-family: var(--eco-display); font-size: 2.4rem; }
.article-answer p { margin: 0; color: var(--guide-text); font-size: 1rem; line-height: 1.75; }
.article-section { scroll-margin-top: 150px; margin-top: 72px; }
.article-section-number { color: var(--guide-blue); font-family: var(--eco-display); font-size: .85rem; font-weight: 800; }
.article-section h2,.article-faq h2 { margin: 8px 0 22px; color: var(--guide-ink); font-family: var(--eco-display); font-size: clamp(2.5rem,4vw,3.5rem); line-height: 1; }
.article-section > p { color: var(--guide-text); font-size: .96rem; line-height: 1.85; }
.article-section > ul { display: grid; gap: 0; margin: 25px 0; padding: 0; border-top: 1px solid var(--guide-line); list-style: none; }
.article-section > ul li { display: grid; grid-template-columns: 20px 1fr; gap: 12px; padding: 15px 0; border-bottom: 1px solid var(--guide-line); color: var(--guide-text); font-size: .9rem; line-height: 1.6; }
.article-section > ul svg { width: 17px; color: var(--guide-blue); }
.article-section > ol { display: grid; gap: 0; margin: 26px 0; padding: 0; list-style: none; }
.article-section > ol li { display: grid; grid-template-columns: 38px 1fr; gap: 16px; padding: 21px 0; border-top: 1px solid var(--guide-line); }
.article-section > ol li > span { display: grid; width: 32px; height: 32px; place-items: center; border-radius: 50%; background: var(--guide-ink); color: #fff; font-size: .72rem; font-weight: 800; }
.article-section > ol h3 { margin: 0 0 5px; color: var(--guide-ink); font-size: .96rem; }
.article-section > ol p { margin: 0; color: var(--guide-muted); font-size: .88rem; line-height: 1.7; }
.article-note { display: grid; grid-template-columns: 24px 1fr; gap: 13px; margin-top: 30px; padding: 20px; border: 1px solid #ded7d9; border-radius: 6px; background: #faf7f8; }
.article-note > svg { width: 21px; color: var(--guide-action); }
.article-note strong { color: var(--guide-ink); font-size: .78rem; }
.article-note p { margin: 4px 0 0; color: var(--guide-text); font-size: .84rem; line-height: 1.65; }
.article-faq { scroll-margin-top: 150px; margin-top: 84px; }
.article-faq > div { border-top: 1px solid var(--guide-line); }
.article-faq details { border-bottom: 1px solid var(--guide-line); }
.article-faq summary { display: flex; justify-content: space-between; gap: 18px; align-items: center; padding: 20px 0; color: var(--guide-ink); font-size: .92rem; font-weight: 750; cursor: pointer; list-style: none; }
.article-faq summary::-webkit-details-marker { display: none; }
.article-faq summary svg { width: 18px; transition: transform .2s ease; }
.article-faq details[open] summary svg { transform: rotate(45deg); }
.article-faq details p { max-width: 680px; margin: -6px 0 22px; color: var(--guide-muted); font-size: .88rem; line-height: 1.75; }
.article-sources { margin-top: 76px; padding-top: 26px; border-top: 1px solid var(--guide-line); }
.article-sources h2 { margin: 0 0 10px; color: var(--guide-ink); font-size: .95rem; }
.article-sources p { color: var(--guide-muted); font-size: .76rem; line-height: 1.65; }
.article-sources ul { display: grid; gap: 7px; padding: 0; list-style: none; }
.article-sources a { display: inline-flex; gap: 6px; align-items: center; color: var(--guide-blue); font-size: .75rem; }
.article-sources a svg { width: 13px; }
.article-related { padding: 96px 0; background: var(--guide-soft); }
.article-related-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid #cfd7dc; }
.article-related-grid > a { display: flex; flex-direction: column; min-height: 265px; padding: 28px; border-right: 1px solid #cfd7dc; color: var(--guide-ink); text-decoration: none; }
.article-related-grid > a:last-child { border-right: 0; }
.article-related-grid > a:hover { background: #fff; }
.article-related-grid span { color: var(--guide-blue); font-size: .68rem; font-weight: 800; }
.article-related-grid h3 { margin: 13px 0 10px; font-family: var(--eco-display); font-size: 1.8rem; line-height: 1.04; }
.article-related-grid p { margin: 0 0 20px; color: var(--guide-muted); font-size: .8rem; line-height: 1.6; }
.article-related-grid b { display: inline-flex; align-items: center; gap: 7px; margin-top: auto; color: var(--guide-blue); font-size: .74rem; }
.article-related-grid b svg { width: 14px; }

@media (max-width: 991.98px) {
  .sp-hero__watermark { top: 34px; font-size: 8rem; }
  .guide-hero-grid,.article-hero-grid { grid-template-columns: 1fr; }
  .guide-feature-visual { min-height: 480px; }
  .guide-results { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .guide-path-grid,.article-related-grid { grid-template-columns: 1fr; }
  .guide-path-grid > a,.article-related-grid > a { min-height: 230px; border-right: 0; border-bottom: 1px solid #cfd7dc; }
  .guide-contact-inner { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-toc { position: static; }
  .article-toc nav { grid-template-columns: repeat(2,1fr); }
  .article-toc nav a { padding-right: 18px; }
}

@media (max-width: 640px) {
  .guide-hero { padding-top: 60px; }
  .guide-hero-copy h1 { font-size: 3.7rem; }
  .guide-feature-visual { min-height: 420px; border-radius: 8px 8px 28px 8px; }
  .guide-feature-visual strong { font-size: 2rem; }
  .guide-library { padding-bottom: 76px; }
  .guide-library-head { align-items: start; flex-direction: column; gap: 12px; }
  .guide-library-head > p { text-align: left; }
  .guide-results { grid-template-columns: 1fr; }
  .guide-card { grid-template-rows: 210px 1fr; }
  .guide-paths,.article-related { padding: 72px 0; }
  .guide-contact { padding: 64px 0; }
  .guide-contact-actions { align-items: stretch; flex-direction: column; }
  .article-hero { padding-top: 56px; }
  .article-hero h1 { font-size: 3.35rem; }
  .article-hero figure img { border-radius: 7px 7px 28px 7px; }
  .article-layout { padding-top: 40px; padding-bottom: 78px; }
  .article-toc nav { grid-template-columns: 1fr; }
  .article-answer { padding: 23px 20px; }
  .article-section { margin-top: 60px; }
}

@media (prefers-reduced-motion: reduce) {
  .guide-feature-visual > img,.guide-card-image img,.guide-card-link svg { transition: none; }
}

@media (max-width: 991.98px) {
  .sp-hero__grid,.sp-hero--media-left .sp-hero__grid,.sp-hero--compact .sp-hero__grid { grid-template-columns: 1fr; min-height: auto; }
  .sp-hero--media-left .sp-hero__media { order: 0; }
  .sp-hero__media img,.sp-hero--media-left .sp-hero__media img { min-height: 440px; aspect-ratio: 16/10; border-radius: 9px 9px 42px 9px; }
  .sp-hero--immersive .sp-hero__copy { width: min(700px,78%); }
  .sp-section__head { grid-template-columns: 1fr; gap: 26px; }
  .section-layout--offset .detail-section-head,.section-layout--offset .company-section-head { grid-template-columns: 1fr; }
  .section-layout--stagger .detail-use-grid article:nth-child(2),.section-layout--stagger .company-role-grid article:nth-child(2) { transform: none; }
}
@media (max-width: 640px) {
  :root { --sp-section-space: 72px; }
  .sp-hero__grid { padding-block: 58px; }
  .sp-hero__copy h1,.sp-hero--compact .sp-hero__copy h1 { font-size: 3.6rem; }
  .sp-hero__media img,.sp-hero--media-left .sp-hero__media img { min-height: 390px; aspect-ratio: 4/5; border-radius: 8px 8px 30px 8px; }
  .sp-hero--immersive { min-height: 610px; }
  .sp-hero--immersive::after { background: linear-gradient(180deg,rgba(4,20,34,.5),rgba(4,20,34,.94) 66%); }
  .sp-hero--immersive .sp-hero__grid { min-height: 610px; align-items: end; padding-block: 58px; }
  .sp-hero--immersive .sp-hero__copy { width: 100%; }
  .sp-hero--immersive .sp-hero__marker { top: 18px; right: 18px; bottom: auto; }
  .sp-hero__actions { align-items: stretch; flex-direction: column; }
  .sp-hero__actions > a { justify-content: center; }
}
@media (prefers-reduced-motion: reduce) { .sp-hero * { scroll-behavior: auto; } }

/* Service ecosystem: five hubs with nested concrete services */
.service-subnav { position: relative; z-index: 4; background: #fff; box-shadow: 0 14px 34px rgba(7,29,51,.055); }
.service-subnav__inner { display: flex; min-height: 80px; align-items: stretch; }
.service-subnav__overview { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 8px; padding-right: 28px; color: var(--detail-ink); font-size: .72rem; font-weight: 800; text-decoration: none; white-space: nowrap; }
.service-subnav__overview svg { width: 16px; color: var(--detail-blue); }
.service-subnav__links { display: flex; min-width: 0; flex: 1; overflow-x: auto; scrollbar-width: none; }
.service-subnav__links::-webkit-scrollbar { display: none; }
.service-subnav__links a { position: relative; display: inline-flex; flex: 1 0 auto; align-items: center; justify-content: center; padding: 0 18px; color: #53666f; font-size: .78rem; font-weight: 750; text-decoration: none; white-space: nowrap; }
.service-subnav__links a::after { position: absolute; right: 18px; bottom: 0; left: 18px; height: 3px; background: var(--detail-action); content: ""; opacity: 0; transform: scaleX(.35); transition: opacity .2s ease,transform .2s ease; }
.service-subnav__links a:hover,.service-subnav__links a.is-active { color: var(--detail-ink); }
.service-subnav__links a.is-active::after { opacity: 1; transform: scaleX(1); }

.detail-services { padding: 100px 0; background: var(--detail-soft); }
.detail-service-directory { border-top: 1px solid #ccd5da; }
.detail-service-directory > a,.detail-service-directory > article { display: grid; grid-template-columns: 44px 42px minmax(0,1fr); gap: 22px; align-items: start; min-height: 190px; padding: 32px 4px; border-bottom: 1px solid #ccd5da; color: var(--detail-ink); text-decoration: none; }
.detail-service-directory > a > span,.detail-service-directory > article > span { color: var(--detail-blue); font-family: var(--eco-display); font-size: .8rem; font-weight: 800; }
.detail-service-directory > a > svg,.detail-service-directory > article > svg { width: 25px; color: var(--detail-blue); }
.detail-service-directory h3 { margin: 0 0 9px; font-family: var(--eco-display); font-size: 2.15rem; line-height: 1; }
.detail-service-directory p { max-width: 760px; margin: 0; color: var(--detail-muted); font-size: .84rem; line-height: 1.68; }
.detail-service-directory b { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; color: var(--detail-blue); font-size: .73rem; }
.detail-service-directory b svg { width: 15px; transition: transform .2s ease; }
.detail-service-directory > a:hover h3 { color: var(--detail-blue); }
.detail-service-directory > a:hover b svg { transform: translateX(4px); }

.service-index-intro { padding: 100px 0 72px; background: #fff; }
.service-index-intro .eco-container { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: clamp(50px,9vw,145px); align-items: end; }
.service-index-intro h2 { max-width: 760px; margin: 10px 0 0; color: var(--detail-ink); font-family: var(--eco-display); font-size: 4.8rem; line-height: .95; }
.service-index-intro p { max-width: 680px; margin: 0; color: var(--detail-muted); line-height: 1.8; }
.service-index { padding: 0 0 110px; background: #fff; }
.service-index__list { border-top: 1px solid var(--detail-line); }
.service-index__row { display: grid; grid-template-columns: 100px minmax(260px,.55fr) minmax(0,1fr) 24px; gap: clamp(24px,4vw,58px); align-items: center; min-height: 370px; padding: 46px 0; border-bottom: 1px solid var(--detail-line); color: var(--detail-ink); text-decoration: none; }
.service-index__number { align-self: start; color: #9db3c1; font-family: var(--eco-display); font-size: 4.25rem; font-weight: 900; line-height: .78; }
.service-index__row figure { overflow: hidden; height: 280px; margin: 0; border-radius: 24px; background: #e8ecef; }
.service-index__row figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.service-index__row:hover figure img { transform: scale(1.025); }
.service-index__copy small { color: var(--detail-blue); font-size: .68rem; font-weight: 800; }
.service-index__copy h2 { margin: 6px 0 10px; font-family: var(--eco-display); font-size: 3.2rem; line-height: .94; }
.service-index__copy > p { max-width: 700px; margin: 0; color: var(--detail-muted); font-size: .84rem; line-height: 1.65; }
.service-index__copy ul { display: flex; flex-wrap: wrap; gap: 6px 18px; margin: 20px 0 0; padding: 0; list-style: none; }
.service-index__copy li { position: relative; padding-left: 13px; color: var(--detail-text); font-size: .7rem; font-weight: 700; }
.service-index__copy li::before { position: absolute; top: .45em; left: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--detail-blue); content: ""; }
.service-index__copy b { display: inline-flex; align-items: center; gap: 8px; margin-top: 24px; color: var(--detail-blue); font-size: .74rem; }
.service-index__copy b svg,.service-index__arrow { width: 16px; }
.service-index__arrow { transition: transform .2s ease; }
.service-index__row:hover .service-index__arrow { transform: translate(3px,-3px); }
.service-index-bridge { padding: 88px 0; background: var(--detail-soft); }
.service-index-bridge .eco-container { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1fr) auto; gap: 50px; align-items: center; }
.service-index-bridge h2 { max-width: 680px; margin: 9px 0 0; color: var(--detail-ink); font-family: var(--eco-display); font-size: 3.5rem; line-height: .96; }
.service-index-bridge p { max-width: 650px; margin: 0; color: var(--detail-muted); line-height: 1.75; }
.service-index-bridge a { display: inline-flex; min-height: 50px; align-items: center; gap: 9px; padding: 0 18px; border-radius: 8px; background: var(--detail-action); color: #fff; font-size: .77rem; font-weight: 800; text-decoration: none; white-space: nowrap; }
.service-index-bridge a:hover { background: var(--detail-action-dark); }
.service-index-bridge svg { width: 17px; }

@media (max-width: 991.98px) {
  .service-subnav__inner { padding-right: 0; }
  .service-subnav__overview { padding-inline: 20px; }
  .service-subnav__links a { min-width: 155px; }
  .service-index-intro .eco-container,.service-index-bridge .eco-container { grid-template-columns: 1fr; }
  .service-index__row { grid-template-columns: 84px minmax(220px,.72fr) minmax(0,1fr); }
  .service-index__arrow { display: none; }
}
@media (max-width: 640px) {
  .service-subnav__inner { display: block; padding-inline: 0; }
  .service-subnav__overview { min-height: 50px; padding-inline: 20px; }
  .service-subnav__links { min-height: 64px; border-top: 1px solid var(--detail-line); }
  .service-subnav__links a { min-width: 148px; font-size: .72rem; }
  .detail-services { padding: 72px 0; }
  .detail-service-directory > a,.detail-service-directory > article { grid-template-columns: 30px 28px minmax(0,1fr); gap: 13px; min-height: 170px; padding-block: 26px; }
  .detail-service-directory h3 { font-size: 1.75rem; }
  .service-index-intro { padding: 72px 0 52px; }
  .service-index-intro h2 { font-size: 3.45rem; }
  .service-index { padding-bottom: 78px; }
  .service-index__row { grid-template-columns: 70px minmax(0,1fr); gap: 14px; padding: 38px 0; }
  .service-index__number { font-size: 3.2rem; }
  .service-index__row figure { grid-column: 2; width: 100%; height: 220px; }
  .service-index__copy { grid-column: 2; }
  .service-index__copy h2 { font-size: 2.65rem; }
  .service-index-bridge { padding: 68px 0; }
  .service-index-bridge h2 { font-size: 3rem; }
  .service-index-bridge a { justify-content: center; white-space: normal; }
}

/* Service master system: reusable decision pages */
.service-lead {
  position: relative;
  min-height: 760px;
  isolation: isolate;
  display: flex;
  align-items: center;
  padding: 86px 0;
  background-image: linear-gradient(90deg,rgba(4,20,35,.88) 0%,rgba(4,20,35,.72) 46%,rgba(4,20,35,.3) 100%),var(--service-lead-image);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
}
.service-lead::after { position: absolute; z-index: -1; inset: auto 0 0; height: 170px; background: linear-gradient(transparent,rgba(4,20,35,.3)); content: ""; }
.service-lead__layout { display: grid; grid-template-columns: minmax(0,1fr) minmax(390px,470px); gap: clamp(60px,8vw,130px); align-items: center; }
.service-lead__copy { max-width: 720px; padding-top: 18px; }
.service-lead__kicker { display: inline-flex; align-items: center; gap: 10px; color: #a9d4f5; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.service-lead__kicker::before { width: 34px; height: 2px; background: currentColor; content: ""; }
.service-lead__copy h1 { max-width: 760px; margin: 22px 0 24px; font-family: var(--eco-display); font-size: clamp(4.4rem,6.3vw,7rem); font-weight: 800; line-height: .88; }
.service-lead__copy > p { max-width: 610px; margin: 0; color: rgba(255,255,255,.78); font-size: 1.04rem; line-height: 1.75; }
.service-lead__copy ul { display: flex; flex-wrap: wrap; gap: 14px 28px; margin: 34px 0 0; padding: 24px 0 0; border-top: 1px solid rgba(255,255,255,.24); list-style: none; }
.service-lead__copy li { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.9); font-size: .72rem; font-weight: 700; }
.service-lead__copy li svg { width: 16px; color: #a9d4f5; }
.service-lead__form { padding: 36px; border-radius: 20px; background: #fff; box-shadow: 0 28px 70px rgba(0,0,0,.26); color: var(--detail-ink); }
.service-lead__form header { margin-bottom: 25px; }
.service-lead__form header span { color: var(--detail-blue); font-size: .67rem; font-weight: 820; letter-spacing: .08em; text-transform: uppercase; }
.service-lead__form h2 { margin: 8px 0 8px; font-family: var(--eco-display); font-size: 2.35rem; line-height: .95; }
.service-lead__form header p { margin: 0; color: var(--detail-muted); font-size: .76rem; }
.service-lead__form label { display: block; margin: 0 0 7px; color: #425467; font-size: .66rem; font-weight: 800; }
.service-lead__control { position: relative; margin-bottom: 17px; }
.service-lead__control > svg { position: absolute; z-index: 1; top: 50%; width: 17px; color: #547086; pointer-events: none; transform: translateY(-50%); }
.service-lead__control > svg:first-child { left: 15px; }
.service-lead__control > svg:last-child { right: 15px; }
.service-lead__control select,.service-lead__form input,.service-lead__form textarea { width: 100%; border: 1px solid #cbd6de; border-radius: 8px; outline: 0; background: #f7f9fa; color: var(--detail-ink); font: inherit; font-size: .78rem; transition: border-color .2s ease,box-shadow .2s ease,background .2s ease; }
.service-lead__control select { height: 54px; padding: 0 43px; appearance: none; }
.service-lead__form input { height: 52px; padding: 0 14px; }
.service-lead__form textarea { min-height: 84px; padding: 13px 14px; resize: vertical; }
.service-lead__control select:focus,.service-lead__form input:focus,.service-lead__form textarea:focus { border-color: #477fa7; background: #fff; box-shadow: 0 0 0 3px rgba(44,111,159,.12); }
.service-lead__fields { display: grid; grid-template-columns: 120px 1fr; gap: 12px; margin-bottom: 17px; }
.service-lead__form button { display: flex; width: 100%; min-height: 54px; justify-content: center; align-items: center; gap: 9px; margin-top: 18px; border: 0; border-radius: 8px; background: var(--detail-action); color: #fff; font-size: .76rem; font-weight: 800; transition: background .2s ease,transform .2s ease; }
.service-lead__form button:hover { background: var(--detail-action-dark); transform: translateY(-1px); }
.service-lead__form button svg { width: 17px; }
.service-lead__form > small { display: block; margin: 10px 0 18px; color: #697a88; font-size: .62rem; line-height: 1.5; text-align: center; }
.service-lead__form > a { display: flex; min-height: 42px; justify-content: center; align-items: center; gap: 8px; border-top: 1px solid #dde5ea; padding-top: 17px; color: var(--detail-ink); font-size: .72rem; font-weight: 800; text-decoration: none; }
.service-lead__form > a svg { width: 16px; color: var(--detail-blue); }

.service-quick { position: relative; z-index: 2; background: #fff; box-shadow: 0 16px 42px rgba(7,29,51,.07); }
.service-quick__inner { display: grid; grid-template-columns: 235px minmax(0,1fr); min-height: 166px; align-items: stretch; }
.service-quick header { display: flex; flex-direction: column; justify-content: center; padding-right: 34px; border-right: 1px solid var(--detail-line); }
.service-quick header span { color: var(--detail-blue); font-size: .65rem; font-weight: 820; text-transform: uppercase; }
.service-quick h2 { margin: 7px 0 0; font-family: var(--eco-display); font-size: 1.75rem; line-height: 1; }
.service-quick nav { display: grid; grid-template-columns: repeat(4,1fr); }
.service-quick nav a { display: grid; min-width: 0; grid-template-columns: 28px minmax(0,1fr) 18px; gap: 11px; align-items: center; padding: 26px 22px; border-right: 1px solid var(--detail-line); color: var(--detail-ink); text-decoration: none; transition: background .2s ease,color .2s ease; }
.service-quick nav a:last-child { border-right: 0; }
.service-quick nav a:hover,.service-quick nav a:focus-visible { background: #edf5fa; color: #0b5f99; }
.service-quick nav a > svg { width: 21px; color: var(--detail-blue); }
.service-quick nav a > svg:last-child { width: 15px; justify-self: end; }
.service-quick nav span { min-width: 0; }
.service-quick nav b,.service-quick nav small { display: block; }
.service-quick nav b { margin-bottom: 6px; font-family: var(--eco-display); font-size: 1.17rem; line-height: 1; }
.service-quick nav small { display: -webkit-box; overflow: hidden; color: var(--detail-muted); font-size: .61rem; line-height: 1.45; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }

.service-master-intro { padding: 112px 0; background: #fff; }
.service-master-intro__grid { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(360px,.92fr); gap: clamp(70px,9vw,150px); align-items: start; }
.service-master-intro__grid > aside { grid-column: 1/-1; display: flex; align-items: center; gap: 15px; min-height: 0; padding: 0; border: 0; }
.service-master-intro__grid > aside span { display: block; width: 52px; height: 2px; overflow: hidden; background: var(--detail-blue); color: transparent; }
.service-master-intro__grid > aside small { color: var(--detail-blue); font-size: .68rem; font-weight: 820; letter-spacing: .07em; text-transform: uppercase; }
.service-master-intro__title h2 { max-width: 690px; margin: 14px 0 0; color: var(--detail-ink); font-family: var(--eco-display); font-size: 4.4rem; line-height: .94; }
.service-master-intro__copy > p { margin: 0; color: var(--detail-muted); font-size: .96rem; line-height: 1.85; }
.service-master-intro__copy ul { margin: 34px 0 0; padding: 0; border-top: 1px solid var(--detail-line); list-style: none; }
.service-master-intro__copy li { display: grid; min-height: 58px; grid-template-columns: 24px 1fr; gap: 12px; align-items: center; border-bottom: 1px solid var(--detail-line); color: var(--detail-ink); font-size: .78rem; font-weight: 740; }
.service-master-intro__copy li svg { width: 17px; color: var(--detail-blue); }

.service-master-head { display: grid; grid-template-columns: minmax(0,1fr) 430px; gap: 90px; align-items: end; margin-bottom: 58px; }
.service-master-head h2 { max-width: 820px; margin: 12px 0 0; color: inherit; font-family: var(--eco-display); font-size: 4.65rem; line-height: .93; }
.service-master-head > p { margin: 0; color: var(--detail-muted); line-height: 1.75; }

.service-fan { overflow: hidden; padding: 116px 0 124px; background: #eef3f7; }
.service-fan__items { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.service-fan__items > a { display: grid; overflow: hidden; min-width: 0; grid-template-rows: 270px 1fr; border: 1px solid #c8d4dc; border-radius: 24px; background: #fff; color: var(--detail-ink); text-decoration: none; transition: transform .25s ease,border-color .25s ease,box-shadow .25s ease; }
.service-fan__items > a:hover,.service-fan__items > a:focus-visible { border-color: #9eb4c3; box-shadow: 0 18px 42px rgba(7,29,51,.09); transform: translateY(-4px); }
.service-fan__items figure { position: relative; overflow: hidden; margin: 0; background: #dfe7ec; }
.service-fan__items figure::after { position: absolute; inset: 45% 0 0; background: linear-gradient(transparent,rgba(5,24,40,.62)); content: ""; }
.service-fan__items figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.service-fan__items > a:hover figure img { transform: scale(1.025); }
.service-fan__items figure span { position: absolute; z-index: 1; bottom: 24px; left: 26px; color: #fff; font-family: var(--eco-display); font-size: 4.8rem; font-weight: 900; line-height: .75; }
.service-fan__items > a > div { display: grid; min-height: 390px; grid-template-columns: 1fr 30px; align-content: start; padding: 34px; }
.service-fan__items small { color: var(--detail-blue); font-size: .66rem; font-weight: 820; }
.service-fan__items > a > div > svg { width: 24px; justify-self: end; color: var(--detail-blue); }
.service-fan__items h3 { grid-column: 1/-1; margin: 12px 0 14px; font-family: var(--eco-display); font-size: 2.4rem; line-height: .98; }
.service-fan__items p { grid-column: 1/-1; max-width: 570px; margin: 0; color: var(--detail-muted); font-size: .8rem; line-height: 1.7; }
.service-fan__items ul { display: grid; grid-column: 1/-1; grid-template-columns: 1fr 1fr; gap: 0 18px; margin: 28px 0 0; padding: 0; border-top: 1px solid var(--detail-line); list-style: none; }
.service-fan__items li { display: flex; min-height: 46px; align-items: center; gap: 8px; border-bottom: 1px solid var(--detail-line); color: var(--detail-ink); font-size: .7rem; font-weight: 740; }
.service-fan__items li svg { width: 14px; flex: 0 0 auto; color: var(--detail-blue); }
.service-fan__items b { display: inline-flex; grid-column: 1/-1; align-items: center; gap: 8px; align-self: end; margin-top: 28px; color: var(--detail-ink); font-size: .72rem; }
.service-fan__items b svg { width: 15px; transition: transform .2s ease; }
.service-fan__items > a:hover b svg { transform: translate(3px,-3px); }

.service-situations { background: #fff; }
.service-situations .detail-use-grid article { min-height: 330px; }
.service-situations .detail-use-grid article > span { color: #b6c4cd; font-family: var(--eco-display); font-size: 3.8rem; font-weight: 900; line-height: .8; }
.service-situations .detail-use-grid article > svg { margin-top: 42px; }
.service-situations .detail-use-grid h3 { margin-top: auto; }

.service-master-process { padding: 118px 0 126px; background: var(--detail-ink); color: #fff; }
.service-master-process .detail-kicker { color: #9bc9ed; }
.service-master-process .service-master-head > p { color: rgba(255,255,255,.62); }
.service-master-process ol { display: grid; grid-template-columns: repeat(4,1fr); margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); list-style: none; }
.service-master-process li { display: flex; min-height: 350px; flex-direction: column; padding: 32px; border-right: 1px solid rgba(255,255,255,.2); }
.service-master-process li:last-child { border-right: 0; }
.service-master-process li > span { color: #9bc9ed; font-family: var(--eco-display); font-size: 4.7rem; font-weight: 900; line-height: .78; }
.service-master-process li > div { margin-top: auto; }
.service-master-process li small { color: rgba(255,255,255,.5); font-size: .64rem; font-weight: 780; }
.service-master-process h3 { margin: 10px 0 12px; font-family: var(--eco-display); font-size: 1.9rem; line-height: 1; }
.service-master-process li p { margin: 0; color: rgba(255,255,255,.62); font-size: .78rem; line-height: 1.7; }

.service-master-faq { padding: 118px 0; background: #fff; }
.service-master-faq__grid { display: grid; grid-template-columns: minmax(300px,.72fr) minmax(0,1.28fr); gap: 110px; align-items: start; }
.service-master-faq header { position: sticky; top: 150px; }
.service-master-faq h2 { max-width: 540px; margin: 14px 0 20px; color: var(--detail-ink); font-family: var(--eco-display); font-size: 4.2rem; line-height: .94; }
.service-master-faq header p { max-width: 500px; color: var(--detail-muted); line-height: 1.75; }
.service-master-faq .detail-faq summary { min-height: 92px; padding: 24px 0; font-family: var(--eco-display); font-size: 1.42rem; line-height: 1.15; }
.service-master-faq .detail-faq p { padding-bottom: 18px; }

.service-related .detail-service-list { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--detail-line); }
.service-related .detail-service-list a { display: grid; min-height: 146px; grid-template-columns: 180px minmax(180px,.5fr) minmax(280px,1fr) auto; gap: 30px; align-items: center; padding: 28px 4px; border: 0; border-bottom: 1px solid var(--detail-line); background: transparent; }
.service-related .detail-service-list span { margin: 0; }
.service-related .detail-service-list h3 { margin: 0; font-size: 2.15rem; }
.service-related .detail-service-list p { max-width: 560px; }
.service-related .detail-service-list b { margin: 0; white-space: nowrap; }

@media (max-width: 991.98px) {
  .service-lead { min-height: 0; background-attachment: scroll; }
  .service-lead__layout { grid-template-columns: 1fr; gap: 48px; }
  .service-lead__copy { max-width: 760px; }
  .service-lead__form { max-width: 620px; }
  .service-quick__inner { grid-template-columns: 1fr; }
  .service-quick header { padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--detail-line); }
  .service-quick nav { grid-template-columns: 1fr 1fr; }
  .service-quick nav a:nth-child(2) { border-right: 0; }
  .service-quick nav a:nth-child(-n+2) { border-bottom: 1px solid var(--detail-line); }
  .service-master-intro__grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .service-master-intro__grid > aside { grid-column: 1/-1; }
  .service-master-intro__copy { grid-column: auto; }
  .service-master-head,.service-master-faq__grid { grid-template-columns: 1fr; gap: 28px; }
  .service-fan__items { grid-template-columns: 1fr 1fr; gap: 18px; }
  .service-fan__items > a { grid-template-rows: 230px 1fr; }
  .service-fan__items > a > div { min-height: 430px; padding: 28px; }
  .service-fan__items ul { grid-template-columns: 1fr; }
  .service-master-process ol { grid-template-columns: 1fr 1fr; }
  .service-master-process li:nth-child(2) { border-right: 0; }
  .service-master-process li:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.2); }
  .service-master-faq header { position: static; }
  .service-related .detail-service-list a { grid-template-columns: 130px minmax(180px,.6fr) 1fr; }
  .service-related .detail-service-list b { grid-column: 2; }
}

@media (max-width: 640px) {
  .service-lead { padding: 68px 0; background-position: 58% center; }
  .service-lead__copy h1 { font-size: 3.85rem; }
  .service-lead__copy ul { display: grid; gap: 12px; }
  .service-lead__form { padding: 28px 20px; border-radius: 16px; }
  .service-lead__fields { grid-template-columns: 1fr; }
  .service-quick__inner { padding-inline: 20px; }
  .service-quick nav { grid-template-columns: 1fr; }
  .service-quick nav a { min-height: 102px; padding: 20px 4px; border-right: 0; border-bottom: 1px solid var(--detail-line); }
  .service-quick nav a:nth-child(-n+2) { border-bottom: 1px solid var(--detail-line); }
  .service-quick nav a:last-child { border-bottom: 0; }
  .service-master-intro,.service-fan,.service-master-process,.service-master-faq { padding: 74px 0; }
  .service-master-intro__grid { grid-template-columns: 1fr; gap: 38px; }
  .service-master-intro__grid > aside { display: flex; min-height: 0; gap: 14px; align-items: center; }
  .service-master-intro__copy { grid-column: auto; }
  .service-master-intro__title h2,.service-master-head h2 { font-size: 3.2rem; }
  .service-fan__items { grid-template-columns: 1fr; gap: 18px; }
  .service-fan__items > a { grid-template-rows: 220px 1fr; border-radius: 20px; }
  .service-fan__items figure span { font-size: 3.9rem; }
  .service-fan__items > a > div { min-height: 400px; padding: 26px 22px; }
  .service-fan__items h3 { font-size: 2.15rem; }
  .service-master-process ol { grid-template-columns: 1fr; }
  .service-master-process li { min-height: 280px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .service-master-process li:nth-child(2) { border-right: 0; }
  .service-master-process li:last-child { border-bottom: 0; }
  .service-master-process li > span { font-size: 4rem; }
  .service-master-faq h2 { font-size: 3.15rem; }
  .service-related .detail-service-list a { grid-template-columns: 1fr 18px; gap: 10px; min-height: 190px; }
  .service-related .detail-service-list span,.service-related .detail-service-list h3,.service-related .detail-service-list p,.service-related .detail-service-list b { grid-column: 1; }
  .service-related .detail-service-list b { margin-top: 12px; }
}

/* Service master art direction v2: fixed editorial image + integrated service desk */
.service-lead { min-height: 790px; padding: 0; overflow: hidden; background: #fff; color: var(--detail-ink); }
.service-lead::before { position: absolute; z-index: -1; inset: 0 40% 0 0; background-image: linear-gradient(0deg,rgba(4,20,35,.82),rgba(4,20,35,.04) 68%),var(--service-lead-image); background-position: center; background-size: cover; background-attachment: fixed; content: ""; }
.service-lead::after { display: none; }
.service-lead__layout { min-height: 790px; grid-template-columns: minmax(0,1.35fr) minmax(420px,.86fr); gap: 0; align-items: stretch; }
.service-lead__copy { display: flex; max-width: none; flex-direction: column; justify-content: flex-end; padding: 92px clamp(60px,7vw,118px) 78px 0; color: #fff; }
.service-lead__kicker { color: #fff; }
.service-lead__copy h1 { max-width: 780px; margin: 20px 0 22px; font-size: clamp(4.8rem,6.5vw,7.3rem); text-wrap: balance; }
.service-lead__copy > p { max-width: 670px; color: rgba(255,255,255,.86); }
.service-lead__copy ul { max-width: 670px; margin-top: 30px; padding-top: 22px; }
.service-lead__form { position: relative; display: flex; min-width: 0; flex-direction: column; justify-content: center; padding: 62px clamp(38px,4.5vw,72px); border-radius: 0; box-shadow: none; }
.service-lead__form::before { position: absolute; top: 54px; right: clamp(38px,4.5vw,72px); color: #dbe4ea; font-family: var(--eco-display); font-size: 5.4rem; font-weight: 900; line-height: 1; content: "01"; }
.service-lead__form header { position: relative; z-index: 1; max-width: 350px; margin-bottom: 32px; }
.service-lead__form h2 { font-size: 2.75rem; }
.service-lead__form > a { margin-top: auto; }

.service-quick { box-shadow: none; border-bottom: 1px solid var(--detail-line); }
.service-quick__inner { min-height: 190px; grid-template-columns: 260px minmax(0,1fr); }
.service-quick header { padding-right: 38px; }
.service-quick header p { margin: 9px 0 0; color: var(--detail-muted); font-size: .68rem; line-height: 1.5; }
.service-quick nav a { position: relative; display: flex; min-width: 0; flex-direction: column; align-items: flex-start; justify-content: center; gap: 13px; padding: 27px 22px; }
.service-quick nav a > small { color: #aabac5; font-family: var(--eco-display); font-size: 1.25rem; font-weight: 800; }
.service-quick nav a > span { display: grid; width: 100%; min-width: 0; grid-template-columns: 24px 1fr; gap: 6px 9px; align-items: center; }
.service-quick nav a > span > svg { width: 19px; color: var(--detail-blue); }
.service-quick nav b { margin: 0; font-size: 1.3rem; }
.service-quick nav em { display: block; overflow: hidden; grid-column: 1/-1; color: var(--detail-muted); font-size: .61rem; font-style: normal; line-height: 1.45; text-overflow: ellipsis; white-space: nowrap; }
.service-quick nav a > svg { position: absolute; top: 28px; right: 20px; width: 15px; color: #7e929f; }

.service-master-intro { position: relative; isolation: isolate; overflow: hidden; padding: 140px 0 132px; }
.service-master-intro__watermark { position: absolute; z-index: -1; top: 35px; left: 50%; color: #f1f4f6; font-family: var(--eco-display); font-size: clamp(9rem,19vw,20rem); font-weight: 900; line-height: .75; white-space: nowrap; transform: translateX(-50%); }
.service-master-intro__grid { padding-top: 82px; }
.service-master-intro__title h2 { font-size: clamp(4rem,5.2vw,5.6rem); text-wrap: balance; }
.service-master-intro__copy > p { max-width: 620px; font-size: 1.02rem; }
.service-master-intro__copy ul { margin-top: 38px; }
.service-master-intro__copy li { min-height: 64px; font-size: .79rem; }

@media (max-width: 1199.98px) {
  .service-lead::before { right: 43%; }
  .service-lead__layout { grid-template-columns: minmax(0,1.15fr) minmax(390px,.85fr); }
  .service-lead__copy { padding-right: 54px; }
  .service-lead__copy h1 { font-size: 5.2rem; }
  .service-lead__form { padding-inline: 38px; }
  .service-quick__inner { grid-template-columns: 220px minmax(0,1fr); }
  .service-quick nav a { padding-inline: 17px; }
  .service-quick nav b { font-size: 1.12rem; }
}
@media (max-width: 991.98px) {
  .service-lead { background: #071d33; }
  .service-lead::before { inset: 0 0 48% 0; background-attachment: scroll; }
  .service-lead__layout { grid-template-columns: 1fr; }
  .service-lead__copy { min-height: 600px; justify-content: flex-end; padding: 90px 0 60px; }
  .service-lead__form { max-width: none; min-height: 650px; padding: 72px clamp(30px,8vw,78px); }
  .service-quick__inner { grid-template-columns: 1fr; }
  .service-quick header { padding: 32px 0; }
  .service-quick nav a { min-height: 150px; }
}
@media (max-width: 640px) {
  .service-lead { padding: 0; background: #071d33; }
  .service-lead::before { inset: 0 0 auto; height: 620px; background-position: 58% center; }
  .service-lead__layout { min-height: 0; }
  .service-lead__copy { min-height: 620px; padding: 70px 0 48px; }
  .service-lead__copy h1 { font-size: 3.9rem; }
  .service-lead__form { min-height: 0; padding: 64px 20px 42px; border-radius: 0; }
  .service-lead__form::before { top: 38px; right: 20px; font-size: 4.4rem; }
  .service-quick__inner { padding-inline: 20px; }
  .service-quick nav a { min-height: 118px; padding: 22px 4px; }
  .service-quick nav a > svg { right: 3px; }
  .service-master-intro { padding-top: 100px; }
  .service-master-intro__watermark { top: 35px; font-size: 8rem; }
  .service-master-intro__grid { padding-top: 45px; }
}

/* Service journey: restore the strong lead hero and build a visual narrative */
.service-direct { padding: 92px 0 98px; border-bottom: 1px solid var(--detail-line); background: #fff; }
.service-direct--global { background: #eef3f6; }
.service-direct--cross { background: #fff; }
.service-direct--cross .service-direct__grid { grid-template-columns: repeat(4,1fr); }
.service-direct--cross .service-direct__grid > a { grid-template-columns: 1fr; align-content: start; }
.service-direct--cross .service-direct__grid figure { height: 170px; }
.service-direct__head { display: grid; grid-template-columns: minmax(0,1fr) 430px; gap: 80px; align-items: end; margin-bottom: 42px; }
.service-direct__head span { color: var(--detail-blue); font-size: .66rem; font-weight: 820; letter-spacing: .07em; text-transform: uppercase; }
.service-direct__head h2 { max-width: 780px; margin: 11px 0 0; color: var(--detail-ink); font-family: var(--eco-display); font-size: 4.25rem; line-height: .92; }
.service-direct__head > p { margin: 0; color: var(--detail-muted); font-size: .82rem; line-height: 1.75; }
.service-direct__grid { display: grid; grid-template-columns: repeat(3,1fr); overflow: hidden; border: 1px solid #cad6de; border-radius: 18px; background: #cad6de; gap: 1px; }
.service-direct__grid > a { display: grid; min-width: 0; min-height: 188px; grid-template-columns: 112px minmax(0,1fr); gap: 20px; align-items: center; padding: 20px; background: #fff; color: var(--detail-ink); text-decoration: none; transition: background .2s ease; }
.service-direct__grid figure { overflow: hidden; height: 142px; margin: 0; border-radius: 12px; background: #dce5ea; }
.service-direct__grid figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.service-direct__grid > a > div { min-width: 0; }
.service-direct__grid span { display: flex; align-items: center; gap: 7px; color: var(--detail-blue); font-size: .59rem; font-weight: 800; text-transform: uppercase; }
.service-direct__grid span svg { width: 14px; }
.service-direct__grid h3 { margin: 9px 0 8px; font-family: var(--eco-display); font-size: 1.55rem; line-height: .98; }
.service-direct__grid p { display: -webkit-box; overflow: hidden; margin: 0; color: var(--detail-muted); font-size: .64rem; line-height: 1.5; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.service-direct__grid b { display: inline-flex; align-items: center; gap: 6px; margin-top: 15px; font-size: .63rem; }
.service-direct__grid b svg { width: 13px; }
.service-direct__grid > a:hover { background: #f6f9fa; }
.service-direct__grid > a:hover figure img { transform: scale(1.035); }

.service-lead { min-height: 760px; display: flex; align-items: center; overflow: hidden; padding: 86px 0; background-image: linear-gradient(90deg,rgba(4,20,35,.82) 0%,rgba(4,20,35,.58) 34%,rgba(4,20,35,.12) 63%,rgba(4,20,35,.08) 100%),var(--service-lead-image); background-position: center 48%; background-size: cover; background-attachment: fixed; color: #fff; }
.service-lead::before { display: none; content: none; }
.service-lead::after { display: block; position: absolute; z-index: -1; inset: auto 0 0; height: 170px; background: linear-gradient(transparent,rgba(4,20,35,.3)); content: ""; }
.service-lead__layout { min-height: 0; grid-template-columns: minmax(0,1fr) minmax(390px,470px); gap: clamp(60px,8vw,130px); align-items: center; }
.service-lead__copy { display: block; max-width: 720px; min-height: 0; padding: 18px 0 0; color: #fff; }
.service-lead__copy h1 { max-width: 760px; margin: 22px 0 24px; font-size: clamp(4.4rem,6.3vw,7rem); }
.service-lead__copy > p { max-width: 610px; color: rgba(255,255,255,.78); }
.service-lead__copy ul { max-width: none; margin-top: 34px; padding-top: 24px; }
.service-lead__scene { display: inline-flex; width: fit-content; align-items: center; gap: 8px; margin-top: 22px; padding: 9px 12px; border: 1px solid rgba(255,255,255,.32); border-radius: 8px; background: rgba(4,20,35,.26); color: rgba(255,255,255,.88); font-size: .65rem; font-weight: 740; backdrop-filter: blur(6px); }
.service-lead__scene svg { width: 15px; }
.service-lead__form { display: block; min-height: 0; padding: 36px; border-radius: 20px; background: #fff; box-shadow: 0 28px 70px rgba(0,0,0,.26); color: var(--detail-ink); }
.service-lead__form::before { content: none; }
.service-lead__form header { max-width: none; margin-bottom: 25px; }
.service-lead__form h2 { font-size: 2.35rem; }
.service-lead__form > a { margin-top: 0; }

.service-journey { padding: 126px 0 132px; background: #eef3f6; }
.service-journey__head { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(320px,.65fr); gap: 90px; align-items: end; margin-bottom: 58px; }
.service-journey__head span,.service-story header > span { color: var(--detail-blue); font-size: .68rem; font-weight: 820; letter-spacing: .07em; text-transform: uppercase; }
.service-journey__head h2 { margin: 13px 0 0; color: var(--detail-ink); font-family: var(--eco-display); font-size: clamp(4.4rem,6vw,6.3rem); line-height: .88; }
.service-journey__head > p { margin: 0; color: var(--detail-muted); font-size: .9rem; line-height: 1.8; }
.service-journey__directory { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(470px,.95fr); gap: 22px; }
.service-journey__feature { position: relative; isolation: isolate; display: flex; min-height: 650px; overflow: hidden; flex-direction: column; justify-content: space-between; padding: 34px; border-radius: 24px; color: #fff; text-decoration: none; }
.service-journey__feature > img { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.service-journey__shade { position: absolute; z-index: -1; inset: 0; background: linear-gradient(0deg,rgba(3,18,31,.92),rgba(3,18,31,.08) 70%); }
.service-journey__feature > small { font-size: .67rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.service-journey__feature > div > svg { width: 28px; margin-bottom: 18px; }
.service-journey__feature h3 { max-width: 620px; margin: 0 0 13px; font-family: var(--eco-display); font-size: 3.6rem; line-height: .9; }
.service-journey__feature p { max-width: 570px; margin: 0; color: rgba(255,255,255,.74); font-size: .82rem; line-height: 1.65; }
.service-journey__feature b { display: inline-flex; align-items: center; gap: 8px; margin-top: 25px; font-size: .72rem; }
.service-journey__feature b svg { width: 15px; }
.service-journey__feature:hover img { transform: scale(1.035); }
.service-journey__routes { display: grid; gap: 1px; overflow: hidden; border-radius: 24px; background: #cbd7df; }
.service-journey__routes > a { display: grid; min-height: 216px; grid-template-columns: 150px 38px minmax(0,1fr) 22px; gap: 18px; align-items: center; padding: 20px; background: #fff; color: var(--detail-ink); text-decoration: none; transition: background .25s ease; }
.service-journey__routes figure { overflow: hidden; height: 172px; margin: 0; border-radius: 14px; }
.service-journey__routes img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.service-journey__routes > a > small { color: #a4b4bf; font-family: var(--eco-display); font-size: 1.75rem; font-weight: 900; }
.service-journey__routes h3 { margin: 0 0 8px; font-family: var(--eco-display); font-size: 1.72rem; line-height: 1; }
.service-journey__routes p { margin: 0; color: var(--detail-muted); font-size: .66rem; line-height: 1.5; }
.service-journey__routes > a > svg { width: 18px; color: var(--detail-blue); }
.service-journey__routes > a:hover { background: #f7fafb; }
.service-journey__routes > a:hover img { transform: scale(1.04); }

.service-welcome { position: relative; isolation: isolate; overflow: hidden; padding: 148px 0; background: #fff; }
.service-welcome__word { position: absolute; z-index: -1; top: 48px; left: 50%; color: #f1f4f6; font-family: var(--eco-display); font-size: clamp(10rem,20vw,21rem); font-weight: 900; line-height: .72; white-space: nowrap; transform: translateX(-50%); }
.service-welcome__grid { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(390px,.92fr); gap: clamp(70px,9vw,145px); align-items: center; }
.service-welcome figure { position: relative; height: 720px; overflow: hidden; margin: 0; border-radius: 28px; }
.service-welcome figure > img { width: 100%; height: 100%; object-fit: cover; }
.service-welcome figcaption { position: absolute; right: 24px; bottom: 24px; display: flex; align-items: center; gap: 13px; min-width: 270px; padding: 18px 20px; border-radius: 12px; background: #fff; box-shadow: 0 18px 38px rgba(7,29,51,.16); color: var(--detail-ink); }
.service-welcome figcaption > svg { width: 22px; color: var(--detail-blue); }
.service-welcome figcaption span,.service-welcome figcaption b,.service-welcome figcaption small { display: block; }
.service-welcome figcaption b { font-size: .75rem; }
.service-welcome figcaption small { margin-top: 3px; color: var(--detail-muted); font-size: .62rem; }
.service-welcome article h2 { margin: 16px 0 28px; color: var(--detail-ink); font-family: var(--eco-display); font-size: clamp(4rem,5.3vw,5.7rem); line-height: .9; }
.service-welcome article > p { margin: 0; color: var(--detail-muted); font-size: 1rem; line-height: 1.85; }
.service-welcome article ul { margin: 36px 0 0; padding: 0; border-top: 1px solid var(--detail-line); list-style: none; }
.service-welcome article li { display: grid; min-height: 62px; grid-template-columns: 22px 1fr; gap: 12px; align-items: center; border-bottom: 1px solid var(--detail-line); color: var(--detail-ink); font-size: .78rem; font-weight: 730; }
.service-welcome article li svg { width: 16px; color: var(--detail-blue); }
.service-welcome article > a { display: inline-flex; min-height: 52px; align-items: center; gap: 9px; margin-top: 32px; padding: 0 19px; border-radius: 8px; background: var(--detail-action); color: #fff; font-size: .74rem; font-weight: 800; text-decoration: none; }
.service-welcome article > a svg { width: 17px; }

.service-story { padding: 126px 0; background: #071d33; color: #fff; }
.service-story__grid { display: grid; grid-template-columns: minmax(330px,.72fr) minmax(0,1.28fr); gap: 120px; align-items: start; }
.service-story header { position: sticky; top: 145px; }
.service-story header > span { color: #9bc9ed; }
.service-story h2 { margin: 15px 0 23px; font-family: var(--eco-display); font-size: 4.7rem; line-height: .9; }
.service-story header p { max-width: 480px; margin: 0; color: rgba(255,255,255,.62); line-height: 1.8; }
.service-story__cases { border-top: 1px solid rgba(255,255,255,.2); }
.service-story__cases article { display: grid; min-height: 210px; grid-template-columns: 70px 38px 1fr; gap: 22px; align-items: center; border-bottom: 1px solid rgba(255,255,255,.2); }
.service-story__cases article > span { color: #78b7e6; font-family: var(--eco-display); font-size: 2.6rem; font-weight: 900; }
.service-story__cases article > svg { width: 25px; color: #9bc9ed; }
.service-story__cases h3 { margin: 0 0 10px; font-family: var(--eco-display); font-size: 2.15rem; line-height: 1; }
.service-story__cases p { max-width: 570px; margin: 0; color: rgba(255,255,255,.6); font-size: .78rem; line-height: 1.7; }

.service-master-process__stage { display: grid; grid-template-columns: minmax(0,.88fr) minmax(0,1.12fr); min-height: 720px; border-top: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); }
.service-master-process__stage figure { position: relative; overflow: hidden; margin: 0; border-right: 1px solid rgba(255,255,255,.2); }
.service-master-process__stage figure img { width: 100%; height: 100%; object-fit: cover; }
.service-master-process__stage figure::after { position: absolute; inset: 45% 0 0; background: linear-gradient(transparent,rgba(4,20,35,.88)); content: ""; }
.service-master-process__stage figcaption { position: absolute; z-index: 1; right: 32px; bottom: 30px; left: 32px; display: flex; align-items: center; gap: 10px; font-size: .72rem; font-weight: 800; }
.service-master-process__stage figcaption svg { width: 19px; color: #9bc9ed; }
.service-master-process__stage ol { display: grid; grid-template-columns: 1fr; border: 0; }
.service-master-process__stage li { display: grid; min-height: 180px; grid-template-columns: 78px 1fr; gap: 24px; padding: 28px 36px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.service-master-process__stage li:last-child { border-bottom: 0; }
.service-master-process__stage li > span { font-size: 3.6rem; }
.service-master-process__stage li > div { margin-top: 0; align-self: center; }

@media (max-width: 991.98px) {
  .service-direct__head { grid-template-columns: 1fr; gap: 24px; }
  .service-direct__grid { grid-template-columns: 1fr 1fr; }
  .service-direct--cross .service-direct__grid { grid-template-columns: 1fr 1fr; }
  .service-lead { min-height: 0; padding: 86px 0; background-attachment: scroll; }
  .service-lead__layout { grid-template-columns: 1fr; gap: 48px; }
  .service-lead__copy { max-width: 760px; min-height: 0; padding: 18px 0 0; }
  .service-lead__form { max-width: 620px; min-height: 0; padding: 36px; }
  .service-journey__head,.service-journey__directory,.service-welcome__grid,.service-story__grid,.service-master-process__stage { grid-template-columns: 1fr; }
  .service-journey__head { gap: 28px; }
  .service-journey__feature { min-height: 560px; }
  .service-welcome figure { height: 620px; }
  .service-story__grid { gap: 55px; }
  .service-story header { position: static; }
  .service-master-process__stage figure { min-height: 560px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
}
@media (max-width: 640px) {
  .service-direct { padding: 72px 0; }
  .service-direct__head h2 { font-size: 3.35rem; }
  .service-direct__grid { grid-template-columns: 1fr; border-radius: 14px; }
  .service-direct--cross .service-direct__grid { grid-template-columns: 1fr; }
  .service-direct__grid > a { min-height: 170px; grid-template-columns: 96px 1fr; gap: 16px; padding: 16px; }
  .service-direct__grid figure { height: 130px; border-radius: 10px; }
  .service-lead { padding: 68px 0; background-position: 58% center; }
  .service-lead__copy { min-height: 0; padding: 0; }
  .service-lead__copy h1 { font-size: 3.85rem; }
  .service-lead__form { min-height: 0; padding: 28px 20px; border-radius: 16px; }
  .service-journey,.service-welcome,.service-story { padding: 82px 0; }
  .service-journey__head h2 { font-size: 3.65rem; }
  .service-journey__directory { gap: 16px; }
  .service-journey__feature { min-height: 510px; padding: 25px; border-radius: 18px; }
  .service-journey__feature h3 { font-size: 3rem; }
  .service-journey__routes { border-radius: 18px; }
  .service-journey__routes > a { min-height: 156px; grid-template-columns: 92px 30px 1fr 18px; gap: 10px; padding: 14px; }
  .service-journey__routes figure { height: 125px; border-radius: 10px; }
  .service-journey__routes h3 { font-size: 1.35rem; }
  .service-journey__routes p { white-space: normal; }
  .service-welcome__word { top: 35px; font-size: 8rem; }
  .service-welcome figure { height: 500px; border-radius: 20px; }
  .service-welcome figcaption { right: 14px; bottom: 14px; left: 14px; min-width: 0; }
  .service-welcome article h2,.service-story h2 { font-size: 3.6rem; }
  .service-story__cases article { min-height: 230px; grid-template-columns: 48px 28px 1fr; gap: 12px; }
  .service-master-process__stage figure { min-height: 430px; }
  .service-master-process__stage li { min-height: 210px; grid-template-columns: 60px 1fr; gap: 15px; padding: 24px 18px; }
}

/* Location ecosystem: regional atlas and city pages */
.location-subnav { position: relative; z-index: 4; background: #fff; box-shadow: 0 14px 34px rgba(7,29,51,.055); }
.location-subnav__inner { display: flex; min-height: 80px; align-items: stretch; }
.location-subnav__overview { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 8px; padding-right: 28px; color: var(--detail-ink); font-size: .72rem; font-weight: 800; text-decoration: none; white-space: nowrap; }
.location-subnav__overview svg { width: 16px; color: var(--detail-blue); }
.location-subnav__links { display: flex; min-width: 0; flex: 1; overflow-x: auto; scrollbar-width: none; }
.location-subnav__links::-webkit-scrollbar { display: none; }
.location-subnav__links a { position: relative; display: inline-flex; flex: 1 0 auto; align-items: center; justify-content: center; gap: 7px; padding: 0 17px; color: #53666f; font-size: .77rem; font-weight: 750; text-decoration: none; white-space: nowrap; }
.location-subnav__links a::after { position: absolute; right: 17px; bottom: 0; left: 17px; height: 3px; background: var(--detail-action); content: ""; opacity: 0; transform: scaleX(.35); transition: opacity .2s ease,transform .2s ease; }
.location-subnav__links a:hover,.location-subnav__links a.is-active { color: var(--detail-ink); }
.location-subnav__links a.is-active::after { opacity: 1; transform: scaleX(1); }
.location-subnav__links svg { width: 15px; color: var(--detail-blue); }

.location-section-head { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(0,.72fr); gap: clamp(64px,9vw,150px); align-items: end; margin-bottom: 58px; }
.location-section-head h2 { max-width: 820px; margin: 12px 0 0; color: var(--detail-ink); font-family: var(--eco-display); font-size: 4.65rem; line-height: .93; }
.location-section-head > p { max-width: 620px; margin: 0; color: var(--detail-muted); line-height: 1.78; }

.location-lead { padding: 105px 0; background: #fff; }
.location-lead__grid { display: grid; grid-template-columns: minmax(260px,.65fr) minmax(0,1.35fr); gap: clamp(60px,10vw,160px); align-items: start; }
.location-lead__identity { position: sticky; top: 150px; display: grid; min-height: 300px; align-content: center; padding-left: 38px; border-left: 2px solid var(--detail-action); }
.location-lead__identity span { color: var(--detail-blue); font-size: .7rem; font-weight: 800; }
.location-lead__identity strong { margin: 8px 0; color: var(--detail-ink); font-family: var(--eco-display); font-size: 6.8rem; line-height: .82; }
.location-lead__identity small { color: var(--detail-muted); font-size: .75rem; font-weight: 700; }
.location-lead__copy h2 { max-width: 800px; margin: 10px 0 22px; color: var(--detail-ink); font-family: var(--eco-display); font-size: 4.5rem; line-height: .94; }
.location-lead__copy > p { max-width: 760px; margin: 0; color: var(--detail-text); font-size: .98rem; line-height: 1.85; }
.location-districts { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--detail-line); }
.location-districts > span { color: var(--detail-muted); font-size: .68rem; font-weight: 800; }
.location-districts ul { display: flex; flex-wrap: wrap; gap: 10px 28px; margin: 18px 0 0; padding: 0; list-style: none; }
.location-districts li { display: inline-flex; align-items: center; gap: 8px; color: var(--detail-ink); font-size: .78rem; font-weight: 700; }
.location-districts li::before { width: 5px; height: 5px; border-radius: 50%; background: var(--detail-blue); content: ""; }
.location-field-note { display: grid; grid-template-columns: 28px minmax(0,1fr); gap: 15px; max-width: 690px; margin-top: 38px; padding-top: 24px; border-top: 1px solid var(--detail-line); }
.location-field-note > svg { width: 22px; color: var(--detail-action); }
.location-field-note p { margin: 0; color: var(--detail-muted); font-size: .78rem; line-height: 1.65; }
.location-field-note strong { display: block; margin-bottom: 3px; color: var(--detail-ink); font-size: .8rem; }

.location-situations { padding: 108px 0; background: var(--detail-ink); color: #fff; }
.location-situations .detail-kicker { color: #9bc2e5; }
.location-situations .location-section-head h2 { color: #fff; }
.location-situations .location-section-head > p { color: rgba(255,255,255,.64); }
.location-situation-list { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid rgba(255,255,255,.22); border-bottom: 1px solid rgba(255,255,255,.22); }
.location-situation-list article { position: relative; display: flex; min-height: 390px; flex-direction: column; align-items: flex-start; padding: 34px 32px 32px; border-right: 1px solid rgba(255,255,255,.22); }
.location-situation-list article:last-child { border-right: 0; }
.location-situation-list article > span { color: rgba(155,194,229,.82); font-family: var(--eco-display); font-size: 5.4rem; font-weight: 800; line-height: .78; }
.location-situation-list article > svg { width: 27px; height: 27px; margin-top: 52px; color: #9bc2e5; }
.location-situation-list article > div { margin-top: auto; }
.location-situation-list h3 { margin: 0 0 10px; color: #fff; font-family: var(--eco-display); font-size: 2.2rem; line-height: .98; }
.location-situation-list p { max-width: 340px; margin: 0; color: rgba(255,255,255,.62); font-size: .82rem; line-height: 1.68; }

.location-services { padding: 112px 0; background: #fff; }
.location-service-list { border-top: 1px solid var(--detail-line); }
.location-service-list > a { display: grid; grid-template-columns: 104px 46px minmax(0,1fr) auto; gap: 28px; align-items: center; min-height: 178px; padding: 30px 6px; border-bottom: 1px solid var(--detail-line); color: var(--detail-ink); text-decoration: none; }
.location-service-list > a > span { color: #b8c5cc; font-family: var(--eco-display); font-size: 4.6rem; font-weight: 800; line-height: .8; transition: color .2s ease; }
.location-service-list > a > svg { width: 28px; height: 28px; color: var(--detail-blue); }
.location-service-list h3 { margin: 0 0 9px; font-family: var(--eco-display); font-size: 2.35rem; line-height: .96; }
.location-service-list p { max-width: 760px; margin: 0; color: var(--detail-muted); font-size: .82rem; line-height: 1.65; }
.location-service-list b { display: inline-flex; align-items: center; gap: 8px; color: var(--detail-blue); font-size: .72rem; }
.location-service-list b svg { width: 15px; transition: transform .2s ease; }
.location-service-list > a:hover h3,.location-service-list > a:hover > span { color: var(--detail-blue); }
.location-service-list > a:hover b svg { transform: translateX(4px); }

.location-map-stage { overflow: hidden; padding: 110px 0; background: #e9eef2; }
.location-map-stage__grid { display: grid; grid-template-columns: minmax(0,.85fr) minmax(500px,1.15fr); gap: clamp(60px,9vw,140px); align-items: center; }
.location-map-stage__copy h2 { max-width: 720px; margin: 10px 0 20px; color: var(--detail-ink); font-family: var(--eco-display); font-size: 4.8rem; line-height: .94; }
.location-map-stage__copy > p { max-width: 650px; margin: 0; color: var(--detail-muted); line-height: 1.78; }
.location-map-stage dl { display: grid; grid-template-columns: 1fr 1fr; margin: 36px 0 0; border-top: 1px solid #c8d2d8; }
.location-map-stage dl div { padding: 20px 0; border-bottom: 1px solid #c8d2d8; }
.location-map-stage dl div:nth-child(odd) { padding-right: 20px; border-right: 1px solid #c8d2d8; }
.location-map-stage dl div:nth-child(even) { padding-left: 20px; }
.location-map-stage dt { color: var(--detail-muted); font-size: .63rem; }
.location-map-stage dd { margin: 4px 0 0; color: var(--detail-ink); font-size: .8rem; font-weight: 800; }
.location-map-stage figure { position: relative; margin: 0; }
.location-map-stage figure > img { display: block; width: 100%; min-height: 580px; object-fit: cover; border-radius: 9px 9px 54px 9px; }
.location-map-stage figcaption { position: absolute; right: 20px; bottom: 20px; display: flex; align-items: center; gap: 11px; min-width: 220px; padding: 14px 16px; border-radius: 6px; background: #fff; color: var(--detail-ink); }
.location-map-stage figcaption > svg { width: 19px; color: var(--detail-action); animation: location-pulse 1.8s ease-in-out infinite; }
.location-map-stage figcaption span { display: grid; }
.location-map-stage figcaption b { font-size: .76rem; }
.location-map-stage figcaption span { font-size: .63rem; color: var(--detail-muted); }
@keyframes location-pulse { 50% { opacity: .35; transform: scale(.86); } }

.location-process { padding: 105px 0; background: var(--detail-ink); color: #fff; }
.location-process .detail-kicker { color: #9bc2e5; }
.location-process .location-section-head h2 { color: #fff; }
.location-process .location-section-head > p { color: rgba(255,255,255,.62); }
.location-process__steps { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid rgba(255,255,255,.2); }
.location-process__steps article { min-height: 320px; padding: 34px 28px; border-right: 1px solid rgba(255,255,255,.2); }
.location-process__steps article:last-child { border-right: 0; }
.location-process__steps span { color: rgba(155,194,229,.84); font-family: var(--eco-display); font-size: 4.8rem; font-weight: 800; line-height: .8; }
.location-process__steps h3 { margin: 72px 0 10px; font-family: var(--eco-display); font-size: 2rem; }
.location-process__steps p { margin: 0; color: rgba(255,255,255,.6); font-size: .8rem; line-height: 1.65; }

.location-neighbors { padding: 92px 0; background: #fff; }
.location-neighbors .eco-container { display: grid; grid-template-columns: minmax(280px,.7fr) minmax(0,1.3fr); gap: clamp(50px,9vw,140px); align-items: start; }
.location-neighbors h2 { margin: 9px 0 0; color: var(--detail-ink); font-family: var(--eco-display); font-size: 3.6rem; line-height: .95; }
.location-neighbors nav { border-top: 1px solid var(--detail-line); }
.location-neighbors nav a { display: grid; grid-template-columns: 1fr auto; gap: 5px 20px; align-items: center; min-height: 100px; padding: 18px 4px; border-bottom: 1px solid var(--detail-line); color: var(--detail-ink); text-decoration: none; }
.location-neighbors nav span { color: var(--detail-muted); font-size: .65rem; font-weight: 700; }
.location-neighbors nav strong { font-family: var(--eco-display); font-size: 1.75rem; line-height: 1; }
.location-neighbors nav svg { grid-row: 1/3; grid-column: 2; width: 17px; }
.location-neighbors nav a:hover strong { color: var(--detail-blue); }

.location-atlas { padding: 110px 0; background: #fff; }
.location-atlas__grid { display: grid; grid-template-columns: minmax(420px,.86fr) minmax(0,1.14fr); gap: clamp(60px,9vw,140px); align-items: start; }
.location-atlas__map { position: sticky; top: 145px; overflow: hidden; min-height: 720px; border-radius: 24px; background: #e8edf1; }
.location-atlas__map > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.location-atlas__map > div { position: absolute; right: 22px; bottom: 22px; left: 22px; display: grid; padding: 19px 21px; border-radius: 12px; background: #fff; }
.location-atlas__map span,.location-atlas__map small { color: var(--detail-muted); font-size: .65rem; }
.location-atlas__map strong { margin: 2px 0; color: var(--detail-ink); font-family: var(--eco-display); font-size: 2rem; }
.location-atlas__content > h2 { max-width: 700px; margin: 10px 0 18px; color: var(--detail-ink); font-family: var(--eco-display); font-size: 5rem; line-height: .92; }
.location-atlas__content > p { max-width: 670px; margin: 0 0 38px; color: var(--detail-muted); line-height: 1.75; }
.location-atlas__list { border-top: 1px solid var(--detail-line); }
.location-atlas__list a { display: grid; grid-template-columns: 104px minmax(0,1fr) 20px; gap: 24px; align-items: center; min-height: 172px; padding: 28px 4px; border-bottom: 1px solid var(--detail-line); color: var(--detail-ink); text-decoration: none; }
.location-atlas__list a > span { color: #aab9c2; font-family: var(--eco-display); font-size: 4.35rem; font-weight: 850; line-height: .76; transition: color .2s ease; }
.location-atlas__list a > div { display: grid; }
.location-atlas__list small { color: var(--detail-muted); font-size: .63rem; font-weight: 750; }
.location-atlas__list strong { margin: 3px 0; font-family: var(--eco-display); font-size: 1.9rem; line-height: 1; }
.location-atlas__list p { margin: 0; color: var(--detail-muted); font-size: .74rem; line-height: 1.55; }
.location-atlas__list svg { width: 17px; transition: transform .2s ease; }
.location-atlas__list a:hover strong,.location-atlas__list a:hover > span { color: var(--detail-blue); }
.location-atlas__list a:hover svg { transform: translateX(4px); }

.location-coverage { padding: 100px 0; background: var(--detail-soft); }
.location-coverage__headline { display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); gap: 20px 80px; align-items: end; }
.location-coverage__headline > span { grid-column: 1/-1; }
.location-coverage__headline h2 { margin: 0; color: var(--detail-ink); font-family: var(--eco-display); font-size: 4.5rem; line-height: .94; }
.location-coverage__headline p { max-width: 650px; margin: 0; color: var(--detail-muted); line-height: 1.75; }
.location-coverage__flow { display: grid; grid-template-columns: 1fr 34px 1fr 34px 1fr 34px 1fr; align-items: center; margin-top: 56px; border-top: 1px solid #ccd5da; border-bottom: 1px solid #ccd5da; }
.location-coverage__flow > span { display: grid; min-height: 180px; align-content: center; padding: 24px; }
.location-coverage__flow > span svg { width: 22px; margin-bottom: 28px; color: var(--detail-blue); }
.location-coverage__flow b { color: var(--detail-ink); font-size: .84rem; }
.location-coverage__flow small { margin-top: 3px; color: var(--detail-muted); font-size: .67rem; }
.location-coverage__flow > svg { width: 18px; color: #9aa8b0; }
.location-region-band { padding: 70px 0; background: #fff; }
.location-region-band .eco-container { display: grid; grid-template-columns: .5fr 1fr auto; gap: 44px; align-items: center; }
.location-region-band span { color: var(--detail-muted); font-size: .72rem; font-weight: 800; }
.location-region-band h2 { margin: 0; color: var(--detail-ink); font-family: var(--eco-display); font-size: 3rem; line-height: .96; }
.location-region-band a { display: inline-flex; min-height: 50px; align-items: center; gap: 9px; padding: 0 18px; border-radius: 6px; background: var(--detail-action); color: #fff; font-size: .76rem; font-weight: 800; text-decoration: none; white-space: nowrap; }
.location-region-band a:hover { background: var(--detail-action-dark); }
.location-region-band svg { width: 17px; }

@media (max-width: 991.98px) {
  .location-subnav__inner { padding-right: 0; }
  .location-subnav__overview { padding-inline: 20px; }
  .location-subnav__links a { min-width: 132px; }
  .location-section-head,.location-lead__grid,.location-map-stage__grid,.location-neighbors .eco-container,.location-atlas__grid,.location-coverage__headline,.location-region-band .eco-container { grid-template-columns: 1fr; }
  .location-lead__identity,.location-atlas__map { position: relative; top: auto; }
  .location-lead__identity { min-height: 210px; }
  .location-situation-list { grid-template-columns: 1fr; }
  .location-situation-list article { min-height: 290px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.22); }
  .location-situation-list article:last-child { border-bottom: 0; }
  .location-service-list > a { grid-template-columns: 86px 40px minmax(0,1fr); }
  .location-service-list b { grid-column: 3; margin-top: 8px; }
  .location-map-stage figure > img { min-height: 500px; }
  .location-process__steps { grid-template-columns: 1fr 1fr; }
  .location-process__steps article:nth-child(2) { border-right: 0; }
  .location-process__steps article { border-bottom: 1px solid rgba(255,255,255,.2); }
  .location-atlas__map { min-height: 560px; }
  .location-coverage__headline > span { grid-column: auto; }
  .location-coverage__flow { grid-template-columns: 1fr 1fr; }
  .location-coverage__flow > svg { display: none; }
  .location-coverage__flow > span:nth-of-type(odd) { border-right: 1px solid #ccd5da; }
  .location-coverage__flow > span:nth-of-type(3),.location-coverage__flow > span:nth-of-type(4) { border-top: 1px solid #ccd5da; }
}
@media (max-width: 640px) {
  .location-subnav__inner { display: block; padding-inline: 0; }
  .location-subnav__overview { min-height: 50px; }
  .location-subnav__links { min-height: 64px; border-top: 1px solid var(--detail-line); }
  .location-subnav__links a { min-width: 128px; flex-direction: column; gap: 3px; font-size: .7rem; }
  .location-section-head h2 { font-size: 3.35rem; }
  .location-lead,.location-situations,.location-services,.location-map-stage,.location-process,.location-atlas,.location-coverage { padding: 74px 0; }
  .location-lead__identity { min-height: 160px; padding-left: 24px; }
  .location-lead__identity strong { font-size: 4.7rem; }
  .location-lead__copy h2,.location-map-stage__copy h2 { font-size: 3.45rem; }
  .location-situation-list article { min-height: 300px; padding: 28px 22px; }
  .location-situation-list article > span { font-size: 4rem; }
  .location-situation-list article > svg { margin-top: 34px; }
  .location-situation-list h3 { font-size: 1.9rem; }
  .location-service-list > a { grid-template-columns: 58px 30px minmax(0,1fr); gap: 13px; min-height: 176px; }
  .location-service-list > a > span { font-size: 3rem; }
  .location-service-list > a > svg { width: 23px; height: 23px; }
  .location-service-list b { grid-column: 3; margin-top: 8px; }
  .location-service-list h3 { font-size: 1.65rem; }
  .location-map-stage__grid { gap: 48px; }
  .location-map-stage dl { grid-template-columns: 1fr; }
  .location-map-stage dl div:nth-child(odd),.location-map-stage dl div:nth-child(even) { padding-inline: 0; border-right: 0; }
  .location-map-stage figure > img { min-height: 400px; border-radius: 8px 8px 30px 8px; }
  .location-map-stage figcaption { right: 12px; bottom: 12px; left: 12px; min-width: 0; }
  .location-process__steps { grid-template-columns: 1fr; }
  .location-process__steps article { min-height: 250px; border-right: 0; }
  .location-process__steps span { font-size: 3.9rem; }
  .location-process__steps h3 { margin-top: 48px; }
  .location-neighbors { padding: 70px 0; }
  .location-neighbors h2 { font-size: 3rem; }
  .location-atlas__map { min-height: 430px; }
  .location-atlas__content > h2 { font-size: 3.65rem; }
  .location-atlas__list a { grid-template-columns: 72px minmax(0,1fr) 18px; min-height: 148px; gap: 16px; }
  .location-atlas__list a > span { font-size: 3.15rem; }
  .location-coverage__headline h2 { font-size: 3.35rem; }
  .location-coverage__flow { grid-template-columns: 1fr; }
  .location-coverage__flow > svg { display: none; }
  .location-coverage__flow > span { min-height: 135px; border-bottom: 1px solid #ccd5da; }
  .location-coverage__flow > span svg { margin-bottom: 18px; }
  .location-region-band { padding: 62px 0; }
  .location-region-band h2 { font-size: 2.7rem; }
  .location-region-band a { justify-content: center; }
}
@media (prefers-reduced-motion: reduce) { .location-map-stage figcaption > svg { animation: none; } }

/* Location masterplan: briefing, dispatch and route */
.location-briefing { padding: 104px 0 112px; background: #fff; }
.location-briefing__grid { display: grid; grid-template-columns: 210px minmax(0,1fr) 250px; gap: 72px; align-items: start; }
.location-briefing__mark { display: grid; min-height: 250px; align-content: end; padding: 26px 0; border-top: 1px solid var(--detail-line); border-bottom: 1px solid var(--detail-line); }
.location-briefing__mark span { color: #dfe8ef; font-family: var(--eco-display); font-size: 6.5rem; font-weight: 900; line-height: .8; }
.location-briefing__mark strong { margin-top: 28px; color: var(--detail-ink); font-family: var(--eco-display); font-size: 1.85rem; line-height: 1; }
.location-briefing__mark small,.location-briefing__districts > span { margin-top: 6px; color: var(--detail-muted); font-size: .69rem; font-weight: 800; }
.location-briefing__copy h2 { max-width: 850px; margin: 14px 0 24px; color: var(--detail-ink); font-family: var(--eco-display); font-size: 4.55rem; line-height: .95; }
.location-briefing__copy > p { max-width: 760px; margin: 0; color: var(--detail-muted); font-size: 1rem; line-height: 1.8; }
.location-field-note { display: grid; grid-template-columns: 28px 1fr; gap: 16px; max-width: 680px; margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--detail-line); }
.location-field-note svg { width: 22px; color: var(--detail-blue); }
.location-field-note p { margin: 0; color: var(--detail-muted); font-size: .78rem; line-height: 1.65; }
.location-field-note strong { color: var(--detail-ink); }
.location-briefing__districts { padding-top: 12px; }
.location-briefing__districts ul { display: grid; margin: 26px 0 0; padding: 0; border-top: 1px solid var(--detail-line); list-style: none; }
.location-briefing__districts li { padding: 15px 0; border-bottom: 1px solid var(--detail-line); color: var(--detail-ink); font-size: .78rem; font-weight: 760; }

.location-service-flow { padding: 116px 0 124px; background: #eef3f7; }
.location-service-flow__head { display: grid; grid-template-columns: minmax(0,1fr) 430px; gap: 90px; align-items: end; margin-bottom: 56px; }
.location-service-flow__head h2 { max-width: 800px; margin: 12px 0 0; color: var(--detail-ink); font-family: var(--eco-display); font-size: 4.8rem; line-height: .93; }
.location-service-flow__head > p { margin: 0; color: var(--detail-muted); line-height: 1.75; }
.location-service-flow__stage { overflow: hidden; border: 1px solid #c7d3dc; border-radius: 24px; background: #fff; }
.location-service-flow__tabs { display: grid; grid-template-columns: repeat(5,1fr); border-bottom: 1px solid #c7d3dc; }
.location-service-flow__tabs button { display: grid; min-width: 0; min-height: 150px; grid-template-columns: 62px 1fr; gap: 12px; align-content: center; padding: 24px; border: 0; border-right: 1px solid #c7d3dc; background: #f8fafb; color: var(--detail-muted); text-align: left; transition: background .2s ease,color .2s ease; }
.location-service-flow__tabs button:last-child { border-right: 0; }
.location-service-flow__tabs button span { color: #a9bac6; font-family: var(--eco-display); font-size: 2.75rem; font-weight: 850; line-height: .8; }
.location-service-flow__tabs button svg { width: 23px; color: var(--detail-blue); align-self: center; }
.location-service-flow__tabs button b { grid-column: 1/-1; margin-top: 12px; color: var(--detail-ink); font-family: var(--eco-display); font-size: 1.25rem; }
.location-service-flow__tabs button:hover,.location-service-flow__tabs button.is-active { background: #fff; color: var(--detail-ink); }
.location-service-flow__tabs button.is-active { box-shadow: inset 0 -4px 0 var(--detail-blue); }
.location-service-flow__tabs button.is-active span { color: var(--detail-blue); }
.location-service-flow__panel { display: grid; grid-template-columns: minmax(300px,.78fr) minmax(0,1.22fr); min-height: 510px; }
.location-service-flow__panel[hidden] { display: none; }
.location-service-flow__panel > header { display: flex; flex-direction: column; align-items: flex-start; padding: 58px 48px; border-right: 1px solid #d4dde3; }
.location-service-flow__panel > header > span { color: var(--detail-blue); font-size: .7rem; font-weight: 820; }
.location-service-flow__panel h3 { max-width: 440px; margin: 18px 0; color: var(--detail-ink); font-family: var(--eco-display); font-size: 3.25rem; line-height: .95; }
.location-service-flow__panel > header p { margin: 0; color: var(--detail-muted); font-size: .86rem; line-height: 1.75; }
.location-service-flow__panel > header a { display: inline-flex; align-items: center; gap: 10px; margin-top: auto; padding-bottom: 8px; border-bottom: 2px solid var(--detail-blue); color: var(--detail-ink); font-size: .75rem; font-weight: 820; text-decoration: none; }
.location-service-flow__panel > header a:hover { color: var(--detail-blue); }
.location-service-flow__panel > header a svg { width: 16px; }
.location-service-flow__links { display: grid; }
.location-service-flow__links > a { display: grid; min-height: 127px; grid-template-columns: 72px 32px minmax(0,1fr) 20px; gap: 18px; align-items: center; padding: 22px 30px; border-bottom: 1px solid #d4dde3; color: var(--detail-ink); text-decoration: none; }
.location-service-flow__links > a:last-child { border-bottom: 0; }
.location-service-flow__links > a > span { color: #a9bac6; font-family: var(--eco-display); font-size: 2.5rem; font-weight: 850; line-height: .8; }
.location-service-flow__links > a > svg { width: 23px; color: var(--detail-blue); }
.location-service-flow__links > a > svg:last-child { width: 17px; color: var(--detail-ink); transition: transform .2s ease; }
.location-service-flow__links > a:hover strong { color: var(--detail-blue); }
.location-service-flow__links > a:hover > svg:last-child { transform: translate(3px,-3px); }
.location-service-flow__links div { display: grid; gap: 5px; }
.location-service-flow__links strong { font-family: var(--eco-display); font-size: 1.35rem; line-height: 1; }
.location-service-flow__links small { max-width: 570px; color: var(--detail-muted); font-size: .72rem; line-height: 1.55; }

.location-command { overflow: hidden; padding: 110px 0 120px; background: var(--detail-ink); color: #fff; }
.location-command__head { display: grid; grid-template-columns: minmax(0,1fr) 430px; gap: 80px; align-items: end; margin-bottom: 54px; }
.location-command__head .detail-kicker { color: #9bc9ed; }
.location-command__head h2 { margin: 10px 0 0; font-family: var(--eco-display); font-size: 5.4rem; line-height: .88; }
.location-command__head > p { margin: 0; color: rgba(255,255,255,.63); line-height: 1.75; }
.location-command__shell { display: grid; overflow: hidden; grid-template-columns: 320px minmax(0,1fr); min-height: 640px; border: 1px solid rgba(255,255,255,.2); border-radius: 24px; }
.location-command__tabs { border-right: 1px solid rgba(255,255,255,.2); }
.location-command__tabs button { display: grid; width: 100%; min-height: 160px; grid-template-columns: 62px 28px 1fr; gap: 14px; align-items: center; padding: 0 28px 0 22px; border: 0; border-bottom: 1px solid rgba(255,255,255,.2); background: transparent; color: rgba(255,255,255,.58); text-align: left; transition: color .2s ease,background .2s ease; }
.location-command__tabs button:last-child { border-bottom: 0; }
.location-command__tabs button span { color: rgba(255,255,255,.3); font-family: var(--eco-display); font-size: 2.65rem; font-weight: 850; line-height: .8; }
.location-command__tabs button svg { width: 21px; }
.location-command__tabs button b { font-family: var(--eco-display); font-size: 1.3rem; }
.location-command__tabs button:hover { color: #fff; }
.location-command__tabs button.is-active { background: rgba(255,255,255,.075); color: #fff; }
.location-command__tabs button.is-active span,.location-command__tabs button.is-active svg { color: #81b9e7; }
.location-command__panel { display: grid; min-height: 610px; grid-template-columns: minmax(0,.95fr) minmax(360px,1.05fr); }
.location-command__panel[hidden] { display: none; }
.location-command__copy { display: flex; flex-direction: column; align-items: flex-start; padding: 64px 54px; }
.location-command__copy > span { color: #9bc9ed; font-size: .7rem; font-weight: 800; }
.location-command__copy h3 { max-width: 580px; margin: 20px 0; font-family: var(--eco-display); font-size: 3.4rem; line-height: .95; }
.location-command__copy > p { max-width: 590px; margin: 0; color: rgba(255,255,255,.65); font-size: .88rem; line-height: 1.75; }
.location-command__copy nav { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 30px; }
.location-command__copy nav a { display: inline-flex; align-items: center; gap: 7px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.28); color: #fff; font-size: .72rem; font-weight: 760; text-decoration: none; }
.location-command__copy nav a:hover { border-color: #fff; }
.location-command__copy nav svg { width: 14px; }
.location-command__cta { display: inline-flex; min-height: 52px; align-items: center; gap: 10px; margin-top: auto; padding: 0 18px; border-radius: 8px; background: var(--detail-action); color: #fff; font-size: .76rem; font-weight: 820; text-decoration: none; }
.location-command__cta:hover { background: var(--detail-action-dark); color: #fff; }
.location-command__cta svg { width: 17px; }
.location-command__panel figure { overflow: hidden; min-height: 100%; margin: 0; }
.location-command__panel figure img { width: 100%; height: 100%; object-fit: cover; }

.location-route { padding: 118px 0; background: #f2f5f7; }
.location-route__grid { display: grid; grid-template-columns: minmax(390px,.9fr) minmax(0,1.1fr); gap: 100px; align-items: center; }
.location-route figure { position: relative; overflow: hidden; min-height: 660px; margin: 0; border-radius: 24px; background: #dfe8ed; }
.location-route figure > img { width: 100%; height: 100%; min-height: 660px; object-fit: cover; }
.location-route figcaption { position: absolute; right: 18px; bottom: 18px; left: 18px; display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: center; padding: 18px; border-radius: 12px; background: #fff; color: var(--detail-ink); }
.location-route figcaption svg { grid-row: 1/3; width: 22px; color: var(--detail-action); }
.location-route figcaption span { display: grid; font-size: .68rem; }
.location-route figcaption b { font-size: .86rem; }
.location-route__copy h2 { max-width: 720px; margin: 14px 0 22px; color: var(--detail-ink); font-family: var(--eco-display); font-size: 4.4rem; line-height: .94; }
.location-route__copy > p { max-width: 680px; color: var(--detail-muted); line-height: 1.8; }
.location-route ol { margin: 42px 0 0; padding: 0; border-top: 1px solid #c9d3d9; list-style: none; }
.location-route li { display: grid; min-height: 112px; grid-template-columns: 86px 1fr; gap: 24px; align-items: center; border-bottom: 1px solid #c9d3d9; }
.location-route li > span { color: var(--detail-blue); font-family: var(--eco-display); font-size: 3rem; font-weight: 850; line-height: .8; }
.location-route li div { display: grid; gap: 3px; }
.location-route li strong { color: var(--detail-ink); font-size: .84rem; }
.location-route li small { color: var(--detail-muted); font-size: .72rem; }

.location-finale { padding: 96px 0; background: #fff; }
.location-finale > .eco-container { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(300px,.85fr); gap: 100px; align-items: start; }
.location-finale__copy > span,.location-finale nav > span { color: var(--detail-blue); font-size: .7rem; font-weight: 820; }
.location-finale__copy h2 { max-width: 760px; margin: 14px 0 18px; color: var(--detail-ink); font-family: var(--eco-display); font-size: 4rem; line-height: .95; }
.location-finale__copy p { color: var(--detail-muted); }
.location-finale__copy > a { display: inline-flex; min-height: 54px; align-items: center; gap: 10px; margin-top: 16px; padding: 0 20px; border-radius: 8px; background: var(--detail-action); color: #fff; font-size: .76rem; font-weight: 820; text-decoration: none; }
.location-finale__copy > a:hover { background: var(--detail-action-dark); color: #fff; }
.location-finale__copy svg { width: 17px; }
.location-finale nav { display: grid; border-top: 1px solid var(--detail-line); }
.location-finale nav > span { padding: 0 0 18px; transform: translateY(-100%); }
.location-finale nav a { display: grid; min-height: 86px; grid-template-columns: 1fr 22px; align-content: center; padding: 14px 0; border-bottom: 1px solid var(--detail-line); color: var(--detail-ink); text-decoration: none; }
.location-finale nav a:hover strong { color: var(--detail-blue); }
.location-finale nav small { color: var(--detail-muted); font-size: .66rem; }
.location-finale nav strong { font-family: var(--eco-display); font-size: 1.45rem; }
.location-finale nav svg { grid-column: 2; grid-row: 1/3; width: 17px; align-self: center; }
.location-hub-method { padding: 116px 0; background: var(--detail-ink); color: #fff; }
.location-hub-method header { display: grid; grid-template-columns: minmax(0,1fr) 420px; gap: 80px; align-items: end; }
.location-hub-method header .detail-kicker { grid-column: 1/-1; color: #9bc9ed; }
.location-hub-method h2 { max-width: 830px; margin: 0; font-family: var(--eco-display); font-size: 4.8rem; line-height: .92; }
.location-hub-method header p { margin: 0; color: rgba(255,255,255,.62); line-height: 1.75; }
.location-hub-method ol { display: grid; grid-template-columns: repeat(4,1fr); margin: 68px 0 0; padding: 0; border-top: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); list-style: none; }
.location-hub-method li { display: grid; min-height: 260px; grid-template-columns: 90px 1fr; align-content: space-between; padding: 32px; border-right: 1px solid rgba(255,255,255,.2); }
.location-hub-method li:last-child { border-right: 0; }
.location-hub-method li > span { color: #9bc9ed; font-family: var(--eco-display); font-size: 3.4rem; font-weight: 850; line-height: .8; }
.location-hub-method li > svg { width: 24px; justify-self: end; color: #9bc9ed; }
.location-hub-method li div { display: grid; grid-column: 1/-1; gap: 5px; align-self: end; }
.location-hub-method li strong { font-family: var(--eco-display); font-size: 1.65rem; }
.location-hub-method li small { color: rgba(255,255,255,.55); font-size: .7rem; }
.location-finale--hub { background: #f2f5f7; }

.service-location-context { border-bottom: 1px solid #c7d3dc; background: #eef3f7; }
.service-location-context__inner { display: grid; min-height: 104px; grid-template-columns: 210px minmax(0,1fr) auto; gap: 42px; align-items: center; }
.service-location-context__inner > div { display: grid; }
.service-location-context__inner span { color: var(--detail-blue); font-size: .66rem; font-weight: 820; }
.service-location-context__inner strong { color: var(--detail-ink); font-family: var(--eco-display); font-size: 1.8rem; line-height: 1; }
.service-location-context__inner p { margin: 0; color: var(--detail-muted); font-size: .78rem; }
.service-location-context__inner nav { display: flex; gap: 10px; }
.service-location-context__inner a { display: inline-flex; min-height: 46px; align-items: center; gap: 8px; padding: 0 15px; border: 1px solid #b9c7d1; border-radius: 8px; color: var(--detail-ink); font-size: .7rem; font-weight: 800; text-decoration: none; }
.service-location-context__inner a:last-child { border-color: var(--detail-action); background: var(--detail-action); color: #fff; }
.service-location-context__inner a:hover { border-color: var(--detail-blue); background: #fff; color: var(--detail-blue); }
.service-location-context__inner a:last-child:hover { border-color: var(--detail-action-dark); background: var(--detail-action-dark); color: #fff; }
.service-location-context__inner svg { width: 16px; }

/* Concrete offer pages: one canonical landing page per sellable service */
.detail-offers { padding: 120px 0 128px; background: #eef3f6; }
.detail-offers__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.detail-offers__grid > a { overflow: hidden; border: 1px solid #c9d5dd; border-radius: 18px; background: #fff; color: var(--detail-ink); text-decoration: none; transition: transform .25s ease,box-shadow .25s ease; }
.detail-offers__grid figure { overflow: hidden; height: 235px; margin: 0; background: #dfe7ec; }
.detail-offers__grid figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.detail-offers__grid > a > div { display: grid; min-height: 330px; grid-template-columns: 26px 1fr; align-content: start; padding: 28px; }
.detail-offers__grid > a > div > svg { width: 20px; color: var(--detail-blue); }
.detail-offers__grid small { align-self: center; color: var(--detail-blue); font-size: .61rem; font-weight: 800; }
.detail-offers__grid h3 { grid-column: 1/-1; margin: 18px 0 12px; font-family: var(--eco-display); font-size: 2.25rem; line-height: .95; }
.detail-offers__grid p { grid-column: 1/-1; margin: 0; color: var(--detail-muted); font-size: .74rem; line-height: 1.65; }
.detail-offers__grid b { display: flex; grid-column: 1/-1; align-items: center; gap: 8px; align-self: end; margin-top: 28px; font-size: .7rem; }
.detail-offers__grid b svg { width: 14px; }
.detail-offers__grid > a:hover { box-shadow: 0 18px 42px rgba(7,29,51,.1); transform: translateY(-4px); }
.detail-offers__grid > a:hover figure img { transform: scale(1.035); }

.offer-hero { position: relative; isolation: isolate; display: flex; min-height: 790px; align-items: center; overflow: hidden; padding: 82px 0; background: #071d33; color: #fff; }
.offer-hero > figure { position: absolute; z-index: -2; inset: 0; margin: 0; }
.offer-hero > figure img { width: 100%; height: 100%; object-fit: cover; }
.offer-hero::after { position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg,rgba(4,20,35,.92) 0%,rgba(4,20,35,.72) 48%,rgba(4,20,35,.32) 100%); content: ""; }
.offer-hero__grid { display: grid; grid-template-columns: minmax(0,1fr) 450px; gap: clamp(60px,8vw,125px); align-items: center; }
.offer-hero__copy { max-width: 720px; }
.offer-hero__copy > span { color: #a9d4f5; font-size: .7rem; font-weight: 820; letter-spacing: .08em; text-transform: uppercase; }
.offer-hero__copy h1 { margin: 20px 0 25px; font-family: var(--eco-display); font-size: clamp(4.5rem,6.5vw,7.1rem); line-height: .88; text-wrap: balance; }
.offer-hero__copy > p { max-width: 650px; margin: 0; color: rgba(255,255,255,.8); font-size: 1rem; line-height: 1.8; }
.offer-hero__copy ul { display: flex; flex-wrap: wrap; gap: 14px 28px; margin: 34px 0 0; padding: 24px 0 0; border-top: 1px solid rgba(255,255,255,.24); list-style: none; }
.offer-hero__copy li { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.9); font-size: .69rem; font-weight: 740; }
.offer-hero__copy li svg { width: 16px; color: #a9d4f5; }
.offer-hero__form { padding: 35px; border-radius: 20px; background: #fff; box-shadow: 0 28px 70px rgba(0,0,0,.26); color: var(--detail-ink); }
.offer-hero__form header { margin-bottom: 25px; }
.offer-hero__form header > span { color: var(--detail-blue); font-size: .65rem; font-weight: 820; letter-spacing: .08em; text-transform: uppercase; }
.offer-hero__form h2 { margin: 8px 0; font-family: var(--eco-display); font-size: 2.35rem; line-height: .95; }
.offer-hero__form header p { margin: 0; color: var(--detail-muted); font-size: .72rem; line-height: 1.55; }
.offer-hero__form label { display: block; margin: 0 0 7px; color: #425467; font-size: .64rem; font-weight: 800; }
.offer-hero__form input,.offer-hero__form select,.offer-hero__form textarea { width: 100%; border: 1px solid #cbd6de; border-radius: 8px; outline: 0; background: #f7f9fa; color: var(--detail-ink); font: inherit; font-size: .76rem; }
.offer-hero__form input,.offer-hero__form select { height: 51px; padding: 0 13px; }
.offer-hero__form textarea { min-height: 82px; padding: 12px 13px; resize: vertical; }
.offer-hero__form input:focus,.offer-hero__form select:focus,.offer-hero__form textarea:focus { border-color: #477fa7; background: #fff; box-shadow: 0 0 0 3px rgba(44,111,159,.12); }
.offer-form__row { display: grid; grid-template-columns: 1fr 105px; gap: 12px; margin-bottom: 16px; }
.offer-hero__form > input { margin-bottom: 16px; }
.offer-hero__form button { display: flex; width: 100%; min-height: 53px; justify-content: center; align-items: center; gap: 8px; margin-top: 17px; border: 0; border-radius: 8px; background: var(--detail-action); color: #fff; font-size: .74rem; font-weight: 820; }
.offer-hero__form button:hover { background: var(--detail-action-dark); }
.offer-hero__form button svg,.offer-hero__form > a svg { width: 16px; }
.offer-hero__form > small { display: block; margin: 9px 0 17px; color: #697a88; font-size: .59rem; line-height: 1.5; text-align: center; }
.offer-hero__form > a { display: flex; justify-content: center; align-items: center; gap: 8px; padding-top: 16px; border-top: 1px solid #dde5ea; color: var(--detail-ink); font-size: .69rem; font-weight: 800; text-decoration: none; }

.offer-benefits { background: #fff; border-bottom: 1px solid var(--detail-line); }
.offer-benefits > div { display: grid; grid-template-columns: repeat(3,1fr); }
.offer-benefits article { display: grid; min-height: 220px; grid-template-columns: 52px 1fr; gap: 18px; align-items: center; padding: 38px 32px; border-right: 1px solid var(--detail-line); }
.offer-benefits article:last-child { border-right: 0; }
.offer-benefits article > span { align-self: start; color: #afbec8; font-family: var(--eco-display); font-size: 2.2rem; font-weight: 900; }
.offer-benefits h2 { margin: 0 0 10px; font-family: var(--eco-display); font-size: 1.7rem; line-height: 1; }
.offer-benefits p { margin: 0; color: var(--detail-muted); font-size: .73rem; line-height: 1.65; }

.offer-scope { padding: 128px 0; background: #eef3f6; }
.offer-scope__grid { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(380px,.72fr); gap: 110px; align-items: start; }
.offer-scope h2 { max-width: 760px; margin: 14px 0 23px; font-family: var(--eco-display); font-size: 4.8rem; line-height: .9; }
.offer-scope__grid > div > p { max-width: 690px; color: var(--detail-muted); line-height: 1.8; }
.offer-scope ul { display: grid; grid-template-columns: 1fr 1fr; gap: 0 26px; margin: 38px 0 0; padding: 0; border-top: 1px solid #c8d5dd; list-style: none; }
.offer-scope ul li { display: grid; min-height: 68px; grid-template-columns: 22px 1fr; gap: 10px; align-items: center; border-bottom: 1px solid #c8d5dd; font-size: .76rem; font-weight: 730; }
.offer-scope ul svg { width: 16px; color: var(--detail-blue); }
.offer-scope aside { padding: 38px; border-radius: 20px; background: #071d33; color: #fff; }
.offer-scope aside > span { color: #9bc9ed; font-size: .65rem; font-weight: 820; text-transform: uppercase; }
.offer-scope aside h3 { margin: 11px 0 26px; font-family: var(--eco-display); font-size: 2.55rem; line-height: .95; }
.offer-scope aside ol { margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,.2); list-style: none; }
.offer-scope aside li { display: grid; min-height: 78px; grid-template-columns: 35px 1fr; gap: 13px; align-items: center; border-bottom: 1px solid rgba(255,255,255,.2); }
.offer-scope aside li b { color: #9bc9ed; font-family: var(--eco-display); font-size: 1.35rem; }
.offer-scope aside li span { color: rgba(255,255,255,.72); font-size: .7rem; line-height: 1.5; }
.offer-scope aside a { display: inline-flex; align-items: center; gap: 8px; margin-top: 27px; color: #fff; font-size: .7rem; font-weight: 800; text-decoration: none; }
.offer-scope aside a svg { width: 16px; color: #9bc9ed; }

.offer-process { padding: 126px 0; background: #071d33; color: #fff; }
.offer-process header { display: grid; grid-template-columns: minmax(0,1fr) 430px; gap: 80px; align-items: end; margin-bottom: 52px; }
.offer-process h2 { max-width: 780px; margin: 13px 0 0; font-family: var(--eco-display); font-size: 4.7rem; line-height: .9; }
.offer-process header > p { margin: 0; color: rgba(255,255,255,.62); line-height: 1.75; }
.offer-process ol { display: grid; grid-template-columns: repeat(4,1fr); margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); list-style: none; }
.offer-process li { min-height: 330px; padding: 31px; border-right: 1px solid rgba(255,255,255,.2); }
.offer-process li:last-child { border-right: 0; }
.offer-process li > span { color: #80bce8; font-family: var(--eco-display); font-size: 4.1rem; font-weight: 900; line-height: .8; }
.offer-process li > div { margin-top: 105px; }
.offer-process h3 { margin: 0 0 11px; font-family: var(--eco-display); font-size: 1.8rem; line-height: 1; }
.offer-process li p { margin: 0; color: rgba(255,255,255,.6); font-size: .73rem; line-height: 1.65; }

.offer-intent { padding: 48px 0; border-bottom: 1px solid var(--detail-line); background: #fff; }
.offer-intent > div { display: grid; grid-template-columns: 130px minmax(0,1fr) 330px; gap: 28px; align-items: center; }
.offer-intent span { color: var(--detail-blue); font-size: .64rem; font-weight: 820; text-transform: uppercase; }
.offer-intent div > div { display: flex; flex-wrap: wrap; gap: 8px; }
.offer-intent strong { padding: 8px 10px; border-radius: 6px; background: #eef3f6; font-size: .66rem; }
.offer-intent p { margin: 0; color: var(--detail-muted); font-size: .7rem; line-height: 1.55; }

.offer-related { padding: 110px 0; background: #eef3f6; }
.offer-related header { margin-bottom: 36px; }
.offer-related h2 { margin: 12px 0 0; font-family: var(--eco-display); font-size: 4rem; line-height: .92; }
.offer-related .eco-container > div { display: grid; grid-template-columns: repeat(3,1fr); gap: 15px; }
.offer-related a { display: grid; min-height: 150px; grid-template-columns: 32px 1fr 20px; gap: 15px; align-items: center; padding: 25px; border: 1px solid #cad6de; border-radius: 12px; background: #fff; color: var(--detail-ink); text-decoration: none; }
.offer-related a > svg { width: 22px; color: var(--detail-blue); }
.offer-related a > svg:last-child { width: 16px; }
.offer-related a span,.offer-related a small,.offer-related a b { display: block; }
.offer-related a small { margin-bottom: 6px; color: var(--detail-blue); font-size: .61rem; }
.offer-related a b { font-family: var(--eco-display); font-size: 1.45rem; line-height: 1; }

@media (max-width:991.98px) {
  .detail-offers__grid { grid-template-columns: 1fr 1fr; }
  .offer-hero__grid,.offer-scope__grid,.offer-process header { grid-template-columns: 1fr; }
  .offer-hero__form { max-width: 620px; }
  .offer-benefits > div { grid-template-columns: 1fr; }
  .offer-benefits article { border-right: 0; border-bottom: 1px solid var(--detail-line); }
  .offer-scope__grid,.offer-process header { gap: 45px; }
  .offer-process ol { grid-template-columns: 1fr 1fr; }
  .offer-process li:nth-child(2) { border-right: 0; }
  .offer-process li:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.2); }
  .offer-intent > div { grid-template-columns: 1fr; gap: 15px; }
  .offer-related .eco-container > div { grid-template-columns: 1fr; }
}
@media (max-width:640px) {
  .detail-offers { padding: 76px 0; }
  .detail-offers__grid { grid-template-columns: 1fr; }
  .offer-hero { padding: 68px 0; }
  .offer-hero__grid { gap: 42px; }
  .offer-hero__copy h1 { font-size: 3.75rem; }
  .offer-hero__copy ul { display: grid; gap: 11px; }
  .offer-hero__form { padding: 27px 20px; border-radius: 16px; }
  .offer-form__row,.offer-scope ul,.offer-process ol { grid-template-columns: 1fr; }
  .offer-scope,.offer-process,.offer-related { padding: 78px 0; }
  .offer-scope h2,.offer-process h2,.offer-related h2 { font-size: 3.4rem; }
  .offer-scope aside { padding: 28px 22px; border-radius: 16px; }
  .offer-process li { min-height: 270px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .offer-process li > div { margin-top: 75px; }
  .offer-process li:last-child { border-bottom: 0; }
}
.contact-prefill__context { display: block; margin-bottom: 12px; color: var(--detail-blue); font-size: .68rem; font-weight: 820; }

@media (max-width: 991.98px) {
  .location-briefing__grid { grid-template-columns: 150px minmax(0,1fr); gap: 48px; }
  .location-briefing__districts { grid-column: 2; }
  .location-briefing__districts ul { grid-template-columns: repeat(3,1fr); }
  .location-briefing__districts li { padding-right: 12px; }
  .location-service-flow__head { grid-template-columns: 1fr; gap: 24px; }
  .location-service-flow__tabs { grid-template-columns: repeat(5,190px); overflow-x: auto; }
  .location-service-flow__panel { grid-template-columns: 1fr; }
  .location-service-flow__panel > header { min-height: 390px; border-right: 0; border-bottom: 1px solid #d4dde3; }
  .service-location-context__inner { grid-template-columns: 180px 1fr; padding-block: 24px; }
  .service-location-context__inner nav { grid-column: 1/-1; }
  .location-command__head,.location-finale > .eco-container { grid-template-columns: 1fr; gap: 42px; }
  .location-command__shell { grid-template-columns: 1fr; }
  .location-command__tabs { display: grid; grid-template-columns: repeat(4,1fr); border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .location-command__tabs button { min-height: 116px; grid-template-columns: 58px 1fr; padding: 18px 20px; border-right: 1px solid rgba(255,255,255,.2); border-bottom: 0; }
  .location-command__tabs button svg { display: none; }
  .location-command__panel { min-height: 560px; }
  .location-route__grid { grid-template-columns: 1fr; gap: 58px; }
  .location-route figure,.location-route figure > img { min-height: 520px; }
  .location-finale nav > span { transform: none; }
  .location-hub-method header { grid-template-columns: 1fr; gap: 28px; }
  .location-hub-method header .detail-kicker { grid-column: auto; }
  .location-hub-method ol { grid-template-columns: 1fr 1fr; }
  .location-hub-method li:nth-child(2) { border-right: 0; }
  .location-hub-method li:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.2); }
}

@media (max-width: 640px) {
  .location-briefing,.location-service-flow,.location-command,.location-route,.location-finale { padding: 74px 0; }
  .location-briefing__grid { grid-template-columns: 1fr; gap: 38px; }
  .location-briefing__mark { min-height: 135px; grid-template-columns: auto 1fr; gap: 8px 20px; align-items: end; align-content: center; }
  .location-briefing__mark span { grid-row: 1/3; font-size: 5rem; }
  .location-briefing__mark strong { margin: 0; font-size: 1.6rem; }
  .location-briefing__districts { grid-column: auto; }
  .location-briefing__districts ul { grid-template-columns: 1fr 1fr; }
  .location-briefing__copy h2 { font-size: 3.15rem; }
  .location-service-flow__head { margin-bottom: 38px; }
  .location-service-flow__head h2 { font-size: 3.2rem; }
  .location-service-flow__stage { border-radius: 20px; }
  .location-service-flow__tabs { grid-template-columns: repeat(5,160px); }
  .location-service-flow__tabs button { min-height: 130px; grid-template-columns: 50px 1fr; padding: 18px; }
  .location-service-flow__tabs button span { font-size: 2.25rem; }
  .location-service-flow__panel > header { min-height: 420px; padding: 40px 24px; }
  .location-service-flow__panel h3 { font-size: 2.65rem; }
  .location-service-flow__links > a { min-height: 145px; grid-template-columns: 58px 26px minmax(0,1fr) 16px; gap: 12px; padding: 20px 16px; }
  .location-service-flow__links > a > span { font-size: 2rem; }
  .location-service-flow__links small { font-size: .68rem; }
  .service-location-context__inner { grid-template-columns: 1fr; gap: 16px; }
  .service-location-context__inner nav { grid-column: auto; display: grid; grid-template-columns: 1fr 1fr; }
  .service-location-context__inner a { justify-content: center; padding-inline: 10px; }
  .location-command__head { gap: 24px; margin-bottom: 38px; }
  .location-command__head h2 { font-size: 4.1rem; }
  .location-command__shell { border-radius: 20px; }
  .location-command__tabs { grid-template-columns: 1fr 1fr; }
  .location-command__tabs button { min-height: 96px; grid-template-columns: 48px 1fr; padding: 16px; border-bottom: 1px solid rgba(255,255,255,.2); }
  .location-command__tabs button span { font-size: 2.2rem; }
  .location-command__tabs button:nth-child(2n) { border-right: 0; }
  .location-command__panel { min-height: 0; grid-template-columns: 1fr; }
  .location-command__copy { min-height: 520px; padding: 40px 24px; }
  .location-command__copy h3 { font-size: 2.65rem; }
  .location-command__panel figure { min-height: 330px; }
  .location-route__grid { gap: 46px; }
  .location-route figure,.location-route figure > img { min-height: 410px; }
  .location-route__copy h2 { font-size: 3.2rem; }
  .location-finale > .eco-container { gap: 68px; }
  .location-finale__copy h2 { font-size: 3rem; }
  .location-hub-method { padding: 74px 0; }
  .location-hub-method h2 { font-size: 3.25rem; }
  .location-hub-method ol { grid-template-columns: 1fr; margin-top: 46px; }
  .location-hub-method li { min-height: 185px; grid-template-columns: 78px 1fr; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .location-hub-method li > span { font-size: 3rem; }
  .location-hub-method li:last-child { border-bottom: 0; }
}

/* Company ecosystem: shared navigation and page-specific editorial blocks */
.company-subnav { position: relative; z-index: 4; background: #fff; box-shadow: 0 14px 34px rgba(7,29,51,.055); }
.company-subnav__inner { display: flex; min-height: 80px; align-items: center; gap: 30px; }
.company-subnav__label { flex: 0 0 auto; color: var(--company-muted); font-size: .69rem; font-weight: 800; }
.company-subnav__links { display: flex; min-width: 0; flex: 1; align-self: stretch; overflow-x: auto; scrollbar-width: none; }
.company-subnav__links::-webkit-scrollbar { display: none; }
.company-subnav__links a { position: relative; display: inline-flex; flex: 1 0 auto; align-items: center; justify-content: center; gap: 8px; padding: 0 18px; color: #53666f; font-size: .78rem; font-weight: 750; text-decoration: none; white-space: nowrap; }
.company-subnav__links a::after { position: absolute; right: 18px; bottom: 0; left: 18px; height: 3px; background: var(--company-action); content: ""; opacity: 0; transform: scaleX(.35); transition: opacity .2s ease,transform .2s ease; }
.company-subnav__links a:hover { color: var(--company-ink); }
.company-subnav__links a.is-active { color: var(--company-ink); }
.company-subnav__links a.is-active::after { opacity: 1; transform: scaleX(1); }
.company-subnav__links svg { width: 16px; height: 16px; color: var(--company-blue); }

.company-system { overflow: hidden; padding: 92px 0; background: var(--company-ink); color: #fff; }
.company-system__inner { display: grid; grid-template-columns: minmax(270px,.65fr) minmax(0,1.35fr); gap: clamp(60px,10vw,150px); align-items: center; }
.company-system__number { position: relative; min-height: 270px; display: grid; align-content: center; padding-left: 40px; border-left: 1px solid rgba(255,255,255,.2); }
.company-system__number > span { color: #9bc2e5; font-size: .72rem; font-weight: 800; }
.company-system__number strong { font-family: var(--eco-display); font-size: 10rem; font-weight: 900; line-height: .75; }
.company-system__number small { margin-top: 15px; color: rgba(255,255,255,.58); font-size: .72rem; font-weight: 700; }
.company-system__copy .company-kicker { color: #9bc2e5; }
.company-system__copy h2 { max-width: 850px; margin: 12px 0 18px; font-family: var(--eco-display); font-size: 4.6rem; line-height: .95; }
.company-system__copy > p { max-width: 720px; margin: 0; color: rgba(255,255,255,.64); line-height: 1.75; }
.company-system__copy nav { display: grid; grid-template-columns: 1fr 1fr; margin-top: 34px; border-top: 1px solid rgba(255,255,255,.18); }
.company-system__copy nav a { display: flex; min-height: 64px; align-items: center; justify-content: space-between; padding: 0 16px 0 0; border-bottom: 1px solid rgba(255,255,255,.18); color: #fff; font-size: .82rem; font-weight: 750; text-decoration: none; }
.company-system__copy nav a:nth-child(odd) { margin-right: 28px; }
.company-system__copy nav a:hover { color: #b9d7f0; }
.company-system__copy nav svg { width: 16px; }

.company-choice-rows { margin-top: 68px; border-top: 1px solid var(--company-line); }
.company-choice-rows > a { display: grid; grid-template-columns: 48px minmax(0,1fr) 24px; gap: 22px; align-items: center; min-height: 132px; padding: 24px 4px; border-bottom: 1px solid var(--company-line); color: var(--company-ink); text-decoration: none; }
.company-choice-rows > a > svg:first-child { width: 26px; color: var(--company-blue); }
.company-choice-rows > a > svg:last-child { width: 19px; transition: transform .2s ease; }
.company-choice-rows > a:hover > svg:last-child { transform: translateX(5px); }
.company-choice-rows > a:hover strong { color: var(--company-blue); }
.company-choice-rows > a:first-child > svg:first-child,.company-choice-rows > a:first-child b { color: var(--company-action); }
.company-choice-rows span { display: grid; grid-template-columns: minmax(110px,.25fr) minmax(280px,1fr) auto; gap: 24px; align-items: center; }
.company-choice-rows small { color: var(--company-muted); font-size: .7rem; font-weight: 800; }
.company-choice-rows strong { font-family: var(--eco-display); font-size: 1.75rem; line-height: 1.05; transition: color .2s ease; }
.company-choice-rows b { color: var(--company-blue); font-size: .72rem; }

.company-ops-grid { display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); gap: clamp(50px,8vw,120px); margin-top: 72px; padding-top: 54px; border-top: 1px solid var(--company-line); }
.company-ops-lead { display: flex; flex-direction: column; align-items: flex-start; }
.company-ops-lead > span { color: var(--company-blue); font-size: .72rem; font-weight: 800; }
.company-ops-lead strong { max-width: 520px; margin: 18px 0; color: var(--company-ink); font-family: var(--eco-display); font-size: clamp(2.5rem,4vw,4rem); line-height: .98; }
.company-ops-lead p { max-width: 560px; color: var(--company-muted); line-height: 1.75; }
.company-ops-list { border-top: 1px solid var(--company-line); }
.company-ops-list > span { display: grid; grid-template-columns: 42px 1fr; gap: 6px 18px; padding: 22px 0; border-bottom: 1px solid var(--company-line); }
.company-ops-list b { grid-row: 1/3; color: var(--company-blue); font-family: var(--eco-display); }
.company-ops-list strong { color: var(--company-ink); font-size: .92rem; }
.company-ops-list small { color: var(--company-muted); font-size: .76rem; }

.company-flow { padding: 110px 0; background: #fff; }
.company-flow__layout { display: grid; grid-template-columns: minmax(280px,.72fr) minmax(0,1.28fr); gap: clamp(60px,10vw,150px); align-items: start; }
.company-flow header { position: sticky; top: 150px; }
.company-flow h2 { margin: 12px 0 20px; color: var(--company-ink); font-family: var(--eco-display); font-size: clamp(3rem,4.8vw,5rem); line-height: .95; }
.company-flow header p { color: var(--company-muted); line-height: 1.8; }
.company-flow__stages { border-top: 1px solid var(--company-line); }
.company-flow__stages article { display: grid; grid-template-columns: 42px minmax(0,1fr) 30px; gap: 24px; min-height: 190px; align-items: start; padding: 34px 0; border-bottom: 1px solid var(--company-line); }
.company-flow__stages article > span { color: var(--company-blue); font-family: var(--eco-display); font-weight: 800; }
.company-flow__stages article > svg { width: 24px; color: var(--company-blue); }
.company-flow__stages small { color: var(--company-muted); font-size: .68rem; font-weight: 800; }
.company-flow__stages h3 { margin: 7px 0 10px; color: var(--company-ink); font-family: var(--eco-display); font-size: 2rem; line-height: 1; }
.company-flow__stages p { max-width: 620px; margin: 0; color: var(--company-muted); font-size: .84rem; line-height: 1.7; }
.company-path-band { padding: 46px 0; background: var(--company-soft); }
.company-path-band .eco-container { display: grid; grid-template-columns: .45fr 1fr; gap: 40px; align-items: center; }
.company-path-band .eco-container > span { color: var(--company-ink); font-family: var(--eco-display); font-size: 1.9rem; }
.company-path-band .eco-container > div { display: grid; grid-template-columns: 1fr 1fr; border-left: 1px solid var(--company-line); }
.company-path-band a { display: grid; grid-template-columns: 30px 1fr; gap: 2px 14px; padding: 20px 28px; border-right: 1px solid var(--company-line); color: var(--company-ink); text-decoration: none; }
.company-path-band a:hover { background: #fff; }
.company-path-band svg { grid-row: 1/3; width: 22px; color: var(--company-blue); }
.company-path-band strong { font-size: .84rem; }
.company-path-band small { color: var(--company-muted); font-size: .7rem; }

.company-directory { display: grid; grid-template-columns: minmax(360px,.8fr) minmax(0,1.2fr); gap: clamp(42px,7vw,96px); align-items: stretch; }
.company-directory__feature { position: relative; overflow: hidden; min-height: 650px; border-radius: 8px 8px 44px 8px; color: #fff; text-decoration: none; }
.company-directory__feature::after { position: absolute; inset: 30% 0 0; background: linear-gradient(transparent,rgba(4,20,34,.94)); content: ""; }
.company-directory__feature img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.company-directory__feature:hover img { transform: scale(1.025); }
.company-directory__feature > span { position: absolute; z-index: 2; right: 30px; bottom: 30px; left: 30px; display: grid; }
.company-directory__feature small { color: rgba(255,255,255,.7); font-size: .7rem; font-weight: 800; }
.company-directory__feature strong { max-width: 500px; margin: 9px 0 22px; font-family: var(--eco-display); font-size: 2.7rem; line-height: 1; }
.company-directory__feature b { display: inline-flex; align-items: center; gap: 8px; font-size: .75rem; }
.company-directory__feature svg { width: 16px; }
.company-directory__links { border-top: 1px solid var(--company-line); }
.company-directory__links > a { display: grid; grid-template-columns: 34px minmax(0,1fr) 20px; gap: 18px; align-items: center; min-height: 130px; padding: 22px 4px; border-bottom: 1px solid var(--company-line); color: var(--company-ink); text-decoration: none; }
.company-directory__links > a:hover strong { color: var(--company-blue); }
.company-directory__links > a > svg { width: 22px; color: var(--company-blue); }
.company-directory__links > a > svg:last-child { width: 17px; color: var(--company-ink); }
.company-directory__links span { display: grid; }
.company-directory__links small { color: var(--company-muted); font-size: .66rem; font-weight: 800; }
.company-directory__links strong { margin: 3px 0; font-family: var(--eco-display); font-size: 1.75rem; line-height: 1; }
.company-directory__links p { margin: 0; color: var(--company-muted); font-size: .76rem; }

@media (max-width: 991.98px) {
  .company-subnav__inner { display: block; padding-inline: 0; }
  .company-subnav__label { display: none; }
  .company-subnav__links { min-height: 68px; }
  .company-subnav__links a { padding-inline: 20px; }
  .company-choice-rows span { grid-template-columns: 100px 1fr; }
  .company-choice-rows b { grid-column: 2; }
  .company-system__inner,.company-ops-grid,.company-flow__layout,.company-directory { grid-template-columns: 1fr; }
  .company-system__number { min-height: 190px; }
  .company-system__copy h2 { font-size: 4rem; }
  .company-flow header { position: static; }
  .company-directory__feature { min-height: 520px; }
  .company-path-band .eco-container { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .sp-hero__watermark { top: 24px; left: 20px; font-size: 4.8rem; }
  .sp-hero__signals { display: grid; gap: 10px; margin-top: 24px; padding-top: 18px; }
  .company-subnav__links a { min-width: 142px; flex-direction: column; gap: 4px; padding-inline: 14px; font-size: .72rem; }
  .company-system { padding: 70px 0; }
  .company-system__number { min-height: 150px; padding-left: 24px; }
  .company-system__number strong { font-size: 7rem; }
  .company-system__copy h2 { font-size: 3.2rem; }
  .company-system__copy nav { grid-template-columns: 1fr; }
  .company-system__copy nav a:nth-child(odd) { margin-right: 0; }
  .company-choice-rows { margin-top: 48px; }
  .company-choice-rows > a { grid-template-columns: 34px minmax(0,1fr) 18px; gap: 14px; }
  .company-choice-rows span { display: grid; grid-template-columns: 1fr; gap: 4px; }
  .company-choice-rows b { grid-column: auto; margin-top: 6px; }
  .company-choice-rows strong { font-size: 1.55rem; }
  .company-ops-grid { margin-top: 52px; padding-top: 38px; }
  .company-flow { padding: 76px 0; }
  .company-flow__stages article { grid-template-columns: 32px minmax(0,1fr); gap: 16px; }
  .company-flow__stages article > svg { display: none; }
  .company-path-band .eco-container > div { grid-template-columns: 1fr; border-top: 1px solid var(--company-line); border-left: 0; }
  .company-path-band a { border-bottom: 1px solid var(--company-line); border-right: 0; padding-inline: 6px; }
  .company-directory__feature { min-height: 480px; }
  .company-directory__feature strong { font-size: 2.15rem; }
  .company-directory__links > a { min-height: 120px; }
}
/* Helpful 404 route */
.not-found-stage {
  position: relative;
  min-height: calc(100vh - 120px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(76px, 10vw, 138px) 0;
  background: #fff;
}

.not-found-stage::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(239, 245, 250, 0), #eef4f8);
  pointer-events: none;
}

.not-found-stage__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .72fr);
  align-items: center;
  gap: clamp(48px, 7vw, 110px);
}

.not-found-stage__copy { position: relative; }
.not-found-stage__code {
  position: absolute;
  top: -74px;
  left: -8px;
  z-index: -1;
  color: #edf3f7;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(8rem, 18vw, 15rem);
  font-weight: 900;
  line-height: .72;
}

.not-found-stage h1 {
  max-width: 760px;
  margin: 15px 0 0;
  color: #071d33;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-weight: 800;
  line-height: .92;
}

.not-found-stage__copy > p {
  max-width: 640px;
  margin: 25px 0 0;
  color: #5e6d7d;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.75;
}

.not-found-stage__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
.not-found-stage__contact {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 0 18px;
  color: #071d33;
  border: 1px solid #d7e0e8;
  background: #fff;
}
.not-found-stage__contact:hover { color: #075ca8; border-color: #9db9d2; background: #f6f9fc; }
.not-found-stage__contact > svg { width: 18px; }
.not-found-stage__contact span { display: grid; }
.not-found-stage__contact small { color: #758292; font-size: .68rem; }
.not-found-stage__contact b { font-size: .82rem; }

.not-found-stage__routes { border-top: 3px solid #075ca8; background: #f4f7fa; }
.not-found-stage__routes > span {
  display: block;
  padding: 22px 24px 14px;
  color: #075ca8;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
}
.not-found-stage__routes a {
  min-height: 82px;
  display: grid;
  grid-template-columns: 24px 1fr 18px;
  align-items: center;
  gap: 14px;
  padding: 17px 24px;
  color: #071d33;
  border-top: 1px solid #dbe3ea;
}
.not-found-stage__routes a:hover { color: #075ca8; background: #fff; }
.not-found-stage__routes a > svg { width: 19px; }
.not-found-stage__routes a > svg:last-child { width: 16px; color: #8a98a7; }
.not-found-stage__routes div { display: grid; gap: 4px; }
.not-found-stage__routes strong { font-size: .94rem; }
.not-found-stage__routes small { color: #6b7887; font-size: .72rem; line-height: 1.45; }

@media (max-width: 991.98px) {
  .not-found-stage__grid { grid-template-columns: 1fr; }
  .not-found-stage__routes { max-width: 720px; }
}

@media (max-width: 575.98px) {
  .not-found-stage { padding: 96px 0 64px; }
  .not-found-stage__code { top: -40px; font-size: 8.5rem; }
  .not-found-stage h1 { font-size: 3.15rem; }
  .not-found-stage__actions, .not-found-stage__actions > a { width: 100%; }
  .not-found-stage__actions > a { justify-content: center; }
  .not-found-stage__routes a { padding-inline: 18px; }
}
