:root {
  --ink: #10221b;
  --forest: #062d22;
  --forest-deep: #031d17;
  --forest-soft: #0c4536;
  --lime: #9bea72;
  --lime-bright: #afff84;
  --cream: #f4f1e8;
  --sand: #e9dfca;
  --blue: #b9d9ea;
  --white: #ffffff;
  --muted: #66726c;
  --line: rgba(16, 34, 27, .15);
  --shadow: 0 28px 80px rgba(4, 27, 21, .12);
  --radius-lg: 32px;
  --radius-md: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: "Avenir Next", Avenir, Inter, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.preview-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  height: 108px;
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 32px;
  width: min(1180px, calc(100% - 48px));
  margin: auto;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}
.preview-brand img { display: block; width: 188px; height: auto; }
.preview-header nav { display: flex; justify-content: center; gap: 30px; }
.preview-header nav a, .text-link { color: rgba(255, 255, 255, .8); font-size: 14px; font-weight: 650; }
.preview-header nav a:hover, .text-link:hover { color: var(--white); }
.preview-header nav a[aria-current="page"] { color: var(--lime); }
.header-actions { display: flex; align-items: center; gap: 20px; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 25px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: -.01em;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button span { font-size: 18px; }
.button-lime { color: var(--forest-deep); background: var(--lime); }
.button-lime:hover { background: var(--lime-bright); }
.button-outline { color: var(--white); border: 1px solid rgba(255, 255, 255, .46); }
.button-outline:hover { border-color: var(--lime); }
.button-dark { color: var(--white); background: var(--forest); }

.hero {
  position: relative;
  min-height: 900px;
  overflow-x: clip;
  overflow-y: visible;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 170px 24px 72px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 5%, rgba(22, 100, 75, .45), transparent 34%),
    linear-gradient(145deg, #04271e 0%, #052d22 48%, #021a15 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}
.hero-glow { position: absolute; border-radius: 999px; filter: blur(4px); opacity: .2; }
.hero-glow-one { width: 420px; height: 420px; background: #57e39e; right: -180px; top: 160px; }
.hero-glow-two { width: 300px; height: 300px; background: #caff9d; left: -170px; bottom: 100px; }
.hero-content { position: relative; z-index: 1; width: min(1000px, 100%); margin: auto; text-align: center; }
.eyebrow, .section-kicker { margin: 0 0 24px; text-transform: uppercase; letter-spacing: .2em; font-size: 12px; font-weight: 800; }
.eyebrow { color: #c8e0d6; }
.eyebrow span { display: inline-block; width: 38px; height: 1px; margin: 0 13px 4px 0; background: var(--lime); }
.hero h1 {
  max-width: 1020px;
  margin: 0 auto;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(58px, 7.1vw, 104px);
  line-height: .97;
  letter-spacing: -.06em;
  font-weight: 300;
}
.hero-copy { max-width: 780px; margin: 34px auto 0; color: #d8e4df; font-size: 19px; line-height: 1.65; }
.hero-actions { display: flex; justify-content: center; gap: 14px; margin-top: 34px; }
.hero-facts { display: flex; justify-content: center; gap: 30px; margin-top: 32px; color: #c9dad3; font-size: 13px; }
.hero-facts i { display: inline-grid; place-items: center; width: 20px; height: 20px; margin-right: 7px; color: var(--lime); border: 1px solid rgba(155,234,114,.55); border-radius: 50%; font-style: normal; }

.hero-showcase {
  position: relative;
  z-index: 2;
  width: min(1080px, 100%);
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: .82fr 1.25fr .92fr;
  align-items: stretch;
  color: var(--ink);
  border-radius: 28px;
  box-shadow: 0 -15px 70px rgba(0, 0, 0, .18);
  overflow: hidden;
}
.live-dot { display: inline-block; width: 8px; height: 8px; margin-right: 8px; background: #28c985; border-radius: 50%; box-shadow: 0 0 0 5px rgba(40, 201, 133, .12); }
.showcase-options, .showcase-proof { min-height: 370px; padding: 30px; background: var(--white); }
.showcase-label { color: #61736b; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.showcase-options > strong { display: block; margin-top: 44px; font-size: 25px; line-height: 1.15; letter-spacing: -.04em; }
.showcase-options ul { margin: 28px 0 24px; padding: 0; list-style: none; }
.showcase-options li { display: flex; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 12px; font-weight: 700; }
.showcase-options li span { color: #7a8a83; font-size: 10px; }
.showcase-options > a { display: flex; justify-content: space-between; color: var(--forest); font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: .1em; }
.showcase-founder { position: relative; min-height: 370px; margin: 0; background: #12221d; overflow: hidden; }
.showcase-founder::after { content: ""; position: absolute; inset: auto 0 0; height: 50%; background: linear-gradient(transparent, rgba(2,23,18,.82)); }
.showcase-founder img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; filter: saturate(.72) contrast(1.04); }
.showcase-founder figcaption { position: absolute; z-index: 2; left: 26px; bottom: 24px; display: flex; flex-direction: column; color: var(--white); }
.showcase-founder figcaption strong { font-size: 16px; }
.showcase-founder figcaption span { margin-top: 4px; color: #cad8d2; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.showcase-proof { display: flex; flex-direction: column; }
.showcase-stars { color: #9a6f20; font-size: 14px; letter-spacing: .12em; }
.showcase-proof blockquote { margin: 40px 0 28px; font-size: 22px; line-height: 1.42; letter-spacing: -.035em; }
.showcase-reviewer { display: flex; flex-direction: column; gap: 4px; margin-top: auto; }
.showcase-reviewer strong { font-size: 13px; }
.showcase-reviewer span { color: var(--muted); font-size: 10px; }
.showcase-bbb { display: flex; align-items: center; gap: 10px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.showcase-bbb img { width: 62px; height: 34px; object-fit: contain; }

.trust-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 0;
  padding: 48px max(24px, calc((100% - 1180px) / 2));
  background: var(--white);
}
.trust-ribbon > div { min-height: 62px; display: flex; flex-direction: column; justify-content: center; padding: 0 28px; border-right: 1px solid var(--line); }
.trust-ribbon > div:first-child { padding-left: 0; }
.trust-ribbon > div:last-child { border-right: 0; }
.trust-ribbon strong { font-size: 25px; letter-spacing: -.04em; }
.trust-ribbon span { margin-top: 5px; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .09em; }
.trust-ribbon .bbb-item { flex-direction: row; align-items: center; gap: 12px; }
.bbb-item img { width: 74px; height: 40px; object-fit: contain; }

.section { padding: 115px max(24px, calc((100% - 1180px) / 2)); }
.solutions { background: var(--cream); }
.section-heading { display: grid; grid-template-columns: 1.45fr .75fr; gap: 90px; align-items: end; margin-bottom: 58px; }
.section-kicker { margin-bottom: 18px; color: #557168; }
.section-heading h2, .planner-intro h2, .reviews-heading h2, .closing-cta h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.04;
  letter-spacing: -.055em;
  font-weight: 450;
}
.section-heading > p, .compact-heading > p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.solution-card { min-height: 430px; display: flex; flex-direction: column; justify-content: space-between; padding: 28px; border-radius: var(--radius-md); transition: transform .2s ease, box-shadow .2s ease; }
.solution-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-green { color: var(--white); background: var(--forest); }
.card-sand { background: var(--sand); }
.card-blue { background: var(--blue); }
.solution-card > span { font-size: 12px; opacity: .72; }
.solution-card div p { margin: 0 0 12px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; opacity: .72; }
.solution-card h3 { margin: 0 0 16px; font-size: 33px; line-height: 1; letter-spacing: -.045em; font-weight: 550; }
.solution-card small { display: block; max-width: 280px; font-size: 15px; line-height: 1.55; opacity: .78; }
.solution-card b { display: flex; justify-content: space-between; align-items: center; font-size: 13px; text-transform: uppercase; letter-spacing: .1em; }
.solution-card b i { display: grid; place-items: center; width: 43px; height: 43px; border: 1px solid currentColor; border-radius: 50%; font-style: normal; }

.planner-section {
  display: grid;
  grid-template-columns: .78fr 1.12fr;
  gap: 90px;
  padding: 120px max(24px, calc((100% - 1180px) / 2));
  background: #dfe9e1;
}
.planner-intro { padding-top: 18px; }
.planner-intro > p:not(.section-kicker) { color: #5a6963; font-size: 17px; line-height: 1.72; }
.planner-intro ul { padding: 0; margin: 38px 0; list-style: none; }
.planner-intro li { display: flex; gap: 16px; padding: 17px 0; border-bottom: 1px solid rgba(16,34,27,.13); font-size: 14px; font-weight: 650; }
.planner-intro li span { color: #648077; font-size: 12px; }
.planner-disclosure { padding: 20px; background: rgba(255,255,255,.48); border: 1px solid rgba(16,34,27,.12); border-radius: 16px; }
.planner-disclosure strong { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.planner-disclosure p { margin: 8px 0 0; color: #65716c; font-size: 12px; line-height: 1.55; }
.planner-card { padding: 34px; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.planner-card-head { display: flex; justify-content: space-between; gap: 18px; margin-bottom: 34px; padding-bottom: 25px; border-bottom: 1px solid var(--line); }
.planner-card-head div { display: flex; flex-direction: column; gap: 5px; }
.planner-card-head div span { color: #6c7b75; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; }
.planner-card-head strong { font-size: 21px; }
.planner-badge { align-self: flex-start; padding: 8px 12px; color: var(--forest); background: #e9f7e3; border-radius: 999px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.slider-field { display: flex; justify-content: space-between; align-items: center; margin-top: 24px; font-size: 13px; font-weight: 750; }
.slider-field output { font-size: 21px; letter-spacing: -.03em; }
.planner-card input[type="range"] { width: 100%; height: 5px; margin: 21px 0 8px; accent-color: var(--forest); cursor: pointer; }
.range-labels { display: flex; justify-content: space-between; color: #819089; font-size: 10px; }
.planner-card fieldset { margin: 31px 0 0; padding: 0; border: 0; }
.planner-card legend { margin-bottom: 12px; font-size: 13px; font-weight: 750; }
.choice-grid { display: grid; gap: 8px; }
.term-choices { grid-template-columns: repeat(6, 1fr); }
.frequency-choices { grid-template-columns: repeat(3, 1fr); }
.choice-grid button { min-height: 43px; padding: 0 8px; color: #4e5d57; background: #f3f5f3; border: 1px solid #dfe4e1; border-radius: 10px; cursor: pointer; font-size: 12px; font-weight: 750; }
.choice-grid button:hover, .choice-grid button.selected { color: var(--white); background: var(--forest); border-color: var(--forest); }
.estimate-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 32px; padding: 28px; color: var(--white); background: var(--forest); border-radius: 19px; }
.estimate-panel > div { display: flex; flex-direction: column; }
.estimate-panel span, .estimate-panel dt { color: #b9d2c8; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.estimate-panel strong { margin-top: 8px; font-size: 38px; line-height: 1; letter-spacing: -.05em; }
.estimate-panel small { margin-top: 5px; color: #b9d2c8; }
.estimate-panel dl { margin: 0; }
.estimate-panel dl div { display: flex; justify-content: space-between; gap: 16px; padding: 8px 0 12px; border-bottom: 1px solid rgba(255,255,255,.12); }
.estimate-panel dl div:last-child { padding-top: 14px; border-bottom: 0; }
.estimate-panel dd { margin: 0; font-size: 13px; font-weight: 750; }
.planner-cta { width: 100%; margin-top: 16px; }
.microcopy { margin: 11px 0 0; color: #7c8883; text-align: center; font-size: 11px; }

.process { background: var(--white); }
.compact-heading { margin-bottom: 55px; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-grid li { min-height: 260px; padding: 28px 38px 28px 0; border-right: 1px solid var(--line); }
.process-grid li + li { padding-left: 38px; }
.process-grid li:last-child { border-right: 0; }
.process-grid span { color: #708079; font-size: 12px; }
.process-grid h3 { margin: 70px 0 13px; font-size: 28px; letter-spacing: -.04em; }
.process-grid p { margin: 0; color: var(--muted); line-height: 1.65; }

.reviews { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; background: #eadfc9; }
.reviews-heading a { display: inline-flex; gap: 15px; margin-top: 35px; padding-bottom: 7px; border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.review-cards { display: grid; gap: 14px; }
.review-cards article { padding: 30px; background: rgba(255,255,255,.68); border: 1px solid rgba(16,34,27,.1); border-radius: 20px; }
.stars { color: #8b611e; letter-spacing: .13em; }
.review-cards blockquote { margin: 22px 0 28px; font-size: 21px; line-height: 1.45; letter-spacing: -.02em; }
.review-cards footer { display: flex; flex-direction: column; gap: 4px; }
.review-cards footer span { color: var(--muted); font-size: 12px; }

.closing-cta { padding: 120px 24px; color: var(--white); text-align: center; background: var(--forest-deep); }
.closing-cta h2 { max-width: 800px; margin: auto; }
.closing-cta > p:not(.eyebrow) { max-width: 650px; margin: 25px auto 32px; color: #bed0c9; font-size: 17px; line-height: 1.65; }
.closing-cta > div { display: flex; justify-content: center; align-items: center; gap: 28px; }
.closing-phone { color: var(--white); font-size: 15px; font-weight: 750; border-bottom: 1px solid rgba(255,255,255,.5); }

.preview-footer {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 55px;
  padding: 75px max(24px, calc((100% - 1180px) / 2)) 40px;
  color: #c3d1cb;
  background: #021712;
}
.footer-brand img { width: 190px; height: auto; }
.footer-brand p { color: #81958d; font-size: 13px; }
.preview-footer > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 11px; }
.preview-footer > div strong { margin-bottom: 7px; color: var(--white); font-size: 12px; text-transform: uppercase; letter-spacing: .11em; }
.preview-footer > div a { color: #9fb1aa; font-size: 13px; }
.footer-disclosure { grid-column: 1 / -1; margin: 30px 0 0; padding-top: 25px; color: #6f837b; border-top: 1px solid rgba(255,255,255,.1); font-size: 11px; line-height: 1.65; }

.preview-home > main > .solutions,
.preview-home > main > .planner-section,
.preview-home > main > .process,
.preview-home > main > .reviews { display: none; }
.home-directory { padding: 100px max(24px, calc((100% - 1180px) / 2)); background: var(--cream); }
.directory-heading { max-width: 760px; margin-bottom: 44px; }
.directory-heading h2 { margin: 0; font-size: clamp(42px, 5vw, 68px); line-height: 1.04; letter-spacing: -.055em; font-weight: 450; }
.directory-heading > p:not(.section-kicker) { max-width: 620px; margin: 22px 0 0; color: var(--muted); font-size: 17px; line-height: 1.65; }
.directory-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.directory-grid a { min-height: 260px; display: flex; flex-direction: column; padding: 25px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; transition: transform .18s ease, box-shadow .18s ease; }
.directory-grid a:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.directory-grid span { color: #788780; font-size: 11px; }
.directory-grid strong { margin-top: 55px; font-size: 23px; line-height: 1.08; letter-spacing: -.035em; }
.directory-grid small { margin-top: 12px; color: var(--muted); line-height: 1.5; }
.directory-grid b { margin-top: auto; color: var(--forest); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.page-hero { padding: 190px max(24px, calc((100% - 1000px) / 2)) 95px; color: var(--white); text-align: center; background: radial-gradient(circle at 75% 20%, rgba(74,143,111,.28), transparent 25%), var(--forest-deep); }
.page-hero h1 { max-width: 930px; margin: 0 auto; font-size: clamp(54px, 6.6vw, 90px); line-height: .98; letter-spacing: -.06em; font-weight: 350; }
.page-hero > p:last-child { max-width: 720px; margin: 30px auto 0; color: #bfd0c9; font-size: 18px; line-height: 1.65; }
.compact-page-section { padding-top: 95px; padding-bottom: 95px; }
.secondary-paths { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 18px; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.secondary-paths a { display: flex; flex-direction: column; gap: 8px; padding: 25px; background: var(--white); border-right: 1px solid var(--line); }
.secondary-paths a:last-child { border-right: 0; }
.secondary-paths span { color: var(--muted); font-size: 12px; }
.page-bottom-cta { display: flex; justify-content: space-between; align-items: center; gap: 40px; padding: 70px max(24px, calc((100% - 1180px) / 2)); color: var(--white); background: var(--forest); }
.page-bottom-cta h2 { margin: 0; font-size: clamp(38px, 4vw, 58px); letter-spacing: -.05em; font-weight: 450; }
.page-bottom-cta > div:last-child { display: flex; align-items: center; gap: 25px; }
.page-bottom-cta > div:last-child > a:last-child { color: #d1dfd9; border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 700; }
.interior-planner { padding-top: 90px; padding-bottom: 95px; }
.interior-process { padding-top: 95px; padding-bottom: 95px; }
.page-checklist { display: grid; grid-template-columns: .9fr 1.1fr; gap: 85px; padding: 90px max(24px, calc((100% - 1180px) / 2)); background: #dfe9e1; }
.page-checklist h2 { margin: 0; font-size: clamp(40px, 4.5vw, 62px); line-height: 1.05; letter-spacing: -.05em; font-weight: 450; }
.page-checklist p { color: var(--muted); }
.page-checklist ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.page-checklist li { padding: 18px 0; border-bottom: 1px solid var(--line); font-weight: 700; }
.interior-reviews { padding-top: 95px; padding-bottom: 95px; }
.interior-trust { padding-top: 50px; }
.compact-footer { grid-template-columns: 1.6fr 1fr 1fr; }

img { max-width: 100%; }
.hero-content, .hero-showcase, .section-heading > *, .planner-section > *, .reviews > *, .preview-footer > * { min-width: 0; }
.hero h1, .section-heading h2, .planner-intro h2, .reviews-heading h2, .closing-cta h2, .review-cards blockquote { overflow-wrap: break-word; }

@media (max-width: 980px) {
  .preview-header {
    height: 150px;
    grid-template-columns: 190px 1fr;
    grid-template-rows: 82px 1fr;
    gap: 0 24px;
  }
  .preview-header nav {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    min-width: 0;
    padding: 14px 0 13px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
  }
  .preview-header nav::-webkit-scrollbar { display: none; }
  .preview-header nav a { font-size: 12px; }
  .header-actions { justify-self: end; }
  .hero { min-height: 820px; padding-top: 212px; }
  .page-hero { padding-top: 212px; }
  .hero-showcase { grid-template-columns: 1fr 1.2fr; }
  .showcase-proof { grid-column: 1 / -1; min-height: auto; }
  .trust-ribbon { grid-template-columns: repeat(2, 1fr); }
  .trust-ribbon > div { margin: 12px 0; }
  .trust-ribbon > div:nth-child(2) { border-right: 0; }
  .section-heading, .planner-section, .reviews { grid-template-columns: 1fr; gap: 42px; }
  .solution-grid { grid-template-columns: 1fr; }
  .solution-card { min-height: 320px; }
  .directory-grid { grid-template-columns: repeat(2, 1fr); }
  .secondary-paths { grid-template-columns: 1fr; }
  .secondary-paths a { border-right: 0; border-bottom: 1px solid var(--line); }
  .secondary-paths a:last-child { border-bottom: 0; }
}

@media (max-width: 680px) {
  .preview-header {
    height: 170px;
    width: calc(100% - 28px);
    grid-template-columns: 145px 1fr;
    grid-template-rows: 78px 1fr;
    gap: 0 10px;
  }
  .preview-brand img { width: 142px; }
  .text-link { display: none; }
  .header-actions .button { min-height: 42px; padding: 0 16px; font-size: 11px; }
  .preview-header nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 16px;
    padding: 12px 0 14px;
    white-space: normal;
  }
  .preview-header nav a { font-size: 11px; line-height: 1.25; }
  .hero { min-height: auto; padding: 222px 17px 0; }
  .hero h1 { font-size: clamp(48px, 14.3vw, 68px); }
  .hero-copy { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-facts { flex-direction: column; align-items: center; gap: 10px; }
  .hero { padding-bottom: 38px; }
  .hero-showcase { grid-template-columns: 1fr; margin-top: 45px; border-radius: 22px; }
  .showcase-options, .showcase-founder, .showcase-proof { min-height: 340px; }
  .showcase-founder { grid-row: 1; }
  .showcase-proof { grid-column: auto; min-height: 300px; }
  .trust-ribbon { grid-template-columns: 1fr; padding-top: 84px; }
  .trust-ribbon > div, .trust-ribbon > div:first-child { padding: 17px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .section, .planner-section { padding-top: 80px; padding-bottom: 80px; }
  .section-heading h2, .planner-intro h2, .reviews-heading h2, .closing-cta h2 { font-size: 42px; }
  .section-heading { gap: 26px; }
  .planner-card { padding: 23px 18px; border-radius: 22px; }
  .planner-card-head { flex-direction: column; }
  .planner-badge { align-self: flex-start; }
  .term-choices { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .frequency-choices { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .estimate-panel { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li, .process-grid li + li { min-height: auto; padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-grid h3 { margin-top: 35px; }
  .reviews { gap: 40px; }
  .review-cards blockquote { font-size: 18px; }
  .closing-cta > div { flex-direction: column; }
  .preview-footer { grid-template-columns: repeat(2, 1fr); gap: 35px 20px; }
  .footer-brand { grid-column: 1 / -1; }
  .home-directory { padding-top: 75px; padding-bottom: 75px; }
  .directory-grid { grid-template-columns: 1fr; }
  .directory-grid a { min-height: 210px; }
  .directory-grid strong { margin-top: 35px; }
  .page-hero { padding-top: 222px; padding-bottom: 70px; text-align: left; }
  .page-hero h1 { font-size: 48px; }
  .page-hero > p:last-child { margin-left: 0; font-size: 16px; }
  .page-bottom-cta { align-items: flex-start; flex-direction: column; }
  .page-bottom-cta > div:last-child { align-items: flex-start; flex-direction: column; }
  .page-checklist { grid-template-columns: 1fr; gap: 38px; padding-top: 75px; padding-bottom: 75px; }
  .compact-footer { grid-template-columns: repeat(2, 1fr); }
}
