:root {
  --navy: #0a315a;
  --blue: #0f6ca8;
  --green: #3f9b17;
  --ink: #102033;
  --muted: #5f6f7f;
  --line: #dce7ef;
  --soft: #f4f8fb;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(10, 49, 90, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.menu-toggle {
  position: fixed;
  inset: 0 auto auto 0;
  opacity: 0;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 12px clamp(20px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 156px;
  height: 62px;
  object-fit: contain;
  object-position: left center;
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2.2vw, 32px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

nav a:hover,
nav a:focus-visible {
  color: var(--navy);
}

.header-action,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  font-weight: 800;
  line-height: 1;
}

.header-action {
  padding: 0 18px;
  color: var(--white);
  background: var(--green);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  cursor: pointer;
  flex-direction: column;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy);
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 19;
  display: none;
  background: rgba(10, 32, 51, 0.46);
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 20;
  width: min(84vw, 340px);
  height: 100vh;
  padding: 20px;
  background: var(--white);
  box-shadow: -20px 0 50px rgba(10, 49, 90, 0.18);
  transform: translateX(102%);
  transition: transform 220ms ease;
}

.menu-toggle:checked ~ .mobile-drawer {
  transform: translateX(0);
}

.menu-toggle:checked ~ .menu-backdrop {
  display: block;
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.drawer-head img {
  width: 126px;
  height: 62px;
  object-fit: contain;
  object-position: left center;
}

.drawer-close {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--navy);
  font-size: 1.3rem;
  font-weight: 900;
  cursor: pointer;
}

.mobile-drawer > a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-weight: 900;
}

.drawer-contact {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding: 16px;
  border-radius: 8px;
  background: var(--soft);
}

.drawer-contact span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.drawer-contact a {
  color: var(--navy);
  font-weight: 900;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  min-height: calc(100vh - 87px);
  padding: clamp(48px, 7vw, 96px) clamp(20px, 6vw, 84px) 36px;
  background:
    linear-gradient(110deg, rgba(10, 49, 90, 0.96), rgba(11, 86, 136, 0.88)),
    url("assets/image20.jpg") center / cover;
  color: var(--white);
}

.hero-content {
  max-width: 740px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #89d85b;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 4.25rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.2rem;
  line-height: 1.2;
}

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

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

.button {
  padding: 0 22px;
}

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

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

.hero-panel {
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.hero-panel img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.hero-slider {
  position: relative;
}

.slides {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--navy);
}

.hero-panel .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  opacity: 0;
  transition: opacity 480ms ease;
}

.hero-panel .slide.active {
  opacity: 1;
}

.slider-controls {
  position: absolute;
  left: 50%;
  bottom: 112px;
  z-index: 2;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.slider-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  cursor: pointer;
}

.slider-dot.active {
  width: 28px;
  background: var(--green);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.metric-strip div {
  padding: 18px 10px;
  background: rgba(10, 49, 90, 0.86);
  text-align: center;
}

.metric-strip strong {
  display: block;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1;
}

.metric-strip span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-band {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 20px clamp(20px, 5vw, 72px);
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.trust-band span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
}

.section {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 6vw, 84px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.section-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.profile {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  background: var(--soft);
}

.image-frame {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.value-grid div,
.services-grid article {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.value-grid span {
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 900;
}

.value-grid p,
.services-grid p,
.section-heading p,
.profile p,
.mission p,
.training p,
.operations p,
.footer p {
  color: var(--muted);
}

.mission {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  padding: 0;
  background: var(--line);
}

.mission > div {
  padding: clamp(48px, 7vw, 86px) clamp(20px, 6vw, 84px);
  background: var(--white);
}

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

.service-visual {
  overflow: hidden;
  margin-bottom: 22px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-visual img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

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

.service-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  font-size: 0.84rem;
  font-weight: 900;
}

.services-grid article:nth-child(even) .service-icon {
  background: var(--green);
}

.training {
  background: var(--soft);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  content: "✓";
}

.image-stack {
  display: grid;
  gap: 14px;
}

.image-stack img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.compliance-grid div {
  padding: 24px;
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: var(--soft);
  color: var(--navy);
  font-weight: 900;
}

.operations {
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: #eef6fb;
}

.operations img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: var(--white);
}

.contact-section p {
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.contact-grid article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.contact-grid span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-grid a {
  color: var(--navy);
  font-size: 1.04rem;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.footer {
  display: grid;
  grid-template-columns: minmax(240px, 0.5fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: clamp(48px, 7vw, 76px) clamp(20px, 6vw, 84px);
  color: var(--white);
  background: var(--navy);
}

.footer img {
  width: 176px;
  height: 96px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 18px;
  mix-blend-mode: screen;
}

.footer h2 {
  color: var(--white);
}

.footer p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
}

.footer .website {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-contact a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 7px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  nav {
    display: none;
  }

  .header-action {
    justify-self: end;
  }

  .menu-button {
    display: inline-flex;
  }

  .hero,
  .profile,
  .split,
  .operations,
  .contact-section,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .value-grid,
  .services-grid,
  .contact-grid,
  .compliance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 10px 16px;
    gap: 12px;
  }

  .brand img {
    width: 128px;
    height: 54px;
  }

  .header-action {
    display: none;
  }

  .menu-button {
    justify-self: end;
  }

  .hero,
  .section,
  .mission > div,
  .footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: clamp(2rem, 9vw, 2.25rem);
    line-height: 1.04;
  }

  .hero-copy {
    font-size: 1rem;
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

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

  .hero > *,
  .hero-content,
  .hero-panel {
    width: 100%;
    max-width: 100%;
  }

  .slides {
    aspect-ratio: 4 / 3;
  }

  .slider-controls {
    bottom: 184px;
  }

  .service-visual img {
    aspect-ratio: 4 / 3;
  }

  .metric-strip,
  .value-grid,
  .services-grid,
  .mission,
  .contact-grid,
  .compliance-grid {
    grid-template-columns: 1fr;
  }

  .footer-contact {
    display: grid;
  }
}
