:root {
  --ink: #08162f;
  --body: #34425a;
  --muted: #66758f;
  --line: #d9e4f2;
  --panel: #ffffff;
  --soft: #f5f9fe;
  --blue: #249cff;
  --blue-dark: #126cc2;
  --violet: #6856f5;
  --teal: #14a79d;
  --shadow: 0 20px 60px rgba(8, 22, 47, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px 5vw;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 228, 242, 0.8);
  backdrop-filter: blur(16px);
}

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

.brand img {
  width: 204px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 650;
}

.nav a {
  min-height: 42px;
  padding: 9px 14px;
  border-radius: 8px;
  text-decoration: none;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--blue-dark);
  background: #eef6ff;
  outline: none;
}

.nav .nav-cta {
  color: #ffffff;
  background: var(--ink);
}

.nav .nav-cta:hover,
.nav .nav-cta:focus-visible {
  color: #ffffff;
  background: var(--blue-dark);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(760px, calc(92vh - 78px));
  padding: 68px 5vw 44px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.91) 42%, rgba(255, 255, 255, 0.52) 64%, rgba(255, 255, 255, 0.1) 100%),
    url("hero-operations.png") center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--line);
}

.hero-content {
  position: relative;
  width: min(760px, 100%);
}

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

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.06;
}

h1 {
  max-width: 14ch;
  font-size: 4.6rem;
  font-weight: 780;
}

h2 {
  font-size: 2.45rem;
  font-weight: 760;
}

h3 {
  font-size: 1.08rem;
  font-weight: 760;
}

.tagline {
  margin: 18px 0 0;
  color: var(--violet);
  font-size: 1.45rem;
  font-weight: 720;
}

.hero-copy {
  max-width: 660px;
  margin: 22px 0 0;
  color: #26364e;
  font-size: 1.16rem;
}

.hero-actions,
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-actions {
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 760;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

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

.button.primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 14px 30px rgba(36, 156, 255, 0.22);
}

.button.primary:hover,
.button.primary:focus-visible {
  box-shadow: 0 18px 36px rgba(36, 156, 255, 0.28);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border-color: var(--line);
}

.trust-strip {
  margin-top: 28px;
}

.trust-strip span {
  min-height: 36px;
  padding: 8px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 680;
}

.section {
  width: min(1180px, 90vw);
  margin: 0 auto;
  padding: 84px 0;
}

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

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 52px;
  align-items: end;
}

.intro > p {
  margin: 0;
  color: var(--body);
  font-size: 1.1rem;
}

.services {
  padding-top: 18px;
}

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

.service-card,
.process-grid article,
.coverage-list > div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.service-card {
  min-height: 255px;
  padding: 24px;
  box-shadow: 0 16px 42px rgba(8, 22, 47, 0.06);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  color: #ffffff;
  background: var(--ink);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 850;
}

.service-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.service-card:nth-child(2n) .service-icon {
  background: var(--blue-dark);
}

.service-card:nth-child(3n) .service-icon {
  background: var(--teal);
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p,
.process-grid p,
.coverage-list p {
  margin: 0;
  color: var(--muted);
}

.split-band {
  width: 100%;
  max-width: none;
  padding: 84px 0;
  background:
    linear-gradient(180deg, #ffffff 0%, var(--soft) 100%);
  border-block: 1px solid var(--line);
}

.split-band .section-heading,
.process-grid {
  width: min(1180px, 90vw);
  margin-inline: auto;
}

.split-band .section-heading {
  max-width: none;
}

.split-band .section-heading > * {
  max-width: 740px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.process-grid article {
  min-height: 220px;
  padding: 24px;
}

.process-grid article:nth-child(2n) .service-icon {
  background: var(--blue-dark);
}

.process-grid article:nth-child(3n) .service-icon {
  background: var(--teal);
}

.process-grid h3 {
  margin-bottom: 10px;
}

.coverage-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.coverage-list > div {
  padding: 24px;
}

.coverage-list h3 {
  margin-bottom: 10px;
}

.contact {
  padding: 92px 5vw;
  background: var(--ink);
}

.contact-inner {
  width: min(860px, 100%);
  margin: 0 auto;
  text-align: center;
}

.contact .eyebrow {
  color: #72d6ff;
}

.contact h2,
.contact p {
  color: #ffffff;
}

.contact p {
  max-width: 680px;
  margin: 18px auto 30px;
  color: #d9e5f6;
  font-size: 1.08rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 5vw;
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 168px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: right;
}

@media (max-width: 920px) {
  .site-header {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    min-height: 0;
  }

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

  .hero {
    min-height: auto;
    padding-top: 74px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.9) 48%, rgba(255, 255, 255, 0.68) 100%),
      url("hero-operations.png") 62% center / cover no-repeat;
  }

  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2rem;
  }

  .intro,
  .service-grid,
  .process-grid,
  .coverage-list {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 22px;
  }

  .brand img {
    width: 184px;
  }

  .nav {
    gap: 4px;
    font-size: 0.88rem;
  }

  .nav a {
    padding-inline: 10px;
  }

  .hero {
    padding: 56px 22px 48px;
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .tagline {
    font-size: 1.16rem;
  }

  .hero-copy,
  .intro > p {
    font-size: 1rem;
  }

  .hero-actions,
  .trust-strip {
    align-items: stretch;
  }

  .button,
  .trust-strip span {
    width: 100%;
  }

  .service-card,
  .process-grid article,
  .coverage-list > div {
    padding: 20px;
  }

  .contact {
    padding: 72px 22px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding-inline: 22px;
  }

  .site-footer p {
    text-align: left;
  }
}
