:root {
  --ink: #102336;
  --muted: #5b6876;
  --line: #dbe7ee;
  --aqua: #23a8c9;
  --aqua-dark: #087da0;
  --navy: #102f45;
  --mint: #d9f5ef;
  --sun: #f8b84a;
  --paper: #f8fbfc;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(9, 43, 64, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 82px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(248, 251, 252, 0.9);
  border-bottom: 1px solid rgba(16, 47, 69, 0.1);
  backdrop-filter: blur(18px);
}

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

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

.site-nav a {
  padding: 10px 14px;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
}

.site-nav a:hover {
  background: rgba(35, 168, 201, 0.12);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  padding: clamp(72px, 9vw, 132px) clamp(20px, 5vw, 72px);
  overflow: hidden;
  background: #071925;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 25, 37, 0.96) 0%, rgba(7, 25, 37, 0.78) 38%, rgba(7, 25, 37, 0.24) 72%),
    linear-gradient(0deg, rgba(7, 25, 37, 0.3), rgba(7, 25, 37, 0.08));
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  color: var(--white);
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--aqua);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0;
  font-weight: 500;
}

.hero-copy {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
}

.button.primary {
  color: #06202e;
  background: var(--sun);
}

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

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

.trust-band div {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  border-right: 1px solid var(--line);
}

.section {
  padding: clamp(70px, 9vw, 120px) clamp(20px, 5vw, 72px);
}

.intro-grid,
.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 500;
}

.intro-grid p,
.copy-stack p,
.section-heading p,
.contact-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.copy-stack {
  display: grid;
  gap: 18px;
}

.services-section {
  background: var(--white);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 40px;
}

.section-heading h2 {
  margin-bottom: 18px;
}

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

.service-card {
  min-height: 246px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfe;
}

.service-card.featured {
  grid-column: span 2;
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.service-card span {
  display: block;
  margin-bottom: 30px;
  color: var(--aqua);
  font-weight: 500;
}

.service-card.featured span {
  color: var(--sun);
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  letter-spacing: 0;
  font-weight: 500;
}

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

.service-card.featured p {
  color: rgba(255, 255, 255, 0.8);
}

.industries-section {
  background: var(--mint);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(220px, 1fr));
  gap: 1px;
  overflow-x: auto;
  border: 1px solid rgba(16, 47, 69, 0.12);
  background: rgba(16, 47, 69, 0.12);
}

.industry-grid div {
  min-height: 190px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.72);
}

.industry-grid strong,
.industry-grid span {
  display: block;
}

.industry-grid strong {
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.industry-grid span {
  color: var(--muted);
}

.reviews-section {
  background: var(--paper);
}

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

figure {
  margin: 0;
  padding: clamp(26px, 4vw, 42px);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

blockquote {
  margin: 0;
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.38;
}

figcaption {
  margin-top: 24px;
  color: var(--aqua-dark);
  font-weight: 500;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 24px;
  padding: clamp(70px, 9vw, 120px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background: var(--navy);
}

.contact-panel p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-section .button.secondary {
  background: transparent;
}

.contact-details {
  align-self: end;
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
  background: rgba(255, 255, 255, 0.06);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 5vw, 72px);
  background: #06131c;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer img {
  width: 150px;
}

.site-footer p {
  margin: 0;
  font-weight: 400;
}

@media (max-width: 980px) {
  .trust-band,
  .service-grid,
  .review-grid,
  .contact-section,
  .intro-grid,
  .split-section {
    grid-template-columns: 1fr;
  }

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

  .service-card.featured {
    grid-column: auto;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(7, 25, 37, 0.96), rgba(7, 25, 37, 0.62));
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 74px;
  }

  .brand img {
    width: 148px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px 20px 20px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .hero {
    min-height: 680px;
    padding-top: 82px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 16vw, 4.6rem);
  }

  .trust-band {
    grid-template-columns: 1fr;
  }

  .trust-band div {
    min-height: 70px;
  }

  .hero-actions,
  .contact-actions,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
