/* LUMI BOOK — light premium / soft luxury */

:root {
  --site-header-h: clamp(76px, 10.5vw, 92px);
  --bg: #f8f2e8;
  --bg-soft: #f3ebe0;
  --surface: #fffdf8;
  --text: #111111;
  --muted: #454038;
  --muted-soft: #5c564c;
  --gold-1: #e7c878;
  --gold-2: #d6b15f;
  --gold-3: #c29c4a;
  --line: rgba(0, 0, 0, 0.12);
  --shadow: 0 18px 50px rgba(17, 17, 17, 0.06);
  --shadow-sm: 0 8px 24px rgba(17, 17, 17, 0.05);
  --radius: 24px;
  --radius-lg: 28px;
  --font-sans: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: auto;
  scroll-padding-top: calc(var(--site-header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

/* ---------- Site header (top nav) ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  min-height: var(--site-header-h);
  display: flex;
  align-items: center;
  background: rgba(253, 249, 243, 0.96);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(253, 249, 243, 0.92);
  border-bottom-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 36px rgba(17, 17, 17, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--site-header-h);
  max-width: 100%;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 22px);
  margin-left: auto;
  min-width: 0;
}

.site-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-header__logo-img {
  display: block;
  width: auto;
  height: clamp(38px, 5.8vw, 50px);
  max-width: min(240px, calc(100vw - 120px));
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: clamp(10px, 2vw, 26px);
  min-width: 0;
}

.site-nav__link {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  color: var(--text);
  white-space: nowrap;
  padding: 8px 0 10px;
  border-bottom: 2px solid transparent;
}

.site-nav__link:hover {
  color: var(--gold-3);
  border-bottom-color: rgba(194, 156, 74, 0.92);
}

.site-header__cta {
  flex-shrink: 0;
}

.site-header .site-header__cta.btn--small {
  padding: 12px 24px;
  min-height: 44px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow:
    0 12px 30px rgba(214, 177, 95, 0.42),
    0 0 28px rgba(233, 201, 120, 0.38);
}

.site-header .site-header__cta.btn--small:hover {
  box-shadow:
    0 16px 40px rgba(214, 177, 95, 0.52),
    0 0 40px rgba(233, 201, 120, 0.48);
}

.site-header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.85);
  cursor: pointer;
  flex-shrink: 0;
}

.site-header__burger:hover {
  border-color: rgba(214, 177, 95, 0.45);
}

.site-header__burger-line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  border-radius: 2px;
  background: var(--text);
}

.site-drawer {
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
}

body.drawer-open .site-drawer {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

.site-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.28);
  cursor: pointer;
}

.site-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(360px, 92vw);
  height: 100%;
  padding: 20px 20px 28px;
  background: var(--surface);
  border-left: 1px solid var(--line);
  box-shadow: -16px 0 48px rgba(17, 17, 17, 0.12);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateX(100%);
}

body.drawer-open .site-drawer__panel {
  transform: translateX(0);
}

.site-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.site-drawer__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--text);
}

.site-drawer__close {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: var(--text);
}

.site-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-drawer__link {
  padding: 14px 14px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
}

.site-drawer__link:hover {
  background: rgba(231, 200, 120, 0.14);
}

.site-drawer__cta {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font: inherit;
  border: 0;
  cursor: default;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

@media (min-width: 1280px) {
  .container {
    padding: 0 48px;
  }
}

/* ---------- HERO ---------- */
.hero {
  padding: 48px 0 56px;
  background:
    radial-gradient(900px 420px at 50% -10%, rgba(231, 200, 120, 0.22), transparent 55%),
    var(--bg);
}

.hero--split {
  position: relative;
  overflow-x: visible;
  overflow-y: visible;
  padding: calc(40px + var(--site-header-h)) 0 clamp(40px, 6vw, 56px);
}

.hero__glow {
  display: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  grid-template-rows: auto auto;
  column-gap: clamp(14px, 2.2vw, 36px);
  row-gap: clamp(8px, 1.5vw, 16px);
  align-items: start;
}

.hero__col--left {
  grid-column: 1;
  grid-row: 1;
  text-align: left;
  min-width: 0;
}

.hero__col--right {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  justify-content: center;
  background: transparent;
  align-self: center;
}

.hero__logo-foot {
  grid-column: 1;
  grid-row: 2;
  justify-self: center;
  align-self: start;
  margin-top: clamp(4px, 1.2vw, 14px);
  padding: 0;
  opacity: 0.92;
}

.hero__logo-foot:focus-visible {
  outline: 2px solid rgba(194, 156, 74, 0.65);
  outline-offset: 6px;
  border-radius: 12px;
}

.logo-img--hero-foot {
  display: block;
  width: min(360px, calc(100vw - 40px));
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

@media (min-width: 981px) {
  .hero__col--right {
    justify-content: flex-end;
    transform: translate(clamp(-6px, -1vw, -20px), -14px);
  }
}

.logo-link {
  display: inline-block;
  padding: 20px 28px 8px;
  margin: 0 auto 8px;
  background: transparent;
}

.logo-img {
  width: min(372px, 94vw);
  height: auto;
  margin: 0 auto;
  background: transparent;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.hero__title--split {
  font-size: clamp(20px, 3.5vw, 36px);
  line-height: 1.18;
  letter-spacing: -0.024em;
  max-width: min(14em, 100%);
  white-space: normal;
  margin: 0 0 16px;
  overflow-wrap: break-word;
  text-wrap: balance;
}

@media (min-width: 981px) {
  .hero__title--split {
    max-width: min(12.5em, 100%);
  }
}

.hero__lead {
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: clamp(15px, 2vw, 18px);
  max-width: 560px;
}

.hero__lead--split {
  margin: 0 0 22px;
  max-width: min(32rem, 100%);
  font-size: clamp(14px, 1.65vw, 17px);
  line-height: 1.68;
  color: var(--muted);
  font-weight: 500;
}

.hero__cta-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: min(420px, 100%);
  width: 100%;
  min-width: 0;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 17px 22px 17px 16px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: clamp(14px, 3.4vw, 17px);
  line-height: 1.28;
  letter-spacing: 0.01em;
  text-align: left;
  border: 1px solid transparent;
}

.hero-cta--client {
  color: #111111;
  background: linear-gradient(135deg, #f0d78e 0%, #e9c978 28%, #d6b15f 72%, #c9a14e 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.45) inset,
    0 12px 32px rgba(214, 177, 95, 0.38);
}

.hero-cta--master {
  color: #111111;
  background: #fffcf7;
  border-color: rgba(0, 0, 0, 0.16);
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.06);
}

.hero-cta--master:hover {
  border-color: rgba(214, 177, 95, 0.55);
  background: linear-gradient(180deg, #fffefb 0%, #faf6eb 100%);
}

.hero-cta__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.hero-cta__icon--on-gold {
  background: rgba(0, 0, 0, 0.08);
  color: #111111;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.hero-cta__icon--on-light {
  background: rgba(0, 0, 0, 0.04);
  color: #111111;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.hero-cta__icon svg {
  display: block;
  pointer-events: none;
}

.hero-cta__text {
  flex: 1;
  min-width: 0;
  overflow-wrap: break-word;
}

.hero__look {
  width: 100%;
  max-width: min(440px, 100%);
  padding: 0 8px 4px;
  margin-top: clamp(-12px, -1.2vw, -4px);
  border-radius: 20px;
  background: transparent;
  background-color: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.hero__look-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.8vw, 28px);
  letter-spacing: -0.02em;
  margin: clamp(6px, 1.2vw, 12px) 0 8px;
  color: var(--text);
  text-align: left;
}

.hero__look-sub {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  max-width: 340px;
  text-align: left;
}

.phone-showcase--hero {
  margin-top: 0;
  margin-bottom: -4px;
  justify-content: center;
  background: transparent;
}

@media (min-width: 981px) {
  .phone-showcase--hero {
    justify-content: flex-end;
  }
}

.hero-look-mockup {
  position: relative;
  z-index: 0;
  width: 100%;
  max-width: min(418px, calc(100vw - 32px));
  margin: 0 auto;
  background: var(--bg);
  border-radius: 24px;
}

.hero-look-mockup__img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-2) 52%, var(--gold-3) 100%);
  color: var(--text);
  box-shadow: 0 14px 34px rgba(214, 177, 95, 0.35);
}

.btn--primary:hover {
  box-shadow: 0 18px 44px rgba(214, 177, 95, 0.45);
}

.btn--secondary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.btn--secondary:hover {
  border-color: rgba(214, 177, 95, 0.45);
  box-shadow: var(--shadow);
}

.btn--small {
  padding: 10px 18px;
  font-size: 13px;
}

.btn--block {
  width: 100%;
}

.btn--lg {
  padding: 16px 32px;
  font-size: 16px;
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(48px, 8vw, 72px) 0;
}

.section--soft {
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.65) 0%, var(--bg-soft) 100%);
}

.section__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 3.6vw, 34px);
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--text);
}

.section__title--center {
  text-align: center;
}

.section__subtitle {
  text-align: center;
  color: var(--muted);
  max-width: 520px;
  margin: 12px auto 0;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 500;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

/* ---------- Отзывы мастеров ---------- */
.section--reviews {
  padding: clamp(56px, 9vw, 96px) 0;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(231, 200, 120, 0.14) 0%, transparent 55%),
    linear-gradient(180deg, #fdfaf6 0%, #f6efe6 42%, #f1e8de 100%);
}

.section-head--reviews {
  margin-bottom: clamp(40px, 5vw, 56px);
}

.section__subtitle--reviews {
  max-width: 560px;
  font-size: clamp(15px, 1.9vw, 17px);
  line-height: 1.68;
  font-weight: 500;
}

.reviews-carousel {
  --reviews-gap: clamp(14px, 2vw, 20px);
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 14px;
  scrollbar-color: rgba(194, 156, 74, 0.65) rgba(0, 0, 0, 0.06);
  scrollbar-width: auto;
}

.reviews-carousel::-webkit-scrollbar {
  height: 8px;
}

.reviews-carousel::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 999px;
}

.reviews-carousel::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, rgba(231, 200, 120, 0.75), rgba(194, 156, 74, 0.85));
  border-radius: 999px;
  border: 2px solid rgba(255, 253, 248, 0.85);
}

.reviews-track {
  display: flex;
  gap: var(--reviews-gap);
  width: max-content;
}

.reviews-track .review-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: min(320px, calc(100vw - 48px));
  max-width: none;
}

@supports (container-type: inline-size) {
  .reviews-carousel {
    container-type: inline-size;
    container-name: reviews;
  }

  .reviews-track .review-card {
    width: 100cqi;
  }

  @container reviews (min-width: 640px) {
    .reviews-track .review-card {
      width: calc((100cqi - var(--reviews-gap)) / 2);
    }
  }

  @container reviews (min-width: 1040px) {
    .reviews-track .review-card {
      width: calc((100cqi - 2 * var(--reviews-gap)) / 3);
    }
  }
}

.review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(20px, 2.6vw, 28px) clamp(18px, 2.4vw, 24px) clamp(18px, 2.4vw, 24px);
  background: #fffefb;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: clamp(22px, 3vw, 28px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 14px 40px rgba(17, 17, 17, 0.06);
}

.review-card__quote {
  margin-bottom: 10px;
  color: rgba(194, 156, 74, 0.55);
}

.review-card__quote-icon {
  display: block;
  width: 42px;
  height: auto;
  opacity: 0.88;
}

.review-card__stars {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: 0.18em;
  line-height: 1;
  color: rgba(194, 156, 74, 0.95);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}

.review-card__blockquote {
  margin: 0;
  flex: 1;
}

.review-card__text {
  margin: 0;
  font-size: clamp(15px, 1.65vw, 16px);
  line-height: 1.72;
  letter-spacing: -0.01em;
  color: var(--text);
  font-weight: 500;
}

.review-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: clamp(18px, 2.4vw, 22px);
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.review-card__avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.02em;
  color: #5c4a2e;
  background: linear-gradient(145deg, #fff9ef 0%, #f0e0c4 45%, #e7d4a8 100%);
  border: 1px solid rgba(214, 177, 95, 0.35);
  box-shadow:
    0 4px 14px rgba(194, 156, 74, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.review-card:nth-child(2) .review-card__avatar {
  background: linear-gradient(145deg, #fffbf7 0%, #f3e8dc 50%, #e8d4c4 100%);
  color: #5a453d;
}

.review-card:nth-child(3) .review-card__avatar {
  background: linear-gradient(145deg, #fefcf8 0%, #ebe4dc 48%, #ddd2c8 100%);
  color: #4a423a;
}

.review-card:nth-child(4) .review-card__avatar {
  background: linear-gradient(145deg, #fffaf5 0%, #f2e6dd 50%, #e5d2c6 100%);
  color: #5c4338;
}

.review-card:nth-child(5) .review-card__avatar {
  background: linear-gradient(145deg, #fffef9 0%, #efe8de 50%, #e2d6cc 100%);
  color: #4d443c;
}

.review-card__author {
  margin: 0;
  text-align: left;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
  color: var(--text);
}

.review-card__name {
  font-weight: 700;
}

.review-card__sep {
  margin: 0 0.35em;
  color: rgba(194, 156, 74, 0.75);
  font-weight: 600;
}

.review-card__role {
  display: inline;
  font-weight: 600;
  color: var(--muted-soft);
}

.review-card:hover {
  border-color: rgba(214, 177, 95, 0.3);
}

/* ---------- Phone mockup ---------- */
.phone-showcase {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.phone-frame {
  position: relative;
  width: min(360px, 92vw);
  border-radius: 42px;
  padding: 14px;
  background: linear-gradient(165deg, #fffefb 0%, #f0e6d8 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}

.phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 112px;
  height: 28px;
  border-radius: 0 0 18px 18px;
  background: #111;
  z-index: 2;
}

.phone-screen {
  position: relative;
  border-radius: 32px;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 52px 18px 10px;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.app-top {
  padding: 0 4px;
}

.app-greet {
  margin: 0 0 6px;
  font-size: 22px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text);
}

.app-date {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.app-date__dot {
  opacity: 0.55;
}

.app-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.app-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 14px 16px;
  box-shadow: var(--shadow-sm);
}

.app-card--stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.app-card__label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.app-card__value {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
}

.app-card--gold {
  background: linear-gradient(145deg, #fdf6e8 0%, #f3e3c4 100%);
  border-color: rgba(214, 177, 95, 0.35);
}

.app-card__value--dark {
  color: #3d2f12;
}

.app-slot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.app-slot__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.app-slot__title {
  font-size: 13px;
  color: var(--muted);
}

.app-slot__time {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

/* Tab bar */
.app-tabbar {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  padding: 10px 6px 8px;
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 -6px 24px rgba(17, 17, 17, 0.04);
}

.app-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 9px;
  color: var(--muted);
  font-weight: 600;
  padding: 6px 2px;
  border-radius: 16px;
}

.app-tab--active {
  color: var(--text);
  background: rgba(231, 200, 120, 0.18);
}

.app-tab__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: #fff;
  color: #111;
}

.app-tab--active .app-tab__icon {
  border-color: rgba(214, 177, 95, 0.55);
  background: linear-gradient(180deg, #fffefb, #faf3e4);
  color: #111;
}

.app-tab__icon svg {
  width: 18px;
  height: 18px;
}

/* ---------- Benefits ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.benefit-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
}

#features .benefit-card:hover {
  box-shadow:
    0 0 0 1px rgba(233, 201, 120, 0.45),
    0 0 36px rgba(231, 200, 120, 0.28),
    0 22px 52px rgba(17, 17, 17, 0.1);
  border-color: rgba(214, 177, 95, 0.58);
}

.benefit-card--featured {
  border-color: rgba(214, 177, 95, 0.42);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 0 0 1px rgba(233, 201, 120, 0.22),
    0 14px 42px rgba(17, 17, 17, 0.07);
}

#features .benefit-card--featured:hover {
  border-color: rgba(214, 177, 95, 0.65);
  box-shadow:
    0 0 0 1px rgba(233, 201, 120, 0.5),
    0 0 44px rgba(231, 200, 120, 0.32),
    0 24px 56px rgba(17, 17, 17, 0.1);
}

.benefit-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  margin-bottom: 14px;
}

.benefit-card__icon svg {
  width: 22px;
  height: 22px;
}

#features .benefit-card:hover .benefit-card__icon {
  border-color: rgba(214, 177, 95, 0.45);
  box-shadow: 0 0 20px rgba(231, 200, 120, 0.25);
}

.benefit-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text);
  letter-spacing: -0.02em;
}

.benefit-card__text {
  margin: 0;
  margin-top: auto;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
  font-weight: 500;
}

/* ---------- Audience ---------- */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
}

@media (min-width: 700px) {
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .audience-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.audience-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

#audience .audience-card:hover {
  border-color: rgba(214, 177, 95, 0.58);
  box-shadow:
    0 0 0 1px rgba(231, 200, 120, 0.42),
    0 0 52px rgba(231, 200, 120, 0.35),
    0 24px 56px rgba(17, 17, 17, 0.11);
}

.audience-card--with-photo {
  padding: 10px 10px 14px;
  text-align: left;
}

.audience-card--with-photo .audience-card__media {
  margin-top: 6px;
}

.audience-card__media {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.07);
  background: linear-gradient(135deg, rgba(231, 200, 120, 0.14), rgba(255, 252, 247, 0.98));
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.08);
  aspect-ratio: 3 / 4;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.audience-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.audience-card__title {
  margin: 0;
  font-size: clamp(13px, 2.4vw, 15px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  hyphens: auto;
  overflow-wrap: break-word;
}

.audience-card--with-photo .audience-card__title {
  margin-top: auto;
  padding-top: 10px;
  text-align: center;
}

/* ---------- Mini screens row ---------- */
.screens-row {
  --screens-gap: 2px;
  display: flex;
  gap: var(--screens-gap);
  justify-content: center;
  align-items: flex-start;
  overflow-x: visible;
  overflow-y: hidden;
  max-width: 100%;
  padding-bottom: 8px;
}

@media (min-width: 1100px) {
  .screens-row {
    --screens-gap: 4px;
  }
}

.screen-card {
  flex: 1 1 0;
  min-width: 0;
  width: auto;
  max-width: 200px;
}

.screen-card__mock {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--bg);
  padding: 14px;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 9 / 16;
  max-height: 320px;
}

.screen-card__mock--photo {
  padding: 4px;
  background: linear-gradient(135deg, rgba(231, 200, 120, 0.25), rgba(255, 252, 247, 0.9));
}

.screen-card__img {
  width: 100%;
  height: 100%;
  border-radius: calc(var(--radius-lg) - 6px);
  object-fit: cover;
  display: block;
  box-shadow: 0 8px 26px rgba(17, 17, 17, 0.16);
}

.screen-card:hover .screen-card__mock {
  box-shadow: var(--shadow);
}

.mini-ui {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mini-ui__bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid var(--line);
}

.mini-ui__hero {
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fffefb, #f3e6cf);
  border: 1px solid rgba(214, 177, 95, 0.25);
}

.mini-ui__cal {
  height: 72px;
  border-radius: 18px;
  background: rgba(231, 200, 120, 0.18);
  border: 1px solid rgba(214, 177, 95, 0.28);
}

.mini-ui__stat {
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fdf6e8, #f3e3c4);
  border: 1px solid rgba(214, 177, 95, 0.35);
}

.mini-ui__chips {
  display: flex;
  gap: 8px;
}

.mini-ui__chips span {
  height: 8px;
  flex: 1;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid var(--line);
}

.mini-ui__chips .is-gold {
  flex: 0.6;
  background: rgba(231, 200, 120, 0.35);
  border-color: rgba(214, 177, 95, 0.4);
}

.mini-ui__row {
  height: 36px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.mini-ui__row--short {
  width: 72%;
}

.mini-ui__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin: 0 auto;
  background: radial-gradient(circle at 30% 25%, #fffefb, #e7c878);
  border: 1px solid rgba(214, 177, 95, 0.45);
}

.screen-card__label {
  text-align: center;
  margin: 10px 0 0;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}

/* ---------- Тарифы (premium SaaS) ---------- */
.section--tariffs {
  padding-top: clamp(56px, 9vw, 88px);
  padding-bottom: clamp(64px, 10vw, 96px);
}

.section-head--tariffs {
  margin-bottom: 48px;
}

.tariffs-subtitle {
  margin: 14px 0 0;
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.65;
  color: var(--muted);
  font-weight: 500;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.tariffs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 28px);
  align-items: stretch;
}

@media (min-width: 1280px) {
  .tariffs-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.tariff-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  padding: clamp(22px, 3vw, 28px) clamp(18px, 2.5vw, 24px) clamp(20px, 2.5vw, 26px);
  border-radius: 28px;
  background: #fffcf7;
  border: 1px solid rgba(214, 177, 95, 0.28);
  box-shadow:
    0 4px 0 rgba(255, 255, 255, 0.85) inset,
    0 18px 48px rgba(17, 17, 17, 0.06);
}

.tariff-card:hover {
  border-color: rgba(214, 177, 95, 0.48);
  box-shadow:
    0 4px 0 rgba(255, 255, 255, 0.9) inset,
    0 28px 64px rgba(17, 17, 17, 0.09),
    0 0 0 1px rgba(233, 201, 120, 0.25),
    0 20px 56px rgba(214, 177, 95, 0.18);
}

.tariff-card--featured {
  z-index: 2;
  border: 2px solid rgba(214, 177, 95, 0.72);
  box-shadow:
    0 4px 0 rgba(255, 255, 255, 0.92) inset,
    0 0 0 1px rgba(255, 255, 255, 0.35) inset,
    0 24px 60px rgba(214, 177, 95, 0.28),
    0 18px 48px rgba(17, 17, 17, 0.07),
    0 0 56px rgba(233, 201, 120, 0.32);
}

.tariff-card--featured:hover {
  border-color: rgba(194, 156, 74, 0.88);
  box-shadow:
    0 4px 0 rgba(255, 255, 255, 0.95) inset,
    0 0 0 1px rgba(255, 255, 255, 0.4) inset,
    0 34px 76px rgba(214, 177, 95, 0.32),
    0 22px 56px rgba(17, 17, 17, 0.08),
    0 0 64px rgba(233, 201, 120, 0.38);
}

.tariff-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  pointer-events: none;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3d2f12;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-2) 100%);
  box-shadow: 0 6px 16px rgba(214, 177, 95, 0.45);
}

.tariff-card--featured .tariff-card__name {
  padding-right: clamp(72px, 18vw, 120px);
}

.tariff-card__name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
  color: var(--text);
}

.tariff-card__price {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(26px, 2.4vw, 32px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.tariff-card__period {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
}

.tariff-card__tagline {
  margin: 0 0 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 500;
}

.tariff-card__list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 0 0 26px;
  flex: 1 1 auto;
}

.tariff-card__list li {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
  color: var(--text);
  overflow-wrap: break-word;
}

.tariff-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(233, 201, 120, 0.22);
  border: 1px solid rgba(214, 177, 95, 0.35);
  pointer-events: none;
}

.tariff-card__list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 9px;
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--gold-2);
  border-bottom: 2px solid var(--gold-2);
  transform: rotate(-45deg);
  pointer-events: none;
}

.btn--tariff {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: auto;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(17, 17, 17, 0.05);
  text-align: center;
  box-sizing: border-box;
}

.btn--tariff:hover {
  border-color: rgba(214, 177, 95, 0.45);
  background: linear-gradient(180deg, #fffefb 0%, #faf4e8 100%);
  box-shadow: 0 14px 32px rgba(214, 177, 95, 0.22);
}

.btn--tariff-accent {
  background: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-2) 52%, var(--gold-3) 100%);
  border-color: rgba(214, 177, 95, 0.35);
  color: var(--text);
  box-shadow: 0 12px 28px rgba(214, 177, 95, 0.35);
}

.btn--tariff-accent:hover {
  background: linear-gradient(135deg, #f0d78e 0%, var(--gold-2) 50%, #b8924a 100%);
  box-shadow: 0 16px 40px rgba(214, 177, 95, 0.45);
}

.tariff-card:hover .btn--tariff,
.tariff-card:hover .btn--tariff-accent {
  box-shadow:
    0 0 28px rgba(233, 201, 120, 0.45),
    0 14px 32px rgba(214, 177, 95, 0.28);
  border-color: rgba(214, 177, 95, 0.5);
}

.tariff-card:hover .btn--tariff-accent {
  box-shadow:
    0 0 36px rgba(233, 201, 120, 0.55),
    0 18px 44px rgba(214, 177, 95, 0.42);
}

/* ---------- Contacts ---------- */
.section--contacts {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(255, 253, 248, 0.5) 100%);
}

.section-head--contacts {
  margin-bottom: clamp(28px, 4vw, 40px);
}

.section__subtitle--contacts {
  max-width: 560px;
  font-size: clamp(15px, 1.85vw, 17px);
  line-height: 1.65;
  font-weight: 500;
}

.contacts-intro-line {
  display: block;
}

.contacts-intro-line + .contacts-intro-line {
  margin-top: 6px;
}

.contacts-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 3vw, 20px);
  max-width: 440px;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 1024px) {
  .contacts-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 960px;
  }
}

.contact-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(214, 177, 95, 0.18);
  box-shadow: var(--shadow-sm);
  min-width: 0;
  text-decoration: none;
  color: inherit;
}

.contact-card:hover {
  border-color: rgba(214, 177, 95, 0.62);
  box-shadow:
    0 22px 48px rgba(17, 17, 17, 0.1),
    0 0 0 1px rgba(233, 201, 120, 0.35),
    0 0 48px rgba(231, 200, 120, 0.28);
}

.contact-card__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #fff9ef 0%, #f3e6cf 100%);
  border: 1px solid rgba(214, 177, 95, 0.35);
  color: #3d3318;
  box-shadow:
    0 4px 14px rgba(194, 156, 74, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.contact-card__icon-svg {
  display: block;
  width: 24px;
  height: 24px;
}

.contact-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  text-align: left;
}

.contact-card__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-card__value {
  font-weight: 700;
  font-size: clamp(14px, 2.6vw, 15px);
  line-height: 1.45;
  color: var(--text);
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* ---------- Финальный CTA ---------- */
.section--final-cta {
  padding: clamp(48px, 8vw, 72px) 0 clamp(56px, 9vw, 80px);
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(231, 200, 120, 0.18) 0%, transparent 55%),
    linear-gradient(180deg, #fdfaf6 0%, var(--bg-soft) 100%);
}

.final-cta-panel {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 48px) clamp(22px, 4vw, 40px);
  text-align: center;
  border-radius: clamp(26px, 4vw, 32px);
  background: linear-gradient(180deg, #fffefb 0%, #faf6ee 100%);
  border: 1px solid rgba(214, 177, 95, 0.22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 24px 60px rgba(17, 17, 17, 0.07),
    0 0 80px rgba(231, 200, 120, 0.15);
}

.final-cta-panel__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 3.6vw, 32px);
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: var(--text);
  line-height: 1.2;
}

.final-cta-panel__text {
  margin: 0 auto 28px;
  max-width: 520px;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.68;
  color: var(--muted);
  font-weight: 500;
}

.final-cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.final-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(200px, 100%);
  padding: 16px 36px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid transparent;
}

.final-cta-btn--master {
  color: #111;
  background: linear-gradient(135deg, #f0d78e 0%, #e9c978 35%, #d6b15f 70%, #c9a14e 100%);
  border-color: rgba(214, 177, 95, 0.35);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.45) inset,
    0 14px 36px rgba(214, 177, 95, 0.38);
}

.final-cta-btn--master:hover {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55) inset,
    0 20px 48px rgba(214, 177, 95, 0.48),
    0 0 44px rgba(233, 201, 120, 0.42);
}

.final-cta-btn--client {
  color: #111;
  background: #fffcf7;
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.07);
}

.final-cta-btn--client:hover {
  border-color: rgba(214, 177, 95, 0.5);
  background: linear-gradient(180deg, #fffefb 0%, #faf6eb 100%);
  box-shadow:
    0 16px 40px rgba(214, 177, 95, 0.22),
    0 0 36px rgba(231, 200, 120, 0.2);
}

@media (max-width: 520px) {
  .final-cta-panel__actions {
    flex-direction: column;
    width: 100%;
  }

  .final-cta-btn {
    width: 100%;
    max-width: 360px;
    min-width: 0;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 40px 0 56px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
}

.site-footer__text {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 20px;
  color: var(--muted);
  font-size: clamp(14px, 2.8vw, 16px);
  line-height: 1.65;
  font-weight: 500;
  padding: 0 4px;
}

.site-footer__logo {
  display: flex;
  justify-content: center;
  opacity: 0.95;
}

.site-footer__logo img {
  width: min(122px, 68%);
  max-width: 100%;
  height: auto;
  background: transparent;
  object-fit: contain;
}

/* ---------- Reveal (disabled for touch stability; JS no longer toggles) ---------- */
.reveal,
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .site-header__actions {
    display: none;
  }

  .site-header__burger {
    display: flex;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: clamp(22px, 5vw, 34px);
  }

  .hero__col--left {
    grid-column: 1;
    grid-row: 1;
  }

  .hero__col--right {
    grid-column: 1;
    grid-row: 2;
    justify-content: center;
    transform: none;
  }

  .hero__logo-foot {
    grid-column: 1;
    grid-row: 3;
    justify-self: center;
    margin-top: clamp(0px, 1vw, 8px);
  }

  .hero__look {
    max-width: 100%;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero__look-title,
  .hero__look-sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__look-sub {
    max-width: 420px;
  }

  .phone-showcase--hero {
    justify-content: center;
  }

}

@media (max-width: 640px) {
  .benefits-grid {
    gap: 20px;
  }

  .audience-grid {
    gap: 18px;
  }

  .hero-cta {
    padding: 14px 18px 14px 14px;
    font-size: clamp(13px, 3.2vw, 16px);
  }

  .tariffs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tariff-card--featured .tariff-card__name {
    padding-right: 0;
  }

  .tariff-card__badge {
    position: static;
    align-self: flex-start;
    margin-bottom: 4px;
  }

  .section--tariffs {
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .hero {
    padding-top: 32px;
  }

  .hero--split {
    padding: calc(28px + var(--site-header-h)) 0 40px;
  }

  .logo-link {
    padding: 12px 16px 4px;
  }

  .logo-link--left {
    padding: 0;
  }

  .hero__cta-stack {
    max-width: none;
  }

  .hero__title--split,
  .hero__lead--split {
    max-width: none;
  }

  .section {
    padding: 56px 0;
  }

  .benefits-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .app-grid2 {
    grid-template-columns: 1fr;
  }

  .app-tabbar {
    grid-template-columns: repeat(5, 1fr);
    padding-inline: 4px;
  }

  .app-tab {
    font-size: 8px;
  }

  .app-tab__icon {
    width: 30px;
    height: 30px;
  }

  .phone-screen {
    min-height: unset;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }

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

  #features .benefit-card,
  #audience .audience-card {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* ---------- Utilities: app CTAs & click-through decorations ---------- */
.pointer-events-none {
  pointer-events: none;
}

.cursor-pointer {
  cursor: pointer;
}

.relative {
  position: relative;
}

.z-10 {
  z-index: 10;
}

.review-card__stars span[aria-hidden="true"] {
  pointer-events: none;
}

.benefit-card__icon svg,
.audience-card__media svg,
.review-card__quote svg,
.contact-card__icon svg {
  pointer-events: none;
}
