:root {
  --ink: #20272d;
  --muted: #5f6b77;
  --line: #dce5ef;
  --paper: #f5f8fc;
  --white: #ffffff;
  --blue: #2f74f6;
  --blue-bright: #3f86ff;
  --blue-dark: #061f5f;
  --navy: #061747;
  --charcoal: #20272d;
  --pale-blue: #eaf2ff;
  --shadow: 0 22px 60px rgba(6, 31, 95, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--paper);
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 118px;
}

.site-logo {
  display: block;
  width: 92px;
  height: 96px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--charcoal);
  font-size: 0.94rem;
}

.nav-links a:hover {
  color: var(--blue);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
}

.header-cta,
.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 12px 24px rgba(47, 116, 246, 0.22);
}

.button.secondary {
  color: var(--blue-dark);
  background: var(--white);
  border-color: var(--line);
}

.section-band {
  padding: clamp(64px, 8vw, 108px) clamp(18px, 4vw, 56px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  min-height: calc(100vh - 75px);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.97), rgba(234, 242, 255, 0.9)),
    radial-gradient(circle at 78% 18%, rgba(47, 116, 246, 0.16), transparent 35%),
    radial-gradient(circle at 14% 80%, rgba(6, 31, 95, 0.08), transparent 36%),
    #f5f8fb;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 5vw, 5.1rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  line-height: 1.04;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.hero-lede {
  max-width: 680px;
  color: #3d4a57;
  font-size: clamp(1.06rem, 1.6vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-row span,
.area-grid span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  color: #2b3846;
  background: var(--white);
  font-size: 0.9rem;
}

.hero-visual {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.brand-tile {
  display: grid;
  width: min(100%, 520px);
  min-height: 190px;
  place-items: center;
  border: 1px solid rgba(6, 31, 95, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(6, 31, 95, 0.1);
}

.brand-tile img {
  display: block;
  width: min(260px, 72%);
  height: 160px;
  object-fit: contain;
}

.network-panel {
  width: min(100%, 520px);
  overflow: hidden;
  border: 1px solid rgba(6, 31, 95, 0.16);
  border-radius: 8px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-logo-wrap {
  display: inline-flex;
  width: 70px;
  height: 72px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--white);
}

.panel-logo-wrap img {
  display: block;
  width: 58px;
  height: 62px;
  object-fit: contain;
}

.status-pill {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 5px 10px;
  color: #dceaff;
  font-size: 0.78rem;
}

.network-map {
  position: relative;
  height: 310px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

.network-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  stroke: rgba(63, 134, 255, 0.62);
  stroke-width: 3;
  fill: none;
}

.node {
  position: absolute;
  z-index: 2;
  display: grid;
  min-width: 82px;
  min-height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.86rem;
  font-weight: 800;
}

.node.core {
  top: 132px;
  left: calc(50% - 42px);
  min-width: 84px;
  min-height: 84px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 10px rgba(63, 134, 255, 0.2);
  font-size: 1.35rem;
}

.n1 {
  top: 54px;
  left: 36px;
}

.n2 {
  top: 30px;
  right: 34px;
}

.n3 {
  right: 28px;
  bottom: 60px;
}

.n4 {
  bottom: 42px;
  left: 32px;
}

.n5 {
  top: 22px;
  left: calc(50% - 41px);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.metric-grid div {
  min-height: 124px;
  padding: 18px;
  color: rgba(255, 255, 255, 0.78);
  background: #0b225e;
}

.metric-grid strong,
.metric-grid span {
  display: block;
}

.metric-grid strong {
  margin-bottom: 8px;
  color: var(--white);
}

.strip {
  padding: 28px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: var(--blue-dark);
}

.strip p {
  max-width: 1040px;
  margin: 0 auto;
  font-size: clamp(1.02rem, 1.9vw, 1.35rem);
  text-align: center;
}

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card p,
.steps p,
.proof-list span,
.contact-copy p,
.compliance-box p,
.site-footer span {
  color: var(--muted);
}

.icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  font-size: 0.78rem;
  font-weight: 800;
}

.difference {
  color: var(--white);
  background: var(--charcoal);
}

.difference .eyebrow {
  color: #9dbfff;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
}

.proof-list {
  display: grid;
  gap: 14px;
}

.proof-list div {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.proof-list strong,
.proof-list span {
  display: block;
}

.proof-list span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  min-height: 220px;
  padding: 24px;
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  background: var(--white);
}

.steps span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue-dark);
  font-weight: 800;
}

.compliance {
  padding-top: 0;
}

.compliance-box {
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.compliance-box p {
  max-width: 980px;
  font-size: 1.05rem;
}

.area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.contact-note {
  display: grid;
  gap: 6px;
  max-width: 540px;
  margin-top: 26px;
  padding: 18px;
  border-left: 4px solid var(--blue);
  background: var(--pale-blue);
}

.booking-panel {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.booking-panel h3 {
  max-width: 520px;
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  line-height: 1.04;
}

.booking-panel p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.booking-kicker {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-button {
  width: fit-content;
  margin-top: 12px;
}

.booking-fallback {
  margin-top: 0;
  font-size: 0.92rem;
}

.booking-fallback a {
  color: var(--blue-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: var(--charcoal);
}

.site-footer div,
.site-footer span {
  display: grid;
  gap: 4px;
}

@media (max-width: 1000px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

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

  .hero {
    min-height: auto;
  }

  .service-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .site-header {
    position: static;
  }

  .brand {
    min-width: 0;
  }

  .site-logo {
    width: 78px;
    height: 82px;
  }

  .header-cta {
    width: 100%;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .service-grid,
  .steps,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .booking-button {
    width: 100%;
  }

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

  .network-panel {
    width: 100%;
  }

  .node {
    min-width: 72px;
    font-size: 0.75rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
