:root {
  color-scheme: light;
  --ink: #102235;
  --muted: #526579;
  --line: #d9e3eb;
  --soft: #f3f7fa;
  --brand: #138f89;
  --brand-dark: #071525;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: var(--brand);
}

.topbar {
  align-items: center;
  background: rgba(7, 21, 37, 0.94);
  color: var(--white);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 16px clamp(18px, 4vw, 44px);
  position: sticky;
  top: 0;
  z-index: 5;
}

.brand {
  align-items: center;
  color: var(--white);
  display: inline-flex;
  font-weight: 850;
  gap: 10px;
  text-decoration: none;
}

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

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

.nav a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.hero {
  background:
    linear-gradient(115deg, rgba(7, 21, 37, 0.95), rgba(8, 38, 61, 0.82), rgba(7, 21, 37, 0.74)),
    var(--hero-image, url("/assets/assets/images/Helicopter.jpg")) center/cover;
  color: var(--white);
  min-height: 560px;
  padding: clamp(58px, 9vw, 118px) clamp(18px, 4vw, 44px);
}

.wrap {
  margin: 0 auto;
  max-width: 1180px;
}

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

.eyebrow {
  color: #92eee3;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  font-size: clamp(38px, 7vw, 72px);
  margin: 0 0 18px;
}

h2 {
  font-size: clamp(30px, 4.5vw, 46px);
  margin: 0 0 16px;
}

h3 {
  font-size: 22px;
  margin: 0 0 8px;
}

.lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 22px);
  margin: 0 0 28px;
  max-width: 740px;
}

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

.button {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  color: var(--white);
  display: inline-flex;
  font-weight: 850;
  min-height: 48px;
  padding: 12px 18px;
  text-decoration: none;
}

.button.primary {
  background: var(--brand);
  border-color: var(--brand);
}

.section {
  padding: clamp(54px, 8vw, 88px) clamp(18px, 4vw, 44px);
}

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

.intro {
  color: var(--muted);
  font-size: 18px;
  max-width: 840px;
}

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

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.white .card {
  background: var(--soft);
}

.card p,
.faq p {
  color: var(--muted);
  margin: 0;
}

.proof {
  background: #071525;
  color: var(--white);
}

.proof .intro,
.proof .card p {
  color: rgba(255, 255, 255, 0.78);
}

.proof .card {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
}

.image-row {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.2fr 0.8fr;
  margin-top: 28px;
}

.image-row img {
  background: #dbe6ef;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.links a {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 800;
  padding: 10px 12px;
  text-decoration: none;
}

.faq {
  border-top: 1px solid var(--line);
  margin-top: 20px;
  padding-top: 20px;
}

.cta-band {
  background: linear-gradient(115deg, #071525, #0e3b55);
  color: var(--white);
  padding: clamp(48px, 7vw, 72px) clamp(18px, 4vw, 44px);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  max-width: 760px;
}

.footer {
  background: #06111d;
  color: rgba(255, 255, 255, 0.74);
  padding: 28px clamp(18px, 4vw, 44px);
}

.footer a {
  color: rgba(255, 255, 255, 0.86);
  margin-right: 14px;
  text-decoration: none;
}

@media (max-width: 820px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .grid,
  .grid.two,
  .image-row {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }
}
