:root {
  color-scheme: light;
  --bg: #f5f8fb;
  --surface: #ffffff;
  --surface-soft: #eef6f8;
  --ink: #12313f;
  --muted: #617481;
  --teal: #0b8f8a;
  --teal-dark: #06615e;
  --blue: #2c79b9;
  --line: #d9e6eb;
  --shadow: 0 24px 70px rgba(18, 49, 63, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 0%, rgba(44, 121, 185, 0.16), transparent 34rem),
    linear-gradient(180deg, #fafdff 0%, var(--bg) 58%, #edf5f7 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(11, 143, 138, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 143, 138, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

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

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

.site-header,
main,
.footer {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
}

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

.brand {
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: #fff;
  font-size: 1.35rem;
  box-shadow: 0 12px 26px rgba(11, 143, 138, 0.22);
}

nav { gap: 10px; }

nav a {
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

nav a:hover { color: var(--ink); }

.nav-button {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--teal-dark);
  box-shadow: 0 10px 30px rgba(18, 49, 63, 0.07);
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 32px;
  align-items: stretch;
  padding: 72px 0 34px;
}

.hero-content,
.hero-card,
.service-card,
.approach,
.trust-strip {
  border: 1px solid rgba(217, 230, 235, 0.9);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-content {
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 36px;
  padding: clamp(32px, 6vw, 68px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 5.9rem);
  line-height: 0.96;
  letter-spacing: -0.075em;
}

.lead {
  max-width: 690px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.65vw, 1.28rem);
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 800;
}

.primary {
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: #fff;
  box-shadow: 0 16px 32px rgba(11, 143, 138, 0.24);
}

.secondary {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--teal-dark);
}

.hero-card {
  position: relative;
  overflow: hidden;
  align-self: end;
  min-height: 500px;
  border-radius: 36px;
  padding: 34px;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto -18% -24% 18%;
  height: 270px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(135deg, rgba(11, 143, 138, 0.16), rgba(44, 121, 185, 0.17));
  transform: rotate(-8deg);
}

.pulse {
  width: 100%;
  height: 132px;
  margin: 24px 0 44px;
  border-radius: 26px;
  background:
    linear-gradient(90deg, transparent 0 8%, var(--teal) 8% 10%, transparent 10% 24%, var(--teal) 24% 26%, transparent 26% 44%, var(--blue) 44% 46%, transparent 46% 100%),
    linear-gradient(#e5f4f4 1px, transparent 1px),
    linear-gradient(90deg, #e5f4f4 1px, transparent 1px),
    #f7fbfc;
  background-size: 100% 100%, 22px 22px, 22px 22px, auto;
  box-shadow: inset 0 0 0 1px var(--line);
}

.card-kicker {
  margin-bottom: 10px;
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}

.hero-card h2 {
  max-width: 310px;
  margin-bottom: 14px;
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.hero-card p {
  position: relative;
  color: var(--muted);
  line-height: 1.65;
}

dl {
  position: relative;
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

dt {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
  text-align: right;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 28px;
  margin: 10px 0 84px;
  padding: 0;
}

.trust-strip div {
  padding: 24px;
  background: rgba(255, 255, 255, 0.58);
}

.trust-strip strong {
  display: block;
  margin-bottom: 6px;
  color: var(--teal-dark);
  font-size: 1.05rem;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.94rem;
}

.section { margin: 0 0 84px; }

.section-heading {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 30px;
  align-items: end;
  margin-bottom: 24px;
}

.section-heading h2,
.approach h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

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

.service-card {
  min-height: 270px;
  border-radius: 28px;
  padding: 28px;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 54px;
  border-radius: 16px;
  background: var(--surface-soft);
  color: var(--teal-dark);
  font-weight: 800;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

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

.approach {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  align-items: center;
  border-radius: 34px;
  margin-bottom: 56px;
  padding: clamp(28px, 5vw, 48px);
  background:
    linear-gradient(135deg, rgba(11, 143, 138, 0.10), rgba(44, 121, 185, 0.08)),
    rgba(255, 255, 255, 0.86);
}

.approach p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 26px 0 42px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer p { margin: 0; }

.footer a {
  color: var(--teal-dark);
  font-weight: 800;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav { flex-wrap: wrap; }

  .hero,
  .section-heading,
  .approach {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-content,
  .hero-card {
    min-height: auto;
  }

  .trust-strip,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip { margin-bottom: 56px; }
}

@media (max-width: 560px) {
  .site-header,
  main,
  .footer {
    width: min(100% - 28px, 1160px);
  }

  .brand { font-size: 0.95rem; }

  nav a:not(.nav-button) { display: none; }

  .hero-content,
  .hero-card,
  .service-card,
  .approach {
    border-radius: 24px;
    padding: 24px;
  }

  h1 { font-size: clamp(2.55rem, 15vw, 4rem); }

  .hero-actions { flex-direction: column; }

  .button { width: 100%; }

  .pulse { margin-top: 0; }

  .footer { flex-direction: column; }
}
