@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/montserrat-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/montserrat-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  --blue: #0B2D5C;
  --navy: #091B33;
  --gold: #D4A017;
  --gold-ink: #765500;
  --gold-bright: #EBC453;
  --gold-soft: #FBF5E4;
  --grey: #F2F4F7;
  --warm-white: #FBFAF7;
  --white: #FFFFFF;
  --ink: #14243A;
  --muted: #5E6B7C;
  --line: #DCE2E9;
  --soft-blue: #E8EEF6;
  --shadow: 0 18px 50px rgba(9, 27, 51, .10);
  --wrap: 1160px;
  --radius: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--grey);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  margin: 0;
  padding-bottom: 0;
}
body, button, a { -webkit-font-smoothing: antialiased; }
a { color: inherit; }
img, svg { display: block; }
button, summary { font: inherit; }
:focus-visible { outline: 3px solid var(--navy); outline-offset: 4px; }
.page-hero :focus-visible,
.section-navy :focus-visible,
.handover-band :focus-visible,
.legal-hero :focus-visible,
.contact-panel :focus-visible,
.mobile-cta :focus-visible { outline-color: var(--gold-bright); }
.sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.skip-link {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  left: 14px;
  padding: 10px 16px;
  position: fixed;
  top: -60px;
  z-index: 100;
}
.skip-link:focus { top: 14px; }
.wrap { margin: 0 auto; width: min(var(--wrap), calc(100% - 56px)); }
.site-body [id] { scroll-margin-top: 96px; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 {
  font-family: "Montserrat", sans-serif;
  letter-spacing: -.045em;
  line-height: 1.08;
}
h1 { color: var(--white); font-size: clamp(2.75rem, 6vw, 5.5rem); margin-bottom: 24px; max-width: 800px; }
h2 { font-size: clamp(2.15rem, 4vw, 3.7rem); margin-bottom: 16px; }
h3 { font-size: 1.2rem; margin-bottom: 10px; }
h4 { font-size: 1rem; margin-bottom: 8px; }
.eyebrow {
  color: var(--gold-ink);
  font-family: "Montserrat", sans-serif;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .18em;
  margin: 0 0 14px;
  text-transform: uppercase;
}
.section-intro { color: var(--muted); margin-bottom: 0; max-width: 540px; }
section { padding: clamp(76px, 10vw, 124px) 0; }
.section-light { background: var(--white); }
.section-warm { background: var(--warm-white); border-top: 1px solid var(--line); }
.section-grey { background: var(--grey); }
.section-navy {
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  position: relative;
}
.section-navy::after {
  border: 1px solid rgba(212, 160, 23, .32);
  content: "";
  height: 470px;
  position: absolute;
  right: -215px;
  top: -240px;
  transform: rotate(42deg);
  width: 470px;
}
.section-navy > .wrap { position: relative; z-index: 1; }

/* Shared navigation */
.site-header {
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(9, 27, 51, .10);
  position: sticky;
  top: 0;
  z-index: 20;
}
.header-inner { align-items: center; display: flex; gap: 28px; justify-content: space-between; min-height: 78px; }
.brand { align-items: center; display: inline-flex; flex: 0 0 auto; text-decoration: none; }
.brand-logo { display: block; height: auto; width: 190px; }
.nav { align-items: center; display: flex; flex: 0 0 auto; flex-wrap: nowrap; gap: clamp(17px, 2.7vw, 34px); font-size: .8rem; font-weight: 700; }
.nav a { text-decoration: none; }
.nav a:not(.button) { color: #334257; transition: color .2s ease; }
.nav a:not(.button):hover { color: var(--blue); }
.nav > a, .nav-services-toggle, .nav .button { white-space: nowrap; }
.nav-services { align-items: center; display: flex; flex: 0 0 auto; position: relative; }
.nav-services-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  color: #334257;
  cursor: pointer;
  display: inline-flex;
  gap: 8px;
  height: 44px;
  justify-content: center;
  margin: 0;
  min-width: 44px;
  padding: 0 10px;
  transition: background .2s ease, color .2s ease;
}
.nav-services-toggle:hover, .nav-services-toggle:focus-visible, .nav-services.is-open .nav-services-toggle { background: var(--soft-blue); color: var(--blue); }
.nav-services-chevron {
  border-bottom: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  height: 7px;
  transform: rotate(45deg) translate(-1px, -1px);
  transition: transform .2s ease;
  width: 7px;
}
.nav-services.is-open .nav-services-chevron { transform: rotate(225deg) translate(-1px, -1px); }
.services-menu {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  left: 0;
  padding: 8px;
  position: absolute;
  top: calc(100% + 12px);
  width: min(420px, calc(100vw - 32px));
  z-index: 40;
}
.services-menu[hidden] { display: none; }
.services-menu-list { display: grid; gap: 2px 8px; grid-auto-rows: minmax(48px, auto); grid-template-columns: repeat(2, minmax(0, 1fr)); list-style: none; margin: 0; padding: 0; }
.services-menu a {
  align-items: center;
  color: var(--navy);
  display: flex;
  font-size: .78rem;
  font-weight: 700;
  min-height: 44px;
  padding: 10px 12px;
  text-decoration: none;
  transition: background .2s ease, box-shadow .2s ease, color .2s ease;
}
.services-menu a:hover, .services-menu a:focus-visible { background: var(--soft-blue); box-shadow: inset 3px 0 0 var(--gold); color: var(--blue); }
.services-menu-all { border-bottom: 1px solid var(--line); grid-column: 1 / -1; margin-bottom: 6px; }
.services-menu-list a { min-height: 48px; }
.services-menu-list a[aria-current="page"] {
  background: var(--gold-soft);
  box-shadow: inset 3px 0 0 var(--gold);
  color: var(--navy);
  font-family: "Montserrat", sans-serif;
  text-decoration: underline;
  text-decoration-color: var(--gold-ink);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.mobile-menu { display: none; position: relative; }
.mobile-menu summary {
  align-items: center;
  border: 1px solid var(--line);
  cursor: pointer;
  display: flex;
  font-size: .78rem;
  font-weight: 700;
  gap: 8px;
  justify-content: center;
  list-style: none;
  min-height: 44px;
  min-width: 64px;
  padding: 8px 12px;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.mobile-menu summary:hover, .mobile-menu summary:focus-visible, .mobile-menu[open] summary { background: var(--soft-blue); border-color: #AAB8C9; color: var(--navy); }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary::after {
  border-bottom: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  content: "";
  height: 6px;
  transform: rotate(45deg) translateY(-2px);
  width: 6px;
}
.mobile-menu[open] summary::after { transform: rotate(225deg) translate(-1px, -1px); }
.mobile-menu nav {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 0;
  max-height: calc(100vh - 150px - env(safe-area-inset-bottom));
  max-height: calc(100dvh - 150px - env(safe-area-inset-bottom));
  min-width: 235px;
  overflow-y: auto;
  padding: 6px;
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: min(360px, calc(100vw - 32px));
}
.mobile-menu nav a { align-items: center; display: flex; min-height: 44px; padding: 11px 12px; text-decoration: none; }
.mobile-menu nav a:not(.button) { color: var(--navy); transition: background .2s ease, box-shadow .2s ease, color .2s ease; }
.mobile-menu nav a:not(.button):hover, .mobile-menu nav a:not(.button):focus-visible { background: var(--soft-blue); box-shadow: inset 3px 0 0 var(--gold); color: var(--blue); }
.mobile-menu nav a[aria-current="page"]:not(.button) {
  background: var(--gold-soft);
  box-shadow: inset 3px 0 0 var(--gold);
  color: var(--navy);
  font-family: "Montserrat", sans-serif;
  text-decoration: underline;
  text-decoration-color: var(--gold-ink);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.mobile-menu nav > a:first-child:not(.button) { border-bottom: 1px solid var(--line); margin-bottom: 2px; }
.mobile-services-list {
  border-inline-start: 2px solid var(--gold);
  display: grid;
  gap: 2px;
  list-style: none;
  margin: 6px 0 8px;
  padding: 4px 0 4px 6px;
}
.mobile-services-list::before {
  color: var(--blue);
  content: "Services";
  font-family: "Montserrat", sans-serif;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .14em;
  padding: 4px 12px 2px;
  text-transform: uppercase;
}
.mobile-services-list a { min-height: 48px; }
.mobile-menu nav .button { margin-top: 6px; }

/* Buttons and conversion actions */
.button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-family: "Inter", sans-serif;
  font-size: .78rem;
  font-weight: 700;
  gap: 9px;
  justify-content: center;
  letter-spacing: .01em;
  min-height: 48px;
  padding: 12px 18px;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold); color: var(--navy); box-shadow: 0 8px 18px rgba(212, 160, 23, .20); }
.button-gold:hover { background: #E7B42C; box-shadow: 0 12px 24px rgba(212, 160, 23, .28); }
.button-dark { background: var(--navy); color: var(--white); }
.button-dark:hover { background: var(--blue); }
.button-outline { border-color: #AAB8C9; color: var(--navy); }
.button-outline:hover { background: var(--soft-blue); border-color: var(--blue); }
.button-light-outline { border-color: rgba(255, 255, 255, .4); color: var(--white); }
.button-light-outline:hover { background: rgba(255, 255, 255, .10); border-color: var(--white); }
.button-text { color: var(--blue); font-size: .75rem; font-weight: 800; padding: 4px 0; min-height: 0; }
.button-text:hover { color: var(--navy); transform: none; }

/* Hero */
.page-hero {
  background-color: var(--navy);
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px), radial-gradient(circle at 84% 17%, rgba(11,45,92,.95), transparent 36%);
  background-size: 44px 44px, 44px 44px, auto;
  color: var(--white);
  overflow: hidden;
  padding: clamp(78px, 11vw, 142px) 0 106px;
  position: relative;
}
.page-hero::before {
  border: 1px solid rgba(212, 160, 23, .42);
  content: "";
  height: 650px;
  position: absolute;
  right: -300px;
  top: -290px;
  transform: rotate(38deg);
  width: 650px;
}
.page-hero::after {
  background: var(--gold);
  content: "";
  height: 1px;
  left: 0;
  opacity: .8;
  position: absolute;
  top: 38%;
  transform: rotate(-23deg);
  transform-origin: left;
  width: 29vw;
}
.hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(42px, 8vw, 112px);
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  position: relative;
  z-index: 1;
}
.hero-copy { animation: rise-in .7s ease both; }
.hero-copy .eyebrow { color: var(--gold-bright); }
.hero-lede { color: #C9D5E4; font-size: clamp(1.05rem, 1.8vw, 1.22rem); line-height: 1.55; margin-bottom: 30px; max-width: 650px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-meta {
  align-items: center;
  color: #AABBD0;
  display: flex;
  flex-wrap: wrap;
  font-size: .7rem;
  font-weight: 600;
  gap: 13px;
  letter-spacing: .06em;
  margin-top: 28px;
  text-transform: uppercase;
}
.hero-meta span + span::before { color: var(--gold); content: "/"; margin-right: 13px; }
.hero-visual { animation: rise-in .7s .15s ease both; justify-self: end; max-width: 480px; width: 100%; }
.visual-frame {
  background: var(--blue);
  border: 1px solid rgba(255,255,255,.27);
  box-shadow: 22px 26px 0 rgba(212, 160, 23, .88);
  min-height: 420px;
  padding: 14px;
  position: relative;
}
.visual-frame::before, .visual-frame::after {
  border-color: rgba(255,255,255,.38);
  border-style: solid;
  content: "";
  height: 17px;
  position: absolute;
  width: 17px;
}
.visual-frame::before { border-width: 1px 0 0 1px; left: 7px; top: 7px; }
.visual-frame::after { border-width: 0 1px 1px 0; bottom: 7px; right: 7px; }
.visual-inner {
  background: linear-gradient(140deg, rgba(255,255,255,.10), transparent 58%);
  border: 1px solid rgba(255,255,255,.18);
  min-height: 390px;
  overflow: hidden;
  padding: 25px;
  position: relative;
}
.visual-top { align-items: center; color: #BFD0E3; display: flex; font-size: .62rem; font-weight: 700; justify-content: space-between; letter-spacing: .15em; text-transform: uppercase; }
.visual-top span:last-child { color: var(--gold-bright); }
.visual-service-title { color: var(--white); font-family: "Montserrat", sans-serif; font-size: clamp(1.7rem, 4vw, 2.45rem); letter-spacing: -.06em; line-height: 1; margin: 52px 0 13px; max-width: 290px; }
.visual-caption { color: #C7D5E5; font-size: .9rem; margin: 0; max-width: 270px; }
.visual-index { bottom: 34px; color: #9FB6D1; font-size: .58rem; letter-spacing: .15em; position: absolute; right: 25px; text-transform: uppercase; }
.visual-diagram { bottom: 63px; height: 105px; position: absolute; right: 27px; width: 225px; }
.visual-diagram::before { border: 1px solid rgba(255,255,255,.55); border-radius: 50%; content: ""; height: 102px; left: 62px; position: absolute; top: 0; width: 102px; }
.visual-diagram::after { background: var(--gold-bright); content: ""; height: 1px; left: 0; position: absolute; top: 51px; transform: rotate(-24deg); transform-origin: left; width: 220px; }
.visual-diagram .diagram-line { background: rgba(255,255,255,.55); height: 1px; left: 0; position: absolute; top: 51px; transform: rotate(24deg); transform-origin: left; width: 220px; }
.visual-diagram .diagram-node { background: var(--gold-bright); border: 4px solid var(--blue); border-radius: 50%; height: 16px; position: absolute; right: 28px; top: 44px; width: 16px; z-index: 1; }
.visual-diagram .diagram-node:nth-child(2) { background: #AFC3D9; height: 9px; left: 35px; top: 47px; width: 9px; }
.visual-diagram .diagram-node:nth-child(3) { background: var(--white); height: 9px; left: 112px; top: 18px; width: 9px; }
.visual-frame--power .visual-diagram::before { border-radius: 8px; transform: rotate(45deg); }
.visual-frame--network .visual-diagram::before { border-radius: 2px; height: 74px; top: 15px; transform: skewY(-20deg); }
.visual-frame--wifi .visual-diagram::before { border-radius: 50% 50% 6px 6px; height: 72px; top: 18px; }
.visual-frame--access .visual-diagram::before { border-radius: 0; height: 88px; top: 7px; width: 70px; }
.visual-frame--maintenance .visual-diagram::before { border-radius: 50%; border-style: dashed; }
.visual-frame--tv .visual-diagram::before { border-radius: 1px; height: 72px; top: 15px; width: 126px; }
.visual-frame--cctv .visual-diagram::before { border-radius: 2px; height: 42px; top: 30px; width: 70px; }

/* Breadcrumbs and page route */
.breadcrumb-wrap { background: var(--white); border-bottom: 1px solid var(--line); }
.breadcrumb { align-items: center; display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; min-height: 78px; padding: 18px 0; }
.breadcrumb li { color: var(--muted); font-size: .76rem; font-weight: 600; }
.breadcrumb li + li::before { color: var(--gold-ink); content: "/"; margin-right: 8px; }
.breadcrumb a { color: var(--blue); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; text-underline-offset: 4px; }
.breadcrumb [aria-current="page"] { color: var(--navy); font-family: "Montserrat", sans-serif; font-size: .72rem; letter-spacing: .04em; }

/* Common section headings */
.section-head { align-items: end; display: flex; gap: 30px; justify-content: space-between; margin-bottom: 42px; }
.section-head > div { max-width: 720px; }
.section-head .eyebrow { color: var(--blue); }
.section-navy .section-head .eyebrow { color: var(--gold-bright); }
.section-navy .section-intro { color: #B8C8D9; }
.section-navy h2 { color: var(--white); }
.section-navy .step { border-top-color: rgba(235,196,83,.72); }
.section-navy .step + .step { border-left-color: rgba(255,255,255,.25); }
.section-navy .step p { color: #B8C8D9; }

/* Small homepage anchors */
.assurance-strip { background: var(--white); border-bottom: 1px solid var(--line); }
.assurance-inner { align-items: center; display: flex; gap: 20px; justify-content: space-between; min-height: 92px; }
.assurance-label { color: var(--blue); font-family: "Montserrat", sans-serif; font-size: .68rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.assurance-inner ul { display: flex; flex-wrap: wrap; gap: 14px 28px; justify-content: flex-end; list-style: none; margin: 0; padding: 0; }
.assurance-inner li { align-items: center; color: var(--muted); display: flex; font-size: .78rem; font-weight: 600; gap: 8px; }
.assurance-inner li::before { background: var(--gold); content: ""; height: 6px; width: 6px; }
.feature-banner { align-items: center; display: flex; gap: 40px; justify-content: space-between; }
.feature-banner > div { max-width: 760px; }
.feature-banner h2 { margin-bottom: 10px; }
.feature-banner p:not(.eyebrow) { color: var(--muted); margin-bottom: 0; max-width: 720px; }
.pricing-side-note { align-self: end; border-left: 2px solid var(--gold); color: var(--muted); font-size: .85rem; max-width: 340px; padding-left: 18px; }
.pricing-side-note .eyebrow { margin-bottom: 8px; }
.pricing-side-note p:last-child { margin-bottom: 0; }
.surcharge-note { background: var(--gold-soft); border: 1px solid #E4D7B1; color: var(--navy); font-size: .82rem; line-height: 1.5; margin-top: 14px; padding: 17px 20px; }
.surcharge-note strong { font-family: "Montserrat", sans-serif; margin-right: 5px; }

/* Service cards and hub index */
.service-grid { display: grid; gap: 15px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 325px;
  padding: 25px;
  position: relative;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.service-card:hover { border-color: #91A8C2; box-shadow: var(--shadow); transform: translateY(-4px); }
.service-card:nth-child(2n) { background: var(--warm-white); }
.service-card-top { align-items: center; display: flex; gap: 13px; margin-bottom: 25px; }
.service-mark {
  align-items: center;
  background: var(--blue);
  color: var(--gold-bright);
  display: inline-flex;
  font-family: "Montserrat", sans-serif;
  font-size: .68rem;
  font-weight: 800;
  height: 34px;
  justify-content: center;
  letter-spacing: .08em;
  width: 34px;
}
.service-label { color: var(--blue); font-family: "Montserrat", sans-serif; font-size: .63rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.service-card h3 { margin-bottom: 12px; }
.service-card-title { color: var(--navy); text-decoration: none; }
.service-card-title:hover { color: var(--blue); text-decoration: underline; text-underline-offset: 5px; }
.service-card p { color: var(--muted); font-size: .88rem; margin-bottom: 17px; }
.service-card-price { align-items: baseline; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 7px; margin: auto 0 17px; padding-top: 15px; }
.service-card-price span { color: var(--muted); font-size: .67rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; width: 100%; }
.service-card-price strong { color: var(--blue); font-family: "Montserrat", sans-serif; font-size: 1.3rem; letter-spacing: -.04em; }
.service-card-price small { color: var(--muted); font-size: .72rem; }
.service-card-actions { align-items: center; display: flex; flex-wrap: wrap; gap: 15px; justify-content: space-between; }
.service-card-link { color: var(--blue); font-size: .76rem; font-weight: 800; text-decoration: none; }
.service-card-link::after { content: " →"; transition: margin .2s ease; }
.service-card-link:hover::after { margin-left: 4px; }
.service-card-actions .button { flex: 0 0 auto; }
.service-card-actions .button-text { color: var(--muted); font-weight: 700; }
.service-card-actions .button-text:hover { color: var(--blue); }
.hub-hero h1 { max-width: 720px; }
.hub-pricing { background: var(--grey); }
.hub-pricing .section-head { margin-bottom: 30px; }
.pricing-overview-card { background: var(--white); border: 1px solid var(--line); box-shadow: 0 8px 24px rgba(9,27,51,.06); padding: 10px 18px 18px; }
.pricing-overview-card .table-scroll { border: 0; }
.pricing-overview-card .price-table { min-width: 780px; }
.table-service-link { color: var(--blue); display: block; font-family: "Montserrat", sans-serif; font-size: .95rem; letter-spacing: -.03em; text-decoration: none; }
.table-service-link:hover { text-decoration: underline; text-underline-offset: 4px; }
.table-package-name { color: var(--muted); display: block; font-size: .75rem; font-weight: 500; margin-top: 5px; }

/* Pricing tables */
.pricing-section { background: var(--grey); }
.pricing-intro { align-items: start; display: grid; gap: clamp(34px, 7vw, 92px); grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr); }
.pricing-intro h2 { max-width: 510px; }
.pricing-intro .section-intro { max-width: 450px; }
.pricing-note { align-items: start; border-left: 2px solid var(--gold); color: var(--muted); display: flex; font-size: .76rem; gap: 10px; line-height: 1.5; margin: 27px 0 0; max-width: 440px; padding-left: 14px; }
.pricing-note strong { color: var(--navy); }
.price-groups { display: grid; gap: 48px; }
.price-group { border-top: 1px solid #C9D2DD; padding-top: 38px; }
.price-group:first-child { border-top: 0; padding-top: 0; }
.price-group-head { align-items: end; display: flex; gap: 28px; justify-content: space-between; margin-bottom: 25px; }
.price-group-head .eyebrow { color: var(--blue); margin-bottom: 8px; }
.price-group-head h3 { font-size: clamp(1.55rem, 2.6vw, 2.15rem); margin-bottom: 0; }
.price-group-meta { color: var(--muted); font-size: .82rem; max-width: 450px; text-align: right; }
.price-group-meta p { margin: 0 0 7px; }
.price-group-meta p:last-child { margin-bottom: 0; }
.price-qualification strong { color: var(--navy); }
.pricing-updated { color: var(--blue); font-family: "Montserrat", sans-serif; font-size: .68rem; font-weight: 700; letter-spacing: .06em; }
.table-scroll { -webkit-overflow-scrolling: touch; border: 1px solid var(--line); overflow-x: auto; position: relative; }
.table-scroll:focus-visible { outline: 3px solid var(--navy); outline-offset: 3px; }
.table-scroll-cue { align-items: center; background: var(--navy); color: var(--white); display: flex; font-size: .64rem; font-weight: 800; gap: 6px; justify-content: flex-end; letter-spacing: .08em; padding: 7px 12px; text-transform: uppercase; }
.table-scroll-cue span { color: var(--gold-bright); font-size: .88rem; line-height: 1; }
.price-table { background: var(--white); border-collapse: collapse; font-size: .78rem; margin: 0; min-width: 760px; width: 100%; }
.price-table caption { background: var(--warm-white); color: var(--navy); font-family: "Montserrat", sans-serif; font-size: .76rem; font-weight: 700; letter-spacing: -.02em; padding: 12px 14px; text-align: left; }
.price-table th, .price-table td { border-bottom: 1px solid var(--line); padding: 14px 12px; text-align: left; vertical-align: top; }
.price-table thead th { background: var(--soft-blue); color: var(--muted); font-size: .63rem; letter-spacing: .11em; text-transform: uppercase; }
.price-table tbody tr:last-child th, .price-table tbody tr:last-child td { border-bottom: 0; }
.price-table tbody th { color: var(--navy); font-family: "Montserrat", sans-serif; font-size: .87rem; letter-spacing: -.03em; min-width: 170px; width: 22%; }
.price-table thead th:nth-child(3), .price-table tbody td:nth-child(3) { min-width: 300px; }
.price-table tbody tr:hover { background: #FCFDFE; }
.table-price { color: var(--blue); min-width: 125px; white-space: nowrap; width: 125px; }
.table-price strong { display: block; font-family: "Montserrat", sans-serif; font-size: 1.08rem; letter-spacing: -.04em; }
.table-price span { color: var(--muted); font-size: .72rem; white-space: normal; }
.record-detail { color: var(--muted); font-size: .76rem; line-height: 1.5; margin-bottom: 8px; max-width: 530px; }
.record-detail:last-child { margin-bottom: 0; }
.record-detail strong { color: var(--navy); font-size: .65rem; letter-spacing: .07em; margin-right: 4px; text-transform: uppercase; }
.record-list { margin: 4px 0 0; padding-left: 18px; }
.record-list li + li { margin-top: 3px; }
.table-action { min-width: 145px; width: 145px; }
.table-action .button { white-space: nowrap; }

/* Scope, proof and handover */
.feature-grid, .outcome-grid { display: grid; gap: 15px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-card, .outcome-card {
  background: var(--grey);
  border: 1px solid var(--line);
  min-height: 218px;
  padding: 24px;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.feature-card:hover, .outcome-card:hover { border-color: #91A8C2; box-shadow: var(--shadow); transform: translateY(-4px); }
.feature-card.gold-edge { border-top: 3px solid var(--gold); padding-top: 22px; }
.feature-icon { color: var(--blue); height: 29px; margin-bottom: 28px; width: 29px; }
.feature-card h3, .outcome-card h3 { margin-bottom: 10px; }
.feature-card p, .outcome-card p { color: var(--muted); font-size: .87rem; margin: 0; max-width: 300px; }
.facts-panel { background: var(--blue); color: var(--white); margin-top: 15px; padding: 27px 30px; }
.facts-panel .eyebrow { color: var(--gold-bright); margin-bottom: 9px; }
.facts-panel h3 { font-size: clamp(1.35rem, 2.6vw, 2rem); margin-bottom: 7px; }
.facts-panel p { color: #C5D4E5; font-size: .85rem; margin: 0; max-width: 760px; }
.facts-panel strong { color: var(--white); }
.scope-variables { background: var(--warm-white); border-top: 1px solid var(--line); }
.variable-grid { display: grid; gap: 15px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.variable-card { border-left: 2px solid var(--gold); padding: 4px 0 4px 18px; }
.variable-card h3 { font-size: 1rem; margin-bottom: 8px; }
.variable-card p { color: var(--muted); font-size: .84rem; margin: 0; }
.handover-band { background: var(--navy); color: var(--white); overflow: hidden; position: relative; }
.handover-band::after { border: 1px solid rgba(212,160,23,.32); content: ""; height: 430px; position: absolute; right: -200px; top: -210px; transform: rotate(42deg); width: 430px; }
.handover-band > .wrap { position: relative; z-index: 1; }
.handover-layout { align-items: start; display: grid; gap: 44px; grid-template-columns: minmax(0, 1.05fr) minmax(250px, .95fr); }
.handover-band .eyebrow { color: var(--gold-bright); }
.handover-band h2 { max-width: 650px; }
.handover-band p { color: #B8C8D9; max-width: 650px; }
.handover-list { border-top: 1px solid rgba(255,255,255,.25); list-style: none; margin: 0; padding: 0; }
.handover-list li { border-bottom: 1px solid rgba(255,255,255,.25); color: #C5D4E5; font-size: .86rem; padding: 15px 0 15px 26px; position: relative; }
.handover-list li::before { color: var(--gold-bright); content: "✓"; font-weight: 800; left: 0; position: absolute; }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-bottom: 39px; }
.step { border-top: 2px solid var(--blue); padding: 23px 28px 8px 0; position: relative; }
.step + .step { border-left: 1px solid var(--line); padding-left: 28px; }
.step-number { color: var(--gold-ink); font-family: "Montserrat", sans-serif; font-size: .67rem; font-weight: 800; letter-spacing: .13em; }
.step h3 { margin-top: 24px; }
.step p { color: var(--muted); font-size: .87rem; margin-bottom: 0; max-width: 290px; }
.process-cta { align-items: center; background: var(--gold); display: flex; gap: 24px; justify-content: space-between; padding: 23px 28px; }
.process-cta p { color: var(--navy); font-size: .92rem; margin: 0; }

/* FAQ and related services */
.faq-layout { display: grid; gap: clamp(35px, 7vw, 90px); grid-template-columns: minmax(220px, .65fr) minmax(0, 1.35fr); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { align-items: center; color: var(--navy); cursor: pointer; display: flex; font-family: "Montserrat", sans-serif; font-size: 1rem; font-weight: 700; list-style: none; min-height: 44px; padding: 20px 38px 20px 0; position: relative; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { color: var(--gold-ink); content: "+"; font-family: "Montserrat", sans-serif; font-size: 1.3rem; position: absolute; right: 5px; top: 14px; }
.faq-list details[open] summary::after { content: "–"; }
.faq-answer { color: var(--muted); font-size: .86rem; max-width: 700px; padding: 0 30px 20px 0; }
.related-grid { display: grid; gap: 14px; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.related-card { background: var(--white); border: 1px solid var(--line); display: flex; flex-direction: column; min-height: 155px; padding: 20px; text-decoration: none; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.related-card:hover { border-color: #91A8C2; box-shadow: var(--shadow); transform: translateY(-3px); }
.related-card span { color: var(--gold-ink); font-family: "Montserrat", sans-serif; font-size: .64rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.related-card strong { color: var(--navy); font-family: "Montserrat", sans-serif; font-size: 1rem; letter-spacing: -.03em; margin-top: auto; }
.related-card strong::after { color: var(--blue); content: " →"; }

/* Contact and footer */
.contact { background: var(--grey); padding-top: 0; }
.contact-panel { align-items: center; background: var(--blue); color: var(--white); display: flex; gap: 40px; justify-content: space-between; overflow: hidden; padding: clamp(32px, 5vw, 58px); position: relative; }
.contact-panel::after { border: 1px solid rgba(255,255,255,.18); content: ""; height: 310px; position: absolute; right: -110px; top: -130px; transform: rotate(38deg); width: 310px; }
.contact-panel > * { position: relative; z-index: 1; }
.contact-panel .eyebrow { color: var(--gold-bright); }
.contact-panel h2 { max-width: 680px; }
.contact-panel p:not(.eyebrow) { color: #C5D4E5; margin-bottom: 0; max-width: 630px; }
.contact-action { align-items: flex-start; display: flex; flex: 0 0 auto; flex-direction: column; gap: 9px; }
.contact-action .button { white-space: nowrap; }
.contact-number { color: #D9E4EF; font-size: .79rem; font-weight: 600; letter-spacing: .04em; }
.site-footer { background: var(--white); border-top: 1px solid var(--line); color: var(--muted); font-size: .78rem; padding: 30px 0; }
.footer-grid { align-items: start; display: grid; gap: 30px; grid-template-columns: minmax(0, 1.4fr) minmax(190px, .7fr) minmax(180px, .6fr); }
.footer-brand p, .footer-contact p { margin: 0 0 8px; }
.footer-brand p:last-child, .footer-contact p:last-child { margin-bottom: 0; }
.footer-brand strong { color: var(--navy); }
.footer-logo { display: inline-block; height: 30px; margin-right: 8px; vertical-align: middle; width: auto; }
.footer-kicker { color: var(--blue); font-family: "Montserrat", sans-serif; font-size: .65rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-contact a, .footer-links a { color: var(--blue); font-weight: 700; text-decoration: none; }
.footer-contact a:hover, .footer-links a:hover { text-decoration: underline; text-underline-offset: 4px; }
.footer-links { display: grid; gap: 9px; justify-items: start; }
.mobile-cta { background: var(--navy); bottom: 0; display: none; left: 0; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); position: fixed; right: 0; z-index: 30; }
.mobile-cta .button { width: 100%; }

/* Legal and not-found pages */
.legal-hero { background: var(--navy); color: var(--white); padding: 74px 0 76px; }
.legal-hero h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); margin-bottom: 0; }
.legal-content { background: var(--white); }
.legal-layout { display: grid; gap: 45px; grid-template-columns: minmax(180px, .45fr) minmax(0, 1.55fr); }
.legal-aside { color: var(--muted); font-size: .78rem; }
.legal-aside strong { color: var(--blue); display: block; font-family: "Montserrat", sans-serif; font-size: .65rem; letter-spacing: .12em; margin-bottom: 8px; text-transform: uppercase; }
.legal-copy h2 { font-size: clamp(1.55rem, 2.8vw, 2.3rem); margin-top: 36px; }
.legal-copy h2:first-child { margin-top: 0; }
.legal-copy h3 { font-size: 1.1rem; margin-top: 28px; }
.legal-copy p, .legal-copy li { color: var(--muted); font-size: .9rem; }
.legal-copy ul { padding-left: 22px; }
.not-found { background: var(--warm-white); min-height: 58vh; }
.not-found h1 { color: var(--navy); }
.not-found h2 { max-width: 650px; }
.not-found p { color: var(--muted); max-width: 560px; }

@keyframes rise-in { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 980px) {
  .wrap { width: min(100% - 40px, 720px); }
  .hero-grid { gap: 64px; grid-template-columns: 1fr; }
  .hero-visual { justify-self: start; max-width: 560px; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing-intro, .handover-layout, .faq-layout, .legal-layout { grid-template-columns: 1fr; }
  .pricing-intro .section-intro, .pricing-note { max-width: 680px; }
  .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: minmax(0, 1.2fr) minmax(190px, .8fr); }
  .footer-links { grid-column: 1 / -1; display: flex; flex-wrap: wrap; }
}

@media (min-width: 721px) and (max-width: 980px) {
  .site-header .wrap { width: min(calc(100% - 24px), 1160px); }
  .header-inner { gap: 10px; }
  .brand-logo { width: 150px; }
  .nav { font-size: .72rem; gap: 10px; }
  .nav .button { gap: 6px; font-size: .72rem; padding-left: 12px; padding-right: 12px; }
  .services-menu { left: 50%; right: auto; transform: translateX(-50%); }
}

@media (max-width: 720px) {
  body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
  .wrap { width: min(100% - 32px, 580px); }
  .site-body [id] { scroll-margin-top: 82px; }
  .header-inner { min-height: 68px; }
  .nav { display: none; }
  .mobile-menu { display: block; }
  .brand-logo { width: 165px; }
  .page-hero { padding: 74px 0 84px; }
  .page-hero::after { top: 44%; width: 55vw; }
  .hero-visual { margin: 0 auto; max-width: 480px; }
  .visual-frame { box-shadow: 12px 16px 0 rgba(212, 160, 23, .88); min-height: 360px; }
  .visual-inner { min-height: 330px; }
  .visual-service-title { margin-top: 42px; }
  .breadcrumb { min-height: 0; padding: 18px 0; }
  section { padding: 76px 0; }
  .section-head, .price-group-head { align-items: flex-start; flex-direction: column; gap: 0; margin-bottom: 30px; }
  .price-group-meta { max-width: 650px; text-align: left; }
  .service-grid, .feature-grid, .outcome-grid, .variable-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .service-card-actions { justify-content: flex-start; }
  .assurance-inner { align-items: flex-start; flex-direction: column; padding: 24px 0; }
  .assurance-inner ul { justify-content: flex-start; }
  .feature-banner { align-items: flex-start; flex-direction: column; gap: 25px; }
  .feature-banner .button { width: 100%; }
  .pricing-overview-card { padding: 4px 10px 12px; }
  .process-grid { grid-template-columns: 1fr; }
  .step, .step + .step { border-left: 0; border-top: 1px solid var(--line); padding: 22px 0; }
  .step:first-child { border-top: 2px solid var(--blue); }
  .section-navy .step, .section-navy .step + .step { border-left: 0; border-top-color: rgba(255,255,255,.25); }
  .section-navy .step:first-child { border-top-color: rgba(235,196,83,.72); }
  .step h3 { margin-top: 14px; }
  .process-cta, .contact-panel { align-items: flex-start; flex-direction: column; }
  .contact-panel { gap: 26px; }
  .contact-action { width: 100%; }
  .contact-action .button { width: 100%; }
  .handover-layout { gap: 28px; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { grid-column: auto; }
  .mobile-cta { display: block; }
}

@media (max-width: 520px) {
  .hero-actions .button { width: 100%; }
  .visual-diagram { right: 10px; transform: scale(.86); transform-origin: right bottom; }
  .facts-panel, .contact-panel { padding: 24px 20px; }
  .service-card { padding: 21px; }
  .table-action .button { white-space: normal; }
  .price-table { font-size: .75rem; min-width: 700px; }
  .price-table th, .price-table td { padding: 12px 10px; }
  .price-table tbody th { min-width: 145px; }
  .price-table thead th:nth-child(3), .price-table tbody td:nth-child(3) { min-width: 270px; }
  .table-price { min-width: 112px; width: 112px; }
  .table-action { min-width: 130px; width: 130px; }
  .record-detail { font-size: .72rem; }
}

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