:root {
  --ink: #132326;
  --muted: #5c6a70;
  --line: #dce7ea;
  --paper: #f6fafb;
  --white: #ffffff;
  --blue: #0a4a94;
  --blue-dark: #07336a;
  --teal: #08a7b4;
  --teal-dark: #067985;
  --gold: #d8a74c;
  --shadow: 0 18px 50px rgba(14, 38, 45, 0.12);
}

* {
  box-sizing: border-box;
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(7, 27, 50, 0.84);
  backdrop-filter: blur(14px);
  color: var(--white);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 188px;
  max-width: 42vw;
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.16));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.86);
}

.nav-links a:hover,
.nav-links .active {
  color: var(--white);
}

.nav-cta {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  color: var(--white);
  font-weight: 700;
}

.hero,
.page-hero {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 27, 50, 0.93) 0%, rgba(7, 27, 50, 0.76) 48%, rgba(7, 27, 50, 0.36) 100%),
    url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.hero {
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
}

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

.hero-inner {
  padding: 148px 0 76px;
  display: grid;
  grid-template-columns: minmax(0, 700px);
  gap: 24px;
}

.page-hero-inner {
  padding: 158px 0 78px;
  max-width: 1120px;
}

.eyebrow {
  margin: 0;
  color: #7ee4ec;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(44px, 8vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

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

.hero-copy,
.page-copy {
  max-width: 660px;
  margin: 0;
  font-size: clamp(18px, 2vw, 22px);
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
}

.button-primary {
  background: var(--teal);
  color: var(--white);
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin-top: 18px;
}

.metric {
  border-left: 3px solid var(--teal);
  padding: 6px 0 6px 14px;
}

.metric strong {
  display: block;
  font-size: 25px;
  line-height: 1;
}

.metric span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.section {
  padding: 82px 0;
}

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

.section-head {
  max-width: 740px;
  margin-bottom: 34px;
}

.section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: 0;
}

.section-head p,
.lead {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.service-grid,
.testimonial-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

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

.card,
.service-card,
.testimonial,
.contact-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.card,
.service-card,
.testimonial {
  padding: 24px;
}

.service-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #e4f7fa;
  color: var(--blue-dark);
  font-weight: 900;
  font-size: 20px;
}

.card h3,
.service-card h3,
.testimonial h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.2;
}

.service-card p,
.testimonial p,
.card p {
  margin: 0;
  color: var(--muted);
}

.service-card ul,
.card ul {
  margin: auto 0 0;
  padding-left: 18px;
  color: var(--ink);
  font-size: 14px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.photo-band {
  min-height: 460px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(8, 167, 180, 0.08), rgba(10, 74, 148, 0.28)),
    url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1200&q=82") center / cover;
  box-shadow: var(--shadow);
}

.steps {
  display: grid;
  gap: 18px;
}

.step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
}

.step-number {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  font-weight: 900;
}

.step h3 {
  margin: 0 0 5px;
  font-size: 20px;
}

.step p {
  margin: 0;
  color: var(--muted);
}

.industries {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tag {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 9px 13px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

.quote-mark {
  color: var(--teal);
  font-size: 42px;
  line-height: 0.8;
  font-weight: 900;
}

.person {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
}

.person span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}

.cta {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 51, 106, 0.96), rgba(6, 121, 133, 0.88)),
    url("https://images.unsplash.com/photo-1600880292203-757bb62b4baf?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.cta .container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
}

.cta h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.cta p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.contact-panel {
  color: var(--ink);
  padding: 26px;
}

.contact-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.contact-row:last-child {
  border-bottom: 0;
}

.contact-row span {
  color: var(--muted);
  font-size: 14px;
}

.contact-row strong {
  text-align: right;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.form-card label {
  display: block;
  margin: 0 0 6px;
  font-weight: 800;
}

.form-card input,
.form-card textarea,
.form-card select {
  width: 100%;
  min-height: 46px;
  margin-bottom: 16px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

.form-card textarea {
  min-height: 130px;
  resize: vertical;
}

.form-card .button {
  border: 0;
  cursor: pointer;
}

.site-footer {
  background: #0b1820;
  color: rgba(255, 255, 255, 0.72);
  padding: 32px 0;
}

.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-inner strong {
  color: var(--white);
}

@media (max-width: 980px) {
  .nav {
    min-height: 68px;
  }

  .nav-links {
    gap: 12px;
    font-size: 13px;
  }

  .service-grid,
  .service-grid.four,
  .testimonial-grid,
  .feature-grid,
  .split,
  .cta .container,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .photo-band {
    min-height: 320px;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    background: var(--blue-dark);
  }

  .nav {
    min-height: auto;
    padding: 12px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .brand img {
    width: 176px;
  }

  .nav-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .nav-links a {
    padding: 8px 0;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner,
  .page-hero-inner {
    padding: 76px 0 52px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .button {
    width: 100%;
  }

  .contact-row {
    display: grid;
  }

  .contact-row strong {
    text-align: left;
  }
}
