:root {
  --color-primary: #F33283;
  --color-secondary: #FF80B4;
  --color-light: #FFADD7;
  --color-white: #1a1a1a;
  --color-offwhite: #f5f0eb;
  --color-black: #1a1a1a;
  --section-gap: 14px;
  --shadow-soft: 0 18px 36px rgba(243, 50, 131, 0.12);
  --shadow-strong: 0 22px 40px rgba(243, 50, 131, 0.2);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-pill: 999px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'NEVDUPLENYSH', 'Montserrat', sans-serif;
  background-color: #ece9dc;
  background-image:
    radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0) 26%),
    radial-gradient(circle at 82% 78%, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 22%),
    repeating-radial-gradient(
      circle at 50% 50%,
      rgba(255, 255, 255, 0.07) 0px,
      rgba(255, 255, 255, 0.07) 1px,
      rgba(0, 0, 0, 0.03) 1px,
      rgba(0, 0, 0, 0.03) 2px
    );
  background-size: auto, auto, 3px 3px;
  color: var(--color-black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

button,
a {
  font: inherit;
}

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

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

p,
h1,
h2,
h3,
ul {
  margin: 0;
}

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

.page-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 390px);
  margin: 0 auto;
  padding: 18px 14px 36px;
  overflow-x: hidden;
}


.hero-card,
.section {
  position: relative;
  margin-bottom: var(--section-gap);
  border-radius: 30px;
  overflow: hidden;
}

.hero-card {
  padding: 0;
  background: transparent;
  box-shadow: none;
  border: none;
}

#hero,
#about,
#program,
#results,
#cases {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

#hero {
  padding: 0;
  min-height: 600px;
  border-radius: 30px;
  overflow: hidden;
}

.section-title,
.script-phrase,
.card-sign,
.result-card h3 {
  font-family: 'Great Vibes', cursive;
}

/* Единая пластика карточек: блоки выглядят частью одного полотна */
.hero-after,
.applications-feature,
.paid-block,
.outline-card,
.results-frame,
.tarif-card,
.faq-item,
.case-card,
.review-gallery {
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 14px 32px rgba(243, 50, 131, 0.12);
  margin-bottom: 0; /* Убираем отступ, чтобы прижать к следующему блоку */
}

#about {
  margin-top: 0; /* Убираем верхний отступ секции */
}

.applications-feature,
.paid-block,
.outline-card,
.results-frame,
.tarif-card,
.faq-item,
.case-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ── V4 Hero (стиль 5 — розовый) ── */
.v4-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, #ff7ba5 0%, #f64d8f 62%, #eb1f74 100%);
}

.v5-bottom-slab {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 55%;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(235, 31, 116, 0) 0%,
    rgba(235, 31, 116, 0.9) 12%,
    rgba(235, 31, 116, 1) 26%,
    rgba(235, 31, 116, 1) 100%
  );
}

.v4-photo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 69%;
  z-index: 1;
  overflow: hidden;
}

.v4-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  display: block;
  transform: scale(1.18);
}

.v4-photo::before {
  content: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 46px;
  background: linear-gradient(to top, rgba(17, 17, 17, 0.14) 0%, rgba(17, 17, 17, 0.08) 42%, rgba(17, 17, 17, 0) 100%);
  z-index: 1;
}

.v4-photo::after {
  content: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.02) 24%,
    rgba(255, 90, 150, 0) 56%,
    rgba(255, 90, 150, 0.12) 72%,
    rgba(245, 52, 132, 0.22) 86%,
    rgba(235, 31, 116, 0.02) 96%,
    rgba(235, 31, 116, 0) 100%
  );
  z-index: 1;
}

.v4-content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0 22px 24px;
  text-align: left;
  isolation: isolate;
}

.v4-content::before {
  content: none;
  position: absolute;
  left: -8px;
  right: -8px;
  top: -138px;
  height: 156px;
  background: linear-gradient(
    to bottom,
    rgba(255, 90, 150, 0) 0%,
    rgba(255, 90, 150, 0.08) 42%,
    rgba(250, 63, 137, 0.1) 60%,
    rgba(237, 32, 117, 0.02) 76%,
    rgba(237, 32, 117, 0) 100%
  );
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
}

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

.v4-name-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 100px;
  padding: 6px 16px 6px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  margin: 0 auto 16px;
  flex-shrink: 0;
  box-shadow: none;
}

.v4-chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
}

.v4-profession {
  font-family: 'Unbounded', sans-serif;
  width: 100%;
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  line-height: 0.9;
  letter-spacing: -0.08em;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.v4-expert {
  font-family: 'Unbounded', sans-serif;
  width: 100%;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 2px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.v4-desc {
  width: 100%;
  font-size: 10px;
  line-height: 1.5;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 14px;
  flex: 1;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-wrap: pretty;
  text-align: center;
  padding: 14px 14px 12px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-shadow: none;
}

.v4-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px 22px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 11.5px;
  text-decoration: none;
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  letter-spacing: 0.2px;
  box-shadow: none;
}

.section-text,
.dot-list li,
.arrow-list li,
.case-text,
.case-result,
.review-card p,
.faq-a,
.contact-btn,
.footer {
  font-size: 13px;
  line-height: 1.65;
}

.primary-btn,
.secondary-btn,
.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn:hover,
.secondary-btn:hover,
.contact-btn:hover,
.faq-q:hover,
.dot:hover {
  transform: translateY(-1px);
}

.primary-btn {
  margin-top: 22px;
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-strong);
}

.hero-after {
  display: grid;
  gap: 14px;
  margin-top: 16px;
  padding-bottom: 10px;
  text-align: left;
}

.hero-after-slider {
  padding: 8px 8px 18px;
  overflow: hidden;
  border-radius: 18px;
  background: transparent;
  box-shadow: none;
}

.hero-after-track {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  will-change: transform;
  animation: hero-after-marquee 28s linear infinite;
}

.hero-after-photo-frame {
  position: relative;
  flex: 0 0 43%;
  width: 43%;
  min-width: 140px;
  max-width: 165px;
  padding: 4px;
  border: 2px solid rgba(243, 50, 131, 0.55);
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}

.hero-after-photo-frame-left {
  transform: rotate(-7deg) translateY(8px);
}

.hero-after-photo-frame-center {
  transform: translateY(-2px);
}

.hero-after-photo-frame-right {
  transform: rotate(7deg) translateY(8px);
}

.hero-after-photo {
  display: block;
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
  aspect-ratio: 0.74;
  object-position: center top;
  pointer-events: none;
}

@keyframes hero-after-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - 5px), 0, 0);
  }
}

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

.hero-after-list {
  display: grid;
  gap: 12px;
}

.hero-after-list li {
  position: relative;
  padding: 14px 16px;
  color: var(--color-black);
  font-size: 14px;
  line-height: 1.6;
  border-radius: 24px;
  background: transparent;
  border: 1px solid rgba(243, 50, 131, 0.35);
  box-shadow: none;
  overflow: hidden;
}

.hero-after-list li::before {
  content: none;
}

.hero-after-list li::after {
  content: none;
}

.hero-after-list li:nth-child(2) {
  border-radius: 24px;
}

.hero-after-list li:nth-child(3) {
  border-radius: 24px;
}

.applications-strip {
  margin-bottom: var(--section-gap);
}

.applications-title {
  margin: 0 0 12px;
  color: var(--color-primary);
  font-size: 34px;
  line-height: 0.95;
  text-align: left;
  font-family: 'Great Vibes', cursive;
}

.applications-feature {
  margin-bottom: 14px;
}

.applications-feature-photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  object-fit: contain;
  aspect-ratio: auto;
  object-position: center top;
  background: transparent;
}

.applications-circles {
  width: min(100%, 320px);
  margin: 0 auto;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
}

.applications-collage-photo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: transparent;
}

.section {
  padding: 28px 12px;
}

#about,
#program,
#results,
#cases {
  padding-left: 0;
  padding-right: 0;
}

#cases {
  padding-top: 0;
  padding-bottom: 0;
  border-top: none;
  box-shadow: none;
}

#cases .section-title {
  margin-top: 40px;
}

#about,
#program,
#results {
  padding: 28px 18px;
  border-radius: 30px;
  background: var(--color-primary);
}


.section-white,
.section-light,
.section-pink {
  background: transparent;
  box-shadow: none;
  border: none;
}

.section-pink {
  color: #fff;
}

#about {
  background: var(--color-primary) !important;
  border-radius: 28px !important;
  padding: 24px 18px 28px !important;
  border: none !important;
}

#about .section-text,
#about strong {
  color: #1d0a14 !important;
}

#about .arrow-list li,
#about .arrow-list li::before {
  color: #1d0a14 !important;
}

#about .soft-card {
  position: relative;
  z-index: 3;
  width: calc(100% + 36px); /* Растягиваем до левого и правого края */
  margin: -50px -18px -28px -18px; /* Наезд на фото (-50px сверху), в края по бокам (-18px), и до самого низа секции (-28px) */
  background: var(--color-primary); 
  border: none;
  border-radius: 40px 40px 28px 28px; /* Верх пухлый (40px), низ точно повторяет радиус контейнера (28px) */
  padding: 30px 24px 44px; /* Чуть добавил воздуха снизу */
  box-shadow: 
    -10px -10px 26px rgba(255, 130, 180, 0.45),
    10px 10px 26px rgba(180, 15, 80, 0.35); /* Эффект теста сохраняем */
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

#about .section-text,
#about .arrow-list li,
#program .outline-card,
#program .outline-card .dot-list li,
#program .outline-card h3,
#program .card-sign,
#results .results-quote,
#results .results-list li {
  color: #1d1017;
}

#about .section-text {
  font-size: 17px;
  line-height: 1.75;
}

#about .about-title {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
  margin: 0;
  pointer-events: none;
  font-family: 'NEVDUPLENYSH', 'Montserrat', sans-serif;
  overflow: visible;
}

.about-title-blog {
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  text-align: center;
  margin-left: -60px; /* Сдвигаем еще сильнее левее */
  font-size: 92px; 
  line-height: 0.85;
  color: #ff6eb0; 
  font-weight: 800;
  text-shadow: 
    -4px -4px 10px rgba(255, 255, 255, 0.9), 
    6px 6px 14px rgba(180, 15, 80, 0.4);
}

.about-title-booster {
  position: absolute;
  top: 40px; 
  right: 5px; /* Корректировка: сдвиг чуть правее */
  font-size: 55px; 
  line-height: 0.85;
  color: #ff6eb0;
  font-weight: 800;
  writing-mode: vertical-rl;
  text-shadow: 
    -3px -3px 8px rgba(255, 255, 255, 0.9), 
    5px 5px 12px rgba(180, 15, 80, 0.4);
}

.card-intro-text {
  position: relative;
  margin: 0 auto 18px !important;
  max-width: 100% !important; /* На весь экран, чтобы центровалось ровно */
  color: #ff007a !important; /* Очень яркий, неоновый розовый */
  font-weight: 900 !important;
  font-style: italic;
  font-size: 17px;
  line-height: 1.4;
  text-align: center !important; /* Принудительно по центру */
  z-index: 5;
  text-shadow: 0 1px 4px rgba(255,255,255,0.3); /* Светлое свечение, чтобы на розовом фоне текст "всплывал" */
}

.about-intro-row {
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  text-align: center;
  margin-bottom: -12px;
  z-index: 1;
}

.about-intro-copy {
  order: 1;
  position: static;
  margin-bottom: 0px;
  text-align: left;
}

.about-intro-photo-wrap {
  order: 2;
  position: relative;
  width: calc(100% + 36px); /* Убираем эффект padding'а от самой секции (18px с каждой стороны) */
  margin-top: -60px; /* Сильно приподнимаем девушку еще выше */
  margin-left: -18px;
  margin-right: -18px;
  min-height: auto;
  overflow: visible;
}

.about-intro-photo {
  position: relative;
  width: 120%; 
  margin-left: -10%; 
  max-width: 500px;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: top center;
  transform: none;
  pointer-events: none; /* Отключаем все hover-эффекты и баги рендера со скруглениями при наведении */
}

#about .arrow-list li {
  font-size: 16px;
  line-height: 1.75;
}

#about .arrow-list li::before,
#program .dot-list li::before,
#results .results-list li::before {
  color: #1d1017;
}

#about .arrow-list {
  counter-reset: aboutSteps;
}

#about .arrow-list li {
  counter-increment: aboutSteps;
}

#about .arrow-list li::before {
  content: counter(aboutSteps) '.';
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  color: #1d1017 !important;
}

.section-title {
  margin-bottom: var(--section-gap);
  color: var(--color-primary);
  font-size: 42px;
  line-height: 0.95;
}

.section-title.white {
  color: var(--color-white);
}

.section-subtitle,
.results-title,
.tarif-name,
.outline-card h3,
.case-name,
.card-kicker {
  font-weight: 800;
}

.section-subtitle {
  font-size: 20px;
  line-height: 1.35;
  font-weight: 700;
}

.section-text + .section-text {
  margin-top: 12px;
}

.section-pink .section-text {
  max-width: 320px;
  text-align: left;
  text-wrap: pretty;
  line-height: 1.75;
}

.about-photo {
  display: block;
  width: 72%;
  max-width: 220px;
  margin: 0 auto 16px;
  border-radius: 24px;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.12);
}

.about-photo-secondary {
  width: 68%;
  max-width: 210px;
  margin-top: 16px;
  transform: rotate(90deg);
  transform-origin: center;
}


.script-phrase {
  margin: 18px 0;
  color: var(--color-white);
  font-size: 30px;
  line-height: 1.15;
  text-align: center;
}

.inner-card,
.outline-card,
.result-card,
.metrics-card,
.review-card {
  border-radius: var(--radius-lg);
}

.soft-card {
  margin-top: 8px;
  padding: 16px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 193, 223, 0.75);
}

.card-kicker {
  margin-bottom: 10px;
  font-size: 14px;
}

.arrow-list li,
.dot-list li {
  position: relative;
  padding-left: 24px;
}

.arrow-list li + li,
.dot-list li + li {
  margin-top: 10px;
}

.arrow-list li::before,
.dot-list li::before {
  position: absolute;
  left: 2px;
  top: 0;
}

.arrow-list li::before {
  content: '›';
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.dot-list li::before {
  content: '•';
  color: var(--color-primary);
  font-size: 16px;
}

.arrow-list.light li::before,
.section-pink .dot-list li::before,
.case-card .arrow-list li::before {
  color: var(--color-white);
}

.quote-grid {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.mini-quote {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mini-quote-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 28px;
  margin-bottom: 10px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.18);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-decor {
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0.8;
}

.section-decor::before,
.section-decor::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.section-decor::before {
  inset: 12px;
}

.section-decor::after {
  inset: 26px;
}

.section-decor-top {
  top: -38px;
  right: -32px;
}

.section-decor-bottom {
  bottom: -42px;
  left: -34px;
}

.accent-band {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 18px 0 14px;
}

.accent-band span {
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: var(--color-light);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pink-card,
.case-card,
.tarif-card {
  padding: 20px;
  border-radius: var(--radius-xl);
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: none;
}

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

.outline-card {
  padding: 20px;
  border: 2px solid var(--color-primary);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

#program .outline-card {
  padding: 22px 14px;
  border: 1px solid rgba(255, 193, 223, 0.75);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.outline-card + .outline-card,
.tarif-card + .tarif-card,
.review-card + .review-card {
  margin-top: 14px;
}

.outline-card h3 {
  margin-bottom: 12px;
  color: var(--color-primary);
  font-size: 16px;
}

#program .outline-card h3 {
  color: #1d1017;
  font-size: 20px;
  line-height: 1.35;
}

.card-sign {
  margin-top: 14px;
  color: var(--color-primary);
  font-size: 28px;
  line-height: 1.05;
  text-align: right;
}

#program .dot-list li {
  color: #1d1017;
  font-size: 16px;
  line-height: 1.7;
  padding-left: 22px;
  text-align: left;
}

#program .dot-list li::before {
  color: #1d1017;
  left: 2px;
}

#program .card-sign {
  margin-top: 18px;
  color: rgba(29, 16, 23, 0.7);
  font-size: 24px;
  text-align: center;
}

.results-head {
  margin-bottom: 18px;
}

.results-eyebrow {
  margin-bottom: 8px;
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.results-title {
  max-width: 320px;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.results-title span {
  display: block;
  margin-top: 4px;
  color: var(--color-primary);
}

.results-frame {
  padding: 20px 14px;
  border-radius: 22px;
  border: 1px solid rgba(255, 193, 223, 0.75);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.results-frame .results-title {
  max-width: none;
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.results-quote {
  margin: 0;
  padding: 0 0 14px;
  border-left: none;
  color: #1d1017;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.02em;
  font-style: normal;
  text-transform: none;
  text-align: center;
  border-bottom: 2px solid rgba(255, 193, 223, 0.9);
}

.results-subtitle {
  margin-top: 18px;
  color: #1d1017;
  font-size: 17px;
  font-weight: 800;
  text-align: center;
}

.results-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.results-list li {
  position: relative;
  padding-left: 18px;
  color: #1d1017;
  font-size: 16px;
  line-height: 1.7;
}

.results-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: #000000 !important;
  font-size: 12px;
  font-weight: 400;
}

.slider-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.slider-track::-webkit-scrollbar {
  display: none;
}

.cases-lead {
  margin: 0 0 16px;
  padding: 16px 14px;
  border-radius: 22px;
  background: transparent;
  color: #2a1821;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.65;
  text-align: left;
}

.paid-block {
  margin-bottom: var(--section-gap);
  padding: 12px;
  border-radius: 28px;
  background: #f6efe9;
  box-shadow: none;
}

.paid-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 0;
  margin-bottom: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.paid-gallery::-webkit-scrollbar {
  display: none;
}

.paid-gallery-meta {
  display: flex;
  justify-content: center;
  margin-top: 0;
  margin-bottom: var(--section-gap);
}

.paid-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.paid-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.paid-dot.active {
  background: #f6efe9;
  transform: scale(1.15);
}

.paid-shot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: none;
  scroll-snap-align: start;
  object-fit: initial;
  object-position: initial;
}

.case-card {
  position: relative;
  scroll-snap-align: start;
  overflow: hidden;
  padding: 18px 14px;
  border-radius: 22px;
}

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


.case-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 12px;
  background: rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 800;
}

.case-avatar-image {
  display: block;
  width: 84px;
  height: 84px;
  margin: 0 auto 12px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.case-name,
.case-niche {
  text-align: center;
}

.case-name {
  font-size: 18px;
}

.case-niche {
  margin-top: 4px;
  font-size: 12px;
  opacity: 0.9;
}

.case-sep {
  height: 1px;
  margin: 14px 0;
  background: rgba(255, 255, 255, 0.3);
}

.case-label {
  margin-top: 12px;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.case-text,
.case-result {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
}

.case-note {
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.5;
  opacity: 0.88;
}

.case-proof-grid {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.case-proof-image {
  display: block;
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.14);
}


.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 6px 0 var(--section-gap);
}

#tarifs {
  margin-top: 0;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(243, 50, 131, 0.24);
  cursor: pointer;
}

.dot.active {
  background: var(--color-primary);
  transform: scale(1.15);
}

.metrics-card {
  padding: 18px;
  background: var(--color-offwhite);
  border: 1px solid rgba(243, 50, 131, 0.18);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.metrics-grid div {
  padding: 12px 10px;
  border-radius: 18px;
  background: #f5eff4;
  text-align: center;
}

.metrics-grid strong {
  display: block;
  color: var(--color-primary);
  font-size: 20px;
  margin-bottom: 6px;
}

.metrics-grid span {
  display: block;
  font-size: 10px;
  line-height: 1.45;
}

.tarif-card {
  position: relative;
  display: grid;
  gap: 12px;
  align-content: start;
  text-align: left;
}

.tarif-name {
  font-size: 20px;
  line-height: 1.3;
}

.tarif-sub {
  margin-top: -6px;
  margin-bottom: 0;
  font-size: 13px;
  opacity: 0.9;
}

.tarif-card .arrow-list {
  margin: 0;
}

.tarif-card .arrow-list li {
  padding-left: 26px;
  line-height: 1.7;
}

.tarif-card .arrow-list li::before {
  left: 4px;
}

.tarif-italic {
  margin-top: 0;
  padding: 14px 12px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 18px;
  font-size: 12px;
  line-height: 1.6;
  font-style: italic;
  opacity: 0.9;
}

.tarif-duration {
  margin-top: 0;
  font-size: 12px;
  font-weight: 700;
}

.tarif-bonus {
  margin-top: -2px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.6;
}

.secondary-btn {
  margin-top: 4px;
  background: #f5eff4;
  color: var(--color-primary);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(243, 50, 131, 0.15);
}

.tarif-card-hit {
  margin-top: 22px;
}

.tarif-hit {
  position: absolute;
  top: -12px;
  left: 20px;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  background: var(--color-light);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-card {
  padding: 18px;
  background: #fff0f5;
  border: 1px solid rgba(243, 50, 131, 0.18);
  box-shadow: var(--shadow-soft);
}

.review-card span {
  display: inline-block;
  margin-top: 12px;
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-gallery {
  display: grid;
  gap: 12px;
}

.review-shot {
  display: block;
  width: 100%;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

#reviews .review-gallery {
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

#reviews .review-shot {
  box-shadow: none;
}


.faq-item {
  border-bottom: 1px solid rgba(243, 50, 131, 0.18);
}

#faq .faq-item {
  border-radius: 22px;
  border: 1px solid rgba(243, 50, 131, 0.2);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0 14px;
  margin-bottom: 10px;
}

#faq .section-title {
  font-family: 'NEVDUPLENYSH', 'Montserrat', sans-serif;
  color: var(--color-primary);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  color: var(--color-black);
  text-align: left;
  cursor: pointer;
}

.faq-q span:first-child {
  color: var(--color-black);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  font-family: 'NEVDUPLENYSH', 'Montserrat', sans-serif;
}

.faq-icon {
  color: var(--color-primary);
  font-size: 24px;
  line-height: 1;
  transition: transform 0.22s ease;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  color: var(--color-black);
  transition: max-height 0.28s ease, padding-bottom 0.28s ease;
}

.faq-a.open {
  max-height: 220px;
  padding-bottom: 18px;
}

.faq-icon.open {
  transform: rotate(45deg);
}

.contact-btn {
  margin-bottom: 12px;
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-strong);
}

.footer {
  margin-top: 20px;
  text-align: center;
  color: var(--color-black);
}

@media (max-width: 360px) {
  .v5-name {
    font-size: 34px;
  }

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