:root {
  --page: #f6f7f4;
  --page-strong: #ffffff;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --ink: #171a22;
  --muted: #596372;
  --line: #d7dddf;
  --line-strong: #b8c7cb;
  --teal: #006d78;
  --teal-dark: #01525c;
  --teal-soft: #e7f4f3;
  --amber: #f0a51c;
  --amber-dark: #c98100;
  --field: #fbfcfa;
  --shadow: 0 22px 60px rgba(21, 31, 38, 0.1);
  --shadow-soft: 0 14px 32px rgba(21, 31, 38, 0.08);
  --max: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  position: relative;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(0, 109, 120, 0.08), transparent 28%),
    linear-gradient(180deg, #fbfcfb 0%, var(--page) 36%, #f3f7f6 100%);
  font-family: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 109, 120, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 109, 120, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), transparent 78%);
}

body.menu-open {
  overflow: hidden;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  min-height: 76px;
  padding: 0 40px;
  background: rgba(251, 252, 251, 0.92);
  border-bottom: 1px solid rgba(184, 199, 203, 0.55);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: var(--ink);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.brand strong,
.hero h1 span {
  color: var(--teal);
}

.brand-mark {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 9px;
}

.brand-mark-large {
  width: 64px;
  height: 64px;
  border-radius: 14px;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.45vw, 22px);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a,
.site-footer a {
  text-decoration: none;
}

.site-nav a {
  position: relative;
  padding: 28px 0 26px;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  content: "";
  background: var(--teal);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: translateY(0);
}

.header-cta,
.button,
.text-link {
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 7px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}

.header-cta {
  min-height: 48px;
  background: var(--amber);
  color: var(--ink);
}

.header-cta:hover,
.header-cta:focus-visible {
  background: #f6b640;
}

.button:hover,
.button:focus-visible,
.text-link:hover,
.text-link:focus-visible,
.service-rail a:hover,
.service-rail a:focus-visible,
.cluster-card:hover,
.cluster-card:focus-within,
.ops-card:hover,
.ops-card:focus-within,
.detail-card:hover,
.detail-card:focus-within,
.price-row:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.button-primary {
  background: var(--teal);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 109, 120, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--teal-dark);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.74);
  color: var(--teal);
  border-color: var(--teal);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--teal-soft);
}

.text-link {
  color: var(--teal-dark);
  font-weight: 800;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--teal);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(184, 199, 203, 0.62);
  border-radius: 7px;
  box-shadow: var(--shadow-soft);
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero,
.page-hero {
  max-width: calc(var(--max) + 80px);
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1fr);
  grid-template-rows: 1fr auto;
  margin-top: 20px;
  padding: 0 40px;
}

.hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 84px 52px 72px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(255, 255, 255, 0.94) 100%);
  border: 1px solid rgba(184, 199, 203, 0.48);
  border-right: 0;
  border-radius: 12px 0 0 12px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: 64px;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lede,
.page-hero p,
.section-heading p,
.section-copy > p,
.coverage-copy p,
.contact-copy p,
.cluster-card p,
.ops-card p,
.detail-card p,
.detail-column-block p,
.page-cta-band p {
  color: var(--muted);
}

.hero-lede {
  margin: 28px 0 0;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.32;
  font-weight: 500;
}

.hero-text {
  max-width: 600px;
  margin: 24px 0 0;
  font-size: 19px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.hero-media {
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(184, 199, 203, 0.48);
  border-left: 0;
  border-radius: 0 12px 12px 0;
  box-shadow: var(--shadow-soft);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-rail {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(184, 199, 203, 0.48);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.service-rail a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 98px;
  padding: 0 14px;
  color: var(--teal-dark);
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
  border-right: 1px solid rgba(184, 199, 203, 0.48);
}

.service-rail a:last-child {
  border-right: 0;
}

.service-rail a:hover,
.service-rail a:focus-visible {
  background: var(--teal-soft);
}

.service-rail svg,
.support-item svg,
.pricing-panel svg,
.approach-list svg,
.detail-card-grid svg {
  flex: 0 0 auto;
  stroke: var(--teal);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.service-rail svg {
  width: 40px;
  height: 40px;
}

.platform-section {
  position: relative;
  margin-top: 70px;
  padding: 72px 40px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(4, 39, 48, 0.98) 0%, rgba(0, 109, 120, 0.94) 58%, rgba(12, 75, 86, 0.96) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(4, 39, 48, 0.24);
  overflow: hidden;
}

.platform-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.92), transparent 82%);
}

.platform-section::after {
  position: absolute;
  right: clamp(28px, 8vw, 120px);
  top: -70px;
  width: min(520px, 44vw);
  height: 230px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  transform: skewX(-12deg);
}

.platform-section-detail {
  margin-top: 44px;
}

.platform-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 46px;
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
}

.platform-intro {
  max-width: 470px;
}

.platform-intro h2 {
  margin: 0;
  color: #ffffff;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: 0;
}

.platform-intro p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.65;
}

.platform-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.platform-logo-grid-wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.platform-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 108px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 250, 249, 0.94) 100%);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 10px;
  box-shadow: 0 16px 34px rgba(4, 39, 48, 0.18);
}

.platform-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.2;
}

.platform-card p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
}

.platform-mark {
  width: 48px;
  height: 48px;
  padding: 4px;
  background: #ffffff;
  border: 1px solid rgba(184, 199, 203, 0.48);
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(21, 31, 38, 0.08);
  object-fit: contain;
}

.platform-mark[src$="microsoft-365.png"],
.hero-logo-row img[src$="microsoft-365.png"] {
  padding: 0;
}

.section,
.page-hero,
.page-cta-band {
  padding-left: 40px;
  padding-right: 40px;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 92px;
  padding-bottom: 92px;
}

section[id] {
  scroll-margin-top: 92px;
}

.section-heading {
  max-width: 840px;
}

.section-line {
  width: 52px;
  height: 4px;
  margin-bottom: 28px;
  background: var(--teal);
}

.section-line.amber {
  background: var(--amber);
}

.section h2,
.page-hero h2,
.page-cta-band h2,
.contact-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p,
.section-copy > p,
.coverage-copy p,
.contact-copy p,
.page-hero p,
.page-cta-band p {
  margin: 24px 0 0;
  font-size: 19px;
  line-height: 1.65;
}

.cluster-grid,
.ops-grid,
.detail-card-grid {
  display: grid;
  gap: 26px;
  margin-top: 38px;
}

.cluster-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cluster-card,
.ops-card,
.detail-card,
.page-hero-panel,
.surface-panel,
.page-cta-band {
  background: var(--surface);
  border: 1px solid rgba(184, 199, 203, 0.48);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.cluster-card,
.ops-card,
.detail-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
  padding: 28px;
  border-radius: 12px;
  overflow: hidden;
}

.cluster-card::before,
.ops-card::before,
.detail-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--teal), var(--amber));
}

.cluster-card::after,
.ops-card::after,
.detail-card::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  content: "";
  border: 1px solid rgba(0, 109, 120, 0.14);
  border-left: 0;
  border-bottom: 0;
  opacity: 0.75;
  transform: skew(-8deg);
}

.cluster-card > *,
.ops-card > *,
.detail-card > * {
  position: relative;
  z-index: 1;
}

.cluster-card h3,
.ops-card h3,
.detail-card h3,
.support-item h3,
.detail-column-block h3,
.page-hero-panel h2,
.pricing-panel h3 {
  margin: 0;
}

.cluster-card h3,
.ops-card h3,
.detail-card h3 {
  font-size: 24px;
  line-height: 1.2;
}

.cluster-card p,
.ops-card p,
.detail-card p {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
}

.service-list {
  display: grid;
  gap: 10px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.service-list li::before {
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--teal);
  border-radius: 50%;
}

.overview-section .section-grid,
.detail-columns {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  gap: 48px;
  align-items: stretch;
}

.section-copy {
  padding-right: 46px;
}

.support-list {
  display: grid;
  gap: 24px;
  margin-top: 42px;
}

.support-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.support-item svg {
  width: 42px;
  height: 42px;
}

.support-item h3 {
  color: var(--teal-dark);
  font-size: 18px;
  line-height: 1.2;
}

.support-item p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.pricing-panel {
  display: flex;
  flex-direction: column;
  padding: 24px 30px;
  border-radius: 12px;
}

.pricing-head,
.price-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) minmax(160px, auto);
  align-items: center;
  gap: 20px;
}

.pricing-head {
  min-height: 50px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border-bottom: 3px solid var(--teal);
}

.pricing-head span:first-child {
  grid-column: 2;
}

.pricing-head span:last-child {
  justify-self: end;
}

.price-row {
  min-height: 96px;
  color: var(--ink);
  border-bottom: 1px solid rgba(184, 199, 203, 0.48);
}

.price-row svg {
  width: 42px;
  height: 42px;
  justify-self: center;
}

.pricing-panel h3 {
  font-size: 21px;
  line-height: 1.25;
}

.price-row p {
  justify-self: end;
  margin: 0;
  color: var(--teal-dark);
  font-size: 18px;
  font-weight: 800;
  text-align: right;
}

.price-row p strong {
  font-size: 36px;
  line-height: 1;
}

.price-row p span {
  display: block;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
}

.custom-quote {
  color: var(--teal-dark);
}

.ops-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.coverage-section {
  padding-top: 70px;
}

.coverage-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 62px;
  border-bottom: 1px solid rgba(184, 199, 203, 0.55);
}

.coverage-copy h2 {
  color: var(--teal);
}

.map-wrap {
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(184, 199, 203, 0.42);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.coverage-map {
  width: 100%;
  height: auto;
}

.map-region {
  fill: #f7faf9;
  stroke: #d3dddd;
  stroke-width: 2;
}

.water-lines {
  fill: none;
  stroke: #bde2e6;
  stroke-width: 2;
  opacity: 0.65;
}

.coverage-route,
.coverage-dash {
  fill: none;
  stroke: var(--teal);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.coverage-dash {
  stroke-dasharray: 10 12;
  opacity: 0.9;
}

.map-point circle:first-child {
  fill: #ffffff;
  stroke: var(--teal);
  stroke-width: 4;
}

.map-point circle:nth-child(2) {
  fill: var(--teal);
}

.map-point path {
  stroke: var(--teal);
  stroke-width: 4;
}

.coverage-map text {
  fill: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.approach {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
  padding-top: 62px;
}

.approach-heading {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.approach-emblem {
  position: relative;
  display: grid;
  width: 132px;
  height: 132px;
  place-items: center;
  color: var(--teal-dark);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(231, 244, 243, 0.86));
  border: 1px solid rgba(0, 109, 120, 0.22);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.approach-emblem::before {
  position: absolute;
  inset: 16px;
  content: "";
  background: rgba(0, 109, 120, 0.06);
  border-radius: 18px;
}

.approach-emblem img {
  position: relative;
  z-index: 1;
  width: 88px;
  height: 88px;
  object-fit: contain;
  border-radius: 18px;
}

.approach-list {
  border-left: 1px solid rgba(184, 199, 203, 0.55);
}

.approach-list div {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  min-height: 76px;
  padding-left: 54px;
  border-bottom: 1px solid rgba(184, 199, 203, 0.45);
}

.approach-list div:last-child {
  border-bottom: 0;
}

.approach-list svg {
  width: 42px;
  height: 42px;
}

.approach-list span {
  font-size: 20px;
  font-weight: 500;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(200px, 0.55fr) minmax(320px, 0.8fr) minmax(360px, 1fr);
  gap: 40px;
  align-items: start;
  max-width: calc(var(--max) + 80px);
  margin: 0 auto;
  padding: 72px 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  color: var(--teal-dark);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-brand strong {
  color: var(--ink);
}

.contact-copy h2 {
  font-size: 34px;
}

.contact-copy .free-consult-note {
  display: block;
  max-width: 620px;
  margin-top: 20px;
  padding: 15px 18px;
  color: var(--ink);
  background: #fff4dc;
  border: 1px solid rgba(240, 165, 28, 0.38);
  border-left: 5px solid var(--amber);
  border-radius: 4px;
  box-shadow: 0 12px 24px rgba(31, 42, 58, 0.08);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.45;
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid rgba(184, 199, 203, 0.48);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.field-group {
  display: grid;
  gap: 8px;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field-group:has(textarea),
.form-button,
.form-status {
  grid-column: 1 / -1;
}

.field-group label {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field-group input,
.field-group textarea {
  width: 100%;
  border: 1px solid rgba(184, 199, 203, 0.75);
  border-radius: 7px;
  background: var(--field);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.checkbox-field {
  grid-column: 1 / -1;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(231, 244, 243, 0.64), rgba(255, 255, 255, 0.86));
  border: 1px solid rgba(184, 199, 203, 0.58);
  border-radius: 7px;
}

.checkbox-field label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

.checkbox-field input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  accent-color: var(--teal);
}

.field-group textarea {
  min-height: 124px;
  resize: vertical;
}

.field-group input:focus,
.field-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 109, 120, 0.14);
}

.form-button {
  width: 100%;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.form-status[data-state="success"] {
  color: var(--teal-dark);
  font-weight: 700;
}

.form-status[data-state="error"] {
  color: #9f2d20;
  font-weight: 700;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.72fr);
  gap: 32px;
  align-items: stretch;
  padding-top: 72px;
  padding-bottom: 18px;
}

.page-hero-copy,
.detail-column-block,
.page-hero-panel {
  padding: 30px 32px;
  border-radius: 12px;
}

.page-hero-copy {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(245, 250, 249, 0.92) 100%);
  border: 1px solid rgba(184, 199, 203, 0.48);
  box-shadow: var(--shadow-soft);
}

.hero-copy::after,
.page-hero-copy::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(135deg, rgba(0, 109, 120, 0.11) 0 1px, transparent 1px),
    linear-gradient(45deg, rgba(240, 165, 28, 0.12) 0 1px, transparent 1px);
  background-size: 28px 28px, 64px 64px;
  mask-image: linear-gradient(90deg, transparent 42%, rgba(0, 0, 0, 0.86));
  opacity: 0.35;
}

.hero-copy > *,
.page-hero-copy > * {
  position: relative;
  z-index: 1;
}

.page-hero-copy p {
  max-width: 860px;
}

.page-hero-panel h2 {
  font-size: 22px;
  line-height: 1.2;
}

.hero-logo-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.hero-logo-row span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 9px 10px;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.15;
  background: linear-gradient(180deg, rgba(231, 244, 243, 0.74), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(184, 199, 203, 0.55);
  border-radius: 9px;
}

.hero-logo-row svg,
.hero-logo-row img {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  padding: 2px;
  background: #ffffff;
  border-radius: 7px;
  box-shadow: 0 6px 14px rgba(21, 31, 38, 0.08);
  object-fit: contain;
}

.hero-insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.hero-insight-grid div {
  min-height: 88px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(231, 244, 243, 0.78), rgba(255, 255, 255, 0.94));
  border: 1px solid rgba(184, 199, 203, 0.55);
  border-radius: 10px;
}

.hero-insight-grid span {
  display: block;
  color: var(--teal-dark);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.hero-insight-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.risk-meter {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 109, 120, 0.16);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(0, 109, 120, 0.08), rgba(240, 165, 28, 0.08)),
    repeating-linear-gradient(90deg, rgba(0, 109, 120, 0.08) 0 1px, transparent 1px 28px),
    #ffffff;
}

.risk-meter::before,
.risk-meter::after {
  position: absolute;
  content: "";
  pointer-events: none;
  background: rgba(0, 109, 120, 0.16);
}

.risk-meter::before {
  top: 50%;
  left: 28px;
  right: 28px;
  height: 1px;
}

.risk-meter::after {
  top: 28px;
  bottom: 28px;
  left: 50%;
  width: 1px;
}

.risk-meter div {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 124px;
  padding: 16px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 250, 249, 0.9)),
    radial-gradient(circle at 100% 0, rgba(0, 109, 120, 0.14), transparent 34%);
  border: 1px solid rgba(184, 199, 203, 0.62);
  border-radius: 12px;
  box-shadow: 0 16px 34px rgba(31, 42, 58, 0.08);
}

.risk-meter div:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 239, 0.9)),
    radial-gradient(circle at 100% 0, rgba(240, 165, 28, 0.2), transparent 34%);
}

.risk-meter div:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 250, 249, 0.9)),
    radial-gradient(circle at 100% 0, rgba(0, 109, 120, 0.16), transparent 34%);
}

.risk-meter div:nth-child(4) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 239, 0.9)),
    radial-gradient(circle at 100% 0, rgba(240, 165, 28, 0.22), transparent 34%);
}

.risk-meter svg {
  width: 36px;
  height: 36px;
  margin-top: 12px;
  color: var(--teal);
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.risk-meter .pillar-number {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 28px;
  color: var(--teal-dark);
  background: rgba(0, 109, 120, 0.08);
  border: 1px solid rgba(0, 109, 120, 0.14);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.risk-meter .pillar-label {
  margin-top: 12px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.network-mini-map {
  position: relative;
  min-height: 176px;
  margin-top: 26px;
  border: 1px solid rgba(184, 199, 203, 0.5);
  border-radius: 12px;
  background:
    radial-gradient(circle at 18% 32%, rgba(240, 165, 28, 0.28), transparent 8%),
    radial-gradient(circle at 76% 35%, rgba(0, 109, 120, 0.18), transparent 9%),
    linear-gradient(180deg, rgba(231, 244, 243, 0.7), rgba(255, 255, 255, 0.94));
  overflow: hidden;
}

.network-mini-map::before,
.network-mini-map::after {
  position: absolute;
  content: "";
  inset: 46% 12% auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}

.network-mini-map::after {
  inset: 26% 28% auto;
  transform: rotate(32deg);
  opacity: 0.75;
}

.map-node {
  position: absolute;
  z-index: 1;
  display: grid;
  min-width: 92px;
  min-height: 40px;
  place-items: center;
  padding: 8px 10px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  background: #ffffff;
  border: 1px solid rgba(184, 199, 203, 0.62);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(21, 31, 38, 0.09);
}

.map-node::before {
  position: absolute;
  top: -5px;
  left: 50%;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--amber);
  border: 2px solid #ffffff;
  border-radius: 50%;
  transform: translateX(-50%);
}

.map-node.firewall {
  left: 7%;
  top: 26%;
}

.map-node.switching {
  left: 36%;
  top: 14%;
}

.map-node.wifi {
  right: 8%;
  top: 30%;
}

.map-node.vpn {
  left: 25%;
  bottom: 17%;
}

.map-node.monitoring {
  right: 18%;
  bottom: 14%;
}

.visual-band {
  position: relative;
  margin-top: 44px;
  padding: 72px 40px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(4, 39, 48, 0.98), rgba(0, 109, 120, 0.94) 62%, rgba(12, 75, 86, 0.96));
  overflow: hidden;
}

.visual-band::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.94), transparent 82%);
}

.visual-band::after {
  position: absolute;
  right: clamp(30px, 10vw, 140px);
  top: -82px;
  width: min(540px, 42vw);
  height: 260px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  transform: skewX(-12deg);
}

.security-visual {
  background:
    linear-gradient(135deg, rgba(31, 42, 58, 0.98), rgba(0, 109, 120, 0.95) 54%, rgba(82, 61, 23, 0.9));
}

.network-visual {
  background:
    linear-gradient(135deg, rgba(4, 39, 48, 0.98), rgba(1, 82, 92, 0.96) 46%, rgba(0, 109, 120, 0.88));
}

.recovery-visual {
  background:
    linear-gradient(135deg, rgba(22, 44, 54, 0.98), rgba(0, 109, 120, 0.94) 52%, rgba(67, 86, 64, 0.92));
}

.automation-visual {
  background:
    linear-gradient(135deg, rgba(4, 39, 48, 0.98), rgba(0, 109, 120, 0.93) 48%, rgba(81, 83, 42, 0.9));
}

.recovery-flow .ops-node {
  min-height: 236px;
}

.visual-band-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 48px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.visual-copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: 0;
}

.visual-copy p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.65;
}

.ops-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.ops-node,
.control-stack div,
.network-path-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 249, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  box-shadow: 0 16px 34px rgba(4, 39, 48, 0.18);
}

.ops-node {
  min-height: 218px;
  padding: 18px;
}

.ops-node span,
.control-stack span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  background: var(--amber);
  border-radius: 50%;
}

.ops-node strong,
.control-stack strong {
  display: block;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.15;
}

.ops-node p,
.control-stack p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.control-stack {
  display: grid;
  gap: 12px;
}

.control-stack div {
  display: grid;
  grid-template-columns: 48px 130px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 92px;
  padding: 18px;
}

.control-stack span {
  margin: 0;
}

.control-stack p {
  margin: 0;
}

.network-path-card {
  padding: 26px;
}

.path-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  align-items: center;
  position: relative;
}

.path-row::before {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--amber), var(--teal));
}

.path-row span {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 72px;
  place-items: center;
  color: var(--teal-dark);
  font-size: 15px;
  font-weight: 900;
  background: #ffffff;
  border: 1px solid rgba(184, 199, 203, 0.58);
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(21, 31, 38, 0.08);
}

.path-row i {
  display: none;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.path-grid div {
  min-height: 58px;
  padding: 14px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  background: rgba(231, 244, 243, 0.8);
  border: 1px solid rgba(184, 199, 203, 0.48);
  border-radius: 10px;
}

.detail-grid-section,
.detail-columns,
.page-cta-band {
  max-width: var(--max);
  margin: 0 auto;
}

.detail-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-column-block {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(184, 199, 203, 0.48);
  box-shadow: var(--shadow-soft);
}

.surface-panel {
  background: linear-gradient(180deg, rgba(231, 244, 243, 0.72) 0%, rgba(255, 255, 255, 0.88) 100%);
}

.page-cta-band {
  margin-top: 12px;
  margin-bottom: 64px;
  padding: 34px 36px;
  border-radius: 12px;
}

.page-cta-band h2 {
  font-size: 38px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 40px 34px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--teal-dark);
  font-weight: 800;
}

@media (max-width: 1220px) {
  .site-header {
    gap: 20px;
    padding: 0 24px;
  }

  .site-nav {
    gap: 16px;
    font-size: 13px;
  }

  .brand {
    font-size: 24px;
  }

  .hero,
  .page-hero {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero {
    grid-template-columns: 1fr 1fr;
  }

  .hero-copy {
    padding: 62px 36px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 54px;
  }

  .hero-lede {
    font-size: 24px;
  }

  .ops-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .coverage-layout,
  .approach,
  .contact-section,
  .page-hero,
  .detail-columns,
  .platform-inner,
  .visual-band-inner {
    grid-template-columns: 1fr;
  }

  .contact-section {
    max-width: var(--max);
  }

  .platform-intro {
    max-width: 780px;
  }

  .platform-logo-grid,
  .platform-logo-grid-wide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ops-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  html {
    scroll-padding-top: 80px;
  }

  section[id] {
    scroll-margin-top: 80px;
  }

  .site-header {
    grid-template-columns: auto auto;
    min-height: 66px;
  }

  .brand {
    font-size: 21px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    inset: 66px 0 auto 0;
    justify-self: stretch;
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 24px;
    background: #ffffff;
    border-bottom: 1px solid rgba(184, 199, 203, 0.6);
    box-shadow: var(--shadow);
  }

  body.menu-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 18px 0;
    border-bottom: 1px solid rgba(184, 199, 203, 0.52);
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    margin-top: 14px;
  }

  .hero-copy {
    border-right: 1px solid rgba(184, 199, 203, 0.48);
    border-radius: 12px 12px 0 0;
    padding: 48px 24px 30px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 42px;
  }

  .hero-lede {
    margin-top: 22px;
    font-size: 22px;
  }

  .hero-text,
  .page-hero p,
  .section-heading p,
  .section-copy > p,
  .coverage-copy p,
  .contact-copy p,
  .page-cta-band p {
    font-size: 17px;
  }

  .hero-media {
    min-height: 280px;
    border-left: 1px solid rgba(184, 199, 203, 0.48);
    border-top: 0;
    border-radius: 0;
  }

  .service-rail {
    grid-template-columns: 1fr 1fr;
  }

  .service-rail a {
    min-height: 78px;
    justify-content: flex-start;
    padding: 0 24px;
    font-size: 15px;
    border-bottom: 1px solid rgba(184, 199, 203, 0.48);
  }

  .service-rail a:nth-child(2n) {
    border-right: 0;
  }

  .service-rail a:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    border-right: 0;
  }

  .service-rail svg {
    width: 34px;
    height: 34px;
  }

  .section,
  .page-hero,
  .page-cta-band,
  .contact-section,
  .site-footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .platform-section {
    margin-top: 46px;
    padding: 56px 24px;
  }

  .visual-band {
    margin-top: 42px;
    padding: 56px 24px;
  }

  .platform-intro h2 {
    font-size: 34px;
  }

  .visual-copy h2 {
    font-size: 34px;
  }

  .platform-logo-grid,
  .platform-logo-grid-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section h2,
  .page-cta-band h2,
  .contact-section h2 {
    font-size: 36px;
  }

  .cluster-grid,
  .ops-grid,
  .detail-card-grid,
  .overview-section .section-grid {
    grid-template-columns: 1fr;
  }

  .section-copy {
    padding-right: 0;
  }

  .pricing-panel {
    padding: 20px 22px;
  }

  .pricing-head,
  .price-row {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 16px;
  }

  .pricing-head span:first-child {
    grid-column: 1 / -1;
  }

  .pricing-head span:last-child {
    display: none;
  }

  .price-row {
    min-height: auto;
    padding: 20px 0;
  }

  .price-row p {
    grid-column: 2;
    justify-self: start;
    text-align: left;
  }

  .price-row p strong {
    font-size: 30px;
  }

  .approach-heading {
    grid-template-columns: 1fr;
  }

  .approach-emblem {
    width: 108px;
    height: 108px;
  }

  .approach-emblem span {
    font-size: 32px;
  }

  .approach-list {
    border-left: 0;
  }

  .approach-list div {
    grid-template-columns: 48px minmax(0, 1fr);
    min-height: 68px;
    padding-left: 0;
  }

  .approach-list span {
    font-size: 18px;
  }

  .contact-section {
    gap: 30px;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding-top: 54px;
  }

  .hero-insight-grid {
    grid-template-columns: 1fr;
  }

  .risk-meter {
    gap: 10px;
    padding: 10px;
  }

  .risk-meter div,
  .risk-meter div:nth-child(2),
  .risk-meter div:nth-child(3),
  .risk-meter div:nth-child(4) {
    min-height: 108px;
    padding: 14px;
  }

  .risk-meter svg {
    width: 30px;
    height: 30px;
  }

  .risk-meter .pillar-label {
    font-size: 13px;
    letter-spacing: 0.01em;
  }

  .control-stack div {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .control-stack p {
    grid-column: 2;
  }

  .path-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .path-row::before {
    display: none;
  }

  .path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    padding: 0 18px;
  }

  .service-rail {
    grid-template-columns: 1fr;
  }

  .service-rail a,
  .service-rail a:nth-child(2n) {
    border-right: 0;
  }

  .service-rail a:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .service-list li {
    font-size: 15px;
  }

  .cluster-card,
  .ops-card,
  .detail-card,
  .detail-column-block,
  .page-hero-copy,
  .page-hero-panel,
  .page-cta-band,
  .quote-form {
    padding: 22px;
  }

  .hero-logo-row {
    grid-template-columns: 1fr;
  }

  .ops-flow,
  .path-row,
  .path-grid {
    grid-template-columns: 1fr;
  }

  .ops-node {
    min-height: auto;
  }

  .network-mini-map {
    min-height: 220px;
  }

  .map-node.firewall {
    left: 8%;
    top: 13%;
  }

  .map-node.switching {
    left: auto;
    right: 8%;
    top: 24%;
  }

  .map-node.wifi {
    left: 8%;
    right: auto;
    top: 48%;
  }

  .map-node.vpn {
    left: auto;
    right: 8%;
    bottom: 17%;
  }

  .map-node.monitoring {
    left: 18%;
    right: auto;
    bottom: 6%;
  }

  .site-footer {
    flex-direction: column;
  }

  .platform-logo-grid,
  .platform-logo-grid-wide {
    grid-template-columns: 1fr;
  }

  .platform-card {
    min-height: 94px;
  }
}

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