:root {
  --aqua: #aabdd4;
  --pink: #f4a2c9;
  --mint: #dfeade;
  --sea: #d3e6e6;
  --cloud: #f4f4f4;
  --ink: #141414;
  --soft-ink: #303b38;
  --muted: #68716f;
  --line: rgba(20, 20, 20, 0.1);
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(50, 89, 84, 0.17);
  --radius: 8px;
  --page-pad: clamp(20px, 5vw, 76px);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(244, 244, 244, 0.9), rgba(255, 255, 255, 0.2) 42rem),
    var(--white);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 7% 18%, rgba(170, 189, 212, 0.42), transparent 24%),
    radial-gradient(circle at 87% 9%, rgba(244, 162, 201, 0.12), transparent 24%),
    radial-gradient(circle at 80% 78%, rgba(223, 234, 222, 0.56), transparent 28%);
  z-index: -4;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(244, 162, 201, 0.78);
  outline-offset: 4px;
}

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

.ambient-bubbles {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.ambient-bubbles span,
.story-section::before,
.story-section::after {
  position: absolute;
  display: block;
  border-radius: 50%;
  background:
    radial-gradient(circle at 31% 24%, rgba(255, 255, 255, 0.95), transparent 16%),
    radial-gradient(circle at 68% 62%, rgba(244, 162, 201, 0.2), transparent 30%),
    radial-gradient(circle at 41% 72%, rgba(170, 189, 212, 0.38), transparent 34%),
    rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(71, 116, 110, 0.15);
  box-shadow: inset -14px -18px 30px rgba(170, 189, 212, 0.12);
}

.ambient-bubbles span {
  opacity: 0.72;
  animation: bubbleFloat 11s ease-in-out infinite;
  transform: translate3d(0, var(--bubble-y, 0), 0);
}

.ambient-bubbles span:nth-child(1) {
  width: 84px;
  height: 84px;
  left: 5vw;
  top: 20vh;
}

.ambient-bubbles span:nth-child(2) {
  width: 138px;
  height: 138px;
  right: 8vw;
  top: 14vh;
  animation-delay: -3s;
}

.ambient-bubbles span:nth-child(3) {
  width: 52px;
  height: 52px;
  left: 44vw;
  top: 10vh;
  animation-delay: -5s;
}

.ambient-bubbles span:nth-child(4) {
  width: 116px;
  height: 116px;
  left: 13vw;
  bottom: 9vh;
  animation-delay: -2s;
}

.ambient-bubbles span:nth-child(5) {
  width: 62px;
  height: 62px;
  right: 28vw;
  bottom: 16vh;
  animation-delay: -7s;
}

.ambient-bubbles span:nth-child(6) {
  width: 180px;
  height: 180px;
  right: -42px;
  bottom: 31vh;
  animation-delay: -4s;
}

@keyframes bubbleFloat {
  0%,
  100% {
    translate: 0 0;
    scale: 1;
  }
  50% {
    translate: 14px -26px;
    scale: 1.035;
  }
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  right: auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1180px, calc(100% - 48px));
  min-height: 72px;
  max-height: 72px;
  padding: 10px 18px 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 50px rgba(26, 43, 39, 0.08);
  transform: translateX(-50%);
  transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease, transform 200ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(20, 20, 20, 0.08);
  box-shadow: 0 18px 54px rgba(26, 43, 39, 0.12);
  transform: translateX(-50%) translateY(-2px);
}

.brand img {
  width: 128px;
  height: 46px;
  aspect-ratio: 2.79 / 1;
  object-fit: contain;
}

.header-link,
.header-cta,
.button {
  transition: color 180ms ease, transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-link:hover {
  color: var(--pink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-link {
  color: var(--soft-ink);
  font-size: 0.92rem;
  font-weight: 820;
  white-space: nowrap;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 880;
  white-space: nowrap;
}

.header-cta,
.button.primary {
  color: var(--white);
  background: var(--pink);
  box-shadow: 0 14px 30px rgba(244, 162, 201, 0.26);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
}

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

.button.wide {
  width: 100%;
}

.story-hero {
  position: relative;
  min-height: 240svh;
  background: #f6fbfb;
  --hero-progress: 0;
  --hero-copy-opacity: 1;
  --hero-copy-y: 0px;
  --hero-video-scale: 1;
}

.hero-sticky {
  position: sticky;
  top: 0;
  display: grid;
  align-items: end;
  min-height: 100svh;
  padding: 104px var(--page-pad) clamp(72px, 12vh, 132px);
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(120deg, rgba(170, 189, 212, 0.46), rgba(223, 234, 222, 0.38));
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(var(--hero-video-scale));
  filter: saturate(1.05) contrast(1.02);
}

.hero-video-sheen {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.62) 24%, rgba(255, 255, 255, 0.16) 58%, rgba(255, 255, 255, 0.05) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.12) 36%, rgba(16, 31, 29, 0.1) 100%);
  opacity: calc(0.96 - (var(--hero-progress) * 0.3));
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 760px;
}

.hero-video-copy {
  align-self: end;
  justify-self: start;
  max-width: min(61vw, 1180px);
  padding-bottom: 0;
  opacity: var(--hero-copy-opacity);
  transform: translate3d(0, var(--hero-copy-y), 0);
  pointer-events: auto;
}

.hero-video-copy h1 {
  font-size: clamp(3rem, 6.8vw, 6.2rem);
  white-space: nowrap;
}

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

h1 {
  margin-bottom: 26px;
  font-size: clamp(3rem, 7.4vw, 7.3rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.25rem, 5.2vw, 5.3rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  font-size: 1.24rem;
  line-height: 1.16;
  letter-spacing: 0;
}

.hero-copy p,
.story-copy p,
.quote-copy p {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.35vw, 1.24rem);
  line-height: 1.68;
}

.hero-video-copy p {
  max-width: 520px;
  color: #3d4c49;
}

.hero-scroll-note {
  position: absolute;
  left: var(--page-pad);
  bottom: 28px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(48, 59, 56, 0.74);
  font-size: 0.86rem;
  font-weight: 840;
  opacity: calc(1 - (var(--hero-progress) * 2));
  transform: translateY(calc(var(--hero-progress) * 22px));
}

.hero-scroll-note span {
  display: block;
  width: 9px;
  height: 32px;
  border: 1px solid rgba(48, 59, 56, 0.34);
  border-radius: 999px;
  position: relative;
}

.hero-scroll-note span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 6px;
  width: 3px;
  height: 7px;
  border-radius: 999px;
  background: var(--pink);
  transform: translateX(-50%);
  animation: scrollDot 1.6s ease-in-out infinite;
}

@keyframes scrollDot {
  0%,
  100% {
    translate: 0 0;
    opacity: 0.4;
  }
  50% {
    translate: 0 11px;
    opacity: 1;
  }
}

.hero-stage {
  position: relative;
  min-height: min(680px, 76vh);
}

.layer {
  --layer-y: 0px;
  will-change: transform;
}

.hero-logo {
  position: absolute;
  z-index: 3;
  top: 6%;
  left: 1%;
  width: clamp(190px, 21vw, 315px);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 70px rgba(76, 102, 96, 0.18);
  transform: translate3d(0, var(--layer-y), 0);
}

.photo-stack {
  position: absolute;
  right: 1%;
  top: 20%;
  width: min(540px, 88%);
  transform: translate3d(0, var(--layer-y), 0) rotate(1.5deg);
}

.photo-stack::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: -1;
  border-radius: var(--radius);
  background: rgba(223, 234, 222, 0.78);
}

.photo-stack img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.care-note,
.spark-card {
  position: absolute;
  z-index: 4;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 52px rgba(35, 67, 62, 0.14);
}

.care-note {
  left: 0;
  bottom: 13%;
  width: 230px;
  transform: translate3d(0, var(--layer-y), 0);
}

.spark-card {
  right: 7%;
  top: 5%;
  width: 210px;
  transform: translate3d(0, var(--layer-y), 0);
}

.care-note strong,
.spark-card strong,
.spark-card span {
  display: block;
}

.care-note span,
.spark-card span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.spark-card span {
  margin: 0 0 7px;
  color: var(--pink);
  font-weight: 860;
  text-transform: lowercase;
}

.story-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(34px, 7vw, 108px);
  min-height: 100svh;
  margin-top: -1px;
  padding: 112px var(--page-pad);
  overflow: hidden;
}

.story-section::before {
  content: "";
  width: 190px;
  height: 190px;
  right: 9vw;
  top: 10vh;
  opacity: 0.32;
}

.story-section::after {
  content: "";
  width: 70px;
  height: 70px;
  left: 8vw;
  bottom: 12vh;
  opacity: 0.24;
}

.story-copy,
.story-visual,
.service-rail,
.product-orbit,
.result-pairs,
.trust-panel,
.process-map,
.faq-list,
.quote-form {
  position: relative;
  z-index: 2;
}

.soft-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.soft-list span {
  padding: 11px 14px;
  color: #2e5d62;
  background: rgba(170, 189, 212, 0.38);
  border: 1px solid rgba(170, 189, 212, 0.72);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 820;
}

.safety {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.76) 72%, rgba(255, 255, 255, 0.92) 100%),
    radial-gradient(circle at 96% 96%, rgba(170, 189, 212, 0.28), transparent 34%),
    radial-gradient(circle at 6% 92%, rgba(244, 162, 201, 0.12), transparent 30%);
}

.image-frame {
  position: relative;
  max-width: 650px;
}

.image-frame::before {
  content: "";
  position: absolute;
  inset: 18px 18px -18px -18px;
  z-index: -1;
  border-radius: var(--radius);
  background: rgba(244, 162, 201, 0.16);
}

.image-frame img {
  width: 100%;
  aspect-ratio: 3.6 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.sofa-compare {
  --compare-position: 54%;
  position: relative;
  width: min(760px, 100%);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  isolation: isolate;
  cursor: ew-resize;
}

.sofa-compare::before {
  content: "";
  position: absolute;
  inset: 18px 18px -18px -18px;
  z-index: -1;
  border-radius: var(--radius);
  background: rgba(244, 162, 201, 0.16);
}

.compare-image,
.compare-clean {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.compare-image {
  object-fit: cover;
}

.compare-clean {
  clip-path: inset(0 calc(100% - var(--compare-position)) 0 0);
  z-index: 2;
}

.compare-bar {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--compare-position);
  z-index: 4;
  width: 2px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 1px rgba(20, 20, 20, 0.08), 0 0 28px rgba(20, 20, 20, 0.16);
  transform: translateX(-50%);
  pointer-events: none;
}

.compare-bar span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(20, 20, 20, 0.1);
  box-shadow: 0 18px 38px rgba(20, 20, 20, 0.18);
  transform: translate(-50%, -50%);
}

.compare-bar span::before,
.compare-bar span::after {
  content: "";
  width: 10px;
  height: 10px;
  border-left: 2px solid var(--soft-ink);
  border-bottom: 2px solid var(--soft-ink);
}

.compare-bar span::before {
  transform: rotate(45deg) translate(2px, -2px);
}

.compare-bar span::after {
  transform: rotate(225deg) translate(2px, -2px);
}

.compare-label {
  position: absolute;
  top: 16px;
  z-index: 5;
  padding: 8px 12px;
  color: var(--soft-ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  pointer-events: none;
}

.compare-label.before {
  right: 16px;
}

.compare-label.after {
  left: 16px;
}

.compare-range {
  position: absolute;
  inset: 0;
  z-index: 6;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.services {
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 6vw, 92px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.48) 12%, rgba(255, 255, 255, 0) 26%, rgba(255, 255, 255, 0) 78%, rgba(232, 241, 238, 0.54) 100%),
    radial-gradient(circle at 2% 92%, rgba(244, 162, 201, 0.22), transparent 32%),
    radial-gradient(circle at 95% 82%, rgba(170, 189, 212, 0.38), transparent 36%),
    radial-gradient(circle at 86% 18%, rgba(223, 234, 222, 0.5), transparent 28%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72));
}

.services::before {
  width: 270px;
  height: 270px;
  right: 12vw;
  top: 6vh;
  opacity: 0.2;
}

.services-copy {
  align-self: center;
}

.services-copy h2 {
  max-width: 620px;
}

.services-copy h2 em {
  color: var(--pink);
  font-style: normal;
}

.services-copy p {
  max-width: 470px;
}

.service-proof {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  padding: 12px 18px;
  color: #596461;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 999px;
  box-shadow: 0 18px 46px rgba(76, 102, 96, 0.08);
  font-size: 0.86rem;
  font-weight: 720;
}

.service-proof span:not(.proof-check) + span::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 12px 2px 0;
  border-radius: 50%;
  background: var(--pink);
}

.proof-check {
  display: inline-grid;
  place-items: center;
  width: 27px;
  height: 27px;
  color: var(--pink);
  border: 2px solid rgba(244, 162, 201, 0.72);
  border-radius: 50%;
  font-weight: 900;
}

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

.service-card,
.faq-list details,
.quote-form {
  border: 1px solid rgba(20, 20, 20, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 60px rgba(76, 102, 96, 0.1);
  backdrop-filter: blur(16px);
}

.service-card {
  position: relative;
  min-height: 310px;
  padding: 34px;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card.featured {
  border-color: rgba(244, 162, 201, 0.86);
  background:
    radial-gradient(circle at 88% 12%, rgba(244, 162, 201, 0.13), transparent 32%),
    rgba(255, 255, 255, 0.78);
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 34px 76px rgba(76, 102, 96, 0.17);
}

.popular-label {
  position: absolute;
  top: 0;
  right: 0;
  padding: 16px 22px;
  color: var(--pink);
  background: rgba(244, 162, 201, 0.1);
  border-left: 1px solid rgba(244, 162, 201, 0.35);
  border-bottom: 1px solid rgba(244, 162, 201, 0.35);
  border-bottom-left-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 920;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(20, 20, 20, 0.06);
  box-shadow: 0 16px 36px rgba(76, 102, 96, 0.13);
}

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

.pink-icon,
.pink-arrow {
  color: var(--pink);
}

.green-icon,
.green-arrow {
  color: #168a7b;
}

.violet-icon,
.violet-arrow {
  color: #8e45dc;
}

.teal-icon,
.teal-arrow {
  color: #1b9c90;
}

.service-tag {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 920;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pink-tag {
  color: var(--pink);
  background: rgba(244, 162, 201, 0.13);
}

.green-tag,
.teal-tag {
  color: #147a70;
  background: rgba(170, 189, 212, 0.32);
}

.violet-tag {
  color: #7c3ed1;
  background: rgba(142, 69, 220, 0.12);
}

.service-rail h3 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(1.35rem, 1.7vw, 1.72rem);
  line-height: 1.12;
}

.service-rail p,
.road-card p,
.faq-list p {
  color: var(--muted);
  line-height: 1.58;
}

.service-arrow {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid currentColor;
  font-size: 1.55rem;
  line-height: 1;
  opacity: 0.72;
}

.products {
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1fr);
  background: linear-gradient(120deg, rgba(223, 234, 222, 0.88), rgba(211, 230, 230, 0.56));
}

.product-orbit {
  width: min(100%, 620px);
  min-height: 600px;
  justify-self: center;
}

.product-orbit::before {
  content: "";
  position: absolute;
  inset: 13% 7% 7% 7%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}

.product-bottle {
  position: absolute;
  width: var(--product-width, clamp(150px, 18vw, 230px));
  height: auto;
  transform-origin: 50% 82%;
  animation: bottleDrift 8s ease-in-out infinite;
}

.bottle-pink {
  --product-width: clamp(128px, 14.2vw, 182px);
  --product-rotate: -8deg;
  left: 0;
  top: 26%;
  z-index: 1;
}

.bottle-blue {
  --product-width: clamp(142px, 15.8vw, 206px);
  --product-rotate: 5deg;
  left: 25%;
  top: 17%;
  z-index: 2;
  animation-delay: -3s;
}

.bottle-green {
  --product-width: clamp(158px, 18.4vw, 246px);
  --product-rotate: 2deg;
  right: 0;
  top: 2%;
  z-index: 3;
  animation-delay: -5s;
}

@keyframes bottleDrift {
  0%,
  100% {
    transform: translateY(0) rotate(var(--product-rotate, -1deg));
  }
  50% {
    transform: translateY(-16px) rotate(calc(var(--product-rotate, -1deg) + 2deg));
  }
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: #304a44;
  font-weight: 760;
  line-height: 1.45;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.22em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.74);
}

.results {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  padding-top: clamp(64px, 8vh, 86px);
  padding-bottom: clamp(70px, 9vh, 96px);
  background:
    linear-gradient(180deg, rgba(223, 234, 222, 0.42) 0%, rgba(255, 255, 255, 0.78) 12%, rgba(255, 255, 255, 0) 42%, rgba(248, 252, 252, 0.95) 100%),
    radial-gradient(circle at 6% 16%, rgba(170, 189, 212, 0.22), transparent 30%),
    radial-gradient(circle at 88% 86%, rgba(244, 162, 201, 0.1), transparent 28%),
    rgba(255, 255, 255, 0.9);
}

.results-heading {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto clamp(28px, 4vh, 42px);
  text-align: center;
}

.results-heading h2 {
  margin-bottom: 0;
}

.result-pairs {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 54px);
  max-width: 1480px;
  margin: 0 auto;
}

.result-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  align-items: start;
}

.result-pair figure {
  position: relative;
  margin: 0;
}

.result-pair img {
  width: 100%;
  aspect-ratio: 4 / 5.35;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.result-pair figure:hover img {
  transform: scale(1.025);
  box-shadow: 0 34px 86px rgba(76, 102, 96, 0.22);
}

.result-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  padding: 8px 12px;
  color: var(--soft-ink);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(20, 20, 20, 0.08);
  font-size: 0.78rem;
  font-weight: 920;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-tag.after {
  color: #147a70;
}

.result-pair figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 780;
}

.trust {
  display: block;
  min-height: 96svh;
  padding-top: 136px;
  padding-bottom: 136px;
  background:
    linear-gradient(180deg, rgba(248, 252, 252, 0.92) 0%, rgba(255, 255, 255, 0) 18%, rgba(255, 255, 255, 0) 78%, rgba(249, 252, 250, 0.86) 100%),
    radial-gradient(circle at 10% 7%, rgba(170, 189, 212, 0.72), transparent 28%),
    radial-gradient(circle at 86% 8%, rgba(244, 162, 201, 0.18), transparent 30%),
    radial-gradient(circle at 50% 108%, rgba(22, 138, 123, 0.18), transparent 34%),
    linear-gradient(135deg, #f7fcfc 0%, #ffffff 44%, #fdf7fb 72%, #f4fbfa 100%);
}

.trust::before {
  width: 430px;
  height: 430px;
  left: -156px;
  top: -156px;
  opacity: 0.18;
  background:
    repeating-radial-gradient(circle, transparent 0 78px, rgba(22, 138, 123, 0.28) 79px 80px),
    transparent;
  border: 0;
  box-shadow: none;
}

.trust::after {
  width: 190px;
  height: 190px;
  right: 17vw;
  top: 22vh;
  opacity: 0.78;
  background:
    radial-gradient(circle at 34% 26%, rgba(255, 255, 255, 0.96), transparent 18%),
    radial-gradient(circle at 64% 70%, rgba(244, 162, 201, 0.2), transparent 34%),
    radial-gradient(circle at 35% 70%, rgba(170, 189, 212, 0.28), transparent 38%),
    rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow:
    inset -18px -20px 36px rgba(244, 162, 201, 0.13),
    0 28px 80px rgba(244, 162, 201, 0.16);
}

.trust-atmosphere,
.trust-atmosphere span {
  position: absolute;
  pointer-events: none;
}

.trust-atmosphere {
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.trust-orbit {
  border: 1px solid rgba(244, 162, 201, 0.24);
  border-radius: 50%;
  transform: rotate(-9deg);
}

.orbit-one {
  width: 520px;
  height: 150px;
  left: 23%;
  top: 19%;
  border-color: rgba(244, 162, 201, 0.25);
}

.orbit-two {
  width: 430px;
  height: 118px;
  left: 21%;
  top: 21%;
  border-color: rgba(22, 138, 123, 0.16);
  transform: rotate(-13deg);
}

.trust-bubble {
  border-radius: 50%;
  background:
    radial-gradient(circle at 31% 24%, rgba(255, 255, 255, 0.96), transparent 17%),
    radial-gradient(circle at 68% 69%, rgba(244, 162, 201, 0.18), transparent 34%),
    rgba(255, 255, 255, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    inset -12px -16px 28px rgba(170, 189, 212, 0.18),
    0 22px 68px rgba(50, 89, 84, 0.1);
}

.bubble-one {
  width: 118px;
  height: 118px;
  right: 22%;
  top: 24%;
}

.bubble-two {
  width: 44px;
  height: 44px;
  left: 13%;
  top: 39%;
  opacity: 0.62;
}

.trust-spark {
  width: 22px;
  height: 22px;
  background: rgba(22, 138, 123, 0.38);
  clip-path: polygon(50% 0, 60% 38%, 100% 50%, 60% 62%, 50% 100%, 40% 62%, 0 50%, 40% 38%);
  filter: drop-shadow(0 0 18px rgba(22, 138, 123, 0.2));
}

.spark-one {
  left: 45%;
  top: 18%;
  background: rgba(244, 162, 201, 0.52);
}

.spark-two {
  right: 21%;
  top: 37%;
  background: rgba(244, 162, 201, 0.28);
}

.spark-three {
  left: 23%;
  top: 63%;
  width: 14px;
  height: 14px;
  background: rgba(22, 138, 123, 0.24);
}

.trust-panel {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.trust-panel h2 {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(3rem, 6.5vw, 6.35rem);
  line-height: 0.94;
}

.trust-panel p {
  max-width: 720px;
  margin: 0 auto;
  color: #3f4d49;
  font-size: clamp(1.05rem, 1.35vw, 1.24rem);
  line-height: 1.68;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 30px);
  margin-top: clamp(42px, 6vw, 72px);
}

.trust-card {
  --card-accent: #16a596;
  --card-accent-rgb: 22, 165, 150;
  position: relative;
  display: grid;
  min-height: 310px;
  padding: clamp(28px, 3.2vw, 38px);
  text-align: left;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 22% 20%, rgba(var(--card-accent-rgb), 0.12), transparent 26%),
    rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(var(--card-accent-rgb), 0.34);
  box-shadow:
    0 26px 72px rgba(50, 89, 84, 0.13),
    0 22px 76px rgba(var(--card-accent-rgb), 0.08);
  backdrop-filter: blur(18px);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.trust-card::after {
  content: "";
  position: absolute;
  right: 22%;
  top: 18%;
  width: 10px;
  height: 10px;
  background: rgba(var(--card-accent-rgb), 0.2);
  box-shadow: 18px 18px 0 rgba(var(--card-accent-rgb), 0.12);
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
}

.trust-card:hover {
  transform: translateY(-7px);
  border-color: rgba(var(--card-accent-rgb), 0.58);
  box-shadow:
    0 34px 86px rgba(50, 89, 84, 0.18),
    0 24px 92px rgba(var(--card-accent-rgb), 0.16);
}

.trust-card-teal {
  --card-accent: #16b8aa;
  --card-accent-rgb: 22, 184, 170;
}

.trust-card-pink {
  --card-accent: #f4a2c9;
  --card-accent-rgb: 244, 162, 201;
}

.trust-card-blue {
  --card-accent: #6a9df7;
  --card-accent-rgb: 106, 157, 247;
}

.trust-card.is-featured {
  background:
    radial-gradient(circle at 50% 18%, rgba(var(--card-accent-rgb), 0.14), transparent 28%),
    radial-gradient(circle at 24% 20%, rgba(22, 138, 123, 0.08), transparent 26%),
    rgba(255, 255, 255, 0.82);
  border-color: rgba(var(--card-accent-rgb), 0.62);
  box-shadow:
    0 32px 86px rgba(50, 89, 84, 0.14),
    0 30px 96px rgba(var(--card-accent-rgb), 0.18);
}

.trust-icon {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(var(--card-accent-rgb), 0.1);
}

.trust-icon {
  width: 86px;
  height: 86px;
  margin-bottom: 34px;
  color: var(--card-accent);
}

.trust-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(1.9rem, 2.8vw, 2.65rem);
  line-height: 1;
}

.trust-card > span:not(.trust-icon):not(.trust-pill) {
  color: #485552;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.48;
}

.trust-card-footer {
  display: flex;
  align-items: center;
  align-self: end;
  margin-top: 36px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  color: var(--card-accent);
  background: rgba(var(--card-accent-rgb), 0.11);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 920;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.process {
  display: block;
  min-height: 110svh;
  background:
    linear-gradient(180deg, rgba(249, 252, 250, 0.96) 0%, rgba(255, 255, 255, 0) 18%, rgba(255, 255, 255, 0) 78%, rgba(248, 251, 252, 0.94) 100%),
    radial-gradient(circle at 0% 0%, rgba(170, 189, 212, 0.28), transparent 34%),
    radial-gradient(circle at 94% 4%, rgba(244, 162, 201, 0.2), transparent 30%),
    radial-gradient(circle at 70% 88%, rgba(223, 234, 222, 0.64), transparent 36%),
    rgba(255, 255, 255, 0.9);
}

.process::before {
  width: 210px;
  height: 210px;
  right: 7vw;
  top: 8vh;
  opacity: 0.18;
}

.process::after {
  width: 92px;
  height: 92px;
  left: 7vw;
  bottom: 10vh;
  opacity: 0.2;
}

.process-copy {
  max-width: min(980px, 92vw);
  margin: 0 auto;
  text-align: center;
}

.process-copy h2 {
  max-width: none;
  font-size: clamp(3rem, 5.4vw, 5.8rem);
  line-height: 0.95;
}

.process-map {
  position: relative;
  width: min(1320px, 100%);
  min-height: 520px;
  margin: clamp(44px, 7vw, 82px) auto 0;
}

.road-svg {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 6;
  width: min(1280px, 100%);
  height: 210px;
  overflow: visible;
  pointer-events: none;
  transform: translateX(-50%);
}

.road-base,
.road-progress,
.road-arrow {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.road-base {
  stroke: rgba(170, 189, 212, 0.48);
  stroke-width: 2.2;
}

.road-progress {
  stroke: var(--pink);
  stroke-width: 3;
  filter: drop-shadow(0 0 10px rgba(244, 162, 201, 0.3));
  transition: stroke-dashoffset 80ms linear;
}

.road-arrow {
  stroke: rgba(170, 189, 212, 0.72);
  stroke-width: 2.2;
}

.road-steps {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}

.road-step {
  display: grid;
  justify-items: center;
}

.road-pin {
  position: relative;
  z-index: 8;
  display: grid;
  place-items: center;
  width: 104px;
  height: 132px;
  margin-bottom: 54px;
}

.road-pin::before,
.road-pin::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.road-pin::before {
  inset: 0 4px 28px;
  border: 1px solid rgba(244, 162, 201, 0.28);
  box-shadow:
    inset 0 0 0 10px rgba(244, 162, 201, 0.08),
    0 18px 46px rgba(244, 162, 201, 0.18);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.road-pin::after {
  left: 50%;
  bottom: 14px;
  width: 16px;
  height: 16px;
  background: var(--pink);
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.9),
    0 0 24px rgba(244, 162, 201, 0.65);
  transform: translateX(-50%);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.road-pin span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  color: var(--white);
  background: radial-gradient(circle at 35% 28%, #ffd8ea, var(--pink));
  border-radius: 50%;
  box-shadow: 0 18px 44px rgba(244, 162, 201, 0.32);
  font-size: 0;
  font-weight: 920;
  line-height: 1;
  text-align: center;
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.road-pin span {
  font-variant-numeric: tabular-nums;
}

.road-pin span {
  color: transparent;
}

.road-pin span::before {
  content: attr(data-number);
}

.road-step:nth-child(1) .road-pin span::before {
  content: "1";
}

.road-step:nth-child(2) .road-pin span::before {
  content: "2";
}

.road-step:nth-child(3) .road-pin span::before {
  content: "3";
}

.road-step:nth-child(4) .road-pin span::before {
  content: "4";
}

.road-pin span::before {
  color: var(--white);
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.road-card {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 176px;
  padding: 26px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(20, 20, 20, 0.07);
  box-shadow:
    0 24px 66px rgba(50, 89, 84, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.road-step.is-active .road-pin::before {
  border-color: rgba(244, 162, 201, 0.52);
  box-shadow:
    inset 0 0 0 10px rgba(244, 162, 201, 0.12),
    0 22px 54px rgba(244, 162, 201, 0.22);
  transform: scale(1.03);
}

.road-step.is-active .road-pin::after {
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.92),
    0 0 30px rgba(244, 162, 201, 0.82);
  transform: translateX(-50%) scale(1.08);
}

.road-step.is-active .road-pin span {
  box-shadow:
    0 18px 44px rgba(244, 162, 201, 0.36),
    0 0 0 8px rgba(244, 162, 201, 0.08);
  filter: saturate(1.05);
}

.road-step.is-active .road-card {
  transform: translateY(-4px);
  border-color: rgba(244, 162, 201, 0.22);
  box-shadow:
    0 28px 76px rgba(50, 89, 84, 0.12),
    0 18px 52px rgba(244, 162, 201, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.road-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  color: var(--pink);
}

.road-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.road-card p {
  margin: 0;
  color: #4d5a57;
  font-size: clamp(1rem, 1.12vw, 1.12rem);
  line-height: 1.52;
}

.voices,
.faq {
  display: block;
  min-height: auto;
  padding-top: 118px;
  padding-bottom: 118px;
}

.voices {
  background:
    linear-gradient(180deg, rgba(248, 251, 252, 0.94) 0%, rgba(255, 255, 255, 0) 18%, rgba(255, 255, 255, 0) 78%, rgba(248, 250, 250, 0.94) 100%),
    radial-gradient(circle at 8% 18%, rgba(170, 189, 212, 0.45), transparent 25%),
    radial-gradient(circle at 86% 8%, rgba(244, 162, 201, 0.18), transparent 28%),
    radial-gradient(circle at 56% 100%, rgba(22, 138, 123, 0.14), transparent 30%),
    linear-gradient(135deg, #f8fbfc 0%, #ffffff 48%, #fff8fb 100%);
}

.voices-atmosphere,
.voices-atmosphere span {
  position: absolute;
  pointer-events: none;
}

.voices-atmosphere {
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.voices-ring {
  width: 260px;
  height: 260px;
  right: 7vw;
  top: 7vh;
  border: 1px solid rgba(20, 20, 20, 0.06);
  border-radius: 50%;
  box-shadow: inset 0 0 0 46px rgba(244, 162, 201, 0.04);
}

.voices-bubble {
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.96), transparent 18%),
    radial-gradient(circle at 68% 70%, rgba(244, 162, 201, 0.18), transparent 36%),
    rgba(255, 255, 255, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow:
    inset -12px -16px 28px rgba(170, 189, 212, 0.16),
    0 22px 64px rgba(50, 89, 84, 0.09);
}

.bubble-soft-one {
  width: 86px;
  height: 86px;
  left: 2vw;
  bottom: 20vh;
}

.bubble-soft-two {
  width: 56px;
  height: 56px;
  right: 10vw;
  bottom: 17vh;
}

.voices-spark {
  width: 18px;
  height: 18px;
  clip-path: polygon(50% 0, 60% 38%, 100% 50%, 60% 62%, 50% 100%, 40% 62%, 0 50%, 40% 38%);
}

.voices-spark-one {
  left: 21vw;
  top: 39vh;
  background: rgba(244, 162, 201, 0.46);
}

.voices-spark-two {
  right: 24vw;
  top: 48vh;
  background: rgba(22, 138, 123, 0.26);
}

.voices .story-copy,
.faq .story-copy {
  max-width: 860px;
  margin-bottom: 38px;
}

.voices-copy {
  position: relative;
  z-index: 2;
}

.voices-copy h2 {
  max-width: 950px;
  margin-bottom: 32px;
  font-size: clamp(3rem, 6.5vw, 6.35rem);
  line-height: 0.94;
}

.review-proofbar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 980px;
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 56px rgba(50, 89, 84, 0.08);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.review-proofbar div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  row-gap: 2px;
  align-items: center;
  padding: 22px 28px;
  text-align: left;
}

.review-proofbar div + div {
  border-left: 1px solid rgba(20, 20, 20, 0.08);
}

.proof-icon {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--pink);
  border-radius: 50%;
  background: rgba(244, 162, 201, 0.1);
}

.review-proofbar div:nth-child(2) .proof-icon {
  color: #16a596;
  background: rgba(22, 138, 123, 0.1);
}

.review-proofbar div:nth-child(3) .proof-icon {
  color: #6a9df7;
  background: rgba(106, 157, 247, 0.1);
}

.proof-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.review-proofbar strong {
  color: var(--soft-ink);
  line-height: 1.1;
}

.review-proofbar span:not(.proof-icon) {
  color: var(--muted);
  font-size: 0.92rem;
}

.review-reel {
  position: relative;
  z-index: 2;
  margin-top: 52px;
  overflow: hidden;
  padding: 18px 0 34px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.review-reel::before,
.review-reel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: 14%;
  pointer-events: none;
}

.review-reel::before {
  left: 0;
  background: linear-gradient(90deg, rgba(248, 251, 252, 0.96), transparent);
}

.review-reel::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 248, 251, 0.96), transparent);
}

.review-track {
  --review-gap: 28px;
  --review-half-gap: 14px;
  --review-loop-distance: calc(50% + var(--review-half-gap));
  display: flex;
  align-items: stretch;
  width: max-content;
  gap: var(--review-gap);
  animation: reviewCaseRoll 42s linear infinite;
  will-change: transform;
}

@keyframes reviewCaseRoll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-1 * var(--review-loop-distance)), 0, 0);
  }
}

.review-card {
  --review-accent: #f4a2c9;
  --review-accent-rgb: 244, 162, 201;
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  flex: 0 0 clamp(330px, 31vw, 430px);
  height: clamp(390px, 31vw, 430px);
  min-height: 390px;
  padding: 34px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 88%, rgba(var(--review-accent-rgb), 0.18), transparent 14%),
    rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(var(--review-accent-rgb), 0.22);
  box-shadow:
    0 24px 72px rgba(50, 89, 84, 0.09),
    0 18px 60px rgba(var(--review-accent-rgb), 0.08);
  backdrop-filter: blur(18px);
}

.review-card::before {
  content: "“";
  position: absolute;
  left: 30px;
  top: 64px;
  color: rgba(var(--review-accent-rgb), 0.28);
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.review-stars {
  color: var(--review-accent);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.verified {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 34px;
  padding: 0 14px;
  color: var(--review-accent);
  background: rgba(var(--review-accent-rgb), 0.1);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 860;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-card p {
  position: relative;
  z-index: 1;
  align-self: center;
  min-height: 0;
  margin: 0 0 34px;
  color: var(--soft-ink);
  font-size: clamp(1.18rem, 1.52vw, 1.48rem);
  font-weight: 760;
  line-height: 1.34;
  overflow: hidden;
}

.review-card footer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  align-self: end;
  margin: 0 -34px -34px;
  min-height: 112px;
  padding: 22px 34px 24px;
  border-top: 1px solid rgba(20, 20, 20, 0.07);
}

.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: #4f122b;
  background: rgba(var(--review-accent-rgb), 0.22);
  border-radius: 50%;
  font-size: 1.18rem;
  font-weight: 920;
  line-height: 1;
  text-align: center;
}

.review-card footer strong,
.review-card footer div > span,
.review-card footer small {
  display: block;
}

.review-card footer strong {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.15;
}

.review-card footer span {
  margin-top: 4px;
  color: var(--review-accent);
  font-weight: 820;
  line-height: 1.2;
}

.review-card footer small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.25;
}

.accent-teal {
  --review-accent: #16a596;
  --review-accent-rgb: 22, 165, 150;
}

.accent-blue {
  --review-accent: #6a9df7;
  --review-accent-rgb: 106, 157, 247;
}

.review-score {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 24px;
}

.review-score span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--white);
  background: var(--pink);
  border-radius: 50%;
  font-size: 1.6rem;
  box-shadow: 0 18px 42px rgba(244, 162, 201, 0.28);
}

.review-score strong {
  color: var(--ink);
  font-size: clamp(1.7rem, 2.3vw, 2.15rem);
}

.review-score p {
  margin: 0;
  color: var(--muted);
}

.review-score b {
  color: var(--pink);
}

.faq {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(248, 250, 250, 0.94) 0%, rgba(255, 255, 255, 0) 18%, rgba(255, 255, 255, 0) 78%, rgba(247, 249, 250, 0.92) 100%),
    radial-gradient(circle at 4% 4%, rgba(170, 189, 212, 0.28), transparent 30%),
    radial-gradient(circle at 96% 96%, rgba(244, 162, 201, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 249, 248, 0.92));
}

.faq-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.faq-big-bubble,
.faq-small-bubble {
  position: absolute;
  display: block;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.85), transparent 16%),
    radial-gradient(circle at 62% 66%, rgba(244, 162, 201, 0.18), transparent 32%),
    radial-gradient(circle at 45% 72%, rgba(170, 189, 212, 0.24), transparent 34%),
    rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(170, 189, 212, 0.16);
  box-shadow: inset -20px -26px 44px rgba(170, 189, 212, 0.11);
}

.faq-big-bubble {
  right: 7vw;
  top: 18%;
  width: clamp(340px, 31vw, 560px);
  height: clamp(340px, 31vw, 560px);
  opacity: 0.56;
}

.faq-small-one {
  right: 16vw;
  top: 11%;
  width: 70px;
  height: 70px;
  opacity: 0.48;
}

.faq-small-two {
  right: 7vw;
  bottom: 9%;
  width: 130px;
  height: 130px;
  opacity: 0.34;
}

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

.faq-copy h2 {
  max-width: 760px;
  font-size: clamp(3.15rem, 5vw, 5.45rem);
}

.faq-copy p {
  max-width: 610px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  line-height: 1.6;
}

.faq-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 16px;
  max-width: min(960px, 64vw);
  margin-top: 38px;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(20, 20, 20, 0.07);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 22px 62px rgba(50, 89, 84, 0.09);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.faq-list details:hover,
.faq-list details[open] {
  border-color: rgba(244, 162, 201, 0.24);
  box-shadow:
    0 26px 72px rgba(50, 89, 84, 0.12),
    0 18px 52px rgba(244, 162, 201, 0.08);
}

.faq-list summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 92px;
  padding: 18px 26px;
  cursor: pointer;
  color: var(--soft-ink);
  font-weight: 880;
  list-style: none;
}

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

.faq-icon,
.faq-plus {
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.faq-icon {
  width: 62px;
  height: 62px;
  color: var(--pink);
  background: rgba(244, 162, 201, 0.14);
}

.faq-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-plus {
  width: 54px;
  height: 54px;
  color: var(--pink);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(244, 162, 201, 0.2);
  box-shadow: 0 12px 30px rgba(244, 162, 201, 0.1);
  font-size: 1.65rem;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease;
}

.faq-list details[open] .faq-plus {
  transform: rotate(45deg);
  background: rgba(244, 162, 201, 0.12);
}

.faq-list p {
  margin: -4px 112px 26px;
  color: var(--muted);
  line-height: 1.58;
}

.quote {
  grid-template-columns: minmax(0, 0.68fr) minmax(380px, 1fr);
  align-items: start;
  background:
    linear-gradient(180deg, rgba(247, 249, 250, 0.94) 0%, rgba(255, 255, 255, 0) 22%),
    linear-gradient(140deg, rgba(170, 189, 212, 0.34), rgba(255, 255, 255, 0.8), rgba(244, 162, 201, 0.08));
}

.services-page {
  background:
    radial-gradient(circle at 8% 10%, rgba(170, 189, 212, 0.28), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(244, 162, 201, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(248, 252, 252, 0.96), rgba(255, 255, 255, 0.9) 40%, rgba(248, 251, 250, 0.95));
}

.services-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 0.98fr);
  align-items: center;
  gap: clamp(56px, 8vw, 132px);
  min-height: 100svh;
  padding: 132px var(--page-pad) 86px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.18) 20%, rgba(255, 255, 255, 0.08) 76%, rgba(255, 255, 255, 0.74) 100%),
    radial-gradient(circle at 8% 16%, rgba(170, 189, 212, 0.42), transparent 34%),
    radial-gradient(circle at 96% 5%, rgba(244, 162, 201, 0.26), transparent 28%),
    radial-gradient(circle at 80% 78%, rgba(244, 162, 201, 0.15), transparent 34%),
    linear-gradient(135deg, #f7fbff 0%, #ffffff 48%, #fff6fb 100%);
}

.services-hero::before,
.services-hero::after,
.service-detail::before,
.extra-services::before {
  content: "";
  position: absolute;
  display: block;
  border-radius: 50%;
  pointer-events: none;
}

.services-hero::before {
  width: clamp(250px, 28vw, 520px);
  height: clamp(250px, 28vw, 520px);
  right: -120px;
  top: -4vh;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.96), transparent 18%),
    radial-gradient(circle at 68% 68%, rgba(244, 162, 201, 0.18), transparent 34%),
    rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: inset -22px -28px 58px rgba(170, 189, 212, 0.12);
}

.services-hero::after {
  width: clamp(190px, 17vw, 310px);
  height: clamp(190px, 17vw, 310px);
  left: 3vw;
  bottom: 3vh;
  background:
    radial-gradient(circle at 31% 24%, rgba(255, 255, 255, 0.95), transparent 17%),
    radial-gradient(circle at 68% 72%, rgba(244, 162, 201, 0.2), transparent 35%),
    rgba(170, 189, 212, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    inset -18px -22px 42px rgba(170, 189, 212, 0.12),
    0 30px 90px rgba(50, 89, 84, 0.08);
}

.services-hero-copy,
.service-jump-grid,
.service-detail-copy,
.service-detail-panel,
.extra-services-copy,
.extra-service-grid {
  position: relative;
  z-index: 2;
}

.services-hero h1 {
  margin: 0 0 28px;
  font-size: clamp(5rem, 9.4vw, 10rem);
  line-height: 0.86;
  letter-spacing: 0;
}

.services-hero p,
.service-detail-copy p,
.extra-services-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.35vw, 1.24rem);
  line-height: 1.68;
}

.service-jump-grid {
  display: grid;
  gap: clamp(14px, 2vh, 20px);
}

.service-jump-grid a {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto auto;
  column-gap: 26px;
  row-gap: 8px;
  align-items: center;
  min-height: clamp(132px, 16.5vh, 176px);
  padding: clamp(24px, 2.7vw, 34px) clamp(22px, 3vw, 34px);
  border: 1px solid rgba(20, 20, 20, 0.075);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 15%, rgba(244, 162, 201, 0.08), transparent 32%),
    rgba(255, 255, 255, 0.74);
  box-shadow:
    0 22px 68px rgba(50, 89, 84, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-weight: 900;
  backdrop-filter: blur(18px);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.service-jump-grid a.is-featured {
  border-color: rgba(244, 162, 201, 0.34);
  box-shadow:
    0 26px 78px rgba(50, 89, 84, 0.1),
    0 16px 48px rgba(244, 162, 201, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.service-jump-grid a:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 162, 201, 0.45);
  box-shadow: 0 30px 72px rgba(50, 89, 84, 0.14);
}

.jump-icon {
  grid-row: 1 / span 3;
  display: grid;
  place-items: center;
  width: clamp(70px, 5.9vw, 92px);
  height: clamp(70px, 5.9vw, 92px);
  color: var(--pink);
  background: rgba(244, 162, 201, 0.14);
  border-radius: 50%;
  box-shadow:
    0 18px 46px rgba(50, 89, 84, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.jump-icon svg {
  width: 47%;
  height: 47%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.jump-kicker,
.service-kicker {
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 940;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-jump-grid strong {
  grid-column: 2;
  color: var(--ink);
  font-size: clamp(1.28rem, 1.75vw, 1.78rem);
  line-height: 1.08;
}

.service-jump-grid small {
  grid-column: 2;
  max-width: 520px;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.17vw, 1.2rem);
  font-weight: 680;
  line-height: 1.42;
}

.jump-arrow {
  grid-column: 3;
  grid-row: 1 / span 3;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(20, 20, 20, 0.06);
  border-radius: 50%;
  box-shadow:
    0 14px 34px rgba(50, 89, 84, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  font-size: 1.9rem;
  font-weight: 450;
}

.jump-ribbon {
  position: absolute;
  top: 14px;
  right: 22px;
  min-height: 32px;
  padding: 8px 18px;
  color: var(--pink);
  background: rgba(244, 162, 201, 0.12);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 940;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-jump-blue {
  color: #6a84e8;
}

.service-jump-blue .jump-icon {
  color: #6a84e8;
  background: rgba(106, 132, 232, 0.11);
}

.service-jump-teal {
  color: #168a7b;
}

.service-jump-teal .jump-icon {
  color: #168a7b;
  background: rgba(22, 138, 123, 0.1);
}

.service-jump-violet {
  color: #a971e6;
}

.service-jump-violet .jump-icon {
  color: #a971e6;
  background: rgba(169, 113, 230, 0.11);
}

.service-detail {
  --detail-accent: 244, 162, 201;
  --detail-accent-solid: #f4a2c9;
  --detail-soft: rgba(244, 162, 201, 0.18);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(520px, 1.04fr);
  align-items: center;
  gap: clamp(50px, 8vw, 130px);
  min-height: 100svh;
  margin-top: -1px;
  padding: 132px var(--page-pad) 118px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.2) 17%, rgba(255, 255, 255, 0.12) 80%, rgba(255, 255, 255, 0.76) 100%),
    radial-gradient(circle at 8% 12%, rgba(244, 162, 201, 0.16), transparent 30%),
    radial-gradient(circle at 6% 86%, rgba(170, 189, 212, 0.2), transparent 36%),
    radial-gradient(circle at 88% 12%, rgba(var(--detail-accent), 0.15), transparent 28%),
    radial-gradient(circle at 82% 88%, rgba(244, 162, 201, 0.14), transparent 32%),
    linear-gradient(135deg, rgba(253, 251, 253, 0.94), rgba(248, 252, 252, 0.96) 48%, rgba(255, 248, 251, 0.88));
}

.service-detail::before {
  width: clamp(150px, 13vw, 230px);
  height: clamp(150px, 13vw, 230px);
  right: 7vw;
  top: 5vh;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.96), transparent 18%),
    radial-gradient(circle at 70% 70%, rgba(244, 162, 201, 0.22), transparent 34%),
    radial-gradient(circle at 36% 72%, rgba(170, 189, 212, 0.28), transparent 36%),
    rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    inset -18px -22px 42px rgba(170, 189, 212, 0.11),
    0 26px 80px rgba(50, 89, 84, 0.08);
}

.service-detail::after {
  content: "";
  position: absolute;
  display: block;
  left: -16vw;
  bottom: -24vw;
  width: 58vw;
  height: 58vw;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.64);
  box-shadow: inset 0 0 0 1px rgba(170, 189, 212, 0.06);
  pointer-events: none;
}

.service-detail-green {
  --detail-accent: 22, 138, 123;
  --detail-accent-solid: #168a7b;
  --detail-soft: rgba(22, 138, 123, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.2) 17%, rgba(255, 255, 255, 0.12) 80%, rgba(255, 255, 255, 0.76) 100%),
    radial-gradient(circle at 11% 9%, rgba(170, 189, 212, 0.2), transparent 33%),
    radial-gradient(circle at 84% 11%, rgba(244, 162, 201, 0.13), transparent 30%),
    radial-gradient(circle at 80% 72%, rgba(22, 138, 123, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(248, 252, 252, 0.94), rgba(255, 255, 255, 0.96) 48%, rgba(255, 248, 251, 0.82));
}

.service-detail-violet {
  --detail-accent: 142, 69, 220;
  --detail-accent-solid: #9f7ae8;
  --detail-soft: rgba(142, 69, 220, 0.13);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.2) 17%, rgba(255, 255, 255, 0.12) 80%, rgba(255, 255, 255, 0.76) 100%),
    radial-gradient(circle at 8% 13%, rgba(244, 162, 201, 0.19), transparent 32%),
    radial-gradient(circle at 90% 15%, rgba(170, 189, 212, 0.18), transparent 30%),
    radial-gradient(circle at 80% 86%, rgba(142, 69, 220, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 248, 253, 0.94), rgba(255, 255, 255, 0.96) 46%, rgba(246, 253, 253, 0.86));
}

.service-detail-blue {
  --detail-accent: 106, 157, 247;
  --detail-accent-solid: #6a9df7;
  --detail-soft: rgba(106, 157, 247, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.2) 17%, rgba(255, 255, 255, 0.12) 80%, rgba(255, 255, 255, 0.76) 100%),
    radial-gradient(circle at 7% 12%, rgba(244, 162, 201, 0.15), transparent 30%),
    radial-gradient(circle at 89% 6%, rgba(170, 189, 212, 0.34), transparent 32%),
    radial-gradient(circle at 84% 78%, rgba(244, 162, 201, 0.14), transparent 32%),
    linear-gradient(135deg, rgba(248, 252, 252, 0.92), rgba(255, 255, 255, 0.96) 46%, rgba(244, 249, 255, 0.88));
}

.service-detail-copy h2,
.extra-services-copy h2 {
  margin-top: 12px;
  font-size: clamp(3.35rem, 5.4vw, 6.15rem);
}

.service-detail-copy h2 {
  max-width: 760px;
  line-height: 0.96;
}

.service-detail-copy p {
  margin-top: clamp(24px, 2.8vw, 34px);
}

.service-detail-copy .service-kicker {
  color: var(--pink);
}

.service-detail-copy .button {
  min-width: 236px;
  min-height: 62px;
  margin-top: clamp(22px, 3vw, 36px);
  padding: 0 30px;
  justify-content: space-between;
  gap: 34px;
  background: linear-gradient(135deg, #f4a2c9, #e85eae);
  box-shadow: 0 18px 44px rgba(244, 162, 201, 0.32);
}

.service-detail-copy .button::after {
  content: "→";
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1;
}

.service-detail-panel {
  position: relative;
  min-height: clamp(430px, 40vw, 560px);
  padding: clamp(32px, 4vw, 54px);
  border: 1px solid rgba(var(--detail-accent), 0.28);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 12%, rgba(var(--detail-accent), 0.08), transparent 30%),
    radial-gradient(circle at 12% 88%, rgba(170, 189, 212, 0.08), transparent 30%),
    rgba(255, 255, 255, 0.68);
  box-shadow:
    0 30px 88px rgba(50, 89, 84, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(22px);
}

.service-panel-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 2vw, 28px);
  margin-bottom: clamp(28px, 4vw, 48px);
}

.service-panel-icon {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  color: var(--detail-accent-solid);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(var(--detail-accent), 0.18);
  border-radius: 50%;
  box-shadow:
    0 18px 42px rgba(50, 89, 84, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.service-panel-icon svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-panel-head h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.1;
}

.service-panel-spark {
  color: var(--detail-accent-solid);
  font-size: 1.7rem;
  opacity: 0.7;
}

.service-detail-panel ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-detail-panel li {
  position: relative;
  min-height: 58px;
  padding: 18px 0 18px 54px;
  color: #263331;
  border-top: 1px solid rgba(var(--detail-accent), 0.14);
  font-size: clamp(1rem, 1.14vw, 1.16rem);
  line-height: 1.45;
  font-weight: 760;
}

.service-detail-panel li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--detail-accent-solid);
  background: var(--detail-soft);
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.52);
  font-size: 0.84rem;
  font-weight: 940;
  transform: translateY(-50%);
}

.extra-services {
  position: relative;
  min-height: 96svh;
  margin-top: -1px;
  padding: 122px var(--page-pad) 92px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.66) 0%, rgba(255, 255, 255, 0.18) 16%, rgba(255, 255, 255, 0.06) 78%, rgba(255, 255, 255, 0.72) 100%),
    radial-gradient(circle at 4% 70%, rgba(170, 189, 212, 0.42), transparent 30%),
    radial-gradient(circle at 89% 24%, rgba(244, 162, 201, 0.2), transparent 32%),
    radial-gradient(circle at 72% 8%, rgba(170, 189, 212, 0.2), transparent 24%),
    linear-gradient(135deg, rgba(248, 252, 252, 0.9) 0%, rgba(255, 255, 255, 0.96) 45%, rgba(255, 248, 251, 0.9) 100%);
}

.extra-services::before {
  width: 360px;
  height: 360px;
  right: 10vw;
  top: -110px;
  background:
    repeating-radial-gradient(circle, transparent 0 31px, rgba(244, 162, 201, 0.2) 32px 33px),
    transparent;
  opacity: 0.42;
}

.extra-services::after {
  content: "";
  position: absolute;
  right: -125px;
  top: 20%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 26%, rgba(255, 255, 255, 0.92), transparent 18%),
    radial-gradient(circle at 68% 70%, rgba(244, 162, 201, 0.14), transparent 38%),
    rgba(244, 162, 201, 0.07);
  border: 1px solid rgba(244, 162, 201, 0.12);
  filter: blur(0.2px);
  pointer-events: none;
}

.extra-services-atmosphere,
.extra-services-atmosphere span {
  position: absolute;
  pointer-events: none;
}

.extra-services-atmosphere {
  inset: 0;
  z-index: 1;
}

.extra-ring {
  right: 15vw;
  top: -52px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(244, 162, 201, 0.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 24px rgba(244, 162, 201, 0.035),
    0 0 0 48px rgba(244, 162, 201, 0.026),
    0 0 0 72px rgba(244, 162, 201, 0.018);
}

.extra-bubble {
  border-radius: 50%;
  background:
    radial-gradient(circle at 33% 24%, rgba(255, 255, 255, 0.96), transparent 18%),
    radial-gradient(circle at 68% 70%, rgba(244, 162, 201, 0.18), transparent 35%),
    radial-gradient(circle at 42% 70%, rgba(170, 189, 212, 0.34), transparent 38%),
    rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow:
    inset -16px -18px 34px rgba(170, 189, 212, 0.12),
    0 24px 68px rgba(50, 89, 84, 0.08);
}

.extra-bubble-large {
  right: 12vw;
  top: -58px;
  width: 190px;
  height: 190px;
}

.extra-bubble-small {
  right: 18vw;
  top: 175px;
  width: 78px;
  height: 78px;
}

.extra-bubble-low {
  left: 10vw;
  bottom: 30px;
  width: 86px;
  height: 86px;
  opacity: 0.64;
}

.extra-services-copy {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: clamp(34px, 5vw, 56px);
}

.extra-services-copy .service-kicker {
  color: var(--pink);
}

.extra-service-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 1.7vw, 24px);
  max-width: 1440px;
}

.extra-service-grid article {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto 1fr;
  column-gap: 18px;
  row-gap: 16px;
  align-content: start;
  min-height: 210px;
  padding: 28px 28px 30px;
  color: #314b45;
  border: 1px solid rgba(20, 20, 20, 0.075);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 86% 13%, rgba(244, 162, 201, 0.08), transparent 30%),
    rgba(255, 255, 255, 0.76);
  box-shadow:
    0 24px 70px rgba(50, 89, 84, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.extra-service-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(244, 162, 201, 0.28);
  background:
    radial-gradient(circle at 86% 13%, rgba(244, 162, 201, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.84);
  box-shadow:
    0 32px 82px rgba(50, 89, 84, 0.13),
    0 16px 46px rgba(244, 162, 201, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.extra-icon {
  display: grid;
  grid-row: 1 / span 2;
  place-items: center;
  width: 74px;
  height: 74px;
  color: #b92e3a;
  background: rgba(244, 162, 201, 0.18);
  border-radius: 50%;
}

.extra-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.extra-icon-green {
  color: #168a7b;
  background: rgba(22, 138, 123, 0.12);
}

.extra-icon-blue {
  color: #277ba0;
  background: rgba(170, 189, 212, 0.38);
}

.extra-icon-red {
  color: #bd2d3b;
  background: rgba(244, 162, 201, 0.18);
}

.extra-tag {
  align-self: center;
  justify-self: start;
  min-height: 28px;
  padding: 7px 16px;
  color: var(--pink);
  background: rgba(244, 162, 201, 0.13);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 900;
}

.extra-service-grid h3 {
  grid-column: 2 / span 2;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.28rem, 1.6vw, 1.62rem);
  line-height: 1.12;
}

.extra-service-grid p {
  grid-column: 1 / 3;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.08vw, 1.14rem);
  font-weight: 690;
  line-height: 1.54;
}

.extra-services-note {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: fit-content;
  max-width: 100%;
  margin: clamp(34px, 4vw, 50px) auto 0;
  padding: 17px 34px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(20, 20, 20, 0.06);
  border-radius: 999px;
  box-shadow:
    0 18px 46px rgba(50, 89, 84, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  font-weight: 820;
  text-align: center;
  backdrop-filter: blur(16px);
}

.extra-services-note span {
  color: var(--pink);
  font-size: 1.3rem;
}

.contact-card {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}

.contact-card a {
  font-weight: 860;
}

.contact-card a:hover {
  color: var(--pink);
}

.quote-form {
  display: grid;
  gap: 17px;
  padding: clamp(24px, 4vw, 38px);
}

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

label,
fieldset {
  display: grid;
  gap: 8px;
  color: var(--soft-ink);
  font-size: 0.9rem;
  font-weight: 840;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

input:focus,
select:focus,
textarea:focus {
  background: var(--white);
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(244, 162, 201, 0.13);
}

fieldset {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

legend {
  padding: 0 8px;
}

fieldset label {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 9px;
  font-weight: 760;
}

input[type="checkbox"] {
  width: 18px;
  min-height: 18px;
  accent-color: var(--pink);
}

.honey-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.form-note.success {
  color: #27605b;
  font-weight: 820;
}

.form-note.error {
  color: #a12c75;
  font-weight: 820;
}

.quote-form.is-sending {
  opacity: 0.78;
}

.quote-form.is-sending .button {
  pointer-events: none;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 32px 20px;
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer img {
  width: 132px;
  aspect-ratio: 2.79 / 1;
  object-fit: contain;
}

.footer p {
  margin: 0;
}

.footer small {
  color: var(--muted);
  font-size: 0.88rem;
}

.footer a {
  color: var(--soft-ink);
  font-weight: 820;
}

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

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.hero-video-copy.reveal,
.hero-video-copy.reveal.is-visible {
  opacity: var(--hero-copy-opacity);
  transform: translate3d(0, var(--hero-copy-y), 0);
}

@media (max-width: 1120px) {
  .header-actions {
    justify-content: end;
  }

  .story-section,
  .hero-sticky,
  .services,
  .products,
  .results,
  .process,
  .quote,
  .services-hero,
  .service-detail {
    grid-template-columns: 1fr;
  }

  .story-hero {
    min-height: 220svh;
  }

  .hero-sticky {
    padding-top: 118px;
  }

  .hero-stage {
    min-height: 620px;
  }

  .product-orbit {
    order: 2;
  }

  .results-heading,
  .process .story-copy {
    max-width: 860px;
  }

  .trust-grid,
  .review-proofbar {
    grid-template-columns: 1fr;
  }

  .review-proofbar div + div {
    border-top: 1px solid rgba(20, 20, 20, 0.08);
    border-left: 0;
  }

  .result-pairs {
    max-width: 1240px;
    gap: 30px;
  }

  .process-map {
    min-height: auto;
  }

  .road-svg {
    display: none;
  }

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

  .road-step,
  .road-step:nth-child(2),
  .road-step:nth-child(3),
  .road-step:nth-child(4) {
    padding-top: 0;
  }

  .faq-list {
    max-width: 100%;
  }

  .faq-big-bubble {
    right: -12vw;
    opacity: 0.28;
  }

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

  .services-hero,
  .service-detail,
  .extra-services {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 96px;
  }

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

  .service-jump-grid {
    max-width: 900px;
  }

  .service-detail-panel {
    max-width: 860px;
  }

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

  .extra-service-grid article {
    min-height: 196px;
  }

  .extra-services::after {
    right: -190px;
    opacity: 0.52;
  }
}

@media (max-width: 680px) {
  .site-header {
    gap: 12px;
    top: 10px;
    width: calc(100% - 20px);
    min-height: 56px;
    max-height: 56px;
    padding: 9px 10px 9px 14px;
    border-radius: 999px;
  }

  .brand img {
    width: 88px;
    height: 32px;
  }

  .header-link {
    font-size: 0.84rem;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 13px;
    font-size: 0.84rem;
  }

  .hero-sticky,
  .story-section,
  .trust,
  .voices,
  .faq {
    min-height: auto;
    padding: 86px 18px;
  }

  .hero-sticky {
    align-items: end;
    min-height: 100svh;
    min-height: 100lvh;
    min-height: max(100lvh, var(--stable-vh, 100svh));
    height: 100lvh;
    height: max(100lvh, var(--stable-vh, 100svh));
    padding: 104px 14px calc(156px + env(safe-area-inset-bottom));
  }

  .story-hero {
    min-height: calc(var(--stable-vh, 100svh) * 3);
    min-height: 300lvh;
    min-height: calc(max(100lvh, var(--stable-vh, 100svh)) * 3);
  }

  .hero-video-wrap {
    inset: 0;
    min-height: 100%;
    height: 100%;
  }

  .hero-video {
    object-fit: cover;
    object-position: 52% center;
    filter: saturate(1.12) contrast(1.08) brightness(0.98);
    transform: translateZ(0) scale(var(--hero-video-scale));
  }

  .hero-video-sheen {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0.28) 28%, rgba(255, 255, 255, 0.04) 62%, rgba(16, 31, 29, 0.1) 100%);
    opacity: calc(0.72 - (var(--hero-progress) * 0.22));
  }

  .hero-video-copy {
    justify-self: start;
    max-width: min(100%, 23rem);
    text-align: left;
  }

  .hero-video-copy h1 {
    font-size: clamp(3.05rem, 15vw, 4.6rem);
    line-height: 0.88;
    white-space: normal;
  }

  .faq-copy h2 {
    font-size: clamp(2.45rem, 12vw, 3.8rem);
  }

  .faq-list summary {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    min-height: 78px;
    padding: 14px 16px;
  }

  .faq-icon {
    width: 48px;
    height: 48px;
  }

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

  .faq-plus {
    width: 42px;
    height: 42px;
  }

  .faq-list p {
    margin: 0 70px 20px 76px;
  }

  h1 {
    font-size: clamp(2.55rem, 15vw, 4.1rem);
  }

  h2 {
    font-size: clamp(2.15rem, 12vw, 3.5rem);
  }

  .button {
    width: 100%;
  }

  .services-hero,
  .service-detail,
  .extra-services {
    padding: 92px 18px;
  }

  .services-hero {
    min-height: auto;
    overflow-x: hidden;
  }

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

  .services-hero h1 {
    max-width: 100%;
    font-size: clamp(3rem, 18vw, 4.8rem);
    line-height: 0.88;
    overflow-wrap: anywhere;
  }

  .service-jump-grid a {
    min-height: 118px;
    padding: 22px;
    column-gap: 18px;
  }

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

  .jump-arrow {
    width: 46px;
    height: 46px;
    font-size: 1.55rem;
  }

  .jump-ribbon {
    position: static;
    grid-column: 2 / 4;
    grid-row: 1;
    width: fit-content;
    min-height: 26px;
    padding: 6px 12px;
    font-size: 0.68rem;
  }

  .service-jump-card.is-featured .jump-kicker {
    grid-column: 2;
  }

  .service-detail-panel {
    padding: 24px;
  }

  .extra-service-grid {
    grid-template-columns: 1fr;
  }

  .extra-services-copy {
    margin-bottom: 30px;
  }

  .extra-service-grid article {
    grid-template-columns: auto 1fr auto;
    min-height: 0;
    padding: 22px;
  }

  .extra-icon {
    width: 60px;
    height: 60px;
  }

  .extra-icon svg {
    width: 30px;
    height: 30px;
  }

  .extra-tag {
    padding: 6px 13px;
    font-size: 0.78rem;
  }

  .extra-service-grid h3 {
    grid-column: 2 / 4;
    font-size: 1.36rem;
  }

  .extra-service-grid p {
    grid-column: 1 / 3;
    font-size: 0.98rem;
  }

  .extra-services-note {
    width: 100%;
    padding: 15px 18px;
    border-radius: var(--radius);
  }

  .hero-stage {
    min-height: 470px;
  }

  .hero-logo {
    width: 160px;
  }

  .photo-stack {
    top: 24%;
    width: 94%;
  }

  .care-note,
  .spark-card {
    width: min(210px, 68vw);
    padding: 15px 16px;
  }

  .care-note {
    bottom: 7%;
  }

  .spark-card {
    right: 0;
    top: 2%;
  }

  .story-section::before,
  .story-section::after {
    opacity: 0.16;
  }

  .voices-copy h2 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .review-proofbar div {
    padding: 18px;
  }

  .review-reel {
    margin-right: -18px;
    margin-left: -18px;
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  }

  .review-track {
    --review-gap: 18px;
    --review-half-gap: 9px;
    animation-duration: 34s;
  }

  .review-card {
    flex-basis: min(82vw, 360px);
    height: auto;
    min-height: 370px;
    padding: 26px;
  }

  .review-card::before {
    top: 118px;
    left: 24px;
    font-size: 5rem;
  }

  .review-card-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 58px;
  }

  .review-card p {
    align-self: start;
  }

  .review-card footer {
    margin: 0 -26px -26px;
    min-height: 108px;
    padding: 20px 26px 22px;
  }

  .review-score {
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .result-pairs {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .result-pair img {
    aspect-ratio: 3 / 4;
  }

  .result-tag {
    top: 10px;
    left: 10px;
    padding: 7px 10px;
    font-size: 0.68rem;
  }

  .result-pair figcaption {
    margin-top: 8px;
    font-size: 0.82rem;
  }

  .trust-panel h2 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .trust::after,
  .bubble-one {
    width: 86px;
    height: 86px;
    right: 8%;
    top: 19%;
  }

  .orbit-one,
  .orbit-two {
    left: 3%;
    width: 330px;
  }

  .bubble-two,
  .spark-three {
    display: none;
  }

  .trust-card {
    min-height: 270px;
  }

  .trust-icon {
    width: 74px;
    height: 74px;
    margin-bottom: 28px;
  }

  .soft-list span {
    width: 100%;
  }

  .service-rail,
  .road-steps,
  .form-row,
  fieldset {
    grid-template-columns: 1fr;
  }

  .service-card,
  .road-card {
    min-height: auto;
  }

  .service-proof {
    align-items: flex-start;
    width: 100%;
    border-radius: var(--radius);
  }

  .service-proof span:not(.proof-check) + span::before {
    display: none;
  }

  .service-card {
    padding: 26px;
  }

  .popular-label {
    position: static;
    display: inline-flex;
    margin: -4px 0 18px;
    border: 1px solid rgba(244, 162, 201, 0.32);
    border-radius: 999px;
  }

  .product-orbit {
    width: 100%;
    min-height: 520px;
    margin-top: 12px;
    overflow: visible;
  }

  .product-orbit::before {
    inset: 16% 1% 10%;
  }

  .product-bottle {
    width: var(--product-mobile-width, var(--product-width));
  }

  .bottle-pink {
    --product-mobile-width: clamp(92px, 25vw, 108px);
    left: 1%;
    top: 31%;
  }

  .bottle-blue {
    --product-mobile-width: clamp(104px, 29vw, 124px);
    left: 31%;
    top: 24%;
  }

  .bottle-green {
    --product-mobile-width: clamp(116px, 33vw, 138px);
    right: 1%;
    top: 15%;
  }

  .process-copy h2 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .road-step {
    grid-template-columns: auto 1fr;
    justify-items: stretch;
    align-items: center;
    gap: 16px;
  }

  .road-pin {
    width: 72px;
    height: 72px;
    margin: 0;
  }

  .road-pin::before {
    inset: 0;
  }

  .road-pin::after {
    display: none;
  }

  .road-pin span {
    position: relative;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    color: var(--white);
    border-radius: 50%;
    font-size: 1.35rem;
    line-height: 1;
    transform: none;
  }

  .road-pin span::before {
    content: none;
  }

  .road-steps .road-step .road-pin span::before {
    content: none;
  }

  .road-card {
    padding: 22px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
