:root {
  --navy: #062b57;
  --navy-dark: #031b36;
  --navy-soft: #0d3d76;
  --red: #b5121b;
  --red-dark: #8f0f17;
  --ink: #102033;
  --muted: #5d6b7c;
  --line: #dce3ec;
  --surface: #ffffff;
  --surface-soft: #f5f7fb;
  --surface-tint: #eef3f9;
  --shadow: 0 24px 70px rgba(3, 27, 54, 0.12);
  --radius: 22px;
  --max-width: 1180px;
}

* {
  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(--surface);
  line-height: 1.6;
}

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--navy);
  color: #ffffff;
  padding: 0.75rem 1rem;
  z-index: 999;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 227, 236, 0.9);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--navy-dark);
}

.nav a {
  position: relative;
}

.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 180ms ease;
}

.nav a:not(.nav-cta):hover::after,
.nav a:not(.nav-cta):focus::after {
  width: 100%;
}

.nav-cta {
  background: var(--navy);
  color: #ffffff;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(6, 43, 87, 0.18);
}

.nav-cta:hover,
.nav-cta:focus {
  background: var(--red);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 20%, rgba(181, 18, 27, 0.12), transparent 27%),
    radial-gradient(circle at 82% 28%, rgba(6, 43, 87, 0.13), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f4f7fb 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -48% 44%;
  height: 520px;
  background: linear-gradient(135deg, rgba(6, 43, 87, 0.08), rgba(181, 18, 27, 0.08));
  transform: rotate(-8deg);
  border-radius: 60px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 56px;
  align-items: center;
  min-height: calc(100vh - 170px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--red);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--navy-dark);
  font-size: clamp(2.575rem, 5.6vw, 5.3rem);
  line-height: 0.94;
  letter-spacing: -0.075em;
}

h2 {
  color: var(--navy-dark);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
  margin-bottom: 18px;
}

h3 {
  color: var(--navy-dark);
  font-size: 1.18rem;
  line-height: 1.25;
  margin-bottom: 12px;
}

.lead {
  max-width: 680px;
  color: #334155;
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
  line-height: 1.62;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.86rem 1.25rem;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--red);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(181, 18, 27, 0.24);
}

.button.primary:hover,
.button.primary:focus {
  background: var(--red-dark);
}

.button.secondary {
  background: #ffffff;
  color: var(--navy);
  border-color: var(--line);
}

.hero-panel {
  position: relative;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(220, 227, 236, 0.85);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-line {
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, var(--navy), var(--red));
  border-radius: 999px;
  margin-bottom: 28px;
}

.hero-panel h2 {
  font-size: clamp(1.8rem, 3vw, 2.75rem);
}

.hero-panel p {
  color: var(--muted);
}

.stat-grid {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.stat-grid div {
  padding: 16px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.stat-grid strong {
  display: block;
  color: var(--red);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
}

.stat-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
}

.intro-section {
  background:
    linear-gradient(135deg, rgba(3, 27, 54, 0.96), rgba(6, 43, 87, 0.96)),
    radial-gradient(circle at 15% 30%, rgba(181, 18, 27, 0.45), transparent 32%);
  color: #ffffff;
  border-top: 0;
  border-bottom: 0;
}

.intro-section h2,
.intro-section .split > p {
  color: #ffffff;
}

.intro-section .split > p {
  opacity: 0.82;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: start;
}

.split > p {
  color: var(--muted);
  font-size: 1.12rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading.left {
  margin-bottom: 0;
}

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

.card-grid {
  display: grid;
  gap: 20px;
}

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

.card {
  position: relative;
  min-height: 310px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--navy), var(--red));
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(6, 43, 87, 0.26);
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 18px 0 60px;
  border-radius: 50%;
  background: var(--surface-tint);
  color: var(--navy);
  font-weight: 900;
}

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

.dark-section {
  background:
    linear-gradient(135deg, rgba(3, 27, 54, 0.96), rgba(6, 43, 87, 0.96)),
    radial-gradient(circle at 15% 30%, rgba(181, 18, 27, 0.45), transparent 32%);
  color: #ffffff;
}

.section-heading.light h2,
.section-heading.light p:not(.section-kicker) {
  color: #ffffff;
}

.section-heading.light p:not(.section-kicker) {
  opacity: 0.82;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
}

.industry-item {
  padding: 30px;
  min-height: 250px;
  background: rgba(255, 255, 255, 0.045);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

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

.industry-item h3 {
  color: #ffffff;
}

.industry-item p {
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 0;
}

.approach-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

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

.timeline-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
}

.timeline-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--navy);
  color: #ffffff;
  font-weight: 900;
}

.timeline-item p {
  color: var(--muted);
  margin-bottom: 0;
}

.relationship-section {
  padding-top: 0;
}

.relationship-card {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 44px;
  padding: 42px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
}

.relationship-card p {
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 0;
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(3, 27, 54, 0.96), rgba(6, 43, 87, 0.96)),
    radial-gradient(circle at 15% 30%, rgba(181, 18, 27, 0.45), transparent 32%);
  color: #ffffff;
}

.contact-section h2,
.contact-grid > div > p:not(.section-kicker) {
  color: #ffffff;
}

.contact-grid > div > p:not(.section-kicker) {
  opacity: 0.82;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 52px;
  align-items: center;
}

.contact-grid > div > p:not(.section-kicker) {
  font-size: 1.1rem;
}

.contact-card {
  padding: 32px;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-card .contact-copy {
  display: block;
  color: var(--muted) !important;
  opacity: 1 !important;
  margin: 0 0 22px;
  font-size: 1.02rem;
  line-height: 1.62;
}

.email-link {
  display: inline-flex;
  margin: 8px 0 18px;
  color: var(--red);
  font-size: 1.24rem;
  font-weight: 900;
  word-break: break-word;
}

.small-note {
  font-size: 0.88rem;
  margin-bottom: 0;
}

.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.78);
  padding: 26px 0;
}

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

.footer-inner p {
  margin-bottom: 0;
}

.footer-inner a {
  color: #ffffff;
  font-weight: 800;
}

@media (max-width: 1080px) {
  .nav {
    display: none;
  }

  .hero-grid,
  .split,
  .approach-grid,
  .relationship-card,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .industry-item:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, var(--max-width));
  }

  .section {
    padding: 64px 0;
  }

  .header-inner {
    min-height: 74px;
  }

  .brand img {
    width: 210px;
  }

  h1 {
    font-size: clamp(2.45rem, 13.5vw, 3.825rem);
  }

  .hero-grid {
    min-height: auto;
    gap: 34px;
  }

  .hero-panel,
  .contact-card,
  .relationship-card {
    padding: 24px;
  }

  .card-grid.four,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: auto;
  }

  .card-number {
    margin-bottom: 34px;
  }

  .industry-item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .industry-item:last-child {
    border-bottom: 0;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

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