@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --green: #79bd20;
  --green-deep: #548d12;
  --ink: #142029;
  --ink-soft: #52616b;
  --muted: #7e8b92;
  --mist: #f4f7f2;
  --mist-strong: #e8efdf;
  --line: #d9e2d3;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(20, 32, 41, 0.13);
  --shadow-soft: 0 8px 24px rgba(20, 32, 41, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: "Manrope", "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.62;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3,
.button,
.header-cta,
.desktop-nav,
.eyebrow,
.section-kicker,
.form-kicker {
  font-family: "Manrope", "Helvetica Neue", sans-serif;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1rem;
  font-size: clamp(2.45rem, 4.1vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  max-width: 18ch;
  margin-bottom: 0.8rem;
  font-size: clamp(1.85rem, 3vw, 2.85rem);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
}

.skip-link {
  position: absolute;
  top: -4rem;
  left: 1rem;
  z-index: 30;
  padding: 0.7rem 1rem;
  background: var(--ink);
  color: var(--white);
  font-size: 0.86rem;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(20, 32, 41, 0.08);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1160px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
}

.brand {
  display: block;
  width: 138px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.65rem;
  margin-left: auto;
  color: #34434d;
  font-size: 0.85rem;
  font-weight: 600;
}

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

.desktop-nav a {
  transition: color 150ms ease;
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 1rem;
  border-radius: 4px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 150ms ease, color 150ms ease;
}

.header-cta:hover {
  background: var(--green);
  color: var(--ink);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
}

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

.hero-image {
  object-fit: cover;
  object-position: 58% center;
  filter: brightness(0.48) contrast(1.02);
}

.hero-scrim {
  z-index: 1;
  background: rgba(9, 20, 27, 0.28);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.5rem;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 3.25rem 0;
  color: var(--white);
}

.hero-copy-block {
  align-self: center;
}

.eyebrow,
.section-kicker,
.form-kicker {
  margin: 0 0 0.7rem;
  color: var(--green);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 12ch;
}

.hero-copy {
  max-width: 34rem;
  margin-bottom: 1.35rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 500;
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  max-width: 28rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 0.95rem;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease, transform 150ms ease;
}

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

.button-primary {
  background: var(--green);
  color: var(--ink);
}

.button-primary:hover {
  background: #92cf40;
}

.button-call {
  background: var(--white);
  color: var(--ink);
}

.button-call:hover {
  background: #edf4e8;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
  color: var(--white);
}

.button-secondary:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.review-badge {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.36rem;
  margin-top: 1.1rem;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
}

.google-word {
  font-weight: 700;
}

.stars {
  color: #ffc400;
  font-size: 0.96rem;
  letter-spacing: 0;
}

.trust-strip {
  display: grid;
  gap: 0.45rem;
  padding: 0;
  margin: 0.85rem 0 0;
  list-style: none;
}

.trust-strip li,
.check-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.79rem;
  font-weight: 600;
}

.trust-strip li {
  color: rgba(255, 255, 255, 0.91);
}

.trust-strip li::before,
.check-list li::before {
  position: absolute;
  top: 0.3rem;
  left: 0;
  width: 0.67rem;
  height: 0.67rem;
  border: 2px solid var(--green);
  border-top: 0;
  border-left: 0;
  content: "";
  transform: rotate(45deg);
}

.hero-quote-form {
  display: grid;
  gap: 0.75rem;
  padding: 1.35rem;
  border-top: 3px solid var(--green);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.form-heading {
  margin-bottom: 0.2rem;
}

.form-heading h2 {
  margin-bottom: 0.3rem;
  font-size: 1.45rem;
  font-weight: 700;
}

.form-heading p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.hero-quote-form label,
.quote-form label {
  display: grid;
  gap: 0.3rem;
  color: #4b5a64;
  font-size: 0.76rem;
  font-weight: 700;
}

.hero-quote-form input,
.hero-quote-form select,
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 0.7rem 0.75rem;
  border: 1px solid #cbd6c5;
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 0.86rem;
}

.hero-quote-form input:focus,
.hero-quote-form select:focus,
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--green-deep);
  outline: 2px solid rgba(121, 189, 32, 0.25);
  outline-offset: 0;
}

.hero-quote-form .button {
  width: 100%;
  margin-top: 0.15rem;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
}

.form-note a {
  color: var(--green-deep);
  font-weight: 700;
}

.quick-panel {
  position: sticky;
  top: 76px;
  z-index: 10;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.72rem max(1rem, calc((100% - 1160px) / 2));
  background: var(--mist);
  border-bottom: 1px solid var(--line);
  scrollbar-width: none;
}

.quick-panel::-webkit-scrollbar {
  display: none;
}

.quick-panel a {
  color: #4b5a64;
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.quick-panel a:hover {
  color: var(--green-deep);
}

.section,
.content-grid,
.article-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: clamp(3.25rem, 5vw, 4.75rem) 0;
}

.intro {
  max-width: min(1160px, calc(100% - 32px));
  padding-top: 3.1rem;
  padding-bottom: 3.1rem;
}

.intro-panel {
  display: grid;
  gap: 1.6rem;
  padding: clamp(1.4rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--mist);
  box-shadow: var(--shadow-soft);
}

.intro-main h2 {
  max-width: 17ch;
}

.intro-main p {
  max-width: 42rem;
  margin-bottom: 0;
}

.intro-points {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.intro-points li {
  display: grid;
  gap: 0.18rem;
  padding: 0.9rem 0;
  border-top: 1px solid #d4dfcc;
}

.intro-points li:last-child {
  padding-bottom: 0;
}

.intro-points strong {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
}

.intro-points span {
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.5;
}

.intro p,
.section-heading p,
.split-copy p,
.areas p,
.quote-copy p,
.closing-cta p {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.section-heading {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

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

.section-heading p {
  max-width: 31rem;
  margin-bottom: 0;
}

.service-grid {
  display: grid;
  gap: 0.8rem;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 210px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(20, 32, 41, 0.03);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.service-card:hover {
  border-color: #bedaa0;
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.service-icon {
  display: block;
  margin-bottom: 1rem;
  color: var(--green-deep);
  font-size: 0.7rem;
  font-weight: 700;
}

.service-card p {
  margin-bottom: 1.15rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.service-link,
.content-card a {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  color: var(--green-deep);
  font-size: 0.79rem;
  font-weight: 700;
  text-decoration: none;
}

.service-link::after,
.content-card a::after {
  width: 0.48rem;
  height: 0.48rem;
  margin: 0.29rem 0 0 0.45rem;
  border: 1.5px solid currentColor;
  border-bottom: 0;
  border-left: 0;
  content: "";
  transform: rotate(45deg);
}

.service-link:hover,
.content-card a:hover {
  color: var(--ink);
}

.split {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

.split-copy {
  padding-top: 0.1rem;
}

.split-media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 1.2rem 0 0;
  list-style: none;
}

.check-list li {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.check-list li::before {
  top: 0.25rem;
}

.areas {
  padding: clamp(2.25rem, 4vw, 3.4rem) clamp(1.25rem, 3vw, 3rem);
  background: var(--mist);
  border-radius: 10px;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.2rem;
}

.area-list span {
  padding: 0.5rem 0.78rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: #4d5c65;
  font-size: 0.76rem;
  font-weight: 600;
}

.process-list {
  display: grid;
  gap: 1px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 5px;
  list-style: none;
  counter-reset: steps;
}

.process-list li {
  position: relative;
  padding: 1.1rem 1rem 1.1rem 3.3rem;
  background: var(--white);
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.process-list li::before {
  position: absolute;
  top: 1.12rem;
  left: 1.05rem;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  content: counter(steps);
  counter-increment: steps;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.45rem;
  text-align: center;
}

.process-list strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--ink);
  font-weight: 700;
}

.closing-cta {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  margin-bottom: 3.5rem;
  padding: 1.75rem;
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
}

.closing-cta h2 {
  margin-bottom: 0.45rem;
  color: var(--white);
  font-size: clamp(1.7rem, 2.7vw, 2.35rem);
}

.closing-cta p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.closing-cta .button {
  width: 100%;
}

.quote {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
}

.quote h2 {
  color: var(--white);
}

.quote-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.phone-line a {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
}

.phone-line a:hover {
  color: var(--green);
}

.quote-form {
  display: grid;
  gap: 0.8rem;
}

.quote-form label {
  color: rgba(255, 255, 255, 0.8);
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
}

.quote-form textarea {
  min-height: 108px;
  resize: vertical;
}

.page-hero {
  padding: clamp(3.5rem, 6vw, 4.75rem) 0 clamp(2.75rem, 4vw, 3.75rem);
  background: var(--mist);
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  display: grid;
  gap: 0.65rem;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 16ch;
  margin-bottom: 0.35rem;
  font-size: clamp(2.25rem, 3.8vw, 3.55rem);
}

.page-hero p {
  max-width: 44rem;
  margin-bottom: 0.55rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.page-hero .button,
.cta-band .button {
  justify-self: start;
}

.content-grid {
  display: grid;
  gap: 0.8rem;
  padding: clamp(3rem, 5vw, 4.25rem) 0;
}

.content-card {
  display: flex;
  flex-direction: column;
  min-height: 185px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
}

.content-card h2 {
  max-width: 17ch;
  margin-bottom: 0.65rem;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  line-height: 1.25;
}

.content-card p,
.article-shell p,
.article-shell li {
  color: var(--ink-soft);
}

.article-shell {
  display: grid;
  gap: 1rem;
  width: min(780px, calc(100% - 32px));
  padding: clamp(3rem, 5vw, 4.25rem) 0;
}

.article-shell h2 {
  max-width: 21ch;
  margin-top: 1.2rem;
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
}

.article-shell h3 {
  margin-top: 0.5rem;
}

.article-shell ul,
.article-shell ol {
  padding-left: 1.25rem;
}

.article-meta {
  margin-bottom: 0;
  color: var(--green-deep);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cta-band {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.3rem;
  padding: 1.35rem;
  border-radius: 5px;
  background: var(--ink);
  color: var(--white);
}

.cta-band h2 {
  margin: 0;
  color: var(--white);
  font-size: 1.45rem;
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.site-footer {
  display: grid;
  gap: 2rem;
  width: 100%;
  margin: 0;
  padding: 3rem max(1rem, calc((100% - 1160px) / 2)) 2rem;
  border-top: 3px solid var(--green);
  background: #0f1a21;
  color: var(--white);
}

.site-footer > div {
  display: grid;
  align-content: start;
  gap: 0.7rem;
}

.site-footer img {
  width: 168px;
  height: auto;
}

.site-footer p {
  max-width: 25rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.86rem;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem 1rem;
  align-content: start;
  font-size: 0.8rem;
  font-weight: 600;
}

.site-footer nav a {
  color: rgba(255, 255, 255, 0.84);
}

.site-footer nav a:last-child {
  grid-column: 1 / -1;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--green);
  font-weight: 700;
}

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

@media (min-width: 620px) {
  .trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1.1rem;
  }

  .hero-quote-form {
    max-width: 405px;
  }

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

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

  .full-span {
    grid-column: 1 / -1;
  }

  .closing-cta {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .closing-cta .button {
    width: auto;
    min-width: 190px;
  }
}

@media (min-width: 900px) {
  .header-inner {
    min-height: 82px;
  }

  .brand {
    width: 158px;
  }

  .desktop-nav {
    display: flex;
  }

  .header-cta {
    min-width: 124px;
    margin-left: 0.85rem;
  }

  .hero {
    min-height: 640px;
  }

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

  .hero-content {
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.72fr);
    gap: clamp(2.5rem, 6vw, 5.75rem);
    align-items: center;
    padding: 3.5rem 0;
  }

  .hero h1 {
    max-width: 14ch;
  }

  .hero-copy {
    font-size: 1.04rem;
  }

  .hero-quote-form {
    justify-self: end;
    width: 100%;
    padding: 1.5rem;
  }

  .section-heading {
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.65fr);
    align-items: end;
  }

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

  .split {
    grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
    gap: clamp(2.5rem, 6vw, 5rem);
  }

  .split-media {
    aspect-ratio: 3 / 2;
  }

  .intro-panel {
    grid-template-columns: minmax(0, 1.2fr) minmax(275px, 0.8fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
  }

  .intro-points li:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .process-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-list li + li {
    border-left: 1px solid var(--line);
  }

  .quote,
  .site-footer {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);
    align-items: start;
  }

  .site-footer nav {
    justify-self: end;
    width: min(100%, 360px);
  }

  .content-grid.three-col {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

/* Pricing page */
.sr-only {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pricing-hero {
  background: var(--ink);
  color: var(--white);
}

.pricing-hero-inner,
.pricing-section,
.pricing-plans,
.quote-builder {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.pricing-hero-inner {
  display: grid;
  gap: 1.5rem;
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.pricing-hero .eyebrow {
  color: var(--green);
}

.pricing-hero h1 {
  max-width: 14ch;
  color: var(--white);
}

.pricing-hero > p,
.pricing-hero-inner > div > p {
  max-width: 41rem;
  margin-bottom: 1.4rem;
  color: rgba(255, 255, 255, 0.76);
}

.pricing-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

.text-call-link {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.text-call-link:hover {
  color: var(--green);
}

.pricing-summary {
  display: grid;
  gap: 0;
  padding: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
}

.pricing-summary-label {
  margin-bottom: 0.8rem;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pricing-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

.pricing-summary-row strong {
  color: var(--white);
  text-align: right;
}

.pricing-summary-note {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  line-height: 1.55;
}

.pricing-section,
.pricing-plans,
.quote-builder {
  padding-top: clamp(3.25rem, 6vw, 5rem);
}

.pricing-section {
  padding-bottom: clamp(3.25rem, 6vw, 5rem);
}

.pricing-section-heading {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.pricing-section-heading h2,
.builder-intro h2 {
  max-width: 19ch;
}

.pricing-section-heading > p {
  max-width: 34rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.pricing-section-heading.compact {
  margin-bottom: 1.25rem;
}

.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.pricing-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  text-align: left;
}

.pricing-table caption {
  padding: 0.9rem 1rem;
  background: var(--mist);
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 600;
  text-align: left;
}

.pricing-table th,
.pricing-table td {
  padding: 1rem;
  border-top: 1px solid var(--line);
  vertical-align: middle;
}

.pricing-table thead th {
  border-top: 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pricing-table tbody th {
  min-width: 215px;
  font-size: 0.88rem;
}

.pricing-table tbody th span,
.pricing-table td small {
  display: block;
  margin-top: 0.15rem;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.45;
}

.pricing-table td strong {
  display: block;
  font-size: 1.04rem;
}

.saving-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: #e8f5d9;
  color: var(--green-deep);
  font-size: 0.69rem;
  font-weight: 800;
  line-height: 1.25;
  white-space: nowrap;
}

.table-action,
.survey-back {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--green-deep);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.pricing-disclaimer {
  max-width: 50rem;
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.pricing-plans {
  padding-bottom: clamp(3.25rem, 6vw, 5rem);
  border-top: 1px solid var(--line);
}

.plan-grid {
  display: grid;
  gap: 0.8rem;
}

.plan-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
}

.plan-card-featured {
  border-color: var(--green);
  box-shadow: var(--shadow-soft);
}

.plan-tag {
  display: inline-flex;
  align-self: flex-start;
  margin: 0 0 0.65rem;
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.67rem;
  font-weight: 800;
  text-transform: uppercase;
}

.plan-name {
  margin-bottom: 0.35rem;
  color: var(--ink-soft);
  font-size: 0.77rem;
  font-weight: 800;
  text-transform: uppercase;
}

.plan-price {
  margin-bottom: 0.75rem;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.plan-price span {
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 600;
}

.plan-card > p:not(.plan-name):not(.plan-price):not(.plan-tag) {
  min-height: 3.3em;
  margin-bottom: 1rem;
  color: var(--ink-soft);
  font-size: 0.83rem;
}

.plan-card ul {
  display: grid;
  gap: 0.4rem;
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: 0.77rem;
}

.plan-card li {
  display: flex;
  gap: 0.45rem;
}

.plan-card li::before {
  color: var(--green-deep);
  content: "\2713";
  font-weight: 800;
}

.plan-button {
  width: 100%;
  margin-top: auto;
}

.quote-builder {
  display: grid;
  gap: 1.4rem;
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
}

.builder-intro {
  padding: 1.25rem;
  border-left: 4px solid var(--green);
  background: var(--mist);
}

.builder-intro h2 {
  margin-bottom: 0.6rem;
}

.builder-intro p {
  max-width: 42rem;
  margin-bottom: 0.55rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.builder-intro a {
  color: var(--green-deep);
  font-size: 0.84rem;
  font-weight: 800;
}

.survey-shell {
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.survey-progress {
  display: flex;
  gap: 0.45rem;
  margin: 0 0 1.2rem;
  padding: 0;
  list-style: none;
}

.survey-progress li {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
  color: var(--muted);
  font-size: 0;
  font-weight: 800;
}

.survey-progress span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink-soft);
  font-size: 0.73rem;
}

.survey-progress .is-current span,
.survey-progress .is-complete span {
  border-color: var(--green);
  background: var(--green);
  color: var(--ink);
}

.survey-status {
  margin-bottom: 1.2rem;
  color: var(--ink-soft);
  font-size: 0.79rem;
}

.survey-step {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.survey-step legend {
  margin-bottom: 0.35rem;
  padding: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 800;
  line-height: 1.2;
}

.survey-step > p {
  margin-bottom: 1rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.survey-fields {
  display: grid;
  gap: 0.8rem;
}

.survey-fields label,
.choice-field legend {
  color: var(--ink);
  font-size: 0.77rem;
  font-weight: 700;
}

.survey-fields input,
.survey-fields select {
  width: 100%;
  min-height: 44px;
  margin-top: 0.35rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 0.9rem;
}

.choice-field {
  margin: 0;
  padding: 0;
  border: 0;
}

.option-grid,
.service-options {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.45rem;
}

.option-card,
.service-option,
.quote-option {
  position: relative;
  display: block;
  cursor: pointer;
}

.option-card input,
.service-option input,
.quote-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-card span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.55rem;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 700;
}

.option-card input:checked + span,
.option-card:has(input:focus-visible) span {
  border-color: var(--green);
  background: #eff9e4;
  color: var(--ink);
}

.service-options {
  grid-template-columns: 1fr;
}

.service-option > span {
  display: grid;
  gap: 0.18rem;
  padding: 0.85rem 0.9rem 0.85rem 2.55rem;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--ink);
}

.service-option > span::before {
  position: absolute;
  top: 1.02rem;
  left: 0.9rem;
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--white);
  color: var(--ink);
  content: "";
  font-size: 0.67rem;
  font-weight: 800;
}

.service-option input:checked + span {
  border-color: var(--green);
  background: #f7fcee;
}

.service-option input:checked + span::before {
  border-color: var(--green);
  background: var(--green);
  content: "\2713";
}

.service-option strong {
  font-size: 0.87rem;
}

.service-option small {
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.survey-result h3 {
  margin-bottom: 0.45rem;
  font-size: clamp(1.3rem, 2.6vw, 1.75rem);
}

.result-services {
  margin-bottom: 1rem;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.quote-options {
  display: grid;
  gap: 0.65rem;
}

.quote-option {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.quote-option.is-selected {
  border-color: var(--green);
  background: #f7fcee;
}

.quote-option-name,
.quote-option-head {
  display: flex;
  justify-content: space-between;
  gap: 0.65rem;
  margin-bottom: 0.4rem;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quote-option strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1.55rem;
  line-height: 1;
}

.quote-option small,
.result-note {
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.result-note {
  margin: 0.9rem 0 0;
}

.survey-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
  margin-top: 1.35rem;
}

.survey-actions .button {
  margin-left: auto;
}

.survey-step[hidden],
.survey-actions [hidden],
.mock-notice[hidden] {
  display: none !important;
}

.mock-notice {
  margin: 1rem 0 0;
  padding: 0.75rem;
  border-left: 3px solid var(--green);
  background: var(--mist);
  color: var(--ink-soft);
  font-size: 0.78rem;
}

@media (min-width: 620px) {
  .pricing-hero-inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    align-items: end;
  }

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

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

  .field-full {
    grid-column: 1 / -1;
  }

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

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

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

@media (min-width: 900px) {
  .pricing-section-heading {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
    align-items: end;
  }

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

  .quote-builder {
    grid-template-columns: minmax(255px, 0.68fr) minmax(0, 1.32fr);
    align-items: start;
  }

  .builder-intro {
    position: sticky;
    top: 105px;
  }

  .survey-progress li {
    font-size: 0.69rem;
  }
}
