:root {
  color-scheme: light;
  --ink: #18211e;
  --muted: #62706b;
  --line: #d9e0dc;
  --paper: #fbfaf6;
  --white: #ffffff;
  --mist: #eef5f1;
  --green: #0f7b65;
  --green-deep: #095844;
  --amber: #d78b22;
  --coral: #c85c45;
  --blue: #416a8e;
  --shadow: 0 20px 70px rgba(20, 31, 28, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 14px clamp(20px, 4vw, 56px);
  background: rgba(251, 250, 246, 0.88);
  border-bottom: 1px solid rgba(217, 224, 220, 0.84);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 760;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--blue));
  font-size: 0.78rem;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.94rem;
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--green);
}

.nav-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-weight: 720;
  line-height: 1;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.nav-action {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 10px 24px rgba(15, 123, 101, 0.18);
}

.button:hover,
.nav-action:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 16px 34px rgba(15, 123, 101, 0.2);
}

.button.primary:hover,
.nav-action:hover {
  background: var(--green-deep);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 30px rgba(20, 31, 28, 0.12);
}

.button.full {
  width: 100%;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: min(780px, 92vh);
  padding: 116px clamp(20px, 6vw, 76px) 64px;
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: 66% center;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(251, 250, 246, 0.96) 0%, rgba(251, 250, 246, 0.9) 30%, rgba(251, 250, 246, 0.2) 68%, rgba(251, 250, 246, 0.04) 100%),
    linear-gradient(0deg, rgba(251, 250, 246, 0.34), rgba(251, 250, 246, 0.02));
}

.hero-content {
  width: min(690px, 100%);
}

.eyebrow,
.section-kicker,
.price-label {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 660px;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 7vw, 6.7rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 560px;
  color: #3a4742;
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

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

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

.trust-row span {
  padding: 9px 12px;
  border: 1px solid rgba(24, 33, 30, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: #33413c;
  font-size: 0.9rem;
  font-weight: 680;
}

.section {
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 64px);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 560px;
  margin-bottom: 0;
}

.intro-band {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 6vw, 82px);
  align-items: end;
}

.intro-grid p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.service-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card,
.price-card {
  min-height: 280px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 26px rgba(20, 31, 28, 0.05);
}

.service-card p,
.price-card li,
.faq-list p,
.boundary-columns li {
  color: var(--muted);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
  font-weight: 800;
  font-size: 0.8rem;
}

.audience-section {
  background: var(--mist);
}

.audience-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

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

.audience-item {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(24, 33, 30, 0.12);
}

.audience-item p {
  margin-bottom: 0;
  color: #34423e;
}

.dot {
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--amber);
}

.report-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.report-copy p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

.report-panel {
  padding: clamp(18px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(15, 123, 101, 0.08), rgba(65, 106, 142, 0.08)),
    var(--white);
  box-shadow: var(--shadow);
}

.report-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

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

.report-table {
  display: grid;
  gap: 8px;
}

.report-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
  min-height: 46px;
  align-items: center;
  padding: 0 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.report-title {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 760;
}

.risk {
  width: max-content;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 760;
}

.risk.low {
  color: var(--green-deep);
  background: #dff3ea;
}

.risk.mid {
  color: #805111;
  background: #faebca;
}

.risk.high {
  color: #8c3325;
  background: #f6dcd6;
}

.recommendation {
  margin-top: 18px;
  padding: 16px;
  border-left: 4px solid var(--green);
  background: rgba(255, 255, 255, 0.72);
  color: #33413c;
}

.process-section {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline li {
  min-height: 230px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
}

.timeline span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 28px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-size: 0.9rem;
  font-weight: 800;
}

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

.pricing-section {
  background: #f7f1e7;
}

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

.price-card {
  min-height: 470px;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: rgba(15, 123, 101, 0.5);
  box-shadow: var(--shadow);
  transform: translateY(-10px);
}

.price {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 850;
  line-height: 1;
}

.price-card ul,
.boundary-columns ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  margin: 0 0 24px;
}

.price-card .button {
  margin-top: auto;
}

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

.boundaries-section .section-kicker {
  color: #8bd8c2;
}

.boundary-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 6vw, 76px);
}

.boundary-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.boundary-columns div {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.boundary-columns li {
  color: rgba(255, 255, 255, 0.74);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 780;
}

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

.contact-section {
  padding: clamp(72px, 10vw, 130px) clamp(20px, 5vw, 64px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(9, 88, 68, 0.94), rgba(65, 106, 142, 0.9)),
    var(--green-deep);
}

.contact-inner {
  width: min(860px, 100%);
  margin: 0 auto;
  text-align: center;
}

.contact-inner .section-kicker {
  color: #b7eadc;
}

.contact-inner p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
}

.contact-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.fine-print {
  margin-top: 22px;
  font-size: 0.9rem !important;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 5vw, 64px);
  background: var(--white);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1040px) {
  .service-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .main-nav {
    display: none;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 66px;
  }

  .nav-action {
    display: none;
  }

  .hero {
    min-height: 760px;
    padding-top: 108px;
    align-items: end;
  }

  .hero-image {
    object-position: 70% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(251, 250, 246, 0.98) 0%, rgba(251, 250, 246, 0.92) 42%, rgba(251, 250, 246, 0.18) 100%),
      linear-gradient(90deg, rgba(251, 250, 246, 0.3), rgba(251, 250, 246, 0.02));
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.3rem);
  }

  .intro-grid,
  .audience-layout,
  .report-layout,
  .boundary-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .section-heading.compact {
    margin-bottom: 24px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 640px) {
  .brand span:last-child {
    display: none;
  }

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

  .button {
    width: 100%;
  }

  .service-grid,
  .timeline,
  .boundary-columns {
    grid-template-columns: 1fr;
  }

  .report-panel {
    overflow-x: auto;
  }

  .report-row {
    min-width: 520px;
  }

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