:root {
  --ink: #102133;
  --muted: #627083;
  --line: #dfe6ee;
  --paper: #fbf8f2;
  --white: #ffffff;
  --navy: #10283f;
  --navy-2: #163a5a;
  --teal: #17a78b;
  --teal-dark: #0d7c68;
  --gold: #d9a441;
  --soft-blue: #eef5f8;
  --shadow: 0 24px 70px rgba(16, 33, 51, 0.16);
  --radius-lg: 28px;
  --radius-md: 18px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(23, 167, 139, 0.12), transparent 28rem),
    linear-gradient(180deg, #f8fbfb 0%, var(--paper) 42%, #ffffff 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.55;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 32px, var(--max));
  margin: 18px auto 0;
  padding: 12px 14px 12px 16px;
  border: 1px solid rgba(223, 230, 238, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 34px rgba(16, 33, 51, 0.08);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 11px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--teal));
  font-size: 0.95rem;
  box-shadow: 0 9px 22px rgba(23, 167, 139, 0.28);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

.nav a:hover,
.footer-links a:hover {
  color: var(--teal-dark);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(16, 40, 63, 0.2);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 58px;
  min-height: calc(100vh - 90px);
  padding-top: 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(3.1rem, 7vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
}

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

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.hero-lede {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.32rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  box-shadow: 0 16px 34px rgba(23, 167, 139, 0.26);
}

.btn.secondary {
  color: var(--navy);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.btn.light.primary {
  color: var(--navy);
  background: var(--white);
  box-shadow: none;
}

.btn.light.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.trust-strip span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
}

.diagnostic-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(223, 230, 238, 0.88);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 245, 248, 0.92));
  box-shadow: var(--shadow);
}

.diagnostic-card::before {
  position: absolute;
  inset: -90px -120px auto auto;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(23, 167, 139, 0.18);
  content: "";
}

.card-topline {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(217, 164, 65, 0.15);
}

.metric-row {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.metric-row span {
  color: var(--muted);
  font-weight: 700;
}

.metric-row strong {
  color: var(--navy);
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.risk-box {
  position: relative;
  margin-top: 24px;
  padding: 20px;
  border-radius: 20px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
}

.risk-box p {
  margin-bottom: 10px;
  font-weight: 850;
}

.risk-box ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.82);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 38px;
}

.section-heading.narrow {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

.three-col,
.steps,
.answer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature,
.step,
.answer-grid div,
.deliverable-list > div {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 36px rgba(16, 33, 51, 0.06);
}

.feature {
  padding: 26px;
}

.feature p,
.step p,
.deliverable-list p,
.fit-columns p,
.faq-list p,
.footer p,
.service-grid p {
  color: var(--muted);
}

.service-section {
  width: min(100% - 40px, 1220px);
}

.service-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 32px;
  padding: 44px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #0f354f 62%, #0b6f63);
  box-shadow: var(--shadow);
}

.service-grid h2,
.service-grid h3 {
  color: var(--white);
}

.service-grid p,
.service-grid .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.deliverable-list {
  display: grid;
  gap: 14px;
}

.deliverable-list > div {
  padding: 22px;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.deliverable-list span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
}

.steps {
  counter-reset: step;
}

.step {
  padding: 28px;
}

.step > span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 14px;
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
}

.fit-card {
  padding: 44px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.66)),
    var(--soft-blue);
  box-shadow: 0 20px 60px rgba(16, 33, 51, 0.08);
}

.fit-card h2 {
  max-width: 780px;
}

.fit-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.fit-columns > div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
}

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

.answer-grid div {
  padding: 22px 24px;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 800;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  width: min(100% - 40px, 1220px);
  padding: 48px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 95% 10%, rgba(217, 164, 65, 0.3), transparent 18rem),
    linear-gradient(135deg, var(--teal-dark), var(--navy));
  box-shadow: var(--shadow);
}

.cta-section h2 {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--white);
}

.cta-section .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.faq-list {
  display: grid;
  max-width: 860px;
  margin: 0 auto;
  gap: 12px;
}

details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--navy);
  font-weight: 850;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 54px 0 44px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-weight: 750;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    border-radius: 24px;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 6px 2px 2px;
  }

  .hero,
  .service-grid,
  .three-col,
  .steps,
  .fit-columns,
  .answer-grid,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 34px;
    min-height: auto;
    padding-top: 56px;
  }

  .cta-section {
    display: grid;
  }
}

@media (max-width: 620px) {
  .section {
    width: min(100% - 28px, var(--max));
    padding: 68px 0;
  }

  .site-header {
    width: min(100% - 22px, var(--max));
    margin-top: 10px;
  }

  .header-cta {
    width: 100%;
  }

  .nav {
    gap: 16px;
    font-size: 0.86rem;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 4.8rem);
  }

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

  .btn {
    width: 100%;
  }

  .service-grid,
  .fit-card,
  .cta-section,
  .diagnostic-card {
    padding: 26px;
  }
}
