:root {
  --navy: #061f4b;
  --navy-2: #082b66;
  --cyan: #12b8cd;
  --cyan-soft: #d9f8fc;
  --steel: #5f7189;
  --text: #213148;
  --paper: #f4f9fd;
  --surface: #ffffff;
  --line: #d4e4f1;
  --shadow: 0 24px 60px rgba(5, 31, 75, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 76px);
  background: rgba(6, 31, 75, 0.94);
  color: white;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  object-position: center 24%;
  border-radius: 6px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--cyan);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: center;
  gap: clamp(28px, 5vw, 82px);
  min-height: calc(100vh - 76px);
  padding: clamp(52px, 8vw, 112px) clamp(18px, 5vw, 76px);
  background:
    linear-gradient(120deg, rgba(6, 31, 75, 0.96), rgba(8, 43, 102, 0.9)),
    repeating-linear-gradient(90deg, transparent 0 72px, rgba(255, 255, 255, 0.06) 72px 73px);
  color: white;
  overflow: hidden;
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 6vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.03rem, 1.7vw, 1.25rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--cyan);
  border-radius: 4px;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  background: var(--cyan);
  color: var(--navy);
}

.button.ghost {
  color: white;
}

.mark {
  justify-self: center;
  width: min(100%, 440px);
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

.mark img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
}

.summary-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: white;
}

.summary-strip div {
  padding: 26px clamp(18px, 4vw, 44px);
  border-right: 1px solid var(--line);
}

.summary-strip strong {
  display: block;
  color: var(--navy);
  font-size: 1.2rem;
}

.summary-strip span {
  color: var(--steel);
}

.about,
.mission-vision,
.services,
.values,
.contact {
  padding: clamp(56px, 8vw, 98px) clamp(18px, 5vw, 76px);
}

.about {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(26px, 5vw, 78px);
  background: var(--surface);
}

.section-title {
  max-width: 780px;
}

.about-copy {
  color: var(--steel);
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
}

.about-copy p:last-child {
  margin-bottom: 0;
}

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

.mission-vision article {
  min-height: 360px;
  padding: clamp(24px, 4vw, 38px);
  background: linear-gradient(145deg, white, var(--cyan-soft));
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.mission-vision span {
  color: var(--cyan);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.mission-vision p,
.service-grid p {
  margin-bottom: 0;
  color: var(--steel);
}

.services {
  background: #eaf4fb;
}

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

.service-grid article {
  min-height: 190px;
  padding: 24px;
  background: var(--surface);
  border-top: 4px solid var(--cyan);
  border-radius: 4px;
}

.values {
  background: var(--surface);
}

.value-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.value-list span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  background: var(--navy);
  color: white;
  border-radius: 4px;
  font-weight: 900;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 5vw, 70px);
  background: var(--navy);
  color: white;
}

.contact h2 {
  color: white;
}

.contact-card {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
}

.contact-card p {
  margin: 0;
}

.contact-card strong {
  display: block;
  color: var(--cyan);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.contact-card a,
.contact-card span {
  color: white;
  font-size: clamp(1.02rem, 2vw, 1.25rem);
  text-decoration: none;
}

@media (max-width: 980px) {
  .hero,
  .about,
  .mission-vision,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .service-grid,
  .summary-strip {
    grid-template-columns: 1fr;
  }

  .summary-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 700px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
    font-size: 0.82rem;
  }

  .brand span {
    max-width: 180px;
  }

  .mission-vision article,
  .service-grid article {
    min-height: auto;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
