:root {
  --bg: #ffffff;
  --bg-soft: #f5f8f6;
  --ink: #16201b;
  --muted: #5d6c64;
  --line: #dfe7e2;
  --green: #117a55;
  --green-deep: #0f5f44;
  --green-soft: #e8f6ef;
  --blue: #2b74e4;
  --red: #d73d35;
  --yellow: #f5c451;
  --shadow: 0 18px 50px rgba(22, 32, 27, 0.1);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  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;
}

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 760;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--green);
}

.brand-mark svg {
  width: 34px;
  height: 34px;
}

.brand-mark rect {
  fill: var(--green-soft);
  stroke: currentColor;
  stroke-width: 2;
}

.brand-mark path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.desktop-nav a,
.site-footer a {
  transition: color 160ms ease;
}

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

.header-action {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--green-deep);
  font-size: 14px;
  font-weight: 760;
  background: #fff;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(440px, 1.06fr);
  gap: 56px;
  align-items: center;
  min-height: calc(100vh - 76px);
  padding-top: 52px;
}

.hero h1,
.section-intro h2,
.audit-proof-copy h2,
.pricing-copy h2,
.form-copy h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 810;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero h1 {
  max-width: 660px;
  font-size: clamp(44px, 6.3vw, 76px);
}

.hero-copy p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2.1vw, 21px);
  line-height: 1.48;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 780;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button.primary {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

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

.button.secondary {
  color: var(--green-deep);
  background: #fff;
  border-color: var(--line);
}

.button.secondary:hover {
  border-color: #b8cbc1;
}

.button.full {
  width: 100%;
}

.signal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  list-style: none;
}

.signal-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.signal-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.audit-preview {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.browser-bar {
  display: grid;
  grid-template-columns: 10px 10px 10px 1fr;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
  background: #f8faf9;
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cdd8d1;
}

.browser-bar div {
  justify-self: end;
}

.audit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  padding: 18px;
}

.profile-card,
.note,
.price-card,
.markup-panel,
.audit-form,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.profile-cover {
  height: 116px;
  border-radius: 7px 7px 0 0;
  background:
    linear-gradient(135deg, rgba(17, 122, 85, 0.92), rgba(43, 116, 228, 0.6)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.14) 0 10px, rgba(255, 255, 255, 0) 10px 20px);
}

.profile-body {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px;
}

.profile-body strong,
.profile-body span {
  display: block;
}

.profile-body strong {
  font-size: 15px;
}

.profile-body span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--green-soft);
  border: 1px solid #b9dfcd;
}

.score-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 2px 16px 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
}

.score-row strong {
  color: var(--green);
}

.score-track {
  height: 8px;
  margin: 0 16px 18px;
  border-radius: 999px;
  background: #e8eee9;
}

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

.audit-notes {
  display: grid;
  gap: 12px;
}

.note {
  display: flex;
  gap: 12px;
  padding: 14px;
}

.pin {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  font-size: 13px;
  font-weight: 820;
  background: var(--red);
}

.note.fix .pin {
  background: var(--green);
}

.note strong {
  display: block;
  font-size: 14px;
}

.note p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
}

.audit-arrow {
  position: absolute;
  width: 110px;
  color: var(--red);
  pointer-events: none;
}

.audit-arrow path {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.arrow-one {
  top: 96px;
  left: 42%;
}

.arrow-two {
  right: 30px;
  bottom: 60px;
}

.proof-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 32px, var(--max));
  margin: -20px auto 0;
  padding: 22px 0 52px;
  border-bottom: 1px solid var(--line);
}

.proof-strip div {
  display: grid;
  gap: 4px;
}

.proof-strip strong {
  font-size: 18px;
}

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

.proof-strip a {
  color: var(--green-deep);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.74fr) minmax(0, 1.26fr);
  gap: 48px;
  align-items: start;
}

.section-intro h2,
.audit-proof-copy h2,
.pricing-copy h2,
.form-copy h2 {
  font-size: clamp(34px, 4vw, 54px);
}

.section-intro p,
.audit-proof-copy p,
.pricing-copy p,
.form-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.fix-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.fix-list article {
  min-height: 218px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  color: var(--green-deep);
  background: var(--green-soft);
  font-size: 12px;
  font-weight: 820;
}

.fix-list h3,
.timeline h3,
.price-card h3 {
  margin: 20px 0 8px;
  font-size: 21px;
  line-height: 1.16;
}

.fix-list p,
.timeline p,
.price-card p {
  margin: 0;
  color: var(--muted);
}

.audit-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 48px;
  align-items: center;
}

.markup-panel {
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.markup-header span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.markup-canvas {
  position: relative;
  min-height: 430px;
  padding: 24px;
  background: var(--bg-soft);
}

.map-card.large {
  width: 62%;
  height: 315px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.image-line {
  display: block;
  height: 14px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #dbe6df;
}

.image-line.short {
  width: 42%;
  height: 58px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #9bd5bd, #cfeadf);
}

.image-line.medium {
  width: 72%;
}

.callout {
  position: absolute;
  max-width: 210px;
  padding: 14px;
  border: 2px solid var(--red);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(22, 32, 27, 0.1);
}

.callout::before {
  content: "";
  position: absolute;
  width: 42px;
  height: 2px;
  background: var(--red);
}

.callout strong,
.callout span {
  display: block;
}

.callout strong {
  font-size: 14px;
}

.callout span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.callout-a {
  top: 58px;
  right: 32px;
}

.callout-a::before {
  left: -44px;
  top: 28px;
}

.callout-b {
  right: 52px;
  bottom: 144px;
}

.callout-b::before {
  left: -44px;
  top: 28px;
}

.callout-c {
  left: 74px;
  bottom: 34px;
  border-color: var(--green);
}

.callout-c::before {
  right: -44px;
  top: 28px;
  background: var(--green);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 12px;
  color: var(--ink);
  font-weight: 720;
}

.check-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--green);
}

.process-section {
  width: 100%;
  max-width: none;
  padding-right: max(16px, calc((100vw - var(--max)) / 2));
  padding-left: max(16px, calc((100vw - var(--max)) / 2));
  background: var(--bg-soft);
}

.centered {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.timeline article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.timeline article > span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-weight: 820;
}

.pricing-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  gap: 44px;
  align-items: center;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.price-card {
  padding: 26px;
}

.price-card.featured {
  border-color: #9ed7bd;
  box-shadow: var(--shadow);
}

.price {
  margin: 12px 0 10px;
  font-size: 50px;
  font-weight: 820;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 18px;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 24px;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.price-card li {
  display: flex;
  gap: 9px;
}

.price-card li::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--green);
}

.audit-form-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 48px;
  align-items: start;
  padding-top: 100px;
  border-top: 1px solid var(--line);
}

.mini-policy {
  margin-top: 24px;
  padding: 14px 16px;
  border-left: 3px solid var(--green);
  color: var(--muted);
  background: var(--bg-soft);
  font-size: 14px;
}

.audit-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.audit-form label {
  display: grid;
  gap: 8px;
}

.audit-form label span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.audit-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.audit-form input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(17, 122, 85, 0.12);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green-deep);
  font-size: 14px;
  font-weight: 720;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 48px;
}

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

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 17px;
  font-weight: 780;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

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

.site-footer div,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-footer strong {
  color: var(--ink);
}

.site-footer nav {
  font-size: 14px;
  font-weight: 720;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .hero,
  .split-section,
  .audit-proof,
  .pricing-section,
  .audit-form-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

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

  .audit-preview {
    max-width: 720px;
  }

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

@media (max-width: 720px) {
  .site-header {
    width: min(100% - 24px, var(--max));
    padding: 12px 0;
  }

  .brand {
    font-size: 15px;
  }

  .header-action {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .section-pad {
    width: min(100% - 24px, var(--max));
    padding: 60px 0;
  }

  .hero h1 {
    font-size: clamp(40px, 14vw, 54px);
  }

  .hero-copy p {
    font-size: 17px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .signal-list {
    display: grid;
  }

  .audit-grid,
  .fix-list,
  .timeline,
  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .audit-grid {
    padding: 14px;
  }

  .browser-bar div {
    justify-self: start;
  }

  .audit-arrow {
    display: none;
  }

  .proof-strip {
    width: min(100% - 24px, var(--max));
    padding-bottom: 34px;
  }

  .markup-canvas {
    min-height: 520px;
  }

  .map-card.large {
    width: 100%;
    height: 210px;
  }

  .callout {
    position: relative;
    inset: auto;
    max-width: none;
    margin-top: 12px;
  }

  .callout::before {
    display: none;
  }

  .process-section {
    padding-right: 12px;
    padding-left: 12px;
  }

  .site-footer div,
  .site-footer nav {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
