:root {
  --ink: #142033;
  --muted: #5d6a7d;
  --line: #dce4eb;
  --paper: #f7fafc;
  --white: #ffffff;
  --blue: #155e8f;
  --blue-dark: #0e3d5d;
  --green: #2f8f6b;
  --gold: #c48b3f;
  --shadow: 0 24px 60px rgba(20, 32, 51, 0.14);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background: var(--paper);
}

body.nav-open {
  overflow: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

.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: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 35px rgba(20, 32, 51, 0.1);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: inline-flex;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.brand-mark svg {
  display: block;
  width: 100%;
  height: 100%;
}

.brand-mark rect {
  fill: transparent;
  stroke: currentColor;
  stroke-width: 2;
}

.brand-mark-letter {
  fill: currentColor;
}

.brand-mark-accent {
  fill: none;
  stroke: #7dd7ff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-mark-node {
  fill: #7dd7ff;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.2;
}

.brand small {
  color: currentColor;
  font-size: 0.76rem;
  opacity: 0.76;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a,
.header-call {
  opacity: 0.88;
}

.site-nav a:hover,
.header-call:hover {
  opacity: 1;
}

.header-call {
  padding: 10px 16px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  color: inherit;
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 22, 35, 0.82) 0%, rgba(10, 22, 35, 0.62) 38%, rgba(10, 22, 35, 0.16) 70%, rgba(10, 22, 35, 0.08) 100%),
    linear-gradient(0deg, rgba(10, 22, 35, 0.2), rgba(10, 22, 35, 0.02));
}

.hero-content {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 130px 0 72px;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow,
.cta-section .eyebrow {
  color: #a6e6cf;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 7vw, 6.4rem);
  line-height: 0.94;
}

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

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--white);
  background: var(--blue);
}

.button.primary:hover {
  background: var(--blue-dark);
}

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

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.button.light {
  color: var(--white);
}

.button.secondary.light {
  color: var(--blue-dark);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(850px, 100%);
  margin: 54px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.trust-strip div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.trust-strip dt {
  font-weight: 900;
  font-size: 1.05rem;
}

.trust-strip dd {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 120px) 0;
}

.intro {
  max-width: 940px;
  text-align: center;
}

.intro p,
.section-heading p,
.plan-card p,
.service-card p,
.timeline p,
.cta-section p {
  color: var(--muted);
}

.intro p {
  margin: 0 auto;
  max-width: 760px;
  font-size: 1.12rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading.compact {
  display: block;
  max-width: 820px;
}

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

.service-card,
.plan-card,
.timeline article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 35px rgba(20, 32, 51, 0.06);
}

.service-card {
  padding: 24px;
}

.service-card span,
.timeline span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: var(--radius);
  color: var(--blue);
  background: #e8f3f8;
  font-weight: 900;
}

.plan-card {
  position: relative;
  padding: 28px;
}

.plan-card.featured {
  border-color: rgba(21, 94, 143, 0.38);
  box-shadow: var(--shadow);
}

.badge {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--blue-dark) !important;
  background: #dff0f5;
  font-size: 0.78rem;
  font-weight: 900;
}

.price {
  margin-bottom: 14px;
  color: var(--ink) !important;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.plan-card ul {
  padding-left: 19px;
  margin: 22px 0 0;
  color: var(--muted);
}

.plan-card li + li {
  margin-top: 8px;
}

.process {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 46px;
  align-items: start;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline article {
  padding: 24px;
}

.timeline span {
  margin-bottom: 14px;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto clamp(70px, 9vw, 120px);
  padding: clamp(34px, 5vw, 56px);
  border-radius: var(--radius);
  color: var(--white);
  background: #15344f;
  box-shadow: var(--shadow);
}

.cta-section h2 {
  margin-bottom: 14px;
}

.cta-section p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 36px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer-brand .brand-mark-letter {
  fill: var(--blue);
}

.footer-brand .brand-mark rect {
  stroke: var(--blue);
}

address {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  font-style: normal;
  font-weight: 800;
}

address a {
  color: var(--blue-dark);
  overflow-wrap: anywhere;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 12px;
  }

  .header-call {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(10, 22, 35, 0.84), rgba(10, 22, 35, 0.44));
  }

  .section-heading,
  .process,
  .cta-section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .brand small {
    display: none;
  }

  .brand strong {
    max-width: 210px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(10, 22, 35, 0.9), rgba(10, 22, 35, 0.48));
  }

  .hero-content {
    padding-top: 118px;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-strip,
  .service-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }

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

  address {
    justify-content: flex-start;
  }
}
