:root {
  --navy: #14234c;
  --navy-deep: #0b1633;
  --blue: #078ec2;
  --blue-bright: #20aee6;
  --orange: #f18512;
  --orange-dark: #c96605;
  --ink: #162033;
  --muted: #5c6575;
  --line: #d8e0e8;
  --surface: #f6f8fb;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(11, 22, 51, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  width: 100%;
  padding: 0.85rem clamp(1rem, 4vw, 3.5rem);
  color: var(--white);
  background: rgba(11, 22, 51, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 4.6rem;
  height: 4.6rem;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 2rem);
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.84);
}

.main-nav a:hover {
  color: var(--white);
}

.header-cta,
.button,
.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 2.9rem;
  font-weight: 800;
  white-space: nowrap;
}

.header-cta {
  padding: 0.75rem 1rem;
  color: var(--navy-deep);
  background: var(--white);
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.hero {
  position: relative;
  min-height: 84svh;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
}

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

.hero-slide {
  opacity: 0;
  transform: scale(1.02);
  transition:
    opacity 680ms ease,
    transform 1200ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 16, 38, 0.84) 0%, rgba(8, 16, 38, 0.58) 42%, rgba(8, 16, 38, 0.18) 100%),
    linear-gradient(0deg, rgba(8, 16, 38, 0.58) 0%, rgba(8, 16, 38, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(45rem, calc(100% - 2rem));
  min-height: 84svh;
  padding: 7.4rem 0 6.5rem;
  margin-left: clamp(1rem, 7vw, 6rem);
}

.hero-logo {
  width: clamp(5.8rem, 10vw, 8rem);
  height: clamp(5.8rem, 10vw, 8rem);
  object-fit: contain;
  margin-bottom: 1.1rem;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.2));
}

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

.hero h1 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(3.5rem, 10vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  width: min(38rem, 100%);
  margin: 1.15rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.06rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.button {
  min-width: 10.5rem;
  padding: 0.88rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
}

.button.primary {
  color: var(--navy-deep);
  background: var(--orange);
  box-shadow: 0 18px 40px rgba(241, 133, 18, 0.24);
}

.button.primary:hover {
  background: #ff9d27;
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.34);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.button.dark {
  color: var(--navy-deep);
  background: var(--white);
  border-color: transparent;
}

.carousel-controls {
  position: absolute;
  right: clamp(1rem, 4vw, 3.5rem);
  bottom: 1.4rem;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.icon-button,
.dot {
  border: 0;
  cursor: pointer;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  color: var(--white);
  background: rgba(11, 22, 51, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.icon-button:hover {
  background: rgba(11, 22, 51, 0.76);
}

.dots {
  display: flex;
  gap: 0.42rem;
  padding: 0.5rem 0.65rem;
  background: rgba(11, 22, 51, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.dot {
  width: 0.62rem;
  height: 0.62rem;
  padding: 0;
  background: rgba(255, 255, 255, 0.46);
  border-radius: 999px;
}

.dot.is-active {
  width: 1.65rem;
  background: var(--orange);
}

.section,
.section-band {
  padding: clamp(4rem, 8vw, 6.5rem) clamp(1rem, 4vw, 3.5rem);
}

.section-band {
  background: var(--surface);
}

.section-inner {
  width: min(72rem, 100%);
  margin: 0 auto;
}

.two-column,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

h2 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(2rem, 4.8vw, 4.1rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--navy-deep);
  font-size: 1.16rem;
  line-height: 1.25;
}

p {
  margin: 0;
}

.mission-copy {
  display: grid;
  gap: 1rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.section-heading {
  width: min(44rem, 100%);
  margin-bottom: 2rem;
}

.section-heading.compact {
  width: min(54rem, 100%);
}

.section-heading p:not(.section-kicker) {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.feature-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card,
.service-card {
  min-height: 13rem;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(11, 22, 51, 0.06);
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
}

.feature-card p,
.service-card p {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.97rem;
}

.services {
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
}

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

.service-card {
  min-height: 11.5rem;
  border-top: 4px solid var(--orange);
}

.partner-strip {
  color: var(--white);
  background: var(--navy);
  padding: 2rem clamp(1rem, 4vw, 3.5rem);
}

.strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.strip-inner p {
  max-width: 48rem;
  font-size: clamp(1.08rem, 2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.25;
}

.contact-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)),
    var(--surface);
}

.contact-copy p:not(.section-kicker) {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-actions {
  display: grid;
  gap: 0.85rem;
}

.contact-link {
  justify-content: flex-start;
  min-height: 5.1rem;
  padding: 1rem 1.15rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(11, 22, 51, 0.07);
}

.contact-link svg {
  width: 1.55rem;
  height: 1.55rem;
  color: var(--blue);
}

.contact-link span {
  display: grid;
  gap: 0.1rem;
}

.contact-link small {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-link.highlight {
  color: var(--navy-deep);
  background: #fff4e6;
  border-color: rgba(241, 133, 18, 0.38);
}

.contact-link.highlight svg {
  color: var(--orange-dark);
}

.site-footer {
  padding: 1.4rem clamp(1rem, 4vw, 3.5rem);
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy-deep);
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-inner img {
  width: 3.4rem;
  height: 3.4rem;
  object-fit: contain;
}

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

  .main-nav {
    display: none;
  }

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

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

  .two-column,
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 0.75rem;
    padding: 0.65rem 0.9rem;
  }

  .brand {
    width: 3.6rem;
    height: 3.6rem;
  }

  .header-cta {
    min-height: 2.6rem;
    padding: 0.65rem 0.82rem;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-content {
    width: calc(100% - 1.8rem);
    min-height: 86svh;
    padding-top: 6.6rem;
    padding-bottom: 6rem;
    margin-left: 0.9rem;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 16, 38, 0.86), rgba(8, 16, 38, 0.56)),
      linear-gradient(0deg, rgba(8, 16, 38, 0.7), rgba(8, 16, 38, 0.08));
  }

  .hero-logo {
    width: 5.2rem;
    height: 5.2rem;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 18vw, 5rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 21rem);
  }

  .button {
    width: 100%;
  }

  .carousel-controls {
    right: 0.9rem;
    bottom: 1rem;
  }

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

  .feature-card,
  .service-card {
    min-height: auto;
  }

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

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

  *,
  *::before,
  *::after {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
}
