:root {
  --ink: #052b43;
  --ink-soft: #0a4669;
  --blue: #0797dd;
  --copper: #27df89;
  --copper-dark: #087fbd;
  --brand-orange: #ff9e32;
  --brand-red: #f43c1f;
  --ice: #eefafd;
  --paper: #ffffff;
  --muted: #526b78;
  --line: #cde7ee;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(5, 43, 67, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--brand-orange);
  outline-offset: 3px;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.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;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--paper);
  background: rgba(5, 43, 67, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  background: rgba(5, 43, 67, 0.97);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-logo {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  overflow: visible;
  flex: 0 0 auto;
  background: transparent;
  border-radius: 0;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.24));
}

.brand-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  font-size: 1.18rem;
}

.brand-name small {
  font-size: 0.65em;
  font-weight: 600;
  opacity: 0.68;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:not(.nav-cta) {
  color: rgba(255, 255, 255, 0.82);
}

.site-nav a:not(.nav-cta):hover,
.site-nav a:not(.nav-cta):focus-visible {
  color: var(--paper);
}

.nav-cta {
  padding: 10px 18px;
  color: var(--ink);
  background: var(--copper);
  border-radius: 999px;
  transition: background 160ms ease, transform 160ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: #65eca9;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 9px;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--paper);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

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

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 43, 67, 0.98) 0%, rgba(5, 43, 67, 0.91) 29%, rgba(5, 43, 67, 0.3) 66%, rgba(5, 43, 67, 0.16) 100%),
    linear-gradient(0deg, rgba(5, 43, 67, 0.5), transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 116px;
  padding-bottom: 62px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #ffb24f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--copper-dark);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.3rem, 7vw, 6.35rem);
  font-weight: 800;
}

h1 span {
  color: var(--copper);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 4.3vw, 4.15rem);
}

h3 {
  margin-bottom: 14px;
  font-size: 1.6rem;
}

.hero-copy {
  max-width: 640px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.06rem, 1.8vw, 1.3rem);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--ink);
  background: var(--copper);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #65eca9;
}

.button-ghost {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.06);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.12);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 66px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-proof span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-proof span::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--copper);
  border-radius: 50%;
}

.hero-proof span:nth-child(2)::before {
  background: var(--blue);
}

.hero-proof span:nth-child(3)::before {
  background: var(--brand-orange);
}

.section {
  padding-block: 108px;
}

.intro {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 80px;
}

.intro-grid h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.intro-copy {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.8;
}

.services {
  background: var(--ice);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

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

.service-card {
  position: relative;
  min-height: 430px;
  padding: 40px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(5, 43, 67, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-card.featured {
  color: var(--paper);
  background: linear-gradient(145deg, var(--ink-soft), var(--ink));
  border-color: var(--ink-soft);
}

.service-card.featured:nth-child(3) {
  background: linear-gradient(145deg, var(--copper-dark), var(--ink));
}

.service-card.featured:nth-child(5) {
  background: linear-gradient(145deg, #087354, var(--ink));
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-orange) 34%, var(--blue) 66%, var(--copper));
}

.service-number {
  margin-bottom: 70px;
  color: var(--copper-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.featured .service-number {
  color: var(--copper);
}

.service-card > p {
  max-width: 530px;
  margin-bottom: 24px;
  color: var(--muted);
}

.service-card.featured > p {
  color: rgba(255, 255, 255, 0.72);
}

.service-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 20px;
  color: #294c5d;
  font-size: 0.94rem;
  font-weight: 650;
}

.service-card li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 2px;
  background: var(--copper);
}

.service-card.featured li {
  color: rgba(255, 255, 255, 0.82);
}

.process {
  color: var(--paper);
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    var(--ink);
  background-size: 42px 42px;
}

.process-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 96px;
}

.process-heading {
  position: sticky;
  top: 130px;
  align-self: start;
}

.process-heading p:last-child {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
}

.process-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.process-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 27px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.process-list li > span {
  color: var(--copper);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.process-list li:nth-child(2) > span {
  color: #46b9ef;
}

.process-list li:nth-child(3) > span {
  color: var(--brand-orange);
}

.process-list li:nth-child(4) > span {
  color: #ff684a;
}

.process-list strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1.13rem;
}

.process-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.areas {
  background: var(--paper);
}

.areas-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 84px;
  align-items: center;
}

.areas-layout > div:first-child > p:last-child {
  max-width: 480px;
  color: var(--muted);
}

.coverage-card {
  position: relative;
  padding: 42px;
  overflow: hidden;
  color: var(--paper);
  background: linear-gradient(135deg, var(--ink-soft), var(--ink));
  border: 1px solid rgba(39, 223, 137, 0.35);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.coverage-card::after {
  content: "3F";
  position: absolute;
  right: -8px;
  bottom: -34px;
  color: rgba(255, 255, 255, 0.05);
  font-size: 9rem;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.coverage-card > * {
  position: relative;
  z-index: 1;
}

.coverage-label {
  display: block;
  margin-bottom: 14px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.coverage-card strong {
  display: block;
  max-width: 560px;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1.18;
}

.coverage-card p {
  max-width: 590px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.contact {
  padding-top: 0;
}

.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  padding: 64px;
  overflow: hidden;
  color: var(--paper);
  background: linear-gradient(130deg, var(--blue) 0%, var(--ink-soft) 46%, var(--ink) 100%);
  border: 1px solid rgba(39, 223, 137, 0.22);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.contact-card::after {
  content: "3F";
  position: absolute;
  right: -24px;
  bottom: -90px;
  color: rgba(255, 255, 255, 0.04);
  font-size: 15rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.1em;
  pointer-events: none;
}

.contact-card > * {
  position: relative;
  z-index: 1;
}

.contact-card h2 {
  margin-bottom: 14px;
}

.contact-card p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.contact-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 30px;
}

.contact-brand-lockup img {
  display: block;
  width: 88px;
  height: 88px;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.24));
}

.contact-brand-name {
  color: var(--paper);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.contact-brand-name small {
  color: var(--copper);
  font-size: 0.62em;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.contact-actions {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 14px;
}

.button-light {
  width: 100%;
  color: var(--ink);
  background: var(--copper);
}

.button-light:hover,
.button-light:focus-visible {
  background: #65eca9;
}

.button-contact-secondary {
  width: 100%;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}

.button-contact-secondary:hover,
.button-contact-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.62);
}

.email-link {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  text-align: center;
  text-underline-offset: 4px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.6);
  background: #031e2f;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  min-height: 150px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 38px;
}

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

.footer-brand .brand-logo {
  width: 46px;
  height: 46px;
}

.footer-contact {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 3px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  text-underline-offset: 4px;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--paper);
}

.footer-inner p {
  margin: 0;
  font-size: 0.88rem;
}

.footer-inner p:last-child {
  text-align: right;
}

@media (max-width: 860px) {
  .site-nav {
    position: absolute;
    top: 76px;
    right: 20px;
    left: 20px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    background: rgba(5, 43, 67, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  }

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

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

  .nav-cta {
    margin-top: 6px;
    text-align: center;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    min-height: 720px;
  }

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

  .hero-shade {
    background: linear-gradient(90deg, rgba(5, 43, 67, 0.97), rgba(5, 43, 67, 0.7));
  }

  .intro-grid,
  .process-layout,
  .areas-layout,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .process-layout,
  .areas-layout {
    gap: 44px;
  }

  .process-heading {
    position: static;
  }

  .contact-card {
    gap: 34px;
  }

  .contact-actions {
    align-items: flex-start;
  }

  .button-light {
    width: auto;
  }

  .email-link {
    text-align: left;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-block: 36px;
  }

  .footer-inner p:last-child {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .site-nav {
    top: 68px;
    right: 14px;
    left: 14px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding-top: 112px;
    padding-bottom: 44px;
  }

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

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(5, 43, 67, 0.97) 0%, rgba(5, 43, 67, 0.7) 75%, rgba(5, 43, 67, 0.5) 100%),
      linear-gradient(90deg, rgba(5, 43, 67, 0.9), rgba(5, 43, 67, 0.36));
  }

  h1 {
    font-size: clamp(3.05rem, 15vw, 4.5rem);
  }

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

  .button {
    width: 100%;
  }

  .hero-proof {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 46px;
  }
  .section {
    padding-block: 78px;
  }

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

  .service-card {
    min-height: auto;
    padding: 30px 26px;
  }

  .service-number {
    margin-bottom: 44px;
  }

  .coverage-card {
    padding: 32px 26px;
  }

  .contact {
    padding-top: 0;
  }

  .contact-card {
    width: calc(100% - 28px);
    padding: 42px 24px;
    border-radius: 22px;
  }

  .contact-brand-lockup {
    gap: 12px;
  }

  .contact-brand-lockup img {
    width: 70px;
    height: 70px;
  }

  .contact-brand-name {
    font-size: 1.25rem;
  }

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

  .email-link {
    width: 100%;
    overflow-wrap: anywhere;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
