@font-face {
  font-family: "Rotunda";
  src: url("./assets/fonts/Fontspring-DEMO-4a-rotunda-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Final compact timeline and legal-page overrides. */
.method-scroll-timeline {
  grid-template-columns: 76px minmax(0, 620px);
  gap: 26px;
  width: min(100%, 760px);
  margin: 0 auto;
}

.method-rail-column,
.method-step-list,
.method-step {
  height: 380px;
  min-height: 380px;
}

.method-step {
  padding: 30px;
  border: 1px solid #e8e8ee;
  border-radius: 10px;
  box-shadow: 0 18px 34px rgba(31, 33, 48, 0.055);
}

.method-step-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.method-step-icon svg {
  width: 25px;
  height: 25px;
}

.method-step > span {
  margin-top: 16px;
  font-size: 0.78rem;
}

.method-step h3 {
  margin-top: 8px;
  font-size: 1.75rem;
}

.method-step ul {
  gap: 9px;
  margin-top: 16px;
  font-size: 1.02rem;
  line-height: 1.38;
}

.method-step li {
  padding-left: 20px;
}

.method-step li::before {
  width: 7px;
  height: 7px;
}

.legal-header {
  position: relative;
  top: auto;
  margin-top: 28px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(31, 33, 48, 0.06);
  backdrop-filter: blur(16px);
}

.legal-header .header-cta {
  display: inline-flex;
}

.legal-main {
  width: min(var(--site-width), calc(100% - var(--site-gutter)));
  margin: 0 auto;
  padding: 76px 0 110px;
}

.legal-shell {
  max-width: 980px;
  margin: 0 auto;
}

.legal-intro {
  margin-bottom: 34px;
  text-align: center;
}

.legal-intro h1 {
  margin-top: 24px;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1;
}

.legal-intro p {
  max-width: 620px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.legal-toc {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 56px;
}

.legal-toc a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 18px;
  color: #333644;
  background: #fff;
  border: 1px solid #e1e3ea;
  border-radius: 999px;
  font-weight: 500;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.legal-toc a:hover {
  color: var(--violet);
  border-color: rgba(131, 62, 232, 0.35);
  transform: translateY(-1px);
}

.legal-section {
  padding: 42px 48px;
  background: #fff;
  border: 1px solid #e6e7ed;
  border-radius: 12px;
  box-shadow: 0 18px 34px rgba(31, 33, 48, 0.05);
}

.legal-section + .legal-section {
  margin-top: 32px;
}

.legal-section > h2 {
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.05;
}

.legal-updated {
  margin: 12px 0 34px;
  color: var(--muted);
  font-size: 0.94rem;
}

.legal-article + .legal-article {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #ececf1;
}

.legal-article h3 {
  margin-bottom: 12px;
  color: #252735;
  font-size: 1.4rem;
}

.legal-article p,
.legal-article address,
.legal-article li {
  color: #636675;
  font-size: 1rem;
  line-height: 1.7;
}

.legal-article p,
.legal-article address {
  margin: 0 0 12px;
}

.legal-article address {
  font-style: normal;
  white-space: pre-line;
}

.legal-article ul {
  margin: 8px 0 14px;
  padding-left: 22px;
}

.legal-article li + li {
  margin-top: 4px;
}

.legal-article strong {
  color: #303241;
  font-weight: 500;
}

@media (max-width: 980px) {
  .method-scroll-timeline {
    grid-template-columns: 56px minmax(0, 620px);
    width: min(100%, 700px);
    gap: 20px;
  }

  .method-rail-column,
  .method-step-list,
  .method-step {
    height: 380px;
    min-height: 380px;
  }

  .legal-main {
    padding-top: 58px;
  }
}

@media (max-width: 640px) {
  .method-scroll-timeline {
    grid-template-columns: 34px minmax(0, 1fr);
    width: 100%;
    gap: 14px;
  }

  .method-rail-column,
  .method-step-list,
  .method-step {
    height: 470px;
    min-height: 470px;
  }

  .method-step {
    padding: 22px;
  }

  .method-step h3 {
    font-size: 1.52rem;
  }

  .method-step ul {
    gap: 8px;
    margin-top: 14px;
    font-size: 0.92rem;
  }

  .legal-header {
    width: calc(100% - 28px);
    margin-top: 18px;
  }

  .legal-header .header-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .legal-main {
    width: calc(100% - 28px);
    padding: 50px 0 70px;
  }

  .legal-section {
    padding: 28px 22px;
  }

  .legal-article h3 {
    font-size: 1.18rem;
  }

  .legal-article p,
  .legal-article address,
  .legal-article li {
    font-size: 0.94rem;
  }
}

/* Shared language control and form/carousel interactions for the secondary pages. */
.site-header {
  grid-template-columns: auto minmax(0, 1fr) auto auto;
}

.language-switch {
  display: inline-flex;
  min-height: 37px;
  align-items: center;
  justify-content: center;
  padding: 0 11px;
  color: #4b4e5d;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid #cfd1da;
  border-radius: 8px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.language-switch:hover,
.language-switch[aria-pressed="true"] {
  color: var(--ink);
  background: #fff;
  border-color: #8f92a0;
  transform: translateY(-1px);
}

.site-header.is-scrolled .language-switch {
  min-height: 31px;
  padding: 0 9px;
  font-size: 0.75rem;
}

.form-modal[hidden] {
  display: none;
}

.form-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
}

.form-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 23, 35, 0.42);
  backdrop-filter: blur(5px);
}

.form-modal-panel {
  position: relative;
  width: min(920px, 100%);
  max-height: min(900px, calc(100vh - 40px));
  overflow: auto;
  padding: 42px;
  background: #fff;
  border: 1px solid #e4e5eb;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(31, 33, 48, 0.2);
}

.form-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #353746;
  background: #f7f7f9;
  border: 1px solid #e2e3e9;
  border-radius: 50%;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.form-modal-heading {
  max-width: 690px;
  margin-bottom: 30px;
  padding-right: 42px;
}

.form-modal-heading h2 {
  margin-top: 12px;
  color: var(--ink);
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1;
}

.form-modal-heading p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-grid-wide {
  grid-column: 1 / -1;
}

.form-modal label {
  display: grid;
  gap: 8px;
  color: #353746;
  font-size: 0.92rem;
  font-weight: 500;
}

.form-modal input,
.form-modal select,
.form-modal textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  color: #282a38;
  background: #fff;
  border: 1px solid #d7d9e1;
  border-radius: 8px;
  font: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-modal textarea {
  min-height: 90px;
  resize: vertical;
}

.form-modal input:focus,
.form-modal select:focus,
.form-modal textarea:focus {
  border-color: #8f92a0;
  box-shadow: 0 0 0 3px rgba(131, 62, 232, 0.1);
}

.form-modal small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.4;
}

.form-fieldset {
  margin: 24px 0 0;
  padding: 22px;
  border: 1px solid #e5e6ec;
  border-radius: 10px;
}

.form-fieldset legend {
  padding: 0 8px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
}

.form-modal .form-consent {
  display: flex;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 10px;
  margin: 24px 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.45;
}

.form-modal .form-consent input {
  width: 17px;
  min-width: 17px;
  height: 17px;
  min-height: 17px;
  margin-top: 2px;
  padding: 0;
}

.form-modal .btn {
  width: fit-content;
}

.journal-carousel-viewport {
  overflow: hidden;
  padding: 2px;
}

.journal-carousel-track {
  display: flex;
  align-items: stretch;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.journal-carousel-page {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-content: start;
}

.journal-carousel-page .journal-card {
  min-height: 244px;
  padding: 22px;
}

.journal-carousel-page .journal-card h3 {
  margin-top: 20px;
  font-size: 1.1rem;
}

.journal-carousel-page .journal-card p {
  margin-top: 10px;
  font-size: 0.92rem;
}

.journal-carousel-page .journal-card-link {
  margin-top: 16px;
  font-size: 0.88rem;
}

.journal-carousel-page-cases {
  display: block;
}

.journal-carousel-page-cases .journal-card {
  width: min(780px, 100%);
  min-height: 260px;
  margin: 0 auto;
  padding: 34px;
}

.journal-card-stat {
  margin-top: 24px;
  color: var(--violet);
  font-size: 1.35rem;
  font-weight: 600;
}

.journal-button-link {
  appearance: none;
  padding: 0;
  background: transparent;
  border: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.journal-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.journal-page-button {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #6e7180;
  background: #fff;
  border: 1px solid #dfe1e8;
  border-radius: 50%;
  font: inherit;
  font-size: 0.86rem;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.journal-page-button:hover,
.journal-page-button.is-active {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

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

  .form-modal-panel {
    padding: 34px 26px;
  }
}

@media (max-width: 640px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .language-switch {
    grid-column: 3;
  }

  .form-modal {
    padding: 10px;
  }

  .form-modal-panel {
    max-height: calc(100vh - 20px);
    padding: 30px 18px 24px;
    border-radius: 12px;
  }

  .form-modal-heading {
    padding-right: 34px;
  }

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

  .form-grid-wide {
    grid-column: auto;
  }

  .form-fieldset {
    padding: 18px 14px;
  }

  .journal-carousel-page {
    grid-template-columns: 1fr;
  }

  .journal-carousel-page .journal-card,
  .journal-carousel-page-cases .journal-card {
    min-height: 0;
    padding: 24px;
  }
}

@font-face {
  font-family: "Rotunda";
  src: url("./assets/fonts/Fontspring-DEMO-5a-rotunda-medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rotunda";
  src: url("./assets/fonts/Fontspring-DEMO-6a-rotunda-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #202132;
  --muted: #7c7f8f;
  --line: #e8e9ef;
  --paper: #ffffff;
  --soft: #f8f8fa;
  --soft-strong: #eee9fb;
  --violet: #833ee8;
  --magenta: #ee19d4;
  --blue: #2765ff;
  --green: #1ca86f;
  --shadow: 0 24px 70px rgba(26, 20, 44, 0.12);
  --radius: 8px;
  --site-width: 1372px;
  --site-gutter: 64px;
  --font-body: "Avenir Next", Inter, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Avenir Next", "Rotunda", Inter, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: #fbfbfc;
  scroll-behavior: smooth;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  zoom: 0.9;
  color: var(--ink);
  background: #fbfbfc;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.nav-open {
  overflow: hidden;
}

body.diagnostic-open {
  overflow: hidden;
}

body.diagnostic-open .site-header,
body.diagnostic-open main > section:not(.hero),
body.diagnostic-open .hero-copy {
  opacity: 0.4;
  pointer-events: none;
  filter: grayscale(0.12);
  transition:
    opacity 300ms ease,
    filter 300ms ease;
}

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

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

button,
input,
select {
  font: inherit;
}

main > section {
  scroll-margin-top: 72px;
}

main > section:not(.hero) {
  zoom: 0.833333;
}

.reveal-on-scroll {
  opacity: 0;
  filter: blur(7px);
  transform: translate3d(0, 22px, 0) scale(0.995);
  transition:
    opacity 620ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 700ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}

.container {
  width: min(var(--site-width), calc(100% - var(--site-gutter)));
  margin: 0 auto;
}

.section-pad {
  padding: 104px 0;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  width: min(var(--site-width), calc(100% - var(--site-gutter)));
  margin: 36px auto 0;
  padding: 0 20px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  transform-origin: top center;
  transition:
    min-height 280ms ease,
    padding 280ms ease,
    background 280ms ease,
    border-color 280ms ease,
    box-shadow 280ms ease;
}

.site-header.is-scrolled {
  min-height: 42px;
  padding: 2px 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(230, 231, 237, 0.9);
  border-radius: 10px;
  box-shadow: 0 16px 34px rgba(31, 33, 48, 0.08);
  backdrop-filter: blur(16px);
  transform: none;
}

.site-header.is-scrolled .brand {
  font-size: 1.12rem;
  gap: 7px;
}

.site-header.is-scrolled .brand img {
  width: 26px;
  height: 26px;
}

.site-header.is-scrolled .site-nav a {
  padding: 2px 0;
  font-size: 0.9rem;
}

.site-header.is-scrolled .header-cta {
  min-height: 31px;
  padding: 0 14px;
  font-size: 0.9rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #101015;
  font-size: 1.36rem;
  font-weight: 500;
  letter-spacing: 0;
  font-family: "Rotunda", var(--font-body);
  transition:
    font-size 280ms ease,
    gap 280ms ease;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  object-fit: cover;
  transition:
    width 280ms ease,
    height 280ms ease;
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-nav a {
  padding: 6px 0;
  color: #333542;
  border-radius: 0;
  font-size: 1.01rem;
  font-weight: 500;
  transition:
    color 180ms ease,
    background 180ms ease,
    font-size 280ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--ink);
  background: transparent;
}

.site-nav a:nth-child(5) {
  margin-left: 3px;
  padding-left: 28px;
  border-left: 1px solid #d7d8de;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 0 18px;
  color: #353746;
  background: #fff;
  border: 1px solid #babec9;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  transition:
    min-height 280ms ease,
    padding 280ms ease,
    font-size 280ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 7px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 10px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 44px 0 0;
  background: #fbfbfc;
}

.hero::before {
  content: none;
}

.hero-shell {
  width: min(var(--site-width), calc(100% - var(--site-gutter)));
  margin: 0 auto;
  padding: 16px;
  border: 1px solid rgba(231, 232, 238, 0.78);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.64);
}

.hero-card {
  position: relative;
  min-height: 642px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(420px, 0.42fr);
  gap: 24px;
  padding: 58px 56px 50px;
  background: #fff;
  border: 1px solid #e8e9ef;
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(31, 33, 48, 0.09);
  transition:
    min-height 460ms cubic-bezier(0.16, 1, 0.3, 1),
    grid-template-columns 460ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 460ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-card.is-diagnostic-open {
  min-height: clamp(1120px, 150vh, 1640px);
  box-shadow: 0 28px 76px rgba(31, 33, 48, 0.12);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: 62px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--violet);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 555px;
  transition:
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
    max-width 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-card.is-diagnostic-open .hero-copy {
  max-width: 500px;
  transform: translate3d(-10px, 0, 0);
}

.partner-badge {
  display: inline-flex;
  align-items: center;
  width: 218px;
  margin-bottom: 15px;
}

.partner-badge img {
  width: 100%;
  height: auto;
}

.google-mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  font-size: 1.18rem;
  font-weight: 900;
  color: #4285f4;
  background: #fff;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px #f0f1f4;
}

h1,
h2 {
  margin: 0;
  max-width: 820px;
  font-family: var(--font-display);
  letter-spacing: 0;
  line-height: 0.98;
  font-weight: 500;
  overflow-wrap: normal;
  word-break: normal;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.8rem);
}

.hero h1 {
  max-width: 510px;
  color: #202132;
  font-size: clamp(2.78rem, 3.35vw, 3.55rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}

h2 {
  font-size: clamp(2.28rem, 3.53vw, 3.53rem);
}

h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.2;
  overflow-wrap: normal;
  word-break: normal;
}

p,
li,
span {
  overflow-wrap: break-word;
}

.hero-lead,
.section-lead,
.section-heading p,
.final-cta p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-lead {
  max-width: 555px;
  margin: 18px 0 0;
  color: #828596;
  font-size: 1.13rem;
  line-height: 1.45;
}

.hero-benefits {
  display: grid;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  color: #292b39;
  font-size: 1rem;
  line-height: 1.3;
  list-style: none;
}

.hero-benefits li {
  position: relative;
  padding-left: 29px;
}

.hero-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.06em;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: #fff;
  background: #252736;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.hero-benefits strong {
  font-weight: 850;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 26px;
  padding: 0 28px;
  color: #fff;
  background: #1e2023;
  border: 1px solid #303236;
  border-radius: 7px;
  box-shadow: 0 8px 14px rgba(26, 28, 33, 0.11);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-weight: 400;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
}

.hero-proof p {
  margin: 0;
  color: #252837;
  font-size: 0.9rem;
  line-height: 1.23;
}

.hero-proof p strong,
.hero-proof p span {
  display: block;
}

.hero-proof p strong {
  font-weight: 850;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: #dedfe5;
}

.google-reviews {
  display: grid;
  width: 118px;
}

.google-reviews img {
  width: 100%;
  height: auto;
}

.hero-media {
  position: absolute;
  top: 0;
  right: -26px;
  bottom: auto;
  z-index: 1;
  width: min(50.5%, 630px);
  pointer-events: none;
  transition:
    opacity 360ms ease,
    visibility 360ms ease,
    transform 360ms ease;
}

.hero-media img {
  width: 100%;
  height: auto;
}

.hero-card.is-diagnostic-open .hero-media {
  opacity: 0;
  visibility: hidden;
  transform: translate3d(18px, 0, 0) scale(0.985);
}

.hero-diagnostic-panel {
  position: absolute;
  top: 18px;
  right: 20px;
  bottom: 18px;
  z-index: 40;
  display: grid;
  grid-template-rows: auto 1fr;
  width: min(900px, 72%);
  padding: 24px 28px;
  opacity: 0;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #e5e7ee;
  border-radius: 16px;
  box-shadow: 0 28px 72px rgba(27, 30, 44, 0.16);
  backdrop-filter: blur(16px);
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translate3d(22px, 0, 0) scale(0.985);
  transition:
    opacity 420ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-card.is-diagnostic-open .hero-diagnostic-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.diagnostic-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #2f3140;
  cursor: pointer;
  background: #f5f6f8;
  border: 1px solid #e4e6ed;
  border-radius: 50%;
  font-size: 1.18rem;
  line-height: 1;
}

.diagnostic-progress {
  padding-right: 34px;
}

.diagnostic-progress-top {
  display: grid;
  gap: 8px;
}

.diagnostic-progress-top span {
  color: var(--violet);
  font-size: 0.9rem;
  font-weight: 700;
}

.diagnostic-progress-top strong {
  color: #252735;
  font-family: var(--font-display);
  font-size: 1.03rem;
  font-weight: 500;
  line-height: 1.25;
}

.diagnostic-progress-track {
  height: 8px;
  margin-top: 16px;
  overflow: hidden;
  background: #eceef4;
  border-radius: 999px;
}

.diagnostic-progress-track span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--violet), var(--magenta));
  border-radius: inherit;
  transition: width 360ms ease-in-out;
}

.hero-diagnostic-panel.is-complete .diagnostic-progress-top span {
  color: #e87500;
}

.hero-diagnostic-panel.is-complete .diagnostic-progress-track span,
.hero-diagnostic-panel.is-complete .diagnostic-score-bar span,
.hero-diagnostic-panel.is-complete .diagnostic-mini-bar span {
  background: linear-gradient(90deg, #ff7a00, #ffb13d);
}

.diagnostic-content {
  display: grid;
  align-content: start;
  min-height: 0;
  overflow: visible;
  padding-top: 22px;
}

.diagnostic-step,
.diagnostic-result,
.diagnostic-loading {
  display: grid;
  gap: 14px;
  animation: diagnostic-enter 360ms ease-in-out both;
}

.diagnostic-result {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  align-items: start;
  column-gap: 18px;
}

.diagnostic-result > .diagnostic-kicker,
.diagnostic-result > h2,
.diagnostic-result > p,
.diagnostic-result > .diagnostic-result-actions {
  grid-column: 1 / -1;
}

@keyframes diagnostic-enter {
  from {
    opacity: 0;
    filter: blur(5px);
    transform: translate3d(0, 16px, 0);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
}

.diagnostic-kicker {
  color: var(--violet);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.diagnostic-step h2,
.diagnostic-result h2,
.diagnostic-loading h2 {
  color: #202132;
  font-size: 1.82rem;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.diagnostic-step p,
.diagnostic-result p,
.diagnostic-loading p {
  margin: 0;
  color: #7c7f8f;
  font-size: 0.96rem;
  line-height: 1.42;
}

.diagnostic-field,
.diagnostic-textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  color: #202132;
  background: #f8f8fa;
  border: 1px solid #d9dce5;
  border-radius: 10px;
  outline: none;
  font-size: 1rem;
}

.diagnostic-textarea {
  min-height: 132px;
  padding: 16px;
  resize: vertical;
}

.diagnostic-field:focus,
.diagnostic-textarea:focus {
  border-color: rgba(131, 62, 232, 0.62);
  box-shadow: 0 0 0 4px rgba(131, 62, 232, 0.11);
}

.diagnostic-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

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

.diagnostic-select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #626675 50%),
    linear-gradient(135deg, #626675 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 14px) 50%;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
}

.diagnostic-field-note {
  grid-column: 1 / -1;
  margin: -1px 0 0;
  color: #8a8e9c;
  font-size: 0.82rem;
  line-height: 1.35;
}

.diagnostic-option {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 9px 12px;
  color: #343746;
  cursor: pointer;
  background: #fff;
  border: 1px solid #dfe2ea;
  border-radius: 10px;
  font-size: 0.92rem;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease,
    transform 220ms ease;
}

.diagnostic-option:hover,
.diagnostic-option.is-selected {
  background: #fbfaff;
  border-color: rgba(131, 62, 232, 0.48);
  box-shadow: 0 12px 24px rgba(31, 33, 48, 0.06);
  transform: translateY(-1px);
}

.diagnostic-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--violet);
}

.diagnostic-other-field {
  display: none;
}

.diagnostic-other-field.is-visible {
  display: block;
  grid-column: 1 / -1;
}

.diagnostic-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 2px;
}

.diagnostic-next,
.diagnostic-back,
.diagnostic-result-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  cursor: pointer;
  border-radius: 9px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
}

.diagnostic-result-button.is-secondary {
  color: #303241;
  background: #fff;
  border-color: #dfe2ea;
}

.diagnostic-next,
.diagnostic-result-button {
  color: #fff;
  background: #1f2224;
  border: 1px solid #303438;
}

.diagnostic-next:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.diagnostic-back {
  color: #424554;
  background: #fff;
  border: 1px solid #e1e3ea;
}

.diagnostic-loading-visual {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  margin: 6px 0;
  border: 1px solid #e6e8ef;
  border-radius: 50%;
}

.diagnostic-loading-visual::before {
  content: "";
  width: 46px;
  height: 46px;
  border: 4px solid #eceef4;
  border-top-color: var(--violet);
  border-radius: 50%;
  animation: diagnostic-spin 800ms linear infinite;
}

@keyframes diagnostic-spin {
  to {
    transform: rotate(360deg);
  }
}

.diagnostic-score-card {
  padding: 16px;
  background: #f8f8fa;
  border: 1px solid #e2e4ec;
  border-radius: 14px;
}

.diagnostic-score-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
}

.diagnostic-score-top span {
  color: #737786;
  font-size: 0.92rem;
}

.diagnostic-score-top strong {
  color: #202132;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.diagnostic-score-bar,
.diagnostic-mini-bar {
  height: 9px;
  margin-top: 10px;
  overflow: hidden;
  background: #e7e9ef;
  border-radius: 999px;
}

.diagnostic-score-bar span,
.diagnostic-mini-bar span {
  display: block;
  width: var(--score-width, 0%);
  height: 100%;
  background: linear-gradient(90deg, var(--violet), var(--magenta));
  border-radius: inherit;
}

.diagnostic-score-label {
  display: block;
  margin-top: 8px;
  color: #252735;
  font-size: 0.96rem;
  font-weight: 500;
}

.diagnostic-indicators {
  display: grid;
  gap: 8px;
}

.diagnostic-visual-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  grid-column: 1 / -1;
  gap: 14px;
}

.diagnostic-site-preview,
.diagnostic-map-preview {
  display: grid;
  gap: 10px;
  min-height: 100%;
  padding: 14px;
  overflow: hidden;
  background: #f8f8fa;
  border: 1px solid #e2e4ec;
  border-radius: 14px;
}

.diagnostic-site-preview div,
.diagnostic-map-preview div {
  display: grid;
  gap: 2px;
}

.diagnostic-site-preview span,
.diagnostic-map-preview span {
  color: #737786;
  font-size: 0.82rem;
}

.diagnostic-site-preview strong,
.diagnostic-map-preview strong {
  color: #202132;
  font-size: 1rem;
  font-weight: 500;
}

.diagnostic-site-preview img,
.diagnostic-map-preview img,
.diagnostic-map-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #eceef4;
  border: 1px solid #e1e4ec;
  border-radius: 10px;
}

.diagnostic-map-placeholder {
  display: grid;
  place-items: center;
  padding: 18px;
  color: #747887;
  text-align: center;
  font-size: 0.88rem;
}

.diagnostic-site-preview p,
.diagnostic-map-preview p {
  font-size: 0.84rem;
}

.diagnostic-indicator {
  display: grid;
  gap: 8px;
}

.diagnostic-indicator-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: #555967;
  font-size: 0.92rem;
}

.diagnostic-recommendation {
  padding: 16px;
  background: #fff;
  border: 1px solid #e2e4ec;
  border-radius: 14px;
}

.diagnostic-recommendation-primary {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: linear-gradient(180deg, #fff, #fbfaff);
  border-color: rgba(131, 62, 232, 0.28);
  box-shadow: 0 14px 28px rgba(31, 33, 48, 0.06);
}

.diagnostic-recommendation-heading {
  display: grid;
  gap: 4px;
}

.diagnostic-recommendation-heading p,
.diagnostic-recommendation-heading h3 {
  margin: 0;
}

.diagnostic-recommendation-heading h3 {
  font-size: 1.45rem;
}

.diagnostic-recommendation-primary .diagnostic-result-actions {
  position: sticky;
  bottom: 0;
  z-index: 2;
  margin: 0 -4px -4px;
  padding: 8px 4px 4px;
  background: linear-gradient(180deg, rgba(251, 250, 255, 0), #fbfaff 24%);
}

.diagnostic-recommendation-details {
  margin-top: 0;
}

.diagnostic-recommendation h3 {
  color: #202132;
  font-size: 1.34rem;
  letter-spacing: -0.025em;
}

.diagnostic-reasons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 12px;
  margin: 10px 0 0;
  padding: 0;
  color: #5f6270;
  list-style: none;
}

.diagnostic-reasons li {
  display: flex;
  gap: 9px;
}

.diagnostic-reasons li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
}

.diagnostic-result-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 2px;
}

.hero-actions,
.client-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  min-width: 318px;
  padding: 0 32px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--magenta));
  box-shadow: 0 16px 36px rgba(131, 62, 232, 0.24);
}

.btn-secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.btn-light {
  color: var(--ink);
  background: #fff;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-points span {
  padding: 9px 12px;
  color: #312c42;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 540px;
}

.search-panel,
.dashboard {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.search-panel {
  width: min(100%, 510px);
  margin-left: auto;
  padding: 18px;
  transform: rotate(1.5deg);
}

.window-bar {
  display: flex;
  gap: 7px;
  padding: 6px 0 18px;
}

.window-bar span {
  width: 11px;
  height: 11px;
  background: var(--line);
  border-radius: 50%;
}

.window-bar span:first-child {
  background: #ff6b6b;
}

.window-bar span:nth-child(2) {
  background: #ffc857;
}

.window-bar span:nth-child(3) {
  background: #31c48d;
}

.search-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 7px;
}

.search-input span {
  color: var(--blue);
  font-weight: 900;
}

.search-input strong {
  color: var(--muted);
  font-size: 0.95rem;
}

.rank-card {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.rank-card small,
.metric-card span,
.metric-card small {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 750;
}

.rank-card strong {
  font-size: 1.3rem;
}

.rank-card span {
  color: var(--muted);
}

.rank-card.featured {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.rank-card.featured small,
.rank-card.featured span {
  color: rgba(255, 255, 255, 0.74);
}

.metric-card {
  position: absolute;
  display: grid;
  gap: 2px;
  min-width: 154px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(26, 20, 44, 0.16);
}

.metric-card strong {
  font-size: 2rem;
  line-height: 1;
}

.metric-leads {
  left: 0;
  bottom: 58px;
}

.metric-roi {
  right: 16px;
  bottom: 0;
}

.trust-strip {
  display: none;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-grid div {
  padding: 18px 0;
}

.trust-grid strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.trust-grid span {
  color: rgba(255, 255, 255, 0.7);
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  padding: 53px 0 104px;
  background: #fbfbfc;
}

.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(18vw, 260px);
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #fbfbfc 0%, rgba(251, 251, 252, 0.9) 30%, rgba(251, 251, 252, 0) 100%);
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #fbfbfc 0%, rgba(251, 251, 252, 0.9) 30%, rgba(251, 251, 252, 0) 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 72px;
  animation: logo-scroll 32s linear infinite;
}

.marquee-track span {
  flex: 0 0 auto;
  color: #7f8086;
  opacity: 0.54;
  filter: grayscale(1);
  font-size: 1.55rem;
  font-weight: 850;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.marquee-track span:nth-child(2),
.marquee-track span:nth-child(10) {
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.marquee-track span:nth-child(4),
.marquee-track span:nth-child(12) {
  max-width: 90px;
  font-size: 1rem;
  font-style: italic;
  line-height: 0.9;
}

.marquee-track span:nth-child(6),
.marquee-track span:nth-child(14) {
  font-size: 1.9rem;
  font-style: italic;
}

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 36px));
  }
}

.why-section {
  padding: 52px 0 98px;
  background: #fbfbfc;
}

.why-container {
  width: min(var(--site-width), calc(100% - var(--site-gutter)));
  margin: 0 auto;
}

.why-heading {
  max-width: 1180px;
  margin: 0 auto 100px;
  text-align: center;
}

.why-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  color: #303241;
  background: #fff;
  border: 1px solid #ececf0;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(28, 30, 42, 0.04);
  font-size: 1.04rem;
  font-weight: 650;
}

.why-badge svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #222431;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.why-heading h2 {
  max-width: 1100px;
  margin: 22px auto 0;
  color: #202132;
  font-size: clamp(2.55rem, 3.53vw, 3.53rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.why-heading p {
  max-width: 1080px;
  margin: 34px auto 0;
  color: #828596;
  font-size: 1.26rem;
  line-height: 1.45;
}

.why-card-frame {
  max-width: 1040px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid #e9e9ee;
  border-radius: 18px;
}

.why-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.why-card {
  display: grid;
  align-content: center;
  justify-items: center;
  aspect-ratio: 1 / 1;
  min-height: 0;
  padding: 38px 38px 36px;
  text-align: center;
  background: #fff;
  border: 1px solid #e8e8ee;
  border-radius: 10px;
  box-shadow: 0 18px 34px rgba(31, 33, 48, 0.06);
}

.why-icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 28px;
  border-radius: 14px;
}

.why-icon span {
  color: #11131f;
  font-size: 1.72rem;
  font-weight: 750;
  line-height: 1;
}

.why-icon svg {
  width: 33px;
  height: 33px;
  fill: none;
  stroke: #11131f;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.why-icon-yellow {
  background: #fff0bc;
}

.why-icon-green {
  background: #dff3eb;
}

.why-icon-blue {
  background: #dcecff;
}

.why-icon-purple {
  background: #eadfff;
}

.why-card h3 {
  color: #252735;
  font-size: 1.52rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.16;
}

.why-card p {
  max-width: 350px;
  margin: 12px auto 0;
  color: #828596;
  font-size: 1.08rem;
  line-height: 1.42;
}

.why-cta-block {
  display: grid;
  justify-items: center;
  gap: 28px;
  margin-top: 118px;
  text-align: center;
}

.why-cta-block p {
  margin: 0;
  color: #858897;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.26;
  letter-spacing: -0.025em;
}

.why-cta-block strong {
  color: #777b8b;
  font-weight: 500;
}

.dark-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  min-width: 318px;
  padding: 0 32px;
  color: #fff;
  background: #1f2224;
  border: 1px solid #303438;
  border-radius: 10px;
  box-shadow: 0 14px 24px rgba(21, 23, 26, 0.14);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.section-topper {
  max-width: 1280px;
  margin: 0 auto 88px;
  text-align: center;
}

.section-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  color: #303241;
  background: #fff;
  border: 1px solid #ececf0;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(28, 30, 42, 0.04);
  font-size: 1.25rem;
  font-weight: 650;
}

.section-pill svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #252735;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.section-topper h2 {
  max-width: 1230px;
  margin: 28px auto 0;
  color: #202132;
  font-size: clamp(2.55rem, 3.53vw, 3.53rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.section-topper p {
  max-width: 1180px;
  margin: 36px auto 0;
  color: #858897;
  font-size: 1.36rem;
  line-height: 1.42;
}

.problem-v2 {
  padding: 102px 0 112px;
  background: #fbfbfc;
}

.problem-v2-container {
  width: min(var(--site-width), calc(100% - var(--site-gutter)));
  margin: 0 auto;
}

.problem-card-frame {
  padding: 20px;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid #e9e9ee;
  border-radius: 18px;
}

.problem-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.problem-card {
  min-height: 270px;
  padding: 42px 42px 36px;
  background: #fff;
  border: 1px solid #e8e8ee;
  border-radius: 10px;
  box-shadow: 0 18px 34px rgba(31, 33, 48, 0.055);
}

.problem-card > svg {
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  fill: none;
  stroke: #262837;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.problem-card h3 {
  color: #252735;
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.problem-card p {
  max-width: 370px;
  margin: 14px 0 0;
  color: #828596;
  font-size: 1.28rem;
  line-height: 1.42;
}

.problem-cta {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin-top: 86px;
  text-align: center;
}

.problem-cta .dark-cta {
  min-width: 366px;
  font-size: 1.35rem;
}

.problem-cta p {
  margin: 0;
  color: #252735;
  font-size: 1.35rem;
  line-height: 1.2;
}

.promise-v2 {
  padding: 112px 0 120px;
  background: #fbfbfc;
}

.promise-v2-container {
  width: min(var(--site-width), calc(100% - var(--site-gutter)));
  margin: 0 auto;
}

.promise-v2 .section-topper {
  margin-bottom: 118px;
}

.promise-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(560px, 0.58fr);
  align-items: center;
  gap: 84px;
}

.promise-copy {
  max-width: 620px;
}

.promise-mini-pill {
  min-height: 50px;
  margin-bottom: 34px;
  padding: 0 24px;
}

.promise-copy h3 {
  color: #202132;
  font-size: clamp(2.28rem, 3.32vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1;
}

.promise-copy p {
  max-width: 620px;
  margin: 42px 0 0;
  color: #858897;
  font-size: 1.58rem;
  line-height: 1.42;
}

.promise-scroll-stage {
  position: relative;
  height: 430vh;
  margin-top: 24px;
}

.promise-sticky {
  position: sticky;
  top: 92px;
  display: grid;
  min-height: calc(100vh - 118px);
  align-items: center;
}

.promise-step-shell {
  position: relative;
  min-height: min(720px, calc(100vh - 150px));
  display: grid;
  align-items: center;
}

.promise-step-progress {
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  height: 4px;
  overflow: hidden;
  background: #e7e8ee;
  border-radius: 999px;
}

.promise-step-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--violet), var(--magenta));
  border-radius: inherit;
  transition: width 180ms ease-out;
}

.promise-step {
  position: absolute;
  inset: 38px 0 0;
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(520px, 0.58fr);
  gap: 84px;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 420ms ease-in-out,
    transform 420ms ease-in-out;
}

.promise-step.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.promise-step-reversed .promise-copy {
  order: 2;
}

.promise-step-reversed .promise-placeholder {
  order: 1;
}

.promise-step .promise-copy {
  max-width: 620px;
}

.promise-step .promise-mini-pill {
  width: fit-content;
}

.promise-step .promise-mini-pill svg {
  stroke: #252735;
}

.promise-step .promise-copy h3,
.promise-step .promise-copy p,
.promise-step .promise-mini-pill {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 420ms ease-in-out,
    transform 420ms ease-in-out;
}

.promise-step.is-active .promise-mini-pill {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.promise-step.is-active .promise-copy h3 {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 70ms;
}

.promise-step.is-active .promise-copy p {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 140ms;
}

.promise-placeholder {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #8a8d98;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0)),
    #eceef3;
  border: 1px dashed #c8cad4;
  border-radius: 10px;
  box-shadow: 0 20px 44px rgba(31, 33, 48, 0.08);
  transform: scale(0.985);
  transition:
    transform 420ms ease-in-out,
    box-shadow 420ms ease-in-out;
}

.promise-placeholder.has-video::before,
.promise-placeholder.has-video::after {
  display: none;
}

.promise-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promise-step.is-active .promise-placeholder {
  transform: scale(1);
  box-shadow: 0 28px 62px rgba(31, 33, 48, 0.1);
}

.promise-placeholder::before,
.promise-placeholder::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(150, 153, 164, 0.28);
  border-radius: 32px;
  transform: rotate(14deg);
}

.promise-placeholder::before {
  top: -46px;
  right: -30px;
}

.promise-placeholder::after {
  left: -52px;
  bottom: -58px;
}

.promise-placeholder span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(203, 205, 214, 0.8);
  border-radius: 999px;
  font-weight: 500;
}

.promise-final-cta {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin-top: 48px;
  text-align: center;
}

.promise-final-cta .dark-cta {
  min-width: 426px;
}

.promise-final-cta p {
  margin: 0;
  color: #252735;
  font-size: 1.28rem;
}

.promise-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff0bd;
  border-radius: 10px;
}

.promise-visual::before,
.promise-visual::after {
  content: "";
  position: absolute;
  width: 86px;
  height: 86px;
  border-color: rgba(158, 137, 79, 0.42);
  border-style: solid;
  pointer-events: none;
}

.promise-visual::before {
  top: 112px;
  left: 170px;
  border-width: 2px 0 0 2px;
}

.promise-visual::after {
  right: 142px;
  bottom: 108px;
  border-width: 0 2px 2px 0;
}

.result-label {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 310px;
  padding: 16px 22px;
  background: #fff;
  border: 1px solid #e9e9ee;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(49, 43, 29, 0.1);
}

.result-label strong {
  display: block;
  color: #252735;
  font-size: 1.32rem;
  line-height: 1.1;
}

.result-label small {
  display: block;
  margin-top: 5px;
  color: #3a7cff;
  font-size: 1.04rem;
  font-weight: 700;
}

.search-label {
  top: 62px;
  right: 142px;
}

.maps-label {
  left: 50%;
  bottom: 56px;
  transform: translateX(-28%);
}

.maps-label small {
  color: #9367ff;
}

.mini-google,
.maps-pin {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  background: conic-gradient(#4285f4 0 25%, #34a853 0 50%, #fbbc05 0 75%, #ea4335 0);
  border-radius: 50%;
  color: #fff;
  font-weight: 850;
}

.maps-pin {
  background: linear-gradient(135deg, #4285f4, #34a853 45%, #fbbc05 46%, #ea4335);
}

.laptop {
  position: relative;
  z-index: 2;
  width: min(76%, 650px);
  margin-top: 50px;
}

.laptop-screen {
  aspect-ratio: 16 / 10;
  padding: 24px;
  background: #1b1d21;
  border-radius: 14px 14px 4px 4px;
  box-shadow: 0 18px 26px rgba(29, 31, 36, 0.2);
}

.search-ui {
  width: 100%;
  height: 100%;
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}

.search-top {
  width: 64%;
  height: 18px;
  margin-bottom: 18px;
  background: #f2f3f7;
  border-radius: 999px;
}

.search-columns {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 22px;
}

.result-line {
  display: block;
  height: 12px;
  margin-bottom: 12px;
  background: #e6e8ef;
  border-radius: 4px;
}

.result-line.blue {
  height: 28px;
  background: #eaf2ff;
  border: 2px solid #4988ff;
}

.result-line.short {
  width: 74%;
}

.maps-panel {
  min-height: 230px;
  padding: 16px;
  background: linear-gradient(135deg, #d9f0ff, #f1f7e8);
  border-radius: 8px;
}

.maps-panel span {
  display: block;
  height: 44px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.82);
  border: 2px solid #8d66ff;
  border-radius: 8px;
}

.maps-panel span:not(:first-child) {
  height: 28px;
  border-color: rgba(255, 255, 255, 0.7);
}

.laptop-base {
  height: 20px;
  margin: -2px -28px 0;
  background: linear-gradient(180deg, #262a2f, #767a83);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

.split-grid,
.problem-grid,
.promise-grid,
.method-grid,
.client-grid,
.final-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: start;
}

.section-lead {
  margin: 22px 0 0;
}

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

.feature-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature-item span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--ink);
  border-radius: 7px;
  font-size: 0.85rem;
  font-weight: 850;
}

.feature-item p,
.pain-grid p,
.outcome-grid p,
.audience-card p,
.audience-card span,
.case-card p,
.pricing-card p,
.pricing-card li,
.activity-list p,
.site-footer p {
  margin: 8px 0 0;
  color: var(--muted);
}

.problem-section,
.method-section {
  background: var(--soft);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pain-grid article,
.outcome-grid article,
.audience-card,
.case-card,
.pricing-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.pain-grid article {
  padding: 22px;
}

.problem-section .btn {
  margin-top: 28px;
}

.promise-card {
  position: sticky;
  top: 112px;
  padding: 30px;
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius);
}

.promise-card .eyebrow {
  color: #d8cbff;
}

.promise-card p {
  color: rgba(255, 255, 255, 0.75);
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.outcome-grid article {
  min-height: 205px;
  padding: 22px;
}

.outcome-grid span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--violet);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.section-heading {
  max-width: 1120px;
  margin-bottom: 42px;
  text-align: center;
}

.section-heading h2,
.section-heading p {
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2 {
  max-width: 1100px;
  margin-top: 22px;
  color: #202132;
  font-size: clamp(2.55rem, 3.53vw, 3.53rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-heading p {
  max-width: 680px;
  margin-top: 18px;
  color: #828596;
  font-size: 1.26rem;
  line-height: 1.45;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.audience-card {
  min-height: 280px;
  padding: 22px;
}

.audience-tag,
.popular-badge,
.case-industry {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: var(--violet);
  background: var(--soft-strong);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
}

.audience-card h3 {
  margin-top: 26px;
}

.audience-card span {
  display: block;
  margin-top: 18px;
  font-size: 0.9rem;
}

.audience-section {
  background: #fbfbfc;
}

.audience-heading {
  margin-bottom: 58px;
}

.audience-accordion {
  display: grid;
  grid-template-columns: minmax(300px, 0.4fr) minmax(0, 0.6fr);
  gap: 28px;
  align-items: stretch;
}

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

.audience-option {
  display: grid;
  gap: 9px;
  width: 100%;
  min-height: 142px;
  padding: 22px;
  color: #6f7282;
  text-align: left;
  cursor: pointer;
  background: #fff;
  border: 1px solid #e7e8ee;
  border-radius: 10px;
  box-shadow: 0 10px 22px rgba(31, 33, 48, 0.035);
  transition:
    transform 300ms ease-in-out,
    box-shadow 300ms ease-in-out,
    background 300ms ease-in-out,
    border-color 300ms ease-in-out,
    color 300ms ease-in-out;
}

.audience-option:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px rgba(31, 33, 48, 0.065);
}

.audience-option.is-active {
  color: #333647;
  background: linear-gradient(135deg, rgba(131, 62, 232, 0.08), rgba(238, 25, 212, 0.045));
  border-color: rgba(131, 62, 232, 0.42);
  box-shadow: 0 22px 46px rgba(65, 44, 116, 0.13);
}

.audience-option-kicker {
  display: inline-flex;
  width: fit-content;
  min-height: 26px;
  align-items: center;
  padding: 0 10px;
  color: var(--violet);
  background: rgba(131, 62, 232, 0.09);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.audience-option strong {
  color: #252735;
  font-size: 1.52rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.16;
  transition: color 300ms ease-in-out;
}

.audience-option.is-active strong {
  color: #252735;
}

.audience-option > span:not(.audience-option-kicker):not(.audience-mobile-panel) {
  color: #828596;
  font-size: 1.08rem;
  line-height: 1.42;
}

.audience-mobile-panel {
  display: none;
}

.audience-preview-shell {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 15%, rgba(131, 62, 232, 0.14), transparent 34%),
    radial-gradient(circle at 85% 82%, rgba(39, 101, 255, 0.13), transparent 36%),
    #ffffff;
  border: 1px solid #e8e8ee;
  border-radius: 16px;
  box-shadow: 0 24px 58px rgba(31, 33, 48, 0.08);
}

.audience-preview {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(320px, 0.58fr);
  gap: 30px;
  align-items: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 20px, 0);
  transition:
    opacity 320ms ease-in-out,
    transform 320ms ease-in-out;
}

.audience-preview.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.audience-preview-copy {
  display: grid;
  gap: 14px;
}

.audience-preview-copy span {
  width: fit-content;
  padding: 7px 12px;
  color: var(--violet);
  background: rgba(131, 62, 232, 0.09);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.audience-preview-copy h3 {
  color: #202132;
  font-size: clamp(1.7rem, 2.45vw, 2.55rem);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.audience-preview-copy p {
  margin: 0;
  color: #7d808f;
  font-size: 1.08rem;
  line-height: 1.48;
}

.audience-demo {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  padding: 26px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(232, 233, 239, 0.9);
  border-radius: 14px;
  box-shadow: 0 24px 48px rgba(31, 33, 48, 0.1);
  transform: scale(0.985);
  transition: transform 320ms ease-in-out;
}

.audience-preview.is-active .audience-demo {
  transform: scale(1.015);
}

.demo-topbar {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
}

.demo-topbar span {
  width: 11px;
  height: 11px;
  background: #e0e2e8;
  border-radius: 50%;
}

.demo-topbar span:first-child {
  background: #ff6b6b;
}

.demo-topbar span:nth-child(2) {
  background: #ffc857;
}

.demo-topbar span:nth-child(3) {
  background: #31c48d;
}

.demo-query {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  color: #767988;
  background: #f5f6f9;
  border: 1px solid #e7e8ee;
  border-radius: 999px;
  font-weight: 500;
}

.demo-result {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  padding: 18px;
  background: #fff;
  border: 1px solid #e8e9ef;
  border-radius: 10px;
}

.demo-result strong,
.demo-review-row strong {
  color: #232534;
  font-size: 1.15rem;
  font-weight: 500;
}

.demo-result span,
.demo-review-row small {
  color: #7e8190;
}

.demo-result.is-featured {
  background: linear-gradient(135deg, rgba(39, 101, 255, 0.1), rgba(131, 62, 232, 0.09));
  border-color: rgba(39, 101, 255, 0.24);
}

.demo-map {
  position: absolute;
  right: 26px;
  bottom: 26px;
  width: 42%;
  height: 150px;
  overflow: hidden;
  background: linear-gradient(135deg, #d9f0ff, #eff7e9);
  border-radius: 12px;
}

.demo-map span {
  position: absolute;
  display: block;
  background: rgba(39, 101, 255, 0.22);
  border-radius: 999px;
}

.demo-map span:first-child {
  left: 18px;
  top: 28px;
  width: 80%;
  height: 8px;
  transform: rotate(-24deg);
}

.demo-map span:nth-child(2) {
  left: 38px;
  bottom: 38px;
  width: 66%;
  height: 8px;
  transform: rotate(18deg);
}

.demo-map span:nth-child(3) {
  left: 50%;
  top: 50%;
  width: 22px;
  height: 22px;
  background: var(--blue);
  border: 4px solid #fff;
  transform: translate(-50%, -50%);
}

.demo-review-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0 14px;
  padding: 16px;
  background: #fff;
  border: 1px solid #e8e9ef;
  border-radius: 10px;
}

.demo-review-row span {
  color: #f6a900;
  letter-spacing: 0.03em;
}

.demo-kpi-row,
.demo-network-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.demo-kpi-row span,
.demo-network-grid span {
  display: grid;
  min-height: 58px;
  place-items: center;
  color: #6f7282;
  background: #f7f7fa;
  border: 1px solid #e7e8ee;
  border-radius: 10px;
  font-weight: 500;
}

.demo-chart {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 185px;
  padding: 18px;
  background: #202132;
  border-radius: 12px;
}

.demo-chart span {
  flex: 1;
  min-width: 24px;
  background: linear-gradient(180deg, var(--magenta), var(--violet));
  border-radius: 999px 999px 6px 6px;
}

.demo-network-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 18px;
}

.demo-network-grid span.is-hot {
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--magenta));
  border-color: transparent;
}

.results-section,
.client-section {
  background:
    linear-gradient(180deg, #fff 0%, #fbfaff 100%);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.case-card {
  padding: 24px;
}

.case-photo-placeholder {
  display: grid;
  min-height: 190px;
  place-items: center;
  margin: 0 0 24px;
  overflow: hidden;
  color: #858897;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0)),
    #eceef3;
  border: 1px dashed #bfc2cc;
  border-radius: 10px;
}

.case-photo-placeholder img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: center;
}

.case-photo-placeholder span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(209, 211, 219, 0.85);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
}

.case-card h3 {
  margin-top: 28px;
  font-size: 1.4rem;
}

.case-objective {
  min-height: 52px;
}

.case-stats {
  margin: 28px 0 18px;
  padding: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 7px;
}

.case-stats strong {
  display: block;
  font-size: 2.4rem;
  line-height: 1;
}

.case-stats span {
  color: var(--muted);
}

.case-featured {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.case-featured .case-photo-placeholder {
  color: rgba(255, 255, 255, 0.74);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    #2b2d3c;
  border-color: rgba(255, 255, 255, 0.2);
}

.case-featured .case-photo-placeholder span {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.case-featured p,
.case-featured .case-stats span {
  color: rgba(255, 255, 255, 0.74);
}

.case-featured .case-stats {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.timeline {
  position: relative;
  display: grid;
  gap: 14px;
}

.timeline article {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.timeline span {
  display: block;
  margin-bottom: 16px;
  color: var(--violet);
  font-weight: 850;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.timeline p {
  margin: 8px 0 0;
  color: var(--muted);
}

.method-grid .btn {
  margin-top: 32px;
}

.method-section {
  background:
    radial-gradient(circle at 15% 10%, rgba(131, 62, 232, 0.07), transparent 28%),
    #f8f8fa;
}

.method-heading {
  margin-bottom: 76px;
}

.method-scroll-stage {
  position: relative;
  height: 330vh;
  max-width: 1120px;
}

.method-sticky {
  position: sticky;
  top: 92px;
  display: grid;
  min-height: calc(100vh - 118px);
  align-items: center;
}

.method-scroll-timeline {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 46px;
  align-items: center;
  width: 100%;
}

.method-rail-column {
  position: relative;
  height: min(720px, calc(100vh - 150px));
  min-height: 620px;
  display: grid;
  justify-items: center;
}

.method-rail {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  overflow: hidden;
  background: #dfe1e8;
  border-radius: 999px;
  transform: translateX(-50%);
}

.method-rail-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, var(--violet), var(--magenta));
  border-radius: inherit;
  transition: height 120ms linear;
  will-change: height;
}

.method-marker {
  position: absolute;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: #9ca0ad;
  background: #fff;
  border: 2px solid #dfe1e8;
  border-radius: 50%;
  box-shadow:
    0 0 0 12px #f8f8fa,
    0 10px 24px rgba(31, 33, 48, 0.06);
  font-size: 0.86rem;
  font-weight: 700;
  transform: translate(-50%, -50%);
  transition:
    color 320ms ease-in-out,
    background 320ms ease-in-out,
    border-color 320ms ease-in-out,
    box-shadow 320ms ease-in-out,
    transform 320ms ease-in-out;
}

.method-marker:nth-of-type(1) {
  top: 0;
  transform: translate(-50%, 0);
}

.method-marker:nth-of-type(2) {
  top: 50%;
}

.method-marker:nth-of-type(3) {
  top: 100%;
  transform: translate(-50%, -100%);
}

.method-marker.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--magenta));
  border-color: transparent;
  box-shadow:
    0 0 0 12px #f8f8fa,
    0 18px 36px rgba(131, 62, 232, 0.24);
  animation: method-marker-pop 430ms ease-in-out;
}

.method-marker.is-complete {
  color: #fff;
  background: rgba(131, 62, 232, 0.72);
  border-color: rgba(131, 62, 232, 0.2);
  box-shadow:
    0 0 0 12px #f8f8fa,
    0 12px 28px rgba(131, 62, 232, 0.12);
}

@keyframes method-marker-pop {
  0% {
    scale: 0.9;
  }

  55% {
    scale: 1.1;
  }

  100% {
    scale: 1;
  }
}

.method-step-list {
  position: relative;
  min-height: min(720px, calc(100vh - 150px));
}

.method-step {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  min-height: 0;
  padding: 44px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  background: #fff;
  border: 1px solid #e6e7ed;
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(31, 33, 48, 0.045);
  transform: translate3d(0, 24px, 0) scale(0.99);
  transition:
    opacity 420ms ease-in-out,
    transform 420ms ease-in-out,
    box-shadow 420ms ease-in-out,
    border-color 420ms ease-in-out;
}

.method-step::after {
  content: "";
  position: absolute;
  inset: auto -20% -45% 40%;
  height: 160px;
  background: radial-gradient(circle, rgba(131, 62, 232, 0.13), transparent 65%);
  opacity: 0;
  transition: opacity 420ms ease-in-out;
}

.method-step.is-complete {
  opacity: 0;
  transform: translate3d(0, -20px, 0) scale(0.99);
}

.method-step.is-active {
  opacity: 1;
  pointer-events: auto;
  border-color: rgba(131, 62, 232, 0.28);
  box-shadow: 0 28px 58px rgba(31, 33, 48, 0.11);
  transform: translate3d(0, 0, 0) scale(1);
}

.method-step.is-active::after {
  opacity: 1;
}

.method-step-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #858897;
  background: #f4f5f8;
  border: 1px solid #e7e8ee;
  border-radius: 14px;
  transition:
    color 360ms ease-in-out,
    background 360ms ease-in-out,
    border-color 360ms ease-in-out;
}

.method-step-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.method-step.is-active .method-step-icon {
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--magenta));
  border-color: transparent;
}

.method-step > span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 24px;
  color: var(--violet);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.method-step h3 {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  color: #252735;
  font-size: 2.35rem;
  font-weight: 500;
  letter-spacing: -0.035em;
  transition: color 360ms ease-in-out;
}

.method-step:not(.is-active) h3 {
  color: #676a78;
}

.method-step ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  color: #767988;
  font-size: 1.22rem;
  line-height: 1.45;
  list-style: none;
}

.method-step li {
  position: relative;
  padding-left: 24px;
  opacity: 0.62;
  transform: translate3d(0, 10px, 0);
  transition:
    opacity 360ms ease-in-out,
    transform 360ms ease-in-out;
}

.method-step li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--violet);
  border-radius: 50%;
}

.method-step.is-active li {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.method-step.is-active li:nth-child(2) {
  transition-delay: 70ms;
}

.method-step.is-active li:nth-child(3) {
  transition-delay: 140ms;
}

/* The timeline keeps one compact card while its content changes on scroll. */
.method-scroll-timeline {
  grid-template-columns: 76px minmax(0, 620px);
  gap: 26px;
  width: min(100%, 760px);
  margin: 0 auto;
}

.method-rail-column,
.method-step-list {
  height: 380px;
  min-height: 380px;
}

.method-step {
  height: 380px;
  min-height: 380px;
  padding: 30px;
  border: 1px solid #e8e8ee;
  border-radius: 10px;
  box-shadow: 0 18px 34px rgba(31, 33, 48, 0.055);
}

.method-step-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.method-step-icon svg {
  width: 25px;
  height: 25px;
}

.method-step > span {
  margin-top: 16px;
  font-size: 0.78rem;
}

.method-step h3 {
  margin-top: 8px;
  font-size: 1.75rem;
}

.method-step ul {
  gap: 9px;
  margin-top: 16px;
  font-size: 1.02rem;
  line-height: 1.38;
}

.method-step li {
  padding-left: 20px;
}

.method-step li::before {
  width: 7px;
  height: 7px;
}

.legal-document-page {
  background: #fbfbfc;
}

.legal-header {
  position: relative;
  top: auto;
  margin-top: 28px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(31, 33, 48, 0.06);
  backdrop-filter: blur(16px);
}

.legal-header .header-cta {
  display: inline-flex;
}

.legal-main {
  width: min(var(--site-width), calc(100% - var(--site-gutter)));
  margin: 0 auto;
  padding: 76px 0 110px;
}

.legal-shell {
  max-width: 980px;
  margin: 0 auto;
}

.legal-intro {
  margin-bottom: 34px;
  text-align: center;
}

.legal-intro h1 {
  margin-top: 24px;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1;
}

.legal-intro p {
  max-width: 620px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.legal-toc {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 56px;
}

.legal-toc a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 18px;
  color: #333644;
  background: #fff;
  border: 1px solid #e1e3ea;
  border-radius: 999px;
  font-weight: 500;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.legal-toc a:hover {
  color: var(--violet);
  border-color: rgba(131, 62, 232, 0.35);
  transform: translateY(-1px);
}

.legal-section {
  padding: 42px 48px;
  background: #fff;
  border: 1px solid #e6e7ed;
  border-radius: 12px;
  box-shadow: 0 18px 34px rgba(31, 33, 48, 0.05);
}

.legal-section + .legal-section {
  margin-top: 32px;
}

.legal-section > h2 {
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.05;
}

.legal-updated {
  margin: 12px 0 34px;
  color: var(--muted);
  font-size: 0.94rem;
}

.legal-article + .legal-article {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #ececf1;
}

.legal-article h3 {
  margin-bottom: 12px;
  color: #252735;
  font-size: 1.4rem;
}

.legal-article p,
.legal-article address,
.legal-article li {
  color: #636675;
  font-size: 1rem;
  line-height: 1.7;
}

.legal-article p,
.legal-article address {
  margin: 0 0 12px;
}

.legal-article address {
  font-style: normal;
  white-space: pre-line;
}

.legal-article ul {
  margin: 8px 0 14px;
  padding-left: 22px;
}

.legal-article li + li {
  margin-top: 4px;
}

.legal-article strong {
  color: #303241;
  font-weight: 500;
}

@media (max-width: 980px) {
  .method-scroll-timeline {
    grid-template-columns: 56px minmax(0, 620px);
    width: min(100%, 700px);
    gap: 20px;
  }

  .method-rail-column,
  .method-step-list,
  .method-step {
    height: 380px;
    min-height: 380px;
  }

  .legal-main {
    padding-top: 58px;
  }
}

@media (max-width: 640px) {
  .method-scroll-timeline {
    grid-template-columns: 34px minmax(0, 1fr);
    width: 100%;
    gap: 14px;
  }

  .method-rail-column,
  .method-step-list,
  .method-step {
    height: 470px;
    min-height: 470px;
  }

  .method-step {
    padding: 22px;
  }

  .method-step h3 {
    font-size: 1.52rem;
  }

  .method-step ul {
    gap: 8px;
    margin-top: 14px;
    font-size: 0.92rem;
  }

  .legal-header {
    width: calc(100% - 28px);
    margin-top: 18px;
  }

  .legal-header .header-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .legal-main {
    width: calc(100% - 28px);
    padding: 50px 0 70px;
  }

  .legal-section {
    padding: 28px 22px;
  }

  .legal-article h3 {
    font-size: 1.18rem;
  }

  .legal-article p,
  .legal-article address,
  .legal-article li {
    font-size: 0.94rem;
  }
}

.method-cta {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-top: 42px;
  text-align: center;
}

.method-cta p {
  margin: 0;
  color: #252735;
  font-size: 1.18rem;
}

.testimonials-section {
  padding: 126px 0;
  background: #fafafa;
}

.testimonials-container {
  width: min(1360px, calc(100% - var(--site-gutter)));
  margin: 0 auto;
}

.testimonials-heading {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.testimonials-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  color: #303241;
  background: #fff;
  border: 1px solid #ececf0;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(28, 30, 42, 0.04);
  font-size: 1.25rem;
  font-weight: 650;
}

.testimonials-badge svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: #252735;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.testimonials-heading h2 {
  max-width: 1100px;
  margin: 22px auto 0;
  color: #202132;
  font-size: clamp(2.55rem, 3.53vw, 3.53rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.testimonials-heading p {
  max-width: 700px;
  margin: 24px auto 0;
  color: #7f8290;
  font-size: 1.34rem;
  line-height: 1.48;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.testimonial-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: #fff;
  border: 1px solid #ebecef;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(31, 33, 48, 0.035);
  transition:
    transform 250ms ease,
    box-shadow 250ms ease,
    border-color 250ms ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: #e2e3e9;
  box-shadow: 0 24px 46px rgba(31, 33, 48, 0.075);
}

.testimonial-stars {
  color: #f5a400;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

.testimonial-card p {
  margin: 26px 0 0;
  color: #272938;
  font-size: 1.38rem;
  line-height: 1.48;
  letter-spacing: -0.025em;
}

.testimonial-card p strong {
  font-weight: 700;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 30px;
}

.testimonial-avatar {
  display: grid;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--magenta));
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 700;
}

.testimonial-avatar-green {
  background: linear-gradient(135deg, #1ca86f, #85dcb2);
}

.testimonial-avatar-blue {
  background: linear-gradient(135deg, #2765ff, #8fb0ff);
}

.testimonial-avatar-pink {
  background: linear-gradient(135deg, #ee19d4, #ff9bea);
}

.testimonial-avatar-yellow {
  color: #2b2d3b;
  background: linear-gradient(135deg, #ffe39a, #f6a900);
}

.testimonial-avatar-grey {
  background: linear-gradient(135deg, #5f6270, #a4a8b5);
}

.testimonial-author div {
  display: grid;
  gap: 3px;
}

.testimonial-author strong {
  color: #202132;
  font-size: 1.03rem;
  font-weight: 700;
  line-height: 1.2;
}

.testimonial-author span:not(.testimonial-avatar) {
  color: #858897;
  font-size: 0.98rem;
  line-height: 1.25;
}

.testimonials-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 170px;
  margin-top: 32px;
  padding: 40px;
  background: #fff;
  border: 1px solid #ebecef;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(31, 33, 48, 0.035);
}

.testimonials-stats div {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 90px;
  padding: 0 24px;
  text-align: center;
}

.testimonials-stats div + div {
  border-left: 1px solid #e6e7ed;
}

.testimonials-stats strong {
  color: #202132;
  font-size: clamp(3.4rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.testimonials-stats span {
  display: block;
  margin-top: 14px;
  color: #7f8290;
  font-size: 1.25rem;
  line-height: 1.25;
}

.testimonials-cta {
  display: grid;
  justify-items: center;
  gap: 28px;
  margin-top: 60px;
  text-align: center;
}

.testimonials-cta p {
  margin: 0;
  color: #575a68;
  font-size: 1.38rem;
  line-height: 1.35;
}

.testimonials-cta strong {
  color: #202132;
  font-weight: 700;
}

.testimonials-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 318px;
  min-height: 64px;
  padding: 0 32px;
  color: #fff;
  background: #1f2224;
  border: 1px solid #303438;
  border-radius: 10px;
  box-shadow: 0 14px 24px rgba(21, 23, 26, 0.12);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  transition:
    transform 250ms ease,
    box-shadow 250ms ease,
    background 250ms ease;
}

.testimonials-button:hover {
  transform: translateY(-3px);
  background: #151719;
  box-shadow: 0 22px 36px rgba(21, 23, 26, 0.16);
}

.offers-section {
  background: #fff;
}

.currency-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 28px auto 0;
  padding: 6px;
  background: #f2f3f6;
  border: 1px solid #cfd2da;
  border-radius: 999px;
}

.currency-switch button {
  min-height: 40px;
  padding: 0 16px;
  color: #5f6270;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 500;
  transition:
    color 200ms ease,
    background 200ms ease,
    box-shadow 200ms ease;
}

.currency-switch button:hover,
.currency-switch button.is-active {
  color: #202132;
  background: #fff;
  box-shadow: 0 8px 18px rgba(31, 33, 48, 0.08);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 560px;
  padding: 24px;
  border-color: #9498a4;
  box-shadow: 0 14px 30px rgba(31, 33, 48, 0.055);
}

.pricing-card h3 {
  font-size: 1.55rem;
}

.price {
  margin: 20px 0 0;
  color: var(--ink);
  font-size: 2.7rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.price .price-amount,
.price .price-currency {
  display: inline;
  margin-top: 0;
  color: var(--ink);
  font-size: inherit;
  font-weight: 400;
}

.price .price-currency {
  margin-left: 4px;
}

.price > span:not(.price-amount):not(.price-currency) {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 400;
}

.pricing-card .btn {
  width: 100%;
  margin-top: 22px;
}

.pricing-card:not(.pricing-popular) .btn-secondary {
  color: #fff;
  background: #1f2224;
  border-color: #303438;
  box-shadow: 0 14px 24px rgba(21, 23, 26, 0.14);
}

.pricing-list-title {
  margin: 26px 0 0 !important;
  color: var(--ink) !important;
  font-weight: 700;
}

.pricing-popular .pricing-list-title {
  color: var(--ink) !important;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 24px;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 50%;
}

.pricing-popular {
  color: var(--ink);
  background: #f2f3f6;
  border-color: #858996;
  box-shadow: 0 22px 52px rgba(31, 33, 48, 0.08);
}

.pricing-popular p,
.pricing-popular li,
.pricing-popular .price > span:not(.price-amount):not(.price-currency) {
  color: var(--muted);
}

.pricing-popular .price {
  color: var(--ink);
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--magenta));
}

.client-grid {
  align-items: center;
}

.client-grid h2 {
  max-width: 720px;
  color: #202132;
  font-size: clamp(2.55rem, 3.53vw, 3.53rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.dashboard {
  padding: 20px;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.dashboard-header div {
  display: grid;
  gap: 3px;
}

.dashboard-header span,
.dashboard-header small,
.dashboard-kpis span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 760;
}

.dashboard-header strong {
  font-size: 1.45rem;
}

.dashboard-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.dashboard-kpis div {
  padding: 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 7px;
}

.dashboard-kpis strong {
  display: block;
  margin-top: 6px;
  font-size: 1.8rem;
  line-height: 1;
}

.dashboard-chart {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 180px;
  margin-top: 18px;
  padding: 16px;
  background: var(--ink);
  border-radius: 7px;
}

.dashboard-chart span {
  flex: 1;
  min-width: 18px;
  background: linear-gradient(180deg, var(--magenta), var(--violet));
  border-radius: 7px 7px 0 0;
}

.activity-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.activity-list div {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.activity-list span {
  width: 10px;
  height: 10px;
  margin-top: 7px;
  background: var(--green);
  border-radius: 50%;
}

.activity-list p {
  margin: 0;
}

.audit-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(131, 62, 232, 0.08), transparent 30%),
    #fbfbfc;
}

.audit-container {
  display: grid;
  justify-items: center;
  text-align: center;
}

.audit-container h2 {
  max-width: 1040px;
  margin: 22px auto 0;
  color: #202132;
  font-size: clamp(2.55rem, 3.53vw, 3.53rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.audit-lead {
  margin: 30px 0 0;
  color: #828596;
  font-size: 1.32rem;
  line-height: 1.42;
}

.audit-checklist {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  color: #343746;
  font-size: 1.16rem;
  line-height: 1.35;
  list-style: none;
  text-align: left;
}

.audit-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.audit-checklist span {
  display: grid;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
}

.audit-open-button {
  margin-top: 42px;
}

.audit-modal[hidden] {
  display: none;
}

.audit-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.audit-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 20, 28, 0.46);
  backdrop-filter: blur(10px);
}

.audit-modal-panel {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  max-height: min(90vh, 820px);
  overflow: auto;
  padding: 32px;
  background: #fff;
  border: 1px solid #e8e9ef;
  border-radius: 18px;
  box-shadow: 0 34px 90px rgba(20, 22, 34, 0.22);
}

.audit-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #292b39;
  cursor: pointer;
  background: #f6f6f8;
  border: 1px solid #e6e7ed;
  border-radius: 50%;
  font-size: 1.35rem;
  line-height: 1;
}

.audit-modal-heading {
  max-width: 470px;
  margin-bottom: 24px;
}

.audit-modal-heading span {
  color: var(--violet);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audit-modal-heading h2 {
  margin-top: 8px;
  color: #202132;
  font-size: 2.1rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.audit-modal-heading p {
  margin: 12px 0 0;
  color: #828596;
  font-size: 1rem;
}

body.modal-open {
  overflow: hidden;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: #fff;
  border-radius: var(--radius);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 7px;
  outline: none;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: rgba(131, 62, 232, 0.65);
  box-shadow: 0 0 0 4px rgba(131, 62, 232, 0.12);
}

.lead-form .form-consent {
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  color: #686b78;
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.38;
}

.lead-form .form-consent input {
  min-height: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--violet);
}

.form-note {
  margin: 0;
  color: var(--muted) !important;
  font-size: 0.85rem !important;
}

.faq-section {
  background: #f8f8f6;
}

.faq-container {
  max-width: 1120px;
}

.faq-heading {
  text-align: center;
}

.faq-heading h2 {
  max-width: 900px;
  margin: 22px auto 0;
  color: #202132;
  font-size: clamp(2.55rem, 3.53vw, 3.53rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.faq-heading p {
  max-width: 700px;
  margin: 24px auto 0;
  color: #828596;
  font-size: 1.2rem;
  line-height: 1.45;
}

.faq-list {
  display: grid;
  gap: 20px;
  margin-top: 56px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid #e7e7ec;
  border-radius: 28px;
}

.faq-item {
  overflow: hidden;
  background: #fff;
  border: 1px solid #ebecf0;
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(31, 33, 48, 0.045);
  transition:
    box-shadow 300ms ease,
    border-color 300ms ease;
}

.faq-item.is-open {
  border-color: #e1e2e8;
  box-shadow: 0 24px 48px rgba(31, 33, 48, 0.075);
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 85px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 30px;
  color: #252735;
  cursor: pointer;
  background: transparent;
  border: 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 500;
}

.faq-icon {
  display: grid;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #252735;
  background: #f4f5f8;
  border: 1px solid #e3e4ea;
  border-radius: 50%;
  font-size: 1.2rem;
  line-height: 1;
  transition:
    transform 300ms ease,
    background 300ms ease;
}

.faq-item.is-open .faq-icon {
  background: #ece9fb;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 300ms ease-in-out,
    opacity 260ms ease-in-out;
}

.faq-answer p {
  margin: 0;
  padding: 0 30px 28px;
  color: #777a89;
  font-size: 1rem;
  line-height: 1.62;
}

.faq-item.is-open .faq-answer {
  max-height: 360px;
  opacity: 1;
}

.site-footer {
  zoom: 0.833333;
  padding: 34px 0;
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
}

.footer-links {
  justify-self: end;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: #353746;
  font-size: 0.95rem;
}

.footer-links p {
  margin: 0;
  color: #3c3f4b;
  font-weight: 300;
}

.footer-links a {
  color: #4f5260;
  font-weight: 400;
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: #171925;
}

.footer-social {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid #e3e4ea;
  border-radius: 50%;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

@media (max-width: 980px) {
  :root {
    --site-gutter: 32px;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    width: min(var(--site-width), calc(100% - var(--site-gutter)));
    margin-top: 18px;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(31, 33, 48, 0.07);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 78px;
    z-index: 30;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .site-nav a:nth-child(5) {
    margin-left: 0;
    padding-left: 14px;
    border-left: 0;
  }

  .hero-grid,
  .split-grid,
  .problem-grid,
  .promise-grid,
  .method-grid,
  .client-grid,
  .final-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 42px;
  }

  .hero {
    padding-top: 22px;
  }

  .hero-shell {
    width: min(var(--site-width), calc(100% - var(--site-gutter)));
    padding: 10px;
  }

  .hero-card {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 48px 34px 0;
  }

  .hero-card.is-diagnostic-open {
    min-height: auto;
  }

  .diagnostic-result {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-card.is-diagnostic-open .hero-copy {
    max-width: 100%;
    transform: translate3d(0, -4px, 0);
  }

  .hero h1 {
    max-width: 740px;
  }

  .hero-media {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: min(100%, 520px);
    margin: 18px auto -118px;
  }

  .hero-card.is-diagnostic-open .hero-media {
    display: none;
  }

  .hero-diagnostic-panel {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    margin: 26px 0 36px;
    order: 3;
    overflow: visible;
  }

  .hero-visual {
    min-height: 480px;
  }

  .search-panel {
    margin: 0 auto;
  }

  .metric-leads {
    left: 16px;
  }

  .trust-grid,
  .audience-grid,
  .case-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .promise-card {
    position: static;
  }

  .pricing-card {
    min-height: auto;
  }

  .pricing-popular {
    order: -1;
  }

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

  .footer-links {
    justify-self: start;
    justify-content: flex-start;
  }

  .logo-marquee {
    padding-top: 42px;
    padding-bottom: 82px;
  }

  .why-section {
    padding: 42px 0 82px;
  }

  .why-heading {
    margin-bottom: 58px;
  }

  .why-heading h2 {
    font-size: clamp(2.25rem, 6vw, 3.1rem);
  }

  .why-card-grid {
    grid-template-columns: 1fr;
  }

  .why-cta-block {
    margin-top: 76px;
  }

  .problem-v2,
  .promise-v2 {
    padding: 82px 0;
  }

  .problem-v2-container,
  .promise-v2-container {
    width: min(var(--site-width), calc(100% - var(--site-gutter)));
  }

  .section-topper {
    margin-bottom: 62px;
  }

  .section-topper h2 {
    font-size: clamp(2.25rem, 6vw, 3.1rem);
  }

  .section-topper p {
    font-size: 1.28rem;
  }

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

  .promise-v2 .section-topper {
    margin-bottom: 72px;
  }

  .promise-feature {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .promise-copy {
    max-width: 760px;
  }

  .promise-visual {
    min-height: 560px;
  }
}

@media (max-width: 640px) {
  :root {
    --site-gutter: 28px;
  }

  .container {
    width: min(var(--site-width), calc(100% - var(--site-gutter)));
  }

  .section-pad {
    padding: 72px 0;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-shell {
    width: min(var(--site-width), calc(100% - var(--site-gutter)));
    padding: 8px;
    border-radius: 14px;
  }

  .hero-card {
    padding: 34px 22px 0;
    border-radius: 9px;
  }

  .hero-card.is-diagnostic-open {
    padding-bottom: 20px;
  }

  .partner-badge {
    width: 168px;
    margin-bottom: 18px;
  }

  .google-mark {
    width: 27px;
    height: 27px;
    font-size: 1rem;
  }

  .hero h1 {
    font-size: 2.68rem;
    line-height: 1.02;
    letter-spacing: -0.04em;
  }

  h1 {
    font-size: 2.68rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .hero-actions,
  .client-actions {
    flex-direction: column;
  }

  .hero-lead {
    font-size: 1.05rem;
    line-height: 1.46;
  }

  .hero-benefits {
    font-size: 0.98rem;
  }

  .hero-cta {
    width: 100%;
    padding: 0 16px;
    text-align: center;
  }

  .hero-proof {
    align-items: flex-start;
    gap: 16px;
  }

  .google-reviews {
    width: 104px;
  }

  .btn {
    width: 100%;
    min-width: 0;
  }

  .hero-media {
    width: min(116%, 440px);
    margin: 8px -18px -86px auto;
  }

  .hero-diagnostic-panel {
    padding: 22px 18px;
    margin-top: 20px;
    border-radius: 14px;
  }

  .diagnostic-step h2,
  .diagnostic-result h2,
  .diagnostic-loading h2 {
    font-size: 1.62rem;
  }

  .diagnostic-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .diagnostic-option {
    min-height: 44px;
    padding: 10px 12px;
    font-size: 0.92rem;
  }

  .diagnostic-actions,
  .diagnostic-result-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .diagnostic-visual-grid {
    grid-template-columns: 1fr;
  }

  .diagnostic-reasons {
    grid-template-columns: 1fr;
  }

  .diagnostic-next,
  .diagnostic-back,
  .diagnostic-result-button {
    width: 100%;
  }

  .hero-visual {
    min-height: auto;
    padding-bottom: 104px;
  }

  .search-panel {
    transform: none;
  }

  .metric-card {
    min-width: 132px;
    padding: 14px;
  }

  .metric-leads {
    left: 8px;
    bottom: 18px;
  }

  .metric-roi {
    right: 8px;
    bottom: 0;
  }

  .trust-grid,
  .pain-grid,
  .outcome-grid,
  .audience-grid,
  .case-grid,
  .pricing-grid,
  .dashboard-kpis {
    grid-template-columns: 1fr;
  }

  .trust-grid div {
    padding: 8px 0;
  }

  .logo-marquee {
    padding: 38px 0 68px;
  }

  .marquee-track {
    gap: 46px;
    animation-duration: 26s;
  }

  .marquee-track span {
    font-size: 1.2rem;
  }

  .why-section {
    padding: 34px 0 68px;
  }

  .why-container {
    width: min(var(--site-width), calc(100% - var(--site-gutter)));
  }

  .why-heading {
    margin-bottom: 42px;
  }

  .why-badge {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.94rem;
  }

  .why-heading h2 {
    margin-top: 18px;
    font-size: 2.05rem;
    line-height: 1.02;
  }

  .why-heading p {
    margin-top: 20px;
    font-size: 1.02rem;
  }

  .why-card-frame {
    padding: 10px;
    border-radius: 14px;
  }

  .why-card-grid {
    gap: 10px;
  }

  .why-card {
    min-height: auto;
    padding: 28px 24px;
  }

  .why-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 24px;
  }

  .why-card h3 {
    font-size: 1.34rem;
  }

  .why-card p {
    font-size: 1rem;
  }

  .why-cta-block {
    gap: 20px;
    margin-top: 58px;
  }

  .why-cta-block p {
    font-size: 1.45rem;
  }

  .dark-cta {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    font-size: 1.1rem;
  }

  .problem-v2,
  .promise-v2 {
    padding: 68px 0;
  }

  .problem-v2-container,
  .promise-v2-container {
    width: min(var(--site-width), calc(100% - var(--site-gutter)));
  }

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

  .section-pill {
    min-height: 42px;
    padding: 0 16px;
    font-size: 1rem;
  }

  .section-topper h2 {
    margin-top: 20px;
    font-size: 2.15rem;
    line-height: 1.02;
  }

  .section-topper p {
    margin-top: 22px;
    font-size: 1.06rem;
  }

  .problem-card-frame {
    padding: 10px;
  }

  .problem-card-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .problem-card {
    min-height: auto;
    padding: 30px 24px;
  }

  .problem-card > svg {
    width: 34px;
    height: 34px;
    margin-bottom: 26px;
  }

  .problem-card h3 {
    font-size: 1.42rem;
  }

  .problem-card p {
    font-size: 1rem;
  }

  .problem-cta {
    margin-top: 48px;
  }

  .problem-cta .dark-cta {
    min-width: 0;
    font-size: 1.06rem;
  }

  .problem-cta p {
    font-size: 1.08rem;
  }

  .promise-v2 .section-topper {
    margin-bottom: 48px;
  }

  .promise-feature {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .promise-mini-pill {
    margin-bottom: 24px;
  }

  .promise-copy h3 {
    font-size: 2.05rem;
  }

  .promise-copy p {
    margin-top: 22px;
    font-size: 1.08rem;
  }

  .promise-visual {
    min-height: 410px;
  }

  .promise-visual::before,
  .promise-visual::after {
    display: none;
  }

  .result-label {
    min-width: 230px;
    padding: 12px 14px;
    gap: 12px;
  }

  .result-label strong {
    font-size: 1rem;
  }

  .result-label small {
    font-size: 0.86rem;
  }

  .mini-google,
  .maps-pin {
    width: 38px;
    height: 38px;
  }

  .search-label {
    top: 28px;
    right: 20px;
  }

  .maps-label {
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
  }

  .laptop {
    width: 86%;
    margin-top: 20px;
  }

  .laptop-screen {
    padding: 14px;
  }

  .search-ui {
    padding: 12px;
  }

  .feature-item {
    grid-template-columns: 1fr;
  }

  .audience-card,
  .outcome-grid article {
    min-height: auto;
  }

  .section-heading {
    text-align: left;
  }

  .section-heading h2,
  .section-heading p {
    margin-left: 0;
  }

  .section-heading h2 {
    font-size: 2.15rem;
    line-height: 1.02;
  }

  .dashboard-chart {
    height: 140px;
    gap: 8px;
  }
}

@media (max-width: 980px) {
  .site-header.is-scrolled {
    padding: 9px 12px;
    transform: none;
  }

  .why-card-frame {
    max-width: 640px;
  }

  .audience-accordion {
    grid-template-columns: minmax(280px, 0.46fr) minmax(0, 0.54fr);
    gap: 20px;
  }

  .audience-option {
    min-height: 132px;
    padding: 20px;
  }

  .audience-preview-shell {
    min-height: 630px;
  }

  .audience-preview {
    grid-template-columns: 1fr;
    align-content: center;
    padding: 30px;
  }

  .audience-demo {
    min-height: 330px;
  }

  .method-scroll-timeline {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 28px;
  }

  .method-scroll-stage {
    height: 315vh;
  }

  .method-sticky {
    top: 84px;
    min-height: calc(100vh - 104px);
  }

  .method-rail-column {
    height: min(680px, calc(100vh - 122px));
    min-height: 580px;
  }

  .method-step-list {
    min-height: min(680px, calc(100vh - 122px));
  }

  .method-step {
    padding: 30px;
  }

}

@media (max-width: 640px) {
  main > section:not(.hero),
  .site-footer {
    zoom: 1;
  }

  .site-header {
    top: 10px;
  }

  .site-header.is-scrolled {
    padding: 10px 12px;
    transform: none;
  }

  .why-card-frame {
    max-width: 520px;
  }

  .why-card {
    aspect-ratio: auto;
    min-height: 238px;
  }

  .audience-heading {
    margin-bottom: 34px;
  }

  .audience-accordion {
    grid-template-columns: 1fr;
  }

  .audience-list {
    gap: 12px;
  }

  .audience-option {
    min-height: 0;
    padding: 20px;
  }

  .audience-option strong {
    font-size: 1.16rem;
  }

  .audience-preview-shell {
    display: none;
  }

  .audience-mobile-panel {
    display: grid;
    gap: 8px;
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    opacity: 0;
    transition:
      max-height 320ms ease-in-out,
      margin 320ms ease-in-out,
      padding 320ms ease-in-out,
      opacity 320ms ease-in-out;
  }

  .audience-option.is-active .audience-mobile-panel {
    max-height: 190px;
    margin-top: 10px;
    padding-top: 12px;
    border-top: 1px solid rgba(131, 62, 232, 0.16);
    opacity: 1;
  }

  .audience-mobile-stat {
    color: #202132;
    font-weight: 500;
  }

  .method-heading {
    margin-bottom: 42px;
  }

  .method-scroll-timeline {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 18px;
  }

  .method-scroll-stage {
    height: 305vh;
  }

  .method-sticky {
    top: 76px;
    min-height: calc(100vh - 88px);
  }

  .method-rail-column {
    height: min(650px, calc(100vh - 90px));
    min-height: 590px;
  }

  .method-step-list {
    min-height: min(650px, calc(100vh - 90px));
  }

  .method-step,
  .method-step.is-active {
    min-height: 0;
    padding: 24px 22px;
    transform: translate3d(0, 0, 0) scale(1);
  }

  .method-step-icon {
    width: 50px;
    height: 50px;
  }

  .method-step h3 {
    font-size: 1.7rem;
  }

  .method-step ul {
    margin-top: 18px;
    font-size: 1rem;
  }

  .method-cta {
    margin-top: 36px;
  }
}

@media (max-width: 980px) {
  .promise-scroll-stage {
    height: 420vh;
  }

  .promise-sticky {
    top: 84px;
    min-height: calc(100vh - 104px);
  }

  .promise-step-shell {
    min-height: min(760px, calc(100vh - 120px));
  }

  .promise-step {
    grid-template-columns: 1fr;
    gap: 30px;
    align-content: center;
  }

  .promise-step-reversed .promise-copy,
  .promise-step-reversed .promise-placeholder {
    order: initial;
  }

  .promise-placeholder {
    min-height: 360px;
  }

  .testimonials-section {
    padding: 96px 0;
  }

  .testimonials-heading h2 {
    font-size: clamp(2.25rem, 6vw, 3.1rem);
  }

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

  .testimonial-card {
    min-height: 330px;
  }

  .testimonials-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 28px;
  }

  .testimonials-stats div {
    min-height: 150px;
  }

  .testimonials-stats div + div {
    border-left: 0;
  }

  .testimonials-stats div:nth-child(even) {
    border-left: 1px solid #e6e7ed;
  }

  .testimonials-stats div:nth-child(n + 3) {
    border-top: 1px solid #e6e7ed;
  }
}

@media (max-width: 640px) {
  .promise-scroll-stage {
    height: 390vh;
    margin-top: 8px;
  }

  .promise-sticky {
    top: 76px;
    min-height: calc(100vh - 88px);
  }

  .promise-step-shell {
    min-height: calc(100vh - 104px);
  }

  .promise-step {
    inset: 28px 0 0;
    gap: 22px;
  }

  .promise-step .promise-copy h3 {
    font-size: 2.05rem;
  }

  .promise-step .promise-copy p {
    margin-top: 22px;
    font-size: 1.08rem;
  }

  .promise-placeholder {
    min-height: 260px;
  }

  .promise-final-cta {
    margin-top: 32px;
  }

  .promise-final-cta .dark-cta {
    min-width: 0;
    width: 100%;
  }

  .promise-final-cta p {
    font-size: 1.08rem;
  }

  .testimonials-section {
    padding: 76px 0;
  }

  .testimonials-heading h2 {
    font-size: 2.15rem;
    line-height: 1.02;
  }

  .testimonials-heading p {
    font-size: 1.06rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 42px;
  }

  .testimonial-card {
    min-height: auto;
    padding: 26px;
  }

  .testimonial-card p {
    font-size: 1.14rem;
  }

  .testimonials-stats {
    grid-template-columns: 1fr;
    margin-top: 18px;
    padding: 0 24px;
  }

  .testimonials-stats div {
    min-height: 142px;
    padding: 24px 0;
  }

  .testimonials-stats div,
  .testimonials-stats div:nth-child(even),
  .testimonials-stats div:nth-child(n + 3) {
    border-left: 0;
    border-top: 0;
  }

  .testimonials-stats div + div {
    border-top: 1px solid #e6e7ed;
  }

  .testimonials-stats strong {
    font-size: 3.1rem;
  }

  .testimonials-stats span {
    font-size: 1.05rem;
  }

  .testimonials-button {
    min-width: 0;
    width: 100%;
  }

  .currency-switch {
    display: grid;
    width: 100%;
    max-width: 360px;
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .currency-switch button {
    width: 100%;
  }

  .audit-container h2,
  .faq-heading h2,
  .client-grid h2 {
    font-size: 2.15rem;
    line-height: 1.02;
  }

  .audit-lead,
  .faq-heading p {
    font-size: 1.06rem;
  }

  .audit-checklist {
    font-size: 1rem;
  }

  .audit-modal {
    padding: 14px;
  }

  .audit-modal-panel {
    padding: 26px 20px;
    border-radius: 14px;
  }

  .audit-modal-heading h2 {
    font-size: 1.78rem;
  }

  .faq-list {
    gap: 12px;
    margin-top: 38px;
    padding: 12px;
    border-radius: 18px;
  }

  .faq-question {
    min-height: 74px;
    padding: 0 18px;
    font-size: 1rem;
  }

  .faq-answer p {
    padding: 0 18px 22px;
    font-size: 0.94rem;
  }

  .footer-links {
    gap: 12px;
  }

  .testimonials-cta {
    gap: 22px;
    margin-top: 44px;
  }

  .testimonials-cta p {
    font-size: 1.08rem;
  }

  .testimonials-button {
    width: 100%;
    min-width: 0;
  }
}

/* Keep the compact timeline and legal page stable after responsive rules. */
.method-scroll-timeline {
  grid-template-columns: 64px minmax(0, 540px);
  gap: 20px;
  width: min(100%, 624px);
  margin: 0 auto;
}

.method-rail-column,
.method-step-list,
.method-step {
  height: 380px;
  min-height: 380px;
}

.method-step {
  padding: 30px;
  border: 1px solid #e8e8ee;
  border-radius: 10px;
  box-shadow: 0 18px 34px rgba(31, 33, 48, 0.055);
}

.method-step-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.method-step-icon svg {
  width: 25px;
  height: 25px;
}

.method-step > span {
  margin-top: 16px;
  font-size: 0.78rem;
}

.method-step h3 {
  margin-top: 8px;
  font-size: 1.75rem;
}

.method-step ul {
  gap: 9px;
  margin-top: 16px;
  font-size: 1.02rem;
  line-height: 1.38;
}

.method-step li {
  padding-left: 20px;
}

.method-step li::before {
  width: 7px;
  height: 7px;
}

@media (max-width: 980px) {
  .method-scroll-timeline {
    grid-template-columns: 54px minmax(0, 520px);
    width: min(100%, 594px);
    gap: 18px;
  }

  .method-rail-column,
  .method-step-list,
  .method-step {
    height: 380px;
    min-height: 380px;
  }
}

@media (max-width: 640px) {
  .method-scroll-timeline {
    grid-template-columns: 34px minmax(0, 1fr);
    width: 100%;
    gap: 14px;
  }

  .method-rail-column,
  .method-step-list,
  .method-step {
    height: 470px;
    min-height: 470px;
  }

  .method-step {
    padding: 22px;
  }

  .method-step h3 {
    font-size: 1.52rem;
  }

  .method-step ul {
    gap: 8px;
    margin-top: 14px;
    font-size: 0.92rem;
  }
}

.promise-placeholder {
  min-height: 0;
  height: min(560px, calc(100vh - 180px));
}

.promise-video {
  object-fit: contain;
  padding: 16px;
}

.legal-document-page .legal-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  margin-top: 28px;
}

.legal-document-page .legal-section {
  scroll-margin-top: 112px;
}

@media (max-width: 980px) {
  .promise-placeholder {
    height: 360px;
    min-height: 0;
  }

  .legal-document-page .legal-header .header-cta {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  .promise-placeholder {
    height: 280px;
    min-height: 0;
  }

  .promise-video {
    padding: 10px;
  }

  .legal-document-page .legal-header {
    width: calc(100% - 28px);
    margin-top: 18px;
  }

  .legal-document-page .legal-header .header-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.82rem;
  }
}

.partners-page {
  background: #fbfbfc;
}

.partner-header {
  position: sticky;
  top: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(230, 231, 237, 0.9);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(31, 33, 48, 0.06);
  backdrop-filter: blur(16px);
}

.partners-main {
  padding: 42px 0 116px;
}

.partners-content {
  width: min(var(--site-width), calc(100% - var(--site-gutter)));
  margin: 0 auto;
}

.partners-content > section {
  scroll-margin-top: 116px;
}

.partner-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1.02fr);
  gap: 72px;
  align-items: center;
  min-height: 650px;
  padding: 72px;
  background: #fff;
  border: 1px solid #e7e8ee;
  border-radius: 14px;
  box-shadow: 0 22px 56px rgba(31, 33, 48, 0.07);
}

.partner-hero-copy {
  max-width: 650px;
}

.partner-hero h1 {
  margin-top: 26px;
  font-size: clamp(3.1rem, 5.6vw, 6.2rem);
  line-height: 0.98;
}

.partner-hero-copy > p {
  max-width: 600px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.5;
}

.partner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.partner-network {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: #f6f7fa;
  border: 1px solid #e5e7ee;
  border-radius: 18px;
}

.partner-network::before,
.partner-network::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(131, 62, 232, 0.16);
  border-radius: 50%;
}

.partner-network::before {
  inset: 13% 13%;
}

.partner-network::after {
  inset: 25% 25%;
}

.partner-network-core,
.partner-network-node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 500;
  text-align: center;
}

.partner-network-core {
  top: 50%;
  left: 50%;
  width: 146px;
  height: 146px;
  color: #fff;
  background: #202132;
  box-shadow: 0 22px 50px rgba(31, 33, 48, 0.18);
  transform: translate(-50%, -50%);
}

.partner-network-node {
  width: 78px;
  height: 78px;
  color: #343746;
  background: #fff;
  border: 1px solid #dfe1e9;
  box-shadow: 0 14px 30px rgba(31, 33, 48, 0.08);
  font-size: 0.84rem;
}

.partner-network-node-seo { top: 12%; left: 16%; }
.partner-network-node-sales { top: 12%; right: 14%; }
.partner-network-node-web { bottom: 12%; left: 15%; }
.partner-network-node-ai { bottom: 12%; right: 14%; }
.partner-network-node-ads { top: 44%; right: 4%; }

.partner-network-line {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 42%;
  height: 1px;
  background: #cfd2dc;
  transform-origin: left center;
}

.partner-network-line-one { transform: rotate(-145deg); }
.partner-network-line-two { transform: rotate(-35deg); }
.partner-network-line-three { transform: rotate(145deg); }
.partner-network-line-four { transform: rotate(35deg); }

.partner-section {
  padding: 132px 0 0;
}

.partner-section-heading {
  max-width: 780px;
  margin: 0 auto 56px;
  text-align: center;
}

.partner-section-heading h2 {
  margin-top: 24px;
  font-size: clamp(2.5rem, 4.4vw, 4.6rem);
  line-height: 1;
}

.partner-section-heading p {
  max-width: 680px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.partner-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.partner-feature-card,
.partner-type-card,
.partner-value-grid article {
  background: #fff;
  border: 1px solid #e4e6ed;
  border-radius: 10px;
  box-shadow: 0 16px 34px rgba(31, 33, 48, 0.045);
}

.partner-feature-card {
  min-height: 280px;
  padding: 28px;
}

.partner-card-number,
.partner-type-kicker {
  color: var(--violet);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.partner-feature-card h3,
.partner-type-card h3,
.partner-value-grid h3 {
  margin-top: 30px;
  color: #252735;
  font-size: 1.45rem;
  line-height: 1.15;
}

.partner-feature-card p,
.partner-type-card p,
.partner-value-grid p {
  margin: 14px 0 0;
  color: #777a89;
  font-size: 1rem;
  line-height: 1.55;
}

.partner-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.partner-type-card {
  min-height: 330px;
  padding: 34px;
}

.partner-type-card.is-featured {
  color: #fff;
  background: #202132;
  border-color: #202132;
}

.partner-type-card.is-featured h3,
.partner-type-card.is-featured p,
.partner-type-card.is-featured h4,
.partner-type-card.is-featured li {
  color: #fff;
}

.partner-type-card.is-featured p,
.partner-type-card.is-featured li {
  color: rgba(255, 255, 255, 0.74);
}

.partner-type-card h4 {
  margin: 24px 0 8px;
  color: #424554;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.partner-type-card ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 20px;
  color: #777a89;
  font-size: 0.95rem;
}

.partner-type-card .dark-cta {
  min-width: 150px;
  margin-top: 24px;
}

.partner-text-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--violet);
  font-weight: 500;
}

.partner-process-section {
  max-width: 820px;
  margin: 0 auto;
}

.partner-process-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.partner-process-list li {
  position: relative;
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 24px;
  padding: 0 0 34px;
}

.partner-process-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 54px;
  bottom: 0;
  left: 32px;
  width: 1px;
  background: #dfe1e8;
}

.partner-process-list li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  color: #fff;
  background: #202132;
  border-radius: 50%;
  font-weight: 500;
}

.partner-process-list h3 {
  margin-top: 5px;
  font-size: 1.35rem;
}

.partner-process-list p {
  margin: 8px 0 0;
  color: var(--muted);
}

.partner-value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.partner-value-grid article {
  min-height: 190px;
  padding: 26px;
}

.partner-value-grid h3 {
  margin-top: 0;
  font-size: 1.2rem;
}

.partner-faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.partner-faq-list details {
  padding: 0 24px;
  background: #fff;
  border: 1px solid #e4e6ed;
  border-radius: 10px;
  box-shadow: 0 12px 26px rgba(31, 33, 48, 0.04);
}

.partner-faq-list summary {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  color: #252735;
  font-size: 1.05rem;
  font-weight: 500;
  list-style: none;
}

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

.partner-faq-list summary::after {
  content: "+";
  color: var(--violet);
  font-size: 1.35rem;
  font-weight: 400;
}

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

.partner-faq-list details p {
  max-width: 780px;
  margin: 0;
  padding: 0 0 24px;
  color: var(--muted);
  line-height: 1.6;
}

.partner-final-cta {
  display: grid;
  justify-items: center;
  margin-top: 132px;
  padding: 80px 32px;
  text-align: center;
  background: #202132;
  border-radius: 14px;
}

.partner-final-cta .section-pill {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.partner-final-cta h2 {
  margin-top: 24px;
  color: #fff;
  font-size: clamp(2.5rem, 4.6vw, 4.8rem);
}

.partner-final-cta p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.15rem;
}

.partner-final-cta .btn {
  margin-top: 30px;
}

@media (max-width: 980px) {
  .partner-hero {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 48px;
  }

  .partner-network {
    min-height: 430px;
  }

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

@media (max-width: 640px) {
  .partner-header {
    width: calc(100% - 28px);
    margin-top: 18px;
  }

  .partners-main {
    padding-top: 24px;
  }

  .partners-content {
    width: calc(100% - 28px);
  }

  .partner-hero {
    min-height: 0;
    padding: 30px 22px;
    border-radius: 10px;
  }

  .partner-hero h1 {
    font-size: 2.8rem;
  }

  .partner-hero-copy > p {
    font-size: 1rem;
  }

  .partner-actions,
  .partner-actions .btn {
    width: 100%;
  }

  .partner-network {
    min-height: 320px;
  }

  .partner-network-core {
    width: 110px;
    height: 110px;
    font-size: 0.9rem;
  }

  .partner-network-node {
    width: 58px;
    height: 58px;
    font-size: 0.7rem;
  }

  .partner-section {
    padding-top: 86px;
  }

  .partner-section-heading {
    margin-bottom: 34px;
  }

  .partner-section-heading h2 {
    font-size: 2.35rem;
  }

  .partner-feature-grid,
  .partner-type-grid,
  .partner-value-grid {
    grid-template-columns: 1fr;
  }

  .partner-type-card {
    min-height: 0;
    padding: 26px 22px;
  }

  .partner-process-list li {
    grid-template-columns: 52px 1fr;
    gap: 16px;
  }

  .partner-process-list li > span {
    width: 52px;
    height: 52px;
    font-size: 0.9rem;
  }

  .partner-process-list li:not(:last-child)::after {
    top: 46px;
    left: 26px;
  }

  .partner-final-cta {
    margin-top: 86px;
    padding: 56px 22px;
  }
}

.partners-page {
  zoom: 0.8;
}

.partners-page .partner-hero h1 {
  font-size: clamp(2.8rem, 4.8vw, 4.8rem);
}

.partners-page .partner-section-heading h2 {
  font-size: clamp(2.28rem, 3.53vw, 3.53rem);
}

.partners-page .partner-feature-card h3,
.partners-page .partner-type-card h3,
.partners-page .partner-value-grid h3 {
  font-size: 1.25rem;
}

.journal-page {
  background: #fbfbfc;
  zoom: 0.8;
}

.journal-header {
  position: sticky;
  top: 16px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(230, 231, 237, 0.9);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(31, 33, 48, 0.06);
  backdrop-filter: blur(16px);
}

.journal-main {
  padding: 42px 0 116px;
}

.journal-content {
  width: min(var(--site-width), calc(100% - var(--site-gutter)));
  margin: 0 auto;
}

.journal-content > section {
  scroll-margin-top: 116px;
}

.journal-hero {
  display: grid;
  min-height: 520px;
  align-content: center;
  justify-items: center;
  padding: 70px 32px;
  text-align: center;
  background: #fff;
  border: 1px solid #e7e8ee;
  border-radius: 14px;
  box-shadow: 0 22px 56px rgba(31, 33, 48, 0.07);
}

.journal-hero h1 {
  max-width: 860px;
  margin-top: 24px;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 0.98;
}

.journal-hero p {
  max-width: 700px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.5;
}

.journal-section {
  padding: 120px 0 0;
}

.journal-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.journal-section-heading h2 {
  margin-top: 20px;
  font-size: clamp(2.28rem, 3.53vw, 3.53rem);
  line-height: 1;
}

.journal-section-heading p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.journal-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.journal-card {
  min-height: 260px;
  padding: 28px;
  background: #fff;
  border: 1px solid #e4e6ed;
  border-radius: 10px;
  box-shadow: 0 16px 34px rgba(31, 33, 48, 0.045);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.journal-card:hover {
  border-color: rgba(131, 62, 232, 0.3);
  box-shadow: 0 22px 42px rgba(31, 33, 48, 0.08);
  transform: translateY(-4px);
}

.journal-card-kicker {
  color: var(--violet);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journal-card h3 {
  margin-top: 28px;
  color: #252735;
  font-size: 1.35rem;
  line-height: 1.18;
}

.journal-card p {
  margin: 14px 0 0;
  color: #777a89;
  font-size: 1rem;
  line-height: 1.55;
}

.journal-card-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--violet);
  font-weight: 500;
}

.journal-tools-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.journal-tool {
  display: grid;
  min-height: 170px;
  align-content: space-between;
  padding: 22px;
  background: #202132;
  border-radius: 10px;
}

.journal-tool span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journal-tool strong {
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.2;
}

.journal-feature-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.journal-feature-panel {
  min-height: 330px;
  padding: 34px;
  background: #fff;
  border: 1px solid #e4e6ed;
  border-radius: 10px;
  box-shadow: 0 16px 34px rgba(31, 33, 48, 0.045);
}

.journal-feature-panel.is-dark {
  color: #fff;
  background: #202132;
  border-color: #202132;
}

.journal-feature-panel h3 {
  margin-top: 28px;
  font-size: 1.85rem;
  line-height: 1.1;
}

.journal-feature-panel p {
  max-width: 600px;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.journal-feature-panel.is-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.journal-faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.journal-faq-list details {
  padding: 0 24px;
  background: #fff;
  border: 1px solid #e4e6ed;
  border-radius: 10px;
}

.journal-faq-list summary {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  color: #252735;
  font-weight: 500;
  list-style: none;
}

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

.journal-faq-list summary::after {
  content: "+";
  color: var(--violet);
  font-size: 1.3rem;
}

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

.journal-faq-list details p {
  margin: 0;
  padding: 0 0 24px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 980px) {
  .journal-card-grid,
  .journal-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 640px) {
  .journal-header {
    width: calc(100% - 28px);
    margin-top: 18px;
  }

  .journal-main {
    padding-top: 24px;
  }

  .journal-content {
    width: calc(100% - 28px);
  }

  .journal-hero {
    min-height: 440px;
    padding: 44px 22px;
  }

  .journal-hero h1 {
    font-size: 2.8rem;
  }

  .journal-hero p {
    font-size: 1rem;
  }

  .journal-section {
    padding-top: 84px;
  }

  .journal-section-heading {
    display: block;
    margin-bottom: 30px;
  }

  .journal-section-heading h2 {
    font-size: 2.35rem;
  }

  .journal-section-heading p {
    margin-top: 16px;
  }

  .journal-card-grid,
  .journal-feature-grid,
  .journal-tools-grid {
    grid-template-columns: 1fr;
  }
}

/* Final header placement overrides after the site's responsive rules. */
.site-header {
  grid-template-columns: auto minmax(0, 1fr) auto auto;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .language-switch {
    grid-column: 3;
  }
}

.journal-section-heading {
  display: block;
  max-width: 820px;
  margin-bottom: 42px;
}

.journal-section-heading p {
  max-width: 700px;
  margin: 18px 0 0;
}

.journal-case-card {
  display: grid;
  grid-template-columns: minmax(230px, 0.82fr) minmax(0, 1.18fr);
  gap: 30px;
  align-items: stretch;
}

.journal-case-photo {
  min-height: 260px;
  overflow: hidden;
  background: #eef0f5;
  border-radius: 10px;
}

.journal-case-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.journal-case-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.journal-case-copy .journal-card-stat {
  margin-top: 24px;
}

.partners-page .form-modal-heading h2,
.partners-page .form-modal-heading .eyebrow {
  font-family: var(--font-display);
  font-weight: 500;
}

.partners-page .form-modal-heading p,
.partners-page .partner-application-form label,
.partners-page .partner-application-form input,
.partners-page .partner-application-form select,
.partners-page .partner-application-form textarea,
.partners-page .partner-application-form small,
.partners-page .partner-application-form .form-consent {
  font-family: var(--font-display);
  font-weight: 400;
}

.form-success {
  display: grid;
  justify-items: center;
  padding: 34px 20px 20px;
  text-align: center;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition: opacity 360ms ease, transform 360ms ease;
}

.form-success.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.form-success-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 500;
  animation: form-success-pop 500ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.form-success h3 {
  margin-top: 18px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
}

.form-success p {
  max-width: 420px;
  margin-top: 10px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
}

.form-success-progress {
  display: block;
  width: min(260px, 100%);
  height: 4px;
  margin-top: 24px;
  overflow: hidden;
  background: #e7e8ee;
  border-radius: 999px;
}

.form-success-progress::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--violet);
  transform: scaleX(0);
  transform-origin: left;
  animation: form-success-countdown 3.2s linear forwards;
}

@keyframes form-success-pop {
  0% { opacity: 0; transform: scale(0.72); }
  70% { opacity: 1; transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes form-success-countdown {
  to { transform: scaleX(1); }
}

@media (max-width: 640px) {
  .journal-section-heading {
    max-width: 100%;
  }

  .journal-case-card {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .journal-case-photo,
  .journal-case-photo img {
    min-height: 210px;
  }
}

.journal-reader-modal[hidden] {
  display: none;
}

.journal-reader-modal {
  position: fixed;
  inset: 0;
  z-index: 105;
  display: grid;
  place-items: center;
  padding: 20px;
}

.journal-reader-panel {
  position: relative;
  width: min(900px, 100%);
  max-height: min(900px, calc(100vh - 40px));
  overflow: auto;
  padding: 54px 64px 62px;
  background: #fff;
  border: 1px solid #e4e5eb;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(31, 33, 48, 0.2);
}

.journal-reader-content {
  max-width: 760px;
  margin: 0 auto;
}

.journal-reader-kicker {
  color: var(--violet);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journal-reader-content h2 {
  max-width: 760px;
  margin-top: 18px;
  color: var(--ink);
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: 1;
}

.journal-reader-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.94rem;
}

.journal-reader-meta time {
  color: #4d5060;
  font-weight: 500;
}

.journal-reader-body {
  margin-top: 42px;
  padding-top: 34px;
  border-top: 1px solid #e7e8ee;
}

.journal-reader-body section + section {
  margin-top: 28px;
}

.journal-reader-body h3 {
  color: var(--ink);
  font-size: 1.28rem;
  font-weight: 500;
}

.journal-reader-body p {
  max-width: 700px;
  margin-top: 10px;
  color: #666a79;
  font-size: 1.06rem;
  line-height: 1.72;
}

.journal-card-link.journal-button-link {
  color: var(--violet);
  font-weight: 500;
}

@media (max-width: 640px) {
  .journal-reader-modal {
    padding: 10px;
  }

  .journal-reader-panel {
    max-height: calc(100vh - 20px);
    padding: 42px 22px 34px;
    border-radius: 12px;
  }

  .journal-reader-content h2 {
    font-size: 2.5rem;
  }

  .journal-reader-body p {
    font-size: 1rem;
  }
}

.journal-hero {
  justify-items: start;
  align-content: center;
  text-align: left;
  color: #fff;
  background-image: linear-gradient(90deg, rgba(20, 24, 48, 0.8), rgba(20, 24, 48, 0.28)), url("./assets/journal-cover.jpg");
  background-position: center;
  background-size: cover;
}

.journal-hero .section-label {
  color: #fff;
  background: rgba(22, 24, 42, 0.52);
  border-color: rgba(255, 255, 255, 0.38);
}

.journal-hero h1,
.journal-hero p {
  margin-left: 0;
  margin-right: 0;
  color: #fff;
}

.journal-hero p {
  color: rgba(255, 255, 255, 0.82);
}

.journal-feature-article-card {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 28px;
  align-items: stretch;
  width: 100%;
  margin-bottom: 24px;
  padding: 22px;
  background: #fff;
  border: 1px solid #e4e6ed;
  border-radius: 10px;
  box-shadow: 0 16px 34px rgba(31, 33, 48, 0.045);
}

.journal-cover-slot {
  display: grid;
  min-height: 220px;
  place-items: center;
  color: #858897;
  background: linear-gradient(135deg, #edf0f5, #e1e4eb);
  border: 1px dashed #bfc3cf;
  border-radius: 8px;
}

.journal-cover-slot span,
.journal-case-photo span {
  padding: 8px 12px;
  color: #686c7a;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(206, 209, 218, 0.9);
  border-radius: 999px;
  font-size: 0.82rem;
}

.journal-feature-article-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 12px 10px 0;
}

.journal-feature-article-copy h3 {
  margin-top: 16px;
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1.08;
}

.journal-feature-article-copy p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.journal-feature-article-copy .journal-card-link {
  align-self: flex-start;
}

.journal-carousel-page-articles {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.journal-carousel-page-cases .journal-case-card {
  width: 100%;
  max-width: none;
  min-height: 300px;
  padding: 22px;
}

.journal-case-photo {
  display: grid;
  min-height: 260px;
  place-items: center;
  background: linear-gradient(135deg, #eef1f6, #dfe3eb);
  border: 1px dashed #bfc3cf;
}

.journal-case-copy h3 {
  font-size: 1.55rem;
}

.journal-case-copy p {
  max-width: 520px;
}

.journal-case-copy .journal-card-link {
  align-self: flex-start;
}

.journal-article-main {
  width: min(var(--site-width), calc(100% - var(--site-gutter)));
  margin: 0 auto;
  padding: 46px 0 120px;
}

.journal-article-page {
  width: 100%;
}

.journal-article-header {
  padding: 28px 0 0;
}

.journal-article-heading-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.28fr);
  gap: 46px;
  align-items: end;
  margin-top: 20px;
}

.journal-article-heading-layout h1 {
  max-width: 980px;
  color: var(--ink);
  font-size: clamp(3rem, 6vw, 6.4rem);
  line-height: 0.98;
}

.journal-article-subtitle {
  max-width: 760px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.5;
}

.journal-article-byline {
  display: grid;
  gap: 5px;
  align-self: end;
  padding: 0 0 6px;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: right;
}

.journal-article-byline strong {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 500;
}

.journal-article-byline time {
  color: #686b79;
}

.journal-article-cover {
  height: clamp(240px, 34vw, 520px);
  margin-top: 54px;
  overflow: hidden;
  border-radius: 12px;
  background: #e7e9ef;
}

.journal-article-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.journal-article-body {
  max-width: 820px;
  margin: 82px auto 0;
}

.journal-article-body section + section {
  margin-top: 42px;
}

.journal-article-body h2 {
  font-size: 2rem;
  line-height: 1.05;
}

.journal-article-body p {
  margin-top: 14px;
  color: #656978;
  font-size: 1.16rem;
  line-height: 1.75;
}

.partners-page .partner-hero {
  position: relative;
  grid-template-columns: minmax(0, 1fr);
  min-height: 650px;
  overflow: hidden;
  color: #fff;
  background-image: linear-gradient(90deg, rgba(19, 22, 36, 0.78), rgba(19, 22, 36, 0.48)), url("./assets/partner-hero.jpg");
  background-position: center;
  background-size: cover;
  border-color: rgba(24, 27, 43, 0.35);
}

.partners-page .partner-hero-copy {
  position: relative;
  z-index: 2;
}

.partners-page .partner-hero h1,
.partners-page .partner-hero-copy > p {
  color: #fff;
}

.partners-page .partner-hero .section-label {
  color: #fff;
  background: rgba(22, 24, 42, 0.5);
  border-color: rgba(255, 255, 255, 0.38);
}

.partners-page .partner-network {
  display: none;
}

.partners-page .partner-type-card {
  min-height: 0;
  padding: 24px;
}

.partners-page .partner-type-card h3 {
  margin-top: 20px;
  font-size: 2rem;
  line-height: 1.02;
}

.partners-page .partner-type-card .partner-type-summary {
  margin-top: 16px;
  color: #666a79;
  font-size: 1.15rem;
  line-height: 1.28;
}

.partners-page .partner-type-card.is-featured .partner-type-summary {
  color: rgba(255, 255, 255, 0.78);
}

.partners-page .partner-type-card ul {
  gap: 5px;
  margin-top: 18px;
  font-size: 0.9rem;
  line-height: 1.3;
}

.partners-page .partner-type-card h4 {
  margin-top: 20px;
}

.partners-page .form-checkbox {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 10px;
  align-self: end;
  min-height: 46px;
}

.partners-page .form-checkbox input {
  width: 17px;
  min-width: 17px;
  height: 17px;
  min-height: 17px;
  padding: 0;
  accent-color: var(--violet);
}

.partners-page .form-modal-backdrop {
  background: rgba(22, 23, 35, 0.2);
}

.partner-application-form.is-submitting {
  opacity: 0.78;
}

.partner-application-form.is-submitting .btn::after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-left: 9px;
  vertical-align: -2px;
  border: 2px solid rgba(255, 255, 255, 0.36);
  border-top-color: #fff;
  border-radius: 50%;
  animation: partner-form-spin 700ms linear infinite;
}

@keyframes partner-form-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 980px) {
  .journal-carousel-page-articles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journal-article-heading-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .journal-article-byline {
    justify-self: start;
    padding: 0;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .journal-feature-article-card {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .journal-feature-article-copy {
    padding: 8px;
  }

  .journal-feature-article-copy h3 {
    font-size: 1.55rem;
  }

  .journal-carousel-page-articles {
    grid-template-columns: 1fr;
  }

  .journal-carousel-page-cases .journal-case-card {
    grid-template-columns: 1fr;
  }

  .journal-article-main {
    width: calc(100% - 28px);
    padding-top: 24px;
  }

  .journal-article-heading-layout h1 {
    font-size: 2.8rem;
  }

  .journal-article-subtitle {
    font-size: 1rem;
  }

  .journal-article-cover {
    height: 260px;
    margin-top: 34px;
  }

  .journal-article-body {
    margin-top: 54px;
  }

  .journal-article-body h2 {
    font-size: 1.7rem;
  }

  .journal-article-body p {
    font-size: 1rem;
  }

  .partners-page .partner-hero {
    min-height: 580px;
    padding: 42px 28px;
  }

  .partners-page .partner-type-card h3 {
    font-size: 1.7rem;
  }
}

.partners-page .partner-type-card {
  position: relative;
  isolation: isolate;
  min-height: 370px;
  overflow: hidden;
  color: #fff;
  background-color: #202132;
  background-position: center;
  background-size: cover;
  border-color: rgba(255, 255, 255, 0.24);
}

.partners-page .partner-type-card::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(110deg, rgba(15, 17, 30, 0.9), rgba(15, 17, 30, 0.5));
}

.partners-page .partner-type-card > * {
  position: relative;
  z-index: 1;
}

.partners-page .partner-type-commercial {
  background-image: url("./assets/partner-commercial.jpg");
  background-position: 56% center;
}

.partners-page .partner-type-creative {
  background-image: url("./assets/partner-creative.jpg");
  background-position: center;
}

.partners-page .partner-type-seo {
  background-image: url("./assets/partner-seo.jpg");
  background-position: center;
}

.partners-page .partner-type-web {
  background-image: url("./assets/partner-web.jpg");
  background-position: center;
}

.partners-page .partner-type-ads {
  background-image: url("./assets/partner-ads.jpg");
  background-position: center;
}

.partners-page .partner-type-ai {
  background-image: url("./assets/partner-ai.jpg");
  background-position: center;
}

.partners-page .partner-type-card .partner-type-kicker,
.partners-page .partner-type-card h3,
.partners-page .partner-type-card h4,
.partners-page .partner-type-card p,
.partners-page .partner-type-card li,
.partners-page .partner-type-card .partner-text-link {
  color: #fff;
}

.partners-page .partner-type-card .partner-type-kicker {
  opacity: 0.84;
}

.partners-page .partner-type-card .partner-type-summary {
  color: rgba(255, 255, 255, 0.86);
}

.partners-page .partner-type-card .partner-text-link {
  text-decoration-color: rgba(255, 255, 255, 0.55);
}

.partners-page .partner-type-card.is-featured {
  background-color: #202132;
  border-color: rgba(255, 255, 255, 0.24);
}

.partners-page .partner-type-card::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -5%;
  background-position: center;
  background-size: cover;
  background-image: var(--partner-card-image);
  transform: scale(1);
  transition: transform 480ms cubic-bezier(0.16, 1, 0.3, 1);
}

.partners-page .partner-type-card:hover::after {
  transform: scale(1.06);
}

.partners-page .partner-type-commercial { --partner-card-image: url("./assets/partner-commercial.jpg"); }
.partners-page .partner-type-creative { --partner-card-image: url("./assets/partner-creative.jpg"); }
.partners-page .partner-type-seo { --partner-card-image: url("./assets/partner-seo.jpg"); }
.partners-page .partner-type-web { --partner-card-image: url("./assets/partner-web.jpg"); }
.partners-page .partner-type-ads { --partner-card-image: url("./assets/partner-ads.jpg"); }
.partners-page .partner-type-ai { --partner-card-image: url("./assets/partner-ai.jpg"); }

.partners-page .partner-type-card {
  background-image: none;
}

.partners-page .partner-type-card::before {
  z-index: 1;
}

.partners-page .partner-type-card > * {
  z-index: 2;
}

.partners-page .partner-type-card .dark-cta,
.partners-page .partner-type-card .partner-text-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  padding: 0 20px;
  color: #202132;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  font-size: 0.94rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.partners-page .partner-type-card .dark-cta:hover,
.partners-page .partner-type-card .partner-text-link:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--magenta));
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(131, 62, 232, 0.3);
  transform: translateY(-2px);
}

.journal-feature-cover-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.journal-tool {
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.journal-tool:hover {
  box-shadow: 0 18px 34px rgba(31, 33, 48, 0.16);
  transform: translateY(-4px);
}

.journal-tool-audit { background: #23875b; }
.journal-tool-simulator { color: #202132; background: #e8bb3d; }
.journal-tool-simulator span { color: rgba(32, 33, 50, 0.62); }
.journal-tool-simulator strong { color: #202132; }
.journal-tool-keywords { background: #1f365c; }
.journal-tool-business { background: #48305f; }
.journal-tool-content { background: #702d36; }

.journal-case-photo {
  height: 250px;
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.journal-carousel-page-cases .journal-case-card {
  min-height: 338px;
}

.journal-case-photo img {
  min-height: 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.journal-case-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  margin-top: 22px;
}

.journal-case-actions .journal-card-link {
  margin-top: 0;
}

.journal-case-actions .journal-button-link {
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  font: inherit;
  cursor: pointer;
}

.journal-case-actions .journal-button-link:hover {
  color: var(--violet);
}

.case-download-form .form-grid {
  align-items: end;
}

.case-phone-field {
  min-width: 0;
}

.case-phone-control {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px;
}

.case-phone-control select,
.case-phone-control input {
  min-width: 0;
}

.case-phone-control select {
  width: 104px;
  padding: 0 8px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #d7d9e1;
  border-radius: 8px;
  font: inherit;
}

.case-download-form > .btn {
  margin-top: 18px;
}

.case-download-modal[hidden] {
  display: none;
}

.case-download-success {
  display: grid;
  gap: 10px;
  justify-items: start;
  padding: 18px 0 4px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.case-download-success.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.case-download-success h3 {
  margin: 0;
  font-size: 1.5rem;
}

.case-download-success p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.waitlist-modal[hidden] {
  display: none;
}

.waitlist-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 20px;
}

.waitlist-panel {
  position: relative;
  width: min(540px, 100%);
  padding: 44px;
  background: #fff;
  border: 1px solid #e4e5eb;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(31, 33, 48, 0.22);
}

.waitlist-panel h2 {
  margin-top: 14px;
  font-size: 2.35rem;
}

.waitlist-panel > p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.waitlist-form {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.waitlist-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 500;
}

.waitlist-form input {
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid #d7d9e1;
  border-radius: 8px;
  font: inherit;
  outline: none;
}

.waitlist-form input:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(131, 62, 232, 0.1);
}

.waitlist-success {
  color: var(--green) !important;
  font-weight: 500;
}

/* Shared finishing details for the diagnostic and site-wide controls. */
.partner-badge {
  width: 226px;
  height: 58px;
  margin-bottom: 15px;
  overflow: hidden;
  background: #fff;
}

.partner-badge img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-benefits {
  font-weight: 400;
}

.hero-benefits strong {
  font-weight: 500;
}

.testimonial-avatar {
  overflow: hidden;
}

.testimonial-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.diagnostic-no-website {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  gap: 9px;
  width: fit-content;
  color: #555967;
  cursor: pointer;
  font-size: 0.88rem;
}

.diagnostic-no-website input {
  width: 17px;
  height: 17px;
  accent-color: var(--violet);
}

.diagnostic-site-placeholder {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 10;
  padding: 18px;
  color: #747887;
  background: #eceef4;
  border: 1px solid #e1e4ec;
  border-radius: 10px;
  text-align: center;
  font-size: 0.88rem;
}

.diagnostic-score-label-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.diagnostic-score-info {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
}

.diagnostic-score-info summary {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: #666a78;
  cursor: pointer;
  background: #fff;
  border: 1px solid #cdd0da;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1;
  list-style: none;
}

.diagnostic-score-info summary::-webkit-details-marker {
  display: none;
}

.diagnostic-score-info p {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 10;
  width: 250px;
  margin: 0 !important;
  padding: 10px 12px;
  color: #555967 !important;
  background: #fff;
  border: 1px solid #e2e4ec;
  border-radius: 9px;
  box-shadow: 0 14px 30px rgba(31, 33, 48, 0.14);
  font-size: 0.78rem !important;
  line-height: 1.4 !important;
}

.diagnostic-result-actions {
  grid-column: 1 / -1;
  margin-top: 12px;
}

.diagnostic-result-button.is-violet {
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--magenta));
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(131, 62, 232, 0.2);
}

.diagnostic-result-button.is-violet:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(131, 62, 232, 0.27);
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #777b88;
  cursor: pointer;
  background: #fff;
  border: 1px solid #cfd2da;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(31, 33, 48, 0.1);
  font-size: 1.2rem;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease, color 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.back-to-top:hover {
  color: #383b49;
  transform: translateY(-2px);
}

.journal-page #faq-journal .journal-section-heading {
  max-width: 100%;
  text-align: center;
}

.journal-page #faq-journal .journal-section-heading > div {
  display: grid;
  justify-items: center;
}

.journal-page #faq-journal .journal-section-heading p {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
}

.journal-page #faq-journal .journal-faq-list {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 980px) {
  body.diagnostic-open .hero-diagnostic-panel {
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
}

@media (max-width: 640px) {
  .case-photo-placeholder img {
    height: 190px;
  }

  .case-phone-control {
    grid-template-columns: 94px minmax(0, 1fr);
  }

  .journal-case-photo {
    height: 220px;
  }

  .journal-carousel-page-cases .journal-case-card {
    min-height: 0;
  }

  .journal-case-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .waitlist-modal {
    padding: 10px;
  }

  .waitlist-panel {
    padding: 34px 22px;
  }

  .partner-badge {
    width: 190px;
    height: 50px;
  }

  .diagnostic-score-info p {
    right: auto;
    left: 0;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
    width: 42px;
    height: 42px;
  }
}

/* Final alignment refinements requested for the hero, guides and partner page. */
.hero-proof p strong {
  color: #11131b;
  font-size: 1rem;
  font-weight: 500;
}

.google-partner-proof {
  display: grid;
  flex: 0 0 226px;
  width: 226px;
  height: 58px;
  place-items: center;
  overflow: hidden;
}

.google-partner-proof img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#guides .journal-section-heading h2,
#guides .journal-feature-panel h3,
#guides .journal-card-kicker,
#guides .btn,
#guides .journal-card-link {
  font-weight: 500;
}

#guides .journal-section-heading p,
#guides .journal-feature-panel p {
  font-weight: 400;
}

.partners-page .partner-type-grid {
  align-items: stretch;
}

.partners-page .partner-type-card {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.partners-page .partner-type-card .dark-cta,
.partners-page .partner-type-card .partner-text-link {
  align-self: flex-start;
  width: min(100%, 240px);
  min-width: 0;
  margin-top: auto;
}

.legal-intro h1 {
  width: 100%;
  max-width: none;
  white-space: nowrap;
  font-size: clamp(1.8rem, 4.5vw, 4.2rem);
}

@media (max-width: 640px) {
  .hero-proof {
    gap: 14px;
  }

  .google-partner-proof {
    flex-basis: 190px;
    width: 190px;
    height: 50px;
  }

  .proof-divider {
    height: 36px;
  }

  .legal-intro h1 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }
}

/* Diagnostic drawer and form completion states. */
.google-partner-proof {
  flex-basis: 190px;
  width: 190px;
  height: 40px;
}

.hero-diagnostic-panel {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 160;
  width: min(980px, 72vw);
  height: 100dvh;
  max-height: none;
  padding: 28px 34px;
  overflow: hidden;
  border-radius: 18px 0 0 18px;
  opacity: 0;
  transform: translate3d(100%, 0, 0);
  transition: opacity 360ms ease, transform 460ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-card.is-diagnostic-open .hero-diagnostic-panel {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.hero-diagnostic-panel .diagnostic-content {
  min-height: 0;
  height: auto;
  overflow: hidden;
  align-content: stretch;
}

.diagnostic-result {
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto minmax(0, 1fr);
  height: 100%;
  min-height: 0;
}

.diagnostic-result-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.78fr) minmax(360px, 1.42fr);
  gap: 18px;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.diagnostic-result-offer {
  display: flex;
  min-height: 0;
  flex-direction: column;
  align-self: stretch;
  padding: 22px;
  background: linear-gradient(180deg, #fff, #fbfaff);
  border: 1px solid rgba(131, 62, 232, 0.28);
  border-radius: 14px;
  box-shadow: 0 14px 28px rgba(31, 33, 48, 0.06);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.diagnostic-start-offer {
  flex: 0 0 auto;
  margin-bottom: 16px;
}

.diagnostic-offer-full {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.diagnostic-offer-full .popular-badge {
  align-self: flex-start;
  position: static;
}

.diagnostic-offer-full h3 {
  margin: 0;
  font-size: 1.55rem;
  font-weight: 500;
}

.diagnostic-offer-full .price {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 400;
}

.diagnostic-offer-full p,
.diagnostic-offer-full li {
  font-size: 0.84rem;
  line-height: 1.42;
}

.diagnostic-offer-full p {
  margin: 0;
}

.diagnostic-offer-full ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
}

.diagnostic-offer-full .pricing-list-title {
  margin-top: 4px;
  font-weight: 500;
}

.diagnostic-result-offer > span {
  color: #747887;
  font-size: 0.82rem;
}

.diagnostic-result-offer h3 {
  margin-top: 8px;
  font-size: 1.65rem;
}

.diagnostic-result-offer > p {
  margin-top: 20px;
}

.diagnostic-result-offer .diagnostic-reasons {
  grid-template-columns: 1fr;
}

.diagnostic-result-offer .diagnostic-result-actions {
  grid-template-columns: 1fr;
  margin-top: auto;
  padding-top: 18px;
}

.diagnostic-result-details {
  display: grid;
  gap: 14px;
  min-height: 0;
  padding-right: 6px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

.resource-legal-consent {
  margin-top: 18px;
}

.resource-legal-consent a {
  color: var(--violet);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.resource-legal-consent a:hover {
  color: var(--magenta);
}

/* Dedicated diagnostic page. */
body.diagnostic-page {
  min-height: 100vh;
  background: #f8f8fa;
}

.diagnostic-page .site-header {
  position: sticky;
  top: 10px;
  z-index: 220;
}

.diagnostic-page-main {
  min-height: 100vh;
}

.diagnostic-page-section {
  padding: 28px 0 70px;
}

.diagnostic-page-shell {
  width: min(var(--site-width), calc(100% - var(--site-gutter)));
  margin: 0 auto;
}

.diagnostic-page .diagnostic-page-card {
  display: block;
  min-height: calc(100vh - 145px);
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.diagnostic-page .hero-diagnostic-panel,
.diagnostic-page .hero-card.is-diagnostic-open .hero-diagnostic-panel {
  position: relative;
  inset: auto;
  display: grid;
  grid-template-rows: auto auto;
  width: 100%;
  height: auto;
  min-height: calc(100vh - 145px);
  padding: 30px 34px 38px;
  overflow: visible;
  opacity: 1;
  pointer-events: auto;
  background: #fff;
  border: 1px solid #e3e5ec;
  border-radius: 16px;
  box-shadow: 0 22px 58px rgba(31, 33, 48, 0.09);
  transform: none;
}

.diagnostic-page .diagnostic-progress {
  position: sticky;
  top: 72px;
  z-index: 25;
  margin: -10px -12px 0;
  padding: 10px 54px 14px 12px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.diagnostic-page .diagnostic-content {
  min-height: 0;
  padding-top: 24px;
  overflow: visible;
}

.diagnostic-page .diagnostic-step,
.diagnostic-page .diagnostic-loading {
  width: min(820px, 100%);
  margin: 20px auto 0;
}

.diagnostic-page .diagnostic-step h2,
.diagnostic-page .diagnostic-loading h2 {
  font-size: clamp(1.85rem, 3vw, 2.65rem);
  line-height: 1.05;
}

.diagnostic-page .diagnostic-field,
.diagnostic-page .diagnostic-textarea,
.diagnostic-page .diagnostic-select {
  min-height: 52px;
  font-size: 1rem;
}

.diagnostic-page .diagnostic-result {
  display: grid;
  height: auto;
  min-height: 0;
  grid-template-rows: auto auto auto auto;
}

.diagnostic-page .diagnostic-result-layout {
  height: auto;
  min-height: 0;
  align-items: start;
  overflow: visible;
}

.diagnostic-page .diagnostic-result-offer {
  position: sticky;
  top: 144px;
  max-height: calc(100vh - 165px);
  overflow-y: auto;
}

.diagnostic-page .diagnostic-result-details {
  min-height: 0;
  padding-right: 10px;
  overflow: visible;
}

.diagnostic-page .diagnostic-result > h2 {
  max-width: 980px;
  font-size: clamp(2rem, 3.4vw, 3.15rem);
}

@media (max-width: 820px) {
  .diagnostic-page .site-header {
    top: 0;
  }

  .diagnostic-page-section {
    padding: 14px 0 40px;
  }

  .diagnostic-page-shell {
    width: min(100% - 20px, var(--site-width));
  }

  .diagnostic-page .hero-diagnostic-panel,
  .diagnostic-page .hero-card.is-diagnostic-open .hero-diagnostic-panel {
    width: 100%;
    min-height: calc(100vh - 100px);
    padding: 24px 18px 32px;
    border-radius: 12px;
  }

  .diagnostic-page .diagnostic-progress {
    top: 58px;
  }

  .diagnostic-page .diagnostic-result-layout {
    grid-template-columns: 1fr;
  }

  .diagnostic-page .diagnostic-result-offer {
    position: static;
    max-height: none;
  }
}

.diagnostic-result-restart {
  display: flex;
  justify-content: center;
  padding: 8px 0 4px;
}

.diagnostic-result-restart .diagnostic-result-button {
  width: min(100%, 320px);
}

.partners-page .commercial-partner-form label,
.partners-page .commercial-partner-form input,
.partners-page .commercial-partner-form select,
.partners-page .commercial-partner-form textarea {
  font-weight: 400;
}

.commercial-partner-form.is-submitting {
  pointer-events: none;
  opacity: 0.78;
}

.diagnostic-result-details .diagnostic-site-preview,
.diagnostic-result-details .diagnostic-map-preview {
  min-height: auto;
}

.diagnostic-city-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.diagnostic-free-zone {
  display: none;
}

.diagnostic-field-error {
  margin: 0;
  color: #b42318;
  font-size: 0.8rem;
}

.diagnostic-free-zone.is-visible {
  display: block;
}

.resource-download-success {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 34px 18px 18px;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.resource-download-success.is-visible {
  opacity: 1;
  transform: none;
}

.resource-download-success h3 {
  margin: 0;
  font-size: 1.55rem;
  font-weight: 500;
}

.resource-download-success p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.55;
}

.form-modal-panel.is-success > .form-modal-heading,
.waitlist-panel.is-success > .journal-card-kicker,
.waitlist-panel.is-success > h2,
.waitlist-panel.is-success > p,
.waitlist-panel.is-success > form {
  display: none;
}

.journal-page .form-modal-heading h2,
.journal-page .form-modal-heading .eyebrow,
.journal-page .resource-download-success h3 {
  font-weight: 500;
}

.journal-page .form-modal-heading p,
.journal-page .resource-download-form label,
.journal-page .resource-download-form input,
.journal-page .resource-download-form small,
.journal-page .resource-download-form .form-consent {
  font-weight: 400;
}

.waitlist-client-check {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 9px !important;
  cursor: pointer;
}

.waitlist-client-check input {
  width: 17px;
  height: 17px;
  min-height: 17px;
  accent-color: var(--violet);
}

.partners-page .form-success .btn {
  min-width: 0;
  margin-top: 12px;
}

.legal-section {
  scroll-margin-top: 130px;
}

@media (max-width: 820px) {
  .hero-diagnostic-panel {
    width: 100vw;
    padding: 24px 20px;
    border-radius: 0;
  }

  .diagnostic-result-layout {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .diagnostic-result {
    display: block;
    height: auto;
  }

  .diagnostic-result-offer {
    margin-top: 16px;
  }

  .diagnostic-result-details {
    margin-top: 14px;
    padding-right: 0;
    overflow: visible;
  }

  .hero-diagnostic-panel .diagnostic-content {
    height: auto;
  }

  .hero-diagnostic-panel {
    overflow-y: auto;
  }

  .diagnostic-city-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .google-partner-proof {
    flex-basis: 170px;
    width: 170px;
    height: 36px;
  }
}

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

.cookie-consent {
  position: fixed;
  right: 24px;
  bottom: 20px;
  left: 24px;
  z-index: 155;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 22px;
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #dfe1e8;
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(31, 33, 48, 0.16);
  backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateY(calc(100% + 36px));
  transition: opacity 260ms ease, transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-consent.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-consent strong {
  color: #202132;
  font-weight: 500;
}

.cookie-consent p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.cookie-consent > a {
  color: #555967;
  font-size: 0.82rem;
  text-decoration: underline;
}

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

.cookie-button {
  min-height: 42px;
  padding: 0 16px;
  color: #fff;
  cursor: pointer;
  background: #202226;
  border: 1px solid #202226;
  border-radius: 8px;
  font: inherit;
  font-weight: 500;
}

.cookie-button-secondary {
  color: #343746;
  background: #fff;
  border-color: #d7d9e1;
}

@media (max-width: 820px) {
  .cookie-consent {
    right: 12px;
    bottom: 12px;
    left: 12px;
    grid-template-columns: 1fr;
    gap: 12px;
    width: auto;
  }

  .cookie-consent-actions {
    flex-wrap: wrap;
  }
}
