:root {
  --ink: #17202a;
  --muted: #405261;
  --soft: #667685;
  --line: #d8dee6;
  --page: #f7f8fa;
  --white: #ffffff;
  --navy: #123c69;
  --navy-dark: #0c2a4a;
  --green: #2e7d6b;
  --green-soft: #e7f4f0;
  --orange: #d9822b;
  --orange-soft: #fff2e6;
  --blue-soft: #e8eef5;
  color: var(--ink);
  background: var(--page);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--page);
}

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(216, 222, 230, 0.78);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
  color: var(--navy);
  font-weight: 850;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  font-size: 0.78rem;
}

.nav-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.button-primary {
  border-color: var(--orange);
  color: var(--navy-dark);
  background: var(--orange);
}

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

.hero {
  position: relative;
  min-height: 92vh;
  padding: 132px 18px 72px;
  color: var(--white);
  background-image:
    linear-gradient(112deg, rgba(12, 42, 74, 0.98) 0%, rgba(18, 60, 105, 0.88) 48%, rgba(46, 125, 107, 0.72) 100%),
    url("https://images.unsplash.com/photo-1690192079529-9fd57e5b24d0?q=78&w=1600&auto=format&fit=crop");
  background-position: center;
  background-size: cover;
}

.section-inner,
.hero-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(92vh - 204px);
  align-content: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: 3.25rem;
  line-height: 1;
  letter-spacing: 0;
}

.hero-subhead {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.photo-credit {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.photo-credit a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.usp-banner {
  border-bottom: 1px solid #bad7cf;
  background: var(--green-soft);
}

.usp-banner .section-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  color: #184f45;
  font-weight: 850;
}

.proof-dot {
  display: inline-block;
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.section {
  padding: 64px 18px;
}

.section-alt {
  background: var(--white);
}

.section h2 {
  max-width: 720px;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 2rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.lead-text {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.lead-layout {
  display: grid;
  gap: 28px;
  align-items: center;
}

.lead-figure {
  margin: 0;
}

.lead-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 18px 48px rgba(18, 60, 105, 0.16);
}

.lead-figure figcaption {
  margin-top: 8px;
  color: var(--soft);
  font-size: 0.78rem;
}

.lead-text strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.24rem;
}

.three-step {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.step {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  border-radius: 8px;
  padding: 20px;
  background: var(--white);
}

.step-number {
  color: var(--green);
  font-weight: 900;
}

.step strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.step p,
.reason p,
.proof-card p,
.serve-panel p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.benefit-list li {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
  line-height: 1.55;
}

.benefit-list li::before {
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.reason-grid,
.proof-grid,
.serve-grid {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.reason,
.proof-card,
.serve-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--white);
}

.reason h3,
.proof-card h3,
.serve-panel h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.about-band {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(18, 60, 105, 0.98), rgba(18, 60, 105, 0.9)),
    var(--navy);
}

.about-band h2 {
  color: var(--white);
}

.about-band p {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.72;
}

.full-stop {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--orange-soft);
}

.full-stop strong {
  display: block;
  max-width: 780px;
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 2rem;
  line-height: 1.12;
}

.offer {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(12, 42, 74, 0.98), rgba(46, 125, 107, 0.92)),
    var(--navy);
}

.offer h2,
.offer p {
  color: var(--white);
}

.offer p {
  max-width: 760px;
  line-height: 1.65;
}

.reassurance {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.footer {
  padding: 24px 18px;
  color: var(--soft);
  background: var(--white);
}

.footer .section-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

@media (max-width: 620px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero {
    min-height: 88vh;
    padding-top: 184px;
  }

  h1 {
    font-size: 2.75rem;
  }

  .section h2,
  .full-stop strong {
    font-size: 1.68rem;
  }
}

@media (min-width: 760px) {
  .site-header {
    padding-right: 28px;
    padding-left: 28px;
  }

  .hero {
    padding-right: 28px;
    padding-left: 28px;
  }

  .section {
    padding: 82px 28px;
  }

  .usp-banner .section-inner {
    padding-right: 28px;
    padding-left: 28px;
  }

  h1 {
    font-size: 4.6rem;
  }

  .hero-subhead {
    font-size: 1.28rem;
  }

  .three-step,
  .proof-grid,
  .serve-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lead-layout {
    grid-template-columns: minmax(0, 1.06fr) minmax(280px, 0.74fr);
  }

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

@media (min-width: 1080px) {
  .reason-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}