﻿:root {
  --color-paper: #fbf8f2;
  --color-cream: #f5eee3;
  --color-soft: #efe4d5;
  --color-ink: #3f392f;
  --color-muted: #777164;
  --color-green: #6f7b4f;
  --color-green-dark: #59633f;
  --color-sage: #9ba381;
  --color-line: #e6dccd;
  --color-white: #fffdf8;
  --shadow-soft: 0 18px 50px rgba(63, 57, 47, 0.08);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", Arial, sans-serif;
  --container: 1180px;
}

@font-face {
  font-display: swap;
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500 700;
  src: url("../fonts/co3bmX5slCNuHLi8bLeY9MK7whWMhyjYrXtKgS4.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-display: swap;
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500 700;
  src: url("../fonts/co3bmX5slCNuHLi8bLeY9MK7whWMhyjYqXtK.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-display: swap;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  src: url("../fonts/xn7gYHE41ni1AdIRggOxSuXd.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-display: swap;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  src: url("../fonts/xn7gYHE41ni1AdIRggexSg.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body.snail-theme {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.snail-theme img {
  display: block;
  max-width: 100%;
  height: auto;
}

body.snail-theme a {
  color: inherit;
  text-decoration: none;
}

body.snail-theme button,
body.snail-theme input,
body.snail-theme textarea,
body.snail-theme select {
  font: inherit;
}

body.snail-theme svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.landing-container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.section {
  padding-block: 72px;
  background: var(--color-paper);
}

.section-band {
  background: var(--color-cream);
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-title,
.hero h1,
.cta-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
  color: var(--color-ink);
}

.section-title {
  font-size: 42px;
}

.section-title p,
.hero h1 p,
.cta-panel h2 p {
  margin: 0;
  line-height: inherit;
}

.section-title--center {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.section-text {
  color: var(--color-muted);
}

.section-text p,
.section-text br + br {
  margin: 0 0 12px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--color-green);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button,
.text-link,
.product-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover,
.text-link:hover,
.product-card__button:hover {
  transform: translateY(-1px);
}

.button--primary,
.button--compact {
  color: var(--color-white);
  background: var(--color-green);
  border-color: var(--color-green);
}

.button--primary {
  min-width: 178px;
  padding: 0 26px;
}

.button--compact {
  min-height: 40px;
  padding: 0 22px;
  font-size: 13px;
}

.button--ghost {
  min-width: 172px;
  padding: 0 24px;
  color: var(--color-green-dark);
  background: rgba(255, 253, 248, 0.64);
  border-color: var(--color-sage);
}

.text-link {
  min-height: auto;
  color: var(--color-green-dark);
  background: transparent;
}

.text-link svg,
.product-card__button svg {
  width: 18px;
  height: 18px;
}

.landing-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 248, 242, 0.88);
  border-bottom: 1px solid rgba(230, 220, 205, 0.66);
  backdrop-filter: blur(16px);
}

.landing-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 148px;
}

.brand__image {
  width: 48px;
  max-height: 48px;
  object-fit: contain;
}

.brand__text {
  display: grid;
  gap: 1px;
}

.brand__title,
.footer-brand strong {
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.12em;
}

.brand__caption,
.footer-brand p {
  margin: 0;
  color: var(--color-muted);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.landing-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.landing-nav__link {
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.landing-nav__link:hover {
  color: var(--color-green-dark);
}

.landing-header__actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.icon-button {
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--color-green-dark);
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 999px;
}

.icon-button svg {
  width: 22px;
  height: 22px;
}

.icon-button__close {
  display: none;
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  isolation: isolate;
}

.hero__media,
.hero__media::after,
.hero__image {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: 0;
  overflow: hidden;
}

.hero__media::after {
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, rgba(251, 248, 242, 0.95) 0%, rgba(251, 248, 242, 0.74) 36%, rgba(251, 248, 242, 0.05) 68%);
}

.hero__image {
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 720px;
  padding-block: 100px 46px;
}

.hero__content {
  max-width: 570px;
}

.hero h1 {
  font-size: 64px;
}

.hero__text {
  max-width: 470px;
  margin-top: 24px;
  font-size: 17px;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.hero__badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 760px;
  margin-top: auto;
  padding-top: 70px;
}

.mini-benefit {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.mini-benefit__icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.benefit-card,
.product-card,
.review-card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 8px;
}

.benefit-card {
  display: grid;
  align-content: start;
  justify-items: center;
  min-height: 150px;
  padding: 26px 16px 20px;
  text-align: center;
}

.benefit-card__icon {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  object-fit: contain;
}

.benefit-card h3,
.mucin-point h3,
.routine-step h3,
.product-card h3,
.footer-column h3 {
  margin: 0;
  color: var(--color-ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
}

.benefit-card p,
.mucin-point p,
.routine-step p,
.product-card p,
.review-card p {
  margin: 8px 0 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.55;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.product-card__media {
  display: block;
  aspect-ratio: 1 / 0.78;
  background: var(--color-cream);
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__body {
  display: grid;
  flex: 1;
  align-content: start;
  padding: 20px 20px 18px;
}

.product-card h3 {
  min-height: 42px;
}

.product-card__meta {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-top: 18px;
  color: var(--color-muted);
  font-size: 13px;
}

.product-card__meta strong {
  color: var(--color-ink);
  font-size: 16px;
  font-weight: 800;
}

.product-card__button {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  color: var(--color-white);
  background: var(--color-green);
  border-color: var(--color-green);
  border-radius: 999px;
}

.product-card__button span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.mucin-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.95fr) minmax(0, 0.85fr);
  align-items: center;
  gap: 44px;
}

.mucin-layout__copy .section-text {
  margin-top: 18px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tag-list span {
  padding: 8px 15px;
  color: var(--color-green-dark);
  background: #f1eadf;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.mucin-layout__image {
  display: grid;
  place-items: center;
}

.mucin-image {
  width: min(100%, 390px);
  aspect-ratio: 1;
  object-fit: contain;
}

.mucin-points {
  display: grid;
  gap: 22px;
  border-left: 1px dashed var(--color-sage);
  padding-left: 28px;
}

.mucin-point {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
}

.mucin-point__icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.section--routine {
  background: var(--color-cream);
}

.routine-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 32px;
}

.routine-step {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 235px;
  padding-top: 4px;
}

.routine-step:not(:last-child)::after {
  position: absolute;
  top: 82px;
  right: 8px;
  content: "в†’";
  color: var(--color-sage);
  font-size: 25px;
}

.routine-step__number {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--color-green-dark);
  background: var(--color-white);
  border: 1px solid var(--color-sage);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.routine-step__image {
  width: 118px;
  height: 118px;
  margin: 12px 0 18px;
  object-fit: contain;
}

.results-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 52px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 30px;
}

.stat-card strong {
  display: block;
  color: var(--color-green);
  font-size: 46px;
  font-weight: 800;
  line-height: 1;
}

.stat-card p,
.results-note {
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.55;
}

.results-note {
  max-width: 520px;
  margin: 32px 0 0;
}

.before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.result-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--color-cream);
}

.result-photo__image {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.result-photo figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  color: var(--color-white);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.review-card {
  padding: 26px;
}

.review-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.quote-mark {
  color: var(--color-soft);
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 0.7;
}

.stars {
  color: #a79857;
  font-size: 14px;
  letter-spacing: 0;
  white-space: nowrap;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.review-author__avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  object-fit: cover;
}

.review-author span {
  display: grid;
  gap: 2px;
}

.review-author strong {
  font-size: 13px;
  line-height: 1.2;
}

.review-author small {
  color: var(--color-muted);
  font-size: 12px;
}

.section--faq {
  background: var(--color-cream);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.56fr) minmax(0, 1fr);
  align-items: center;
  gap: 46px;
}

.faq-image {
  width: min(100%, 340px);
  aspect-ratio: 1;
  object-fit: contain;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.faq-item {
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid var(--color-line);
  border-radius: 8px;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  color: var(--color-ink);
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: var(--color-green);
  transition: transform 180ms ease;
}

.faq-item[open] summary svg {
  transform: rotate(45deg);
}

.faq-item__answer {
  padding: 0 22px 18px;
  color: var(--color-muted);
  font-size: 14px;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.74fr);
  align-items: center;
  gap: 34px;
  min-height: 280px;
  overflow: hidden;
  padding: 44px 48px;
  background: var(--color-cream);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.cta-panel h2 {
  max-width: 560px;
  font-size: 46px;
}

.cta-panel .section-text {
  max-width: 540px;
  margin: 18px 0 26px;
}

.cta-image {
  width: 100%;
  max-height: 250px;
  object-fit: contain;
}

.cta-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
  margin-top: 20px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 600;
}

.cta-feature {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-feature__icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.landing-footer {
  padding-block: 52px 24px;
  background: var(--color-paper);
  border-top: 1px solid var(--color-line);
}

.landing-footer__main {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, minmax(130px, 1fr));
  gap: 34px;
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-brand__image {
  width: 88px;
  max-height: 64px;
  object-fit: contain;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h3 {
  margin-bottom: 4px;
  color: var(--color-muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column__link,
.footer-contact,
.landing-footer__link {
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.35;
}

.footer-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-contact__icon,
.footer-social__icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.footer-social {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
}

.landing-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--color-line);
}

.landing-footer__bottom p {
  margin: 0;
  color: var(--color-muted);
  font-size: 12px;
}

.landing-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

@media (max-width: 1100px) {
  .landing-nav {
    gap: 18px;
  }

  .hero h1 {
    font-size: 56px;
  }

  .benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-grid,
  .routine-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mucin-layout,
  .results-layout,
  .faq-layout,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .mucin-points {
    border-left: 0;
    padding-left: 0;
  }

  .landing-footer__main {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .landing-container {
    width: min(100% - 32px, var(--container));
  }

  .section {
    padding-block: 54px;
  }

  .section-title {
    font-size: 36px;
  }

  .landing-header__inner {
    grid-template-columns: 1fr auto;
    gap: 16px;
    min-height: 68px;
  }

  .landing-nav {
    position: absolute;
    inset: 68px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--color-white);
    border: 1px solid var(--color-line);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
  }

  .landing-header.is-menu-open .landing-nav {
    display: flex;
  }

  .landing-nav__link {
    padding: 12px;
  }

  .icon-button {
    display: grid;
  }

  .landing-header.is-menu-open .icon-button__open {
    display: none;
  }

  .landing-header.is-menu-open .icon-button__close {
    display: inline-flex;
  }

  .hero,
  .hero__inner {
    min-height: 650px;
  }

  .hero__media::after {
    background: rgba(251, 248, 242, 0.78);
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero__content {
    max-width: 620px;
  }

  .hero__badges {
    grid-template-columns: 1fr;
    max-width: 460px;
    gap: 14px;
    padding-top: 42px;
  }

  .before-after,
  .review-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .routine-step:not(:last-child)::after {
    display: none;
  }

  .landing-footer__main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-footer__bottom {
    display: grid;
  }
}

@media (max-width: 620px) {
  body.snail-theme {
    font-size: 15px;
  }

  .section-head {
    display: grid;
  }

  .brand__title {
    font-size: 23px;
  }

  .button--compact {
    min-height: 38px;
    padding-inline: 16px;
  }

  .hero,
  .hero__inner {
    min-height: 620px;
  }

  .hero__inner {
    padding-block: 82px 34px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero__buttons,
  .hero__buttons .button {
    width: 100%;
  }

  .benefit-grid,
  .product-grid,
  .routine-steps,
  .landing-footer__main {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    padding: 30px 24px;
  }

  .cta-panel h2 {
    font-size: 38px;
  }
}

/* Figma first screen, benefits and products */
:root {
  --figma-olive: #737b51;
  --figma-dark: #41432e;
  --figma-text: #585143;
  --figma-soft: #f5f1ec;
  --figma-chip-start: #f2ebe5;
  --figma-chip-end: #e7dbcf;
  --container: 1690px;
}

.landing-header {
  position: absolute;
  top: 20px;
  right: 0;
  left: 0;
  z-index: 30;
  background: transparent;
  border: 0;
  backdrop-filter: none;
}

.landing-header__inner {
  display: grid;
  width: min(100% - 630px, 1290px);
  min-height: 100px;
  align-items: center;
  grid-template-columns: 100px 867px 145px;
  gap: 89px;
}

.brand {
  width: 100px;
  min-width: 100px;
  height: 100px;
  justify-content: center;
  gap: 0;
  color: var(--figma-dark);
  background: url("../images/figma/logo-lumina.svg") center / contain no-repeat;
  text-align: center;
}

.brand__image {
  width: 100px;
  max-height: 100px;
}

.brand__text {
  justify-items: center;
  gap: 2px;
  opacity: 0;
}

.brand__mark {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  margin-bottom: 1px;
  color: var(--figma-olive);
}

.brand__mark svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.6;
}

.brand__title {
  font-size: 31px;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.12em;
}

.brand__caption {
  color: var(--figma-text);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.34em;
}

.landing-nav {
  width: 867px;
  flex: 0 0 867px;
  justify-content: flex-start;
  gap: 30px;
  min-width: 0;
}

.landing-nav__link {
  color: var(--figma-text);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  white-space: nowrap;
}

.landing-header__actions {
  flex: 0 0 auto;
}

.landing-header__actions .button--compact {
  width: 145px;
  min-height: 50px;
  padding: 0 28px;
  color: #fff;
  background: var(--figma-olive);
  border-color: var(--figma-olive);
  border-radius: 40px;
  font-size: 18px;
  font-weight: 500;
}

.hero {
  height: 1080px;
  min-height: 1080px;
  margin-bottom: 0;
  background: #fff;
}

.hero__media::after {
  display: none;
}

.hero__image {
  object-fit: cover;
  object-position: center top;
}

.hero__inner {
  width: min(100% - 630px, 1290px);
  height: 1080px;
  min-height: 1080px;
  justify-content: flex-start;
  padding-block: 224px 0;
}

.hero__content {
  width: 769px;
  max-width: 100%;
}

.hero .eyebrow {
  display: inline-flex;
  width: min(100%, 500px);
  min-height: 46px;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  padding: 10px 20px;
  color: var(--figma-text);
  background: linear-gradient(90deg, var(--figma-chip-start), var(--figma-chip-end));
  border-radius: 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero .eyebrow::before {
  flex: 0 0 27px;
  width: 27px;
  height: 27px;
  content: "";
  background: currentColor;
  mask: url("../images/figma/eyebrow-leaf.svg") center / contain no-repeat;
}

.hero h1 {
  max-width: 769px;
  color: var(--figma-dark);
  font-size: 74px;
  font-weight: 700;
  line-height: 76px;
}

.hero__text {
  max-width: 646px;
  margin-top: 30px;
  color: var(--figma-text);
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
}

.hero__buttons {
  gap: 20px;
  margin-top: 50px;
}

.hero__buttons .button {
  gap: 22px;
  min-height: 72px;
  padding: 0 41px 0 42px;
  border-radius: 40px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero__buttons .button--primary {
  width: 360px;
  color: #fff;
  background: var(--figma-olive);
  border-color: var(--figma-olive);
}

.hero__buttons .button--ghost {
  width: 330px;
  color: var(--figma-olive);
  background: transparent;
  border-color: var(--figma-olive);
}

.hero__buttons .button--primary svg {
  width: 29px;
  height: 25px;
  order: 2;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.hero__buttons .button--ghost svg {
  width: 20px;
  height: 23px;
  fill: currentColor;
  stroke: none;
}

.hero__buttons .button--ghost svg path {
  fill: currentColor;
  stroke: none;
}

.hero__badges {
  display: none;
}

.section--benefits {
  margin-top: 0;
  padding-block: 64px 80px;
  background: #fff;
}

.section--benefits .landing-container,
.section--products .landing-container {
  width: 1690px;
  max-width: calc(100% - 220px);
  margin-right: auto;
  margin-left: 110px;
}

.section--benefits .section-title {
  max-width: 930px;
  color: var(--figma-dark);
  font-size: 62px;
  font-weight: 700;
  line-height: 75px;
}

.section-ornament {
  display: flex;
  width: 189px;
  height: 27px;
  align-items: center;
  justify-content: center;
  margin: 20px auto 0;
  background: url("../images/figma/divider-line-exact.svg") center / 189px 2px no-repeat;
}

.section-ornament::before {
  width: 25px;
  height: 27px;
  content: "";
  background: url("../images/figma/divider-leaf-exact.svg") center / contain no-repeat;
}

.section-ornament::after {
  display: none;
  content: none;
}

.section-ornament svg {
  display: none;
}

.benefit-grid {
  grid-template-columns: repeat(6, 260px);
  justify-content: space-between;
  gap: 26px;
  margin-top: 40px;
}

.benefit-card {
  position: relative;
  width: 260px;
  height: 260px;
  min-height: 0;
  align-content: center;
  padding: 58px 26px;
  background: #fff;
  border: 2.62px solid rgba(231, 219, 207, 0.35);
  border-radius: 52px;
}

.benefit-card__icon {
  width: 78px;
  height: 78px;
  margin-bottom: 26px;
  object-fit: contain;
}

body.snail-theme .benefit-card__icon {
  width: 78px;
  height: 78px;
}

.benefit-card:nth-child(1) .benefit-card__icon {
  content: url("../images/figma/benefit-drop-exact.svg");
  width: 55px;
  height: 66px;
}

.benefit-card:nth-child(2) .benefit-card__icon {
  content: url("../images/figma/benefit-rotate-exact.svg");
  width: 59px;
  height: 66px;
}

.benefit-card:nth-child(3) .benefit-card__icon {
  content: url("../images/figma/benefit-mirror-exact.svg");
  width: 64px;
  height: 79px;
  object-fit: contain;
}

.benefit-card:nth-child(3)::after {
  display: none;
}

.benefit-card:nth-child(4) .benefit-card__icon {
  content: url("../images/figma/benefit-protect-exact.svg");
  width: 96px;
  height: 79px;
}

.benefit-card:nth-child(5) .benefit-card__icon {
  content: url("../images/figma/benefit-day-night-exact.svg");
}

.benefit-card:nth-child(6) .benefit-card__icon {
  content: url("../images/figma/benefit-skin-types-exact.svg");
  width: 68px;
  height: 79px;
}

.benefit-card h3 {
  color: var(--figma-text);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.25;
}

.benefit-card p {
  display: none;
}

.section--products {
  padding-block: 0 124px;
  background: #fff;
  border-top: 0;
}

.section--products .section-head {
  margin-bottom: 44px;
}

.section--products .section-title {
  color: var(--figma-dark);
  font-size: 62px;
  font-weight: 700;
  line-height: 75px;
}

.section--products .text-link {
  min-height: 30px;
  gap: 20px;
  color: var(--figma-text);
  font-size: 24px;
  font-weight: 500;
}

.section--products .text-link svg {
  width: 29px;
  height: 25px;
}

.product-grid {
  width: 1699px;
  grid-template-columns: repeat(4, 400px);
  justify-content: start;
  gap: 36px;
  margin-left: -9px;
}

.product-card {
  width: 400px;
  height: 679px;
  min-height: 0;
  overflow: hidden;
  background: #fff;
  border: 2px solid var(--figma-soft);
  border-radius: 40px;
  box-shadow: none;
}

.product-card__media {
  width: 400px;
  height: 400px;
  aspect-ratio: auto;
  background: var(--figma-soft);
  margin: -2px -2px 0;
}

.product-card__image {
  width: 400px;
  height: 400px;
  border-radius: 38px 38px 0 0;
  object-fit: cover;
}

.product-card__body {
  display: flex;
  height: 275px;
  min-height: 0;
  flex-direction: column;
  padding: 28px 33px 34px;
}

.product-card h3 {
  min-height: auto;
  color: var(--figma-text);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.25;
}

.product-card p {
  margin-top: 20px;
  color: #afaaa6;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
}

.product-card__meta {
  width: 185px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-right: 0;
  color: #afaaa6;
  font-size: 18px;
  font-weight: 500;
}

.product-card__meta strong {
  color: var(--figma-text);
  font-size: 26px;
  font-weight: 600;
  white-space: nowrap;
}

.product-card__button {
  right: 33px;
  bottom: 42px;
  width: 65px;
  height: 63px;
  min-height: 63px;
  color: transparent;
  background: url("../images/figma/product-button-exact.svg") center / 65px 63px no-repeat;
  border: 0;
  border-radius: 31.5px;
}

.product-card__button svg {
  display: none;
}

.section--mucin {
  padding-block: 0 120px;
  background: #fff;
}

.section--mucin .landing-container {
  width: 1690px;
  max-width: calc(100% - 220px);
  margin-right: auto;
  margin-left: 110px;
}

.mucin-layout {
  grid-template-columns: 700px 445px minmax(0, 1fr);
  align-items: start;
  gap: 51px;
}

.section--mucin .eyebrow {
  margin: 0 0 10px;
  color: var(--figma-text);
  font-size: 26px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 0;
}

.section--mucin .section-title {
  color: var(--figma-dark);
  font-size: 62px;
  font-weight: 700;
  line-height: 75px;
}

.mucin-layout__copy .section-text {
  width: 693px;
  max-width: 100%;
  margin-top: 10px;
  color: var(--figma-text);
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  text-align: justify;
}

.mucin-layout__image {
  padding-top: 25px;
}

body.snail-theme .mucin-image {
  width: 430px;
  height: 427px;
  object-fit: contain;
}

.tag-list {
  gap: 24px;
  margin-top: 48px;
}

.tag-list span {
  display: inline-flex;
  min-height: 59px;
  align-items: center;
  justify-content: center;
  padding: 15px 38px;
  color: var(--figma-text);
  background: #f9f5f1;
  border: 2px solid var(--figma-soft);
  border-radius: 40px;
  font-size: 24px;
  font-weight: 600;
  line-height: 29px;
}

.mucin-points {
  position: relative;
  gap: 34px;
  margin-top: 152px;
  padding-left: 116px;
  border-left: 0;
}

.mucin-points::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 0;
  width: 1px;
  content: "";
  border-left: 1px dashed var(--figma-olive);
}

.mucin-point {
  position: relative;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  align-items: center;
}

.mucin-point::before {
  position: absolute;
  top: 50%;
  left: -116px;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--figma-olive);
  border-radius: 50%;
  transform: translate(-4px, -50%);
}

body.snail-theme .mucin-point__icon {
  width: 80px;
  height: 80px;
  padding: 23px;
  background: #f9f5f1;
  border-radius: 50%;
}

.mucin-point h3 {
  color: var(--figma-text);
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}

.mucin-point p {
  color: var(--figma-text);
  font-size: 16px;
  line-height: 24px;
}

@media (max-width: 1800px) {
  .landing-header__inner,
  .hero__inner {
    width: min(100% - 96px, 1290px);
  }

  .section--benefits .landing-container,
  .section--products .landing-container {
    width: min(100% - 96px, 1690px);
    max-width: none;
    margin-inline: auto;
  }

  .benefit-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .benefit-card {
    width: auto;
  }
}

@media (max-width: 1380px) {
  .landing-header__inner,
  .hero__inner {
    width: min(100% - 64px, 1180px);
  }

  .landing-nav {
    gap: 18px;
  }

  .landing-nav__link {
    font-size: 14px;
  }

  .hero h1 {
    font-size: 68px;
    line-height: 70px;
  }

  .hero__text {
    font-size: 20px;
    line-height: 31px;
  }

  .hero__buttons .button {
    min-height: 60px;
    font-size: 20px;
  }

  .hero__buttons .button--primary {
    width: 300px;
  }

  .hero__buttons .button--ghost {
    width: 280px;
  }

  .section--benefits .section-title,
  .section--products .section-title {
    font-size: 52px;
  }

  .benefit-card h3 {
    font-size: 17px;
  }

  .product-grid {
    gap: 24px;
  }

  .product-card h3,
  .product-card__meta strong {
    font-size: 22px;
  }
}

@media (max-width: 1100px) {
  .landing-header {
    position: sticky;
    top: 0;
    background: rgba(255, 253, 248, 0.94);
    border-bottom: 1px solid var(--color-line);
    backdrop-filter: blur(14px);
  }

  .landing-header__inner {
    display: grid;
    width: min(100% - 32px, var(--container));
    min-height: 76px;
  }

  .brand {
    width: auto;
    min-width: 126px;
    justify-content: start;
    text-align: left;
  }

  .brand__text {
    justify-items: start;
  }

  .brand__mark {
    display: none;
  }

  .hero,
  .hero__inner {
    min-height: 760px;
  }

  .hero__inner {
    width: min(100% - 48px, var(--container));
    padding-block: 120px 48px;
  }

  .hero__media::after {
    display: block;
    background: rgba(255, 253, 248, 0.62);
  }

  .benefit-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-card,
  .product-card {
    width: auto;
  }

  .product-grid {
    width: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-left: 0;
  }

  .product-card__media,
  .product-card__image {
    width: 100%;
  }

  .section--mucin .landing-container {
    width: min(100% - 48px, var(--container));
    max-width: none;
    margin-inline: auto;
  }

  .mucin-layout {
    grid-template-columns: 1fr;
  }

  .mucin-points {
    margin-top: 0;
  }
}

@media (max-width: 860px) {
  .hero h1 {
    font-size: 46px;
    line-height: 1.06;
  }

  .hero .eyebrow {
    width: auto;
    white-space: normal;
  }

  .hero__text {
    font-size: 17px;
    line-height: 1.6;
  }

  .hero__buttons .button,
  .hero__buttons .button--primary,
  .hero__buttons .button--ghost {
    width: 100%;
  }

  .section--benefits .landing-container,
  .section--products .landing-container {
    width: min(100% - 32px, var(--container));
    max-width: none;
    margin-inline: auto;
  }

  .section--benefits .section-title,
  .section--products .section-title {
    font-size: 40px;
  }

  .benefit-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 210px;
  }

  .product-card {
    min-height: auto;
  }

  .product-card__media {
    height: auto;
    aspect-ratio: 1;
  }
}

/* Figma rebuild: mucin, routine and results */
.figma-eyebrow,
.figma-text,
.figma-mucin__tags,
.figma-mucin-point,
.figma-routine-step,
.figma-result-stat,
.figma-results__note {
  font-family: var(--font-body);
}

.figma-title {
  margin: 0;
  color: var(--figma-dark);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
}

.figma-eyebrow {
  margin: 0 0 10px;
  color: var(--figma-text);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
  text-transform: uppercase;
}

.figma-text {
  color: var(--figma-text);
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
}

.figma-text p {
  margin: 0;
}

.figma-text p + p {
  margin-top: 26px;
}

.figma-mucin {
  padding-block: 86px 82px;
  background: #fff;
}

.figma-mucin__inner,
.figma-routine__inner,
.figma-results__inner {
  width: min(100% - 220px, 1690px);
  max-width: none;
  margin-inline: auto;
}

.figma-mucin__inner {
  display: grid;
  grid-template-columns: minmax(0, 617px) 394px minmax(0, 565px);
  align-items: center;
  gap: 58px;
}

.figma-mucin__title {
  max-width: 617px;
  font-size: 62px;
  line-height: 64px;
}

.figma-mucin__text {
  max-width: 617px;
  margin-top: 30px;
}

.figma-mucin__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  margin-top: 42px;
}

.figma-mucin__tags span {
  display: inline-flex;
  width: 218px;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  color: var(--figma-text);
  background: #f9f5f1;
  border: 1px solid #f1e2d6;
  border-radius: 40px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
}

.figma-mucin__tags span:nth-child(n + 4) {
  width: 335px;
}

.figma-mucin__media {
  width: 394px;
  height: 391px;
}

body.snail-theme .figma-mucin__image {
  width: 394px;
  height: 391px;
  object-fit: contain;
}

.figma-mucin__points {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-left: 118px;
}

.figma-mucin__points::before {
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 17px;
  width: 3px;
  content: "";
  background: radial-gradient(circle, rgba(176, 176, 176, 0.9) 1.5px, transparent 2px) center top / 3px 9px repeat-y;
}

.figma-mucin-point {
  position: relative;
  display: grid;
  grid-template-columns: 80px minmax(0, 274px);
  align-items: center;
  gap: 20px;
  min-height: 80px;
  color: var(--figma-text);
}

.figma-mucin-point::before {
  position: absolute;
  top: 50%;
  left: -108px;
  width: 14px;
  height: 14px;
  content: "";
  background: var(--figma-olive);
  border-radius: 50%;
  transform: translateY(-50%);
}

.figma-mucin-point::after {
  position: absolute;
  top: 50%;
  left: -94px;
  width: 96px;
  height: 3px;
  content: "";
  background: radial-gradient(circle, rgba(176, 176, 176, 0.9) 1.5px, transparent 2px) left center / 9px 3px repeat-x;
}

.figma-mucin-point__icon {
  display: grid;
  width: 80px;
  height: 80px;
  place-items: center;
  overflow: hidden;
  background: #faf5ef;
  border: 1px solid rgba(231, 219, 207, 0.9);
  border-radius: 50%;
}

.figma-mucin-point h3 {
  margin: 0;
  color: var(--figma-text);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
}

.figma-mucin-point p {
  margin: 8px 0 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.45;
}

.figma-routine {
  position: relative;
  overflow: hidden;
  padding-block: 74px 92px;
  background: #f5f1ec;
}

.figma-routine::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 782px;
  height: 573px;
  content: "";
  background: url("../images/figma/routine-leaf-current.svg") center / 100% 100% no-repeat;
  opacity: 1;
  pointer-events: none;
}

.figma-routine__title {
  max-width: 760px;
  font-size: 62px;
  line-height: 1;
}

.figma-routine__steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-content: space-between;
  gap: 44px;
  margin-top: 70px;
}

.figma-routine-step {
  position: relative;
  min-width: 0;
  color: var(--figma-text);
}

.figma-routine-step:not(:last-child)::after {
  position: absolute;
  top: 168px;
  right: -34px;
  width: 30px;
  height: 18px;
  content: "";
  background: currentColor;
  opacity: 0.65;
  mask: url("../images/figma/routine-arrow-exact.svg") center / contain no-repeat;
}

.figma-routine-step__top {
  display: grid;
  grid-template-columns: 62px minmax(74px, 160px);
  align-items: start;
  gap: 15px;
  min-height: 266px;
}

.figma-routine-step__number {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: var(--figma-olive);
  border: 2px solid var(--figma-olive);
  border-radius: 50%;
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
}

.figma-routine-step__media {
  display: flex;
  height: 266px;
  align-items: flex-start;
  justify-content: center;
}

body.snail-theme .figma-routine-step__image {
  width: auto;
  max-width: 160px;
  height: 253px;
  object-fit: contain;
}

.figma-routine-step:nth-child(1) .figma-routine-step__image {
  width: 74px;
}

.figma-routine-step:nth-child(2) .figma-routine-step__image {
  width: 134px;
}

.figma-routine-step:nth-child(3) .figma-routine-step__image,
.figma-routine-step:nth-child(4) .figma-routine-step__image {
  width: 64px;
  height: 266px;
}

.figma-routine-step__body {
  max-width: 333px;
  margin-top: 20px;
  text-align: center;
}

.figma-routine-step h3 {
  margin: 0;
  color: var(--figma-text);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.22;
}

.figma-routine-step p {
  max-width: 290px;
  margin: 10px auto 0;
  color: var(--figma-text);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
}

.figma-results {
  padding-block: 82px 100px;
  background: #fff;
}

.figma-results__inner {
  display: grid;
  grid-template-columns: minmax(0, 882px) 572px;
  align-items: center;
  justify-content: space-between;
  gap: 90px;
}

.figma-results__copy {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.figma-results__title {
  max-width: 882px;
  font-size: 62px;
  line-height: 50px;
}

.figma-results__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 274px));
  gap: 20px;
}

.figma-result-stat strong {
  display: block;
  color: var(--figma-olive);
  font-size: 62px;
  font-weight: 500;
  line-height: 1.05;
}

.figma-result-stat p {
  max-width: 274px;
  margin: 20px 0 0;
  color: var(--figma-text);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
}

.figma-results__note {
  margin: 0;
  color: #bcbcbc;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
}

.figma-results__photos {
  display: grid;
  grid-template-columns: repeat(2, 266px);
  gap: 40px;
}

.figma-result-photo {
  position: relative;
  width: 266px;
  height: 399px;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
}

body.snail-theme .figma-result-photo__image {
  width: 266px;
  height: 399px;
  object-fit: cover;
}

.figma-result-photo figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  min-width: 160px;
  height: 53px;
  align-items: center;
  justify-content: center;
  padding: 14px 27px 15px 30px;
  color: #fff;
  background: var(--figma-olive);
  border-radius: 0 20px 0 20px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.figma-result-photo:nth-child(2) figcaption {
  min-width: 241px;
}

@media (max-width: 1800px) {
  .figma-mucin__inner,
  .figma-routine__inner,
  .figma-results__inner {
    width: min(100% - 96px, 1690px);
  }

  .figma-mucin__inner {
    grid-template-columns: minmax(0, 560px) 360px minmax(0, 460px);
    gap: 48px;
  }

  .figma-mucin__title,
  .figma-routine__title,
  .figma-results__title {
    font-size: 56px;
  }

  .figma-text {
    font-size: 21px;
    line-height: 32px;
  }

  .figma-mucin__tags span {
    min-height: 52px;
    font-size: 19px;
  }

  .figma-mucin__media,
  body.snail-theme .figma-mucin__image {
    width: 360px;
    height: 358px;
  }
}

@media (max-width: 1380px) {
  .figma-mucin__inner {
    grid-template-columns: minmax(0, 1fr) 330px;
  }

  .figma-mucin__points {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    padding-left: 0;
  }

  .figma-mucin__points::before,
  .figma-mucin-point::before,
  .figma-mucin-point::after {
    display: none;
  }

  .figma-mucin-point {
    grid-template-columns: 64px minmax(0, 1fr);
    padding: 18px;
    background: #fffdf8;
    border: 1px solid #eee6db;
    border-radius: 24px;
  }

  .figma-mucin-point__icon {
    width: 64px;
    height: 64px;
  }

  .figma-routine__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 80px;
  }

  .figma-routine-step:not(:last-child)::after {
    display: none;
  }

  .figma-results__inner {
    grid-template-columns: 1fr;
  }

  .figma-results__photos {
    justify-content: start;
  }
}

@media (max-width: 860px) {
  .figma-mucin,
  .figma-routine,
  .figma-results {
    padding-block: 56px;
  }

  .figma-mucin__inner,
  .figma-routine__inner,
  .figma-results__inner {
    width: min(100% - 40px, 720px);
  }

  .figma-mucin__inner,
  .figma-results__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .figma-mucin__title,
  .figma-routine__title,
  .figma-results__title {
    font-size: 40px;
    line-height: 1.05;
  }

  .figma-eyebrow {
    font-size: 13px;
  }

  .figma-text {
    font-size: 16px;
    line-height: 1.65;
  }

  .figma-mucin__tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 24px;
  }

  .figma-mucin__tags span {
    min-height: 44px;
    padding-inline: 16px;
    font-size: 14px;
    white-space: normal;
  }

  .figma-mucin__media,
  body.snail-theme .figma-mucin__image {
    width: min(100%, 320px);
    height: auto;
    margin-inline: auto;
  }

  .figma-mucin__points,
  .figma-routine__steps,
  .figma-results__stats,
  .figma-results__photos {
    grid-template-columns: 1fr;
  }

  .figma-routine__steps {
    margin-top: 34px;
    gap: 34px;
  }

  .figma-routine-step__top {
    grid-template-columns: 54px minmax(90px, 1fr);
    gap: 24px;
    min-height: 190px;
  }

  .figma-routine-step__number {
    width: 54px;
    height: 54px;
    font-size: 26px;
  }

  .figma-routine-step__media {
    height: 190px;
    justify-content: flex-start;
  }

  body.snail-theme .figma-routine-step__image {
    height: 190px;
  }

  .figma-routine-step__body {
    max-width: none;
    text-align: left;
  }

  .figma-routine-step p {
    margin-inline: 0;
  }

  .figma-routine::after {
    top: 96px;
    right: -260px;
    width: 560px;
    height: 411px;
    opacity: 0.75;
  }

  .figma-results__copy {
    gap: 34px;
  }

  .figma-results__photos {
    gap: 18px;
  }

  .figma-result-photo,
  body.snail-theme .figma-result-photo__image {
    width: 100%;
    height: 360px;
  }
}

/* Final Figma pass: complete page */
body.snail-theme {
  background: #fff;
}

.landing-main {
  background: #fff;
}

.landing-header {
  position: absolute;
  top: 20px;
  right: 0;
  left: 0;
  z-index: 40;
  background: transparent;
  border: 0;
  backdrop-filter: none;
}

.landing-header__inner {
  display: flex;
  width: min(100% - 630px, 1290px);
  min-height: 100px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.brand {
  width: 100px;
  min-width: 100px;
  height: 100px;
  background: none;
}

body.snail-theme .brand__image {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.brand__text {
  display: none;
}

.landing-nav {
  width: auto;
  flex: 0 1 auto;
  gap: 30px;
}

.landing-nav__link {
  color: var(--figma-text);
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}

.landing-header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.landing-header__phone {
  display: inline-flex;
  align-items: center;
  color: var(--figma-dark);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.landing-header__phone span {
  display: block;
}

.landing-header__actions .button--compact {
  width: 145px;
  min-height: 50px;
  padding: 0 32px;
  color: #fff;
  background: var(--figma-olive);
  border-color: var(--figma-olive);
  border-radius: 40px;
  font-size: 18px;
  font-weight: 500;
}

.hero {
  position: relative;
  min-height: 1080px;
  overflow: hidden;
  background: #fff;
}

.hero__media,
.hero__media::after {
  position: absolute;
  inset: 0;
}

.hero__media::after {
  display: none;
}

body.snail-theme .hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.hero__inner {
  position: relative;
  width: min(100% - 630px, 1290px);
  min-height: 1080px;
  padding-block: 224px 0;
}

.hero__content {
  width: 769px;
}

.hero .eyebrow {
  width: 500px;
  min-height: 46px;
  margin: 0 0 20px;
  padding: 10px 20px;
  border-radius: 20px;
  color: var(--figma-text);
  background: linear-gradient(90deg, var(--figma-chip-start), var(--figma-chip-end));
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow::before {
  width: 27px;
  height: 27px;
  background: currentColor;
  mask: url("../images/figma/hero-leaf-current.svg") center / contain no-repeat;
}

.hero h1 {
  max-width: 769px;
  color: var(--figma-dark);
  font-size: 84px;
  font-weight: 700;
  line-height: 86px;
}

.hero__text {
  max-width: 646px;
  margin-top: 30px;
  color: var(--figma-text);
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
}

.hero__buttons {
  gap: 20px;
  margin-top: 50px;
}

.hero__buttons .button {
  min-height: 72px;
  gap: 20px;
  border-radius: 40px;
  font-size: 24px;
  font-weight: 500;
}

.hero__buttons .button--primary {
  width: 360px;
}

.hero__buttons .button--ghost {
  width: 330px;
  background: transparent;
}

.hero__buttons .button--primary::after {
  width: 21px;
  height: 18px;
  mask-image: url("../images/figma/hero-arrow-current.svg");
}

.hero__buttons .button--ghost::before {
  width: 20px;
  height: 23px;
  mask-image: url("../images/figma/hero-play-current.svg");
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  z-index: 4;
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  transform: translate(-50%, 0);
  animation: hero-scroll-float 1.8s ease-in-out infinite;
}

.hero-scroll__icon {
  display: block;
  width: 39px;
  height: 39px;
  background: url("../images/figma/hero-scroll-arrow-current.svg") center / contain no-repeat;
}

@keyframes hero-scroll-float {
  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 12px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll {
    animation: none;
  }
}

.section--benefits {
  margin-top: 100px;
  padding-block: 0;
  background: #fff;
}

.section--benefits .landing-container,
.section--products .landing-container {
  width: min(100% - 220px, 1690px);
  max-width: 1690px;
  margin-inline: auto;
}

.section--benefits .section-title {
  max-width: 746px;
  color: var(--figma-dark);
  font-size: 62px;
  font-weight: 700;
  line-height: 75px;
}

.section-ornament {
  background-image: url("../images/figma/divider-line-current.svg");
}

.section-ornament::before {
  background-image: url("../images/figma/divider-leaf-current.svg");
}

.benefit-grid {
  grid-template-columns: repeat(6, 260px);
  justify-content: space-between;
  gap: 26px;
}

.benefit-card:nth-child(1) .benefit-card__icon {
  content: url("../images/figma/benefit-drop-current.svg");
}

.benefit-card:nth-child(2) .benefit-card__icon {
  content: url("../images/figma/benefit-rotate-current.svg");
}

.benefit-card:nth-child(3) .benefit-card__icon {
  content: url("../images/figma/benefit-mirror-current.svg");
}

.benefit-card:nth-child(4) .benefit-card__icon {
  content: url("../images/figma/benefit-protect-current.svg");
}

.benefit-card:nth-child(5) .benefit-card__icon {
  content: url("../images/figma/benefit-daynight-current.svg");
}

.benefit-card:nth-child(6) .benefit-card__icon {
  content: url("../images/figma/benefit-types-current.svg");
}

.section--products {
  margin-top: 100px;
  padding-block: 0;
  background: #fff;
}

.section--products .section-head {
  justify-content: center;
  margin-bottom: 50px;
}

.section--products .section-title {
  color: var(--figma-dark);
  font-size: 62px;
  font-weight: 700;
  line-height: 75px;
  text-align: center;
}

.section--products .text-link {
  display: none;
}

.product-grid {
  width: 100%;
  grid-template-columns: repeat(4, 400px);
  justify-content: space-between;
  gap: 36px;
  margin-left: 0;
}

.figma-mucin {
  margin-top: 100px;
  padding-block: 0;
}

.figma-mucin__inner,
.figma-routine__inner,
.figma-results__inner,
.figma-reviews__inner,
.figma-faq__inner,
.figma-footer__inner {
  width: min(100% - 220px, 1690px);
  max-width: 1690px;
  margin-inline: auto;
}

.figma-mucin__inner {
  grid-template-columns: minmax(0, 617px) 394px minmax(0, 565px);
  gap: 58px;
}

.figma-mucin__points {
  padding-left: 118px;
}

.figma-mucin__points::before {
  top: 47px;
  bottom: 47px;
  left: 17.5px;
  width: 3px;
  background: radial-gradient(circle, #b0b0b0 1.5px, transparent 2px) center top / 3px 9px repeat-y;
}

.figma-mucin__points::after {
  position: absolute;
  top: 225px;
  left: -86px;
  width: 103.5px;
  height: 3px;
  content: "";
  background: radial-gradient(circle, #b0b0b0 1.5px, transparent 2px) left center / 9px 3px repeat-x;
}

.figma-mucin-point::before {
  left: -108.5px;
  width: 15px;
  height: 15px;
  background: var(--figma-olive);
}

.figma-mucin-point::after {
  top: calc(50% - 1.5px);
  left: -93.5px;
  width: 96.5px;
  height: 3px;
  background: radial-gradient(circle, #b0b0b0 1.5px, transparent 2px) left center / 9px 3px repeat-x;
}

.figma-mucin-point__icon {
  width: 80px;
  height: 80px;
  background: #faf5ef;
  border: 1px solid rgba(231, 219, 207, 0.9);
}

.figma-mucin-point__icon img,
body.snail-theme .figma-mucin-point__icon img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: 0.68;
}

.figma-routine::after {
  background-image: url("../images/figma/routine-leaf-current.svg");
}

.figma-routine {
  min-height: 600px;
  margin-top: 100px;
  padding-block: 50px 53px;
}

.figma-routine__steps {
  margin-top: 50px;
}

.figma-results {
  margin-top: 100px;
  padding-block: 0;
}

.figma-routine-step:not(:last-child)::after {
  width: 45px;
  height: 24px;
  color: var(--figma-olive);
  background: none;
  content: "→";
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
  mask: none;
  opacity: 0.72;
}

.figma-reviews {
  margin-top: 100px;
  padding-block: 0;
  background: #fff;
}

.figma-reviews__inner {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.figma-reviews__title {
  width: 100%;
  font-size: 62px;
  line-height: 1.2;
}

.figma-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 530px);
  justify-content: space-between;
  gap: 40px;
}

.figma-review {
  display: flex;
  width: 530px;
  min-height: 340px;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 31px 50px;
  color: var(--figma-text);
  background: #fff;
  border: 2px solid var(--figma-soft);
  border-radius: 40px;
}

.figma-review__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.figma-review__quote {
  width: 31px;
  height: 25px;
  background: url("../images/figma/review-quote-current.svg") center / contain no-repeat;
}

.figma-review__stars {
  display: inline-flex;
  gap: 4px;
  color: #ad8331;
  font-size: 20px;
  line-height: 1;
}

.figma-review__text {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
}

.figma-review__text p {
  margin: 0;
}

.figma-review__author {
  display: flex;
  gap: 6px;
  color: var(--figma-olive);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

.figma-faq {
  position: relative;
  min-height: 668px;
  margin-top: 100px;
  overflow: hidden;
  background: #fff;
}

.figma-faq__background {
  position: absolute;
  inset: 0;
}

body.snail-theme .figma-faq__background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.figma-faq__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 384px 1039px;
  align-items: center;
  justify-content: space-between;
  min-height: 668px;
  padding-block: 50px 80px;
}

body.snail-theme .figma-faq__image {
  width: 384px;
  height: 381px;
  object-fit: contain;
}

.figma-faq__content {
  width: 1039px;
}

.figma-faq__title {
  font-size: 62px;
  line-height: 50px;
  white-space: nowrap;
}

.figma-faq__list {
  display: flex;
  width: 965px;
  flex-direction: column;
  gap: 10px;
  margin-top: 50px;
  margin-left: 74px;
}

.figma-faq-item {
  overflow: hidden;
  color: var(--figma-text);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--figma-olive);
  border-radius: 20px;
}

.figma-faq-item summary {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 23px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  line-height: 50px;
  list-style: none;
}

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

.figma-faq-item__plus {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  background: url("../images/figma/faq-plus-current.svg") center / contain no-repeat;
}

.figma-faq-item[open] .figma-faq-item__plus {
  transform: rotate(45deg);
}

.figma-faq-item__answer {
  padding: 0 23px 22px;
  font-size: 16px;
  line-height: 1.55;
}

.figma-footer {
  margin-top: 100px;
  padding-block: 0 30px;
  background: #fff;
}

.figma-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.figma-footer__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 236px;
}

.figma-footer__brand {
  display: flex;
  width: 126px;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

body.snail-theme .figma-footer__logo {
  width: 126px;
  height: 126px;
  object-fit: contain;
}

.figma-footer__brand strong {
  color: var(--figma-dark);
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.12em;
}

.figma-footer__brand span {
  color: var(--figma-text);
  font-size: 11px;
  line-height: 1.3;
  text-transform: uppercase;
}

.figma-footer__nav {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  justify-content: flex-end;
}

.figma-footer-column {
  display: flex;
  width: 236px;
  flex-direction: column;
  gap: 10px;
  color: var(--figma-text);
  font-size: 14px;
  line-height: 1.25;
}

.figma-footer-column h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.figma-footer-column__link span,
.figma-footer-contact span {
  display: block;
}

.figma-footer-contact {
  color: var(--figma-dark);
  font-size: 16px;
  line-height: 1.3;
}

.figma-footer-contact:first-child {
  font-weight: 600;
}

.figma-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-top: 10px;
  border-top: 1px solid #e7dbcf;
  color: var(--figma-text);
  font-size: 14px;
  line-height: 20px;
}

.figma-footer__bottom p {
  margin: 0;
}

.figma-footer__links {
  display: flex;
  gap: 40px;
}

@media (min-width: 1921px) {
  .hero {
    height: 1080px;
    min-height: 1080px;
  }

  .hero__inner {
    width: min(1290px, calc(100% - 220px));
    height: 1080px;
    min-height: 1080px;
    padding-top: 224px;
  }

  .landing-header {
    top: 20px;
  }

  .landing-header__inner {
    width: min(1290px, calc(100% - 220px));
  }
}

@media (max-width: 1800px) {
  .landing-header__inner,
  .hero__inner {
    width: min(100% - 96px, 1290px);
  }

  .section--benefits .landing-container,
  .section--products .landing-container,
  .figma-mucin__inner,
  .figma-routine__inner,
  .figma-results__inner,
  .figma-reviews__inner,
  .figma-faq__inner,
  .figma-footer__inner {
    width: min(100% - 96px, 1690px);
  }

  .landing-header__phone {
    font-size: 20px;
  }

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

  .figma-review {
    width: auto;
  }

  .figma-faq__inner {
    grid-template-columns: 360px minmax(0, 980px);
    gap: 64px;
  }

  .figma-faq__content,
  .figma-faq__list {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 1380px) {
  .landing-header__inner {
    gap: 24px;
  }

  .landing-nav {
    gap: 18px;
  }

  .landing-nav__link {
    font-size: 14px;
  }

  .landing-header__phone {
    display: none;
  }

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

  .product-card,
  .product-card__media,
  .product-card__image {
    width: 100%;
  }

  .figma-mucin__points::after {
    display: none;
  }

  .figma-faq__inner {
    grid-template-columns: 320px minmax(0, 1fr);
  }

  body.snail-theme .figma-faq__image {
    width: 320px;
    height: auto;
  }

  .figma-footer__main,
  .figma-footer__nav {
    gap: 48px;
  }
}

@media (max-width: 980px) {
  .landing-header {
    top: 12px;
  }

  .landing-header__inner {
    width: min(100% - 40px, 720px);
    min-height: 72px;
  }

  .brand,
  body.snail-theme .brand__image {
    width: 72px;
    min-width: 72px;
    height: 72px;
  }

  .landing-nav,
  .landing-header__actions .button--compact {
    display: none;
  }

  .hero,
  .hero__inner {
    height: auto;
    min-height: 720px;
  }

  .hero::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.78) 55%, rgba(255, 255, 255, 0.16) 100%);
    pointer-events: none;
  }

  body.snail-theme .hero__image {
    object-position: 62% bottom;
  }

  .hero__inner {
    z-index: 2;
    width: min(100% - 40px, 720px);
    padding-top: 140px;
  }

  .hero__content {
    width: min(100%, 560px);
  }

  .hero .eyebrow {
    width: auto;
    max-width: 100%;
    white-space: normal;
  }

  .hero h1 {
    font-size: 48px;
    line-height: 1.04;
  }

  .hero__text {
    font-size: 18px;
    line-height: 1.55;
  }

  .hero__buttons {
    flex-wrap: wrap;
  }

  .hero__buttons .button,
  .hero__buttons .button--primary,
  .hero__buttons .button--ghost {
    width: min(100%, 330px);
    min-height: 58px;
    font-size: 18px;
  }

  .hero-scroll {
    bottom: 22px;
    width: 39px;
    height: 39px;
  }

  .hero-scroll__icon {
    width: 39px;
    height: 39px;
  }

  .section--benefits,
  .section--products,
  .figma-mucin,
  .figma-routine,
  .figma-results,
  .figma-reviews,
  .figma-faq,
  .figma-footer {
    margin-top: 64px;
  }

  .figma-routine {
    min-height: 0;
    padding-block: 56px;
  }

  .section--benefits .landing-container,
  .section--products .landing-container,
  .figma-mucin__inner,
  .figma-routine__inner,
  .figma-results__inner,
  .figma-reviews__inner,
  .figma-faq__inner,
  .figma-footer__inner {
    width: min(100% - 40px, 720px);
  }

  .section--benefits .section-title,
  .section--products .section-title,
  .figma-mucin__title,
  .figma-routine__title,
  .figma-results__title,
  .figma-reviews__title,
  .figma-faq__title {
    font-size: 42px;
    line-height: 1.08;
  }

  .benefit-grid,
  .product-grid,
  .figma-reviews__grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    width: 100%;
  }

  .product-card {
    height: auto;
  }

  .product-card__media,
  .product-card__image {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .figma-faq__inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-block: 56px;
  }

  .figma-faq__visual {
    max-width: 280px;
  }

  body.snail-theme .figma-faq__image {
    width: 280px;
  }

  .figma-faq__title {
    white-space: normal;
  }

  .figma-faq__list {
    margin-top: 28px;
  }

  .figma-faq-item summary {
    min-height: 62px;
    font-size: 15px;
    line-height: 1.35;
  }

  .figma-footer__main,
  .figma-footer__nav,
  .figma-footer__bottom,
  .figma-footer__links {
    flex-direction: column;
    align-items: flex-start;
  }

  .figma-footer__main,
  .figma-footer__nav {
    gap: 28px;
  }
}

/* Final responsive and interaction polish */
.figma-mucin-point__icon img,
body.snail-theme .figma-mucin-point__icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.js-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 44px, 0);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.js-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .js-ready [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.hero__buttons .button,
.landing-header__actions .button--compact,
.product-card__button,
.figma-reviews__dot,
.hero-scroll {
  transition-duration: 0.28s;
  transition-timing-function: ease;
}

.hero__buttons .button--primary:hover,
.hero__buttons .button--primary:focus-visible {
  color: var(--figma-olive);
  background: #fff;
  border-color: #fff;
}

.hero__buttons .button--primary:hover::after,
.hero__buttons .button--primary:focus-visible::after {
  background: var(--figma-olive);
}

.hero__buttons .button--ghost:hover,
.hero__buttons .button--ghost:focus-visible {
  color: #fff;
  background: var(--figma-olive);
  border-color: var(--figma-olive);
}

.hero__buttons .button--ghost:hover::before,
.hero__buttons .button--ghost:focus-visible::before {
  background: #fff;
}

.landing-header__actions .button--compact:hover,
.landing-header__actions .button--compact:focus-visible {
  color: var(--figma-olive);
  background: #fff;
  border-color: #fff;
}

.product-card__button:hover,
.product-card__button:focus-visible {
  color: #fff;
  background: var(--figma-olive);
}

.figma-review {
  justify-content: flex-start;
}

.figma-reviews__slider {
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
}

.figma-reviews__grid {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
  transition: transform 0.35s ease;
  user-select: none;
  will-change: transform;
}

.figma-reviews__slider.is-dragging {
  cursor: grabbing;
}

.figma-reviews__slider.is-dragging .figma-reviews__grid {
  transition: none;
}

.figma-review {
  flex: 0 0 530px;
}

.figma-review__author {
  margin-top: 30px;
}

.figma-reviews__pagination {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 50px;
}

.figma-reviews__pagination:empty {
  display: none;
}

.figma-reviews__dot {
  width: 14px;
  height: 14px;
  padding: 0;
  cursor: pointer;
  background: #efe7dc;
  border: 0;
  border-radius: 999px;
  transition: width 0.25s ease, background-color 0.25s ease;
}

.figma-reviews__dot.is-active {
  width: 30px;
  background: var(--figma-olive);
}

.figma-faq__background {
  inset: 0 0 auto;
  height: 668px;
}

body.snail-theme .figma-faq__background-image {
  object-position: center top;
}

.figma-faq-item__plus {
  transition: transform 0.25s ease;
}

.figma-faq-item__answer {
  height: 0;
  overflow: hidden;
  padding: 0;
  transition: height 0.3s ease;
}

.figma-faq-item__answer-inner {
  padding: 0 23px 22px;
  font-size: 16px;
  line-height: 1.55;
}

.figma-faq-item[open] .figma-faq-item__plus,
.figma-faq-item.is-open .figma-faq-item__plus {
  transform: rotate(45deg);
}

.figma-footer__main {
  align-items: flex-start;
}

.figma-footer__brand {
  gap: 0;
}

.figma-footer__brand strong,
.figma-footer__brand span {
  display: none;
}

.figma-footer__nav {
  flex: 1 1 auto;
  justify-content: space-between;
}

.figma-footer-column {
  width: auto;
  min-width: 190px;
}

.figma-footer-contacts {
  min-width: 260px;
}

.icon-button {
  width: 52px;
  height: 52px;
}

.icon-button svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.8;
}

@media (max-width: 1380px) {
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .benefit-card {
    width: 100%;
    height: auto;
    min-height: 210px;
    border-radius: 36px;
  }

  .benefit-card:nth-last-child(1):nth-child(odd) {
    grid-column: 1 / -1;
  }

  .figma-footer__main {
    gap: 72px;
  }

  .figma-footer__nav {
    gap: 44px;
  }

  .figma-review {
    flex-basis: calc((100% - 24px) / 2);
  }

  .figma-reviews__grid {
    gap: 24px;
  }
}

@media (min-width: 1381px) and (max-width: 1680px) {
  .benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 260px));
    justify-content: center;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 400px));
    justify-content: center;
  }

  .product-card {
    width: 100%;
    height: auto;
  }

  .product-card__media {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .product-card__image {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 980px) {
  .landing-header__inner {
    min-height: 92px;
    grid-template-columns: 92px 1fr;
  }

  .brand,
  body.snail-theme .brand__image {
    width: 92px;
    min-width: 92px;
    height: 92px;
  }

  .landing-header__actions {
    justify-content: flex-end;
  }

  .landing-header__menu {
    display: grid;
    place-items: center;
  }

  .landing-header.is-menu-open .landing-nav {
    top: calc(100% + 12px);
  }

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

  .benefit-card {
    min-height: 164px;
    padding: 24px 12px;
    border-radius: 26px;
  }

  .benefit-card__icon,
  body.snail-theme .benefit-card__icon {
    max-width: 52px;
    max-height: 56px;
    margin-bottom: 14px;
  }

  .benefit-card h3 {
    font-size: 15px;
    line-height: 1.2;
  }

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

  .figma-mucin__copy,
  .figma-mucin__media,
  .figma-mucin__points {
    grid-column: auto;
  }

  .figma-mucin__title {
    max-width: 100%;
  }

  .figma-mucin__text {
    margin-top: 22px;
  }

  .figma-mucin__tags {
    gap: 12px;
    margin-top: 28px;
  }

  .figma-mucin__tags span,
  .figma-mucin__tags span:nth-child(n + 4) {
    width: calc(50% - 6px);
    min-height: 46px;
    padding: 10px 14px;
    font-size: 15px;
    white-space: normal;
  }

  .figma-mucin__media,
  body.snail-theme .figma-mucin__image {
    width: min(100%, 340px);
    height: auto;
    margin-inline: auto;
  }

  .figma-mucin__points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding-left: 0;
  }

  .figma-mucin__points::before,
  .figma-mucin__points::after,
  .figma-mucin-point::before,
  .figma-mucin-point::after {
    display: none;
  }

  .figma-mucin-point {
    grid-template-columns: 64px minmax(0, 1fr);
    min-height: 64px;
    padding: 14px;
    gap: 14px;
    background: #fffdf8;
    border: 1px solid #eee6db;
    border-radius: 22px;
  }

  .figma-mucin-point__icon {
    width: 64px;
    height: 64px;
  }

  .figma-mucin-point h3 {
    font-size: 16px;
    line-height: 1.28;
  }

  .figma-routine {
    padding-block: 46px;
  }

  .figma-routine__title {
    max-width: 100%;
    text-align: left;
  }

  .figma-routine__steps {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 34px;
  }

  .figma-routine-step {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
  }

  .figma-routine-step__top {
    display: block;
    min-height: 0;
  }

  .figma-routine-step__number {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  .figma-routine-step__media {
    height: 130px;
    margin-top: 10px;
    justify-content: flex-start;
  }

  body.snail-theme .figma-routine-step__image,
  .figma-routine-step:nth-child(1) .figma-routine-step__image,
  .figma-routine-step:nth-child(2) .figma-routine-step__image,
  .figma-routine-step:nth-child(3) .figma-routine-step__image,
  .figma-routine-step:nth-child(4) .figma-routine-step__image {
    width: auto;
    max-width: 92px;
    height: 130px;
  }

  .figma-routine-step__body {
    margin-top: 0;
    text-align: left;
  }

  .figma-routine-step h3 {
    font-size: 20px;
  }

  .figma-routine-step p {
    max-width: none;
    margin-inline: 0;
    font-size: 15px;
  }

  .figma-review {
    flex-basis: 100%;
    min-height: 0;
    padding: 28px 24px 32px;
    border-radius: 28px;
  }

  .figma-review__author {
    margin-top: 24px;
    font-size: 20px;
  }

  .figma-reviews__grid {
    gap: 24px;
  }

  .figma-reviews__pagination {
    margin-top: 30px;
  }

  .figma-faq__inner {
    align-items: start;
  }

  .figma-faq__content,
  .figma-faq__list {
    width: 100%;
  }

  .figma-faq-item__answer-inner {
    padding: 0 23px 18px;
  }

  .figma-footer__main,
  .figma-footer__nav {
    width: 100%;
  }

  .figma-footer__main {
    gap: 34px;
  }

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

  .figma-footer-column,
  .figma-footer-contacts {
    width: auto;
    min-width: 0;
  }

  .figma-footer-contacts {
    grid-column: 1 / -1;
  }

  body.snail-theme .figma-footer__logo {
    width: 112px;
    height: 112px;
  }
}

@media (max-width: 560px) {
  .landing-header__inner {
    width: min(100% - 28px, 420px);
  }

  .brand,
  body.snail-theme .brand__image {
    width: 86px;
    min-width: 86px;
    height: 86px;
  }

  .benefit-grid {
    gap: 10px;
  }

  .benefit-card {
    min-height: 150px;
    padding: 20px 10px;
    border-radius: 22px;
  }

  .benefit-card h3 {
    font-size: 14px;
  }

  .figma-mucin__tags span,
  .figma-mucin__tags span:nth-child(n + 4) {
    width: 100%;
  }

  .figma-footer__nav {
    grid-template-columns: 1fr;
  }

  .figma-footer-contacts {
    grid-column: auto;
  }
}

/* Final Figma QA locks */
.hero__buttons .button,
.hero__buttons .button--primary,
.hero__buttons .button--ghost {
  transition: color 0.28s ease, background-color 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}

.hero__buttons .button--primary:hover,
.hero__buttons .button--primary:focus-visible {
  color: var(--figma-olive);
  background: #fff;
  border-color: #fff;
}

.hero__buttons .button--primary:hover::after,
.hero__buttons .button--primary:focus-visible::after {
  background: var(--figma-olive);
}

.hero__buttons .button--ghost:hover,
.hero__buttons .button--ghost:focus-visible {
  color: #fff;
  background: var(--figma-olive);
  border-color: var(--figma-olive);
}

.hero__buttons .button--ghost:hover::before,
.hero__buttons .button--ghost:focus-visible::before {
  background: #fff;
}

.figma-footer.landing-footer {
  margin-top: 0;
  padding-block: 0 28px;
  background: #fff;
  border-top: 0;
}

.figma-footer__inner {
  gap: 28px;
  padding-top: 36px;
}

.figma-footer__bottom {
  padding-top: 18px;
}

.benefit-card__icon,
body.snail-theme .benefit-card__icon {
  width: 70px;
  height: 70px;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 980px) {
  .hero__inner {
    width: min(100% - 40px, 390px);
    padding-top: 126px;
  }

  .hero__content {
    width: 100%;
    max-width: 367px;
    margin-inline: auto;
  }

  .hero .eyebrow {
    width: 100%;
  }

  .hero__buttons {
    align-items: center;
  }

  .benefit-card__icon,
  body.snail-theme .benefit-card__icon {
    width: 64px;
    height: 64px;
  }

  .figma-footer.landing-footer {
    margin-top: 0;
    padding-bottom: 24px;
  }

  .figma-footer__inner {
    padding-top: 30px;
  }
}

@media (max-width: 560px) {
  .hero__inner {
    width: min(100% - 32px, 374px);
  }

  .hero__content {
    max-width: 352px;
  }

  .hero__buttons .button,
  .hero__buttons .button--primary,
  .hero__buttons .button--ghost {
    width: min(100%, 324px);
  }

  .benefit-card__icon,
  body.snail-theme .benefit-card__icon {
    width: 58px;
    height: 58px;
  }
}

/* Mobile overflow and composition fixes */
html,
body.snail-theme,
.site-shell {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 980px) {
  .landing-header__inner,
  .hero__inner,
  .section--benefits .landing-container,
  .section--products .landing-container,
  .figma-mucin__inner,
  .figma-routine__inner,
  .figma-results__inner,
  .figma-reviews__inner,
  .figma-faq__inner,
  .figma-footer__inner {
    width: calc(100% - 32px);
    max-width: 390px;
  }

  .landing-header__inner {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .landing-header__actions {
    display: flex;
    min-width: 0;
    justify-content: flex-end;
  }

  .landing-header__menu {
    display: grid;
  }

  .hero,
  .hero__inner {
    min-height: 820px;
  }

  .hero__inner {
    padding-top: 126px;
  }

  .hero__content {
    width: 100%;
    max-width: 326px;
    margin-inline: auto;
  }

  .hero .eyebrow {
    width: 100%;
    min-height: 0;
    padding: 10px 16px;
    font-size: 14px;
    line-height: 1.35;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 42px;
    line-height: 1.12;
  }

  .hero__text {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero__buttons {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .hero__buttons .button,
  .hero__buttons .button--primary,
  .hero__buttons .button--ghost {
    width: 100%;
    max-width: 326px;
    min-height: 58px;
    margin-inline: auto;
    font-size: 17px;
  }

  .section--benefits .section-title,
  .section--products .section-title,
  .figma-mucin__title,
  .figma-routine__title,
  .figma-results__title,
  .figma-reviews__title,
  .figma-faq__title {
    max-width: 340px;
    margin-inline: auto;
    font-size: 36px;
    line-height: 1.16;
    text-align: center;
  }

  .benefit-grid {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .landing-header__inner,
  .hero__inner,
  .section--benefits .landing-container,
  .section--products .landing-container,
  .figma-mucin__inner,
  .figma-routine__inner,
  .figma-results__inner,
  .figma-reviews__inner,
  .figma-faq__inner,
  .figma-footer__inner {
    width: calc(100% - 28px);
  }

  .hero__content {
    max-width: 320px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .section--benefits .section-title,
  .section--products .section-title,
  .figma-mucin__title,
  .figma-routine__title,
  .figma-results__title,
  .figma-reviews__title,
  .figma-faq__title {
    max-width: 320px;
    font-size: 34px;
  }
}

/* Tablet layout: wider than phones, tighter than desktop */
@media (min-width: 561px) and (max-width: 980px) {
  .landing-header__inner,
  .hero__inner,
  .section--benefits .landing-container,
  .section--products .landing-container,
  .figma-mucin__inner,
  .figma-routine__inner,
  .figma-results__inner,
  .figma-reviews__inner,
  .figma-faq__inner,
  .figma-footer__inner {
    width: calc(100% - 56px);
    max-width: 820px;
  }

  .landing-header__inner {
    grid-template-columns: 92px minmax(0, 1fr);
    min-height: 92px;
  }

  .hero,
  .hero__inner {
    min-height: 820px;
  }

  .hero__inner {
    padding-top: 150px;
  }

  .hero__content {
    max-width: 610px;
    margin-inline: 0;
  }

  .hero .eyebrow {
    width: min(100%, 500px);
    font-size: 15px;
  }

  .hero h1 {
    max-width: 610px;
    font-size: 56px;
    line-height: 1.08;
  }

  .hero__text {
    max-width: 560px;
    font-size: 18px;
    line-height: 1.55;
  }

  .hero__buttons {
    width: auto;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 18px;
  }

  .hero__buttons .button,
  .hero__buttons .button--primary,
  .hero__buttons .button--ghost {
    width: auto;
    min-height: 62px;
    margin-inline: 0;
    font-size: 19px;
  }

  .hero__buttons .button--primary {
    min-width: 300px;
  }

  .hero__buttons .button--ghost {
    min-width: 280px;
  }

  .section--benefits,
  .section--products,
  .figma-mucin,
  .figma-routine,
  .figma-results,
  .figma-reviews,
  .figma-faq,
  .figma-footer {
    margin-top: 72px;
  }

  .section--benefits .section-title,
  .section--products .section-title,
  .figma-mucin__title,
  .figma-routine__title,
  .figma-results__title,
  .figma-reviews__title,
  .figma-faq__title {
    max-width: 720px;
    font-size: 46px;
    line-height: 1.12;
  }

  .benefit-grid,
  .product-grid,
  .figma-routine__steps,
  .figma-results__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-card {
    min-height: 190px;
    padding: 28px 18px;
  }

  .product-card {
    min-height: 0;
  }

  .figma-mucin__inner {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 36px;
  }

  .figma-mucin__copy {
    grid-column: auto;
  }

  .figma-mucin__media {
    grid-column: auto;
    width: 300px;
  }

  body.snail-theme .figma-mucin__image {
    width: 300px;
  }

  .figma-mucin__points {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .figma-routine__steps {
    gap: 34px 28px;
  }

  .figma-routine-step {
    grid-template-columns: 92px minmax(0, 1fr);
  }

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

  .figma-result-photo,
  body.snail-theme .figma-result-photo__image {
    width: 100%;
  }

  .figma-faq__inner {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 34px;
  }

  .figma-faq__visual,
  body.snail-theme .figma-faq__image {
    width: 240px;
    max-width: 240px;
  }

  .figma-footer__main,
  .figma-footer__nav {
    gap: 34px;
  }

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

@media (min-width: 561px) and (max-width: 860px) {
  .hero__content {
    max-width: 560px;
  }

  .hero .eyebrow {
    width: min(100%, 500px);
  }

  .hero h1 {
    max-width: 560px;
    font-size: 50px;
    line-height: 1.1;
  }

  .hero__text {
    max-width: 520px;
  }

  .hero__buttons {
    gap: 16px;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .hero__buttons .button--primary {
    min-width: 280px;
  }

  .hero__buttons .button--ghost {
    min-width: 260px;
  }
}

@media (min-width: 561px) and (max-width: 680px) {
  .product-grid {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
  }

  .product-card {
    width: min(100%, 400px);
    max-width: 400px;
  }

  .product-card__body {
    min-height: 260px;
    padding-right: 96px;
  }

  .product-card__meta {
    width: auto;
    max-width: 190px;
  }

  .product-card__button {
    right: 28px;
    bottom: 40px;
  }
}

@media (max-width: 980px) {
  .figma-mucin__copy .figma-eyebrow {
    display: block;
    max-width: 100%;
    margin-inline: auto;
    text-align: center;
  }
}
