:root {
  color-scheme: light;
  --navy: oklch(22% 0.055 253);
  --navy-2: oklch(30% 0.063 251);
  --gold: oklch(70% 0.115 86);
  --gold-soft: oklch(92% 0.045 86);
  --green: oklch(62% 0.17 147);
  --green-dark: oklch(37% 0.12 148);
  --bg: oklch(99% 0.004 250);
  --surface: oklch(96.5% 0.012 238);
  --surface-strong: oklch(93% 0.019 238);
  --ink: oklch(21% 0.035 250);
  --muted: oklch(42% 0.028 250);
  --line: oklch(87% 0.019 242);
  --white: #fff;
  --focus: oklch(64% 0.16 86);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 8px 24px oklch(22% 0.055 253 / 0.12);
  --shadow-tight: 0 6px 14px oklch(22% 0.055 253 / 0.13);
  --container: 1180px;
  --wide: 1590px;
  --header-h: 122px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 34px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--gold-soft);
  color: var(--navy);
}

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

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

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

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  inset: 12px auto auto 12px;
  z-index: 60;
  transform: translateY(-160%);
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section-pad {
  padding-block: clamp(72px, 9vw, 132px);
}

.section-pad--compact {
  padding-block: clamp(54px, 7vw, 92px);
}

main > section[id] {
  scroll-margin-top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  --scroll-progress: 0;
  background: color-mix(in oklch, var(--white) 94%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  transition: box-shadow 220ms ease, background-color 220ms ease;
}

.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  transform: scaleX(var(--scroll-progress));
  transform-origin: left center;
  background: var(--gold);
}

.site-header.is-scrolled {
  box-shadow: 0 6px 12px oklch(22% 0.055 253 / 0.09);
}

.nav-shell {
  min-height: var(--header-h);
  width: min(calc(100% - 32px), 1240px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__mark {
  width: 48px;
  height: 56px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand__text {
  display: grid;
  line-height: 1.08;
}

.brand__text strong,
.footer__brand strong {
  color: var(--navy);
  font-size: 0.98rem;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand__text span,
.footer__brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  padding: 10px 13px;
  transition: background-color 180ms ease, color 180ms ease;
}

.nav-links a:hover {
  background: var(--surface);
  color: var(--navy);
}

.nav-links a.is-active {
  background: var(--navy);
  color: var(--white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 800;
  white-space: nowrap;
}

.nav-phone svg,
.button svg,
.local-chip svg,
.problem-strip svg,
.service-card svg,
.trust-points svg,
.service-area svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.35;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 850;
  line-height: 1;
  padding: 0 18px;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.button:active {
  transform: translateY(0) scale(0.98);
}

.before-after {
  will-change: transform;
}

.button--primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-tight);
}

.button--primary:hover {
  background: var(--navy-2);
}

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

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

.button .whatsapp-icon {
  fill: currentColor;
  stroke: none;
}

.button--large {
  padding-inline: 20px;
}

.button--full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: clip;
  min-height: calc(100svh - var(--header-h));
  background:
    radial-gradient(ellipse at 12% 18%, oklch(95% 0.035 86) 0 14rem, transparent 18rem),
    linear-gradient(135deg, var(--bg), oklch(95.5% 0.012 238) 58%, oklch(90% 0.025 235));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, color-mix(in oklch, var(--navy) 11%, transparent));
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(390px, 0.9fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.hero__copy {
  max-width: 720px;
}

.local-chip,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 850;
}

.local-chip {
  background: var(--white);
  border: 1px solid color-mix(in oklch, var(--line) 72%, transparent);
  border-radius: 999px;
  padding: 9px 13px;
}

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

h1,
h2,
h3 {
  color: var(--navy);
  font-family: var(--font-display);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 10.8ch;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7.4vw, 6rem);
  font-weight: 700;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.1rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.12rem, 1.5vw, 1.45rem);
  font-weight: 700;
}

.hero__lead {
  max-width: 61ch;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
  line-height: 1.58;
  text-wrap: pretty;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.microcopy {
  max-width: 50ch;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 650;
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  max-width: 620px;
  margin: 34px 0 0;
  border: 1px solid color-mix(in oklch, var(--line) 86%, transparent);
  border-radius: var(--radius);
  background: var(--line);
}

.hero__facts div {
  background: color-mix(in oklch, var(--white) 90%, transparent);
  padding: 17px 18px;
}

.hero__facts dt {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.hero__facts dd {
  margin: 5px 0 0;
  color: var(--navy);
  font-size: 0.98rem;
  font-weight: 850;
}

.hero__visual {
  position: relative;
  display: grid;
  align-items: center;
}

.hero-proof {
  position: relative;
  isolation: isolate;
  transform-origin: 52% 58%;
}

.hero-proof::before {
  content: "";
  position: absolute;
  inset: 7% -7% -7% 7%;
  z-index: -1;
  border-radius: 22px;
  background: var(--navy);
  box-shadow: 0 18px 46px oklch(22% 0.055 253 / 0.18);
}

.before-after {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: var(--surface-strong);
  aspect-ratio: 4 / 5;
  transform-origin: center;
  box-shadow: 0 0 0 1px color-mix(in oklch, var(--line) 68%, transparent);
}

.before-after::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, oklch(100% 0 0 / 0.08), transparent 34%),
    linear-gradient(0deg, oklch(18% 0.035 250 / 0.12), transparent 28%);
  pointer-events: none;
}

.before-after--hero {
  aspect-ratio: 0.8;
}

.before-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-after__before {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--reveal, 50%)) 0 0);
}

.before-after__before img {
  position: absolute;
  inset: 0;
}

.before-after::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--reveal, 50%);
  z-index: 3;
  width: 3px;
  transform: translateX(-50%);
  background: var(--white);
  pointer-events: none;
}

.photo-label {
  position: absolute;
  top: 14px;
  z-index: 4;
  border-radius: 999px;
  background: oklch(100% 0 0 / 0.92);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 850;
  padding: 6px 10px;
}

.photo-label--before {
  left: 14px;
}

.photo-label--after {
  right: 14px;
}

.before-after__range {
  position: absolute;
  inset: auto 16px 16px;
  z-index: 4;
  width: calc(100% - 32px);
  accent-color: var(--gold);
  cursor: ew-resize;
}

.hero-card {
  position: absolute;
  right: -28px;
  bottom: 34px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 12px;
  width: min(310px, 78%);
  align-items: center;
  border-radius: var(--radius);
  background: var(--white);
  padding: 14px;
  box-shadow: 0 10px 22px oklch(22% 0.055 253 / 0.16);
}

.hero-card img {
  width: 52px;
  height: 60px;
  object-fit: contain;
}

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

.hero-card strong {
  color: var(--navy);
  font-weight: 850;
}

.hero-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

/* Reference hero/navbar treatment from the supplied image. */
.site-header {
  background: color-mix(in oklch, var(--white) 97%, transparent);
  border-bottom: 1px solid color-mix(in oklch, var(--line) 76%, transparent);
  box-shadow: none;
}

.site-header::after {
  display: none;
}

.site-header.is-scrolled {
  background: color-mix(in oklch, var(--white) 98%, transparent);
  box-shadow: 0 10px 26px oklch(22% 0.055 253 / 0.06);
}

.nav-shell {
  width: min(calc(100% - 96px), var(--wide));
  min-height: var(--header-h);
  gap: clamp(24px, 4vw, 72px);
}

.brand {
  gap: 14px;
}

.brand__mark {
  width: 64px;
  height: 64px;
}

.brand__text {
  line-height: 0.94;
}

.brand__text strong {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 1.6vw, 2rem);
  font-weight: 700;
}

.brand__text span {
  margin-top: 8px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.34em;
}

.nav-links {
  gap: clamp(18px, 2.3vw, 42px);
  margin-left: auto;
}

.nav-links a {
  position: relative;
  border-radius: 0;
  color: var(--navy);
  font-size: 1rem;
  padding: 10px 0 18px;
}

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

.nav-links a::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  transform: translateX(50%) scale(0.72);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-links a.is-active::after,
.nav-links a:hover::after {
  opacity: 1;
  transform: translateX(50%) scale(1);
}

.nav-actions {
  gap: 18px;
  margin-left: clamp(16px, 2vw, 42px);
}

.nav-phone {
  min-height: 56px;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  padding: 0 22px;
  box-shadow: 0 8px 20px oklch(22% 0.055 253 / 0.04);
}

.nav-call {
  min-height: 56px;
  border-radius: 12px;
  padding-inline: 24px;
}

body.menu-open {
  overflow: hidden;
}

.nav-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  box-shadow: 0 8px 20px oklch(22% 0.055 253 / 0.05);
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav-menu-toggle:hover {
  border-color: color-mix(in oklch, var(--gold) 58%, var(--line));
  background: color-mix(in oklch, var(--gold-soft) 42%, var(--white));
}

.nav-menu-toggle:active {
  transform: scale(0.97);
}

.nav-menu-toggle__line {
  grid-area: 1 / 1;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 220ms ease, opacity 180ms ease;
}

.nav-menu-toggle__line:nth-child(1) {
  transform: translateY(-7px);
}

.nav-menu-toggle__line:nth-child(3) {
  transform: translateY(7px);
}

.site-header.is-menu-open .nav-menu-toggle__line:nth-child(1) {
  transform: rotate(45deg);
}

.site-header.is-menu-open .nav-menu-toggle__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.35);
}

.site-header.is-menu-open .nav-menu-toggle__line:nth-child(3) {
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero {
  min-height: calc(100svh - var(--header-h));
  background:
    radial-gradient(ellipse 34rem 25rem at 0% 22%, color-mix(in oklch, var(--gold-soft) 50%, transparent), transparent 72%),
    radial-gradient(ellipse 45rem 38rem at 88% 36%, oklch(91% 0.028 238 / 0.95), transparent 68%),
    linear-gradient(135deg, var(--white) 0%, var(--bg) 46%, oklch(97% 0.01 238) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-radial-gradient(ellipse at 1% 7%, oklch(81% 0.08 86 / 0.18) 0 1px, transparent 1px 5px),
    repeating-radial-gradient(ellipse at 100% 100%, oklch(81% 0.08 86 / 0.16) 0 1px, transparent 1px 6px);
  mask:
    radial-gradient(ellipse 24rem 20rem at 0% 12%, #000 0 42%, transparent 72%),
    radial-gradient(ellipse 22rem 14rem at 100% 100%, #000 0 38%, transparent 72%);
  opacity: 0.9;
  pointer-events: none;
}

.hero::after {
  display: none;
}

.hero.section-pad {
  padding-block: clamp(46px, 3.1vw, 58px) clamp(42px, 5vw, 62px);
}

.hero .container {
  width: min(calc(100% - 96px), var(--wide));
}

.hero__grid {
  grid-template-columns: minmax(560px, 620px) minmax(0, 1fr);
  gap: clamp(54px, 4.1vw, 78px);
  align-items: start;
}

.hero__copy {
  max-width: 620px;
  padding-top: clamp(4px, 1.2vw, 18px);
}

.local-chip {
  margin-bottom: 18px;
  border-color: oklch(85% 0.055 86);
  background: oklch(98% 0.018 86);
  color: oklch(50% 0.095 86);
  padding: 9px 16px;
}

.hero-title {
  display: grid;
  max-width: 7.4ch;
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-size: clamp(4.25rem, 5.75vw, 6.75rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-title span {
  display: block;
}

.hero-title__accent {
  color: var(--gold);
}

.hero__lead {
  max-width: 58ch;
  margin-bottom: 30px;
  color: oklch(39% 0.042 253);
  font-size: clamp(1.06rem, 1.18vw, 1.24rem);
  line-height: 1.48;
}

.hero__actions {
  gap: 24px;
  margin-bottom: 24px;
}

.hero__actions .button {
  min-height: 58px;
  border-radius: 12px;
  padding-inline: 28px;
  font-size: 1rem;
}

.microcopy {
  display: inline-flex;
  max-width: none;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
  color: oklch(43% 0.037 253);
  font-size: 0.93rem;
}

.microcopy svg {
  width: 18px;
  height: 18px;
  color: oklch(44% 0.052 253);
}

.hero__facts {
  max-width: 690px;
  margin-top: 0;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 16px 34px oklch(22% 0.055 253 / 0.11);
}

.hero__facts div {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  column-gap: 16px;
  align-items: center;
  min-height: 106px;
  padding: 18px 22px;
}

.hero__facts dt,
.hero__facts dd {
  grid-column: 2;
}

.hero__facts dt {
  align-self: end;
  color: oklch(49% 0.035 253);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero__facts dd {
  align-self: start;
  font-size: 1.05rem;
  line-height: 1.28;
}

.hero-fact__icon {
  grid-row: 1 / span 2;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in oklch, var(--gold-soft) 70%, var(--white));
  color: var(--gold);
}

.hero__visual {
  align-self: center;
  --hero-card-clearance: clamp(34px, 4vw, 62px);
  margin-top: 0;
  justify-items: end;
  padding-bottom: var(--hero-card-clearance);
  translate: 0 calc(var(--hero-card-clearance) / 2);
}

.hero-media {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  overflow: hidden;
  border-radius: 16px;
  filter: drop-shadow(0 12px 22px oklch(22% 0.055 253 / 0.09));
}

.hero-reference {
  width: 100%;
  max-width: none;
  margin-left: auto;
}

.hero-comparison.before-after {
  width: 100%;
  max-height: 720px;
  aspect-ratio: 1.34 / 1;
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 0 0 1px color-mix(in oklch, var(--line) 70%, transparent);
  cursor: ew-resize;
  touch-action: pan-y;
}

.hero-comparison.before-after::before {
  z-index: 3;
  background:
    linear-gradient(180deg, oklch(100% 0 0 / 0.1), transparent 30%),
    linear-gradient(90deg, oklch(13% 0.04 253 / 0.3), transparent 44%, transparent 58%, oklch(100% 0 0 / 0.08));
}

.hero-comparison.before-after::after {
  z-index: 4;
  width: 2px;
  box-shadow: 0 0 0 1px oklch(100% 0 0 / 0.42);
}

.hero-comparison > .before-after__image,
.hero-comparison .before-after__before img {
  object-position: center 55%;
}

.hero-compare__label {
  position: absolute;
  top: 22px;
  z-index: 6;
  display: inline-grid;
  min-height: 42px;
  place-items: center;
  border-radius: 10px;
  padding: 0 18px;
  font-size: 0.88rem;
  font-weight: 900;
  box-shadow: 0 10px 20px oklch(22% 0.055 253 / 0.14);
  pointer-events: none;
}

.hero-compare__label--before {
  left: 24px;
  background: var(--navy);
  color: var(--white);
}

.hero-compare__label--after {
  right: 24px;
  background: color-mix(in oklch, var(--white) 94%, transparent);
  color: var(--navy);
}

.before-after__handle {
  position: absolute;
  top: 50%;
  left: var(--reveal, 50%);
  z-index: 5;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid color-mix(in oklch, var(--line) 70%, transparent);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 12px 26px oklch(22% 0.055 253 / 0.18);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.before-after__handle svg {
  width: 22px;
  height: 22px;
  stroke-width: 3;
}

.hero-comparison .before-after__range {
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  appearance: none;
  -webkit-appearance: none;
}

.hero-comparison .before-after__range::-webkit-slider-runnable-track {
  height: 100%;
  background: transparent;
}

.hero-comparison .before-after__range::-webkit-slider-thumb {
  width: 54px;
  height: 100%;
  border: 0;
  background: transparent;
  cursor: ew-resize;
  -webkit-appearance: none;
}

.hero-comparison .before-after__range::-moz-range-track {
  height: 100%;
  background: transparent;
}

.hero-comparison .before-after__range::-moz-range-thumb {
  width: 54px;
  height: 100%;
  border: 0;
  background: transparent;
  cursor: ew-resize;
}

.hero-trust-card {
  position: absolute;
  right: clamp(18px, 3vw, 42px);
  bottom: calc(var(--hero-card-clearance) + clamp(12px, 1.4vw, 20px));
  z-index: 2;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 15px;
  width: min(430px, 68%);
  align-items: center;
  margin: 0;
  border: 1px solid color-mix(in oklch, var(--line) 58%, transparent);
  border-radius: 14px;
  background: var(--white);
  padding: 14px 16px;
  box-shadow:
    0 8px 18px oklch(22% 0.055 253 / 0.1),
    inset 0 1px 0 oklch(100% 0 0 / 0.82);
}

.hero-trust-card__icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 11px;
  background: color-mix(in oklch, var(--gold-soft) 72%, var(--white));
  color: var(--gold);
}

.hero-trust-card__icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.9;
}

.hero-trust-card strong,
.hero-trust-card span {
  display: block;
}

.hero-trust-card strong {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.25;
}

.hero-trust-card__content > span {
  margin-top: 6px;
  color: oklch(42% 0.04 253);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.38;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 13px;
  white-space: nowrap;
}

.hero-trust-card .hero-rating__avatars {
  display: flex;
  align-items: center;
}

.hero-rating__avatars img {
  width: 26px;
  height: 26px;
  border: 2px solid var(--white);
  border-radius: 50%;
  object-fit: cover;
}

.hero-rating__avatars img + img {
  margin-left: -8px;
}

.hero-rating__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1;
}

.hero-rating__score {
  color: oklch(38% 0.045 253);
  font-size: 0.94rem;
  font-weight: 850;
}

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(30px, 5vw, 56px);
}

.section-heading p:not(.section-kicker),
.process__intro p,
.faq__intro p,
.contact__copy p {
  max-width: 68ch;
  color: var(--muted);
  font-size: 1.05rem;
  text-wrap: pretty;
}

.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.62fr);
  gap: 34px;
  align-items: end;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.problem {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(ellipse 42rem 48rem at 86% 42%, oklch(91% 0.027 238 / 0.9), transparent 70%),
    linear-gradient(135deg, var(--white), var(--bg) 54%, oklch(97% 0.012 238));
}

.problem::before,
.problem::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.problem::before {
  inset: auto auto 8% 0;
  width: 250px;
  height: 220px;
  background-image: radial-gradient(oklch(69% 0.08 238 / 0.38) 1px, transparent 1.8px);
  background-size: 16px 16px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 92%);
}

.problem::after {
  right: -110px;
  bottom: -110px;
  width: 420px;
  height: 260px;
  border-radius: 50%;
  background: repeating-radial-gradient(ellipse at center, oklch(81% 0.08 86 / 0.26) 0 1px, transparent 1px 7px);
  opacity: 0.7;
}

.problem__container {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 96px), var(--wide));
}

.problem.section-pad--compact {
  padding-block: clamp(56px, 5vw, 78px);
}

.problem__header {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.55fr);
  gap: clamp(40px, 6vw, 92px);
  align-items: start;
  margin-bottom: 26px;
}

.problem-kicker {
  margin-bottom: 20px;
  border: 1px solid oklch(88% 0.04 86);
  border-radius: 999px;
  background: oklch(97% 0.022 86);
  color: oklch(50% 0.095 86);
  padding: 9px 16px;
}

.problem-kicker svg {
  width: 18px;
  height: 18px;
}

.problem__header h2 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(3.45rem, 4.35vw, 5rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.98;
}

.problem__intro {
  display: grid;
  grid-template-columns: 1px minmax(0, 1fr);
  gap: 34px;
  padding-top: 70px;
}

.problem__intro span {
  display: block;
  width: 1px;
  height: 128px;
  background: linear-gradient(var(--gold-soft), var(--gold), var(--gold-soft));
  position: relative;
}

.problem__intro span::after {
  content: "✦";
  position: absolute;
  bottom: -12px;
  left: 50%;
  color: var(--gold);
  font-size: 18px;
  transform: translateX(-50%);
  content: "\2726";
}

.problem__intro p {
  max-width: 34ch;
  margin: 0;
  color: oklch(30% 0.045 253);
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.55;
}

.problem__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(430px, 0.95fr);
  gap: clamp(34px, 4.6vw, 68px);
  align-items: start;
}

.problem__left {
  display: grid;
  gap: 16px;
}

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

.problem-card {
  position: relative;
  min-height: 218px;
  border: 1px solid color-mix(in oklch, var(--line) 78%, transparent);
  border-radius: 12px;
  background: color-mix(in oklch, var(--white) 96%, transparent);
  box-shadow: 0 12px 26px oklch(22% 0.055 253 / 0.07);
  padding: 22px 26px 20px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.problem-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px oklch(22% 0.055 253 / 0.1);
}

.problem-card img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px oklch(22% 0.055 253 / 0.08));
}

.problem-card__number {
  position: absolute;
  top: 24px;
  right: 22px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
}

.problem-card h3 {
  max-width: 12ch;
  margin: 16px 0 10px;
  color: var(--navy);
  font-size: clamp(1.34rem, 1.45vw, 1.62rem);
  font-weight: 700;
  line-height: 1.08;
}

.problem-card p {
  margin: 0;
  color: oklch(36% 0.04 253);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.48;
}

.problem-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid color-mix(in oklch, var(--line) 78%, transparent);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 12px 26px oklch(22% 0.055 253 / 0.07);
}

.problem-stats div {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  column-gap: 14px;
  align-items: center;
  min-height: 76px;
  padding: 12px 26px;
}

.problem-stats div + div {
  border-left: 1px solid oklch(84% 0.056 86);
}

.problem-stats span {
  grid-row: 1 / span 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: oklch(96% 0.025 86);
  color: var(--gold);
}

.problem-stats strong {
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.1;
}

.problem-stats p {
  margin: 2px 0 0;
  color: oklch(39% 0.035 253);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.25;
}

.problem-photo {
  position: relative;
  overflow: hidden;
  height: clamp(560px, 31vw, 610px);
  min-height: 100%;
  margin: 0;
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 18px 34px oklch(22% 0.055 253 / 0.12);
}

.problem-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.problem-photo figcaption {
  position: absolute;
  right: 34px;
  bottom: 46px;
  left: 34px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border-radius: 12px;
  background: var(--white);
  color: var(--navy);
  padding: 24px 30px;
  box-shadow: 0 12px 28px oklch(22% 0.055 253 / 0.16);
}

.problem-photo figcaption span {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--gold);
  box-shadow: 0 10px 22px oklch(22% 0.055 253 / 0.11);
}

.problem-photo figcaption svg {
  width: 30px;
  height: 30px;
  stroke-width: 2.1;
}

.problem-photo figcaption strong {
  max-width: 23ch;
  font-size: clamp(1.06rem, 1.2vw, 1.22rem);
  font-weight: 900;
  line-height: 1.28;
}

.services {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(ellipse 44rem 28rem at 50% 18%, oklch(100% 0 0), transparent 68%),
    linear-gradient(180deg, oklch(99% 0.006 86), var(--white) 54%, oklch(98% 0.008 86));
}

.services::before,
.services::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.services::before {
  inset: 0 auto auto -90px;
  width: 520px;
  height: 420px;
  border-radius: 48%;
  background: repeating-radial-gradient(ellipse at center, oklch(82% 0.07 86 / 0.22) 0 1px, transparent 1px 8px);
  opacity: 0.58;
  transform: rotate(-18deg);
}

.services::after {
  right: 0;
  bottom: -42px;
  width: 340px;
  height: 260px;
  background-image: radial-gradient(oklch(78% 0.08 86 / 0.34) 1px, transparent 1.8px);
  background-size: 15px 15px;
  mask-image: linear-gradient(270deg, #000 0%, transparent 92%);
  opacity: 0.72;
}

.services__container,
.services-carousel {
  position: relative;
  z-index: 1;
}

.services-heading {
  max-width: 1220px;
  margin-bottom: clamp(34px, 3.6vw, 50px);
}

.services-kicker {
  justify-content: center;
  gap: 22px;
  color: var(--gold);
  font-size: 1rem;
}

.services-kicker span {
  color: var(--gold);
  font-size: 0.95rem;
  line-height: 1;
}

.services-heading h2 {
  max-width: 1160px;
  margin-inline: auto;
  font-size: clamp(3rem, 3.8vw, 4.6rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
}

.services-heading p:not(.section-kicker) {
  max-width: 680px;
  margin-inline: auto;
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.55;
}

.services-carousel {
  width: 100%;
}

.services-carousel__viewport {
  width: min(calc(100% - 108px), 1800px);
  margin-inline: auto;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 38px), transparent 100%);
  mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 38px), transparent 100%);
}

.services-carousel__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  padding: 4px 0 8px;
}

.services-carousel__track::-webkit-scrollbar {
  display: none;
}

.services-carousel__track.is-dragging {
  cursor: grabbing;
}

.service-card,
.trust-points div,
.quote-form,
.accordion details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-card {
  display: flex;
  flex: 0 0 clamp(344px, 20vw, 382px);
  min-height: 342px;
  flex-direction: column;
  padding: 26px 28px 24px;
  box-shadow: 0 14px 30px oklch(22% 0.055 253 / 0.08);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.service-card:hover {
  border-color: color-mix(in oklch, var(--gold) 58%, var(--line));
  transform: translateY(-3px);
  box-shadow: 0 18px 38px oklch(22% 0.055 253 / 0.12);
}

.service-card__icon {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 12px 24px oklch(22% 0.055 253 / 0.16);
}

.service-card__icon img {
  width: 51px;
  height: 51px;
  object-fit: contain;
  pointer-events: none;
}

.service-card h3 {
  margin: 20px 0 12px;
  color: var(--navy);
  font-size: clamp(1.42rem, 1.35vw, 1.65rem);
  font-weight: 700;
  line-height: 1.08;
}

.service-card p {
  margin: 0 0 24px;
  color: oklch(34% 0.04 253);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.58;
}

.service-card__benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  margin: auto 0 0;
  overflow: hidden;
  border: 1px solid color-mix(in oklch, var(--line) 60%, transparent);
  border-radius: 12px;
  background: color-mix(in oklch, var(--white) 90%, var(--gold-soft));
}

.service-card__benefits span {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 6px;
  justify-content: center;
  padding: 8px 12px;
  color: oklch(32% 0.037 253);
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.service-card__benefits span + span {
  border-left: 1px solid color-mix(in oklch, var(--line) 68%, transparent);
}

.service-card__benefits svg,
.trust-points svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.services-carousel__button {
  position: absolute;
  top: 44%;
  right: max(28px, calc((100vw - 1800px) / 2 + 10px));
  z-index: 3;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--gold);
  box-shadow: 0 14px 28px oklch(22% 0.055 253 / 0.16);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.services-carousel__button:hover {
  transform: translateX(3px);
  box-shadow: 0 18px 34px oklch(22% 0.055 253 / 0.2);
}

.services-carousel__button svg {
  width: 28px;
  height: 28px;
  stroke-width: 2.5;
}

.services-carousel__progress {
  position: relative;
  width: min(880px, calc(100% - 42vw));
  min-width: 360px;
  height: 8px;
  margin: 48px auto 0;
  border-radius: 999px;
  background: oklch(83% 0.012 86);
  cursor: pointer;
}

.services-carousel__progress span {
  position: absolute;
  top: 0;
  left: var(--service-progress-left, 0%);
  width: var(--service-progress-width, 22%);
  height: 100%;
  border-radius: inherit;
  background: var(--gold);
  box-shadow: 0 3px 10px oklch(64% 0.1 86 / 0.18);
}

.services-carousel__hint {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 28px 0 0;
  color: oklch(32% 0.045 253);
  font-size: 1rem;
  font-weight: 650;
}

.services-carousel__hint-icon {
  display: inline-grid;
  width: 42px;
  height: 32px;
  place-items: center;
  border: 1px solid color-mix(in oklch, var(--gold) 44%, var(--line));
  border-radius: 999px;
  background: color-mix(in oklch, var(--white) 84%, var(--gold-soft));
  color: var(--gold);
  box-shadow: 0 8px 16px oklch(22% 0.055 253 / 0.08);
}

.services-carousel__hint-icon svg {
  width: 23px;
  height: 23px;
  color: var(--navy);
  stroke-width: 2.1;
}

.trust-points span,
.accordion p,
.quote-form p,
.footer p {
  color: var(--muted);
}

.process {
  color: var(--white);
}

.process--story {
  position: relative;
  overflow: clip;
  padding-block: clamp(78px, 7.3vw, 128px);
  background:
    radial-gradient(ellipse 50rem 36rem at 62% 18%, oklch(27% 0.074 253 / 0.56), transparent 72%),
    linear-gradient(135deg, oklch(12% 0.052 253), oklch(17% 0.06 253) 52%, oklch(11% 0.046 253));
}

.process-story__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(620px, 1.22fr);
  gap: clamp(36px, 5vw, 96px);
  align-items: center;
}

.process-story__copy {
  max-width: 580px;
}

.process-story__kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 32px;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 850;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.process-story__kicker span {
  display: block;
  width: 44px;
  height: 2px;
  background: var(--gold);
}

.process-story__copy h2 {
  max-width: 16.5ch;
  margin: 0 0 28px;
  color: var(--white);
  font-size: clamp(3rem, 3.8vw, 4.6rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.process-story__copy h2 span,
.process-story__copy h2 strong {
  display: block;
}

.process-story__copy h2 strong {
  color: var(--gold);
  font: inherit;
  margin-top: 0.14em;
  font-size: 0.82em;
  line-height: 1.08;
}

.process-story__copy > p {
  max-width: 58ch;
  color: oklch(86% 0.016 245);
  font-size: 1.06rem;
  font-weight: 550;
  line-height: 1.65;
}

.process-story__proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  margin: clamp(34px, 4vw, 54px) 0 30px;
}

.process-story__proof div {
  display: grid;
  gap: 12px;
  color: oklch(86% 0.016 245);
  font-size: 0.86rem;
  line-height: 1.5;
}

.process-story__proof svg {
  width: 32px;
  height: 32px;
  color: var(--gold);
  stroke-width: 1.7;
}

.process-story__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.process-story__cta {
  min-height: 64px;
  border: 1px solid oklch(78% 0.12 86);
  border-radius: 16px;
  background: linear-gradient(180deg, oklch(78% 0.115 86), var(--gold));
  color: oklch(14% 0.045 253);
  padding-inline: 30px;
  box-shadow: 0 16px 30px oklch(8% 0.04 253 / 0.24);
}

.process-story__phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 750;
}

.process-story__phone span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--white);
}

.process-story__timeline {
  position: relative;
  display: grid;
  gap: 16px;
  padding-left: 118px;
}

.process-story__axis {
  position: absolute;
  top: 0;
  left: 4px;
  width: 110px;
  height: 100%;
  overflow: visible;
}

.process-axis__track,
.process-axis__progress {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-axis__track {
  stroke: oklch(78% 0.11 86 / 0.22);
  stroke-width: 2;
}

.process-axis__progress {
  stroke: var(--gold);
  stroke-width: 2.4;
}

.process-axis__marker circle {
  fill: oklch(16% 0.055 253);
  stroke: var(--gold);
  stroke-width: 1.6;
}

.process-axis__marker text {
  fill: var(--white);
  font-family: var(--font-body);
  font-size: 30px;
  font-weight: 850;
  text-anchor: middle;
}

.process-step {
  position: relative;
}

.process-step__card {
  display: grid;
  grid-template-columns: minmax(230px, 0.92fr) minmax(260px, 1fr);
  gap: clamp(22px, 3vw, 42px);
  align-items: center;
  min-height: 206px;
  border: 1px solid oklch(70% 0.08 86 / 0.32);
  border-radius: 18px;
  background: oklch(18% 0.056 253 / 0.72);
  padding: 20px 34px 20px 24px;
  box-shadow: inset 0 1px 0 oklch(100% 0 0 / 0.05);
  backdrop-filter: blur(10px);
}

.process-step__media {
  display: grid;
  min-height: 160px;
  place-items: center;
  overflow: visible;
  border-radius: 0;
  background: transparent;
}

.process-step__media img {
  width: 100%;
  max-height: 174px;
  border-radius: 0;
  object-fit: contain;
  filter: drop-shadow(0 16px 22px oklch(6% 0.03 253 / 0.24));
}

.process-step--one .process-step__media img {
  max-height: 190px;
}

.process-step--three .process-step__media img,
.process-step--four .process-step__media img {
  max-height: 170px;
}

.process-step__content h3 {
  max-width: 13ch;
  margin: 0 0 14px;
  color: oklch(95% 0.018 86);
  font-size: clamp(1.85rem, 2.1vw, 2.45rem);
  font-weight: 700;
  line-height: 1.05;
}

.process-step__content p {
  max-width: 31ch;
  margin: 0;
  color: oklch(84% 0.016 245);
  font-size: 1rem;
  font-weight: 550;
  line-height: 1.58;
}

.results {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(ellipse 52rem 34rem at 94% 10%, oklch(92% 0.03 238), transparent 68%),
    linear-gradient(180deg, var(--white), var(--bg));
}

.results.results--scroll-driven {
  z-index: 1;
  overflow-x: clip;
  overflow-y: visible;
  padding-bottom: 0;
}

.results-showcase {
  display: grid;
  gap: clamp(26px, 4vw, 44px);
}

.results-showcase__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(310px, 0.62fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: end;
}

.results-story__kicker {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 4px;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 850;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.results-story__kicker span {
  display: block;
  width: 44px;
  height: 2px;
  background: var(--gold);
}

.results-showcase__intro .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.results-showcase__intro h2 {
  grid-column: 1;
  max-width: 16ch;
  margin-bottom: 0;
}

.results-showcase__intro p:not(.section-kicker):not(.results-story__kicker) {
  grid-column: 2;
  max-width: 52ch;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 1.07rem;
  text-wrap: pretty;
}

.results-showcase__layout {
  display: grid;
  gap: clamp(18px, 3vw, 30px);
}

.results-scroll {
  --rail-edge: max(20px, calc((100vw - var(--container)) / 2));
  --results-fixed-gap: clamp(30px, 3.5svh, 40px);
  min-width: 0;
  position: relative;
}

.results-scroll__viewport {
  width: calc(100vw - var(--rail-edge));
  max-width: calc(100vw - var(--rail-edge));
  overflow-x: auto;
  overflow-y: visible;
  margin-right: calc(var(--rail-edge) * -1);
  padding: 2px 0 4px;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}

.results-scroll__viewport::-webkit-scrollbar {
  display: none;
}

.results-scroll.is-scroll-driven .results-scroll__viewport {
  overflow: clip;
  padding-bottom: var(--results-fixed-gap);
  scroll-snap-type: none;
}

.results-scroll.is-scroll-driven .results-scroll__viewport::after {
  content: "";
  position: absolute;
  right: calc(var(--rail-edge) * -1);
  bottom: 0;
  left: 0;
  z-index: 3;
  height: var(--results-fixed-gap);
  background: var(--bg);
  pointer-events: none;
}

.results-scroll.is-scroll-driven .results-scroll__viewport::-webkit-scrollbar {
  display: none;
}

.results-scroll__track {
  display: flex;
  width: max-content;
  align-items: stretch;
  gap: clamp(14px, 2.1vw, 28px);
  padding-right: var(--rail-edge);
  will-change: transform;
}

@media (min-width: 900px) {
  .results-scroll.is-scroll-driven {
    display: block;
    min-height: calc(var(--results-scroll-length, 1600px) + var(--results-sticky-height, 620px));
  }

  .results-scroll.is-scroll-driven .results-scroll__viewport {
    position: sticky;
    top: var(--results-sticky-top, calc(var(--header-h) + 16px));
    z-index: 2;
    align-self: start;
    touch-action: pan-y;
  }

  .results-scroll.is-scroll-driven .results-scroll__track {
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 899px) {
  .results.results--scroll-driven {
    overflow: clip;
  }

  .results-scroll.is-scroll-driven {
    min-height: 0;
  }

  .results-scroll.is-scroll-driven .results-scroll__viewport {
    position: static;
    overflow-x: auto;
    overflow-y: visible;
  }

  .results-scroll__track {
    transform: none !important;
  }
}

.result-item {
  --card-width: min(76vw, 560px);
  position: relative;
  display: grid;
  flex: 0 0 var(--card-width);
  overflow: hidden;
  border: 1px solid color-mix(in oklch, var(--line) 76%, transparent);
  border-radius: 16px;
  background: var(--white);
  scroll-snap-align: start;
}

.result-item--wide {
  --card-width: min(86vw, 760px);
}

.result-item--slide .before-after {
  min-height: 0;
  height: clamp(430px, calc(100svh - var(--results-sticky-top, 122px) - var(--results-fixed-gap)), 1040px);
  aspect-ratio: auto;
  border-radius: 0;
  box-shadow: none;
}

.result-item--slide .photo-label {
  top: 56px;
}

.result-item__badge {
  position: absolute;
  left: 14px;
  bottom: 54px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid oklch(100% 0 0 / 0.16);
  border-radius: 9px;
  background: oklch(19% 0.045 253 / 0.88);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 850;
  padding: 8px 10px;
  box-shadow: 0 8px 14px oklch(12% 0.045 253 / 0.18);
}

.result-item__badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
}

.material-method {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(ellipse 44rem 28rem at 12% 0%, oklch(70% 0.11 86 / 0.18), transparent 72%),
    radial-gradient(ellipse 36rem 24rem at 100% 88%, oklch(48% 0.08 238 / 0.28), transparent 74%),
    linear-gradient(135deg, oklch(22% 0.058 253), oklch(15% 0.044 253));
  color: var(--white);
}

.material-method__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.05fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
}

.material-method .section-kicker {
  color: var(--gold);
}

.material-method h2 {
  max-width: 12ch;
  color: var(--white);
}

.material-method__copy p {
  max-width: 58ch;
  color: oklch(87% 0.018 238);
  font-weight: 650;
}

.material-method__note {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  max-width: 590px;
  margin-top: 30px;
  border-left: 2px solid var(--gold);
  background: oklch(100% 0 0 / 0.07);
  color: oklch(92% 0.014 238);
  font-size: 0.98rem;
  font-weight: 750;
  line-height: 1.45;
  padding: 18px 18px 18px 20px;
}

.material-method__note svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
  stroke-width: 2.3;
}

.material-method__panel {
  border: 1px solid oklch(100% 0 0 / 0.16);
  border-radius: 18px;
  background:
    linear-gradient(180deg, oklch(100% 0 0 / 0.11), oklch(100% 0 0 / 0.055));
  padding: clamp(18px, 3vw, 30px);
  box-shadow: 0 24px 58px oklch(8% 0.035 253 / 0.26);
}

.material-method__sample {
  display: grid;
  min-height: clamp(170px, 18vw, 230px);
  grid-template-columns: 1.1fr 0.9fr 1fr 0.82fr;
  overflow: hidden;
  border: 1px solid oklch(100% 0 0 / 0.14);
  border-radius: 15px;
  background: oklch(17% 0.04 253);
}

.material-method__sample span {
  position: relative;
  display: flex;
  align-items: end;
  color: oklch(96% 0.012 238);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 18px;
}

.material-method__sample span::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 0 42%, oklch(0% 0 0 / 0.28)),
    repeating-linear-gradient(90deg, oklch(100% 0 0 / 0.08) 0 1px, transparent 1px 10px);
}

.material-method__sample span:nth-child(1) {
  background: oklch(45% 0.035 78);
}

.material-method__sample span:nth-child(2) {
  background: oklch(58% 0.018 80);
}

.material-method__sample span:nth-child(3) {
  background: oklch(34% 0.04 246);
}

.material-method__sample span:nth-child(4) {
  background: oklch(72% 0.028 86);
  color: var(--navy);
}

.material-method__flow {
  display: grid;
  gap: 1px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.material-method__flow li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  border-top: 1px solid oklch(100% 0 0 / 0.14);
  padding: 18px 0;
}

.material-method__flow li:first-child {
  border-top: 0;
}

.material-method__flow li > span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 2.05rem;
  font-weight: 700;
  line-height: 0.9;
}

.material-method__flow strong {
  display: block;
  color: var(--white);
  font-size: 1.02rem;
  font-weight: 900;
}

.material-method__flow p {
  margin: 6px 0 0;
  color: oklch(83% 0.017 238);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.46;
}

.drying-guide {
  background:
    radial-gradient(ellipse 44rem 28rem at 16% 44%, color-mix(in oklch, var(--gold-soft) 48%, transparent), transparent 72%),
    radial-gradient(ellipse 36rem 24rem at 84% 62%, color-mix(in oklch, var(--surface) 68%, transparent), transparent 76%),
    linear-gradient(180deg, var(--white), color-mix(in oklch, var(--bg) 82%, var(--white)));
}

.drying-guide__grid {
  display: grid;
  grid-template-columns: minmax(330px, 1fr) minmax(300px, 0.78fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: center;
}

.drying-guide__rail {
  position: relative;
  display: grid;
  gap: 16px;
  border: 1px solid color-mix(in oklch, var(--line) 82%, transparent);
  border-radius: 18px;
  background:
    linear-gradient(180deg, color-mix(in oklch, var(--white) 93%, var(--gold-soft)), var(--white));
  padding: clamp(22px, 3vw, 34px);
  box-shadow: 0 20px 44px oklch(22% 0.055 253 / 0.11);
}

.drying-guide__rail::before {
  position: absolute;
  top: 88px;
  bottom: 34px;
  left: clamp(48px, 5vw, 62px);
  width: 2px;
  border-radius: 999px;
  background: color-mix(in oklch, var(--gold) 70%, var(--line));
  content: "";
}

.drying-guide__eyebrow {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.drying-guide__time {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.drying-guide__time > span {
  display: inline-flex;
  width: 62px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in oklch, var(--gold) 52%, var(--line));
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 950;
  box-shadow: 0 8px 20px oklch(22% 0.055 253 / 0.08);
}

.drying-guide__time div {
  padding-bottom: 6px;
}

.drying-guide__time strong {
  display: block;
  color: var(--navy);
  font-size: 1.04rem;
  font-weight: 950;
}

.drying-guide__time p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.48;
}

.drying-guide__copy h2 {
  max-width: 12ch;
}

.drying-guide__copy > p:not(.section-kicker) {
  max-width: 54ch;
  color: var(--muted);
  font-size: 1.04rem;
  font-weight: 600;
}

.drying-guide__checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.drying-guide__checks div {
  min-height: 190px;
  border: 1px solid color-mix(in oklch, var(--line) 82%, transparent);
  border-radius: 14px;
  background: var(--white);
  padding: 18px;
}

.drying-guide__checks svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
  stroke-width: 2.3;
}

.drying-guide__checks strong {
  display: block;
  margin-top: 22px;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 950;
}

.drying-guide__checks span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.45;
}

.trust {
  background:
    linear-gradient(180deg, var(--surface), var(--white));
}

.trust-local__grid {
  display: grid;
  grid-template-columns: minmax(290px, 0.72fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 46px);
  align-items: stretch;
}

.trust__panel {
  display: grid;
  align-content: center;
  justify-items: start;
  border: 1px solid color-mix(in oklch, var(--line) 78%, transparent);
  border-radius: 16px;
  padding: clamp(26px, 5vw, 48px);
}

.trust-local__identity {
  background:
    radial-gradient(ellipse 18rem 16rem at 18% 12%, color-mix(in oklch, var(--gold-soft) 56%, transparent), transparent 72%),
    var(--white);
}

.trust__panel img {
  width: 104px;
  margin-bottom: 20px;
}

.trust__panel p {
  color: var(--muted);
}

.trust-local__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  color: var(--navy);
  font-weight: 900;
}

.trust-local__phone svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.trust-local__proof {
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in oklch, var(--line) 78%, transparent);
  border-radius: 16px;
  background: var(--white);
  padding: clamp(20px, 4vw, 34px);
}

.trust-local__route {
  position: relative;
  height: 92px;
  margin-bottom: 14px;
  border-radius: 12px;
  background:
    linear-gradient(90deg, transparent 0 8%, color-mix(in oklch, var(--line) 64%, transparent) 8% 8.4%, transparent 8.4% 100%),
    linear-gradient(0deg, transparent 0 32%, color-mix(in oklch, var(--line) 64%, transparent) 32% 32.5%, transparent 32.5% 100%),
    var(--surface);
}

.trust-local__route::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 11%;
  top: 50%;
  height: 2px;
  transform: translateY(-50%) scaleX(var(--route-progress, 1));
  transform-origin: left center;
  background: linear-gradient(90deg, var(--gold), color-mix(in oklch, var(--navy) 72%, var(--gold)));
}

.trust-local__route span {
  position: absolute;
  top: 50%;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--gold);
  transform: translate(-50%, -50%);
}

.trust-local__route span:nth-child(1) {
  left: 12%;
}

.trust-local__route span:nth-child(2) {
  left: 52%;
}

.trust-local__route span:nth-child(3) {
  left: 88%;
  background: var(--navy);
}

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

.trust-points div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 6px 12px;
  align-items: start;
  border-radius: 12px;
  padding: 16px;
  transition: transform 200ms ease, background-color 200ms ease, border-color 200ms ease;
}

.trust-points div:hover {
  background: color-mix(in oklch, var(--white) 86%, var(--gold-soft));
  transform: translateY(-2px);
}

.trust-points strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.trust-points svg {
  grid-row: span 2;
}

.trust-points span {
  color: var(--muted);
}

.faq {
  background:
    linear-gradient(90deg, var(--bg), color-mix(in oklch, var(--surface) 78%, var(--white)));
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: start;
}

.faq__intro {
  position: sticky;
  top: calc(var(--header-h) + 26px);
}

.faq__quick-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  border: 1px solid color-mix(in oklch, var(--gold) 52%, var(--line));
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-weight: 900;
  padding: 12px 15px;
}

.faq__quick-link svg {
  width: 20px;
  height: 20px;
  color: var(--green);
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  transition: background-color 180ms ease, border-color 180ms ease;
}

.accordion details[open] {
  border-color: color-mix(in oklch, var(--gold) 45%, var(--line));
  background: color-mix(in oklch, var(--white) 84%, var(--gold-soft));
}

.accordion summary {
  position: relative;
  cursor: pointer;
  color: var(--navy);
  font-weight: 850;
  list-style: none;
  padding: 20px 54px 20px 20px;
}

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

.accordion summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 900;
}

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

.accordion p {
  margin: -6px 20px 20px;
}

.contact {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(ellipse 42rem 30rem at 10% 8%, oklch(70% 0.115 86 / 0.18), transparent 72%),
    radial-gradient(ellipse 40rem 26rem at 94% 96%, oklch(62% 0.17 147 / 0.13), transparent 74%),
    linear-gradient(135deg, oklch(23% 0.058 253), oklch(15% 0.044 253) 72%),
    var(--navy);
  color: var(--white);
}

.contact h2,
.contact .section-kicker {
  color: var(--white);
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 0.78fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
}

.contact h2 {
  max-width: 12ch;
}

.contact__copy p {
  max-width: 60ch;
  color: oklch(88% 0.018 238);
  font-weight: 650;
}

.contact-direct {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.contact-direct__item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border: 1px solid oklch(100% 0 0 / 0.18);
  border-radius: 14px;
  background: oklch(100% 0 0 / 0.08);
  color: var(--white);
  padding: 16px;
  transition: transform 200ms ease, background-color 200ms ease, border-color 200ms ease;
}

.contact-direct__item:hover {
  background: oklch(100% 0 0 / 0.13);
  border-color: oklch(100% 0 0 / 0.28);
  transform: translateY(-2px);
}

.contact-direct__item > svg {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: oklch(100% 0 0 / 0.08);
  color: var(--gold);
  padding: 13px;
  stroke-width: 2.3;
}

.contact-direct__item small {
  display: block;
  margin-bottom: 2px;
  color: oklch(88% 0.018 238);
  font-size: 0.78rem;
  font-weight: 850;
}

.contact-direct__item strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.22;
}

.contact-direct__item--green > svg {
  color: oklch(78% 0.16 148);
}

.contact-reassurance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 610px;
  margin-top: 26px;
}

.contact-reassurance article {
  border: 1px solid oklch(100% 0 0 / 0.14);
  border-radius: 14px;
  background: oklch(100% 0 0 / 0.055);
  padding: 14px;
}

.contact-reassurance span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.34rem;
  font-weight: 700;
  line-height: 0.95;
}

.contact-reassurance strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  font-weight: 950;
}

.contact-reassurance p {
  margin: 4px 0 0;
  color: oklch(82% 0.018 238);
  font-size: 0.84rem;
  line-height: 1.44;
}

.quote-form {
  position: relative;
  overflow: hidden;
  border: 1px solid oklch(100% 0 0 / 0.18);
  border-radius: 18px;
  background:
    radial-gradient(ellipse 24rem 18rem at 100% 0%, color-mix(in oklch, var(--gold-soft) 56%, transparent), transparent 74%),
    linear-gradient(180deg, color-mix(in oklch, var(--white) 96%, var(--surface)), var(--white));
  padding: clamp(22px, 4vw, 34px);
  color: var(--ink);
  box-shadow: 0 28px 60px oklch(8% 0.035 253 / 0.28);
}

.quote-form::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), color-mix(in oklch, var(--green) 68%, var(--gold)));
  content: "";
}

.quote-form__header {
  margin-bottom: 24px;
}

.quote-form__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-form__tag svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.4;
}

.quote-form h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.2vw, 3.2rem);
  font-weight: 700;
  line-height: 0.98;
}

.quote-form p {
  max-width: 46ch;
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 650;
}

.quote-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  border: 0;
  padding: 0;
}

.quote-choice legend,
.quote-field label {
  display: block;
  margin: 0 0 9px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 850;
}

.quote-choice legend {
  grid-column: 1 / -1;
}

.quote-choice label {
  position: relative;
  cursor: pointer;
}

.quote-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.quote-choice span {
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: color-mix(in oklch, var(--white) 78%, var(--surface));
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 900;
  padding: 12px 13px;
  transition: border-color 170ms ease, background-color 170ms ease, box-shadow 170ms ease, transform 170ms ease;
}

.quote-choice svg {
  width: 19px;
  height: 19px;
  color: var(--gold);
  stroke-width: 2.35;
}

.quote-choice input:checked + span {
  border-color: color-mix(in oklch, var(--gold) 70%, var(--line));
  background: color-mix(in oklch, var(--gold-soft) 64%, var(--white));
  box-shadow: inset 0 0 0 1px color-mix(in oklch, var(--gold) 35%, transparent);
}

.quote-choice input:focus-visible + span {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.quote-choice label:hover span {
  transform: translateY(-1px);
}

.quote-form__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.quote-field {
  margin-top: 18px;
}

.quote-form__fields .quote-field {
  margin-top: 0;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: color-mix(in oklch, var(--white) 86%, var(--surface));
  color: var(--ink);
  padding: 14px 15px;
  font-weight: 650;
  transition: border-color 170ms ease, box-shadow 170ms ease, background-color 170ms ease;
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px color-mix(in oklch, var(--gold-soft) 70%, transparent);
  outline: 0;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: oklch(44% 0.028 250);
}

.quote-form__photo-note {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-top: 18px;
  border: 1px solid color-mix(in oklch, var(--line) 78%, transparent);
  border-radius: 14px;
  background: color-mix(in oklch, var(--surface) 76%, var(--white));
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.42;
  padding: 14px;
}

.quote-form__photo-note svg {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--gold);
  padding: 11px;
  stroke-width: 2.35;
}

.quote-form__photo-note strong {
  display: block;
  margin-bottom: 2px;
  color: var(--navy);
  font-weight: 950;
}

.quote-form__submit {
  width: 100%;
  min-height: 54px;
  justify-content: center;
  margin-top: 18px;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 12px 22px oklch(37% 0.12 148 / 0.2);
}

.quote-form__submit:hover {
  background: color-mix(in oklch, var(--green) 88%, var(--navy));
  transform: translateY(-1px);
}

.footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid color-mix(in oklch, var(--line) 72%, transparent);
  background: color-mix(in oklch, var(--surface) 42%, var(--white));
  color: var(--navy);
  padding: clamp(28px, 4vw, 44px) 0 calc(18px + env(safe-area-inset-bottom));
}

.footer::before {
  display: none;
}

.footer__shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

.footer__main {
  display: grid;
  grid-template-columns: minmax(290px, 1.1fr) minmax(180px, 0.95fr) max-content;
  gap: clamp(24px, 5vw, 74px);
  align-items: center;
  padding: 2px 0;
}

.footer__identity {
  display: grid;
  gap: 12px;
}

.footer__brand img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: color-mix(in oklch, var(--gold-soft) 34%, var(--white));
  padding: 5px;
  object-fit: contain;
}

.footer__brand span {
  display: grid;
  gap: 5px;
  line-height: 1;
}

.footer__brand strong {
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0;
}

.footer__brand small {
  display: block;
  color: oklch(56% 0.105 78);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.footer__identity p {
  max-width: 47ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.55;
}

.footer__spacer {
  min-height: 1px;
}

.footer__contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
}

.footer__contact::before {
  display: none;
}

.footer__contact::before {
  content: "Kontakt";
}

.footer__phone,
.footer__whatsapp {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 0 14px;
  font-size: 0.9rem;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.footer__phone {
  border: 1px solid color-mix(in oklch, var(--line) 82%, transparent);
  background: color-mix(in oklch, var(--white) 72%, transparent);
  color: var(--navy);
}

.footer__whatsapp {
  border: 1px solid color-mix(in oklch, var(--gold) 30%, var(--line));
  background: color-mix(in oklch, var(--gold-soft) 42%, var(--white));
  color: var(--navy);
}

.footer__phone:hover,
.footer__whatsapp:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px oklch(22% 0.055 253 / 0.05);
}

.footer__phone svg,
.footer__whatsapp svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.35;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid color-mix(in oklch, var(--line) 72%, transparent);
  padding-top: 16px;
  color: color-mix(in oklch, var(--muted) 78%, var(--navy));
  font-size: 0.82rem;
  font-weight: 650;
}

@media (max-width: 980px) {
  .footer__main {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .footer__spacer {
    display: none;
  }

  .footer__contact {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .footer {
    padding-top: 28px;
  }

  .footer__main {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0;
  }

  .footer__contact::before {
    grid-column: 1 / -1;
  }

  .footer__contact {
    gap: 10px;
  }

  .footer__phone,
  .footer__whatsapp {
    width: auto;
  }

  .footer__bottom {
    display: grid;
    gap: 6px;
  }
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.motion-fallback [data-animate="nav"] {
  animation: navDrop 700ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.motion-fallback [data-animate="hero-copy"] > * {
  animation: heroRise 820ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.motion-fallback [data-animate="hero-copy"] > :nth-child(2) {
  animation-delay: 80ms;
}

.motion-fallback [data-animate="hero-copy"] > :nth-child(3) {
  animation-delay: 150ms;
}

.motion-fallback [data-animate="hero-copy"] > :nth-child(4) {
  animation-delay: 220ms;
}

.motion-fallback [data-animate="hero-visual"] {
  animation: heroPhotoReveal 900ms cubic-bezier(0.16, 1, 0.3, 1) 180ms both;
}

.motion-fallback .motion-fallback__item {
  opacity: 0;
  transform: translateY(38px) scale(0.985);
  filter: blur(9px);
  transition:
    opacity 680ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 680ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 680ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--fallback-delay, 0ms);
  will-change: opacity, transform, filter;
}

.motion-fallback .motion-fallback__item.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.motion-lite .motion-fallback__item {
  transform: translateY(14px);
  filter: blur(3px);
  transition-duration: 460ms;
}

@keyframes navDrop {
  from {
    opacity: 0;
    transform: translateY(-24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroRise {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(42px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes heroPhotoReveal {
  from {
    opacity: 0;
    clip-path: inset(12% 18% 18% 0 round 18px);
    transform: translateX(42px) scale(0.96);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0 round 18px);
    transform: translateX(0) scale(1);
  }
}

@media (max-width: 980px) {
  :root {
    --header-h: 72px;
  }

  .nav-shell {
    width: min(calc(100% - 24px), 1240px);
  }

  .brand__mark {
    width: 42px;
    height: 50px;
  }

  .brand__text span,
  .nav-links,
  .nav-phone {
    display: none;
  }

  .nav-menu-toggle {
    display: grid;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    bottom: -3px;
    z-index: 80;
    display: block;
    min-height: calc(100dvh + 3px);
    overflow-y: auto;
    color: var(--white);
    background:
      radial-gradient(circle at 82% 12%, oklch(34% 0.08 253 / 0.72), transparent 34rem),
      radial-gradient(circle at 14% 86%, oklch(48% 0.09 86 / 0.22), transparent 28rem),
      linear-gradient(145deg, oklch(13% 0.054 253), oklch(17% 0.056 253) 58%, oklch(10% 0.044 246));
    clip-path: inset(0 0 100% 0);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      clip-path 440ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 260ms ease,
      transform 440ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 440ms;
    visibility: hidden;
  }

  .mobile-menu::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
      linear-gradient(oklch(100% 0 0 / 0.045) 1px, transparent 1px),
      linear-gradient(90deg, oklch(100% 0 0 / 0.035) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(180deg, oklch(0% 0 0 / 0.45), transparent 74%);
  }

  .mobile-menu.is-open {
    clip-path: inset(0 0 0 0);
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition:
      clip-path 520ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 260ms ease,
      transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s;
    visibility: visible;
  }

  .mobile-menu__inner {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 100dvh;
    width: min(calc(100% - 32px), 720px);
    margin-inline: auto;
    padding:
      calc(env(safe-area-inset-top) + 20px)
      0
      calc(env(safe-area-inset-bottom) + 28px);
  }

  .mobile-menu__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 56px;
  }

  .mobile-menu__brand {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 12px;
  }

  .mobile-menu__brand img {
    width: 46px;
    height: 46px;
    object-fit: contain;
  }

  .mobile-menu__brand span {
    display: grid;
    gap: 4px;
    line-height: 1;
  }

  .mobile-menu__brand strong {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.28rem;
    font-weight: 700;
    white-space: nowrap;
  }

  .mobile-menu__brand small {
    color: var(--gold);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.26em;
    text-transform: uppercase;
  }

  .mobile-menu__close {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid oklch(100% 0 0 / 0.18);
    border-radius: 12px;
    background: oklch(100% 0 0 / 0.08);
    color: var(--white);
    cursor: pointer;
    transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
  }

  .mobile-menu__close:hover {
    border-color: oklch(70% 0.115 86 / 0.72);
    background: oklch(100% 0 0 / 0.13);
  }

  .mobile-menu__close:active {
    transform: scale(0.96);
  }

  .mobile-menu__close svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.4;
  }

  .mobile-menu__nav {
    display: grid;
    align-content: center;
    gap: 0;
    padding-block: clamp(28px, 8dvh, 78px);
  }

  .mobile-menu__link {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    align-items: baseline;
    border-top: 1px solid oklch(100% 0 0 / 0.14);
    padding: clamp(13px, 2.8dvh, 24px) 0;
    color: var(--white);
    opacity: 0;
    transform: translateY(18px);
    transition:
      border-color 180ms ease,
      color 180ms ease,
      opacity 260ms ease,
      transform 260ms ease;
  }

  .mobile-menu__link:last-child {
    border-bottom: 1px solid oklch(100% 0 0 / 0.14);
  }

  .mobile-menu.is-open .mobile-menu__link {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(52ms + var(--menu-index, 0) * 26ms);
  }

  .mobile-menu__link:nth-child(1) {
    --menu-index: 0;
  }

  .mobile-menu__link:nth-child(2) {
    --menu-index: 1;
  }

  .mobile-menu__link:nth-child(3) {
    --menu-index: 2;
  }

  .mobile-menu__link:nth-child(4) {
    --menu-index: 3;
  }

  .mobile-menu__link:nth-child(5) {
    --menu-index: 4;
  }

  .mobile-menu__link:nth-child(6) {
    --menu-index: 5;
  }

  .mobile-menu__link:hover,
  .mobile-menu__link.is-active {
    border-color: oklch(70% 0.115 86 / 0.58);
    color: var(--gold);
  }

  .mobile-menu__index {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 900;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.12em;
  }

  .mobile-menu__link strong {
    display: block;
    color: currentColor;
    font-family: var(--font-display);
    font-size: clamp(2.35rem, 10.6vw, 5.2rem);
    font-weight: 700;
    line-height: 0.86;
    text-wrap: balance;
  }

  .mobile-menu__link small {
    display: block;
    margin-top: 8px;
    color: oklch(88% 0.018 245 / 0.72);
    font-size: clamp(0.78rem, 2.8vw, 0.98rem);
    font-weight: 700;
    letter-spacing: 0.02em;
  }

  .mobile-menu__contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-self: end;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 260ms ease 210ms, transform 260ms ease 210ms;
  }

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

  .mobile-menu__contact a {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid oklch(100% 0 0 / 0.15);
    border-radius: 14px;
    background: oklch(100% 0 0 / 0.08);
    color: var(--white);
    font-weight: 900;
    transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
  }

  .mobile-menu__contact a:hover {
    border-color: oklch(70% 0.115 86 / 0.7);
    background: oklch(100% 0 0 / 0.13);
  }

  .mobile-menu__contact a:active {
    transform: translateY(1px) scale(0.99);
  }

  .mobile-menu__contact svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.35;
  }

  .hero__grid,
  .problem__grid,
  .process__grid,
  .trust__grid,
  .material-method__grid,
  .drying-guide__grid,
  .trust-local__grid,
  .faq__grid,
  .contact__grid,
  .section-heading--split {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 34px;
  }

  .hero {
    min-height: 0;
  }

  .hero__copy {
    max-width: none;
  }

  h1 {
    max-width: 10ch;
  }

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

  .hero-card {
    right: 14px;
    bottom: 20px;
  }

  .process__intro {
    position: static;
  }

  .services-carousel__viewport {
    width: min(calc(100% - 32px), 900px);
  }

  .services-carousel__track {
    gap: 14px;
    padding-inline: 18px;
  }

  .service-card {
    flex-basis: min(82vw, 352px);
    min-height: 338px;
  }

  .services-carousel__button {
    right: 22px;
    width: 54px;
    height: 54px;
  }

  .services-carousel__progress {
    width: min(620px, calc(100% - 96px));
    min-width: 0;
  }

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

  .results-showcase__intro,
  .results-showcase__layout {
    grid-template-columns: 1fr;
  }

  .results-story__kicker,
  .results-showcase__intro .section-kicker,
  .results-showcase__intro h2,
  .results-showcase__intro p:not(.section-kicker):not(.results-story__kicker) {
    grid-column: 1;
  }

  .results-showcase__intro h2 {
    max-width: 16ch;
  }

  .results-scroll {
    --rail-edge: 28px;
  }

  .result-item {
    --card-width: min(78vw, 490px);
  }

  .result-item--wide {
    --card-width: min(84vw, 620px);
  }

  .faq__intro {
    position: static;
  }

  .material-method h2,
  .drying-guide__copy h2 {
    max-width: 14ch;
  }

  .drying-guide {
    background:
      radial-gradient(ellipse 32rem 18rem at 0% 0%, color-mix(in oklch, var(--gold-soft) 62%, transparent), transparent 78%),
      linear-gradient(180deg, var(--white), var(--bg));
  }

  .before-after:not(.before-after--hero) {
    aspect-ratio: 4 / 4.7;
  }

  .result-item--slide .before-after {
    height: auto;
    aspect-ratio: 4 / 3.2;
  }

  .result-item--wide .before-after {
    height: auto;
    aspect-ratio: 16 / 10.5;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 82px;
  }

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

  .section-pad {
    padding-block: 62px;
  }

  .section-pad--compact {
    padding-block: 48px;
  }

  .site-header {
    backdrop-filter: blur(12px);
  }

  .nav-actions .button {
    display: none;
  }

  .brand__text strong {
    max-width: 20ch;
    overflow: hidden;
    font-size: 0.92rem;
    text-overflow: ellipsis;
  }

  .hero {
    padding-top: 28px;
  }

  h1 {
    font-size: clamp(2.36rem, 13vw, 3.25rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.1rem);
  }

  .hero__actions,
  .contact-direct,
  .quote-form__fields,
  .quote-choice {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__facts {
    display: none;
  }

  .local-chip {
    align-items: flex-start;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
  }

  .problem-strip {
    display: grid;
    grid-template-columns: 1fr;
  }

  .problem-photo {
    min-height: 280px;
  }

  .results-showcase__intro {
    gap: 14px;
  }

  .results-showcase__intro h2 {
    max-width: 12ch;
  }

  .results-story__kicker {
    gap: 12px;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
  }

  .results-story__kicker span {
    width: 30px;
  }

  .results-scroll {
    --rail-edge: 14px;
  }

  .results-scroll__track {
    gap: 12px;
  }

  .result-item,
  .result-item--wide {
    --card-width: min(86vw, 370px);
  }

  .result-item--slide .before-after,
  .result-item--wide .before-after {
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 1.06;
  }

  .trust-points {
    grid-template-columns: 1fr;
  }

  .material-method__panel,
  .drying-guide__rail,
  .drying-guide__checks div {
    border-radius: 14px;
  }

  .material-method__sample {
    min-height: 220px;
    grid-template-columns: 1fr 1fr;
  }

  .material-method__flow li {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .material-method__flow li > span {
    font-size: 1.7rem;
  }

  .drying-guide__rail::before {
    left: 52px;
  }

  .drying-guide__time {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .drying-guide__checks {
    grid-template-columns: 1fr;
  }

  .drying-guide__checks div {
    min-height: 0;
  }

  .trust-local__route {
    height: 78px;
  }

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

  .services-heading h2 {
    font-size: clamp(2.55rem, 12vw, 3.8rem);
  }

  .services-heading p:not(.section-kicker) {
    font-size: 1rem;
  }

  .services-carousel__viewport {
    width: 100%;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .services-carousel__track {
    gap: 12px;
    padding: 4px 14px 8px;
  }

  .service-card {
    flex-basis: min(88vw, 342px);
    min-height: 320px;
    padding: 24px 24px 16px;
  }

  .service-card__icon {
    width: 68px;
    height: 68px;
  }

  .service-card__icon img {
    width: 48px;
    height: 48px;
  }

  .service-card h3 {
    margin-top: 20px;
    font-size: 1.55rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }

.service-card__benefits {
    margin-inline: 0;
  }

  .service-card__benefits span {
    font-size: 0.62rem;
    padding-inline: 8px;
  }

  .services-carousel__button {
    display: none;
  }

  .services-carousel__progress {
    width: calc(100% - 72px);
    height: 7px;
    margin-top: 32px;
  }

  .services-carousel__hint {
    gap: 8px;
    margin-top: 20px;
    padding-inline: 18px;
    font-size: 0.9rem;
    text-align: center;
  }

  .hero-card {
    position: static;
    width: auto;
    margin: 12px 0 0;
    box-shadow: none;
  }

  .contact h2 {
    max-width: 11ch;
  }

  .contact-direct__item {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 14px;
  }

  .contact-direct__item > svg {
    width: 44px;
    height: 44px;
  }

  .contact-reassurance article {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
  }

  .contact-reassurance {
    grid-template-columns: 1fr;
  }

  .contact-reassurance span {
    grid-row: 1 / span 2;
  }

  .contact-reassurance strong,
  .contact-reassurance p {
    grid-column: 2;
  }

  .contact-reassurance p {
    max-width: none;
    font-size: 0.94rem;
  }

  .process-story__timeline {
    padding-left: 0;
  }

  .process-story__axis {
    display: none;
  }

  .quote-form {
    padding: 26px 18px 20px;
  }

  .quote-form h3 {
    font-size: clamp(2rem, 11vw, 2.75rem);
  }

  .quote-choice span {
    min-height: 48px;
  }

  .quote-form__photo-note {
    grid-template-columns: 1fr;
  }

  .quote-form__photo-note svg {
    width: 38px;
    height: 38px;
  }

  .footer__grid {
    display: grid;
  }

}

@media (max-width: 420px) {
  .brand__text strong {
    max-width: 16ch;
  }

  .nav-shell {
    gap: 12px;
  }

}

@media (max-width: 1180px) {
  .nav-shell,
  .hero .container {
    width: min(calc(100% - 40px), var(--wide));
  }

  .problem__container {
    width: min(calc(100% - 40px), var(--wide));
  }

  .problem__header,
  .problem__grid {
    grid-template-columns: 1fr;
  }

  .problem__intro {
    grid-template-columns: 1px minmax(0, 1fr);
    padding-top: 0;
  }

  .problem__intro span {
    height: 88px;
  }

  .problem-photo > img {
    min-height: 520px;
  }

  .problem-photo {
    height: auto;
  }

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

  .hero__copy {
    max-width: 680px;
    padding-top: 0;
  }

  .hero__visual {
    margin-top: 0;
    padding-bottom: var(--hero-card-clearance);
    translate: none;
  }

  .hero-media {
    width: min(100%, 980px);
    margin-inline: auto;
  }

  .nav-links {
    gap: 22px;
  }

  .nav-phone {
    padding-inline: 16px;
  }

  .process-story__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .process-story__copy {
    max-width: 760px;
  }

  .process-story__copy h2 {
    max-width: 17ch;
    font-size: clamp(2.8rem, 6.2vw, 4.25rem);
  }

  .process-story__timeline {
    padding-left: 102px;
  }
}

@media (max-width: 980px) {
  .nav-shell {
    width: min(calc(100% - 28px), var(--wide));
  }

  .brand__mark {
    width: 44px;
    height: 44px;
  }

  .brand__text strong {
    font-size: 1.18rem;
  }

  .nav-call {
    min-height: 48px;
    padding-inline: 18px;
  }

  .hero.section-pad {
    padding-block: 46px 54px;
  }

  .hero .container {
    width: min(calc(100% - 36px), var(--wide));
  }

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

  .hero__copy {
    max-width: 650px;
    padding-top: 0;
  }

  .hero-title {
    max-width: 7.2ch;
    font-size: clamp(4.1rem, 13vw, 6.1rem);
  }

  .hero__visual {
    margin-top: 0;
  }

  .hero-media {
    width: min(100%, 920px);
    margin-inline: auto;
  }

  .hero-trust-card {
    right: clamp(16px, 4vw, 34px);
    bottom: calc(var(--hero-card-clearance) + 16px);
    width: min(430px, 66%);
  }

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

  .problem-card {
    min-height: 210px;
  }
}

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

  .brand {
    gap: 10px;
  }

  .brand__text span {
    display: block;
    margin-top: 5px;
    font-size: 0.64rem;
    letter-spacing: 0.28em;
  }

  .brand__text strong {
    max-width: none;
    overflow: visible;
    font-size: 1.02rem;
    text-overflow: clip;
  }

  .hero {
    background:
      radial-gradient(ellipse 19rem 16rem at 0% 16%, color-mix(in oklch, var(--gold-soft) 64%, transparent), transparent 72%),
      radial-gradient(ellipse 22rem 18rem at 96% 46%, oklch(91% 0.028 238 / 0.94), transparent 70%),
      linear-gradient(135deg, var(--white), var(--bg));
  }

  .hero.section-pad {
    padding-block: 30px 44px;
  }

  .hero-title {
    max-width: 7ch;
    font-size: clamp(3.55rem, 18vw, 4.7rem);
    line-height: 0.92;
  }

  .hero__lead {
    font-size: 1.03rem;
  }

  .hero__actions {
    gap: 12px;
    margin-bottom: 18px;
  }

  .hero__actions .button {
    min-height: 54px;
    border-radius: 14px;
  }

  .microcopy {
    align-items: flex-start;
    margin-bottom: 18px;
    line-height: 1.45;
  }

  .hero__visual {
    padding-bottom: 0;
  }

  .hero-media {
    width: calc(100% + 22px);
    margin-left: -11px;
    border-radius: 14px;
    filter: drop-shadow(0 9px 16px oklch(22% 0.055 253 / 0.1));
  }

  .hero-comparison.before-after {
    aspect-ratio: 1 / 1.04;
    border-radius: 14px;
  }

  .hero-compare__label {
    top: 14px;
    min-height: 34px;
    border-radius: 9px;
    padding: 0 13px;
    font-size: 0.76rem;
  }

  .hero-compare__label--before {
    left: 14px;
  }

  .hero-compare__label--after {
    right: 14px;
  }

  .before-after__handle {
    width: 44px;
    height: 44px;
  }

  .hero-trust-card {
    position: relative;
    right: auto;
    bottom: auto;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    width: calc(100% - 22px);
    margin: -18px auto 0;
    border-radius: 14px;
    padding: 16px;
    box-shadow:
      0 8px 18px oklch(22% 0.055 253 / 0.1),
      inset 0 1px 0 oklch(100% 0 0 / 0.84);
  }

  .hero-trust-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 10px;
  }

  .hero-trust-card__icon svg {
    width: 28px;
    height: 28px;
  }

  .hero-trust-card strong {
    font-size: 0.94rem;
  }

  .hero-trust-card__content > span {
    font-size: 0.84rem;
  }

  .hero-rating {
    gap: 10px;
    margin-top: 11px;
  }

  .hero-rating__stars {
    font-size: 0.9rem;
    letter-spacing: 0.06em;
  }

  .hero-rating__avatars img {
    width: 22px;
    height: 22px;
  }

  .problem.section-pad--compact {
    padding-block: 56px;
  }

  .problem__container {
    width: min(calc(100% - 28px), var(--wide));
  }

  .problem__header {
    gap: 24px;
    margin-bottom: 26px;
  }

  .problem__header h2 {
    font-size: clamp(3rem, 15vw, 4.2rem);
  }

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

  .problem__intro span {
    display: none;
  }

  .problem__intro p {
    font-size: 1rem;
  }

  .problem-cards,
  .problem-stats {
    grid-template-columns: 1fr;
  }

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

  .problem-card h3 {
    max-width: none;
    margin-top: 16px;
  }

  .problem-stats div + div {
    border-top: 1px solid oklch(84% 0.056 86);
    border-left: 0;
  }

  .problem-photo > img {
    min-height: 420px;
  }

  .problem-photo {
    height: auto;
  }

  .problem-photo figcaption {
    right: 16px;
    bottom: 16px;
    left: 16px;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
  }

  .problem-photo figcaption span {
    width: 52px;
    height: 52px;
  }

  .problem-photo figcaption strong {
    font-size: 0.98rem;
  }

  .process--story {
    padding-block: 64px 72px;
  }

  .process-story__grid {
    width: min(calc(100% - 28px), var(--wide));
  }

  .process-story__kicker {
    margin-bottom: 22px;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
  }

  .process-story__kicker span {
    width: 34px;
  }

  .process-story__copy h2 {
    max-width: 13ch;
    font-size: clamp(2.15rem, 9.2vw, 2.85rem);
    line-height: 1.04;
  }

  .process-story__copy h2 strong {
    font-size: 0.86em;
  }

  .process-story__copy > p {
    font-size: 1rem;
  }

  .process-story__proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-block: 32px 28px;
  }

  .process-story__actions {
    display: grid;
    gap: 14px;
  }

  .process-story__cta {
    width: 100%;
    justify-content: center;
  }

  .process-story__phone {
    justify-content: center;
  }

  .process-story__timeline {
    gap: 18px;
    padding-left: 70px;
  }

  .process-story__axis {
    left: 0;
    width: 58px;
  }

  .process-step {
    display: block;
  }

  .process-step__card {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: auto;
    border-radius: 16px;
    padding: 16px;
  }

  .process-step__media {
    min-height: 150px;
  }

  .process-step__media img {
    max-height: 154px;
  }

  .process-step__content h3 {
    max-width: none;
    font-size: 1.85rem;
  }

  .process-step__content p {
    max-width: none;
    font-size: 0.95rem;
  }
}

@media (max-width: 420px) {
  .brand__text strong {
    max-width: none;
  }

  .hero-title {
    font-size: clamp(3.1rem, 16vw, 4rem);
  }

  .process-story__proof {
    grid-template-columns: 1fr;
  }

  .process-step {
    display: block;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 0;
  }

  .mobile-menu__inner {
    width: min(calc(100% - 32px), 460px);
    padding:
      calc(env(safe-area-inset-top) + 18px)
      0
      calc(env(safe-area-inset-bottom) + 22px);
  }

  .mobile-menu__nav {
    align-content: start;
    padding-block: clamp(18px, 4dvh, 30px);
  }

  .mobile-menu__link {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    padding: clamp(9px, 1.9dvh, 14px) 0;
  }

  .mobile-menu__link strong {
    font-size: clamp(1.9rem, 8.2vw, 2.8rem);
    line-height: 0.92;
  }

  .mobile-menu__link small {
    margin-top: 4px;
    font-size: 0.74rem;
  }

  .mobile-menu__contact {
    margin-top: 8px;
  }

  .process-story__timeline {
    padding-left: 0;
  }

  .process-story__axis {
    display: none;
  }

  .process-step__card {
    width: 100%;
    margin-inline: 0;
  }

  .process-step__media {
    min-height: clamp(260px, 78vw, 340px);
  }

  .process-step__media img,
  .process-step--one .process-step__media img,
  .process-step--three .process-step__media img,
  .process-step--four .process-step__media img {
    width: min(100%, 330px);
    max-height: clamp(245px, 72vw, 320px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .motion-lite .motion-fallback__item {
    transition-duration: 460ms !important;
    animation-duration: 460ms !important;
  }
}
