:root {
  --ink: #101613;
  --muted: #5b655f;
  --paper: #f7f6f1;
  --warm: #eee9de;
  --white: #ffffff;
  --green: #0b5f3b;
  --green-dark: #07472d;
  --green-light: #dcebe2;
  --yellow: #f2b705;
  --red: #c43b2f;
  --line: rgba(16, 22, 19, 0.16);
  --soft-line: rgba(16, 22, 19, 0.09);
  --shadow: 0 24px 70px rgba(16, 22, 19, 0.11);
  --content: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
summary,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

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

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-weight: 700;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: 66px;
  line-height: 0.98;
}

h2 {
  margin-bottom: 22px;
  font-size: 48px;
  line-height: 1.03;
}

.eyebrow {
  margin-bottom: 15px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  min-height: 70px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 12px max(24px, calc((100vw - var(--content)) / 2));
  border-bottom: 1px solid var(--soft-line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-copy {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand-copy strong {
  font-size: inherit;
  font-weight: 900;
}

.brand-copy small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 750;
  line-height: 1.15;
  text-transform: uppercase;
}

.brand-mark {
  width: 31px;
  height: 31px;
}

.nav {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

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

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

.button,
.header-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green);
  border-radius: 4px;
  padding: 0 21px;
  color: var(--green);
  background: transparent;
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

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

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

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

.button.secondary:hover,
.header-cta:hover {
  color: var(--white);
  background: var(--green);
}

.button[disabled],
button[disabled] {
  opacity: 0.62;
  cursor: wait;
  transform: none;
}

.text-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  border-bottom: 1px solid rgba(11, 95, 59, 0.4);
}

.hero {
  display: grid;
  width: min(var(--content), 100%);
  min-height: 620px;
  grid-template-columns: minmax(0, 1.02fr) minmax(470px, 0.98fr);
  margin: 0 auto;
  background: var(--white);
}

.hero-copy {
  display: grid;
  align-content: center;
  min-width: 0;
  padding: 70px 54px 62px 24px;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 28px;
  color: #27312b;
  font-size: 18px;
  line-height: 1.55;
}

.hero-offer {
  display: flex;
  gap: 28px;
  align-items: center;
}

.hero-price {
  display: grid;
  min-width: 118px;
  padding-right: 28px;
  border-right: 1px solid var(--line);
}

.hero-price span,
.hero-price small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
}

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 27px;
  padding-top: 20px;
  border-top: 1px solid var(--soft-line);
}

.hero-assurances span {
  position: relative;
  padding-left: 20px;
  color: #37423c;
  font-size: 12px;
  font-weight: 700;
}

.hero-assurances span::before {
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  width: 14px;
  height: 14px;
  place-items: center;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  content: "✓";
  font-size: 9px;
  font-weight: 900;
}

.hero-media {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 620px;
  background: var(--paper);
}

.hero-media::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, var(--white) 0%, rgba(255, 255, 255, 0.6) 12%, rgba(255, 255, 255, 0) 34%);
  content: "";
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 120ms linear, transform 500ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-industry-card {
  position: absolute;
  right: 26px;
  bottom: 28px;
  z-index: 3;
  display: grid;
  gap: 3px;
  width: min(250px, calc(100% - 52px));
  padding: 15px 17px;
  border: 1px solid rgba(11, 95, 59, 0.23);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 38px rgba(16, 22, 19, 0.13);
  backdrop-filter: blur(10px);
}

.hero-industry-card span,
.hero-industry-card small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-industry-card strong {
  color: var(--green);
  font-size: 21px;
}

.hero-industry-card small {
  color: var(--ink);
  text-transform: none;
}

.hero-slider-dots {
  position: absolute;
  right: 28px;
  bottom: 126px;
  z-index: 3;
  display: flex;
  gap: 7px;
}

.hero-slider-dots button {
  width: 10px;
  height: 10px;
  border: 1px solid var(--green);
  border-radius: 50%;
  padding: 0;
  background: rgba(255, 255, 255, 0.82);
  cursor: pointer;
}

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

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--soft-line);
  border-bottom: 1px solid var(--soft-line);
  background: var(--paper);
}

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

.proof-band > div:last-child {
  border-right: 0;
}

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

.proof-band small {
  max-width: 150px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.35;
}

.platform-section {
  display: grid;
  width: min(var(--content), 100%);
  grid-template-columns: 0.72fr 1.28fr;
  gap: 58px;
  align-items: center;
  margin: 0 auto;
  padding: 72px 24px;
}

.platform-copy h2 {
  max-width: 470px;
  margin-bottom: 0;
  font-size: 40px;
}

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

.platform-grid > div {
  display: grid;
  min-height: 135px;
  align-content: start;
  padding: 17px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.platform-grid > div:last-child {
  grid-column: 3 / 5;
}

.platform-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  margin-bottom: 15px;
  border-radius: 6px;
  color: var(--white);
  background: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.platform-mark.google {
  color: #1769e0;
  background: #f1f5ff;
  border: 1px solid #d7e1f7;
}

.platform-mark.website,
.platform-mark.newsletter {
  background: var(--green);
}

.platform-mark.instagram {
  background: #c13584;
}

.platform-mark.linkedin {
  background: #0a66c2;
}

.platform-mark.youtube {
  background: #ff0033;
}

.platform-mark.wikipedia {
  color: #111;
  background: #f3f3f3;
  border: 1px solid #ddd;
  font-family: Georgia, "Times New Roman", ui-serif, serif;
}

.platform-grid strong,
.platform-grid small {
  display: block;
}

.platform-grid strong {
  margin-bottom: 4px;
  font-size: 14px;
}

.platform-grid small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.agency-story {
  padding: 88px max(24px, calc((100vw - var(--content)) / 2));
  border-top: 1px solid var(--soft-line);
  border-bottom: 1px solid var(--soft-line);
  background: var(--paper);
}

.agency-story-main {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 86px;
  align-items: center;
}

.agency-story-copy {
  max-width: 790px;
}

.agency-wordmark-link {
  display: inline-block;
  margin-bottom: 42px;
}

.agency-wordmark {
  width: 210px;
  height: auto;
}

.agency-story-copy h2 {
  max-width: 760px;
}

.agency-story-lead {
  max-width: 720px;
  margin-bottom: 24px;
  color: #27312b;
  font-size: 19px;
  line-height: 1.58;
}

.agency-story-origin {
  max-width: 700px;
  margin-bottom: 28px;
  padding: 4px 0 4px 21px;
  border-left: 4px solid var(--yellow);
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

.agency-founder {
  margin: 0;
}

.agency-founder img {
  width: 100%;
  height: 430px;
  border: 1px solid var(--line);
  object-fit: cover;
  object-position: center 28%;
}

.agency-founder figcaption {
  display: grid;
  gap: 4px;
  padding-top: 15px;
}

.agency-founder strong {
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: 20px;
}

.agency-founder span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.agency-credentials {
  display: grid;
  grid-template-columns: minmax(340px, 0.8fr) minmax(560px, 1.2fr);
  gap: 48px;
  margin-top: 56px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.agency-network > p {
  margin-bottom: 22px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.agency-logo-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
  min-height: 52px;
}

.agency-logo-row img {
  width: auto;
  max-width: 118px;
  max-height: 34px;
  justify-self: start;
  object-fit: contain;
}

.agency-logo-row img:nth-child(2) {
  max-height: 46px;
}

.agency-network > small {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

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

.agency-awards > a {
  display: grid;
  min-width: 0;
  min-height: 112px;
  grid-template-columns: minmax(56px, 0.7fr) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 17px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: background-color 160ms ease;
}

.agency-awards > a:hover {
  background: #f1f7f3;
}

.agency-awards img {
  width: 100%;
  max-height: 40px;
  object-fit: contain;
}

.agency-awards > a > span:last-child {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.agency-awards b,
.agency-awards small {
  display: block;
}

.agency-awards b {
  color: var(--green);
  font-size: 12px;
}

.agency-awards small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
}

.award-monogram {
  display: grid;
  width: 52px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: 16px;
  font-weight: 700;
}

.checks-section {
  padding: 82px max(24px, calc((100vw - var(--content)) / 2));
  border-top: 1px solid var(--soft-line);
  border-bottom: 1px solid var(--soft-line);
  background: var(--paper);
}

.section-head {
  max-width: 820px;
  margin-bottom: 36px;
}

.section-head > p:not(.eyebrow),
.report-copy > p,
.method-copy > p,
.contact-copy > p {
  color: #303a34;
  font-size: 17px;
  line-height: 1.6;
}

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

.split-head h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.split-head > p {
  margin-bottom: 8px;
}

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

.check-grid article {
  position: relative;
  min-height: 246px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.check-grid article:hover {
  z-index: 1;
  box-shadow: 0 20px 50px rgba(16, 22, 19, 0.09);
}

.check-grid article > b {
  position: absolute;
  right: 22px;
  top: 20px;
  color: rgba(11, 95, 59, 0.2);
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: 34px;
}

.check-grid article > span {
  display: block;
  max-width: 70%;
  margin-bottom: 34px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.check-grid h3 {
  margin: 0 0 13px;
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: 28px;
  line-height: 1.06;
}

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

.report-section {
  display: grid;
  width: min(var(--content), 100%);
  grid-template-columns: minmax(320px, 0.72fr) minmax(520px, 1fr);
  gap: 80px;
  align-items: center;
  margin: 0 auto;
  padding: 88px 24px;
}

.report-copy {
  max-width: 540px;
}

.report-deliverables {
  display: grid;
  gap: 11px;
  margin: 27px 0 30px;
  padding: 0;
  list-style: none;
}

.report-deliverables li {
  position: relative;
  padding-left: 28px;
  color: #27312b;
  font-size: 14px;
  line-height: 1.45;
}

.report-deliverables li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.report-preview {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.report-document-top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 26px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.report-logo {
  width: 38px;
  height: 38px;
}

.report-document-top div > span,
.report-document-top div > small {
  display: block;
}

.report-document-top div > span {
  margin-bottom: 3px;
  font-weight: 900;
}

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

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

.report-document-top > b span {
  color: var(--muted);
  font-size: 16px;
}

.score-list {
  display: grid;
  gap: 14px;
}

.score-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.9fr) minmax(130px, 1fr) 32px;
  gap: 12px;
  align-items: center;
  font-size: 13px;
  font-weight: 750;
}

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

.score-bar {
  overflow: hidden;
  height: 8px;
  border-radius: 999px;
  background: rgba(16, 22, 19, 0.1);
}

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

.score-bar.is-mid i {
  background: #c68a00;
}

.score-bar.is-low i {
  background: var(--red);
}

.recommendations {
  margin-top: 26px;
  padding: 21px;
  border-left: 4px solid var(--yellow);
  background: var(--paper);
}

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

.recommendations ol {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
  font-size: 13px;
  line-height: 1.45;
}

.sample-label {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 10px;
  text-align: right;
}

.method-section {
  display: grid;
  grid-template-columns: minmax(400px, 0.92fr) minmax(420px, 1.08fr);
  gap: 80px;
  align-items: center;
  padding: 82px max(24px, calc((100vw - var(--content)) / 2));
  border-top: 1px solid var(--soft-line);
  background: var(--paper);
}

.method-visual img {
  width: 100%;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(16, 22, 19, 0.08);
}

.method-copy {
  max-width: 580px;
}

.method-steps {
  display: grid;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.method-steps > div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.method-steps strong {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-size: 13px;
}

.method-steps span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.method-steps b {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
}

.offer-section {
  padding: 84px max(24px, calc((100vw - var(--content)) / 2));
  border-top: 1px solid var(--soft-line);
  border-bottom: 1px solid var(--soft-line);
  background: var(--white);
}

.offer-head {
  max-width: 900px;
}

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

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

.offer-card {
  position: relative;
  display: grid;
  min-height: 520px;
  align-content: start;
  gap: 20px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.offer-card.is-featured {
  z-index: 1;
  border: 2px solid var(--green);
  margin: -1px 0 -1px -1px;
  background: #f3f8f5;
  box-shadow: 0 24px 60px rgba(11, 95, 59, 0.12);
}

.offer-number {
  color: rgba(11, 95, 59, 0.25);
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: 36px;
  line-height: 1;
}

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

.offer-card h3 {
  margin: 0 0 11px;
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: 31px;
  line-height: 1.03;
}

.offer-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.price {
  display: block;
  min-height: 44px;
  color: var(--green);
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: 34px;
  line-height: 1.05;
}

.offer-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  line-height: 1.45;
}

.offer-card li {
  position: relative;
  padding-left: 22px;
}

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

.offer-card .button {
  align-self: end;
  width: 100%;
  margin-top: auto;
}

.offer-badge {
  position: absolute;
  top: -16px;
  left: 20px;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid #d39e00;
  border-radius: 4px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.scope-note {
  margin: 19px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.flow-section {
  padding: 76px max(24px, calc((100vw - 1120px) / 2));
  background: var(--paper);
  text-align: center;
}

.flow-copy {
  max-width: 720px;
  margin: 0 auto 44px;
}

.path-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  text-align: left;
}

.path-steps article {
  min-height: 190px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.path-steps b {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  font-size: 12px;
}

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

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

.example-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(500px, 1.22fr);
  gap: 76px;
  align-items: center;
  padding: 82px max(24px, calc((100vw - var(--content)) / 2));
  border-top: 1px solid var(--soft-line);
  background: var(--white);
}

.example-copy {
  max-width: 510px;
}

.case-finding {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 15px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}

.case-finding span {
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.case-finding p,
.case-result p {
  margin: 0;
  color: #303a34;
  font-size: 14px;
  line-height: 1.5;
}

.case-result {
  margin-top: 12px;
  padding: 18px;
  border-left: 4px solid var(--yellow);
  background: var(--paper);
}

.case-result strong {
  display: block;
  margin-bottom: 5px;
}

.case-visual {
  margin: 0;
}

.case-visual img {
  width: 100%;
}

.case-visual figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 10px;
  text-align: right;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(520px, 1fr);
  gap: 80px;
  padding: 82px max(24px, calc((100vw - var(--content)) / 2));
  border-top: 1px solid var(--soft-line);
  background: var(--paper);
}

.faq-section .section-head {
  margin-bottom: 0;
}

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

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

.faq-list summary {
  position: relative;
  padding: 19px 44px 19px 0;
  font-size: 16px;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  right: 8px;
  top: 17px;
  color: var(--green);
  content: "+";
  font-size: 24px;
  font-weight: 400;
}

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

.faq-list p {
  max-width: 690px;
  margin: -3px 44px 20px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(560px, 1fr);
  gap: 84px;
  align-items: start;
  padding: 88px max(24px, calc((100vw - var(--content)) / 2));
  background: var(--white);
}

.contact-copy {
  position: sticky;
  top: 104px;
  max-width: 510px;
}

.contact-trust {
  display: grid;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.contact-trust > div {
  display: grid;
  gap: 3px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.contact-trust strong {
  font-size: 14px;
}

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

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
}

.optional {
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(16, 22, 19, 0.2);
  border-radius: 3px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  font-size: 14px;
  outline: none;
}

textarea {
  min-height: 92px;
  resize: vertical;
}

select {
  appearance: none;
  padding-right: 38px;
  background:
    linear-gradient(45deg, transparent 50%, var(--green) 50%) right 18px center / 6px 6px no-repeat,
    linear-gradient(135deg, var(--green) 50%, transparent 50%) right 12px center / 6px 6px no-repeat,
    var(--white);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(11, 95, 59, 0.11);
}

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

.offer-choice {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 0 0 7px;
  border: 0;
  padding: 0;
}

.offer-choice legend {
  margin-bottom: 10px;
  padding: 0;
  font-size: 12px;
  font-weight: 800;
}

.offer-choice label {
  position: relative;
  display: block;
  cursor: pointer;
}

.offer-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.offer-choice label > span {
  display: grid;
  gap: 3px;
  min-height: 68px;
  align-content: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  transition: border-color 160ms ease, background-color 160ms ease;
}

.offer-choice input:checked + span {
  border-color: var(--green);
  background: var(--green-light);
  box-shadow: inset 4px 0 0 var(--green);
}

.offer-choice b {
  font-size: 13px;
}

.offer-choice small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.checkbox {
  display: flex !important;
  gap: 9px !important;
  align-items: flex-start;
  color: var(--muted) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  line-height: 1.45;
}

.checkbox input {
  width: 16px;
  min-height: 16px;
  flex: 0 0 auto;
  margin-top: 1px;
}

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

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-note {
  margin: -2px auto 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.form-note.is-success {
  color: var(--green);
  font-weight: 800;
}

.form-note.is-error {
  color: #a22e25;
  font-weight: 800;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 46px;
  align-items: center;
  padding: 32px max(24px, calc((100vw - var(--content)) / 2));
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--paper);
  font-size: 12px;
}

.footer > div > p {
  max-width: 360px;
  margin: 9px 0 0;
  font-size: 11px;
}

.footer nav {
  display: flex;
  gap: 24px;
}

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

.footer-consent {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

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

.mobile-cta {
  display: none;
}

.consent-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 60;
  display: flex;
  max-width: 920px;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 24px 80px rgba(16, 22, 19, 0.2);
  backdrop-filter: blur(16px);
}

.consent-banner[hidden] {
  display: none;
}

.consent-banner strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

.consent-banner p {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.consent-actions {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}

.legal-page {
  min-height: 100vh;
  background: var(--paper);
}

.legal-page .site-header,
.thank-you-page .site-header {
  grid-template-columns: 1fr 1fr;
}

.legal-main {
  padding: 58px 24px 90px;
}

.legal-content {
  width: min(840px, 100%);
  margin: 0 auto;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 65px rgba(16, 22, 19, 0.08);
}

.legal-content h1 {
  font-size: 58px;
}

.legal-content h2 {
  margin: 34px 0 12px;
  font-size: 28px;
}

.legal-content p,
.legal-content li {
  color: #303a34;
  font-size: 14px;
  line-height: 1.65;
}

.legal-content a {
  color: var(--green);
  text-decoration: underline;
}

.legal-alert {
  padding: 15px 17px;
  border-left: 4px solid var(--yellow);
  background: #fff9df;
  font-weight: 750;
}

.thanks-hero {
  display: grid;
  min-height: calc(100svh - 70px);
  place-items: center;
  padding: 64px 24px;
  background: var(--paper);
}

.thanks-card {
  width: min(940px, 100%);
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.thanks-card h1 {
  max-width: 760px;
  margin-bottom: 17px;
}

.thanks-card > p {
  max-width: 720px;
  color: #303a34;
  font-size: 18px;
  line-height: 1.55;
}

.next-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 28px 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.next-list article {
  min-height: 190px;
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.next-list span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  margin-bottom: 27px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.next-list strong {
  display: block;
  margin-bottom: 7px;
}

.next-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.thanks-note {
  padding: 15px 17px;
  border-left: 4px solid var(--yellow);
  background: var(--paper);
  font-size: 13px;
  font-weight: 750;
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 1120px) {
  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 42px;
  }

  .site-header,
  .checks-section,
  .agency-story,
  .method-section,
  .offer-section,
  .flow-section,
  .example-section,
  .faq-section,
  .contact-section,
  .footer {
    padding-right: 28px;
    padding-left: 28px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(430px, 0.9fr);
  }

  .hero-copy {
    padding-left: 28px;
  }

  .platform-section,
  .report-section {
    padding-right: 28px;
    padding-left: 28px;
  }

  .platform-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .agency-story-main {
    gap: 54px;
  }

  .agency-credentials {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .platform-copy h2 {
    max-width: 720px;
  }

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

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

  .offer-card {
    min-height: 470px;
  }

  .method-section,
  .report-section,
  .example-section,
  .faq-section,
  .contact-section {
    gap: 48px;
  }
}

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

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

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

  .hero-copy {
    padding: 62px 34px 48px;
  }

  .hero-media {
    min-height: 440px;
  }

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

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

  .split-head,
  .agency-story-main,
  .report-section,
  .method-section,
  .example-section,
  .faq-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .split-head {
    gap: 24px;
  }

  .agency-story-copy {
    max-width: 760px;
  }

  .agency-founder {
    display: grid;
    grid-template-columns: minmax(220px, 0.48fr) minmax(0, 0.52fr);
    gap: 22px;
    align-items: end;
    max-width: 660px;
  }

  .agency-founder img {
    height: 330px;
  }

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

  .report-copy,
  .method-copy,
  .example-copy,
  .contact-copy {
    max-width: 720px;
  }

  .contact-copy {
    position: static;
  }

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

  .footer {
    grid-template-columns: 1fr auto;
  }

  .footer > span {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 72px;
  }

  body {
    padding-bottom: 74px;
  }

  h1 {
    font-size: 40px;
    line-height: 1.01;
  }

  h2 {
    font-size: 34px;
    line-height: 1.06;
  }

  .site-header {
    min-height: 62px;
    padding: 9px 16px;
  }

  .brand {
    font-size: 14px;
  }

  .brand-copy small {
    font-size: 7px;
  }

  .brand-mark {
    width: 28px;
    height: 28px;
  }

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

  .hero-copy {
    padding: 36px 18px 24px;
  }

  .hero-lead {
    margin-bottom: 18px;
    font-size: 15px;
  }

  .hero-offer {
    display: grid;
    gap: 12px;
  }

  .hero-price {
    width: 100%;
    grid-template-columns: auto auto 1fr;
    gap: 9px;
    align-items: end;
    padding: 0 0 10px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-price strong {
    font-size: 38px;
  }

  .hero-price small {
    padding-bottom: 5px;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-actions .text-link {
    justify-content: center;
    border: 0;
  }

  .hero-assurances {
    display: grid;
    gap: 9px;
    margin-top: 16px;
    padding-top: 14px;
  }

  .hero-assurances span:nth-child(2) {
    display: none;
  }

  .hero-media {
    min-height: 280px;
  }

  .hero-media::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.52) 0%, rgba(255, 255, 255, 0) 30%);
  }

  .hero-slide img {
    object-position: center;
  }

  .hero-industry-card {
    right: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
  }

  .hero-slider-dots {
    right: 18px;
    bottom: 112px;
  }

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

  .proof-band > div {
    min-height: 92px;
    grid-template-columns: 1fr;
    gap: 4px;
    align-content: center;
    padding: 14px 17px;
  }

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

  .proof-band strong {
    font-size: 30px;
  }

  .proof-band small {
    font-size: 11px;
  }

  .platform-section,
  .report-section,
  .checks-section,
  .agency-story,
  .method-section,
  .offer-section,
  .flow-section,
  .example-section,
  .faq-section,
  .contact-section {
    padding: 58px 18px;
  }

  .platform-copy h2 {
    font-size: 34px;
  }

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

  .platform-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .platform-grid > div {
    min-height: 126px;
  }

  .agency-wordmark-link {
    margin-bottom: 32px;
  }

  .agency-story-lead {
    font-size: 17px;
  }

  .agency-story-main {
    gap: 38px;
  }

  .agency-founder {
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 16px;
    align-items: end;
  }

  .agency-founder img {
    height: 158px;
  }

  .agency-credentials {
    margin-top: 38px;
  }

  .agency-logo-row {
    gap: 16px;
  }

  .agency-logo-row img {
    max-width: 92px;
    max-height: 28px;
  }

  .agency-awards {
    grid-template-columns: 1fr;
  }

  .agency-awards > a {
    min-height: 82px;
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .agency-awards img {
    max-height: 34px;
  }

  .check-grid,
  .offer-grid,
  .path-steps {
    grid-template-columns: 1fr;
  }

  .check-grid article {
    min-height: 220px;
  }

  .report-preview {
    padding: 17px;
  }

  .report-document-top > b {
    font-size: 32px;
  }

  .score-row {
    grid-template-columns: minmax(125px, 1fr) 70px 27px;
    gap: 8px;
    font-size: 11px;
  }

  .recommendations {
    padding: 16px;
  }

  .method-section {
    gap: 34px;
  }

  .offer-grid {
    gap: 14px;
    border: 0;
  }

  .offer-card,
  .offer-card.is-featured {
    min-height: auto;
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 6px;
  }

  .offer-card.is-featured {
    border: 2px solid var(--green);
  }

  .offer-card .button {
    margin-top: 6px;
  }

  .path-steps {
    gap: 0;
  }

  .path-steps article {
    min-height: 154px;
  }

  .case-finding {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .faq-section {
    gap: 25px;
  }

  .lead-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .lead-form > * {
    grid-column: 1;
  }

  .offer-choice {
    grid-template-columns: 1fr;
  }

  .offer-choice label > span {
    min-height: 60px;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 32px 18px 104px;
  }

  .footer nav {
    flex-wrap: wrap;
    gap: 14px 24px;
  }

  .footer > span {
    grid-column: auto;
  }

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 50;
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    padding: 10px 13px;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -10px 35px rgba(16, 22, 19, 0.12);
    backdrop-filter: blur(14px);
  }

  .mobile-cta > div {
    display: grid;
    gap: 2px;
  }

  .mobile-cta strong {
    font-size: 12px;
  }

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

  .mobile-cta .button {
    min-height: 44px;
    padding: 0 20px;
  }

  .consent-banner {
    right: 10px;
    bottom: 82px;
    left: 10px;
    display: grid;
    gap: 9px;
    padding: 12px;
  }

  .consent-banner strong {
    margin-bottom: 2px;
    font-size: 12px;
  }

  .consent-banner p {
    font-size: 10px;
    line-height: 1.35;
  }

  .consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .consent-actions .button {
    min-height: 40px;
    min-width: 0;
    padding: 0 10px;
    font-size: 10px;
    white-space: normal;
  }

  .legal-main {
    padding: 28px 14px 100px;
  }

  .legal-content,
  .thanks-card {
    padding: 25px 19px;
  }

  .legal-content h1,
  .thanks-card h1 {
    font-size: 42px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
