:root {
  --g3-paper: #f7f4ed;
  --g3-white: #fffefa;
  --g3-ink: #2a2925;
  --g3-muted: #706d65;
  --g3-olive: #59644f;
  --g3-olive-dark: #434c3d;
  --g3-sage: #dce1d4;
  --g3-sage-light: #eef1e9;
  --g3-copper: #a66d4d;
  --g3-copper-light: #ead7c9;
  --g3-line: rgba(42, 41, 37, 0.16);
  --g3-line-strong: rgba(42, 41, 37, 0.34);
  --g3-shadow: 0 12px 0 rgba(89, 100, 79, 0.09);
}

html {
  scroll-padding-top: 74px;
}

body {
  color: var(--g3-ink);
  background: var(--g3-white);
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image: radial-gradient(rgba(89, 100, 79, 0.17) 0.7px, transparent 0.7px);
  background-size: 8px 8px;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--g3-copper);
  outline-offset: 3px;
}

.container {
  width: min(1120px, calc(100% - 64px));
}

.narrow {
  width: min(860px, 100%);
}

.site-header {
  z-index: 50;
  min-height: 74px;
  grid-template-columns: 230px 1fr 130px;
  gap: 24px;
  padding: 0 clamp(24px, 4vw, 64px);
  color: var(--g3-ink);
  background: rgba(255, 254, 250, 0.94);
  border-bottom: 1px solid rgba(42, 41, 37, 0.1);
  box-shadow: 0 4px 14px rgba(42, 41, 37, 0.06);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 182px;
}

.header-nav {
  justify-self: end;
  gap: clamp(18px, 2.2vw, 34px);
  color: var(--g3-ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
}

.header-nav a {
  position: relative;
  padding: 28px 0 25px;
}

.header-nav a::before {
  display: none;
}

.header-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 1px;
  background: var(--g3-copper);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.header-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  min-width: 118px;
  padding: 11px 18px;
  color: var(--g3-white);
  background: var(--g3-olive);
  border-color: var(--g3-olive);
  border-radius: 4px;
  font-size: 11px;
  letter-spacing: 0.04em;
  transition: background 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  background: var(--g3-olive-dark);
  transform: translateY(-1px);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  min-height: min(860px, 100svh);
  align-items: stretch;
  padding: 74px 0 0;
  background: #e7dfd2;
  border-bottom: 0;
}

.hero::before {
  display: none;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: 4.6vw;
  bottom: 5.2vw;
  width: 54px;
  aspect-ratio: 1;
  border: 1px solid rgba(89, 100, 79, 0.34);
  border-radius: 7px;
  transform: rotate(8deg);
}

.hero-image {
  inset: 74px 0 0;
  width: 100%;
  height: calc(100% - 74px);
  object-fit: cover;
  object-position: center;
  opacity: 1;
  filter: saturate(0.72) contrast(0.98) brightness(0.96);
}

.hero-overlay {
  z-index: 1;
  inset: 74px 0 0;
  background:
    linear-gradient(90deg, rgba(247, 244, 237, 0.98) 0%, rgba(247, 244, 237, 0.92) 30%, rgba(247, 244, 237, 0.38) 51%, rgba(247, 244, 237, 0.02) 72%),
    linear-gradient(180deg, rgba(255, 254, 250, 0.06), rgba(42, 41, 37, 0.08));
}

.hero-content {
  z-index: 3;
  width: min(1180px, calc(100% - 80px));
  min-height: calc(min(860px, 100svh) - 74px);
  grid-template-columns: minmax(0, 0.56fr) minmax(420px, 0.44fr);
  gap: 64px;
  text-align: left;
}

.hero-main {
  max-width: 590px;
  padding: 72px 0 64px;
}

.hero .eyebrow {
  margin: 0 0 34px;
  padding: 0 0 10px;
  color: var(--g3-olive-dark);
  border: 0;
  border-bottom: 1px solid rgba(89, 100, 79, 0.42);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.hero-logo {
  width: min(420px, 88%);
  margin: 0 0 38px;
}

.hero-statement {
  max-width: 500px;
  margin: 0 0 18px;
  color: var(--g3-ink);
  font-size: clamp(25px, 2.35vw, 35px);
  font-weight: 700;
  line-height: 1.5;
}

.hero-copy {
  max-width: 510px;
  color: #58564f;
  font-size: 13px;
  line-height: 2;
}

.hero-actions {
  margin-top: 34px;
}

.button {
  min-height: 52px;
  padding: 14px 25px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  box-shadow: none;
}

.button-primary,
.hero .button-primary {
  color: var(--g3-white);
  background: var(--g3-olive);
  border-color: var(--g3-olive);
}

.button-primary:hover,
.hero .button-primary:hover {
  background: var(--g3-olive-dark);
  border-color: var(--g3-olive-dark);
}

.button-ghost,
.hero .button-ghost {
  color: var(--g3-ink);
  background: rgba(255, 254, 250, 0.58);
  border-color: rgba(42, 41, 37, 0.28);
}

.hero-assurance {
  gap: 6px;
  margin-top: 20px;
}

.hero-assurance span {
  min-height: 29px;
  padding: 0 10px;
  color: var(--g3-olive-dark);
  background: rgba(255, 254, 250, 0.72);
  border-color: rgba(89, 100, 79, 0.25);
  border-radius: 3px;
  font-size: 9px;
}

.hero-scroll {
  left: auto;
  right: clamp(28px, 4vw, 64px);
  bottom: 24px;
  color: rgba(42, 41, 37, 0.58);
}

.conversion-strip {
  position: relative;
  color: var(--g3-ink);
  background: var(--g3-white);
  border-bottom: 1px solid var(--g3-line);
}

.conversion-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image: radial-gradient(rgba(166, 109, 77, 0.22) 0.8px, transparent 0.8px);
  background-size: 7px 7px;
}

.conversion-strip-inner {
  position: relative;
  border-left-color: var(--g3-line);
}

.conversion-strip-inner > div {
  min-height: 120px;
  border-right-color: var(--g3-line);
}

.conversion-strip strong {
  color: var(--g3-olive-dark);
  font-size: clamp(20px, 2vw, 28px);
}

.conversion-strip span {
  color: var(--g3-muted);
  font-size: 10px;
}

.section {
  position: relative;
  padding: clamp(100px, 10vw, 156px) 0;
  background: var(--g3-white);
  overflow: hidden;
}

.section:nth-of-type(4n + 1) {
  background: var(--g3-paper);
}

.section::after {
  content: "";
  position: absolute;
  width: 48px;
  aspect-ratio: 1;
  right: 7vw;
  top: 72px;
  border-radius: 7px;
  background: var(--g3-sage-light);
  opacity: 0.82;
}

.section:nth-of-type(even)::after {
  right: auto;
  left: -18px;
  width: 84px;
  background: var(--g3-copper-light);
}

.section-heading {
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 780px;
  margin-bottom: clamp(54px, 7vw, 92px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--g3-copper);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h2 {
  max-width: 820px;
  margin: 0;
  color: var(--g3-olive-dark);
  font-size: clamp(30px, 3.7vw, 48px);
  font-weight: 800;
  line-height: 1.38;
}

h3 {
  color: var(--g3-ink);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.65;
}

p,
.check-list li,
.comparison-row > div {
  font-size: 13px;
}

.split {
  gap: clamp(64px, 9vw, 132px);
  align-items: center;
}

.check-panel,
.statement,
.risk-reducer {
  background: rgba(255, 254, 250, 0.82);
  border: 1px solid rgba(89, 100, 79, 0.38);
  border-radius: 7px;
  box-shadow: var(--g3-shadow);
}

.check-panel {
  padding: clamp(28px, 4vw, 48px);
}

.check-list li::before {
  color: var(--g3-copper);
}

.lead-line {
  color: var(--g3-olive-dark);
}

.section-image {
  margin: 0 0 clamp(48px, 7vw, 84px);
  border: 0;
  border-radius: 7px;
  box-shadow: none;
  overflow: hidden;
}

.section-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(0.72) contrast(0.98);
}

.section-gathering .section-image-wide {
  width: min(1040px, 100%);
  margin-inline: auto;
}

.section-gathering .narrow {
  width: min(1040px, 100%);
}

.section-gathering h2,
.section-gathering > .container > p,
.section-gathering .statement,
.section-gathering .eyebrow {
  max-width: 820px;
  margin-inline: auto;
}

.statement {
  margin-top: 40px;
  padding: 28px 32px;
  color: var(--g3-olive-dark);
}

.outcome-grid,
.fit-grid,
.decision-grid {
  gap: 18px;
}

.outcome-grid article,
.fit-grid article,
.decision-grid article {
  min-height: 260px;
  padding: clamp(26px, 3vw, 38px);
  background: rgba(255, 254, 250, 0.84);
  border: 1px solid rgba(89, 100, 79, 0.4);
  border-radius: 7px;
  box-shadow: var(--g3-shadow);
}

.outcome-grid span,
.number {
  color: var(--g3-copper);
  font-size: 13px;
}

.section-research {
  color: rgba(255, 254, 250, 0.82);
  background: var(--g3-olive-dark) !important;
}

.section-research::after {
  background: rgba(234, 215, 201, 0.2);
}

.section-research h2,
.section-research h3,
.section-research .research-metrics strong {
  color: var(--g3-white);
}

.section-research .eyebrow {
  color: #d8b9a5;
}

.section-research .research-lead p,
.section-research .research-metrics span,
.section-research .research-cta p {
  color: rgba(255, 254, 250, 0.72);
}

.research-lead {
  gap: clamp(44px, 7vw, 94px);
}

.research-metrics {
  border-color: rgba(255, 254, 250, 0.18);
}

.research-metrics > div {
  border-color: rgba(255, 254, 250, 0.14);
}

.research-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 24%);
  grid-template-columns: none;
  gap: 18px;
  margin: 70px calc(50% - 50vw) 0;
  padding: 8px max(32px, calc((100vw - 1120px) / 2)) 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(255, 254, 250, 0.3) transparent;
}

.research-gallery figure {
  scroll-snap-align: start;
  border: 1px solid rgba(255, 254, 250, 0.2);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(18, 20, 16, 0.26);
}

.research-gallery img {
  width: 100%;
  height: auto;
}

.research-cta {
  border-color: rgba(255, 254, 250, 0.2);
}

.section-research .button-primary {
  color: var(--g3-olive-dark);
  background: var(--g3-white);
  border-color: var(--g3-white);
}

.feature-grid {
  gap: 18px;
}

.feature-card {
  min-height: 300px;
  padding: clamp(28px, 3.5vw, 44px);
  background: rgba(255, 254, 250, 0.88);
  border: 1px solid rgba(89, 100, 79, 0.42);
  border-radius: 7px;
  box-shadow: var(--g3-shadow);
}

.tag-row span,
.permission-grid span {
  color: var(--g3-olive-dark);
  background: var(--g3-sage-light);
  border-color: rgba(89, 100, 79, 0.26);
  border-radius: 3px;
}

.section-lowbarrier {
  background: var(--g3-paper) !important;
}

.permission-grid {
  gap: 8px;
}

.section-change .benefit-list {
  border-color: var(--g3-line);
}

.benefit-list article {
  border-color: var(--g3-line);
}

.benefit-list article span {
  color: var(--g3-copper);
}

.section-proof {
  color: var(--g3-white);
  background: var(--g3-copper) !important;
}

.section-proof h2,
.section-proof h3,
.section-proof strong,
.section-proof .eyebrow {
  color: var(--g3-white);
}

.section-proof p,
.section-proof span {
  color: rgba(255, 254, 250, 0.76);
}

.stats-grid {
  border-color: rgba(255, 254, 250, 0.28);
}

.stats-grid div {
  border-color: rgba(255, 254, 250, 0.22);
}

.comparison-table {
  background: rgba(255, 254, 250, 0.88);
  border: 1px solid rgba(89, 100, 79, 0.38);
  border-radius: 7px;
  box-shadow: var(--g3-shadow);
}

.comparison-row {
  border-color: var(--g3-line);
}

.comparison-row > div:nth-child(2) {
  color: var(--g3-olive-dark);
  background: var(--g3-sage-light);
}

.comparison-head > div {
  color: var(--g3-ink);
  background: var(--g3-paper);
}

.decision-grid article,
.decision-grid .decision-featured {
  border-color: rgba(89, 100, 79, 0.42);
}

.decision-featured::before {
  background: var(--g3-copper);
}

.section-plans {
  background: var(--g3-sage-light) !important;
}

.plan-grid {
  max-width: 940px;
  gap: 22px;
}

.plan-card {
  padding: clamp(30px, 4vw, 48px);
  background: var(--g3-white);
  border: 1px solid rgba(89, 100, 79, 0.44);
  border-radius: 7px;
  box-shadow: var(--g3-shadow);
}

.plan-featured {
  color: var(--g3-white);
  background: var(--g3-olive-dark);
  border-color: var(--g3-olive-dark);
}

.plan-featured h3,
.plan-featured .price,
.plan-featured .check-list li {
  color: var(--g3-white);
}

.plan-featured .plan-head p,
.plan-featured .price span {
  color: rgba(255, 254, 250, 0.7);
}

.plan-featured .button-primary {
  color: var(--g3-olive-dark);
  background: var(--g3-white);
  border-color: var(--g3-white);
}

.plan-label {
  color: var(--g3-white);
  background: var(--g3-copper);
  border-radius: 0 0 4px 4px;
}

.risk-reducer {
  margin-top: 26px;
  padding: 24px 28px;
}

.steps {
  gap: 16px;
}

.steps article {
  min-height: 220px;
  padding: 30px;
  background: rgba(255, 254, 250, 0.88);
  border: 1px solid rgba(89, 100, 79, 0.38);
  border-radius: 7px;
  box-shadow: var(--g3-shadow);
}

.steps article span {
  color: var(--g3-copper);
}

.voice-grid {
  gap: 20px;
}

.voice-card,
.voice-featured {
  padding: clamp(28px, 3.5vw, 44px);
  background: rgba(255, 254, 250, 0.9);
  border: 1px solid rgba(89, 100, 79, 0.38);
  border-radius: 7px;
  box-shadow: var(--g3-shadow);
}

.voice-head {
  border-color: var(--g3-line);
}

.voice-name,
.voice-featured .voice-name {
  color: var(--g3-olive-dark);
  font-size: 17px;
}

.voice-body p {
  font-size: 12.5px;
  line-height: 2;
}

.section-faq {
  background: var(--g3-paper) !important;
}

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

.faq-list details {
  padding: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--g3-line-strong);
  border-radius: 0;
}

.faq-list summary {
  position: relative;
  padding: 24px 54px 24px 44px;
  color: var(--g3-ink);
  font-size: 13px;
  font-weight: 700;
}

.faq-list summary::before {
  content: "Q";
  position: absolute;
  left: 8px;
  color: var(--g3-copper);
  font-weight: 800;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 10px;
  color: var(--g3-olive-dark);
  font-size: 20px;
  font-weight: 400;
}

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

.faq-list details p {
  margin: 0;
  padding: 0 54px 26px 44px;
  color: var(--g3-muted);
}

.final-cta {
  position: relative;
  padding: clamp(100px, 10vw, 150px) 0;
  color: var(--g3-white);
  background: var(--g3-copper);
  text-align: left;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image: radial-gradient(rgba(255, 254, 250, 0.9) 0.8px, transparent 0.8px);
  background-size: 8px 8px;
}

.final-cta .container {
  position: relative;
}

.final-cta h2 {
  color: var(--g3-white);
  font-size: clamp(36px, 5.4vw, 68px);
}

.final-cta p,
.final-cta .eyebrow {
  color: rgba(255, 254, 250, 0.82);
}

.final-cta .centered {
  justify-content: flex-start;
}

.final-cta .button-primary {
  color: var(--g3-copper);
  background: var(--g3-white);
  border-color: var(--g3-white);
}

.final-cta .button-ghost {
  color: var(--g3-white);
  background: transparent;
  border-color: rgba(255, 254, 250, 0.55);
}

.site-footer {
  padding: 42px 0 112px;
  color: rgba(255, 254, 250, 0.58);
  background: var(--g3-ink);
  border: 0;
}

.footer-logo {
  filter: invert(1);
  opacity: 0.82;
}

.sticky-cta {
  right: 22px;
  bottom: 22px;
  width: min(420px, calc(100% - 44px));
  gap: 14px;
  padding: 9px;
  background: rgba(255, 254, 250, 0.95);
  border: 1px solid rgba(89, 100, 79, 0.28);
  border-radius: 7px;
  box-shadow: 0 18px 50px rgba(42, 41, 37, 0.18);
}

.sticky-cta::before {
  display: none;
}

.sticky-cta::after {
  display: none;
}

.sticky-cta-logo {
  width: 38px;
  height: 38px;
}

.sticky-cta strong {
  color: var(--g3-olive-dark);
}

.sticky-cta a {
  min-height: 46px;
  color: var(--g3-white);
  background: var(--g3-olive);
  border-color: var(--g3-olive);
  border-radius: 4px;
}

.loader {
  background: var(--g3-paper);
}

.loader-inner i::after {
  background: var(--g3-olive);
}

.reveal {
  transform: translateY(28px);
  transition: opacity 800ms ease, transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 190px 1fr 110px;
    gap: 18px;
  }

  .brand img {
    width: 162px;
  }

  .header-nav {
    gap: 16px;
  }

  .hero-content {
    width: min(100% - 56px, 1020px);
    grid-template-columns: minmax(0, 0.62fr) minmax(300px, 0.38fr);
  }
}

@media (max-width: 920px) {
  body.menu-open {
    overflow: hidden;
  }

  .container {
    width: min(100% - 42px, 760px);
  }

  .site-header {
    min-height: 70px;
    grid-template-columns: 1fr auto auto;
    padding: 0 18px;
  }

  .brand img {
    width: 156px;
  }

  .header-nav {
    display: none;
  }

  .header-cta {
    min-width: 98px;
  }

  .menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    gap: 5px;
    padding: 0;
    color: var(--g3-ink);
    background: transparent;
    border: 1px solid var(--g3-line);
    border-radius: 4px;
  }

  .menu-toggle span {
    display: block;
    width: 19px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 45;
    top: 70px;
    right: 0;
    left: 0;
    display: grid;
    padding: 18px 22px 26px;
    background: rgba(255, 254, 250, 0.98);
    border-bottom: 1px solid var(--g3-line);
    box-shadow: 0 20px 40px rgba(42, 41, 37, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .menu-open .mobile-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-menu a {
    padding: 13px 4px;
    color: var(--g3-ink);
    border-bottom: 1px solid var(--g3-line);
    font-size: 12px;
    font-weight: 700;
  }

  .hero {
    min-height: 940px;
    padding-top: 70px;
  }

  .hero-image {
    inset: 70px 0 auto;
    height: 54%;
    object-position: 64% center;
  }

  .hero-overlay {
    inset: 70px 0 0;
    background:
      linear-gradient(180deg, rgba(247, 244, 237, 0.02) 0%, rgba(247, 244, 237, 0.26) 37%, var(--g3-paper) 55%, var(--g3-paper) 100%),
      linear-gradient(90deg, rgba(247, 244, 237, 0.5), rgba(247, 244, 237, 0.06));
  }

  .hero-content {
    width: min(100% - 42px, 760px);
    min-height: 870px;
    grid-template-columns: 1fr;
    align-items: end;
  }

  .hero-main {
    max-width: 620px;
    padding: 410px 0 64px;
  }

  .hero-logo {
    width: min(390px, 78vw);
  }

  .hero-scroll,
  .hero::after {
    display: none;
  }

  .research-gallery {
    grid-auto-columns: minmax(240px, 42%);
    padding-inline: 22px;
  }

  .comparison-row {
    min-width: 900px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 34px, 560px);
  }

  .site-header {
    min-height: 66px;
    grid-template-columns: 1fr auto auto;
    gap: 8px;
    padding: 0 12px 0 16px;
  }

  .brand img {
    width: 132px;
  }

  .header-cta {
    min-width: 76px;
    padding: 9px 10px;
    font-size: 10px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .mobile-menu {
    top: 66px;
  }

  .hero {
    min-height: 900px;
    padding-top: 66px;
  }

  .hero-image {
    inset: 66px 0 auto;
    height: 45%;
    object-position: 66% center;
  }

  .hero-overlay {
    inset: 66px 0 0;
    background:
      linear-gradient(180deg, rgba(247, 244, 237, 0.02) 0%, rgba(247, 244, 237, 0.42) 32%, var(--g3-paper) 47%, var(--g3-paper) 100%),
      linear-gradient(90deg, rgba(247, 244, 237, 0.42), rgba(247, 244, 237, 0.04));
  }

  .hero-content {
    width: calc(100% - 34px);
    min-height: 834px;
  }

  .hero-main {
    padding: 350px 0 54px;
  }

  .hero .eyebrow {
    margin-bottom: 22px;
  }

  .hero-logo {
    width: min(290px, 88vw);
    margin-bottom: 24px;
  }

  .hero-statement {
    max-width: 330px;
    font-size: 21px;
  }

  .hero-copy {
    max-width: 340px;
    font-size: 11.5px;
    line-height: 1.9;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .hero-actions .cta-row {
    gap: 8px;
  }

  .hero-actions .button {
    width: calc(50% - 4px);
    min-height: 48px;
    padding-inline: 10px;
    font-size: 10.5px;
  }

  .hero-assurance span {
    flex: 1 1 calc(50% - 4px);
    justify-content: center;
  }

  .conversion-strip-inner {
    grid-template-columns: 1fr 1fr;
  }

  .conversion-strip-inner > div {
    min-height: 92px;
    padding: 18px 14px;
  }

  .section {
    padding: 88px 0;
  }

  .section::after {
    width: 34px;
    top: 44px;
  }

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

  h2 {
    font-size: 28px;
    line-height: 1.5;
  }

  .split {
    gap: 46px;
  }

  .section-image {
    margin-bottom: 42px;
  }

  .section-image img {
    aspect-ratio: 4 / 3;
  }

  .research-gallery {
    grid-auto-columns: 72vw;
    gap: 13px;
    margin-top: 48px;
    padding-inline: 17px;
  }

  .feature-card,
  .outcome-grid article,
  .fit-grid article,
  .decision-grid article,
  .steps article {
    min-height: auto;
  }

  .plan-card,
  .voice-card,
  .voice-featured {
    padding: 28px 24px;
  }

  .faq-list summary {
    padding: 20px 40px 20px 34px;
    font-size: 12px;
  }

  .faq-list summary::before {
    left: 4px;
  }

  .faq-list summary::after {
    right: 4px;
  }

  .faq-list details p {
    padding: 0 40px 22px 34px;
    font-size: 11.5px;
  }

  .final-cta {
    padding: 92px 0 118px;
  }

  .final-cta h2 {
    font-size: 36px;
  }

  .final-cta .cta-row {
    width: 100%;
  }

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

  .site-footer {
    padding-bottom: 108px;
  }

  .footer-inner {
    gap: 24px;
  }

  .sticky-cta {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
    gap: 9px;
    padding: 8px;
  }

  .sticky-cta-logo {
    width: 32px;
    height: 32px;
  }

  .sticky-cta span {
    max-width: 126px;
    font-size: 8.5px;
  }

  .sticky-cta a {
    min-height: 42px;
    padding: 0 12px;
    font-size: 10px;
  }

  .sticky-cta a::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-menu,
  .menu-toggle span,
  .header-nav a::after {
    transition: none;
  }
}
