:root {
  --bg: #f8f2e9;
  --bg-deep: #efe3d4;
  --panel: rgba(255, 250, 244, 0.82);
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #f4eadf;
  --text: #37271d;
  --muted: #7a6654;
  --accent: #c59658;
  --accent-strong: #ab773d;
  --accent-soft: #ecd4b1;
  --line: rgba(198, 157, 109, 0.2);
  --shadow: 0 28px 80px rgba(109, 74, 33, 0.12);
  --shadow-soft: 0 18px 42px rgba(109, 74, 33, 0.08);
  --radius-xl: 2.5rem;
  --radius-lg: 1.75rem;
  --radius-md: 1.25rem;
  --radius-sm: 1rem;
  --page-gutter: 1rem;
  --content-max: 74rem;
  --content-narrow: 60rem;
  --topbar-height: 4.1rem;
  --section-space: clamp(2.5rem, 7vw, 4rem);
  color-scheme: light;
}

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

html {
  background: #f8f1e8;
  overflow-x: hidden;
  overscroll-behavior-y: none;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--topbar-height) + 1rem);
}

body {
  margin: 0;
  min-height: 100vh;
  background: #f8f1e8;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  scrollbar-width: none;
  touch-action: pan-y;
}

body::-webkit-scrollbar {
  display: none;
}

body::before {
  content: none;
}

body::after {
  content: none;
}

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

button,
a {
  color: inherit;
  font: inherit;
}

button {
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}

a {
  text-decoration: none;
}

.page-glow {
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

.glow {
  border-radius: 999px;
  filter: blur(92px);
  opacity: 0.56;
  position: absolute;
}

.glow--left {
  background: rgba(237, 219, 197, 0.8);
  height: 28rem;
  left: -9rem;
  top: 10rem;
  width: 28rem;
}

.glow--right {
  background: rgba(231, 209, 189, 0.6);
  height: 30rem;
  right: -10rem;
  top: -3rem;
  width: 30rem;
}

.glow--bottom {
  background: rgba(239, 220, 197, 0.6);
  bottom: -12rem;
  height: 22rem;
  left: 15%;
  width: 38rem;
}

.topbar {
  align-items: center;
  backdrop-filter: blur(20px);
  background: rgba(252, 248, 242, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  left: 50%;
  min-height: var(--topbar-height);
  padding: 0.7rem 0.95rem;
  position: fixed;
  top: 0.75rem;
  transform: translateX(-50%);
  width: min(calc(100% - 1rem), 84rem);
  z-index: 40;
}

.brand-button {
  color: var(--accent-strong);
  flex: 0 0 auto;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.topbar-nav,
.topbar-counter {
  display: none;
}

.nav-link {
  border-radius: 999px;
  color: rgba(69, 52, 36, 0.9);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.78rem 0.96rem;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  background: rgba(255, 255, 255, 0.74);
  color: var(--accent-strong);
  outline: none;
  transform: translateY(-1px);
}

.nav-link--accent {
  background: linear-gradient(135deg, rgba(238, 214, 180, 0.86), rgba(196, 147, 86, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
  color: #fffaf2;
}

.topbar-counter {
  align-items: baseline;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  gap: 0.25rem;
  min-width: 4.5rem;
}

.topbar-counter__current {
  color: var(--accent-strong);
  font-size: 1.08rem;
  font-weight: 800;
}

.topbar-social {
  align-items: center;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent-strong);
  display: inline-flex;
  flex: 0 0 auto;
  height: 2.35rem;
  justify-content: center;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
  width: 2.35rem;
}

.topbar-social svg {
  flex: 0 0 auto;
  height: 1.1rem;
  opacity: 0.85;
  width: 1.1rem;
}

.topbar-social:hover,
.topbar-social:focus-visible {
  background: rgba(255, 255, 255, 0.82);
  color: var(--accent-strong);
  outline: none;
  transform: translateY(-1px);
}

.topbar-social:hover svg {
  opacity: 1;
}

.topbar-socials {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 0.45rem;
}


.nav-burger {
  align-items: center;
  display: inline-flex;
  flex-direction: column;
  flex: 0 0 auto;
  gap: 0.28rem;
  justify-content: center;
  padding: 0.35rem;
}

.nav-burger span {
  background: var(--accent-strong);
  border-radius: 999px;
  display: block;
  height: 2px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
  width: 1.35rem;
}

.nav-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: fixed;
  z-index: 90;
}

.mobile-nav.is-open {
  pointer-events: auto;
}

.mobile-nav__backdrop {
  background: rgba(37, 26, 18, 0.48);
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.35s ease;
}

.mobile-nav.is-open .mobile-nav__backdrop {
  opacity: 1;
}

.mobile-nav__drawer {
  background: #f8f1e8;
  border-left: 1px solid rgba(197, 150, 88, 0.18);
  bottom: 0;
  box-shadow: -8px 0 40px rgba(109, 74, 33, 0.14);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.5rem 1.3rem 2rem;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  width: min(84vw, 19rem);
}

.mobile-nav.is-open .mobile-nav__drawer {
  transform: translateX(0);
}

.mobile-nav__close {
  align-self: flex-end;
  color: var(--muted);
  font-size: 1.15rem;
  padding: 0.35rem;
}

.mobile-nav__brand {
  color: var(--accent-strong);
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin: 0 0 0.9rem;
  text-transform: uppercase;
}

.mobile-nav__link {
  border-radius: 0.9rem;
  font-size: 0.98rem;
  font-weight: 600;
  padding: 0.9rem 1rem;
  text-align: left;
  transition: background 0.2s ease, color 0.2s ease;
  width: 100%;
}

.mobile-nav__link:hover,
.mobile-nav__link:focus-visible {
  background: rgba(197, 150, 88, 0.1);
  color: var(--accent-strong);
  outline: none;
}

.mobile-nav__link--accent {
  background: linear-gradient(135deg, rgba(238, 214, 180, 0.92), rgba(196, 147, 86, 0.98));
  color: #fffaf2;
  margin-top: 0.45rem;
  text-align: center;
}

.progress-rail {
  display: none;
}

.progress-dot {
  background: rgba(255, 255, 255, 0.55);
  border: 1.5px solid rgba(201, 160, 112, 0.25);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  height: 0.55rem;
  transition: background 200ms ease, transform 200ms ease, height 200ms ease, width 200ms ease;
  width: 0.55rem;
}

.progress-dot.is-active {
  background: linear-gradient(135deg, #deb47f 0%, #b57d41 100%);
  border-color: transparent;
  height: 0.95rem;
  width: 0.95rem;
}

.story {
  padding-bottom: 5.5rem;
  padding-top: calc(var(--topbar-height) + 1rem);
  position: relative;
}

.scene {
  position: relative;
}

.scene__sticky {
  display: block;
}

.scene__panel {
  opacity: var(--scene-opacity, 1);
  padding: var(--section-space) var(--page-gutter);
  position: relative;
  transition: transform 320ms ease, opacity 260ms ease;
  width: 100%;
}

.scene__panel--hero {
  padding-bottom: 0;
}

.scene__panel > * {
  position: relative;
  z-index: 1;
}

.hero-shell,
.section-shell,
.pricing-shell {
  margin: 0 auto;
  max-width: var(--content-max);
  width: 100%;
}

.section-shell--narrow {
  max-width: var(--content-narrow);
}

.eyebrow {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin: 0 0 0.8rem;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.92;
  margin: 0;
}

h1 {
  font-size: clamp(2.2rem, 11vw, 3.65rem);
}

h2 {
  font-size: clamp(2rem, 9vw, 3.4rem);
}

.hero-copy h1,
.lead {
  position: relative;
}

.sparkle {
  animation: star-twinkle 4s ease-in-out infinite;
  color: var(--accent);
  display: inline-block;
  font-size: 0.46em;
  line-height: 1;
  padding-left: 0.24em;
  vertical-align: super;
}

.accent-word {
  color: var(--accent-strong);
  display: inline-block;
  white-space: nowrap;
}

.accent-word--shine {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: hero-shimmer 3s linear infinite;
  background-clip: text;
  background-image: linear-gradient(
    95deg,
    #9a6a2a 0%,
    #9a6a2a 15%,
    #c48a40 30%,
    #eed880 44%,
    #faedb5 50%,
    #eed880 56%,
    #c48a40 70%,
    #9a6a2a 85%,
    #9a6a2a 100%
  );
  background-size: 200% 100%;
  color: transparent;
}

.lead,
.section-heading p,
.pricing-subtitle,
.pricing-safe,
.faq-brand {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.lead {
  margin: 1rem 0 0;
  max-width: min(100%, 34rem);
}

.panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.35rem;
}

.button,
.showcase-scroll-btn,
.sticky-cta__btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  overflow: hidden;
  position: relative;
  text-align: center;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible,
.showcase-scroll-btn:hover,
.showcase-scroll-btn:focus-visible,
.sticky-cta__btn:hover,
.sticky-cta__btn:focus-visible {
  filter: saturate(1.04);
  outline: none;
  transform: translateY(-2px);
}

.button {
  min-height: 3.25rem;
  padding: 0.85rem 1.35rem;
}

.button--primary {
  animation: btn-pulse 2.6s ease-in-out infinite;
  background: linear-gradient(135deg, #e8c998 0%, #c99252 100%);
  box-shadow: 0 16px 30px rgba(189, 137, 74, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  color: #fff9f1;
}

.button--primary:hover,
.button--primary:focus-visible {
  animation: none;
}

.button--wide {
  width: min(100%, 22rem);
}

.button.is-loading {
  opacity: 0.82;
  pointer-events: none;
}

.button.is-loading::after {
  animation: spin 0.7s linear infinite;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  border-top-color: #fff;
  content: "";
  display: inline-block;
  height: 0.9rem;
  margin-left: 0.55rem;
  width: 0.9rem;
}

.btn-star,
.btn-arrow {
  display: inline-block;
  font-style: normal;
  margin-left: 0.3em;
  opacity: 0.92;
}

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

.tilt-card {
  transform: perspective(1200px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  transition: transform 240ms ease;
}

.section-heading {
  margin: 0 auto 1.75rem;
  max-width: 46rem;
}

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

.section-heading p {
  margin: 1rem auto 0;
  max-width: 36rem;
}

.heading-ornament {
  background: linear-gradient(90deg, transparent, rgba(197, 150, 88, 0.65), transparent);
  display: block;
  height: 1px;
  margin: 1.3rem auto 0;
  width: min(10rem, 35%);
}

.hero-shell {
  display: grid;
  gap: 1.5rem;
  padding-bottom: clamp(1rem, 3vw, 1.8rem);
  position: relative;
  z-index: 2;
}

.hero-shell > *,
.pricing-shell > *,
.section-shell > * {
  min-width: 0;
}

.hero-copy {
  max-width: min(100%, 38rem);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
  max-width: min(100%, 30rem);
}

.hero-proof span {
  backdrop-filter: blur(10px);
  background: rgba(255, 252, 247, 0.68);
  border: 1px solid rgba(197, 150, 88, 0.2);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(126, 89, 47, 0.08);
  color: rgba(88, 62, 31, 0.82);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.52rem 0.82rem;
}

.hero-stage {
  align-items: flex-end;
  display: flex;
  isolation: isolate;
  justify-content: center;
  margin: 0 auto;
  max-width: clamp(19rem, 76vw, 30rem);
  min-height: clamp(20rem, 72vw, 30rem);
  padding-top: clamp(0.6rem, 3vw, 1.4rem);
  position: relative;
  width: 100%;
}

.hero-girl-frame {
  align-items: flex-end;
  display: flex;
  height: 100%;
  justify-content: center;
  width: 100%;
}

.hero-girl {
  align-self: flex-end;
  aspect-ratio: auto;
  display: block;
  filter: drop-shadow(0 24px 36px rgba(147, 100, 49, 0.12));
  height: 100%;
  margin: 0 auto;
  max-width: 100%;
  max-height: min(74svh, 36rem);
  object-fit: contain;
  object-position: center bottom;
  transform: translateY(clamp(0.08rem, 0.4vw, 0.28rem));
  transform-origin: center bottom;
  width: auto;
}

.hero-stage::before {
  background:
    radial-gradient(72% 78% at 56% 34%, rgba(233, 206, 171, 0.56) 0%, rgba(233, 206, 171, 0.2) 44%, rgba(247, 240, 230, 0) 76%),
    linear-gradient(115deg, rgba(255, 247, 238, 0.86) 6%, rgba(255, 247, 238, 0) 58%);
  content: "";
  inset: 4% 8% 12%;
  position: absolute;
  z-index: -2;
}

.hero-stage::after {
  background: linear-gradient(180deg, rgba(247, 240, 230, 0) 0%, rgba(247, 240, 230, 0.84) 58%, #f8f2e9 100%);
  bottom: -0.1rem;
  content: "";
  height: clamp(3rem, 8vw, 5rem);
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  z-index: 1;
}

.hero-tags,
.hero-sparkle,
.hero-scroll-hint {
  display: none;
}

.showcase-shell {
  display: grid;
  gap: 1.4rem;
  margin: 0 auto;
  max-width: var(--content-max);
  overflow: visible;
  width: 100%;
}

.showcase-cards {
  display: grid;
  gap: clamp(0.85rem, 2vw, 1.5rem);
  grid-template-columns: 1fr;
}

.showcase-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(253, 249, 244, 0.82));
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.95rem;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  padding: 1rem;
  transform-origin: bottom center;
}

.showcase-card__header {
  align-items: center;
  display: flex;
  gap: 0.7rem;
}

.showcase-star {
  color: var(--accent);
  flex: 0 0 auto;
  height: 1.1rem;
  width: 1.1rem;
}

.showcase-card__header h3 {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.28;
  margin: 0;
  text-transform: uppercase;
}

.showcase-card__main {
  align-items: center;
  background: linear-gradient(160deg, #faf5ee 0%, #f2e8da 100%);
  border-radius: 1.1rem;
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 0.35rem;
}

.showcase-card__main img {
  aspect-ratio: auto;
  border-radius: 0.95rem;
  height: auto;
  margin: 0 auto;
  max-height: min(34rem, 72svh);
  object-fit: contain;
  object-position: center top;
  width: 100%;
}

.showcase-cta {
  align-items: center;
  display: flex;
  gap: 0.85rem;
  justify-content: center;
}

.showcase-scroll-btn {
  background: linear-gradient(135deg, #f0d5af 0%, #c99152 100%);
  box-shadow: var(--shadow-soft);
  color: #fffaf2;
  height: 3.25rem;
  width: 3.25rem;
}

.showcase-scroll-btn svg {
  height: 1.15rem;
  width: 1.15rem;
}

.showcase-cta__label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  margin: 0;
  text-transform: uppercase;
}

.showcase-cta__label span {
  color: var(--accent-strong);
}

.benefits-grid,
.process-grid,
.pricing-trust {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.benefit-card,
.process-card,
.pricing-review__card,
.faq-item {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(253, 249, 244, 0.82));
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
}

.benefit-card,
.process-card {
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}

.benefit-card__media,
.process-card__img {
  background: linear-gradient(160deg, #faf5ee 0%, #f2e8da 100%);
  border-radius: 1.15rem;
  overflow: hidden;
  padding: 0.35rem;
}

.benefit-card__media {
  aspect-ratio: 4 / 3;
}

.benefit-card__media img,
.process-card__img img {
  border-radius: 0.95rem;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.benefit-card__text,
.process-card__top {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-width: 0;
}

.benefit-num,
.process-card__badge {
  align-items: center;
  background: linear-gradient(180deg, #dfbf95, #bf8b52);
  border-radius: 999px;
  color: #fff9f1;
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 800;
  height: 2rem;
  justify-content: center;
  width: 2rem;
}

.benefit-card h3,
.faq-item h3,
.process-card h3 {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin: 0.8rem 0 0;
  overflow-wrap: anywhere;
}

.benefit-card p,
.faq-item p,
.process-card p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.52;
  margin: 0.45rem 0 0;
  min-width: 0;
}

.benefits-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.8rem;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  align-items: start;
  border-radius: 1.5rem;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 2.75rem minmax(0, 1fr) auto;
  padding: 1rem;
}

.faq-item__icon {
  align-items: center;
  background: linear-gradient(180deg, #f7efe4 0%, #f0e2cf 100%);
  border-radius: 1rem;
  color: var(--accent-strong);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 800;
  height: 2.75rem;
  justify-content: center;
  width: 2.75rem;
}

.faq-item__arrow {
  align-items: center;
  border: 1.5px solid rgba(197, 150, 88, 0.35);
  border-radius: 50%;
  color: var(--accent);
  display: inline-flex;
  font-size: 1.2rem;
  height: 2.2rem;
  justify-content: center;
  line-height: 1;
  transition: transform 220ms ease, background-color 220ms ease, color 220ms ease;
  width: 2.2rem;
}

.faq-item__body {
  display: grid;
  grid-template-rows: 0fr;
  margin-top: 0;
  transition: grid-template-rows 260ms ease, margin-top 260ms ease;
}

.faq-item__body > * {
  overflow: hidden;
}

.faq-item.is-open .faq-item__body {
  grid-template-rows: 1fr;
  margin-top: 0.75rem;
}

.faq-item.is-open .faq-item__arrow {
  background: rgba(197, 150, 88, 0.12);
  color: var(--accent-strong);
  transform: rotate(45deg);
}

.faq-brand {
  margin: 1.35rem 0 0;
  text-align: center;
}

.process-card__img {
  aspect-ratio: 4 / 3;
}

.process-card__img img {
  object-fit: contain;
  object-position: center;
}

.process-badges {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: 1fr;
  margin-top: 1.4rem;
}

.process-badges span,
.pricing-trust span {
  background: rgba(255, 252, 247, 0.78);
  border: 1px solid rgba(197, 150, 88, 0.14);
  border-radius: 1.1rem;
  box-shadow: var(--shadow-soft);
  color: var(--text);
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.42;
  padding: 0.95rem 1rem;
}

.process-badges small,
.pricing-trust small {
  color: var(--muted);
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.45;
  margin-top: 0.3rem;
}

.pricing-shell {
  display: grid;
  gap: 1rem;
}

.pricing-copy {
  display: grid;
}

.pricing-subtitle {
  margin: 0.95rem 0 0;
}

.price-box {
  animation: border-glow 2.8s ease-in-out infinite;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(252, 247, 240, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 1.7rem;
  box-shadow: var(--shadow);
  display: inline-flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 1.3rem;
  padding: 1rem 1.15rem;
}

.price-box__label {
  color: var(--muted);
  display: block;
  font-size: 0.85rem;
  line-height: 1.45;
  margin-bottom: 0;
}

.price-line {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.price-line strong {
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 9vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-old {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.7;
  text-decoration: line-through;
}

.price-badge {
  background: rgba(236, 201, 158, 0.92);
  border-radius: 999px;
  color: #86561e;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 0.45rem 0.7rem;
}

.pricing-safe {
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  color: rgba(74, 57, 40, 0.75);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 0.8rem 0 0;
  padding: 0.45rem 1rem;
  text-transform: uppercase;
}

.pricing-stage {
  justify-self: center;
  margin: 0 auto;
  max-width: none;
  min-height: clamp(22rem, 54vh, 32rem);
  overflow: visible;
  padding: 0;
  position: relative;
  width: min(100%, 35rem);
}

.pricing-stage__portrait {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(245, 233, 217, 0.44));
  border-radius: var(--radius-lg);
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0.55rem;
}

.pricing-stage__portrait img {
  aspect-ratio: auto;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  width: 100%;
}

.pricing-reviews {
  display: none;
  gap: 0.65rem;
}

.pricing-review__card {
  border-radius: 1.25rem;
  max-width: 17.75rem;
  padding: 0.82rem 0.9rem 0.8rem;
}

.pricing-review__card blockquote {
  color: var(--text);
  font-size: 0.86rem;
  line-height: 1.5;
  margin: 0;
}

.pricing-review__card figcaption {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 0.65rem;
}

.pricing-trust {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: 1fr;
  margin-top: 0.35rem;
}

.toast {
  background: rgba(42, 29, 18, 0.94);
  border-radius: 999px;
  bottom: 5.5rem;
  color: #fff9f1;
  left: 50%;
  max-width: calc(100% - 2rem);
  opacity: 0;
  padding: 0.85rem 1rem;
  pointer-events: none;
  position: fixed;
  text-align: center;
  transform: translate(-50%, 0.5rem);
  transition: opacity 220ms ease, transform 220ms ease;
  z-index: 80;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.sticky-cta {
  align-items: center;
  background: rgba(42, 29, 18, 0.98);
  border-top: 1px solid rgba(197, 150, 88, 0.22);
  bottom: 0;
  display: flex;
  gap: 0.65rem;
  left: 0;
  padding: 0.8rem 0.95rem calc(0.8rem + env(safe-area-inset-bottom, 0px));
  position: fixed;
  right: 0;
  transform: translateY(100%);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 70;
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-cta__price {
  color: #e8c47a;
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
}

.sticky-cta__label {
  color: rgba(248, 241, 232, 0.7);
  flex: 1 1 auto;
  font-size: 0.78rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sticky-cta__btn {
  background: linear-gradient(135deg, #e8c998 0%, #c99252 100%);
  color: #fff9f1;
  font-size: 0.84rem;
  min-height: 2.7rem;
  padding: 0.55rem 1rem;
  white-space: nowrap;
}

.ripple {
  animation: ripple-out 0.55s ease-out forwards;
  background: rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  pointer-events: none;
  position: absolute;
}

/* ─── Финальный футер ─── */
.site-footer {
  background: linear-gradient(180deg, #2c1f14 0%, #241a10 100%);
  color: rgba(248, 241, 232, 0.92);
  margin-top: 2.5rem;
  padding: clamp(2.5rem, 6vw, 4rem) var(--page-gutter) 1.6rem;
  position: relative;
  z-index: 10;
}

.site-footer__inner {
  display: grid;
  gap: 2rem;
  margin: 0 auto;
  max-width: var(--content-max);
}

.site-footer__logo {
  color: #f0d9b5;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin: 0;
  text-transform: uppercase;
}

.site-footer__tagline {
  color: rgba(248, 241, 232, 0.66);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0.85rem 0 0;
  max-width: 30rem;
}

.site-footer__social {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.site-footer__social-link {
  align-items: center;
  background: rgba(255, 251, 244, 0.08);
  border: 1px solid rgba(197, 150, 88, 0.28);
  border-radius: 50%;
  color: #e8c47a;
  display: inline-flex;
  height: 2.7rem;
  justify-content: center;
  transition: background-color 200ms ease, transform 200ms ease, color 200ms ease;
  width: 2.7rem;
}

.site-footer__social-link svg {
  height: 1.2rem;
  width: 1.2rem;
}

.site-footer__social-link:hover {
  background: rgba(197, 150, 88, 0.2);
  color: #fff3dc;
  transform: translateY(-2px);
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.site-footer__nav-title {
  color: rgba(248, 241, 232, 0.5);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin: 0 0 0.4rem;
  text-transform: uppercase;
}

.site-footer__link {
  color: rgba(248, 241, 232, 0.82);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.2rem 0;
  text-align: left;
  transition: color 180ms ease, transform 180ms ease;
  width: fit-content;
}

.site-footer__link:hover {
  color: #f0d9b5;
  transform: translateX(3px);
}

.site-footer__link--accent {
  color: #e8c47a;
  font-weight: 700;
}

.site-footer__bottom {
  align-items: center;
  border-top: 1px solid rgba(197, 150, 88, 0.16);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  justify-content: space-between;
  margin: 2.2rem auto 0;
  max-width: var(--content-max);
  padding-top: 1.4rem;
}

.site-footer__copy {
  color: rgba(248, 241, 232, 0.55);
  font-size: 0.82rem;
  margin: 0;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.site-footer__legal-link {
  color: rgba(248, 241, 232, 0.55);
  font-size: 0.82rem;
  transition: color 180ms ease;
}

.site-footer__legal-link:hover {
  color: #e8c47a;
}

@media (min-width: 768px) {
  .site-footer__inner {
    grid-template-columns: 1.6fr 1fr;
  }
}

@keyframes hero-shimmer {
  0% {
    background-position: 200% center;
  }

  100% {
    background-position: -200% center;
  }
}

@keyframes star-twinkle {
  0%,
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }

  35% {
    opacity: 0.55;
    transform: scale(1.35) rotate(22deg);
  }

  70% {
    opacity: 0.85;
    transform: scale(0.88) rotate(-9deg);
  }
}

@keyframes btn-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(197, 150, 88, 0.45), 0 16px 30px rgba(189, 137, 74, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  }

  60% {
    box-shadow: 0 0 0 9px rgba(197, 150, 88, 0), 0 16px 30px rgba(189, 137, 74, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  }
}

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

@keyframes hint-bounce {
  0%,
  100% {
    opacity: 0.7;
    transform: translate(-50%, 0);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, 5px);
  }
}

@keyframes hero-tag-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes ripple-out {
  from {
    opacity: 0.45;
    transform: scale(0);
  }

  to {
    opacity: 0;
    transform: scale(2.2);
  }
}

@keyframes border-glow {
  0%,
  100% {
    border-color: rgba(197, 150, 88, 0.22);
  }

  50% {
    border-color: rgba(197, 150, 88, 0.72);
  }
}

@media (max-width: 359px) {
  .topbar {
    padding-inline: 0.8rem;
  }

  .brand-button {
    font-size: 0.98rem;
  }

  .faq-item {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .faq-item__icon,
  .sticky-cta__label {
    display: none;
  }
}

/* ═══ МОБИЛЬНАЯ КОМПАКТНАЯ РАСКЛАДКА (≤767px) ═══ */
@media (max-width: 767px) {
  .scene--hero .scene__panel--hero {
    display: flex;
    flex-direction: column;
    min-height: calc(100dvh - var(--topbar-height) - 1.25rem);
    overflow: hidden;
    padding-bottom: 0;
    position: relative;
  }

  .scene--hero .hero-shell {
    flex: 0 0 auto;
    margin: 0;
    max-width: none;
    padding-bottom: 0.4rem;
    position: relative;
    z-index: 2;
  }

  .scene--hero .hero-stage {
    flex: 1 1 auto;
    margin: 0;
    max-width: none;
    min-height: 12rem;
    position: relative;
    width: 100%;
  }

  /* тёплое свечение за девушкой — глубина и интеграция в фон */
  .scene--hero .hero-stage::after {
    background: radial-gradient(ellipse 80% 60% at 50% 72%, rgba(214, 188, 150, 0.42), rgba(214, 188, 150, 0) 70%);
    content: "";
    inset: 0;
    position: absolute;
    z-index: 0;
  }

  .scene--hero .hero-girl {
    height: 100%;
    inset: 0;
    margin: 0;
    max-height: none;
    object-fit: contain;
    object-position: bottom center;
    position: absolute;
    width: 100%;
    z-index: 1;
  }

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

  .hero-proof {
    gap: 0.45rem;
    margin-top: 0.9rem;
  }

  .hero-proof span {
    font-size: 0.7rem;
    padding: 0.48rem 0.72rem;
  }

  /* Showcase → горизонтальная свайп-карусель */
  .showcase-shell {
    overflow: hidden;
    position: relative;
  }

  .showcase-cards {
    display: flex;
    gap: 0.85rem;
    grid-template-columns: none;
    margin-inline: calc(var(--page-gutter) * -1);
    overflow-x: auto;
    padding: 0.4rem 1rem 1rem;
    scroll-padding-left: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .showcase-cards::-webkit-scrollbar {
    display: none;
  }

  .showcase-card {
    flex: 0 0 78%;
    max-width: 20rem;
    scroll-snap-align: center;
    transform: none !important;
    width: auto;
  }

  .showcase-card__main img {
    aspect-ratio: 4 / 4.3;
    max-height: none;
  }

  /* градиент справа — подсказка, что карточки листаются */
  .showcase-shell::after {
    background: linear-gradient(to left, rgba(248, 242, 233, 0.92), transparent);
    bottom: 0;
    content: "";
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 2.2rem;
    z-index: 3;
  }

  /* Benefits & Process → горизонтальные компактные карточки */
  .benefit-card,
  .process-card {
    align-items: center;
    flex-direction: row;
    gap: 0.95rem;
    min-height: 0;
  }

  /* Процесс: картинка слева, текст справа (DOM: текст→картинка) */
  .process-card {
    flex-direction: row-reverse;
  }

  .benefit-card__media,
  .process-card__img {
    align-self: stretch;
    aspect-ratio: 1 / 1;
    flex: 0 0 36%;
    max-width: 36%;
  }

  .benefit-card__text,
  .process-card__top {
    gap: 0.25rem;
  }

  .benefit-card h3,
  .process-card h3 {
    font-size: 0.95rem;
    margin-top: 0.45rem;
  }

  .benefit-card p,
  .process-card p {
    font-size: 0.86rem;
    line-height: 1.46;
    margin-top: 0.35rem;
  }

  /* Бейджи в 2 колонки — короче по высоте */
  .process-badges,
  .pricing-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  :root {
    --page-gutter: clamp(1.4rem, 4vw, 2rem);
    --section-space: clamp(3rem, 6vw, 4.5rem);
  }

  .scene--hero .scene__panel--hero {
    min-height: calc(100svh - var(--topbar-height) - 1.25rem);
  }

  .scene--hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    max-width: 16ch;
  }

  .scene--hero .lead {
    font-size: 1rem;
    max-width: 32rem;
  }

  .scene--hero .hero-shell {
    gap: clamp(1.5rem, 3vw, 2.3rem);
  }

  .scene--hero .hero-stage {
    max-width: clamp(21rem, 40vw, 28rem);
    min-height: clamp(24rem, 48vw, 34rem);
  }

  .scene--hero .hero-girl {
    max-width: none;
  }

  .hero-proof span {
    font-size: 0.74rem;
  }

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

  .showcase-card--center {
    grid-column: 1 / -1;
    order: -1;
  }

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

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

  .process-grid > .process-card:last-child {
    grid-column: 1 / -1;
  }

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

  .pricing-reviews {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-stage {
    max-width: 36rem;
  }

  .toast {
    bottom: 6rem;
  }
}

@media (min-width: 900px) and (max-width: 1024px) {
  :root {
    --topbar-height: 4.55rem;
  }

  .topbar {
    gap: 0.85rem;
    padding: 0.72rem 1rem 0.72rem 1.15rem;
    width: min(calc(100% - 1.5rem), 70rem);
  }

  .topbar-nav {
    align-items: center;
    display: flex;
    gap: 0.35rem;
  }

  .topbar-counter {
    display: flex;
  }

  .nav-burger,
  .mobile-nav {
    display: none;
  }

  .scene--hero .scene__panel--hero {
    align-items: stretch;
    column-gap: clamp(1.25rem, 3vw, 2rem);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(17rem, 22rem);
    min-height: calc(100svh - var(--topbar-height) - 1.25rem);
    padding-bottom: 0;
  }

  .scene--hero .scene__panel--hero > * {
    min-width: 0;
  }

  .scene--hero .hero-shell {
    display: block;
    margin: 0;
  }

  .scene--hero .hero-copy {
    max-width: 31rem;
  }

  .scene--hero h1 {
    font-size: clamp(2.5rem, 4vw, 3.35rem);
    max-width: 13ch;
  }

  .scene--hero .lead {
    max-width: 23rem;
  }

  .scene--hero .hero-stage {
    justify-self: center;
    margin-top: 0;
    max-width: min(100%, 23rem);
    min-height: clamp(24rem, 60vh, 32rem);
    place-self: end center;
  }

  .hero-scroll-hint,
  .hero-tags {
    display: none;
  }

  .showcase-shell {
    align-items: center;
    gap: 1rem;
    justify-content: center;
    padding-inline: clamp(0.75rem, 2vw, 1rem);
  }

  .showcase-cards {
    align-items: stretch;
    gap: 0.8rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-top: 0.75rem;
  }

  .showcase-card {
    border-radius: 1.45rem;
    padding: 0.85rem;
  }

  .showcase-cards > .showcase-card:first-child {
    transform: rotate(-4deg);
    z-index: 1;
  }

  .showcase-cards > .showcase-card:last-child {
    transform: rotate(4deg);
    z-index: 1;
  }

  .showcase-card--center {
    grid-column: auto;
    order: 0;
    transform: translateY(-0.85rem);
    z-index: 2;
  }

  .showcase-card__header h3 {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }

  .showcase-card__main img {
    max-height: 26rem;
  }

  .showcase-cta {
    margin-top: -0.1rem;
  }

  .showcase-scroll-btn {
    height: 3rem;
    width: 3rem;
  }

  .showcase-cta__label {
    font-size: 0.76rem;
  }

  .pricing-shell {
    align-items: center;
    column-gap: 1rem;
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    row-gap: 0.9rem;
  }

  .pricing-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .pricing-stage {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin: 0;
    max-width: none;
  }

  .pricing-reviews {
    display: grid;
    gap: 0.75rem;
    grid-column: 1;
    grid-row: 2;
    grid-template-columns: 1fr;
    max-width: 16.5rem;
  }

  .pricing-review__card:last-child {
    display: none;
  }

  .pricing-trust {
    grid-column: 1 / -1;
    grid-row: 3;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1025px) {
  :root {
    --page-gutter: clamp(1.5rem, 4vw, 3rem);
    --topbar-height: 4.85rem;
    --section-space: clamp(2rem, 4vw, 3.4rem);
  }

  .topbar {
    gap: 1rem;
    background: rgba(252, 248, 242, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.48);
    padding: 0.8rem 1rem 0.8rem 1.2rem;
    top: 1rem;
    width: min(1220px, calc(100% - 2rem));
  }

  .brand-button {
    font-size: 1.24rem;
  }

  .topbar-nav {
    align-items: center;
    display: flex;
    gap: 0.45rem;
  }

  .topbar-counter {
    display: flex;
  }

  .nav-burger,
  .mobile-nav {
    display: none;
  }

  .progress-rail {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    position: fixed;
    right: 1.3rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 24;
  }

  body::after {
    content: none;
  }

  .story {
    padding-bottom: 0;
    padding-top: 0;
  }

  .scene {
    min-height: 136svh;
  }

  .scene__sticky {
    display: grid;
    min-height: calc(100svh - var(--topbar-height) - 1.5rem);
    overflow: clip;
    position: sticky;
    top: calc(var(--topbar-height) + 1rem);
  }

  .scene__panel {
    min-height: calc(100svh - var(--topbar-height) - 1.5rem);
    padding-bottom: 2rem;
    padding-top: clamp(1.8rem, 2.5vw, 2.8rem);
    transform: translate3d(0, var(--scene-offset, 0px), 0);
    transition: transform 320ms ease, opacity 260ms ease;
  }

  .scene--hero .scene__panel--hero {
    margin-inline: auto;
    max-width: var(--content-max);
    min-height: calc(100svh - var(--topbar-height));
    overflow: visible;
    padding-bottom: 0;
  }

  .hero-shell {
    align-items: center;
    display: grid;
    gap: 0;
    grid-template-columns: minmax(0, 1fr);
    margin: 0 auto;
    min-height: clamp(34rem, 76vh, 43rem);
    padding-bottom: 0;
    position: relative;
  }

  .hero-copy {
    max-width: 34rem;
    position: relative;
    z-index: 2;
  }

  h1 {
    font-size: clamp(3rem, 4.2vw, 4.45rem);
    max-width: 11.5ch;
  }

  h2 {
    font-size: clamp(2.8rem, 4.1vw, 4.6rem);
  }

  .lead {
    font-size: 0.95rem;
  }

  .hero-stage {
    -webkit-mask-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.86) 2.1rem, #000 4.4rem);
    background: radial-gradient(ellipse 42% 50% at 64% 42%, rgba(140, 134, 126, 0.38) 0%, rgba(140, 134, 126, 0.1) 50%, rgba(140, 134, 126, 0) 68%);
    bottom: 0;
    inset-inline: auto 0;
    mask-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.86) 2.1rem, #000 4.4rem);
    margin: 0;
    max-width: none;
    min-height: 0;
    overflow: visible;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 1rem;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    width: clamp(34rem, 68%, 66rem);
    will-change: transform;
    z-index: 1;
  }

  .hero-stage::before,
  .hero-stage::after {
    content: none;
  }

  .hero-girl-frame {
    display: contents;
  }

  .hero-girl {
    bottom: 0;
    display: block;
    height: 100%;
    margin-inline: 0;
    max-height: none;
    max-width: none;
    object-fit: contain;
    object-position: right bottom;
    position: absolute;
    right: 0;
    transform: none;
    width: auto;
  }

  .hero-scroll-hint {
    display: none;
  }

  .hero-scroll-hint.is-hidden {
    opacity: 0;
  }

  .hero-tags {
    display: block;
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 3;
  }

  .hero-tag {
    animation: hero-tag-float 3.8s ease-in-out infinite;
    backdrop-filter: blur(10px);
    background: rgba(255, 251, 244, 0.86);
    border: 1px solid rgba(197, 150, 88, 0.28);
    border-radius: 999px;
    box-shadow: 0 4px 18px rgba(109, 74, 33, 0.1), 0 1px 3px rgba(109, 74, 33, 0.06);
    color: rgba(74, 52, 24, 0.88);
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    left: var(--tag-x, 10%);
    letter-spacing: 0.1em;
    padding: 0.42em 0.9em;
    position: absolute;
    text-transform: uppercase;
    top: var(--tag-y, 20%);
    white-space: nowrap;
  }

  .hero-sparkle {
    color: var(--accent);
    display: inline-block;
    line-height: 1;
    pointer-events: none;
    position: absolute;
  }

  .hero-sparkle--a {
    font-size: 1.15rem;
    right: clamp(0.8rem, 6%, 3rem);
    top: 13%;
  }

  .hero-sparkle--b {
    bottom: 12%;
    font-size: 0.9rem;
    left: clamp(58%, 64%, 70%);
  }

  .showcase-shell {
    align-items: center;
    gap: 1.35rem;
    justify-content: center;
    max-width: min(100%, 92rem);
    padding-inline: clamp(1rem, 3vw, 2.5rem);
  }

  .showcase-cards {
    align-items: stretch;
    gap: clamp(0.85rem, 2vw, 1.5rem);
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.04fr) minmax(0, 0.9fr);
    padding-top: 0.5rem;
  }

  .showcase-card {
    border-radius: 1.6rem;
    padding: 1.05rem;
  }

  .showcase-cards > .showcase-card:first-child {
    transform: rotate(-4deg) translateY(0.6rem);
    z-index: 1;
  }

  .showcase-cards > .showcase-card:last-child {
    transform: rotate(4deg) translateY(0.6rem);
    z-index: 1;
  }

  .showcase-card--center {
    grid-column: auto;
    order: 0;
    transform: translateY(-0.9rem);
    z-index: 2;
  }

  .showcase-card__main img {
    max-height: min(35rem, 70svh);
  }

  .benefits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .faq-item {
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.15rem;
  }

  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-grid > .process-card:last-child {
    grid-column: auto;
  }

  .process-card {
    min-height: 31rem;
  }

  .process-card__img {
    aspect-ratio: auto;
    min-height: 15rem;
  }

  .process-badges {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .pricing-shell {
    align-items: start;
    column-gap: 2.25rem;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    max-width: 1180px;
    row-gap: 1.15rem;
  }

  .pricing-copy {
    max-width: none;
    padding-top: 0.55rem;
  }

  .pricing-copy h2 {
    max-width: 10ch;
  }

  .pricing-stage {
    justify-self: end;
    min-height: clamp(25rem, 54vh, 32rem);
    width: min(100%, 35rem);
  }

  .pricing-trust {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .sticky-cta {
    display: none;
  }
}

@media (min-width: 1920px) {
  :root {
    --content-max: 82rem;
    --content-narrow: 64rem;
    --section-space: clamp(2.4rem, 4vw, 4rem);
  }

  .scene__panel {
    padding-left: clamp(3rem, 8vw, 8rem);
    padding-right: clamp(3rem, 8vw, 8rem);
  }

  .hero-girl {
    height: 100%;
  }

  .showcase-shell {
    max-width: min(100%, 100rem);
  }

  .pricing-shell {
    max-width: 1180px;
  }
}

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

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