:root {
  --ink: #17211f;
  --muted: #5e6d68;
  --line: #dce4df;
  --paper: #f8faf7;
  --panel: #ffffff;
  --green: #2d6b4f;
  --green-strong: #174a36;
  --mint: #dff1e7;
  --amber: #c87b33;
  --coral: #c95345;
  --blue: #315f8f;
  --shadow: 0 24px 70px rgba(23, 33, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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;
  padding: 18px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(220, 228, 223, 0.8);
  background: rgba(248, 250, 247, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--green-strong);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

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

.nav-cta {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: 72px 0 56px;
}

.eyebrow,
.panel-kicker,
.package {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(44px, 6vw, 68px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-text {
  max-width: 650px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.58;
}

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

.button,
.price-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 800;
}

.button.primary,
.price-card a {
  color: #fff;
  background: var(--green-strong);
}

.button.secondary {
  border: 1px solid var(--line);
  background: var(--panel);
}

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

.trust-row span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.audit-panel {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.panel-header h2 {
  margin-bottom: 0;
  font-size: 28px;
}

.status-pill {
  flex: 0 0 auto;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--green-strong);
  background: var(--mint);
  font-size: 12px;
  font-weight: 800;
}

.score-grid {
  display: grid;
  gap: 12px;
}

.score-grid article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfa;
}

.score-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.score-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
}

.meter {
  overflow: hidden;
  height: 9px;
  border-radius: 999px;
  background: #e8eee9;
}

.meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
}

.meter.warning span {
  background: var(--amber);
}

.meter.danger span {
  background: var(--coral);
}

.insight-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.insight-list div {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 12px;
}

.insight-list p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

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

.proof-band {
  padding: 24px 0 82px;
}

.proof-band p {
  max-width: 960px;
  margin: 0;
  color: var(--green-strong);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.25;
}

.services,
.examples,
.pricing,
.process,
.cta-section {
  padding: 82px 0;
  border-top: 1px solid var(--line);
}

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

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

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

.service-card,
.price-card,
.process-steps article,
.example-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.service-card {
  min-height: 260px;
  padding: 26px;
}

.card-icon,
.process-steps span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 8px;
  color: #fff;
  background: var(--green-strong);
  font-size: 13px;
  font-weight: 800;
}

.service-card p,
.example-list p,
.process-steps p,
.price-note {
  color: var(--muted);
  line-height: 1.6;
}

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

.example-list article {
  display: grid;
  grid-template-columns: 190px minmax(0, 0.95fr) minmax(0, 1.3fr);
  gap: 24px;
  align-items: start;
  padding: 24px;
}

.example-list span {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.example-list h3,
.example-list p {
  margin-bottom: 0;
}

.price-card {
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.price-card.featured {
  border-color: rgba(45, 107, 79, 0.45);
  box-shadow: var(--shadow);
}

.price-card h3 {
  margin-bottom: 8px;
  font-size: 44px;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 26px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.45;
}

.price-card li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

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

.process-steps article {
  padding: 26px;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-section div {
  max-width: 760px;
}

.cta-section h2 {
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 32px clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
}

.site-footer p {
  margin: 0;
}

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

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .service-grid,
  .pricing-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .example-list article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cta-section {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .section {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    gap: 14px;
    font-size: 13px;
  }

  h1 {
    font-size: 44px;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-text {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .panel-header {
    flex-direction: column;
  }

  .services,
  .examples,
  .pricing,
  .process,
  .cta-section {
    padding: 58px 0;
  }

  .site-footer {
    flex-direction: column;
  }
}
