:root {
  --navy: #08233f;
  --blue: #0e5fa8;
  --green: #117d48;
  --teal: #0f8a9b;
  --amber: #f5a10b;
  --purple: #6951a8;
  --ink: #101828;
  --muted: #596579;
  --line: #dde6ec;
  --soft: #f5f8f5;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(8, 35, 63, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(221, 230, 236, 0.8);
  backdrop-filter: blur(16px);
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav a {
  padding: 10px 12px;
  border-radius: 8px;
  white-space: nowrap;
}

.nav a:hover {
  background: #eef5f1;
}

.nav-cta {
  color: var(--white) !important;
  background: var(--navy);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(380px, 0.94fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  min-height: calc(100vh - 150px);
  padding: clamp(44px, 6vw, 74px) clamp(20px, 5vw, 72px) 38px;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(17, 125, 72, 0.12), transparent 30%),
    linear-gradient(145deg, #ffffff 0%, #f7fbf9 48%, #eef4fb 100%);
}

.hero-copy {
  max-width: 650px;
}

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

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

h1 {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(2.45rem, 4vw, 3.65rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-text {
  max-width: 590px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  white-space: nowrap;
}

.button-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button.primary {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 14px 30px rgba(8, 35, 63, 0.18);
}

.button.secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 9px 12px;
  color: #16324f;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-media {
  position: relative;
  min-height: 420px;
}

.hero-media::before {
  position: absolute;
  inset: -18px -18px auto auto;
  width: 62%;
  aspect-ratio: 1;
  content: "";
  border: 18px solid var(--amber);
  border-left-color: var(--navy);
  border-bottom-color: var(--navy);
  border-radius: 50%;
  opacity: 0.95;
}

.hero-media img {
  position: relative;
  width: 100%;
  height: min(48vw, 540px);
  min-height: 390px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mission-badge {
  position: absolute;
  left: -28px;
  bottom: 34px;
  display: grid;
  place-items: center;
  width: clamp(148px, 16vw, 196px);
  aspect-ratio: 1;
  padding: 18px;
  color: var(--white);
  text-align: center;
  background: var(--navy);
  border: 8px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 18px 46px rgba(8, 35, 63, 0.28);
}

.mission-badge span {
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mission-badge strong {
  color: var(--amber);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1;
  text-transform: uppercase;
}

.section {
  padding: clamp(58px, 8vw, 96px) clamp(20px, 5vw, 72px);
}

.section-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.intro-band {
  color: var(--white);
  background: var(--navy);
}

.split {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

.split h2,
.cta-section h2 {
  margin-bottom: 0;
}

.split p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.compact {
  max-width: 900px;
}

.section-heading h2,
.split h2,
.cta-section h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.03;
  letter-spacing: 0;
}

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  max-width: 1240px;
  margin: 0 auto;
}

.service-card {
  min-height: 280px;
  padding: 24px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--blue);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(16, 24, 40, 0.06);
}

.service-card h3,
.why-item h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.service-card p,
.why-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
}

.icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.accent-green {
  border-top-color: var(--green);
}

.accent-green .icon {
  background: var(--green);
}

.accent-amber {
  border-top-color: var(--amber);
}

.accent-amber .icon {
  background: var(--amber);
}

.accent-purple {
  border-top-color: var(--purple);
}

.accent-purple .icon {
  background: var(--purple);
}

.accent-teal {
  border-top-color: var(--teal);
}

.accent-teal .icon {
  background: var(--teal);
}

.audience-section {
  background: var(--soft);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.audience-item {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 86px;
  padding: 16px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid #dfe9dd;
  border-radius: 8px;
  font-weight: 850;
  box-shadow: 0 10px 28px rgba(17, 125, 72, 0.07);
}

.audience-item span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  background: #ecf6ee;
  border-radius: 50%;
  color: var(--green);
}

.audience-item svg,
.why-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1120px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.why-item {
  min-height: 210px;
  padding: 30px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.why-item:nth-child(3n) {
  border-right: 0;
}

.why-item:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.why-icon {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
  color: var(--green);
  background: #ecf6ee;
  border: 2px solid #b9dec4;
  border-radius: 50%;
  font-size: 1.35rem;
  font-weight: 900;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
  align-items: stretch;
  gap: clamp(24px, 5vw, 56px);
  margin: 0 clamp(20px, 5vw, 72px) 0;
  padding: clamp(30px, 5vw, 50px);
  color: var(--white);
  background:
    linear-gradient(125deg, rgba(8, 35, 63, 0.98), rgba(11, 62, 98, 0.98)),
    radial-gradient(circle at 78% 34%, rgba(245, 161, 11, 0.34), transparent 34%);
  border-radius: 8px;
}

.cta-section .eyebrow {
  color: var(--amber);
}

.cta-section h2 {
  color: var(--white);
  max-width: 850px;
}

.cta-copy p:last-child {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.lead-form {
  display: grid;
  width: 100%;
  align-self: center;
  gap: 16px;
  padding: clamp(20px, 3vw, 28px);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.form-heading h3 {
  margin: 0 0 6px;
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1.15;
  text-transform: none;
}

.form-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.form-row {
  display: flex !important;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.form-row label {
  display: block;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.form-row input {
  display: block;
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  font: inherit;
  font-weight: 700;
  outline: none;
  box-sizing: border-box;
}

.form-row input:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 4px rgba(245, 161, 11, 0.2);
}

.form-row input::placeholder {
  color: #8a95a5;
  font-weight: 600;
}

.lead-form .button {
  width: 100%;
  margin-top: 4px;
  cursor: pointer;
  font: inherit;
}

.form-note {
  min-height: 20px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

@media (max-width: 920px) {
  .cta-section {
    grid-template-columns: 1fr;
  }
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: #061a31;
}

.footer-brand img {
  width: 160px;
  padding: 8px;
  background: var(--white);
  border-radius: 8px;
}

.footer-brand p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

address {
  display: grid;
  gap: 5px;
  font-style: normal;
  text-align: right;
}

address span {
  color: rgba(255, 255, 255, 0.75);
}

address a {
  color: var(--amber);
  font-size: 1.25rem;
  font-weight: 900;
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-media {
    min-height: 0;
  }

  .hero-media img {
    height: 440px;
  }

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

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

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

  .brand img {
    width: 154px;
  }

  .nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 6px;
    overflow: visible;
    padding-bottom: 0;
    font-size: 0.86rem;
  }

  .nav a {
    padding: 8px 9px;
  }

  .hero {
    min-height: 0;
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.25rem);
  }

  .hero-media img {
    min-height: 330px;
    height: 380px;
  }

  .trust-row {
    display: none;
  }

  .mission-badge {
    left: 14px;
    bottom: 18px;
  }

  .split,
  .why-grid {
    grid-template-columns: 1fr;
  }

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

  .service-card {
    min-height: 0;
  }

  .why-item,
  .why-item:nth-child(3n),
  .why-item:nth-last-child(-n + 3) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .why-item:last-child {
    border-bottom: 0;
  }

  .cta-section,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-section {
    display: grid;
    grid-template-columns: 1fr;
  }

  address {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .button {
    width: 100%;
  }

  .nav a {
    padding-inline: 10px;
  }

  .hero-media::before {
    width: 78%;
    border-width: 12px;
  }

  .mission-badge {
    width: 132px;
    border-width: 6px;
  }
}
