:root {
  --navy: #06284b;
  --ink: #0c1d2d;
  --green: #4f8f2f;
  --green-light: #86b85b;
  --mist: #eef3f2;
  --line: #d9e2df;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(6, 40, 75, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.55;
}

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

.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;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 8px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: rgba(6, 40, 75, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
  font-family: Inter, Arial, sans-serif;
}

.brand img {
  display: block;
  width: clamp(58px, 6vw, 72px);
  height: auto;
  padding: 3px 6px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 8px;
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-text strong {
  color: var(--white);
  font-size: 1.65rem;
  font-weight: 800;
}

.brand-text small {
  color: #b8d797;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
}

.site-nav a:hover,
.nav-cta {
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 40, 75, 0.94) 0%, rgba(6, 40, 75, 0.78) 42%, rgba(6, 40, 75, 0.2) 78%),
    linear-gradient(180deg, rgba(6, 40, 75, 0.4), rgba(6, 40, 75, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 40px));
  padding: 150px 0 84px;
  margin-left: clamp(20px, 7vw, 92px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--green-light);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  max-width: 680px;
  font-size: clamp(2.9rem, 5.7vw, 5rem);
}

h2 {
  max-width: 820px;
  font-size: clamp(2rem, 4.4vw, 3.8rem);
}

h3 {
  font-size: 1.2rem;
  line-height: 1.18;
}

.hero-copy {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 8px;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
}

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

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.36);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: var(--white);
  background: var(--green);
}

.trust-strip span {
  padding: 22px clamp(18px, 4vw, 48px);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.94rem;
  font-weight: 800;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.section {
  padding: clamp(70px, 10vw, 130px) clamp(20px, 6vw, 92px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 7vw, 86px);
  align-items: end;
}

.intro p:last-child {
  margin: 0;
  color: #425468;
  font-size: 1.22rem;
}

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

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 34px;
}

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

.service-card {
  min-height: 255px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(6, 40, 75, 0.04);
}

.service-card p,
.steps p,
.contact-copy p {
  color: #526273;
}

.icon,
.contact-icon {
  position: relative;
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--green);
  border: 2px solid currentColor;
  border-radius: 8px;
}

.shield {
  border-radius: 18px 18px 20px 20px;
}

.shield::after,
.checklist::after,
.audit::after,
.certificate::after,
.phone::after,
.mail::after,
.pin::after {
  content: "";
  position: absolute;
}

.shield::after {
  width: 13px;
  height: 7px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-45deg);
}

.checklist::before {
  content: "";
  width: 20px;
  height: 17px;
  border-top: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
}

.checklist::after {
  width: 19px;
  height: 3px;
  background: currentColor;
}

.helmet-icon {
  border-radius: 30px 30px 8px 8px;
}

.helmet-icon::after {
  content: "";
  width: 28px;
  height: 4px;
  background: currentColor;
}

.audit::before {
  content: "";
  width: 22px;
  height: 22px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.audit::after {
  right: 8px;
  bottom: 7px;
  width: 12px;
  height: 3px;
  background: currentColor;
  transform: rotate(45deg);
}

.certificate::before {
  content: "";
  width: 23px;
  height: 27px;
  border: 3px solid currentColor;
}

.certificate::after {
  bottom: 7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
}

.support::before,
.support::after {
  content: "";
  width: 13px;
  height: 13px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.support::after {
  margin-left: 16px;
}

.band {
  padding: clamp(70px, 10vw, 125px) clamp(20px, 6vw, 92px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 40, 75, 0.98), rgba(12, 73, 107, 0.95)),
    var(--navy);
}

.band .section-kicker {
  color: #a8d177;
}

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

.steps div {
  padding: 28px 0;
  border-top: 2px solid rgba(255, 255, 255, 0.22);
}

.steps strong {
  display: block;
  margin-bottom: 18px;
  color: var(--green-light);
  font-family: Inter, Arial, sans-serif;
  font-size: 1.5rem;
}

.steps p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 500px);
  gap: clamp(30px, 7vw, 90px);
  padding: clamp(70px, 10vw, 125px) clamp(20px, 6vw, 92px);
  align-items: start;
}

.contact-panel {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-panel a,
.contact-panel p {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  font-weight: 800;
  overflow-wrap: anywhere;
  border-bottom: 1px solid var(--line);
}

.contact-panel p:last-child {
  border-bottom: 0;
}

.contact-panel small {
  display: block;
  color: var(--green);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.contact-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  margin: 0;
  border-radius: 50%;
}

.phone::after {
  width: 18px;
  height: 18px;
  border: 3px solid currentColor;
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(20deg);
}

.mail::after {
  width: 20px;
  height: 14px;
  border: 3px solid currentColor;
}

.mail::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: translateY(-4px) rotate(-45deg);
}

.pin::after {
  width: 14px;
  height: 14px;
  border: 3px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 6vw, 92px);
  color: rgba(255, 255, 255, 0.74);
  background: #031a32;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--navy);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    border-radius: 8px;
  }

  .hero {
    min-height: 780px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(6, 40, 75, 0.94) 0%, rgba(6, 40, 75, 0.82) 54%, rgba(6, 40, 75, 0.38) 100%),
      rgba(6, 40, 75, 0.45);
  }

  .hero-content {
    width: calc(100% - 40px);
    padding-top: 128px;
    margin-inline: 20px;
  }

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

  .trust-strip span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  }
}

@media (max-width: 560px) {
  body {
    font-size: 17px;
  }

  .site-header {
    min-height: 70px;
    padding-inline: 16px;
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    width: 52px;
  }

  .brand-text strong {
    font-size: 1.25rem;
  }

  .brand-text small {
    font-size: 0.64rem;
  }

  .hero {
    min-height: 720px;
  }

  h1 {
    font-size: 2.65rem;
  }

  .button {
    width: 100%;
  }

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

  .contact-panel {
    padding: 20px;
  }

  .site-footer {
    flex-direction: column;
  }
}
