:root {
  --navy: #071f36;
  --blue: #1769aa;
  --blue-dark: #0d3f75;
  --sky: #eaf5ff;
  --ink: #142233;
  --muted: #627082;
  --line: #dbe6ef;
  --white: #ffffff;
  --soft: #f7fbff;
  --shadow: 0 18px 45px rgba(7, 31, 54, 0.14);
  --radius: 8px;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}

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

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  padding: 14px 0;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font-size: 24px;
  cursor: pointer;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  padding: 12px 14px;
  border-radius: var(--radius);
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--sky);
  color: var(--blue-dark);
}

.hero-slider {
  position: relative;
  min-height: clamp(560px, 76vh, 760px);
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: heroFade 18s infinite;
}

.slide:nth-child(2) {
  animation-delay: 6s;
}

.slide:nth-child(3) {
  animation-delay: 12s;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 18s infinite;
}

.slide::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 31, 54, 0.9), rgba(13, 63, 117, 0.58), rgba(7, 31, 54, 0.2));
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: clamp(560px, 76vh, 760px);
  display: grid;
  align-content: center;
  max-width: 760px;
  padding: 82px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-content .eyebrow,
.page-hero .eyebrow {
  color: #bfe0ff;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.03;
  letter-spacing: 0;
}

.hero-content p,
.page-hero p {
  max-width: 720px;
  margin-bottom: 28px;
  color: #eef7ff;
  font-size: clamp(18px, 2vw, 23px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: var(--radius);
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
  border: 2px solid var(--blue);
  box-shadow: 0 12px 28px rgba(23, 105, 170, 0.28);
}

.btn:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.section {
  padding: 82px 0;
}

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 42px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
}

.section h2 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
}

.section h3 {
  color: var(--blue-dark);
  font-size: 22px;
  line-height: 1.25;
}

.lead {
  color: var(--muted);
  font-size: 18px;
}

.media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--sky);
}

.media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

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

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

.feature,
.category,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 26px;
  box-shadow: 0 10px 28px rgba(7, 31, 54, 0.06);
}

.category {
  padding: 0;
  overflow: hidden;
}

.category img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.category h3 {
  margin: 0;
  padding: 18px 20px 22px;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  align-items: stretch;
}

.logo-tile {
  min-height: 112px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.logo-tile img {
  max-height: 64px;
  object-fit: contain;
}

.page-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .container {
  position: relative;
  z-index: 2;
  padding: 74px 0;
}

.page-hero h1 {
  max-width: 820px;
}

.bullets {
  padding-left: 22px;
  color: var(--muted);
}

.customer-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 22px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-weight: 800;
}

.business-support {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 38px;
  align-items: center;
}

.business-support-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--navy);
}

.business-support-media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.logo-carousel-section {
  padding: 34px 0;
  background: var(--navy);
  overflow: hidden;
}

.logo-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.logo-carousel::before,
.logo-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(16vw, 170px);
  pointer-events: none;
}

.logo-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--navy), rgba(7, 31, 54, 0));
}

.logo-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--navy), rgba(7, 31, 54, 0));
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 26px;
  animation: logoSlide 28s linear infinite;
}

.logo-track img {
  width: 300px;
  height: 168px;
  flex: 0 0 auto;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 34px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 15px;
  font: inherit;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.map {
  width: 100%;
  height: 260px;
  border: 0;
  border-radius: var(--radius);
}

.site-footer {
  color: #d6e8f7;
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 28px;
  padding: 60px 0 40px;
}

.site-footer h3 {
  margin-bottom: 12px;
  color: var(--white);
}

.site-footer a {
  display: block;
  margin: 7px 0;
  color: #d6e8f7;
}

.social-label {
  display: block;
  margin: 18px 0 8px;
  color: var(--white);
  font-weight: 700;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: #d6e8f7;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.social-links a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-links .instagram-icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.footer-logo {
  width: 150px;
  margin-bottom: 18px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 8px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.copyright {
  margin: 0;
  color: #aacbe6;
  font-size: 14px;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  font-size: 14px;
}

.footer-legal a {
  display: inline-flex;
  margin: 0;
  color: #d6e8f7;
}

.footer-legal a:hover {
  color: var(--white);
}

@keyframes heroFade {
  0%,
  28% {
    opacity: 1;
  }
  34%,
  100% {
    opacity: 0;
  }
}

@keyframes heroZoom {
  0% {
    transform: scale(1.06);
  }
  34%,
  100% {
    transform: scale(1.14);
  }
}

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

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

@media (prefers-reduced-motion: reduce) {
  .slide,
  .slide img,
  .logo-track {
    animation: none;
  }

  .slide:first-child {
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .main-nav {
    position: absolute;
    top: 104px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 18px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 16px;
  }

  .split,
  .split.reverse,
  .business-support,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .grid.three,
  .grid.two,
  .grid.four,
  .logo-strip,
  .customer-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .nav-wrap {
    min-height: 90px;
  }

  .brand img {
    width: 132px;
  }

  .main-nav {
    top: 90px;
  }

  .hero-slider,
  .hero-content {
    min-height: 620px;
  }

  .section {
    padding: 58px 0;
  }

  .media img {
    height: 300px;
  }

  .logo-track img {
    width: 230px;
    height: 129px;
  }

  .grid.three,
  .grid.two,
  .grid.four,
  .logo-strip,
  .customer-list {
    grid-template-columns: 1fr;
  }

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

  .footer-legal {
    justify-content: flex-start;
  }
}
