:root {
  color-scheme: light;
  --ink: #17211e;
  --muted: #66736c;
  --paper: #fbfaf5;
  --stone: #f2eee6;
  --stone-2: #ebe5da;
  --panel: #fffdfa;
  --line: #ded8cc;
  --green: #174f36;
  --green-2: #1f6b4d;
  --amber: #d9932f;
  --shadow: 0 18px 50px rgba(31, 39, 35, 0.08);
  --page: min(1120px, calc(100vw - 40px));
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

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

h1,
h2,
h3 {
  font-family: Manrope, Inter, system-ui, sans-serif;
  letter-spacing: -0.02em;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 5vw, 4.35rem);
  line-height: 1.02;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.75rem, 3.4vw, 3rem);
  line-height: 1.08;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: 100%;
  border-bottom: 1px solid rgba(222, 216, 204, 0.8);
  padding: 12px max(20px, calc((100vw - 1120px) / 2));
  background: rgba(251, 250, 245, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 210px;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(23, 79, 54, 0.1);
  border-radius: 12px;
  background: #fffaf1;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-weight: 800;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.84rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-nav a {
  text-decoration: none;
}

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none;
}

.header-cta {
  border: 1px solid rgba(23, 79, 54, 0.2);
  padding: 9px 15px;
  color: var(--green);
  white-space: nowrap;
}

.menu-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(340px, 0.97fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
  width: var(--page);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 88px) 0;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 16px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.7vw, 1.2rem);
}

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

.button {
  border: 1px solid transparent;
  padding: 12px 18px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

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

.button.primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 14px 30px rgba(23, 79, 54, 0.18);
}

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

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  max-width: 620px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.trust-list li {
  position: relative;
  padding-left: 18px;
}

.trust-list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  content: "";
}

.hero-dashboard {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px;
  background: linear-gradient(180deg, #fffefa, #f7f1e7);
  box-shadow: var(--shadow);
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.dashboard-top strong {
  color: var(--green);
}

.inquiry-card,
.dashboard-grid article {
  border: 1px solid rgba(222, 216, 204, 0.82);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
}

.inquiry-card {
  padding: 18px;
}

.inquiry-card small,
.dashboard-grid small {
  color: var(--green);
  font-weight: 800;
}

.inquiry-card p {
  margin: 10px 0 14px;
  font-size: 1.05rem;
}

.inquiry-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.inquiry-card span {
  border-radius: 999px;
  padding: 7px 10px;
  background: var(--stone);
  color: var(--muted);
  font-size: 0.84rem;
}

.dashboard-grid {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.dashboard-grid article {
  padding: 14px 16px;
}

.dashboard-grid p {
  margin: 5px 0 0;
  color: var(--muted);
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(58px, 8vw, 96px) 0;
  scroll-margin-top: 88px;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading.narrow {
  max-width: 760px;
}

.section-heading.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
}

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

.problem {
  border-block: 1px solid rgba(222, 216, 204, 0.7);
  background: var(--stone);
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - 1120px) / 2));
}

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

.problem-grid article {
  border: 1px solid rgba(222, 216, 204, 0.9);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(255, 253, 250, 0.72);
}

.problem-grid p,
.service-list p,
.service-list small,
.timeline p,
.compare p,
.faq-list p,
.final-cta p,
.form-note {
  color: var(--muted);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}

.service-list article {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

.service-list article:nth-child(odd) {
  padding-right: 26px;
}

.service-list article:nth-child(even) {
  border-left: 1px solid var(--line);
  padding-left: 26px;
}

.service-list p {
  margin-bottom: 8px;
}

.service-list small {
  font-weight: 700;
}

.timeline-section {
  border-radius: 24px;
  padding-inline: clamp(20px, 4vw, 42px);
  background: #fffdfa;
  box-shadow: inset 0 0 0 1px rgba(222, 216, 204, 0.76);
}

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

.timeline li {
  position: relative;
  border-top: 1px solid var(--green);
  padding: 26px 20px 0 0;
}

.timeline li:not(:last-child)::after {
  position: absolute;
  top: -4px;
  right: 14px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.timeline span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--green);
  font-weight: 900;
}

.compare {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.compare article {
  padding: clamp(24px, 4vw, 42px);
}

.compare .before {
  background: #f6f1e8;
}

.compare .after {
  background: #f8fff9;
  border-left: 1px solid var(--line);
}

.compare span {
  display: inline-flex;
  margin-bottom: 18px;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.before span {
  background: #fff4e4;
  color: #9a5a18;
}

.after span {
  background: #e7f3eb;
  color: var(--green);
}

.local-trust {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

.local-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.local-tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 13px;
  background: #fff;
  color: var(--green);
  font-weight: 750;
}

.faq {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(24px, 5vw, 70px);
}

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

details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

summary {
  cursor: pointer;
  font-weight: 850;
}

details p {
  margin: 12px 0 0;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
  width: var(--page);
  margin: 0 auto 46px;
  border-radius: 24px;
  padding: clamp(28px, 5vw, 50px);
  background: var(--green);
  color: #fff;
  scroll-margin-top: 88px;
}

.final-cta .eyebrow,
.final-cta p {
  color: #dcebe2;
}

.final-copy {
  max-width: 560px;
}

.final-copy small {
  display: inline-flex;
  margin-top: 8px;
  color: #f2f7f0;
  font-weight: 800;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 9px 12px;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.social-links span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--green);
}

.social-links svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.social-links a[href*="facebook"] svg {
  fill: currentColor;
  stroke: none;
}

.final-cta .button.primary {
  background: #fff;
  color: var(--green);
  box-shadow: none;
}

.audit-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: clamp(16px, 3vw, 22px);
  background: rgba(255, 253, 250, 0.08);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.08);
}

.form-row {
  display: grid;
  gap: 6px;
}

.form-row-wide,
.form-note,
.privacy-note,
.hp-field,
.verification-step {
  grid-column: 1 / -1;
}

.hp-field {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.audit-form label {
  color: #f2f7f0;
  font-size: 0.84rem;
  font-weight: 800;
}

.audit-form input,
.audit-form select,
.audit-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  padding: 10px 12px;
  background: #fffdfa;
  color: var(--ink);
  font: inherit;
}

.audit-form textarea {
  resize: vertical;
}

.audit-form input::placeholder,
.audit-form textarea::placeholder {
  color: #7a857e;
}

.form-submit {
  width: 100%;
}

.form-note {
  margin: -2px 0 0;
  font-size: 0.9rem;
}

.form-note strong {
  color: #fff;
}

.privacy-note {
  margin: -4px 0 0;
  color: rgba(242, 247, 240, 0.78);
  font-size: 0.82rem;
  line-height: 1.45;
}

.verification-step {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.verification-step[hidden] {
  display: none;
}

.verification-row {
  display: grid;
  grid-template-columns: 1fr minmax(90px, 140px);
  gap: 10px;
  align-items: center;
}

.verification-row span {
  color: #f2f7f0;
  font-weight: 800;
}

.mobile-call {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 80;
  display: none;
  border-radius: 999px;
  padding: 13px 17px;
  background: var(--green);
  color: #fff;
  box-shadow: 0 16px 32px rgba(23, 79, 54, 0.26);
  font-weight: 850;
  opacity: 0;
  pointer-events: none;
  text-decoration: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-call.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.result-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
}

.result-box {
  width: min(680px, 100%);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(28px, 5vw, 48px);
  background: #fffdfa;
  box-shadow: var(--shadow);
}

.result-box h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.result-box p:not(.eyebrow) {
  color: var(--muted);
}

.confirm-form {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.confirm-form label {
  color: var(--green);
  font-weight: 850;
}

.confirm-form input {
  width: min(220px, 100%);
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.confirm-form .button {
  width: fit-content;
}

input:focus,
select:focus,
textarea:focus,
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(217, 147, 47, 0.32);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-dashboard,
  .problem-grid article,
  .service-list article,
  .compare {
    animation: rise 420ms ease both;
  }

  @keyframes rise {
    from {
      opacity: 0;
      transform: translateY(10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (max-width: 900px) {
  :root {
    --page: min(100vw - 32px, 720px);
  }

  .site-header {
    grid-template-columns: auto auto;
    padding: 10px 16px;
  }

  .brand {
    min-width: 0;
  }

  .menu-toggle {
    display: inline-grid;
    gap: 5px;
    justify-self: end;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 12px;
    background: #fff;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--green);
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open .site-nav {
    display: grid;
    grid-column: 1 / -1;
    gap: 12px;
    justify-content: stretch;
    padding: 12px 0 4px;
  }

  .hero,
  .section-heading.split,
  .local-trust,
  .faq,
  .final-cta {
    grid-template-columns: 1fr;
  }

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

  .service-list article,
  .service-list article:nth-child(odd),
  .service-list article:nth-child(even) {
    grid-template-columns: 1fr;
    border-left: 0;
    padding: 20px 0;
  }

  .timeline li {
    border-top: 0;
    border-left: 1px solid var(--green);
    padding: 0 0 26px 22px;
  }

  .timeline li:not(:last-child)::after {
    top: 6px;
    right: auto;
    left: -4px;
  }

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

  .compare .after {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .audit-form {
    grid-template-columns: 1fr;
  }

  .verification-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --page: min(100vw - 24px, 560px);
  }

  h1 {
    font-size: 2.32rem;
  }

  .hero {
    padding: 42px 0 54px;
  }

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

  .trust-list {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 54px 0;
  }

  .problem {
    padding-inline: 12px;
  }

  .mobile-call {
    display: inline-flex;
  }
}
