:root {
  color-scheme: light;
  --page: #f7f9fc;
  --surface: #ffffff;
  --text: #0a1833;
  --muted: #667085;
  --line: #dfe4ec;
  --blue: #0758e8;
  --blue-hover: #0049ca;
  --icon: #0758e8;
  --header-height: 92px;
  --shadow: 0 11px 28px rgba(10, 24, 51, 0.14);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --page: #08111f;
  --surface: #0d192b;
  --text: #f4f7fb;
  --muted: #aab6c8;
  --line: #263449;
  --blue: #4a8cff;
  --blue-hover: #6aa1ff;
  --icon: #5596ff;
  --shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  color: #fff;
  background: var(--text);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  height: var(--header-height);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease;
}

.header-inner {
  width: min(100% - 72px, 1596px);
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.wordmark {
  justify-self: start;
  width: 160px;
  height: 88px;
  display: flex;
  align-items: center;
}

.wordmark-logo {
  display: block;
  width: 100%;
  height: auto;
}

.wordmark-logo--dark {
  display: none;
}
html[data-theme="dark"] .wordmark-logo--light {
  display: none;
}
html[data-theme="dark"] .wordmark-logo--dark {
  display: block;
}

.wordmark:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.main-nav {
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: clamp(42px, 4.5vw, 76px);
}

.main-nav a {
  height: 100%;
  display: grid;
  place-items: center;
  position: relative;
  font-size: 1.03rem;
  font-weight: 650;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}
.main-nav a.active {
  color: var(--blue);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
}

.icon-button,
.language-button {
  border: 0;
  color: var(--text);
  background: transparent;
  cursor: pointer;
}

.icon-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.icon-button:hover,
.language-button:hover {
  background: color-mix(in srgb, var(--blue) 9%, transparent);
}

.theme-icon {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-icon-moon {
  display: none;
}
html[data-theme="dark"] .theme-icon-sun {
  display: none;
}
html[data-theme="dark"] .theme-icon-moon {
  display: block;
}

.action-divider {
  width: 1px;
  height: 36px;
  background: var(--line);
}
.language-selector {
  position: relative;
}

.language-button {
  min-width: 62px;
  height: 48px;
  padding: 0 8px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.language-button svg {
  width: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.language-button[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.flag {
  display: inline-block;
  width: 28px;
  height: 21px;
  flex: 0 0 auto;
  border-radius: 3px;
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 176px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s;
}

.language-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.language-menu a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 0.94rem;
}
.language-menu a:hover {
  color: var(--blue);
  background: color-mix(in srgb, var(--blue) 9%, transparent);
}
.language-menu .flag {
  width: 28px;
  height: 21px;
}

.hero {
  min-height: 598px;
  position: relative;
  background-color: #edf2f8;
  overflow: visible;
  z-index: 1;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.94) 22%,
    rgba(255, 255, 255, 0.58) 39%,
    rgba(255, 255, 255, 0) 59%
  );
  pointer-events: none;
}

html[data-theme="dark"] .hero {
  background-color: #0b1524;
}

html[data-theme="dark"] .hero-image {
  mix-blend-mode: luminosity;
}

html[data-theme="dark"] .hero-shade {
  background: linear-gradient(
    90deg,
    rgba(8, 17, 31, 0.98) 0%,
    rgba(8, 17, 31, 0.94) 24%,
    rgba(8, 17, 31, 0.66) 41%,
    rgba(8, 17, 31, 0.11) 66%,
    rgba(8, 17, 31, 0.2) 100%
  );
}

.hero-inner {
  width: min(100% - 136px, 1536px);
  min-height: 598px;
  margin: 0 auto;
  position: relative;
  padding-top: 82px;
  display: flex;
  flex-direction: column;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(900px, 70%);
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(3.4rem, 4.1vw, 4.55rem);
  line-height: 1.05;
  letter-spacing: -0.052em;
  font-weight: 800;
}

.hero h1 span {
  color: var(--blue);
}

.hero-copy > p {
  margin: 28px 0 34px;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.55;
}

.primary-button {
  width: fit-content;
  min-height: 58px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border-radius: 4px;
  color: #fff;
  background: var(--blue);
  font-size: 1.02rem;
  font-weight: 700;
  box-shadow: 0 9px 20px rgba(7, 88, 232, 0.13);
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.primary-button:hover {
  background: var(--blue-hover);
  transform: translateY(-2px);
}
.primary-button svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-highlights {
  position: relative;
  z-index: 5;
  width: 88%;
  margin: auto auto 0;
  transform: translateY(50%);
  min-height: 96px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease;
}

.highlight-item {
  min-width: 0;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 10px 30px;
  position: relative;
}

.highlight-item + .highlight-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: var(--line);
}

.highlight-item strong {
  font-size: 1.08rem;
  white-space: nowrap;
}
.highlight-icon {
  width: 54px;
  height: 54px;
  color: var(--icon);
  flex: 0 0 auto;
}
.highlight-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  stroke: none;
}
.highlight-icon--reliability svg {
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linejoin: round;
}
.highlight-icon text {
  fill: currentColor;
  stroke: none;
  font-size: 14px;
  font-weight: 800;
  font-family: inherit;
}

.services {
  background: var(--page);
  padding: 92px 0 68px;
  transition: background-color 0.25s ease;
}

.services-inner {
  width: min(100% - 108px, 1570px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.service-item {
  min-width: 0;
  display: grid;
  grid-template-columns: 104px 1fr;
  align-items: center;
  padding: 6px 36px;
  position: relative;
}

.service-item:first-child {
  padding-left: 0;
}
.service-item:last-child {
  padding-right: 0;
}
.service-item + .service-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 1px;
  background: var(--line);
}
.service-icon {
  width: 76px;
  height: 76px;
  color: var(--icon);
}
.service-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-icon {
  color: var(--blue);
}
.service-item h2 {
  margin: 0 0 9px;
  font-size: 1.08rem;
  line-height: 1.2;
}
.service-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.52;
}
.service-item p a:hover {
  color: var(--blue);
}
.service-item .email-link {
  color: var(--blue);
}

.site-footer {
  padding: 22px 36px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--surface);
  text-align: center;
  font-size: 0.85rem;
}

.site-footer p {
  margin: 0;
}

.content-page {
  width: min(100% - 72px, 1200px);
  min-height: 560px;
  margin: 0 auto;
  padding: 100px 0;
}

.content-page .eyebrow {
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.content-page h1 {
  max-width: 720px;
  margin: 16px 0 24px;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.content-page p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.6;
}

.privacy-page {
  width: min(100% - 72px, 920px);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 132px) 0;
}

.privacy-page__header {
  max-width: 760px;
  margin-bottom: 58px;
}

.privacy-page__header h1 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.privacy-page__header > p:last-child {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.terms-page__header {
  max-width: 960px;
  margin-bottom: 68px;
}

.terms-page__header h1 {
  max-width: 940px;
}

.terms-page__header .terms-page__subtext {
  max-width: 520px;
  margin-top: 22px;
  font-size: 1.12rem;
  line-height: 1.65;
}

.terms-page__header .terms-page__updated {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.privacy-page__content {
  max-width: 760px;
}

.privacy-page__content section {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.privacy-page__content h2 {
  margin: 0 0 16px;
  color: var(--text);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.15;
}

.privacy-page__content p,
.privacy-page__content li,
.privacy-page__content address {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.privacy-page__content p {
  margin: 0 0 16px;
}

.privacy-page__content p:last-child {
  margin-bottom: 0;
}

.privacy-page__content ul {
  margin: 0;
  padding-left: 1.25rem;
}

.privacy-page__content li + li {
  margin-top: 8px;
}

.privacy-page__content address {
  margin-top: 18px;
  font-style: normal;
}

.privacy-page__content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.privacy-page__content .terms-page__privacy-link {
  font-weight: 700;
  text-decoration: none;
}

.privacy-page__content .terms-page__privacy-link:hover,
.privacy-page__content .terms-page__privacy-link:focus-visible {
  color: var(--blue-hover);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

@media (max-width: 1250px) {
  .header-inner {
    width: min(100% - 40px, 1180px);
  }
  .main-nav {
    gap: 34px;
  }
  .hero-inner {
    width: min(100% - 70px, 1180px);
  }
  .services-inner {
    width: min(100% - 50px, 1180px);
    grid-template-columns: 1fr 1fr;
    row-gap: 52px;
  }
  .service-item:nth-child(3)::before {
    display: none;
  }
  .service-item:nth-child(3) {
    padding-left: 0;
  }
  .service-item:nth-child(2),
  .service-item:nth-child(4) {
    padding-right: 0;
  }
}

@media (max-width: 960px) {
  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
  .footer-bottom > * {
    width: 100%;
  }
  .footer-bottom__links {
    justify-content: center;
    flex-wrap: nowrap;
    white-space: nowrap;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 78px;
  }
  .content-page {
    width: calc(100% - 40px);
    padding: 64px 0;
  }
  .header-inner {
    grid-template-columns: 1fr auto;
    width: calc(100% - 32px);
  }
  .main-nav {
    display: none;
  }
  .wordmark {
    width: 136px;
    height: 74px;
  }
  .header-actions {
    gap: 8px;
  }
  .action-divider {
    height: 28px;
  }
  .hero {
    min-height: 710px;
  }
  .hero-image {
    object-position: 62% center;
  }
  .hero-shade {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.9) 47%,
      rgba(255, 255, 255, 0.15) 74%,
      rgba(255, 255, 255, 0.08) 100%
    );
  }
  html[data-theme="dark"] .hero-shade {
    background: linear-gradient(
      180deg,
      rgba(8, 17, 31, 0.98) 0%,
      rgba(8, 17, 31, 0.93) 46%,
      rgba(8, 17, 31, 0.33) 78%,
      rgba(8, 17, 31, 0.45) 100%
    );
  }
  .hero-inner {
    min-height: 710px;
    width: calc(100% - 40px);
    padding-top: 54px;
  }
  .hero-copy {
    width: 100%;
  }
  .hero h1 {
    font-size: clamp(2.65rem, 9vw, 4rem);
  }
  .hero-copy > p {
    font-size: 1rem;
  }
  .desktop-only {
    display: none;
  }
  .hero-highlights {
    width: 100%;
    margin: 180px 0 -112px;
    transform: none;
    grid-template-columns: 1fr;
    padding: 11px 18px;
  }
  .highlight-item {
    justify-content: flex-start;
    min-height: 58px;
    padding: 8px 20px;
  }
  .highlight-item + .highlight-item::before {
    left: 18px;
    right: 18px;
    top: 0;
    bottom: auto;
    width: auto;
    height: 1px;
  }
  .highlight-icon {
    width: 44px;
    height: 44px;
  }
  .services {
    padding-top: 164px;
  }
  .services-inner {
    width: calc(100% - 40px);
    grid-template-columns: 1fr;
    row-gap: 0;
  }
  .service-item,
  .service-item:first-child,
  .service-item:nth-child(3),
  .service-item:last-child {
    padding: 30px 0;
  }
  .service-item + .service-item::before,
  .service-item:nth-child(3)::before {
    display: block;
    left: 0;
    right: 0;
    top: 0;
    bottom: auto;
    width: auto;
    height: 1px;
  }
}

@media (max-width: 520px) {
  .wordmark {
    width: 112px;
    height: 62px;
  }
  .icon-button {
    width: 39px;
    height: 39px;
  }
  .theme-icon {
    width: 25px;
    height: 25px;
  }
  .language-button {
    min-width: 52px;
    padding: 0 4px;
  }
  .language-button svg {
    display: none;
  }
  .flag {
    width: 28px;
    height: 21px;
  }
  .hero {
    min-height: 660px;
  }
  .hero-inner {
    min-height: 660px;
    padding-top: 42px;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero-copy > p {
    margin: 22px 0 28px;
  }
  .primary-button {
    min-height: 54px;
    padding: 0 22px;
    gap: 18px;
  }
  .service-item {
    grid-template-columns: 82px 1fr;
  }
  .service-icon {
    width: 62px;
    height: 62px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Approved marketing pages */

:where(a, button, summary):focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.mobile-nav-toggle {
  display: none;
}

.menu-icon {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 10px 20px 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  display: block;
  padding: 14px 12px;
  border-radius: 8px;
  font-weight: 650;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--blue);
  background: color-mix(in srgb, var(--blue) 9%, transparent);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section {
  padding: clamp(76px, 8vw, 124px) 0;
  background: var(--page);
  transition: background-color 0.25s ease;
}

.section--surface {
  background: var(--surface);
}

.section--blue {
  color: #fff;
  background:
    radial-gradient(
      circle at 14% 0%,
      rgba(92, 151, 255, 0.36),
      transparent 36%
    ),
    linear-gradient(135deg, #064bc4, #07327f);
}

.section--blue .eyebrow {
  color: #bcd4ff;
}
.section-inner {
  width: min(100% - 72px, 1260px);
  margin: 0 auto;
}

.section h2,
.page-hero h1 {
  margin: 0;
  color: inherit;
  font-size: clamp(2.35rem, 4.5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section h3 {
  color: var(--text);
}
.section--blue h3 {
  color: #fff;
}

.section p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.section--blue p {
  color: #aab6c8;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}
.section-heading--wide {
  max-width: 870px;
}
.section-heading--extra-wide {
  max-width: 1040px;
}
.section-heading--copy-wide {
  max-width: 1260px;
}
.section-heading__full-text {
  max-width: none;
}
.section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.section-heading h2 + p {
  margin-top: 22px;
}
.section-heading p + p {
  margin-top: 10px;
}

.split {
  display: grid;
  gap: clamp(42px, 7vw, 100px);
  align-items: start;
}
.split--balanced {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}
.split--intro {
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
}
.split--history {
  grid-template-columns: 360px minmax(0, 1fr);
  align-items: center;
}
.split--faq {
  grid-template-columns: 330px minmax(0, 1fr);
}

.home-capacity .prose {
  padding-top: 32px;
}

.about-human-scale .prose {
  padding-top: 32px;
}

.service-area-band .prose {
  padding-top: 56px;
}

.service-area-band .split {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

.prose p {
  margin: 0 0 20px;
}
.prose p:last-child {
  margin-bottom: 0;
}
.prose--large p {
  font-size: 1.08rem;
}
.prose h2 {
  margin-bottom: 28px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.secondary-button {
  min-height: 58px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text);
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  font-weight: 700;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.secondary-button:hover {
  color: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
}

.secondary-button--rates:hover {
  border-color: var(--line);
}

.secondary-button--rates {
  gap: 28px;
}

.secondary-button--rates svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.secondary-button--light {
  color: #fff;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
}

.secondary-button--light:hover {
  color: #fff;
  border: 0;
}

.text-link {
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  font-weight: 750;
  transition: transform 0.2s ease;
}

.text-link svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.text-link:hover {
  transform: translateY(-2px);
}

.hero.home-hero {
  min-height: 690px;
  background-position: center center;
}

.home-hero .hero-shade {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.99) 0%,
    rgba(255, 255, 255, 0.94) 32%,
    rgba(255, 255, 255, 0.56) 51%,
    rgba(255, 255, 255, 0.04) 73%
  );
}

html[data-theme="dark"] .home-hero .hero-shade {
  background: linear-gradient(
    90deg,
    rgba(8, 17, 31, 0.99) 0%,
    rgba(8, 17, 31, 0.95) 33%,
    rgba(8, 17, 31, 0.7) 52%,
    rgba(8, 17, 31, 0.18) 76%,
    rgba(8, 17, 31, 0.3) 100%
  );
}

.home-hero .hero-inner {
  min-height: 690px;
  padding-top: clamp(72px, 8vw, 112px);
}

.home-hero .hero-copy {
  width: min(790px, 65%);
}

.home-hero .hero-copy > .eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 0.78rem;
  line-height: 1.3;
}

.home-hero .hero-copy > p:not(.eyebrow) {
  max-width: 690px;
  margin: 28px 0 34px;
}

.home-hero .hero h1 {
  max-width: 790px;
}
.home-hero .button-row {
  position: relative;
  z-index: 3;
}

.home-hero .secondary-button {
  border-color: rgba(10, 24, 51, 0.28);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
}

html[data-theme="dark"] .home-hero .secondary-button {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(8, 17, 31, 0.72);
}

.home-hero .hero-highlights {
  width: min(88%, 1080px);
}
.home-return {
  padding-top: 105px;
}

.home-return h2 span {
  display: block;
}

.home-return > .section-inner > .prose {
  margin-top: 48px;
}

.card-grid {
  display: grid;
  gap: 22px;
}

.card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.card-grid--services {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.icon-card,
.service-card,
.rate-card,
.sector-panel {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 8px 28px rgba(10, 24, 51, 0.06);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.icon-card {
  min-height: 100%;
  padding: 30px 27px;
}

.icon-card:hover,
.service-card:hover {
  border-color: color-mix(in srgb, var(--blue) 45%, var(--line));
  box-shadow: 0 16px 36px rgba(10, 24, 51, 0.11);
  transform: translateY(-4px);
}

.card-icon,
.small-icon,
.person-icon,
.panel-icon {
  display: inline-grid;
  place-items: center;
  color: var(--blue);
  background: color-mix(in srgb, var(--blue) 10%, transparent);
}

.card-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  border-radius: 14px;
}

.card-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-icon--filled svg {
  fill: currentColor;
  stroke: none;
}

.card-icon--filled svg {
  fill: currentColor;
  stroke: none;
}

.icon-card h3,
.service-card h3 {
  margin: 0 0 13px;
  font-size: 1.12rem;
  line-height: 1.32;
}

.icon-card p,
.service-card p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.65;
}

.card-grid--journey .icon-card {
  display: grid;
  grid-template-columns: 1fr 58px;
  column-gap: 16px;
  border: 0;
}

.card-grid--services .icon-card {
  display: grid;
  grid-template-columns: 1fr 58px;
  column-gap: 16px;
  border: 0;
}

.card-grid--journey .icon-card:hover {
  border: 0;
}

.card-grid--services .icon-card:hover {
  border: 0;
}

.card-grid--home-services .service-card,
.card-grid--home-services .service-card:hover {
  border: 0;
}

.card-grid--home-services .card-number {
  position: absolute;
  top: 18px;
  right: 24px;
  z-index: 0;
  margin: 0;
  color: color-mix(in srgb, var(--blue) 12%, transparent);
  font-size: clamp(3.8rem, 6vw, 5.4rem);
  font-weight: 850;
  line-height: 0.82;
  letter-spacing: -0.08em;
}

.card-grid--home-services .card-number::after {
  display: none;
}

.card-grid--home-services .service-card h3,
.card-grid--home-services .service-card p {
  position: relative;
  z-index: 1;
}

.card-grid--journey .card-icon {
  display: grid;
  place-items: center;
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  width: 58px;
  height: 58px;
  margin: 0;
  border-radius: 0;
  background: transparent;
}

.card-grid--services .card-icon {
  display: grid;
  place-items: center;
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  width: 58px;
  height: 58px;
  margin: 0;
  border-radius: 0;
  background: transparent;
}

.card-grid--journey .card-icon svg {
  width: 58px;
  height: 58px;
}

.card-grid--services .card-icon svg {
  width: 58px;
  height: 58px;
}

.card-grid--services .service-detail-card:nth-child(1) {
  grid-template-columns: 1fr 72px;
}

.card-grid--services .service-detail-card:nth-child(1) .card-icon,
.card-grid--services .service-detail-card:nth-child(1) .card-icon svg {
  width: 72px;
  height: 72px;
}

.card-grid--services .service-detail-card:nth-child(4) .card-icon,
.card-grid--services .service-detail-card:nth-child(4) .card-icon svg {
  width: 48px;
  height: 48px;
}

.card-grid--services .service-detail-card:not(.service-detail-card--wide) {
  grid-template-columns: 1fr 52px;
}

.card-grid--services .service-detail-card:nth-child(1) {
  grid-template-columns: 1fr 65px;
}

.card-grid--services .service-detail-card:nth-child(1) .card-icon,
.card-grid--services .service-detail-card:nth-child(1) .card-icon svg {
  width: 65px;
  height: 65px;
}

.card-grid--services .service-detail-card:nth-child(4) {
  grid-template-columns: 1fr 43px;
}

.card-grid--services .service-detail-card:nth-child(4) .card-icon,
.card-grid--services .service-detail-card:nth-child(4) .card-icon svg {
  width: 43px;
  height: 43px;
}

.card-grid--services .service-detail-card:nth-child(5) {
  grid-template-columns: 1fr 47px;
}

.card-grid--services .service-detail-card:nth-child(5) .card-icon,
.card-grid--services .service-detail-card:nth-child(5) .card-icon svg {
  width: 47px;
  height: 47px;
}

.card-grid--services .service-detail-card:nth-child(3),
.card-grid--services .service-detail-card:nth-child(6) {
  grid-template-columns: 1fr 47px;
}

.card-grid--services .service-detail-card:nth-child(3) .card-icon,
.card-grid--services .service-detail-card:nth-child(3) .card-icon svg,
.card-grid--services .service-detail-card:nth-child(6) .card-icon,
.card-grid--services .service-detail-card:nth-child(6) .card-icon svg {
  width: 47px;
  height: 47px;
}

.card-grid--journey h3 {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
}

.card-grid--services h3 {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
}

.card-grid--journey p {
  grid-column: 1 / -1;
  grid-row: 2;
}

.card-grid--services p {
  grid-column: 1 / -1;
  grid-row: 2;
}

.about-approach-grid .icon-card:nth-child(2) {
  grid-template-columns: 1fr 72px;
}

.about-approach-grid .icon-card:nth-child(2) .card-icon,
.about-approach-grid .icon-card:nth-child(2) .card-icon svg {
  width: 72px;
  height: 72px;
}

.service-card {
  padding: 30px 26px 28px;
  position: relative;
  overflow: hidden;
}

.card-number {
  display: block;
  margin-bottom: 30px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.card-number::after {
  content: "";
  display: inline-block;
  width: 38px;
  height: 1px;
  margin: 0 0 4px 12px;
  background: color-mix(in srgb, var(--blue) 35%, var(--line));
}

.service-detail-card--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
}

.service-detail-card--wide .card-icon {
  margin: 0;
}

.card-grid--services .service-detail-card--wide {
  grid-template-columns: 1fr 58px;
}

.card-grid--services .service-detail-card--wide .card-icon {
  grid-column: 2;
  grid-row: 1;
}

.card-grid--services .service-detail-card--wide > div {
  grid-column: 1;
  grid-row: 1;
}

.sector-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 100px;
  width: 100%;
  padding-left: 52px;
}

.sector-list article {
  position: relative;
  padding: 24px;
  border: 0;
  border-radius: 14px;
  background: var(--surface);
}

.small-icon {
  position: absolute;
  top: 50%;
  left: -64px;
  width: 58px;
  height: 58px;
  border-radius: 0;
  background: transparent;
  transform: translateY(-50%);
}

.small-icon svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.small-icon--filled svg {
  fill: currentColor;
  stroke: none;
}

.sector-list h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}
.sector-list p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
}

.home-sectors .sector-list {
  padding-top: 32px;
}

.location-block {
  width: min(100% - 72px, 1450px);
  grid-template-columns: minmax(0, 0.6fr) minmax(0, 1.4fr);
  align-items: center;
}

.location-map {
  width: calc(100% + 60px);
  overflow: hidden;
  min-height: 360px;
  border-radius: 4px;
  background: var(--surface);
}

.location-map iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
}

.location-block > div:last-child a {
  color: var(--blue);
  font-weight: 700;
}

.location-block > div:last-child a:hover,
.location-block > div:last-child a:focus-visible {
  color: var(--blue-hover);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.cta-panel {
  padding: clamp(36px, 6vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 60px;
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 20px;
  background: var(--page);
}

.cta-panel::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -120px;
  bottom: -160px;
  border: 50px solid color-mix(in srgb, var(--blue) 8%, transparent);
  border-radius: 50%;
  pointer-events: none;
}

.cta-panel h2 {
  max-width: 650px;
}
.cta-panel p {
  max-width: 680px;
}

.cta-panel .secondary-button:hover {
  border-color: var(--line);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  width: 70%;
  display: grid;
  gap: 16px;
}

.cta-buttons > a {
  width: 100%;
  box-sizing: border-box;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-weight: 700;
}
.contact-link svg {
  width: 19px;
  height: 19px;
  fill: var(--blue);
  stroke: none;
}
.contact-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.cta-actions address {
  margin-top: 5px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.65;
}
.cta-tagline {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-style: italic;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 82% 18%,
      color-mix(in srgb, var(--blue) 20%, transparent),
      transparent 24%
    ),
    linear-gradient(
      135deg,
      var(--surface),
      color-mix(in srgb, var(--blue) 7%, var(--page))
    );
  border-bottom: 1px solid var(--line);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: radial-gradient(
    color-mix(in srgb, var(--blue) 22%, transparent) 1px,
    transparent 1px
  );
  background-size: 26px 26px;
  pointer-events: none;
}

.page-hero__inner {
  width: min(100% - 72px, 1260px);
  min-height: 565px;
  margin: 0 auto;
  padding: 88px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 880px;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 26px 0 34px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.page-hero__mark {
  width: 290px;
  height: 290px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--blue);
  background: color-mix(in srgb, var(--surface) 72%, transparent);
  box-shadow: 0 26px 70px rgba(7, 88, 232, 0.13);
}

.page-hero__mark svg {
  width: 180px;
  height: 180px;
  fill: currentColor;
}

@media (min-width: 861px) {
  .page-hero__mark--truck::before {
    width: 250px;
    aspect-ratio: 3 / 2;
    background: url("../img/services-truck-light.1bc299a189f0.webp") center / contain no-repeat;
    content: "";
  }

  html[data-theme="dark"] .page-hero__mark--truck::before {
    background-image: url("../img/services-truck-dark.f967c29dc1ab.webp");
  }
}

.history-year {
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  text-align: center;
  border: 0;
  border-radius: 50%;
  color: var(--blue);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.history-year span {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.history-year strong {
  font-size: clamp(4rem, 8vw, 6.4rem);
  line-height: 1;
  letter-spacing: -0.07em;
}

.team-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(44px, 7vw, 90px);
  align-items: center;
}

.team-photo {
  margin: 0;
}

.team-photo img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

@media (hover: hover) and (pointer: fine) {
  .team-photo img {
    transition: transform 0.2s ease;
    transform-origin: center;
  }

  .team-photo img:hover {
    position: relative;
    z-index: 1;
    transform: scale(1.5);
  }
}

.team-photo figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.86rem;
  text-align: center;
}
.team-copy > h2 {
  margin-bottom: 34px;
}

.person-card {
  padding: 24px 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  border-top: 1px solid var(--line);
}

.person-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: transparent;
}

.person-icon svg {
  width: 42px;
  height: 42px;
  fill: currentColor;
}

.person-card h3 {
  margin: 0 0 7px;
  font-size: 1.08rem;
}
.person-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
}

.team-note {
  padding: 20px 22px;
  border-left: 3px solid var(--blue);
  border-radius: 0 10px 10px 0;
  background: color-mix(in srgb, var(--blue) 7%, var(--surface));
}

.team-note strong {
  color: var(--text);
}
.team-note p {
  margin: 7px 0 0;
  font-size: 0.9rem;
}

.priority-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.priority-grid div {
  min-height: 190px;
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.priority-grid div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.priority-grid strong {
  position: absolute;
  top: 22px;
  left: 32px;
  color: rgba(255, 255, 255, 0.2);
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 850;
  letter-spacing: -0.08em;
  line-height: 1;
}
.priority-grid span {
  position: relative;
  max-width: 290px;
  font-size: 1.22rem;
  font-weight: 750;
}
.priorities-note {
  max-width: 900px;
  margin: 28px auto 0;
  text-align: center;
}

.company-details dl {
  margin: 0;
  border-top: 1px solid var(--line);
}

.company-details dl div {
  padding: 18px 0;
  display: grid;
  grid-template-columns: minmax(150px, 0.75fr) minmax(0, 1.25fr);
  gap: 25px;
  border-bottom: 1px solid var(--line);
}

.company-details dt {
  color: var(--muted);
  font-size: 0.88rem;
}
.company-details dd {
  margin: 0;
  color: var(--text);
  font-weight: 650;
}

.check-list {
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 15px;
  list-style: none;
}

.check-list li {
  padding-left: 38px;
  position: relative;
  color: var(--text);
  line-height: 1.55;
}

.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.55;
}

.sector-panel {
  padding: 34px;
  border: 0;
  display: grid;
  grid-template-columns: 72px 1fr;
  column-gap: 20px;
}
.panel-icon {
  width: 68px;
  height: 68px;
  margin: 0;
  border-radius: 16px;
  grid-column: 1;
  grid-row: 1;
}

.sector-panel .panel-icon {
  background: transparent;
  border-radius: 0;
}

.faq-heading .panel-icon {
  background: transparent;
  border-radius: 0;
}
.panel-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sector-panel h3 {
  margin: 0 0 16px;
  font-size: 1.45rem;
  grid-column: 2;
  grid-row: 1;
  align-self: center;
}
.sector-panel p,
.sector-panel ul {
  grid-column: 1 / -1;
}
.sector-panel p {
  font-size: 0.92rem;
}
.sector-panel ul {
  margin: 18px 0;
  padding-left: 20px;
  color: var(--text);
  line-height: 1.9;
}

.sector-panel a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.sector-panel a:hover,
.sector-panel a:focus-visible {
  color: var(--blue-hover);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.panel-icon--filled svg {
  fill: currentColor;
  stroke: none;
}
.rates-section {
  scroll-margin-top: 30px;
}

.rate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.rate-card {
  overflow: hidden;
}

.rate-card__heading {
  padding: 24px 26px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid var(--line);
}

.rate-card__heading .small-icon {
  width: 42px;
  height: 42px;
}
.rate-card__heading h3 {
  margin: 0;
  font-size: 1.2rem;
}

.table-wrap {
  overflow-x: auto;
}

.rate-card table {
  width: 100%;
  border-collapse: collapse;
}
.rate-card th,
.rate-card td {
  padding: 17px 24px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.rate-card tr:last-child td {
  border-bottom: 0;
}
.rate-card th {
  color: var(--muted);
  background: color-mix(in srgb, var(--page) 78%, var(--surface));
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.rate-card th:last-child,
.rate-card td:last-child {
  text-align: right;
  white-space: nowrap;
}
.rate-card td {
  color: var(--text);
  font-size: 0.92rem;
}
.rate-card td:last-child {
  color: var(--blue);
  font-weight: 800;
}

.operating-conditions {
  margin-top: 24px;
  padding-left: 28px;
  list-style: decimal;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.operating-conditions li {
  padding: 18px 0 18px 8px;
  font-size: 1rem;
  line-height: 1.55;
}

.operating-conditions li + li {
  border-top: 1px solid var(--line);
}
.rates-note {
  max-width: none;
  margin: 28px 0 0;
  white-space: nowrap;
}

.faq-heading {
  position: sticky;
  top: 40px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  align-items: end;
}
.faq-heading .panel-icon {
  order: 3;
  flex: 0 0 68px;
  color: var(--blue);
  background: transparent;
}
.faq-heading .eyebrow {
  order: 1;
  flex: 0 0 100%;
}
.faq-heading h2 {
  order: 2;
  flex: 0 1 auto;
  min-width: 0;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  padding: 22px 52px 22px 0;
  position: relative;
  color: var(--text);
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 720;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 12px;
  top: 16px;
  color: var(--blue);
  font-size: 1.75rem;
  font-weight: 350;
  transition: transform 0.2s ease;
}
.faq-list details[open] summary::after {
  transform: rotate(45deg);
}
.faq-list details p {
  margin: -4px 50px 22px 0;
  font-size: 0.94rem;
}

.site-footer {
  padding: 0;
  color: #c9d5e7;
  background: #07142b;
  text-align: left;
}

.footer-inner {
  width: min(100% - 72px, 1260px);
  margin: 0 auto;
  padding: 64px 0 48px;
  display: grid;
  grid-template-columns: minmax(280px, 1.3fr) minmax(150px, 0.55fr) minmax(
      250px,
      0.8fr
    ) minmax(180px, 0.85fr);
  gap: 70px;
}

.footer-brand img {
  width: 160px;
  height: auto;
  display: block;
  margin-bottom: 14px;
}
.footer-brand p {
  max-width: 360px;
  line-height: 1.65;
}
.footer-nav,
.footer-contact,
.footer-hours {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.footer-nav strong,
.footer-contact strong,
.footer-hours strong {
  margin-bottom: 7px;
  color: #fff;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-nav a:hover,
.footer-contact a:hover {
  color: #fff;
}
.footer-contact a {
  color: #8fb8ff;
}
.footer-contact address {
  color: #aebed4;
  font-style: normal;
  line-height: 1.6;
}
.footer-hours {
  position: relative;
  left: -40px;
  width: 100%;
  width: calc(100% + 40px);
}
.footer-hours p {
  margin: 0;
  color: #aebed4;
  font-size: 1rem;
}

.footer-bottom {
  width: min(100% - 72px, 1260px);
  margin: 0 auto;
  padding: 20px 0 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #8fa2bc;
  font-size: 0.8rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom > :last-child {
  justify-self: end;
}

.footer-bottom__links,
.footer__attribution {
  display: flex;
  align-items: center;
}

.footer-bottom__links {
  gap: 10px;
}

.footer-bottom__links a:hover,
.footer-bottom__links a:focus-visible {
  color: #fff;
}

.footer__attribution {
  gap: 0.3rem;
}

.footer__attribution-icon {
  width: 0.9rem;
  height: 0.7rem;
  object-fit: contain;
  flex: 0 0 auto;
  filter: invert(70%);
}

.footer-copyright {
  justify-self: center;
}

.contact-page {
  padding: clamp(72px, 9vw, 132px) 0;
}

.contact-page__inner {
  width: min(100% - 72px, 1260px);
  margin: 0 auto;
}

.contact-page__header {
  max-width: 1040px;
  margin-bottom: clamp(42px, 6vw, 72px);
}

.contact-page__header h1 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  overflow-wrap: break-word;
}

.contact-urgent {
  padding: clamp(32px, 5vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(40px, 7vw, 88px);
  border-radius: 20px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(92, 151, 255, 0.42), transparent 38%),
    linear-gradient(135deg, #0758e8, #07327f);
  box-shadow: var(--shadow);
}

.contact-urgent .eyebrow {
  color: #cfe0ff;
}

.contact-urgent h2,
.contact-form-section h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.contact-urgent__intro > p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  line-height: 1.65;
}

.contact-urgent__intro .contact-urgent__availability {
  color: #fff;
  font-weight: 750;
}

.contact-urgent__call {
  margin-top: 30px;
  color: var(--blue);
  background: #fff;
  box-shadow: none;
}

.contact-urgent__call-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  text-align: center;
}

.contact-urgent__call-number {
  white-space: nowrap;
}

.contact-urgent__call svg {
  flex: 0 0 auto;
}

.contact-urgent__call:hover,
.contact-urgent__call:focus-visible {
  color: var(--blue-hover);
  background: #f4f7fb;
}

.contact-details {
  margin: 0;
  display: grid;
  align-content: center;
}

.contact-details div {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.contact-details div:first-child {
  padding-top: 0;
}

.contact-details div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-details dt {
  margin-bottom: 7px;
  color: #cfe0ff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.55;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.contact-details address {
  font-style: normal;
  font-weight: 500;
}

.contact-form-section {
  padding-top: clamp(72px, 9vw, 124px);
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1.2fr);
  align-items: start;
  gap: clamp(48px, 8vw, 110px);
}

.contact-form-section__intro {
  position: sticky;
  top: calc(var(--header-height) + 48px);
}

.contact-form-section__intro > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.contact-form-panel {
  padding: clamp(28px, 5vw, 52px);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.contact-page .form {
  display: grid;
  gap: 24px;
}

.contact-page .form-row {
  display: grid;
  gap: 9px;
}

.contact-page label,
.contact-verification legend {
  color: var(--text);
  font-weight: 750;
}

.contact-page input,
.contact-page textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  background: var(--page);
  font: inherit;
  line-height: 1.5;
}

.contact-page textarea {
  min-height: 190px;
  resize: vertical;
}

.contact-page input:focus-visible,
.contact-page textarea:focus-visible,
.contact-page .button:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--blue) 40%, transparent);
  outline-offset: 2px;
}

.contact-page [aria-invalid="true"] {
  border-color: #c92a2a;
}

.form-error {
  margin: 0;
  color: #b42318;
  font-size: 0.9rem;
  line-height: 1.45;
}

html[data-theme="dark"] .form-error {
  color: #ff9b91;
}

.form-note {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.form-status {
  margin-bottom: 24px;
  padding: 16px 18px;
  border-radius: 6px;
  color: var(--text);
  background: color-mix(in srgb, var(--blue) 10%, var(--surface));
  font-weight: 700;
  line-height: 1.5;
}

.form-status--success {
  color: #176b3a;
  background: #e8f7ee;
}

.form-status--failure,
.form-status--rejected {
  color: #8f1d17;
  background: #fdecea;
}

html[data-theme="dark"] .form-status--success {
  color: #9ce2b9;
  background: #163c29;
}

html[data-theme="dark"] .form-status--failure,
html[data-theme="dark"] .form-status--rejected {
  color: #ffb2aa;
  background: #4a211f;
}

.contact-verification {
  margin: 0;
  padding: 22px;
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-page .button[type="submit"] {
  width: fit-content;
  min-height: 58px;
  padding: 0 28px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: var(--blue);
  font-weight: 750;
  cursor: pointer;
}

.contact-page .button[type="submit"]:hover:not(:disabled) {
  background: var(--blue-hover);
}

.contact-page .button:disabled {
  cursor: wait;
  opacity: 0.68;
}

@media (max-width: 1100px) {
  .card-grid--four {
    grid-template-columns: 1fr 1fr;
  }
  .card-grid--services {
    grid-template-columns: 1fr 1fr;
  }
  .split--history {
    grid-template-columns: 280px 1fr;
  }
  .page-hero__inner {
    grid-template-columns: 1fr 230px;
  }
  .page-hero__mark {
    width: 220px;
    height: 220px;
  }
  .page-hero__mark svg {
    width: 135px;
    height: 135px;
  }
  .operating-conditions {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
  }
  .footer-hours {
    left: 0;
    width: 100%;
  }
}

@media (max-width: 900px) {
  .sector-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .mobile-nav-toggle {
    display: grid;
  }
  .section-inner,
  .page-hero__inner,
  .footer-inner,
  .footer-bottom {
    width: calc(100% - 40px);
  }
  .section {
    padding: 72px 0;
  }
  .section h2,
  .page-hero h1 {
    font-size: clamp(2.25rem, 9vw, 3.5rem);
  }
  .home-hero.hero {
    min-height: 780px;
  }
  .home-hero .hero-image {
    object-position: right center;
  }
  .home-hero .hero-inner {
    min-height: 780px;
    padding-top: 52px;
  }
  .home-hero .hero-copy {
    width: 100%;
  }
  .home-hero .hero-shade {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.99) 0%,
      rgba(255, 255, 255, 0.93) 52%,
      rgba(255, 255, 255, 0.2) 78%,
      rgba(255, 255, 255, 0.1) 100%
    );
  }
  html[data-theme="dark"] .home-hero .hero-shade {
    background: linear-gradient(
      180deg,
      rgba(8, 17, 31, 0.99) 0%,
      rgba(8, 17, 31, 0.95) 53%,
      rgba(8, 17, 31, 0.4) 80%,
      rgba(8, 17, 31, 0.5) 100%
    );
  }
  .home-hero .hero-highlights {
    width: 100%;
    margin: auto 0 -116px;
    transform: none;
  }
  .home-return {
    padding-top: 160px;
  }
  .home-return > .section-inner > .prose {
    margin-top: 0;
  }
  .home-capacity .prose {
    padding-top: 0;
  }
  .about-human-scale .prose {
    padding-top: 0;
  }
  .service-area-band .prose {
    padding-top: 0;
  }
  .service-area-band .split {
    grid-template-columns: 1fr;
  }
  .home-sectors .sector-list {
    padding-top: 0;
  }
  .split,
  .split--balanced,
  .split--intro,
  .split--history,
  .split--faq,
  .team-layout,
  .cta-panel {
    grid-template-columns: 1fr;
  }
  .history-year {
    width: min(320px, 78%);
    margin: 0 auto;
  }
  .page-hero__inner {
    min-height: auto;
    padding: 72px 0;
    grid-template-columns: 1fr;
  }
  .page-hero__mark {
    display: none;
  }
  .team-photo {
    order: 1;
  }
  .team-copy {
    order: 2;
  }
  .rate-grid {
    grid-template-columns: 1fr;
  }
  .faq-heading {
    position: static;
  }
  .priority-grid {
    grid-template-columns: 1fr;
  }
  .priority-grid div {
    min-height: 110px;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: center;
    column-gap: 20px;
    padding: 24px 32px;
  }
  .priority-grid strong {
    position: static;
  }
  .priority-grid span {
    max-width: none;
  }
  .priority-grid div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-left: 0;
  }
  .footer-inner {
    grid-template-columns: 1.2fr 0.8fr;
  }
  .footer-contact {
    grid-column: 1 / -1;
  }
  .footer-hours {
    grid-column: 1 / -1;
    left: 0;
    width: 100%;
  }
  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 6px;
    text-align: center;
  }
  .footer-bottom > *,
  .footer-bottom > :last-child,
  .footer-copyright {
    justify-self: center;
  }
  .footer-bottom__links {
    justify-content: center;
    flex-wrap: nowrap;
    white-space: nowrap;
  }
  .contact-page__inner {
    width: calc(100% - 40px);
  }
  .location-map {
    width: 100%;
  }
  .contact-urgent {
    grid-template-columns: 1fr;
  }
  .contact-form-section {
    grid-template-columns: 1fr;
  }
  .contact-form-section__intro {
    position: static;
    max-width: 760px;
  }
}

@media (max-width: 600px) {
  .header-actions {
    gap: 4px;
  }
  .action-divider {
    display: none;
  }
  .card-grid--four,
  .card-grid--services,
  .sector-list {
    grid-template-columns: 1fr;
  }
  .service-detail-card--wide {
    grid-column: auto;
    display: grid;
    grid-template-columns: 1fr 58px;
    gap: 16px;
    align-items: center;
  }
  .service-detail-card--wide .card-icon {
    margin: 0;
  }
  .button-row {
    align-items: stretch;
    flex-direction: column;
  }
  .button-row > * {
    width: 100%;
  }
  .cta-buttons {
    width: 100%;
  }
  .primary-button,
  .secondary-button {
    text-align: center;
  }
  .home-hero.hero {
    min-height: 830px;
  }
  .home-hero .hero-inner {
    min-height: 830px;
  }
  .home-hero .hero-highlights {
    margin-bottom: -135px;
  }
  .home-return {
    padding-top: 180px;
  }
  .hero-highlights .highlight-item strong {
    white-space: normal;
  }
  .section-inner,
  .page-hero__inner,
  .footer-inner,
  .footer-bottom {
    width: calc(100% - 32px);
  }
  .icon-card,
  .service-card,
  .sector-panel {
    padding: 25px 22px;
  }
  .cta-panel {
    padding: 30px 22px;
    gap: 36px;
  }
  .cta-actions {
    margin-top: 0;
  }
  .cta-tagline {
    grid-column: auto;
  }
  .company-details dl div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .rate-card th,
  .rate-card td {
    padding: 15px 17px;
  }
  .faq-list summary {
    padding-right: 42px;
  }
  .faq-list details p {
    margin-right: 12px;
  }
  .rates-note {
    white-space: normal;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-contact {
    grid-column: auto;
  }
  .footer-hours {
    grid-column: auto;
    left: 0;
    width: 100%;
  }
  .footer-bottom {
    font-size: 0.75rem;
  }
  .contact-page__inner {
    width: calc(100% - 32px);
  }
  .contact-urgent {
    padding: 30px 22px;
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .contact-form-section {
    gap: 36px;
  }
  .contact-form-panel {
    padding: 26px 20px;
  }
  .contact-page .button[type="submit"],
  .contact-urgent__call {
    width: 100%;
  }
}
