:root {
  --blue: #0f4c98;
  --blue-dark: #0a3a77;
  --blue-deep: #12335f;
  --blue-soft: #9dbce4;
  --tint: #eef3fa;
  --ink: #16202b;
  --body-c: #46525f;
  --muted: #7b8794;
  --line: #dde4ec;
  --max: 1320px;
  --gutter: 36px;
  --sans: "Titillium Web", "Segoe UI", Arial, sans-serif;
  --shadow: 0 16px 40px -18px rgba(16, 42, 80, .25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 17.5px;
  line-height: 1.72;
  color: var(--body-c);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, h4 { color: var(--ink); font-weight: 700; line-height: 1.18; }

::selection { background: rgba(15, 76, 152, .22); }

.shell { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.shell-narrow { max-width: 980px; margin: 0 auto; padding: 0 var(--gutter); }

.site-top {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  background: transparent;
  transition: background .3s, box-shadow .3s;
}

.site-top::after {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-dark), var(--blue) 55%, var(--blue-soft));
  opacity: 0;
  transition: opacity .3s;
}

.site-top .shell {
  max-width: 1560px;
  display: flex;
  align-items: center;
  gap: 34px;
  height: 82px;
  transition: height .3s;
}

.site-top.tight {
  background: #ffffff;
  box-shadow: 0 4px 22px rgba(16, 42, 80, .12);
}

.site-top.tight::after { opacity: 1; }

.site-top.tight .shell { height: 68px; }

.brand { display: flex; align-items: center; text-decoration: none; flex: 0 0 auto; }
.brand-logo { height: 46px; width: auto; display: block; }
.site-top .logo-white { display: none; }

body.has-hero .site-top:not(.tight) .logo-white { display: block; }
body.has-hero .site-top:not(.tight) .logo-color { display: none; }

.top-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }

.top-nav > a,
.top-nav .pd-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  padding: 9px 14px;
  transition: color .15s;
}

.top-nav > a:hover,
.top-nav .pd-toggle:hover { color: var(--blue); }

.top-nav > a.active,
.top-nav .has-panel.active .pd-toggle { color: var(--blue); box-shadow: inset 0 -3px 0 var(--blue); }

body.has-hero .site-top:not(.tight) .top-nav > a,
body.has-hero .site-top:not(.tight) .top-nav .pd-toggle { color: #fff; }
body.has-hero .site-top:not(.tight) .top-nav > a:hover,
body.has-hero .site-top:not(.tight) .top-nav .pd-toggle:hover { color: var(--blue-soft); }
body.has-hero .site-top:not(.tight) .top-nav > a.active { color: #fff; box-shadow: inset 0 -3px 0 #fff; }

.pd-toggle .chev { width: 10px; height: 6px; opacity: .6; transition: transform .2s; }
.has-panel.open .pd-toggle .chev { transform: rotate(180deg); }

.has-panel { position: relative; }

.pd-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 440px;
  background: #ffffff;
  border-top: 3px solid var(--blue);
  box-shadow: 0 24px 60px -18px rgba(16, 42, 80, .35);
  padding: 8px 10px 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s, transform .22s, visibility .22s;
}

.has-panel.open .pd-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

.pd-head { font-size: 12px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); padding: 10px 14px 9px; border-bottom: 1px solid var(--line); }

.pd-menu a { display: flex; align-items: center; gap: 15px; text-decoration: none; padding: 13px 14px; transition: background .15s; }
.pd-menu a + a { border-top: 1px solid var(--line); }
.pd-menu a:hover { background: var(--tint); }

.pd-ico {
  flex: 0 0 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tint);
  color: var(--blue);
  transition: background .15s, color .15s;
}

.pd-ico svg { width: 26px; height: 26px; }
.pd-menu a:hover .pd-ico { background: var(--blue); color: #fff; }

.pd-txt { min-width: 0; }
.pd-menu .t { display: block; font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.3; }
.pd-menu .s { display: block; font-size: 12.5px; color: var(--muted); line-height: 1.4; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.pd-go { margin-left: auto; flex: 0 0 16px; color: var(--blue); opacity: 0; transform: translateX(-6px); transition: opacity .18s, transform .18s; }
.pd-go svg { width: 16px; height: 16px; display: block; }
.pd-menu a:hover .pd-go { opacity: 1; transform: none; }

.pd-menu .pd-all { justify-content: space-between; background: var(--blue); margin-top: 8px; color: #fff; font-weight: 700; font-size: 14px; padding: 13px 16px; }
.pd-menu .pd-all:hover { background: var(--blue-dark); }
.pd-menu .pd-all .pd-go { color: #fff; opacity: 1; transform: none; }

.top-cta {
  margin-left: 12px;
  flex: 0 0 auto;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
  background: var(--blue);
  border: 1.5px solid transparent;
  padding: 11px 26px;
  border-radius: 2px;
  transition: background .15s, border-color .15s;
  white-space: nowrap;
}

.top-cta:hover { background: var(--blue-dark); }

body.has-hero .site-top:not(.tight) .top-cta { background: transparent; border: 1.5px solid rgba(255,255,255,.75); }
body.has-hero .site-top:not(.tight) .top-cta:hover { background: rgba(255,255,255,.14); }

.nav-btn { display: none; background: none; border: none; padding: 10px 2px; cursor: pointer; margin-left: auto; }
.nav-btn span { display: block; width: 26px; height: 2.5px; background: var(--ink); margin: 6px 0; transition: transform .2s, opacity .2s, background .2s; }
.nav-btn.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.nav-btn.open span:nth-child(2) { opacity: 0; }
.nav-btn.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 2px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}

.btn svg { width: 16px; height: 16px; flex: 0 0 auto; }

.btn-fill { background: var(--blue); color: #fff; }
.btn-fill:hover { background: var(--blue-dark); }

.btn-line { border-color: var(--blue); color: var(--blue); background: transparent; }
.btn-line:hover { background: var(--blue); color: #fff; }

.btn-white { background: #fff; color: var(--blue); }
.btn-white:hover { background: var(--tint); }

.btn-ghost-w { border-color: rgba(255,255,255,.8); color: #fff; }
.btn-ghost-w:hover { background: rgba(255,255,255,.15); }

.hero {
  position: relative;
  height: 84vh;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(6, 14, 26, .5) 0%, rgba(6, 14, 26, .22) 50%, rgba(6, 14, 26, .55) 100%);
}

.hero .shell { position: relative; z-index: 2; width: 100%; text-align: center; }

.hero h1 {
  color: #fff;
  font-size: clamp(34px, 4.2vw, 62px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.08;
  text-shadow: 0 4px 30px rgba(4, 10, 20, .5);
}

.intro-wrap { position: relative; z-index: 5; }

.intro-row { display: grid; grid-template-columns: 1fr 1fr; gap: 76px; align-items: start; }

.intro-card {
  margin-top: -130px;
  background: var(--blue);
  color: #fff;
  padding: 44px 48px 46px;
  box-shadow: 0 30px 70px -25px rgba(6, 20, 42, .55);
}

.intro-side { padding: 58px 0 30px; }
.intro-side p + p { margin-top: 14px; }
.intro-side .btn { margin-top: 26px; }

.intro-card h2 {
  color: #fff;
  font-size: clamp(21px, 1.9vw, 27px);
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: 4px;
}

.intro-card .sub { font-size: 15px; color: var(--blue-soft); margin-bottom: 20px; }
.intro-card > p:not(.sub) { font-size: 15.5px; color: rgba(255, 255, 255, .92); margin-bottom: 16px; }
.intro-card .btn { margin-top: 10px; }

.collage-row { display: grid; grid-template-columns: 1.1fr 1fr; gap: 76px; align-items: center; }

.collage { position: relative; padding: 0 72px 84px 0; }
.collage .c1 { width: 100%; height: auto; box-shadow: var(--shadow); }
.collage .c2 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 56%;
  height: auto;
  border: 8px solid #ffffff;
  box-shadow: 0 24px 55px -20px rgba(16, 42, 80, .4);
}

.sec-sub { font-size: 16px; color: var(--muted); margin: -12px 0 20px; }
.collage-txt p + p { margin-top: 14px; }
.collage-txt .btn { margin-top: 28px; }

.wide-head { position: relative; z-index: 6; padding-top: 40px; }

.wide-tab { display: flex; justify-content: center; }
.wide-tab h2 {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: clamp(20px, 2vw, 30px);
  text-transform: uppercase;
  letter-spacing: .03em;
  padding: 20px 42px;
  transform: translateY(34px);
  position: relative;
  z-index: 5;
  box-shadow: 0 18px 40px -18px rgba(6, 20, 42, .5);
  text-align: center;
}

.supply-bleed { padding-bottom: 0; }
.supply-bleed .supply-grid { margin: 0; gap: 6px; }
.supply-bleed .supply-card { min-height: 500px; }

.sector-pgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 52px; }

.sector-pcard {
  display: block;
  text-decoration: none;
  border: 1px solid var(--line);
  background: #ffffff;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

.sector-pcard:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-4px); }

.sector-pcard .ph { display: block; height: 230px; overflow: hidden; }
.sector-pcard .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.sector-pcard:hover .ph img { transform: scale(1.06); }

.sector-pcard .body { display: block; position: relative; padding: 34px 22px 26px; text-align: center; }

.sector-pcard .ic {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px -10px rgba(6, 20, 42, .5);
}

.sector-pcard .ic svg { width: 30px; height: 30px; }
.sector-pcard .t { display: block; font-size: 16px; font-weight: 700; color: var(--ink); line-height: 1.3; margin-bottom: 6px; }
.sector-pcard .s { display: block; font-size: 13.5px; color: var(--muted); line-height: 1.5; }

.section { padding: 96px 0; }
.section-tint { background: var(--tint); }

.sec-title {
  color: var(--blue);
  font-size: clamp(24px, 2.4vw, 34px);
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: 22px;
}

.sec-title.center { text-align: center; }

.sec-intro { max-width: 800px; font-size: 18px; margin-bottom: 20px; }

.sec-intro.center { margin-left: auto; margin-right: auto; text-align: center; }

.glance-row { display: grid; grid-template-columns: 1.3fr 1fr; gap: 64px; align-items: center; }

.glance-txt > p { max-width: 62ch; }
.glance-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 32px 0 32px; }

.glance-photo { align-self: stretch; }
.glance-photo img { width: 100%; height: 100%; min-height: 540px; object-fit: cover; box-shadow: var(--shadow); }

.glance-cell {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 28px 14px 24px;
  text-align: center;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

.glance-cell:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-3px); }
.glance-cell .gi { width: 54px; height: 54px; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; color: var(--blue); }
.glance-cell .gi svg { width: 52px; height: 52px; display: block; }
.glance-cell .n { font-size: 27px; font-weight: 700; color: var(--ink); line-height: 1.2; }
.glance-cell .n span { color: var(--blue); }
.glance-cell .t { font-size: 13.5px; color: var(--muted); margin-top: 2px; line-height: 1.45; }

.band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, var(--blue-dark) 0%, var(--blue) 45%, #6d94c4 100%);
  padding: 92px 0;
  color: #fff;
}

.band-deco { position: absolute; inset: 0; pointer-events: none; opacity: .35; }
.band-deco span {
  position: absolute;
  width: 260px; height: 260px;
  border: 1.5px solid rgba(255, 255, 255, .5);
  clip-path: polygon(0 0, calc(100% - 52px) 0, 100% 52px, 100% 100%, 0 100%);
}

.band-deco .d1 { right: -60px; top: -80px; }
.band-deco .d2 { right: 170px; bottom: -110px; width: 200px; height: 200px; }
.band-deco .d3 { left: -70px; bottom: 40px; width: 170px; height: 170px; }

.band .sec-title { color: #fff; text-align: center; margin-bottom: 44px; }

.know {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 34px;
  max-width: 1160px;
  margin: 0 auto;
  align-items: stretch;
}

.know-nav { display: flex; flex-direction: column; gap: 12px; }

.know-item {
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  font-family: var(--sans);
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .22);
  cursor: pointer;
  padding: 17px 20px 19px;
  overflow: hidden;
  transition: background .2s, border-color .2s;
}

.know-item:hover { background: rgba(255, 255, 255, .14); }
.know-item.active { background: rgba(255, 255, 255, .17); border-color: rgba(255, 255, 255, .55); }

.know-item .kt { display: block; font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; margin-bottom: 3px; }
.know-item .ks { display: block; font-size: 13.5px; color: rgba(255, 255, 255, .82); line-height: 1.45; }

.know-item .bar { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: rgba(255, 255, 255, .18); display: none; }
.know-item.active .bar { display: block; }
.know-item .bar span { display: block; height: 100%; width: 0; background: #ffffff; }
.know-item.active .bar span { animation: knowbar 5.2s linear forwards; }

@keyframes knowbar { from { width: 0; } to { width: 100%; } }

.know.paused .know-item.active .bar span { animation-play-state: paused; }

.know-stage {
  position: relative;
  min-height: 470px;
  background: var(--blue-deep);
  box-shadow: 0 30px 70px -25px rgba(5, 15, 30, .6);
  overflow: hidden;
}

.know-pane {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateX(26px);
  transition: opacity .45s, transform .45s, visibility .45s;
}

.know-pane.active { opacity: 1; visibility: visible; transform: none; }

.know-pane .ph { flex: 1; position: relative; overflow: hidden; }
.know-pane .ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.know-pane.is-map .ph { display: flex; align-items: center; justify-content: center; padding: 26px 30px 10px; }
.know-pane.is-map .ph img { position: static; width: 100%; height: 100%; object-fit: contain; }

.know-pane .cap { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 20px 26px; }
.know-pane .cap p { color: rgba(255, 255, 255, .9); font-size: 14.5px; line-height: 1.55; max-width: 56ch; }
.know-pane .cap .btn { flex: 0 0 auto; padding: 11px 20px; font-size: 14px; }

.supply-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin: 46px 0 42px; }

.supply-card {
  position: relative;
  display: block;
  text-decoration: none;
  overflow: hidden;
  min-height: 430px;
}

.supply-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s;
}

.supply-card:hover img { transform: scale(1.07); }

.supply-card .veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 25, 46, .08) 30%, rgba(8, 20, 38, .88) 100%);
  transition: background .3s;
}

.supply-card .sc-go {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  background: #ffffff;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .25s, transform .25s;
}

.supply-card .sc-go svg { width: 17px; height: 17px; }
.supply-card:hover .sc-go { opacity: 1; transform: none; }

.supply-card .sc-in { position: absolute; left: 22px; right: 22px; bottom: 22px; color: #fff; }
.supply-card .sc-in .ico { display: block; width: 40px; height: 40px; margin-bottom: 14px; color: #fff; }
.supply-card .sc-in .ico svg { width: 100%; height: 100%; }
.supply-card .sc-in h3 { color: #fff; font-size: 16.5px; text-transform: uppercase; letter-spacing: .03em; line-height: 1.25; margin-bottom: 5px; }
.supply-card .sc-in p { font-size: 13px; color: rgba(255, 255, 255, .85); line-height: 1.5; }

.range-wall { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin: 48px 0 40px; }

.range-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  text-decoration: none;
  border: 1px solid var(--line);
  padding: 34px 18px 30px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

.range-tile:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-4px); }
.range-tile .ico { width: 46px; height: 46px; color: var(--blue); }
.range-tile .ico svg { width: 100%; height: 100%; }
.range-tile .t { font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.3; }
.range-tile .s { font-size: 12.5px; color: var(--muted); line-height: 1.4; margin-top: -6px; }

.page-head {
  position: relative;
  padding: 150px 0 66px;
  background: linear-gradient(180deg, var(--tint), #ffffff);
  border-bottom: 1px solid var(--line);
}

.page-head .crumb { font-size: 13.5px; color: var(--muted); margin-bottom: 20px; }
.page-head .crumb a { text-decoration: none; }
.page-head .crumb a:hover { color: var(--blue); }
.page-head .crumb b { margin: 0 9px; font-weight: 400; }
.page-head h1 { color: var(--blue); font-size: clamp(32px, 3.7vw, 54px); text-transform: uppercase; letter-spacing: .02em; max-width: 24ch; margin-bottom: 18px; }
.page-head .lede { font-size: clamp(17px, 1.4vw, 20px); max-width: 68ch; }

.stat-band { padding: 0; background: var(--tint); border-bottom: 1px solid var(--line); }
.stat-band .grid { display: grid; grid-template-columns: repeat(4, 1fr); padding: 52px 0 48px; }
.stat-band .cell { padding: 6px 30px; border-left: 1px solid rgba(15, 76, 152, .18); text-align: center; }
.stat-band .cell:first-child { border-left: none; }
.stat-band .si { width: 46px; height: 46px; margin: 0 auto 14px; color: var(--blue); opacity: .85; }
.stat-band .si svg { width: 100%; height: 100%; }
.stat-band .n { font-size: clamp(42px, 4vw, 60px); font-weight: 700; color: var(--blue); line-height: 1.05; }
.stat-band .t { margin-top: 8px; font-size: 15px; color: var(--body-c); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }

.split-art img { width: 100%; height: auto; max-height: 480px; object-fit: cover; box-shadow: var(--shadow); }

.split h2 { font-size: clamp(26px, 2.7vw, 40px); color: var(--blue); text-transform: uppercase; letter-spacing: .02em; margin-bottom: 20px; }
.split p + p { margin-top: 15px; }

.check-list { margin-top: 26px; display: grid; gap: 12px; }
.check-list li { list-style: none; display: flex; gap: 13px; align-items: flex-start; font-size: 16.5px; }
.check-list li::before {
  content: "";
  flex: 0 0 16px;
  height: 16px;
  margin-top: 6px;
  background: var(--blue);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%);
}

.svc-rows { border-top: 1px solid var(--line); }

.svc-row {
  display: grid;
  grid-template-columns: 84px 1.1fr 1.6fr;
  gap: 44px;
  padding: 50px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.svc-row .idx { font-size: 17px; font-weight: 700; color: var(--blue); padding-top: 6px; }
.svc-row h3 { font-size: clamp(20px, 1.8vw, 26px); color: var(--blue); text-transform: uppercase; letter-spacing: .02em; margin-bottom: 6px; }
.svc-row .tag { font-size: 14px; color: var(--muted); }
.svc-row .body p { margin-bottom: 18px; }

.svc-points { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; margin-bottom: 22px; }
.svc-points li { list-style: none; font-size: 14.5px; padding: 9px 0 9px 20px; position: relative; border-bottom: 1px solid var(--line); }
.svc-points li::before { content: ""; position: absolute; left: 0; top: 17px; width: 8px; height: 8px; background: var(--blue); }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }

.step { padding: 34px 30px 38px; background: #ffffff; border: 1px solid var(--line); border-top: 3px solid var(--blue); }
.section-tint .step { background: #ffffff; }
.step .k { font-size: 13.5px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 14px; display: block; }
.step h3 { font-size: 18px; margin-bottom: 10px; }
.step p { font-size: 14.5px; color: var(--muted); line-height: 1.6; }

.sector-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.sector-card { background: #ffffff; border: 1px solid var(--line); padding: 38px 36px; transition: box-shadow .2s, transform .2s; }
.sector-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.sector-card h3 { font-size: 20px; color: var(--blue); text-transform: uppercase; letter-spacing: .02em; margin-bottom: 10px; }
.sector-card p { font-size: 15.5px; color: var(--body-c); }
.sector-card .tagrow { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.sector-card .tagrow span { font-size: 12.5px; color: var(--blue-dark); background: var(--tint); padding: 5px 12px; }

.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, var(--blue-dark), var(--blue));
  padding: 84px 0;
  color: #fff;
}

.cta-band .inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 50px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(24px, 2.6vw, 38px); text-transform: uppercase; letter-spacing: .02em; max-width: 22ch; }
.cta-band p { margin-top: 12px; max-width: 54ch; color: rgba(255, 255, 255, .9); }
.cta-band .row { display: flex; gap: 14px; flex-wrap: wrap; }

.range-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 8px; }

.range-card {
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue);
  padding: 30px 30px 28px;
  transition: box-shadow .2s, transform .2s;
}

.range-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.range-card h3 { font-size: 20px; color: var(--blue); margin-bottom: 8px; }
.range-card p { font-size: 16px; margin-bottom: 18px; }
.range-card .chips { display: flex; flex-wrap: wrap; gap: 8px; }
.range-card .chips span { font-size: 13px; font-weight: 600; color: var(--blue-dark); background: var(--tint); padding: 6px 13px; }

.svc-more { display: flex; justify-content: flex-end; margin-top: 8px; }

.addr-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  padding: 20px 26px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.addr-strip .pin { flex: 0 0 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: var(--tint); color: var(--blue); }
.addr-strip .pin svg { width: 28px; height: 28px; }
.addr-strip .addr-txt { flex: 1 1 320px; min-width: 0; }
.addr-strip .addr-txt b { display: block; font-size: 13px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 3px; }
.addr-strip .addr-txt span { font-size: 16.5px; color: var(--ink); line-height: 1.55; }
.addr-strip .btn { flex: 0 0 auto; padding: 11px 20px; font-size: 14px; }

.map-wrap { border: 1px solid var(--line); box-shadow: var(--shadow); line-height: 0; }
.map-wrap iframe { width: 100%; height: 440px; border: 0; }

.ct-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.ct-card {
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue);
  padding: 28px 28px 26px;
  transition: box-shadow .2s;
}

.ct-card:hover { box-shadow: var(--shadow); }
.ct-card .k { font-size: 13px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 10px; }
.ct-card .v { font-size: 16.5px; color: var(--ink); line-height: 1.6; }
.ct-card .v a { color: var(--blue); text-decoration: none; }
.ct-card .v a:hover { text-decoration: underline; }
.ct-card .v small { display: block; font-size: 13.5px; color: var(--muted); margin-top: 6px; }

.quote-sec {
  background: linear-gradient(115deg, var(--blue-dark) 0%, var(--blue) 60%, #2f6cb4 100%);
  padding: 0;
  overflow: hidden;
}

.quote-row { display: grid; grid-template-columns: 420px 1fr; gap: 74px; align-items: stretch; }

.quote-photo { position: relative; }
.quote-photo img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.quote-body { align-self: center; padding: 84px 0 84px; max-width: 680px; }
.quote-body .qmark { display: block; font-size: 130px; font-weight: 700; line-height: .1; height: 50px; color: #ffffff; opacity: .3; }
.quote-body blockquote { font-size: clamp(22px, 2.3vw, 31px); font-weight: 300; color: #ffffff; line-height: 1.5; letter-spacing: -0.005em; margin: 0 0 30px; }
.quote-body .q-by b { display: block; font-size: 17px; color: #ffffff; }
.quote-body .q-by span { font-size: 14.5px; color: rgba(255, 255, 255, .75); }
.quote-body .q-by::before { content: ""; display: block; width: 46px; height: 3px; background: rgba(255, 255, 255, .85); margin: 0 0 16px; }

.prose { max-width: 860px; }
.prose h2 { font-size: 23px; color: var(--blue); margin: 42px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 15px; }
.prose ul { margin: 0 0 15px 20px; }
.prose li { margin-bottom: 7px; }
.prose .updated { font-size: 13.5px; color: var(--muted); margin-bottom: 36px; }
.prose a { color: var(--blue); }

.range-list { border-top: 1px solid var(--line); margin-top: 8px; }
.range-item { display: grid; grid-template-columns: 1fr 2fr; gap: 36px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.range-item h3 { font-size: 19.5px; color: var(--blue); }
.range-item p { font-size: 16px; color: var(--body-c); }

.footer-main { background: var(--blue); color: #fff; padding: 74px 0 0; }

.foot-grid { display: grid; grid-template-columns: 1.45fr .95fr .9fr .65fr 1.15fr; gap: 44px; padding-bottom: 64px; }

.foot-brand .brand-logo { height: 52px; }
.foot-brand > p { font-size: 14.5px; color: rgba(255, 255, 255, .82); line-height: 1.65; max-width: 40ch; margin: 20px 0 28px; }
.foot-cta { padding: 12px 24px; font-size: 14px; }

.foot-col .h {
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 22px;
}

.foot-col .h::after { content: ""; display: block; width: 34px; height: 3px; background: rgba(255, 255, 255, .4); margin-top: 10px; }

.foot-col a { display: block; font-size: 14.5px; color: rgba(255, 255, 255, .78); text-decoration: none; margin-bottom: 11px; transition: color .15s, transform .15s; }
.foot-col a:hover { color: #fff; transform: translateX(3px); }

.foot-touch .fc-l { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: rgba(255, 255, 255, .55); margin: 16px 0 4px; }
.foot-touch .fc-l:first-of-type { margin-top: 0; }
.foot-touch a.fc-m { font-size: 15px; color: #fff; margin-bottom: 0; }
.foot-touch a.fc-m:hover { text-decoration: underline; transform: none; }
.foot-touch .fc-v { font-size: 14.5px; color: rgba(255, 255, 255, .82); line-height: 1.6; }

.foot-bar { background: var(--blue-dark); padding: 20px 0; }
.foot-bar .shell { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; }
.foot-bar p { font-size: 13px; color: rgba(255, 255, 255, .75); }
.foot-bar .fb-addr { color: rgba(255, 255, 255, .6); }
.foot-bar a { color: rgba(255, 255, 255, .75); text-decoration: none; margin-right: 22px; font-size: 13px; }
.foot-bar a:hover { color: #fff; }

.ck-bar {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 500;
  background: #ffffff;
  box-shadow: 0 -8px 30px rgba(16, 42, 80, .18);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  visibility: hidden;
  transition: transform .4s, visibility .4s;
}

.ck-bar.show { transform: none; visibility: visible; }

.ck-bar .shell {
  max-width: 1180px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.ck-bar p { font-size: 13.5px; color: var(--body-c); line-height: 1.5; }
.ck-bar p a { color: var(--blue); font-weight: 600; text-decoration: none; white-space: nowrap; }
.ck-bar p a:hover { text-decoration: underline; }
.ck-bar .ck-btns { margin-left: auto; display: flex; gap: 10px; flex: 0 0 auto; }
.ck-bar .btn { padding: 9px 22px; font-size: 13.5px; }

html.js [data-animate] { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
html.js [data-animate].in { opacity: 1; transform: none; }
html.js [data-animate][data-delay="1"] { transition-delay: .1s; }
html.js [data-animate][data-delay="2"] { transition-delay: .2s; }
html.js [data-animate][data-delay="3"] { transition-delay: .3s; }
html.js [data-animate] { animation: forceIn 0s 3.8s forwards; }

@keyframes forceIn { to { opacity: 1; transform: none; } }

@keyframes pageEnter { from { opacity: 0; } to { opacity: 1; } }
@keyframes pageLeave { from { opacity: 1; } to { opacity: 0; } }

body { animation: pageEnter .5s ease; }
body.leaving { animation: pageLeave .28s ease forwards; }

@media (max-width: 1100px) {
  .range-wall { grid-template-columns: repeat(3, 1fr); }
  .supply-grid { grid-template-columns: repeat(3, 1fr); }
  .supply-card { min-height: 340px; }
  .svc-row { grid-template-columns: 64px 1fr; }
  .svc-row .body { grid-column: 2; }
  .steps { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 44px; }
  .know { grid-template-columns: 1fr; }
  .know-nav { flex-direction: row; flex-wrap: wrap; }
  .know-item { flex: 1 1 calc(50% - 6px); }
  .know-stage { min-height: 430px; }
}

@media (max-width: 900px) {
  :root { --gutter: 24px; }
  .split { grid-template-columns: 1fr; gap: 44px; }
  .stat-band .grid { grid-template-columns: 1fr 1fr; }
  .stat-band .cell:nth-child(n+3) { border-top: 1px solid var(--line); }
  .sector-grid { grid-template-columns: 1fr; }
  .range-item { grid-template-columns: 1fr; gap: 8px; }
  .range-grid { grid-template-columns: 1fr; }
  .ct-grid { grid-template-columns: 1fr; }
  .map-wrap iframe { height: 300px; }
  .svc-more { justify-content: flex-start; }
}

@media (max-width: 860px) {
  .site-top { background: #fff; box-shadow: 0 4px 22px rgba(16, 42, 80, .12); }
  .site-top::after { opacity: 1; }
  .site-top .shell { height: 70px; gap: 16px; }
  body.has-hero .site-top:not(.tight) .logo-white { display: none; }
  body.has-hero .site-top:not(.tight) .logo-color { display: block; }
  body.has-hero .site-top:not(.tight) .nav-btn span { background: var(--ink); }
  .brand-logo { height: 38px; }
  body.has-hero .site-top:not(.tight) .top-nav > a,
  body.has-hero .site-top:not(.tight) .top-nav .pd-toggle { color: var(--ink); }
  .nav-btn { display: block; }
  .top-cta { display: none; }

  .top-nav {
    position: fixed;
    top: 70px;
    left: 0; right: 0;
    bottom: 0;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 40px;
    gap: 2px;
    margin: 0;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .3s;
  }

  .top-nav.open { transform: none; }

  .top-nav > a, .top-nav .pd-toggle { font-size: 17px; padding: 14px 8px; border-bottom: 1px solid var(--line); width: 100%; justify-content: space-between; }
  .top-nav > a.active { box-shadow: none; color: var(--blue); }

  .has-panel { width: 100%; }
  .pd-menu { position: static; width: 100%; border-top: none; box-shadow: none; padding: 0 0 8px; opacity: 1; visibility: visible; display: none; }
  .has-panel.open .pd-menu { display: block; transform: none; }
  .pd-menu .s { white-space: normal; }
  .pd-head { display: none; }

  .hero { height: 64vh; min-height: 380px; }
  .intro-row { grid-template-columns: 1fr; gap: 8px; }
  .intro-card { margin-top: -60px; padding: 30px 24px 34px; }
  .intro-side { padding: 36px 0 0; }
  .collage-row { grid-template-columns: 1fr; gap: 50px; }
  .collage { padding: 0 40px 50px 0; }
  .wide-tab h2 { transform: translateY(22px); padding: 15px 24px; }
  .supply-bleed .supply-card { min-height: 300px; }
  .sector-pgrid { grid-template-columns: 1fr; gap: 14px; }
  .glance-row { grid-template-columns: 1fr; gap: 44px; }
  .glance-photo img { min-height: 300px; }
  .glance-tiles { grid-template-columns: 1fr 1fr; }
  .section { padding: 64px 0; }
  .page-head { padding: 122px 0 48px; }
  .band { padding: 60px 0; }
  .cta-band { padding: 56px 0; }
  .glance-cell { padding: 24px 12px 20px; }
  .range-wall { grid-template-columns: 1fr 1fr; }
  .supply-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .supply-card { min-height: 260px; }
  .know-nav { flex-direction: column; }
  .know-item { flex: 1 1 auto; }
  .know-stage { min-height: 400px; }
  .know-pane .cap { flex-direction: column; align-items: flex-start; gap: 14px; padding: 16px 18px 20px; }
  .quote-row { grid-template-columns: 1fr; gap: 0; }
  .quote-photo img { min-height: 0; height: 340px; }
  .quote-body { padding: 40px 0 48px; }
  .steps { grid-template-columns: 1fr; }
  .svc-row { grid-template-columns: 1fr; gap: 8px; padding: 36px 0; }
  .svc-row .body { grid-column: 1; }
  .svc-points { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 36px; }
  .foot-bar .shell { flex-direction: column; align-items: flex-start; }

  .ck-bar .shell { flex-direction: column; align-items: stretch; gap: 12px; }
  .ck-bar .ck-btns { margin-left: 0; }
  .ck-bar .btn { flex: 1; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body { animation: none; }
  html.js [data-animate] { opacity: 1; transform: none; transition: none; animation: none; }
  .hero-video { display: none; }
  .hero { background: url('/assets/img/hero-poster.jpg') center/cover; }
  .know-item.active .bar span { animation: none; width: 100%; }
  .know-pane { transition: none; }
}
