:root {
  --ink: #122033;
  --muted: #5d6877;
  --line: #dbe3ea;
  --paper: #f7f9fb;
  --white: #ffffff;
  --blue: #1769aa;
  --blue-dark: #0c3760;
  --green: #13856f;
  --amber: #f3b33d;
  --shadow: 0 18px 55px rgba(18, 32, 51, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, .86);
  border-bottom: 1px solid rgba(219, 227, 234, .78);
  backdrop-filter: blur(16px);
}

.brand img {
  width: min(250px, 58vw);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.site-nav a {
  transition: color .2s ease, background .2s ease;
}

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

.nav-cta {
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue);
  border-radius: 7px;
}

.site-nav .nav-cta:hover {
  color: var(--white);
  background: var(--blue-dark);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 7px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: center;
  gap: 28px;
  padding: 126px clamp(18px, 5vw, 70px) 58px;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-dark);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 24, 40, .92) 0%, rgba(7, 24, 40, .74) 50%, rgba(7, 24, 40, .38) 100%),
    linear-gradient(0deg, rgba(7, 24, 40, .84), rgba(7, 24, 40, .12));
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 840px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow,
.product-band .eyebrow {
  color: var(--amber);
}

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

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(42px, 5.6vw, 72px);
  line-height: 1;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.18;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, .82);
  font-size: 19px;
}

.hero-actions,
.support-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: 7px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

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

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

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, .48);
  background: rgba(255, 255, 255, .1);
}

.section .button.secondary,
.compact .button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

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

.hero-panel {
  display: grid;
  gap: 14px;
  padding: 22px;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.hero-panel strong {
  font-size: 19px;
}

.hero-panel span {
  color: rgba(255, 255, 255, .78);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1160px;
  margin: -34px auto 0;
  padding: 0 clamp(18px, 4vw, 0px);
  position: relative;
  z-index: 2;
}

.trust-strip div {
  display: grid;
  gap: 4px;
  min-height: 112px;
  padding: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.trust-strip div:first-child {
  border-radius: 8px 0 0 8px;
}

.trust-strip div:last-child {
  border-radius: 0 8px 8px 0;
}

.trust-strip strong {
  font-size: 23px;
}

.trust-strip span {
  color: var(--muted);
}

.section,
.split-section,
.contact-section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 94px clamp(18px, 4vw, 0px);
}

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

.section-heading p,
.split-copy p,
.contact-section p {
  color: var(--muted);
  font-size: 18px;
}

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

.service-card {
  overflow: hidden;
  min-height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(18, 32, 51, .07);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
}

.service-card div:not(.icon-mark) {
  padding: 22px;
}

.service-card p,
.feature-list p {
  color: var(--muted);
}

.service-card.accent {
  padding: 24px;
}

.icon-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--white);
  background: var(--green);
  border-radius: 7px;
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-list article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--amber);
  border-radius: 8px;
}

.product-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 44px clamp(24px, 5vw, 54px);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark), #154d50);
  border-radius: 8px;
}

.product-band div {
  max-width: 760px;
}

.product-band h2 {
  margin-bottom: 10px;
}

.product-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .82);
}

.compact {
  padding-top: 76px;
  padding-bottom: 76px;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 38px;
  align-items: center;
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: 26px;
  color: var(--white);
  background: var(--blue-dark);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-card a {
  font-size: 22px;
  font-weight: 800;
}

.contact-card span {
  color: rgba(255, 255, 255, .76);
}

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

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    display: none;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .nav-cta {
    text-align: center;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 132px;
  }

  .hero-panel {
    max-width: 520px;
  }

  .trust-strip,
  .service-grid,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin-top: 0;
    padding: 0;
  }

  .trust-strip div,
  .trust-strip div:first-child,
  .trust-strip div:last-child {
    border-radius: 0;
  }

  .product-band {
    flex-direction: column;
    align-items: flex-start;
    margin-right: 18px;
    margin-left: 18px;
  }
}

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

  h1 {
    font-size: 42px;
  }

  .hero-copy,
  .section-heading p,
  .split-copy p,
  .contact-section p {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    display: grid;
  }
}
