:root {
  --ink: #0b1220;
  --ink-soft: #232c3f;
  --cream: #fbf6ee;
  --sand: #f0eae2;
  --card: #ffffff;
  --blue: #b8d0ff;
  --blue-strong: #5b84e6;
  --lavender: #dcc9fb;
  --yellow: #ffbf16;
  --muted: #6d7280;
  --radius-xl: 34px;
  --radius-lg: 26px;
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

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

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

h1,
h2,
.brand,
.button,
.rating-pill,
.eyebrow,
.price,
.step-stack span,
.review-button {
  font-family: "Archivo Black", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-weight: 900;
  letter-spacing: 0;
}

.shell {
  width: min(calc(100% - 48px), 1790px);
  margin-inline: auto;
}

.section-gap {
  margin-top: clamp(42px, 6vw, 92px);
}

.top-strip {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  background: var(--lavender);
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
}

.top-strip a {
  text-decoration: underline;
  font-weight: 900;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 20px clamp(20px, 3vw, 42px) 28px;
  background: rgba(251, 246, 238, 0.9);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 246, 238, 0.96);
  box-shadow: 0 14px 40px rgba(11, 18, 32, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(27px, 2.4vw, 38px);
}

.brand img {
  width: clamp(118px, 10vw, 168px);
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.1vw, 34px);
  color: #111827;
  font-size: 19px;
  font-weight: 800;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--blue-strong);
}

.nav-cta {
  justify-self: end;
  margin-right: clamp(16px, 2.2vw, 36px);
}

.mobile-header-cta {
  display: none !important;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  font-size: 17px;
  line-height: 1.08;
  text-align: center;
  text-transform: uppercase;
  white-space: normal;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.nav-cta {
  min-height: 50px;
  padding-inline: 20px;
  font-size: 14px;
}

.button-blue {
  background: var(--blue);
  color: var(--ink);
  box-shadow: 0 18px 40px rgba(91, 132, 230, 0.2);
}

.button-dark-soft {
  background: var(--ink-soft);
  color: var(--cream);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.96fr);
  gap: 22px;
  align-items: stretch;
}

.hero-card,
.hero-image,
.portrait-card,
.title-panel,
.feature-grid article,
.pricing,
.pricing-grid article,
.review-grid article,
.faq-panel,
.step-stack article,
.final-cta {
  border-radius: var(--radius-xl);
}

.hero-card {
  display: flex;
  min-height: 620px;
  flex-direction: column;
  gap: 28px;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(36px, 4.2vw, 74px);
}

.dark-card {
  background: var(--ink);
  color: var(--cream);
}

.rating-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.rating-pill {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-radius: 999px;
  padding: 0 20px;
  background: #273247;
  color: var(--cream);
  font-size: 13px;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(48px, 5vw, 92px);
  line-height: 0.92;
  text-transform: uppercase;
}

.hero-card h1 em {
  display: block;
  color: var(--blue);
  font-style: normal;
}

.mobile-title {
  display: none;
}

.hero-card p {
  max-width: 690px;
  color: rgba(251, 246, 238, 0.82);
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.38;
}

.hero-actions {
  display: grid;
  justify-items: start;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.button-primary {
  min-height: 64px;
  padding-inline: clamp(24px, 3vw, 38px);
  font-size: clamp(15px, 1.4vw, 20px);
}

.cta-note {
  color: rgba(251, 246, 238, 0.7);
  font-size: clamp(14px, 1.15vw, 18px);
  font-weight: 800;
}

.hero-image {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--sand);
}

.hero-image img,
.portrait-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image img {
  object-position: 57% center;
}

.hero-image::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(11, 18, 32, 0.55), rgba(11, 18, 32, 0));
  content: "";
  pointer-events: none;
}

.hero-result-card {
  position: absolute;
  z-index: 1;
  display: grid;
  gap: 6px;
  width: min(330px, calc(100% - 36px));
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 60px rgba(11, 18, 32, 0.2);
  padding: 18px 20px;
  backdrop-filter: blur(12px);
}

.hero-result-card span,
.success-meta,
.video-card small {
  color: var(--blue-strong);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-result-card strong {
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.08;
}

.hero-result-card small {
  color: var(--muted);
  font-size: 15px;
  font-weight: 900;
}

.main-result {
  right: 24px;
  bottom: 28px;
}

.quote-result {
  left: 24px;
  bottom: 178px;
}

.video-proof {
  display: grid;
  grid-template-columns: minmax(280px, 0.52fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 30px;
}

.video-copy,
.video-card {
  border-radius: 24px;
  background: var(--sand);
}

.video-copy {
  display: grid;
  align-content: center;
  padding: clamp(30px, 4vw, 54px);
}

.video-copy .eyebrow {
  margin-bottom: 20px;
}

.video-copy h2 {
  max-width: 540px;
  font-size: clamp(28px, 2.35vw, 42px);
  line-height: 0.98;
}

.video-copy p:not(.eyebrow) {
  max-width: 540px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.45;
}

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

.video-card {
  position: relative;
  display: grid;
  min-height: 230px;
  align-content: end;
  gap: 8px;
  overflow: hidden;
  padding: 24px;
  color: var(--cream);
  isolation: isolate;
}

.video-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.video-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(11, 18, 32, 0.06), rgba(11, 18, 32, 0.78));
  content: "";
}

.video-card strong {
  max-width: 260px;
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1.02;
}

.video-card small {
  color: var(--blue);
}

.play-mark {
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 18px 50px rgba(11, 18, 32, 0.28);
}

.play-mark::before {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--ink);
  content: "";
}

.client-proof {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.proof-heading {
  display: grid;
  gap: 8px;
}

.proof-heading .eyebrow {
  margin-bottom: 0;
}

.proof-heading h2 {
  max-width: 760px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(28px, 2.35vw, 40px);
  font-weight: 900;
  line-height: 1.05;
  text-transform: none;
}

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

.success-row article {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 255px;
  border-radius: 24px;
  background: var(--card);
  padding: clamp(24px, 2.4vw, 36px);
  box-shadow: 0 18px 60px rgba(11, 18, 32, 0.06);
}

.success-row .stars {
  margin-bottom: 0;
  font-size: 22px;
}

.success-row h3 {
  margin: 0;
  font-size: clamp(22px, 1.55vw, 30px);
  line-height: 1.03;
}

.success-row p {
  margin: 0;
  color: #1d2636;
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.4;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.proof-grid article {
  display: flex;
  min-height: 128px;
  align-items: center;
  gap: 24px;
  border-radius: 18px;
  background: var(--sand);
  padding: 28px;
}

.icon-bubble {
  display: grid;
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--card);
  color: var(--blue-strong);
}

.icon-bubble svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.proof-grid h2 {
  margin-bottom: 8px;
  font-size: clamp(24px, 2vw, 36px);
  line-height: 0.98;
}

.proof-grid p {
  margin-bottom: 0;
  font-size: clamp(15px, 1.3vw, 19px);
}

.proof-grid p,
.feature-grid p,
.step-stack p,
.pricing-grid li,
.pricing-grid .fee,
.center-heading p,
.faq-list p,
.footer p {
  color: var(--muted);
  line-height: 1.5;
}

.services {
  display: grid;
  grid-template-columns: minmax(320px, 0.66fr) minmax(0, 1fr);
  gap: 22px;
}

.portrait-card {
  min-height: 1040px;
  overflow: hidden;
  background: var(--sand);
}

.portrait-card img {
  object-position: 52% center;
}

.service-content {
  display: grid;
  gap: 22px;
}

.title-panel {
  display: grid;
  min-height: 420px;
  align-content: center;
  background: var(--sand);
  padding: clamp(36px, 5vw, 72px);
  overflow: hidden;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 34px;
  border-radius: 999px;
  background: var(--card);
  padding: 8px 14px;
  color: #1a2232;
  font-size: 13px;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(48px, 6.4vw, 108px);
  line-height: 0.9;
  text-transform: uppercase;
}

.title-panel h2 {
  font-size: clamp(42px, 4.8vw, 82px);
  line-height: 0.92;
}

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

.feature-grid article {
  display: grid;
  min-height: 300px;
  align-content: space-between;
  background: var(--sand);
  padding: clamp(32px, 4vw, 64px);
}

.feature-grid h3,
.step-stack h3 {
  margin-bottom: 14px;
  font-size: clamp(27px, 2.7vw, 44px);
  line-height: 1;
}

.feature-grid p,
.step-stack p {
  margin-bottom: 0;
  font-size: clamp(17px, 1.6vw, 24px);
}

.process {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 150px);
  align-items: start;
  padding-block: clamp(50px, 7vw, 110px);
}

.process-copy {
  position: sticky;
  top: 138px;
  display: grid;
  gap: 28px;
  align-items: start;
}

.process-copy h2 {
  font-size: clamp(50px, 6vw, 100px);
}

.process-copy p {
  max-width: 640px;
  margin: 0;
  color: #202838;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.35;
}

.process-copy .button {
  justify-self: start;
}

.step-stack {
  display: grid;
  gap: 22px;
}

.step-stack article {
  display: grid;
  min-height: 280px;
  align-content: space-between;
  background: var(--sand);
  padding: clamp(34px, 4vw, 72px);
}

.step-stack span {
  color: var(--blue-strong);
  font-size: clamp(72px, 7.4vw, 126px);
  line-height: 0.8;
}

.pricing {
  background: var(--sand);
  padding: clamp(76px, 8vw, 132px) clamp(26px, 3vw, 48px);
}

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

.center-heading h2 {
  max-width: 980px;
}

.center-heading p:not(.eyebrow) {
  max-width: 630px;
  margin-top: 28px;
  font-size: clamp(20px, 2vw, 29px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: clamp(42px, 5vw, 78px);
}

.pricing-grid article {
  position: relative;
  display: flex;
  min-height: 560px;
  flex-direction: column;
  justify-content: space-between;
  background: var(--card);
  padding: clamp(30px, 3vw, 54px);
}

.pricing-grid .featured {
  box-shadow: 0 24px 70px rgba(91, 132, 230, 0.18);
}

.plan-badge {
  position: absolute;
  top: 28px;
  right: 28px;
  border-radius: 999px;
  background: var(--yellow);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-grid h3 {
  margin-bottom: 26px;
  font-size: clamp(25px, 2.4vw, 34px);
}

.price {
  margin-bottom: 14px;
  font-size: clamp(68px, 7vw, 104px);
  line-height: 0.9;
}

.fee {
  min-height: 48px;
  margin-bottom: 24px;
  font-size: 18px;
}

.pricing-grid ul {
  display: grid;
  gap: 12px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.pricing-grid li::before {
  content: "+";
  margin-right: 9px;
  color: var(--blue-strong);
  font-weight: 900;
}

.pricing-grid .button {
  width: 100%;
}

.reviews {
  padding-block: clamp(72px, 8vw, 142px);
}

.review-button {
  display: inline-flex;
  min-height: 64px;
  align-items: center;
  gap: 12px;
  margin-top: 38px;
  border-radius: 999px;
  background: var(--sand);
  padding: 0 30px;
  font-size: 18px;
  text-transform: uppercase;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
  max-width: 1540px;
  margin: clamp(70px, 8vw, 118px) auto 0;
}

.review-grid article {
  background: var(--card);
  padding: clamp(28px, 3vw, 44px);
}

.review-grid .tall {
  min-height: 430px;
}

.stars {
  margin-bottom: 28px;
  color: var(--yellow);
  font-size: 28px;
  letter-spacing: 4px;
}

.review-grid p {
  color: #171f2e;
  font-size: clamp(20px, 2vw, 29px);
  line-height: 1.35;
}

.review-grid span {
  display: block;
  margin-top: 30px;
  font-weight: 900;
}

.faq-panel {
  background: var(--sand);
  padding: clamp(80px, 9vw, 150px) clamp(24px, 4vw, 72px);
}

.faq-list {
  display: grid;
  gap: 22px;
  width: min(940px, 100%);
  margin: clamp(56px, 6vw, 94px) auto 0;
}

details {
  overflow: hidden;
  border-radius: 20px;
  background: var(--card);
}

summary {
  display: flex;
  min-height: 114px;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 34px;
  list-style: none;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 900;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  font-size: 26px;
  font-weight: 900;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: -12px 34px 32px;
  font-size: 18px;
}

.final-cta {
  display: flex;
  min-height: 320px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: clamp(42px, 6vw, 92px);
  background: var(--ink);
  color: var(--cream);
  padding: clamp(34px, 5vw, 72px);
}

.final-cta .eyebrow {
  background: rgba(255, 255, 255, 0.1);
  color: var(--cream);
}

.final-cta h2 {
  max-width: 920px;
  font-size: clamp(42px, 5vw, 84px);
}

.final-cta > div {
  min-width: 0;
}

.legal-page {
  padding-block: clamp(30px, 4vw, 66px) clamp(60px, 7vw, 110px);
}

.legal-hero,
.legal-content {
  border-radius: var(--radius-xl);
  background: var(--sand);
}

.legal-hero {
  display: grid;
  min-height: 330px;
  align-content: center;
  justify-items: center;
  padding: clamp(44px, 6vw, 90px);
  text-align: center;
}

.legal-hero .eyebrow {
  margin-bottom: 28px;
}

.legal-hero h1 {
  max-width: 1100px;
  margin: 0;
  font-size: clamp(54px, 8vw, 124px);
}

.legal-content {
  display: grid;
  gap: 18px;
  margin-top: 24px;
  padding: clamp(18px, 3vw, 34px);
}

.legal-content article {
  border-radius: 24px;
  background: var(--card);
  padding: clamp(24px, 3vw, 42px);
}

.legal-content h2 {
  margin-bottom: 18px;
  font-family: "Archivo Black", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
}

.legal-content h3 {
  margin: 28px 0 10px;
  font-size: clamp(18px, 2vw, 24px);
}

.legal-content p,
.legal-content li {
  color: #202838;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.55;
}

.legal-content p {
  margin-bottom: 10px;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  margin: 0 0 12px;
  padding-left: 22px;
}

.legal-content a {
  color: var(--blue-strong);
  font-weight: 800;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  padding-block: 44px;
}

.footer-main {
  display: grid;
  gap: 16px;
}

.footer p {
  max-width: 560px;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 12px;
}

.footer-links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border-radius: 999px;
  background: var(--sand);
  padding: 0 16px;
  color: var(--ink);
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease;
}

.footer-links a:hover {
  transform: translateY(-1px);
  background: var(--blue);
}

.sticky-cta {
  display: none;
}

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

  .nav-links {
    display: none;
  }

  .hero,
  .video-proof,
  .services,
  .process,
  .pricing-grid,
  .review-grid,
  .success-row {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .hero-image {
    min-height: 560px;
  }

  .portrait-card {
    min-height: 520px;
  }

  .process-copy {
    position: static;
  }

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

  .video-row {
    grid-template-columns: repeat(3, minmax(210px, 1fr));
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 78px;
  }

  .top-strip,
  .site-header,
  main,
  .footer {
    width: 100vw;
    max-width: 100vw;
  }

  .shell {
    width: calc(100vw - 28px);
  }

  .top-strip {
    min-height: 36px;
    padding-inline: 14px;
    font-size: 13px;
    line-height: 1.25;
  }

  .top-strip a {
    display: none;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px 16px;
    overflow: visible;
  }

  .brand {
    font-size: 27px;
  }

  .brand img {
    width: 112px;
  }

  .nav-cta {
    display: inline-flex !important;
    max-width: 138px;
    min-height: 44px;
    margin-right: 0;
    padding-inline: 14px;
    font-size: 12px;
  }

  .mobile-header-cta {
    display: none !important;
  }

  .hero {
    gap: 14px;
  }

  .hero-card,
  .hero-image {
    min-height: 0;
  }

  .hero-card {
    gap: 22px;
    padding: 28px 24px;
  }

  .rating-pill {
    min-height: 36px;
    padding-inline: 14px;
    font-size: 11px;
  }

  h1 {
    font-size: clamp(38px, 10.6vw, 42px);
    line-height: 0.96;
  }

  .desktop-title {
    display: none;
  }

  .mobile-title {
    display: block;
  }

  h2 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero-card p,
  .center-heading p:not(.eyebrow),
  .process-copy p {
    font-size: 18px;
  }

  .hero-actions,
  .hero-actions .button,
  .pricing-grid .button,
  .process-copy .button,
  .final-cta .button {
    width: 100%;
  }

  .button-primary {
    min-height: 62px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .hero-card p {
    overflow-wrap: anywhere;
  }

  .hero-image {
    height: 370px;
  }

  .video-proof {
    gap: 14px;
    margin-top: 18px;
  }

  .video-copy {
    padding: 26px;
  }

  .video-copy h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .video-copy p:not(.eyebrow) {
    margin-top: 16px;
    font-size: 17px;
  }

  .video-row {
    display: grid;
    grid-auto-columns: minmax(260px, 82%);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    padding: 2px 14px 12px;
    margin-inline: -14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .video-row::-webkit-scrollbar {
    display: none;
  }

  .video-card {
    min-height: 230px;
    padding: 22px;
    scroll-snap-align: start;
  }

  .hero-result-card {
    width: min(285px, calc(100% - 28px));
    border-radius: 18px;
    padding: 14px 16px;
  }

  .hero-result-card strong {
    font-size: 18px;
  }

  .hero-result-card small {
    font-size: 13px;
  }

  .main-result {
    right: 14px;
    bottom: 16px;
  }

  .quote-result {
    left: 14px;
    bottom: 132px;
  }

  .client-proof {
    margin-top: 18px;
  }

  .proof-heading {
    display: grid;
    gap: 0;
  }

  .proof-heading h2 {
    font-size: clamp(30px, 8.5vw, 38px);
  }

  .success-row {
    display: grid;
    grid-auto-columns: minmax(278px, 86%);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    padding: 2px 14px 12px;
    margin-inline: -14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .success-row::-webkit-scrollbar {
    display: none;
  }

  .success-row article {
    min-height: 245px;
    padding: 24px;
    scroll-snap-align: start;
  }

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

  .proof-grid {
    margin-top: 14px;
  }

  .proof-grid article {
    min-height: 110px;
    padding: 22px;
  }

  .icon-bubble {
    width: 58px;
    height: 58px;
  }

  .icon-bubble svg {
    width: 28px;
    height: 28px;
  }

  .title-panel,
  .feature-grid article,
  .step-stack article,
  .pricing,
  .faq-panel,
  .legal-hero,
  .legal-content,
  .final-cta {
    border-radius: 24px;
  }

  .title-panel,
  .feature-grid article,
  .step-stack article {
    min-height: 260px;
    padding: 28px;
  }

  .portrait-card {
    min-height: 360px;
    border-radius: 24px;
  }

  .process,
  .reviews {
    padding-block: 34px;
  }

  .pricing {
    padding: 48px 14px;
  }

  .pricing-grid {
    margin-top: 34px;
  }

  .pricing-grid article {
    min-height: 0;
    padding: 28px;
  }

  .price {
    font-size: 70px;
  }

  .review-grid {
    gap: 14px;
    margin-top: 42px;
  }

  .review-grid .tall {
    min-height: 0;
  }

  .review-grid p {
    font-size: 20px;
  }

  .faq-panel {
    padding: 54px 14px;
  }

  .legal-hero {
    min-height: 220px;
    padding: 44px 18px;
  }

  .legal-content {
    padding: 14px;
  }

  summary {
    min-height: 86px;
    padding: 20px;
  }

  summary::after {
    width: 44px;
    height: 44px;
  }

  details p {
    margin: -6px 20px 24px;
  }

  .final-cta,
  .footer {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .final-cta > div,
  .final-cta h2 {
    width: 100%;
  }

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

  .sticky-cta {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 40;
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--blue);
    color: var(--ink);
    box-shadow: 0 18px 50px rgba(11, 18, 32, 0.24);
    font-family: "Archivo Black", Impact, Haettenschweiler, "Arial Black", sans-serif;
    font-size: 14px;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    transform: translateY(92px);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .sticky-cta.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
