:root {
  --ink: #0b1726;
  --deep: #071827;
  --muted: #536173;
  --line: rgba(15, 23, 42, 0.12);
  --panel: rgba(255, 255, 255, 0.86);
  --panel-strong: #ffffff;
  --brand: #0d75a4;
  --brand-dark: #153a56;
  --brand-2: #00a0b7;
  --accent: #f8b44d;
  --bg: #f5f9fc;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.13);
  --radius: 26px;
  --radius-sm: 16px;
  --max: 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", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(0, 160, 183, 0.2), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(13, 117, 164, 0.18), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 38%, #ffffff 100%);
  line-height: 1.6;
}

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

img, svg {
  max-width: 100%;
  height: auto;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: #fff;
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 1000;
}

.skip-link:focus {
  left: 12px;
}

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

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

.brand-link {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.site-logo {
  width: clamp(230px, 28vw, 355px);
  display: block;
}

.nav-toggle {
  display: none;
  border: 0;
  background: var(--deep);
  color: #fff;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
}

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

.site-nav a {
  padding: 11px 14px;
  border-radius: 999px;
  color: #213044;
  font-weight: 750;
  font-size: 0.94rem;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(13, 117, 164, 0.09);
  color: var(--brand-dark);
}

.button,
.site-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 19px;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1;
  border: 1px solid transparent;
}

.button.primary,
.site-nav .nav-cta {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-2));
  color: #fff;
  box-shadow: 0 18px 36px rgba(13, 117, 164, 0.22);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.86);
  border-color: var(--line);
  color: var(--ink);
}

.hero {
  position: relative;
  padding: 84px 0 58px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 48px;
  align-items: center;
}

.hero-media {
  position: relative;
}

.hero-media img {
  display: block;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.float-stat {
  position: absolute;
  left: -12px;
  bottom: -18px;
  width: min(86%, 430px);
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 20px 50px rgba(15, 23, 42, .16);
}

.float-stat strong {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  color: var(--brand-dark);
  line-height: 1;
  letter-spacing: -.04em;
}

.float-stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--brand-dark);
  background: rgba(0, 160, 183, 0.12);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1, h2, h3 {
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin: 0;
}

h1 {
  font-size: clamp(2.55rem, 6vw, 5.2rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
  font-size: 1.28rem;
}

.lead {
  font-size: clamp(1.06rem, 2vw, 1.3rem);
  color: #334155;
  max-width: 870px;
}

.hero .lead {
  margin: 22px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 0;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  padding: 8px 12px;
  border-radius: 999px;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 760;
}

.section {
  padding: 78px 0;
}

.section.compact {
  padding: 54px 0;
}

.section.tint {
  background:
    radial-gradient(circle at 0% 0%, rgba(0,160,183,.12), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.45), rgba(245,249,252,.9));
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-header p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

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

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

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

.card {
  position: relative;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.card:hover,
.service-detail:hover,
.team-card:hover {
  transform: translateY(-3px);
  transition: transform 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 26px 62px rgba(15, 23, 42, 0.1);
}

.card p,
.copy p,
.team-card p,
.service-detail p {
  color: var(--muted);
}

.card ul,
.service-detail ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: #415166;
}

.card li,
.service-detail li {
  margin: 7px 0;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  margin-bottom: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-2));
  font-weight: 900;
}

.card-image {
  width: 100%;
  border-radius: 22px;
  margin-bottom: 20px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.06);
}

.media-band {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 30px;
  align-items: center;
}

.media-band img {
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.band {
  background: linear-gradient(135deg, var(--brand-dark), #063548);
  color: #fff;
  border-radius: 34px;
  padding: 46px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.band:after {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.band p {
  color: rgba(255, 255, 255, 0.84);
  max-width: 860px;
  margin: 16px 0 0;
  font-size: 1.08rem;
}

.band .button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

.band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.page-hero {
  padding: 74px 0 44px;
}

.page-hero .lead {
  margin: 22px 0 0;
}

.breadcrumb {
  margin-bottom: 18px;
  color: var(--brand-dark);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.service-detail {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 28px;
  align-items: start;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--panel-strong);
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
}

.service-detail + .service-detail {
  margin-top: 18px;
}

.service-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--brand-dark);
  background: rgba(0, 160, 183, 0.1);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.outcome {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--line);
}

.outcome strong {
  display: block;
  font-size: 1.5rem;
  color: var(--brand-dark);
}

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

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.team-card {
  padding: 20px;
  border-radius: var(--radius);
  background: var(--panel-strong);
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
}

.team-photo {
  width: 100%;
  border-radius: 22px;
  margin-bottom: 18px;
  display: block;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08);
}

.role {
  display: block;
  margin: 8px 0 12px;
  color: var(--brand-dark);
  font-weight: 850;
  font-size: 0.94rem;
}

.timeline {
  counter-reset: steps;
  display: grid;
  gap: 16px;
}

.step {
  counter-increment: steps;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 22px;
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.step:before {
  content: counter(steps);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-2));
  color: #fff;
  font-weight: 900;
}

.step h3 {
  margin-bottom: 6px;
}

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

.site-footer {
  padding: 48px 0;
  background: var(--deep);
  color: #fff;
}

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

.footer-logo {
  width: min(330px, 100%);
  background: #fff;
  border-radius: 18px;
  padding: 8px 12px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: end;
}

.footer-links a {
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.14);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .site-logo {
    width: 260px;
  }

  .site-nav a {
    padding-inline: 10px;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .service-detail,
  .footer-grid,
  .media-band {
    grid-template-columns: 1fr;
  }

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

  .hero-media {
    max-width: 720px;
  }
}

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

  .nav-toggle {
    display: inline-flex;
  }

  .site-logo {
    width: 228px;
  }

  .site-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    border-radius: 14px;
  }

  .hero {
    padding-top: 56px;
  }

  .grid.three,
  .grid.two,
  .outcomes,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    display: block;
  }

  .section-header p {
    margin-top: 16px;
  }

  .band {
    padding: 30px;
    border-radius: 24px;
  }

  .float-stat {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .footer-links {
    justify-content: start;
  }
}
