.landing-page {
  --content: 1180px;
  --section-space: 104px;
  overflow-x: hidden;
  color: #111713;
  background: #ffffff;
}

.landing-page h1,
.landing-page h2,
.landing-page h3 {
  letter-spacing: 0;
}

.landing-page h1,
.landing-page h2 {
  font-family: Georgia, "Times New Roman", ui-serif, serif;
}

.landing-page h1 {
  max-width: 690px;
  margin-bottom: 25px;
  font-size: 64px;
  line-height: 1;
}

.landing-page h2 {
  margin-bottom: 20px;
  font-size: 48px;
  line-height: 1.05;
}

.landing-page .eyebrow {
  margin-bottom: 16px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.landing-page .site-header {
  min-height: 72px;
  padding: 10px max(24px, calc((100vw - var(--content)) / 2));
  border-color: rgba(16, 22, 19, 0.1);
  background: rgba(255, 255, 255, 0.97);
}

.landing-page .brand {
  gap: 10px;
}

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

.landing-page .brand-copy {
  gap: 3px;
}

.landing-page .brand-copy strong {
  font-size: 15px;
}

.landing-page .brand-copy small {
  font-size: 7px;
  font-weight: 800;
}

.landing-page .nav {
  gap: 34px;
  font-size: 13px;
}

.landing-page .button,
.landing-page .header-cta {
  min-height: 46px;
  border-radius: 4px;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 850;
}

.landing-page .header-cta {
  justify-self: end;
}

.landing-page .text-link {
  min-height: 40px;
  gap: 8px;
  font-size: 13px;
}

.landing-page .hero {
  display: grid;
  width: min(var(--content), calc(100% - 48px));
  min-height: 660px;
  grid-template-columns: minmax(0, 1.12fr) minmax(470px, 0.88fr);
  margin: 0 auto;
  background: #ffffff;
}

.landing-page .hero-copy {
  display: grid;
  align-content: center;
  padding: 68px 64px 58px 0;
}

.landing-page .hero-lead {
  max-width: 620px;
  margin-bottom: 26px;
  color: #303a34;
  font-size: 18px;
  line-height: 1.58;
}

.landing-page .hero-offer {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-bottom: 28px;
}

.landing-page .hero-price {
  display: grid;
  min-width: 124px;
  padding-right: 24px;
  border-right: 1px solid var(--line);
}

.landing-page .hero-price span,
.landing-page .hero-price small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.landing-page .hero-price strong {
  color: var(--green);
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: 43px;
  line-height: 1;
}

.landing-page .hero-actions {
  display: grid;
  gap: 8px;
  align-items: start;
}

.landing-page .hero-assurances {
  display: flex;
  max-width: 640px;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding-top: 20px;
  border-top: 1px solid var(--soft-line);
}

.landing-page .hero-assurances span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #465048;
  font-size: 11px;
  font-weight: 750;
}

.landing-page .hero-assurances span::before {
  width: 15px;
  height: 15px;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  content: "✓";
  font-size: 9px;
  line-height: 13px;
  text-align: center;
}

.landing-page .hero-media {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  border-left: 1px solid var(--soft-line);
  background: #eef0eb;
}

.landing-page .hero-media::before {
  display: none;
}

.landing-page .ai-campaign-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #0b5f3b;
  object-fit: contain;
}

.landing-page .ai-campaign-video[hidden] {
  display: none;
}

.landing-page .hero-media.is-ai-campaign {
  background:
    radial-gradient(circle at 50% 24%, rgba(244, 196, 51, 0.18), transparent 36%),
    #0b5f3b;
}

.landing-page .hero-media.is-ai-campaign .hero-slide,
.landing-page .hero-media.is-ai-campaign .hero-report-card,
.landing-page .hero-media.is-ai-campaign .hero-slider-dots {
  display: none;
}

.landing-page .hero-slide,
.landing-page .hero-slide img {
  width: 100%;
  height: 100%;
}

.landing-page .hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 500ms ease;
}

.landing-page .hero-slide.is-active {
  opacity: 1;
}

.landing-page .hero-slide img {
  object-fit: cover;
  object-position: 72% center;
}

.landing-page .hero-report-card {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 24px;
  width: min(320px, calc(100% - 44px));
  padding: 20px;
  border: 1px solid rgba(16, 22, 19, 0.12);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 40px rgba(16, 22, 19, 0.12);
  backdrop-filter: blur(10px);
}

.landing-page .hero-report-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.landing-page .hero-report-head > span,
.landing-page .hero-report-card small,
.landing-page .hero-report-card p {
  color: var(--muted);
  font-size: 9px;
  font-weight: 750;
}

.landing-page .hero-report-head > span {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-page .hero-report-head > strong {
  color: var(--green);
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: 38px;
  line-height: 0.9;
}

.landing-page .hero-report-head > strong small {
  margin-left: 3px;
  color: #39433d;
  font-family: inherit;
  font-size: 16px;
}

.landing-page .hero-report-progress {
  height: 6px;
  margin: 14px 0;
  overflow: hidden;
  border-radius: 99px;
  background: #dfe2de;
}

.landing-page .hero-report-progress i {
  display: block;
  width: 72%;
  height: 100%;
  background: var(--green);
}

.landing-page .hero-report-card ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.landing-page .hero-report-card li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 9px 0;
  border-top: 1px solid var(--soft-line);
}

.landing-page .hero-report-card li > b {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: #111713;
  background: var(--yellow);
  font-size: 10px;
}

.landing-page .hero-report-card li span {
  display: grid;
  gap: 2px;
}

.landing-page .hero-report-card li strong {
  font-size: 10px;
  text-transform: uppercase;
}

.landing-page .hero-report-card li small {
  font-weight: 600;
}

.landing-page .hero-report-card p {
  margin: 11px 0 0;
  padding-top: 11px;
  border-top: 1px solid var(--soft-line);
  color: var(--green);
}

.landing-page .hero-slider-dots {
  right: 24px;
  bottom: 338px;
}

.landing-page .hero-slider-dots button {
  width: 9px;
  height: 9px;
  border: 1px solid #ffffff;
  background: rgba(255, 255, 255, 0.58);
}

.landing-page .hero-slider-dots button.is-active {
  background: var(--green);
}

.landing-page .proof-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0 max(24px, calc((100vw - var(--content)) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f7f6f1;
}

.landing-page .proof-band > div {
  display: grid;
  min-height: 108px;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  padding: 20px 28px;
  border-right: 1px solid var(--line);
}

.landing-page .proof-band > div:first-child {
  border-left: 1px solid var(--line);
}

.landing-page .proof-band strong {
  color: var(--green);
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: 35px;
}

.landing-page .proof-band small {
  max-width: 150px;
  color: #39433d;
  font-size: 11px;
  line-height: 1.4;
}

.landing-page .report-section,
.landing-page .checks-section,
.landing-page .offer-section,
.landing-page .flow-section,
.landing-page .faq-section,
.landing-page .contact-section,
.landing-page .agency-note {
  padding-right: max(24px, calc((100vw - var(--content)) / 2));
  padding-left: max(24px, calc((100vw - var(--content)) / 2));
}

.landing-page .report-section {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: 78px;
  align-items: center;
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
  border-bottom: 1px solid var(--soft-line);
  background: #f1f5f2;
}

.landing-page .report-section > *,
.landing-page .split-head > *,
.landing-page .flow-section > *,
.landing-page .faq-section > *,
.landing-page .contact-section > *,
.landing-page .agency-note > * {
  min-width: 0;
}

.landing-page .report-copy {
  max-width: 520px;
}

.landing-page .report-copy > p:not(.eyebrow):not(.expert-note) {
  margin-bottom: 28px;
  color: #39443d;
  font-size: 16px;
  line-height: 1.65;
}

.landing-page .report-deliverables {
  display: grid;
  gap: 13px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.landing-page .report-deliverables li {
  position: relative;
  padding-left: 27px;
  color: #29332d;
  font-size: 13px;
  line-height: 1.45;
}

.landing-page .report-deliverables li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  content: "✓";
  font-size: 9px;
}

.landing-page .report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: center;
  margin-bottom: 24px;
}

.landing-page .report-actions > span {
  color: var(--muted);
  font-size: 10px;
}

.landing-page .expert-note {
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.landing-page .expert-note strong {
  color: var(--ink);
}

.landing-page .report-preview {
  width: 100%;
  max-width: 650px;
  justify-self: end;
  padding: 28px;
  border: 1px solid rgba(16, 22, 19, 0.12);
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(16, 22, 19, 0.12);
}

.landing-page .report-document-top {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 13px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.landing-page .report-logo {
  width: 36px;
  height: 36px;
}

.landing-page .report-document-top div {
  display: grid;
  gap: 3px;
}

.landing-page .report-document-top div > span {
  font-size: 12px;
  font-weight: 850;
}

.landing-page .report-document-top div > small {
  color: var(--muted);
  font-size: 9px;
}

.landing-page .report-document-top > b {
  color: var(--green);
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: 39px;
}

.landing-page .report-document-top > b span {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 11px;
}

.landing-page .score-list {
  display: grid;
  gap: 10px;
  padding: 24px 0;
}

.landing-page .score-row {
  display: grid;
  grid-template-columns: minmax(128px, 0.8fr) minmax(150px, 1.2fr) 28px;
  gap: 14px;
  align-items: center;
  font-size: 10px;
}

.landing-page .score-row > span {
  font-weight: 750;
}

.landing-page .score-bar {
  height: 6px;
  overflow: hidden;
  border-radius: 6px;
  background: #e6ebe7;
}

.landing-page .score-bar i {
  display: block;
  width: calc(var(--score) * 1%);
  height: 100%;
  border-radius: inherit;
  background: var(--green);
}

.landing-page .score-bar.is-mid i {
  background: #d49b00;
}

.landing-page .score-bar.is-low i {
  background: #c65342;
}

.landing-page .score-row strong {
  text-align: right;
}

.landing-page .recommendations {
  padding: 18px 20px;
  border-left: 3px solid var(--yellow);
  background: #f8f6ef;
}

.landing-page .recommendations > span {
  display: block;
  margin-bottom: 9px;
  color: var(--green);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.landing-page .recommendations ol {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
  color: #343e38;
  font-size: 10px;
  line-height: 1.4;
}

.landing-page .sample-label {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 8px;
  text-align: right;
}

.landing-page .checks-section {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
  background: #ffffff;
}

.landing-page .section-head {
  max-width: 800px;
  margin-bottom: 42px;
}

.landing-page .split-head {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 80px;
  align-items: end;
}

.landing-page .split-head h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.landing-page .split-head > p {
  margin: 0 0 5px;
  color: #4a554e;
  font-size: 14px;
  line-height: 1.65;
}

.landing-page .channel-ribbon {
  display: flex;
  gap: 26px;
  align-items: center;
  margin-bottom: 34px;
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.landing-page .channel-ribbon > span {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 8px;
  align-items: center;
  color: #39443e;
  font-size: 11px;
  font-weight: 750;
}

.landing-page .channel-ribbon .channel-ribbon-label {
  margin-right: auto;
  color: var(--green);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.landing-page .channel-ribbon .platform-mark {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid rgba(16, 22, 19, 0.12);
  border-radius: 5px;
  font-size: 10px;
  font-weight: 900;
}

.landing-page .channel-ribbon .google {
  color: #1967d2;
  background: #eef4ff;
}

.landing-page .channel-ribbon .website {
  color: #ffffff;
  background: var(--green);
}

.landing-page .channel-ribbon .instagram {
  color: #ffffff;
  background: #bd2e7a;
}

.landing-page .channel-ribbon .linkedin {
  color: #ffffff;
  background: #1769aa;
}

.landing-page .channel-ribbon .youtube {
  color: #ffffff;
  background: #d62424;
}

.landing-page .channel-ribbon .newsletter {
  color: #3f4d44;
  background: #f2e8bf;
}

.landing-page .channel-ribbon .wikipedia {
  color: #212a25;
  background: #e5e9e6;
}

.landing-page .check-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.landing-page .check-grid article {
  position: relative;
  min-height: 190px;
  padding: 26px 25px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
  transition: background-color 160ms ease;
}

.landing-page .check-grid article:hover {
  transform: none;
  background: #f7faf8;
}

.landing-page .check-grid article > b {
  position: absolute;
  top: 22px;
  right: 23px;
  color: #d7e5dc;
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: 28px;
}

.landing-page .check-grid article > span {
  display: block;
  max-width: calc(100% - 55px);
  margin-bottom: 28px;
  color: var(--green);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.landing-page .check-grid h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: 22px;
  line-height: 1.1;
}

.landing-page .check-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.landing-page .agency-note {
  display: grid;
  grid-template-columns: minmax(180px, 0.65fr) minmax(260px, 1.05fr) minmax(300px, 1.2fr) auto;
  gap: 42px;
  align-items: center;
  padding-top: 46px;
  padding-bottom: 46px;
  border-top: 1px solid #cadbd0;
  border-bottom: 1px solid #cadbd0;
  background: #edf4ef;
}

.landing-page .agency-note > div {
  display: grid;
  gap: 5px;
}

.landing-page .agency-note > div span {
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.landing-page .agency-note > div strong {
  font-size: 14px;
}

.landing-page .agency-note h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.08;
}

.landing-page .agency-note p {
  margin: 0;
  color: #405047;
  font-size: 13px;
  line-height: 1.6;
}

.landing-page .agency-note .text-link {
  justify-self: end;
  white-space: nowrap;
}

.landing-page .offer-section {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
  background: #f7f6f1;
}

.landing-page .offer-head {
  max-width: 760px;
  margin-bottom: 46px;
}

.landing-page .offer-head > p:last-child {
  color: var(--muted);
  font-size: 11px;
}

.landing-page .offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.landing-page .offer-card {
  position: relative;
  display: grid;
  min-height: 515px;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 22px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  box-shadow: none;
}

.landing-page .offer-card.is-featured {
  transform: none;
  border-color: var(--green);
  background: #fbfdfb;
  box-shadow: 0 18px 45px rgba(16, 22, 19, 0.08);
}

.landing-page .offer-badge {
  position: absolute;
  top: 0;
  right: 20px;
  transform: translateY(-50%);
  border-radius: 3px;
  padding: 7px 10px;
  color: #ffffff;
  background: var(--green);
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.landing-page .offer-number {
  color: #b8c8be;
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: 20px;
}

.landing-page .offer-card > div > span {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.landing-page .offer-card h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: 28px;
  line-height: 1.05;
}

.landing-page .offer-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.landing-page .offer-card .price {
  color: var(--green);
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: 31px;
  line-height: 1;
}

.landing-page .offer-card ul {
  display: grid;
  align-content: start;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.landing-page .offer-card li {
  position: relative;
  padding-left: 20px;
  color: #3c4740;
  font-size: 11px;
  line-height: 1.4;
}

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

.landing-page .offer-card .button {
  width: 100%;
  align-self: end;
}

.landing-page .care-line {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(360px, 1.2fr) auto;
  gap: 36px;
  align-items: center;
  margin-top: 18px;
  padding: 25px 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.landing-page .care-line > div {
  display: grid;
  gap: 4px;
}

.landing-page .care-line > div span {
  color: var(--green);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.landing-page .care-line > div strong {
  font-size: 14px;
}

.landing-page .care-line p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.landing-page .flow-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 80px;
  align-items: center;
  padding-top: 88px;
  padding-bottom: 88px;
  background: #ffffff;
}

.landing-page .flow-copy {
  max-width: 380px;
}

.landing-page .flow-copy h2 {
  font-size: 40px;
}

.landing-page .flow-copy > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.landing-page .path-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.landing-page .path-steps article {
  min-height: 190px;
  padding: 28px 25px;
  border-right: 1px solid var(--line);
}

.landing-page .path-steps article:last-child {
  border-right: 0;
}

.landing-page .path-steps b {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  margin-bottom: 32px;
  border: 1px solid var(--yellow);
  border-radius: 50%;
  color: var(--ink);
  background: #fff7d7;
  font-size: 9px;
}

.landing-page .path-steps strong {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}

.landing-page .path-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.landing-page .faq-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 90px;
  padding-top: 88px;
  padding-bottom: 88px;
  border-top: 1px solid var(--soft-line);
  border-bottom: 1px solid var(--soft-line);
  background: #f7f6f1;
}

.landing-page .faq-section .section-head {
  margin: 0;
}

.landing-page .faq-section h2 {
  font-size: 40px;
}

.landing-page .faq-list {
  border-top: 1px solid var(--line);
}

.landing-page .faq-list details {
  border-bottom: 1px solid var(--line);
}

.landing-page .faq-list summary {
  position: relative;
  padding: 21px 42px 21px 0;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.landing-page .faq-list summary::after {
  position: absolute;
  top: 18px;
  right: 4px;
  color: var(--green);
  content: "+";
  font-size: 20px;
  font-weight: 400;
}

.landing-page .faq-list details[open] summary::after {
  content: "−";
}

.landing-page .faq-list p {
  max-width: 690px;
  margin: -2px 0 20px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.landing-page .contact-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(520px, 1.22fr);
  gap: 80px;
  align-items: start;
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
  background: #f1eee6;
}

.landing-page .contact-copy {
  position: sticky;
  top: 112px;
  max-width: 450px;
}

.landing-page .contact-copy > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: #485149;
  font-size: 15px;
  line-height: 1.65;
}

.landing-page .contact-trust {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.landing-page .contact-trust > div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.landing-page .contact-trust strong {
  color: var(--green);
  font-size: 11px;
}

.landing-page .contact-trust span {
  color: var(--muted);
  font-size: 11px;
}

.landing-page .lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(16, 22, 19, 0.08);
}

.landing-page .funnel-header {
  display: grid;
  gap: 13px;
  padding-bottom: 19px;
  border-bottom: 1px solid var(--line);
}

.landing-page .funnel-header > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: baseline;
}

.landing-page .funnel-header span {
  color: var(--green);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.landing-page .funnel-header strong {
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: 22px;
  line-height: 1.15;
}

.landing-page .funnel-progress {
  overflow: hidden;
  width: 100%;
  height: 4px;
  background: #dfe8e1;
}

.landing-page .funnel-progress span {
  display: block;
  width: 33.333%;
  height: 100%;
  background: var(--green);
  transition: width 240ms ease;
}

.landing-page .funnel-step {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.landing-page .funnel-step[hidden] {
  display: none;
}

.landing-page .funnel-intro {
  display: grid;
  gap: 6px;
  padding-bottom: 3px;
}

.landing-page .funnel-intro strong {
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: 22px;
  line-height: 1.15;
}

.landing-page .funnel-intro span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.landing-page .lead-form .full {
  grid-column: 1 / -1;
}

.landing-page .lead-form .field-label {
  display: grid;
  gap: 8px;
  color: #3d4741;
  font-size: 10px;
  font-weight: 800;
}

.landing-page .lead-form input,
.landing-page .lead-form select,
.landing-page .lead-form textarea {
  width: 100%;
  border: 1px solid rgba(16, 22, 19, 0.2);
  border-radius: 3px;
  padding: 12px 13px;
  color: var(--ink);
  background: #ffffff;
  font-size: 13px;
  outline: none;
}

.landing-page .lead-form input {
  min-height: 47px;
}

.landing-page .lead-form textarea {
  min-height: 92px;
  resize: vertical;
}

.landing-page .lead-form input:focus,
.landing-page .lead-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(11, 95, 59, 0.08);
}

.landing-page .optional {
  color: var(--muted);
  font-weight: 500;
}

.landing-page .funnel-choice {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
  margin: 0;
  padding: 0;
  border: 0;
}

.landing-page .funnel-choice legend {
  width: 100%;
  margin-bottom: 10px;
  color: #3d4741;
  font-size: 10px;
  font-weight: 850;
}

.landing-page .funnel-choice label {
  display: block;
  cursor: pointer;
}

.landing-page .funnel-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.landing-page .funnel-choice label > span {
  display: grid;
  min-height: 78px;
  gap: 5px;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px;
  background: #f7f6f1;
}

.landing-page .funnel-choice input:checked + span {
  border-color: var(--green);
  color: var(--green);
  background: #eaf4ed;
  box-shadow: inset 0 0 0 1px var(--green);
}

.landing-page .funnel-choice b {
  font-size: 11px;
  line-height: 1.25;
}

.landing-page .funnel-choice small {
  color: var(--muted);
  font-size: 8px;
  line-height: 1.35;
}

.landing-page .timeline-choice {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.landing-page .timeline-choice label > span {
  min-height: 65px;
}

.landing-page .offer-choice {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
  margin: 0 0 4px;
  padding: 0;
  border: 0;
}

.landing-page .offer-choice legend {
  width: 100%;
  margin-bottom: 10px;
  color: #3d4741;
  font-size: 10px;
  font-weight: 850;
}

.landing-page .offer-choice label {
  display: block;
  cursor: pointer;
}

.landing-page .offer-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.landing-page .offer-choice label > span {
  display: grid;
  min-height: 64px;
  gap: 4px;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 11px;
  background: #f7f6f1;
  text-align: left;
}

.landing-page .offer-choice input:checked + span {
  border-color: var(--green);
  color: var(--green);
  background: #eaf4ed;
  box-shadow: inset 0 0 0 1px var(--green);
}

.landing-page .offer-choice b {
  font-size: 11px;
}

.landing-page .offer-choice small {
  color: var(--muted);
  font-size: 8px;
  line-height: 1.25;
}

.landing-page .checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 9px;
  font-weight: 500;
  line-height: 1.5;
}

.landing-page .checkbox input {
  width: 16px;
  min-height: 16px;
  flex: 0 0 auto;
  margin: 1px 0 0;
  accent-color: var(--green);
}

.landing-page .checkbox a {
  color: var(--green);
  text-decoration: underline;
}

.landing-page .funnel-actions {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding-top: 2px;
}

.landing-page .funnel-actions > span {
  color: var(--muted);
  font-size: 9px;
}

.landing-page .funnel-actions .button {
  min-width: 190px;
}

.landing-page .funnel-back {
  border: 0;
  padding: 10px 0;
  color: var(--green);
  background: transparent;
  font-size: 10px;
  font-weight: 850;
  cursor: pointer;
}

.landing-page .funnel-back:hover {
  text-decoration: underline;
}

.landing-page .funnel-privacy-note {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.45;
  text-align: right;
}

.landing-page .funnel-recommendation {
  display: grid;
  gap: 9px;
  padding: 20px 0;
  border-top: 1px solid var(--green);
  border-bottom: 1px solid var(--green);
}

.landing-page .funnel-recommendation > span {
  color: var(--green);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.landing-page .funnel-recommendation > div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: baseline;
}

.landing-page .funnel-recommendation strong {
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: 27px;
  line-height: 1.1;
}

.landing-page .funnel-recommendation b {
  color: var(--green);
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: 25px;
  white-space: nowrap;
}

.landing-page .funnel-recommendation p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.landing-page .funnel-extra {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.landing-page .funnel-extra summary {
  padding: 12px 0;
  color: #3d4741;
  font-size: 10px;
  font-weight: 850;
  cursor: pointer;
}

.landing-page .funnel-extra summary span {
  color: var(--muted);
  font-weight: 500;
}

.landing-page .funnel-extra .field-label {
  padding: 2px 0 15px;
}

.landing-page .lead-form .button.full {
  min-height: 50px;
}

.landing-page .form-note {
  margin: -7px 0 0;
  color: var(--muted);
  font-size: 9px;
  text-align: center;
}

.landing-page .honeypot {
  position: absolute;
  left: -9999px;
}

.landing-page .footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 40px;
  align-items: end;
  padding: 46px max(24px, calc((100vw - var(--content)) / 2));
  background: #ffffff;
}

.landing-page .footer > div > p {
  max-width: 380px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.landing-page .footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  justify-content: flex-end;
  font-size: 9px;
}

.landing-page .footer > span {
  color: var(--muted);
  font-size: 9px;
}

.landing-page .footer-consent {
  border: 0;
  padding: 0;
  color: inherit;
  background: none;
  font-size: inherit;
  cursor: pointer;
}

.landing-page .mobile-cta {
  display: none;
}

@media (max-width: 1080px) {
  .landing-page {
    --section-space: 88px;
  }

  .landing-page h1 {
    font-size: 55px;
  }

  .landing-page h2 {
    font-size: 42px;
  }

  .landing-page .site-header,
  .landing-page .report-section,
  .landing-page .checks-section,
  .landing-page .offer-section,
  .landing-page .flow-section,
  .landing-page .faq-section,
  .landing-page .contact-section,
  .landing-page .agency-note,
  .landing-page .footer {
    padding-right: 28px;
    padding-left: 28px;
  }

  .landing-page .hero {
    width: calc(100% - 56px);
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.86fr);
  }

  .landing-page .hero-copy {
    padding-right: 44px;
  }

  .landing-page .proof-band {
    padding-right: 28px;
    padding-left: 28px;
  }

  .landing-page .report-section,
  .landing-page .contact-section {
    gap: 54px;
  }

  .landing-page .report-section {
    grid-template-columns: minmax(0, 0.9fr) minmax(470px, 1.1fr);
  }

  .landing-page .agency-note {
    grid-template-columns: minmax(170px, 0.7fr) minmax(260px, 1fr) minmax(300px, 1.2fr);
  }

  .landing-page .agency-note .text-link {
    grid-column: 2 / -1;
    justify-self: start;
  }

  .landing-page .channel-ribbon {
    overflow-x: auto;
  }

  .landing-page .channel-ribbon .channel-ribbon-label {
    margin-right: 8px;
  }
}

@media (max-width: 900px) {
  .landing-page .nav {
    display: none;
  }

  .landing-page .site-header {
    grid-template-columns: 1fr auto;
  }

  .landing-page .hero {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .landing-page .hero-copy {
    padding: 66px 34px 52px;
  }

  .landing-page .hero-media {
    min-height: 480px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .landing-page .hero-media.is-ai-campaign {
    min-height: min(132vw, 560px);
  }

  .landing-page .proof-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-page .proof-band > div:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .landing-page .report-section,
  .landing-page .split-head,
  .landing-page .flow-section,
  .landing-page .faq-section,
  .landing-page .contact-section {
    grid-template-columns: 1fr;
  }

  .landing-page .report-copy,
  .landing-page .report-preview,
  .landing-page .flow-copy,
  .landing-page .contact-copy {
    max-width: none;
  }

  .landing-page .report-preview {
    justify-self: stretch;
  }

  .landing-page .split-head,
  .landing-page .flow-section,
  .landing-page .faq-section,
  .landing-page .contact-section {
    gap: 42px;
  }

  .landing-page .check-grid,
  .landing-page .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-page .offer-card.is-featured {
    grid-column: 1 / -1;
  }

  .landing-page .offer-card.is-featured {
    min-height: 440px;
  }

  .landing-page .agency-note {
    grid-template-columns: 0.7fr 1.3fr;
  }

  .landing-page .agency-note p {
    grid-column: 1 / -1;
  }

  .landing-page .agency-note .text-link {
    grid-column: 1 / -1;
  }

  .landing-page .care-line {
    grid-template-columns: 1fr auto;
  }

  .landing-page .care-line p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .landing-page .contact-copy {
    position: static;
  }
}

@media (max-width: 600px) {
  .landing-page {
    --section-space: 66px;
    padding-bottom: 72px;
  }

  .landing-page h1 {
    font-size: clamp(33px, 9.2vw, 38px);
    line-height: 0.99;
  }

  .landing-page h2 {
    font-size: 34px;
    line-height: 1.08;
  }

  .landing-page .site-header {
    min-height: 62px;
    padding: 8px 16px;
  }

  .landing-page .brand-mark {
    width: 30px;
    height: 30px;
  }

  .landing-page .brand-copy strong {
    font-size: 13px;
  }

  .landing-page .brand-copy small {
    font-size: 6px;
  }

  .landing-page .header-cta {
    min-height: 40px;
    padding: 0 13px;
    font-size: 11px;
  }

  .landing-page .hero {
    display: flex;
    min-height: 0;
    flex-direction: column;
    padding-top: 28px;
  }

  .landing-page .hero-copy {
    display: contents;
  }

  .landing-page .hero-copy > * {
    margin-right: 18px;
    margin-left: 18px;
  }

  .landing-page .hero-copy .eyebrow {
    order: 1;
  }

  .landing-page .hero-copy h1 {
    order: 2;
  }

  .landing-page .hero-lead {
    order: 3;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.48;
  }

  .landing-page .hero-offer {
    display: grid;
    order: 4;
    grid-template-columns: 106px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    margin-bottom: 20px;
  }

  .landing-page .hero-price {
    display: grid;
    min-width: 0;
    gap: 1px;
    align-items: start;
    padding: 0 13px 0 0;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .landing-page .hero-price strong {
    font-size: 34px;
    white-space: nowrap;
  }

  .landing-page .hero-price small {
    display: none;
  }

  .landing-page .hero-actions {
    display: grid;
    gap: 5px;
  }

  .landing-page .hero-actions .button,
  .landing-page .hero-actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .landing-page .hero-assurances {
    display: grid;
    order: 6;
    gap: 9px;
    margin-bottom: 24px;
    padding-top: 18px;
  }

  .landing-page .hero-media {
    order: 5;
    min-height: 250px;
    margin-bottom: 0;
    border-bottom: 1px solid var(--line);
  }

  .landing-page .hero-media.is-ai-campaign {
    min-height: min(132vw, 520px);
  }

  .landing-page .hero-media.is-ai-campaign .ai-campaign-video {
    object-fit: cover;
  }

  .landing-page .hero-report-card {
    right: 10px;
    bottom: 12px;
    width: 238px;
    padding: 12px;
  }

  .landing-page .hero-report-head > strong {
    font-size: 29px;
  }

  .landing-page .hero-report-progress {
    height: 4px;
    margin: 8px 0;
  }

  .landing-page .hero-report-card li {
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 7px;
    padding: 5px 0;
  }

  .landing-page .hero-report-card li > b {
    width: 18px;
    height: 18px;
    font-size: 8px;
  }

  .landing-page .hero-report-card li small,
  .landing-page .hero-report-card p {
    display: none;
  }

  .landing-page .hero-slider .hero-slide:first-of-type {
    z-index: 1;
    opacity: 1;
  }

  .landing-page .hero-slider .hero-slide:not(:first-of-type),
  .landing-page .hero-slider-dots {
    display: none;
  }

  .landing-page .hero-slide img {
    object-position: 48% 48%;
  }

  .landing-page .hero-slider-dots {
    right: 18px;
    bottom: 329px;
  }

  .landing-page .proof-band {
    padding: 0;
  }

  .landing-page .proof-band > div {
    min-height: 92px;
    gap: 10px;
    padding: 16px 18px;
  }

  .landing-page .proof-band > div:first-child {
    border-left: 0;
  }

  .landing-page .proof-band > div:nth-child(2n) {
    border-right: 0;
  }

  .landing-page .proof-band > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .landing-page .proof-band strong {
    font-size: 28px;
  }

  .landing-page .proof-band small {
    font-size: 9px;
  }

  .landing-page .report-section,
  .landing-page .checks-section,
  .landing-page .offer-section,
  .landing-page .flow-section,
  .landing-page .faq-section,
  .landing-page .contact-section,
  .landing-page .agency-note,
  .landing-page .footer {
    padding-right: 18px;
    padding-left: 18px;
  }

  .landing-page .report-section {
    gap: 38px;
  }

  .landing-page .report-copy > p:not(.eyebrow):not(.expert-note) {
    font-size: 14px;
  }

  .landing-page .report-actions {
    display: grid;
  }

  .landing-page .report-actions .button {
    width: 100%;
  }

  .landing-page .report-preview {
    padding: 16px;
  }

  .landing-page .report-document-top {
    grid-template-columns: 32px minmax(0, 1fr) auto;
    gap: 9px;
  }

  .landing-page .report-logo {
    width: 28px;
    height: 28px;
  }

  .landing-page .report-document-top > b {
    font-size: 29px;
  }

  .landing-page .score-row {
    grid-template-columns: minmax(100px, 1fr) minmax(80px, 0.8fr) 24px;
    gap: 8px;
    font-size: 8px;
  }

  .landing-page .recommendations {
    padding: 15px;
  }

  .landing-page .split-head {
    gap: 24px;
    margin-bottom: 30px;
  }

  .landing-page .split-head > p {
    font-size: 13px;
  }

  .landing-page .channel-ribbon {
    width: 100%;
    gap: 18px;
    margin-right: 0;
    padding-right: 0;
  }

  .landing-page .channel-ribbon .channel-ribbon-label {
    position: static;
    padding-right: 14px;
    background: #ffffff;
  }

  .landing-page .check-grid,
  .landing-page .offer-grid {
    grid-template-columns: 1fr;
  }

  .landing-page .check-grid article {
    min-height: 168px;
    padding: 24px 22px;
  }

  .landing-page .agency-note {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .landing-page .agency-note h2 {
    font-size: 28px;
  }

  .landing-page .agency-note p,
  .landing-page .agency-note .text-link {
    grid-column: auto;
  }

  .landing-page .offer-head {
    margin-bottom: 38px;
  }

  .landing-page .offer-card,
  .landing-page .offer-card.is-featured {
    min-height: 0;
    gap: 19px;
    padding: 26px 23px;
  }

  .landing-page .offer-card.is-featured {
    grid-column: auto;
  }

  .landing-page .care-line {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 22px 0;
    background: transparent;
  }

  .landing-page .care-line p,
  .landing-page .care-line .text-link {
    grid-column: auto;
    grid-row: auto;
  }

  .landing-page .flow-section,
  .landing-page .faq-section,
  .landing-page .contact-section {
    gap: 34px;
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .landing-page .flow-copy h2,
  .landing-page .faq-section h2 {
    font-size: 34px;
  }

  .landing-page .path-steps {
    grid-template-columns: 1fr;
  }

  .landing-page .path-steps article {
    min-height: 0;
    padding: 23px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .landing-page .path-steps article:last-child {
    border-bottom: 0;
  }

  .landing-page .path-steps b {
    margin-bottom: 15px;
  }

  .landing-page .faq-list summary {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .landing-page .lead-form {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 18px;
  }

  .landing-page .lead-form .full {
    grid-column: auto;
  }

  .landing-page .funnel-step {
    grid-template-columns: 1fr;
  }

  .landing-page .funnel-choice {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-page .timeline-choice {
    grid-template-columns: 1fr;
  }

  .landing-page .timeline-choice label > span {
    min-height: 58px;
  }

  .landing-page .funnel-header > div:first-child {
    display: grid;
    gap: 5px;
  }

  .landing-page .funnel-header strong {
    font-size: 20px;
  }

  .landing-page .funnel-actions {
    align-items: center;
  }

  .landing-page .funnel-actions .button {
    min-width: 0;
  }

  .landing-page .funnel-privacy-note {
    text-align: left;
  }

  .landing-page .funnel-recommendation > div {
    display: grid;
    gap: 5px;
  }

  .landing-page .funnel-recommendation strong {
    font-size: 24px;
  }

  .landing-page .offer-choice {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-page .footer {
    grid-template-columns: 1fr;
    gap: 25px;
    align-items: start;
  }

  .landing-page .footer nav {
    justify-content: flex-start;
  }

  .landing-page .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 40;
    display: flex;
    width: 100%;
    max-width: 100vw;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 -12px 35px rgba(16, 22, 19, 0.1);
    backdrop-filter: blur(14px);
  }

  .landing-page .mobile-cta > * {
    min-width: 0;
  }

  .landing-page .mobile-cta > div {
    display: grid;
    gap: 3px;
  }

  .landing-page .mobile-cta strong {
    font-size: 11px;
  }

  .landing-page .mobile-cta span {
    color: var(--muted);
    font-size: 8px;
  }

  .landing-page .mobile-cta .button {
    min-height: 44px;
  }
}

@media (max-width: 360px) {
  .landing-page .hero-offer {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .landing-page .hero-price {
    padding: 0 0 12px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-page .hero-slide {
    transition: none;
  }
}
