:root {
  --blue: #1156ad;
  --navy: #050f56;
  --deep-blue: #003f8d;
  --light-blue: #5bb0e5;
  --orange: #f47a00;
  --gold: #c27b00;
  --ink: #111a36;
  --muted: #4d5774;
  --line: #d9e2ef;
  --paper: #ffffff;
  --soft: #f5f8fc;
  --shadow: 0 22px 50px rgba(5, 15, 86, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img,
svg {
  display: block;
}

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

button,
input,
textarea {
  font: inherit;
}

.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;
}

.section-inner {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 22px clamp(22px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  transition:
    padding 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.site-header.scrolled,
.site-header.nav-open {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 36px rgba(5, 15, 86, 0.12);
}

.brand img {
  width: min(238px, 100%);
  height: 72px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}

.site-nav {
  justify-self: center;
  display: flex;
  gap: clamp(18px, 3vw, 42px);
  color: var(--navy);
  font-size: 0.98rem;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  padding: 12px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 4px;
  padding: 0 24px;
  color: #ffffff;
  background: linear-gradient(180deg, #ff8b09, #d96700);
  box-shadow: 0 10px 20px rgba(244, 122, 0, 0.24);
  font-weight: 850;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(244, 122, 0, 0.28);
}

.header-button {
  min-width: 208px;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  padding: 136px clamp(22px, 6vw, 90px) 96px;
  background: #ffffff;
}

.hero-photo,
.hero-treatment {
  position: absolute;
  inset: 0;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.8) sepia(0.08) hue-rotate(174deg) contrast(1.08) brightness(1.08);
}

.hero-treatment {
  background:
    radial-gradient(circle at 73% 45%, rgba(17, 86, 173, 0.26), transparent 32%),
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.97) 31%, rgba(255, 255, 255, 0.73) 46%, rgba(255, 255, 255, 0.1) 67%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(17, 86, 173, 0.34));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-logo {
  width: min(300px, 78vw);
  height: auto;
  margin: 0 0 28px;
  mix-blend-mode: multiply;
}

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

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

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

.hero-copy {
  max-width: 590px;
  margin-bottom: 24px;
  color: var(--navy);
  font-size: 1.14rem;
}

.values {
  padding: 22px 0 26px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 -10px 34px rgba(5, 15, 86, 0.06);
}

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

.value-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 94px;
  padding-right: 22px;
  border-right: 1px solid rgba(244, 122, 0, 0.55);
}

.value-item:last-child {
  border-right: 0;
}

.value-item svg,
.stat-card svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: #0a35ff;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-item h2 {
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 1rem;
}

.value-item p {
  margin-bottom: 0;
  color: #1b213f;
  font-size: 0.96rem;
}

.trusted {
  padding: 16px 0 22px;
  background: #ffffff;
  border-top: 1px solid #edf1f6;
  border-bottom: 1px solid #d7dde8;
}

.section-title {
  width: min(300px, calc(100% - 44px));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin: 0 auto 12px;
  color: var(--navy);
}

.section-title h2 {
  margin: 0;
  font-size: 1.35rem;
}

.section-title span {
  height: 16px;
  border-top: 2px solid var(--orange);
  border-bottom: 2px solid transparent;
  clip-path: polygon(0 50%, 36% 50%, 50% 0, 64% 50%, 100% 50%, 100% 60%, 62% 60%, 50% 18%, 38% 60%, 0 60%);
}

.ticker {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, black 8%, black 92%, transparent 100%);
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 52px;
  animation: ticker 38s linear infinite;
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

.ticker img {
  width: 190px;
  max-height: 70px;
  object-fit: contain;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.pillars {
  position: relative;
  padding: 42px 0;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(0, 63, 141, 0.98), rgba(0, 52, 119, 0.98)),
    url("assets/hero-mountain-water.jpg") center 72% / cover;
}

.pillars::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 68px;
  background: linear-gradient(0deg, rgba(5, 15, 86, 0.54), transparent);
}

.pillar-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.pillar {
  display: grid;
  grid-template-columns: 112px 1fr;
  grid-template-rows: auto 1fr;
  gap: 0 22px;
  padding-right: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.58);
}

.pillar:last-child {
  border-right: 0;
}

.pillar-icon {
  grid-row: 1 / span 2;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border: 4px double var(--orange);
  border-radius: 50%;
}

.pillar-icon svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillar h2 {
  margin-bottom: 12px;
  font-size: 1.15rem;
  text-transform: uppercase;
}

.pillar p {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.96rem;
}

.stats {
  padding: 46px 0 56px;
  background: #ffffff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-card {
  min-height: 150px;
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(5, 15, 86, 0.06);
}

.stat-card svg {
  width: 62px;
  height: 62px;
  grid-row: span 2;
}

.stat-card strong {
  display: block;
  color: var(--blue);
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  line-height: 1;
}

.stat-card span {
  color: var(--navy);
  font-weight: 800;
  line-height: 1.25;
}

.contact {
  padding: 70px 0;
  background:
    linear-gradient(135deg, rgba(17, 86, 173, 0.08), transparent 42%),
    linear-gradient(180deg, #f8fbff, #ffffff);
}

.contact-shell {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: start;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(17, 86, 173, 0.18);
  border-left: 8px solid var(--orange);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.contact-intro h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(2rem, 3.4vw, 3.3rem);
  line-height: 1.02;
}

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

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-form label,
.wide {
  grid-column: span 2;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 850;
}

.contact-form label:not(.wide) {
  grid-column: span 1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfd9e8;
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfdff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(244, 122, 0, 0.2);
  border-color: var(--orange);
}

.botcheck {
  position: absolute;
  left: -9999px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--navy);
  font-weight: 800;
}

.site-footer {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner img {
  width: 150px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

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

  .brand img {
    height: 58px;
  }

  .site-nav {
    gap: 20px;
  }

  .header-button {
    min-width: 172px;
    padding-inline: 16px;
  }

  .values-grid,
  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .value-item,
  .pillar {
    border-right: 0;
    border-bottom: 1px solid rgba(244, 122, 0, 0.45);
    padding: 0 0 22px;
  }

  .value-item:last-child,
  .pillar:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

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

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

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

  .nav-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
  }

  .nav-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    background: var(--navy);
  }

  .site-nav,
  .header-button {
    display: none;
  }

  .site-header.nav-open .site-nav {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 0;
    padding: 12px 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .hero {
    min-height: auto;
    padding: 112px 22px 62px;
  }

  .hero-photo {
    object-position: 63% center;
  }

  .hero-treatment {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.82) 64%, rgba(255, 255, 255, 0.32)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(17, 86, 173, 0.28));
  }

  .hero-logo {
    width: min(250px, 78vw);
  }

  .contact-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .section-inner {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  h1 {
    font-size: 2.3rem;
  }

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

  .button {
    width: 100%;
  }

  .value-item,
  .pillar {
    grid-template-columns: 1fr;
  }

  .pillar-icon {
    margin-bottom: 16px;
  }

  .stats-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form label,
  .contact-form label:not(.wide),
  .wide {
    grid-column: 1;
  }

  .stat-card {
    grid-template-columns: 66px 1fr;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ticker-track {
    animation: none;
  }
}
