/* ============================================
   GROW UP — MAIN STYLES
   Mobile-first | Dark theme default
   Шрифты: Bebas Neue (заголовки) + Gilroy (body)
   ============================================ */

/* --- Utility --- */
.nowrap { white-space: nowrap; }

/* --- Font Face --- */
@font-face {
  font-family: 'Bebas Neue';
  src: url('../assets/fonts/BebasNeue-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../assets/fonts/Gilroy-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../assets/fonts/Gilroy-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../assets/fonts/Gilroy-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../assets/fonts/Gilroy-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../assets/fonts/Gilroy-Extrabold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* --- CSS Custom Properties --- */
:root,
[data-theme="dark"] {
  --bg: #0D0C0B;
  --bg-card: #171614;
  --border: #2A2825;
  --text-primary: #F2EDE8;
  --text-secondary: #9A9088;
  --text-muted: #5C5550;
  --accent: #E8651A;
  --accent-hover: #F07535;
  --accent-active: #C9530F;
}

[data-theme="light"] {
  --bg: #FAF7F4;
  --bg-card: #F0EAE3;
  --border: #DDD4CC;
  --text-primary: #1A1510;
  --text-secondary: #6B5F58;
  --text-muted: #A89E98;
  --accent: #E8651A;
  --accent-hover: #F07535;
  --accent-active: #C9530F;
}

/* --- Reset --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Плавная смена темы — только на ключевых элементах */
body,
.hero,
.hero::before,
.theme-toggle,
.hero-title,
.hero-subtitle,
.hero-bottom,
.hero-highlight,
.hero-next,
.hero-bullets .bullet-success span {
  transition: background-color 0.4s ease, color 0.4s ease;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  background: var(--bg);
  color: var(--text-primary);
  overflow-x: clip;
  overscroll-behavior-y: none;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.3s ease, color 0.3s ease;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  -webkit-user-drag: none;
  user-select: none;
}

a, button {
  touch-action: manipulation;
}

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

ul {
  list-style: none;
}


/* ============================================
   СЕКЦИЯ 1: HERO
   100vh fallback + 100dvh for mobile browsers
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: calc(env(safe-area-inset-top, 12px) + 8px) 16px calc(env(safe-area-inset-bottom, 6px) + 4px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
  overflow: clip;
}

/* Мягкая оранжевая тень сверху */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(
    180deg,
    rgba(232, 101, 26, 0.08) 0%,
    rgba(232, 101, 26, 0.03) 50%,
    transparent 100%
  );
  z-index: 0;
  pointer-events: none;
}


.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: radial-gradient(ellipse 90% 60% at 50% 100%, rgba(232, 101, 26, 0.1), transparent 75%);
  z-index: 0;
  pointer-events: none;
}

/* --- Theme Toggle --- */

.theme-toggle {
  position: fixed;
  bottom: 20px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  backdrop-filter: blur(24px) saturate(1.4);
  color: rgba(255, 255, 255, 0.5);
  z-index: 999;
  transition: background 0.3s ease, border-color 0.3s ease, bottom 0.4s ease, width 0.4s ease, height 0.4s ease;
}

[data-theme="light"] .theme-toggle {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.12);
  color: var(--text-secondary);
}

[data-theme="dark"] .icon-toggle-light { display: none; }
[data-theme="light"] .icon-toggle-dark { display: none; }


/* ============================================
   HERO CONTENT — Text always above visual
   ============================================ */

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-top: 12px;
  text-align: center;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(19px, 5.7vw, 28px);
  line-height: 1;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.2px;
  text-align: center;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 14px 22px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;                  /* одинаковый отступ между всеми 3 линиями */
}

.title-accent {
  display: inline-block;
  color: var(--text-primary);
  white-space: nowrap;
  font-family: 'Oswald', 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 30px; /* стартовое — JS подгонит под ширину .title-sub */
  letter-spacing: 0;
  line-height: 1;
}

.title-sub {
  display: inline-block;
  white-space: nowrap;
  font-family: 'Oswald', 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: clamp(19px, 5.5vw, 27px);
  letter-spacing: 0;
  line-height: 1;
  background: linear-gradient(90deg, #E8651A, #F5923A, #E8651A, #C9530F, #E8651A);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: growupShimmer 5s ease-in-out infinite;
}

.hero-subtitle {
  font-family: 'Gilroy', sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 3.9vw, 17px);
  line-height: 1.4;
  color: var(--text-primary);
  margin-top: 10px;             /* тот же gap что между линиями 1 и 2 */
  text-align: center;
  white-space: nowrap;
  margin-left: auto;
  margin-right: auto;
}

.growup-grow,
.growup-up {
  display: inline-block;
  font-family: 'Gilroy', sans-serif;
  font-weight: 800;
  background: linear-gradient(90deg, #F2EDE8, #FFFFFF, #D4CEC8, #FFFFFF, #F2EDE8);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: growupWhiteShimmer 5s ease-in-out infinite;
}

.growup-up { animation-delay: -2.5s; }

[data-theme="light"] .growup-grow,
[data-theme="light"] .growup-up {
  background: linear-gradient(90deg, #1A1510, #3A3530, #1A1510, #2A2520, #1A1510);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes growupWhiteShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes growupBlink {
  0%, 70%, 100% { color: var(--text-primary); }
  20%           { color: var(--accent); }
}


/* ============================================
   HERO VISUAL — Layered Animation
   flex: 1 fills remaining space, centered
   ============================================ */

.hero-visual {
  position: relative;
  z-index: 1;
  flex: 1;
  width: 100%;
  max-width: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -1px auto 0;
  transform: scale(1.15) translateY(-15px);
}

/* --- Orange Glow (hides PNG edges) --- */
.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140%;
  height: 140%;
  transform: translate(-50%, -50%);
  z-index: 0;
  background: radial-gradient(
    circle,
    rgba(232, 101, 26, 0.55) 0%,
    rgba(232, 101, 26, 0.3) 30%,
    rgba(232, 101, 26, 0.12) 55%,
    transparent 75%
  );
  filter: blur(80px);
  pointer-events: none;
}

/* --- All layers: absolute, centered via translateX --- */
.layer {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  will-change: transform;
}

.layer img {
  display: block;
  width: 100%;
  height: auto;
}

/* --- CLOUDS-BACK (z-index: 0) — самый задний, за чемоданом --- */
.layer.clouds-back {
  z-index: 0;
  width: 120%;
  top: 5%;
  opacity: 0.45;
  animation: cloudsMove 30s ease-in-out infinite reverse;
}

/* --- CLOUDS-LEFT (z-index: 0) — левая сторона, самый задний --- */
.layer.clouds-left {
  z-index: 0;
  width: 70%;
  left: 10%;
  bottom: 35%;
  opacity: 0.4;
  transform: translateX(-50%) scaleX(-1);
  animation: cloudsMove 26s ease-in-out infinite;
}

/* --- SUITCASE (z-index: 1) --- */
.layer.suitcase {
  z-index: 1;
  width: 80%;
  max-width: 420px;
  animation: float 7s ease-in-out infinite;
}

/* --- BADGE (z-index: 2) — поверх чемодана --- */
.layer.badge {
  z-index: 2;
  width: 22%;
  bottom: 44%;
  left: 72%;
  animation: badgeFloat 4s ease-in-out infinite, badgePulse 3s ease-in-out infinite;
}

/* --- CLOUDS (z-index: 3) — поверх чемодана и badge --- */
.layer.clouds {
  z-index: 3;
  width: 110%;
  top: 5%;
  opacity: 0.7;
  animation: cloudsMove 24s ease-in-out infinite;
}

/* --- PLANE (z-index: 4) — самый верхний слой --- */
.layer.plane {
  z-index: 4;
  width: 35%;
  top: 15%;
  animation: planeFly 18s linear infinite;
}


/* ============================================
   KEYFRAMES
   ============================================ */

/* Suitcase: gentle premium float */
@keyframes float {
  0%   { transform: translateX(-50%) translateY(-40px); }
  50%  { transform: translateX(-50%) translateY(-54px); }
  100% { transform: translateX(-50%) translateY(-40px); }
}

/* Clouds: slow horizontal drift */
@keyframes cloudsMove {
  0%   { transform: translateX(-50%) translateX(0); }
  50%  { transform: translateX(-50%) translateX(-20px); }
  100% { transform: translateX(-50%) translateX(0); }
}

/* Plane: soft arc trajectory */
@keyframes planeFly {
  0%   { transform: translateX(-50%) translate(0, 0); }
  25%  { transform: translateX(-50%) translate(30px, -20px); }
  50%  { transform: translateX(-50%) translate(50px, 0); }
  75%  { transform: translateX(-50%) translate(30px, 20px); }
  100% { transform: translateX(-50%) translate(0, 0); }
}

/* Badge: gentle float */
@keyframes badgeFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-5px); }
}

/* Badge: soft glow pulse — subtle, not distracting */
@keyframes badgePulse {
  0%, 100% {
    opacity: 0.8;
    filter: drop-shadow(0 0 4px rgba(232, 101, 26, 0.3));
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(232, 101, 26, 0.6));
  }
}


/* ============================================
   BOTTOM ZONE — Bullets + highlight + scroll
   ============================================ */

.hero-bottom {
  position: relative;
  z-index: 10;
  width: 100%;
  text-align: center;             /* остальные элементы по центру */
  padding-bottom: 6px;
  margin-top: -70px;
}

.hero-bottom .hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: -60px;
  margin-bottom: 10px;
  padding-left: 16px;
  text-align: left;               /* только буллиты по левому краю */
}

.hero-bottom .hero-bullets .bullet-success {
  align-items: center;
  gap: 10px;
}

.hero-bottom .hero-bullets .bullet-success iconify-icon {
  width: 22px;
  height: 22px;
  font-size: 22px;
  margin-top: 0;
  flex-shrink: 0;
}

.hero-bottom .hero-bullets .bullet-success span {
  font-family: 'Oswald', 'Bebas Neue', sans-serif;
  font-weight: 600;
  font-size: clamp(13px, 3.8vw, 15px);
  line-height: 1.3;
  letter-spacing: 0.3px;
  color: var(--text-primary);
  white-space: nowrap;
}

.hero-bottom .hero-bullets .bullet-success span strong {
  font-weight: 700;
  color: var(--text-primary);
}

[data-theme="light"] .hero-bottom .hero-bullets .bullet-success span,
[data-theme="light"] .hero-bottom .hero-bullets .bullet-success span strong {
  color: #000;
  text-shadow: none;
}

.hero-highlight {
  font-family: 'Gilroy', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 18px;
}

.hero-highlight-accent {
  color: var(--accent);
  font-weight: 800;
}

/* Градиент-переливание на «Grow Up» — два оттенка оранжевого */
.hero-growup-shimmer {
  background: linear-gradient(90deg, #E8651A, #F5923A, #E8651A, #C9530F, #E8651A);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: growupShimmer 5s ease-in-out infinite;
}

@keyframes growupShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-highlight-sub {
  font-family: 'Gilroy', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.hero-next {
  font-family: 'Gilroy', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--text-primary);
  margin-top: 6px;
}

/* --- Scroll Indicator --- */
.scroll-indicator {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  color: var(--accent);
  filter: drop-shadow(0 6px 14px rgba(232, 101, 26, 0.5));
  animation: scrollBounce 1.4s ease-in-out infinite;
}

.scroll-indicator .arrow-top {
  font-size: 44px;
  opacity: 1;
}

.scroll-indicator .arrow-bottom {
  font-size: 34px;
  margin-top: -16px;
  opacity: 0.65;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(10px); }
}


/* ============================================
   СЕКЦИЯ 2: КЕЙС АЙНУРЫ (ДО / ПОСЛЕ)
   ============================================ */

.case {
  position: relative;
  padding: 48px 16px 40px;
  max-width: 480px;
  margin: 0 auto;
  overflow: clip;
}

.case::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 100% 18% at 50% 0%, rgba(232, 101, 26, 0.14), transparent 90%);
}

/* --- Intro: карточка с фото + заголовок --- */
.case-intro {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding: 16px;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.case-photo-wrap {
  flex-shrink: 0;
  width: 85px;
  height: 105px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(232, 101, 26, 0.2);
}

.case-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-intro-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.case-title {
  font-family: 'Gilroy', sans-serif;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.25;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.case-title-accent {
  display: block;
  white-space: nowrap;
  background: linear-gradient(90deg, #E8651A, #F5923A, #E8651A, #C9530F, #E8651A);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: growupShimmer 5s ease-in-out infinite;
}

.case-title-line2 {
  display: block;
  white-space: nowrap;
}

.case-desc {
  font-family: 'Gilroy', sans-serif;
  font-weight: 400;
  font-size: clamp(12px, 3.2vw, 14px);
  line-height: 1.3;
  color: var(--text-primary);
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.case-desc-line {
  display: block;
  white-space: nowrap;
}

.case-desc strong {
  color: var(--text-primary);
  font-weight: 700;
}

/* --- Единая карточка ДО/ПОСЛЕ --- */
.case-card {
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 24px 18px;
}

/* --- Метки ДО / ПОСЛЕ --- */
.case-label {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-shadow:
    0.5px 0 0 currentColor,
    -0.5px 0 0 currentColor;
}

.case-label--do {
  color: var(--text-muted);
}

.case-label--posle {
  color: var(--accent);
}

/* --- Список --- */
.case-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.case-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Gilroy', sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.5;
  color: var(--text-primary);    /* белый в dark, тёмный в light */
}

.case-list li span {
  flex: 1;
  min-width: 0;
  color: var(--text-primary);
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
}

.case-list li iconify-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  font-size: 22px;
  margin-top: 2px;
  line-height: 1;
}

.case-list li strong {
  font-weight: 700;
  background: linear-gradient(90deg, #F2EDE8, #FFFFFF, #D4CEC8, #FFFFFF, #F2EDE8);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: growupWhiteShimmer 5s ease-in-out infinite;
}

[data-theme="light"] .case-list li strong {
  background: linear-gradient(90deg, #1A1510, #3A3530, #1A1510, #2A2520, #1A1510);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: growupWhiteShimmer 5s ease-in-out infinite;
}

/* --- Скриншоты-доказательства (справа снизу) --- */
.case-proof {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-top: 16px;
  justify-content: flex-end;
}

.case-proof picture {
  display: block;
}

.case-proof-chat {
  width: 53%;
}

.case-proof-bank {
  width: 47%;
}

.case-section-posle .case-proof-chat {
  width: 57%;
}

.case-section-posle .case-proof-bank {
  width: 53%;
}

.case-proof img {
  width: 100%;
  border-radius: 12px;
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(232, 101, 26, 0.15),
    0 0 60px rgba(232, 101, 26, 0.06);
}

/* --- Стрелки от чата к банку (ДО/ПОСЛЕ) --- */
.case-proof--do,
.case-proof--posle {
  position: relative;
}

.proof-arrow--do {
  animation: proofArrowSad 4s ease-in-out infinite;
}

@keyframes proofArrowSad {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50%      { transform: translateY(3px); opacity: 0.35; }
}

.proof-arrow {
  position: absolute;
  top: -10%;
  left: 45%;
  width: 55%;
  height: 70%;
  z-index: 2;
  pointer-events: none;
  animation: proofArrowFloat 3s ease-in-out infinite;
}

@keyframes proofArrowFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(4px); }
}

/* --- Разделитель ДО→ПОСЛЕ (изогнутая стрелка справа→влево) --- */
.case-divider {
  display: flex;
  justify-content: flex-start;
  padding-left: 22%;
  margin: 8px 0 4px;
  animation: caseArrowFloat 2.5s ease-in-out infinite;
}

.case-arrow-svg {
  width: 60px;
  height: 50px;
}

@keyframes caseArrowFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(5px); }
}

/* --- Извилистая декоративная стрелка (фон) --- */
.case-curve-arrow {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 200px;
  z-index: 0;
  opacity: 0.6;
  pointer-events: none;
}

.case-card {
  position: relative;
}

[data-theme="light"] .case-card {
  border-color: transparent;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .case-intro {
  border-color: transparent;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

/* --- Карусель Kaspi --- */
.case-kaspi {
  display: none;                     /* скрыто по запросу пользователя */
  margin-top: 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.case-kaspi::-webkit-scrollbar {
  display: none;
}

.case-kaspi-track {
  display: flex;
  gap: 10px;
  padding-bottom: 4px;
}

.case-kaspi-card {
  flex-shrink: 0;
  width: 60%;
}

.case-kaspi-card img {
  width: 100%;
  border-radius: 14px;
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.3),
    0 0 16px rgba(232, 101, 26, 0.08);
}

.case-kaspi {
  border-radius: 16px;
}

[data-theme="light"] .case-kaspi-card img {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}


/* ============================================
   СЕКЦИЯ 3: ЭКСПЕРТ + ПРОБЛЕМЫ
   ============================================ */

.expert {
  position: relative;
  padding: 32px 16px 60px;
  max-width: 480px;
  margin: 0 auto;
  isolation: isolate;
}

/* Мягкий оранжевый туман на фоне — сверху И снизу для бесшовных стыков */
.expert::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 40% at 50% 25%, rgba(232, 101, 26, 0.07), transparent 70%),
    radial-gradient(ellipse 70% 50% at 20% 60%, rgba(232, 101, 26, 0.05), transparent 75%),
    radial-gradient(ellipse 28% 8% at 72% 96%, rgba(232, 101, 26, 0.10), transparent 70%),
    radial-gradient(ellipse 22% 7% at 20% 94%, rgba(232, 101, 26, 0.08), transparent 70%),
    radial-gradient(ellipse 20% 9% at 48% 98%, rgba(232, 101, 26, 0.06), transparent 70%);
}

/* --- Фото + имя (стиль референса: инлайн-история) --- */
.expert-intro {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  text-align: left;
}

.expert-intro-text {
  flex: 1;
  min-width: 0;
}

.expert-photo-wrap {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  border-radius: 20px;
  overflow: hidden;
  animation: expertGlow 3s ease-in-out infinite;
}

@keyframes expertGlow {
  0%, 100% {
    box-shadow:
      0 4px 16px rgba(0, 0, 0, 0.4),
      0 0 12px rgba(232, 101, 26, 0.12);
  }
  50% {
    box-shadow:
      0 4px 20px rgba(0, 0, 0, 0.4),
      0 0 28px rgba(232, 101, 26, 0.38);
  }
}

.expert-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.expert-story {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-primary);
  text-align: left;
}

.expert-name-inline {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 5vw, 21px);
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display: block;
  margin-bottom: 6px;
}

.expert-highlight {
  color: var(--accent);
  font-weight: 700;
}

/* --- Проблемы --- */
.expert-problems {
  margin-top: 24px;
}

.expert-problems-title {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 4.1vw, 20px);
  line-height: 1.15;
  color: var(--text-primary);
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0;
  white-space: nowrap;
  padding: 0 12px;
}

.expert-problems-sub {
  font-family: 'Gilroy', sans-serif;
  font-weight: 400;
  font-size: 17px;
  color: var(--text-primary);
  text-align: center;
  margin-top: 4px;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  margin-top: 10px;
  opacity: 0;
  transform: translateX(-100%) scale(0.95);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  animation: problemFloat 8s ease-in-out infinite;
}

.problem-card:nth-child(2) {
  transition-delay: 0.25s;
}

.problem-card:nth-child(3) {
  transition-delay: 0.5s;
}

.problem-card.is-visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}

@keyframes problemFloat {
  0%, 100% { transform: translateX(0); }
  25%      { transform: translateX(2px); }
  75%      { transform: translateX(-2px); }
}

.problem-label {
  font-family: 'Gilroy', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.problem-text {
  font-family: 'Gilroy', sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.4;
  color: var(--text-primary);
  white-space: normal;
  margin-top: 4px;
}

/* --- Переход --- */
.expert-transition {
  font-family: 'Gilroy', sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 4.2vw, 17px);
  line-height: 1.35;
  color: var(--text-primary);
  text-transform: uppercase;
  text-align: center;
  margin-top: 20px;
  letter-spacing: 0.3px;
}

.text-accent {
  background: linear-gradient(90deg, #E8651A, #F5923A, #E8651A, #C9530F, #E8651A);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: growupShimmer 5s ease-in-out infinite;
}

.expert-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
  gap: -4px;
  animation: expertArrowBounce 2s ease-in-out infinite;
}

.expert-arrow iconify-icon {
  font-size: 20px;
  color: var(--accent);
  opacity: 0.5;
}

.expert-arrow .arrow-bottom {
  margin-top: -10px;
  opacity: 0.3;
}

@keyframes expertArrowBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(4px); }
}

/* Light theme */
[data-theme="light"] .problem-card {
  border-color: transparent;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .expert-photo-wrap {
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.1),
    0 0 16px rgba(232, 101, 26, 0.08);
}

/* ============================================
   СЕКЦИЯ 4: МЕХАНИЗМ — ШАГ 1
   ============================================ */

.step {
  position: relative;
  padding: 0 16px 60px;
  margin-top: -40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  isolation: isolate;
}

.step > .step-badge {
  margin-top: 0;
}

/* Туман на фоне — внутреннее свечение + оранжевые блики возле бейджа */
.step::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    /* Блики сверху возле бейджа */
    radial-gradient(ellipse 25% 8% at 80% 3%, rgba(232, 101, 26, 0.10), transparent 70%),
    radial-gradient(ellipse 22% 7% at 12% 5%, rgba(232, 101, 26, 0.08), transparent 70%),
    radial-gradient(ellipse 18% 10% at 85% 12%, rgba(232, 101, 26, 0.06), transparent 70%),
    /* Блики снизу — склеивают стык с следующей секцией */
    radial-gradient(ellipse 28% 8% at 75% 96%, rgba(232, 101, 26, 0.10), transparent 70%),
    radial-gradient(ellipse 22% 7% at 18% 94%, rgba(232, 101, 26, 0.08), transparent 70%),
    radial-gradient(ellipse 20% 9% at 50% 98%, rgba(232, 101, 26, 0.06), transparent 70%),
    /* Внутреннее свечение */
    radial-gradient(ellipse 70% 30% at 50% 14%, rgba(232, 101, 26, 0.05), transparent 70%),
    radial-gradient(ellipse 60% 40% at 90% 50%, rgba(232, 101, 26, 0.03), transparent 75%);
}

/* Дополнительные блобы — разные позиции для каждого шага */
.step::after {
  content: '';
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 101, 26, 0.10) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

#step-1::after {
  top: 6%;
  left: 5%;
}

#step-2::after {
  top: 4%;
  right: 3%;
  left: auto;
}

#step-3::after {
  top: 8%;
  left: 8%;
}

#step-3::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 25% 8% at 80% 3%, rgba(232, 101, 26, 0.10), transparent 70%),
    radial-gradient(ellipse 22% 7% at 12% 5%, rgba(232, 101, 26, 0.08), transparent 70%),
    radial-gradient(ellipse 18% 10% at 85% 12%, rgba(232, 101, 26, 0.06), transparent 70%),
    radial-gradient(ellipse 70% 30% at 50% 14%, rgba(232, 101, 26, 0.05), transparent 70%),
    radial-gradient(ellipse 60% 40% at 90% 50%, rgba(232, 101, 26, 0.03), transparent 75%);
}

.step .step-badge {
  margin-top: 40px;
}

/* Бейдж шага */
.step-badge {
  display: flex;
  width: fit-content;
  align-items: baseline;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(40, 22, 12, 0.85), rgba(28, 18, 12, 0.85));
  border: 1px solid rgba(232, 101, 26, 0.45);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(232, 101, 26, 0.15);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  backdrop-filter: blur(20px) saturate(1.4);
  margin: 0 auto 18px;
  text-align: center;
  position: sticky;
  top: 8px;
  z-index: 20;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: top center;
  will-change: transform, opacity;
}

.step-badge.is-stuck {
  transform: scale(0.85);
  opacity: 0.85;
}

.step-badge-num {
  font-family: 'Oswald', 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 4.4vw, 20px);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.step-badge-name {
  font-family: 'Oswald', 'Bebas Neue', sans-serif;
  font-weight: 600;
  font-size: clamp(14px, 4.4vw, 20px);
  color: #F2EDE8; /* всегда белый — бейдж имеет тёмный фон в любой теме */
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* Карточка шага */
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px 18px;
}

.step-text {
  font-family: 'Gilroy', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-primary);
  margin-top: 14px;
}

.step-text:first-child {
  margin-top: 0;
}

.step-intro {
  text-align: left;
  margin-top: 0;
}

.step-intro-block {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Step icons — muted, except lightbulb, result, and TPU target */
.step iconify-icon {
  opacity: 0.4;
}

.step .step-example-icon {
  opacity: 0.7;
}

.step .step-result-icon {
  opacity: 0.7;
}

.step .step-tpu-icon {
  opacity: 1;
}

.step .step-choices iconify-icon {
  opacity: 1;
}

.step .example-toggle iconify-icon,
.step iconify-icon.example-toggle-arrow,
.example-toggle-arrow {
  opacity: 1 !important;
  color: var(--accent) !important;
}

.step-intro-icon {
  flex-shrink: 0;
  font-size: 42px;
  color: var(--accent);
  filter: drop-shadow(0 0 12px rgba(232, 101, 26, 0.4));
  animation: stepIntroFloat 4s ease-in-out infinite;
}

@keyframes stepIntroFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

/* Точки после "миллионниках" — серые, оранжевый блик пробегает по очереди */
.step-dots {
  display: inline;
  margin-left: 1px;
}

.step-dot {
  display: inline-block;
  color: var(--text-primary);
}

/* Первая точка всегда видна, 2-я и 3-я появляются по очереди */
.step-dot:nth-child(1) { opacity: 1; }
.step-dot:nth-child(2) { animation: dotAppear 2s ease-in-out infinite; }
.step-dot:nth-child(3) { animation: dotAppear 2s ease-in-out 0.4s infinite; }

@keyframes dotAppear {
  0%, 30%  { opacity: 0; }
  50%, 80% { opacity: 1; }
  100%     { opacity: 0; }
}

.step-text strong {
  font-weight: 700;
  background: linear-gradient(90deg, #F2EDE8, #FFFFFF, #D4CEC8, #FFFFFF, #F2EDE8);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: growupWhiteShimmer 5s ease-in-out infinite;
}

[data-theme="light"] .step-text strong {
  background: linear-gradient(90deg, #1A1510, #3A3530, #1A1510, #2A2520, #1A1510);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: growupWhiteShimmer 5s ease-in-out infinite;
}

.step-pointer {
  font-weight: 500;
  text-align: left;
}

.step-pointer iconify-icon,
.step-intro-icon,
.step-tpu-icon,
.step-headline-icon,
.step-subhead-icon {
  display: none;
}

/* Подсветка ключевого тезиса */
.step-highlight {
  background: rgba(232, 101, 26, 0.06);
  border-left: 3px solid var(--accent);
  padding: 12px 14px;
  border-radius: 0 10px 10px 0;
  margin-top: 16px;
}

.step-accent {
  font-weight: 700;
  background: linear-gradient(90deg, #E8651A, #F5923A, #E8651A, #C9530F, #E8651A);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: growupShimmer 5s ease-in-out infinite;
}

/* Подчёркивание-волна под "внеконкурентное предложение" */
.step-underline-target {
  position: relative;
  display: inline-block;
}

.step-underline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  width: 100%;
  height: 10px;
  pointer-events: none;
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  opacity: 0;
}

.step-underline-target.is-drawn .step-underline {
  animation:
    stepUnderlineDraw 2s ease-out forwards,
    stepUnderlineFloat 5s ease-in-out 2s infinite;
  opacity: 1;
}

/* Второй хлыст ("сформированной потребностью") появляется после первого */
.step-underline-delay-2.is-drawn .step-underline {
  animation:
    stepUnderlineDraw 2s ease-out 1.5s forwards,
    stepUnderlineFloat 5s ease-in-out 3.5s infinite;
}

@keyframes stepUnderlineDraw {
  0%   { stroke-dashoffset: 220; opacity: 0; }
  15%  { opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 1; }
}

@keyframes stepUnderlineFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(1.5px); }
}

/* Список «и все говорят...» */
.step-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
  padding-left: 4px;
}

.step-list li {
  position: relative;
  font-family: 'Gilroy', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-primary);
  padding-left: 26px;
}

.step-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 10px;
  height: 6px;
  opacity: 0.7;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 8' fill='none'><path d='M1 4 L13 4 M10 1 L13 4 L10 7' stroke='%23E8651A' stroke-width='0.9' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
}

/* Картинки */
.step-image {
  display: block;
  margin: 18px auto 6px;
  border-radius: 14px;
  overflow: hidden;
}

/* Контейнер для картинки + накладок */
.step-image-wrap {
  position: relative;
  margin: 18px auto 6px;
  width: 80%;
}

.step-image-wrap .step-image {
  margin: 0 auto;
  width: 100%;
}

/* 2GIS — ещё уже */
.step-image-2gis {
  width: 78%;
}

/* Отзыв WhatsApp — компактнее */
.step-image-review {
  width: 72%;
}

/* Hand-drawn oval highlight on review screenshot */
.step-review-oval-wrap {
  position: relative;
}

.hand-drawn-oval {
  position: absolute;
  pointer-events: none;
  z-index: 5;
  top: 55%;
  left: 4%;
  width: 92%;
  height: 20%;
  overflow: visible;
  filter: drop-shadow(0 0 6px rgba(232, 101, 26, 0.4));
}

.hand-drawn-oval path {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  transition: none;
}

.step-review-oval-wrap.is-oval-drawn .hand-drawn-oval path {
  animation: drawOval 1.4s cubic-bezier(0.65, 0, 0.35, 1) 0.3s forwards;
}

@keyframes drawOval {
  to { stroke-dashoffset: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .step-review-oval-wrap.is-oval-drawn .hand-drawn-oval path {
    animation-duration: 0.01s;
    animation-delay: 0s;
  }
}

/* Hand-drawn oval for Step 2 chat screenshot */
.step-oval-2 .hand-drawn-oval {
  top: 72%;
  left: -2%;
  width: 104%;
  height: 30%;
}

/* Hand-drawn oval for Step 3 chat screenshot */
.step-oval-3 .hand-drawn-oval {
  top: 74%;
  left: -2%;
  width: 102%;
  height: 34%;
}

/* Чат шага 2 — без парения */
.step-image-chat {
  width: 82%;
}

.step-image-chat .step-image img {
  animation: none;
}

/* Чек Kaspi шага 3 */
.step-image-kaspi {
  width: 82%;
  margin-top: 12px;
}

/* Подзаголовок с иконкой */
.step-subhead {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.step-subhead-icon {
  flex-shrink: 0;
  font-size: 22px;
  color: var(--accent);
  filter: drop-shadow(0 0 6px rgba(232, 101, 26, 0.35));
}

.step-list-large li {
  font-size: 17px;
}

/* "И самое главное" — креативный inline-акцент (шаг 3) */
.step-main-line {
  margin-top: 18px;
  text-align: center;
  line-height: 1.5;
}

.step-main-line-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Oswald', 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 5.6vw, 26px);
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 8px;
}

.step-main-line-icon {
  font-size: 26px;
  color: var(--accent);
  filter: drop-shadow(0 0 8px rgba(232, 101, 26, 0.5));
  animation: stepAlarmShake 2.8s ease-in-out infinite;
}

@keyframes stepAlarmShake {
  0%, 90%, 100% { transform: rotate(0); }
  92%           { transform: rotate(-10deg); }
  94%           { transform: rotate(10deg); }
  96%           { transform: rotate(-8deg); }
  98%           { transform: rotate(6deg); }
}

.step-main-line-text {
  display: block;
  font-family: 'Gilroy', sans-serif;
  font-weight: 500;
  font-size: clamp(15px, 4.4vw, 17px);
  line-height: 1.45;
  color: var(--text-primary);
}

/* Стекание свечения по словам "ему нельзя откладывать" */
.step-shimmer {
  display: inline;
  white-space: nowrap;
}

.shimmer-word {
  display: inline-block;
  font-weight: 700;
  color: var(--text-primary);
  animation: shimmerWord 3.6s ease-in-out infinite;
}

.shimmer-word:nth-child(1) { animation-delay: 0s; }
.shimmer-word:nth-child(2) { animation-delay: 0.4s; }
.shimmer-word:nth-child(3) { animation-delay: 0.8s; }

@keyframes shimmerWord {
  0%, 50%, 100% {
    color: var(--text-primary);
    text-shadow: none;
  }
  15%, 25% {
    color: #FFFFFF;
    text-shadow: 0 0 10px rgba(242, 237, 232, 0.6);
  }
}

/* ЧТО ДАЁТ СИСТЕМА ТПУ? — заголовок внутри Шага 2 */
.step-tpu-benefits {
  margin-top: 20px;
}

.step-tpu-benefits-title {
  font-family: 'Oswald', 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.step-tpu-benefits .step-text + .step-text {
  margin-top: 12px;
}

#step-2 .step-tpu-benefits .step-text {
  font-size: 16px;
}

/* Финальный заголовок-результат (заменяет .step-result в Шагах 2 и 3) */
.step-result-block {
  margin-top: 22px;
  padding: 18px 0 18px 12px;
  background: rgba(232, 101, 26, 0.03);
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(232, 101, 26, 0.4), 0 0 24px rgba(232, 101, 26, 0.08);
}

.step-result-headline {
  font-family: 'Gilroy', sans-serif;
  font-weight: 800;
  font-size: clamp(18px, 5.2vw, 20px);
  color: var(--text-primary);
  text-transform: uppercase;
  text-align: center;
  margin-top: 16px;
  line-height: 1.2;
  padding: 0 4px;
}

/* Итог шага 3 — без оранжевого тинта (убираем оранжевую зону на стыке с Outcome) */
.step-result--3 {
  background: var(--bg-card);
}

/* Итог шага 3 — построчно с разделителями */
.step-result--3 .step-result-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.step-result--3 .step-result-text strong {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);   /* нейтральный серый разделитель */
  width: 100%;
}

.step-result-icon {
  font-size: 14px;
  color: var(--accent);
  vertical-align: -2px;
  filter: drop-shadow(0 0 6px rgba(232, 101, 26, 0.4));
}

.step-result-row {
  display: block;
  font-family: 'Gilroy', sans-serif;
  font-size: clamp(12px, 3.5vw, 15px);
  line-height: 1.45;
  color: var(--text-primary);
  white-space: nowrap;
  text-align: center;
}

.step-result-row .step-accent {
  color: transparent;
  background: linear-gradient(90deg, #F2EDE8, #FFFFFF, #D4CEC8, #FFFFFF, #F2EDE8);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  animation: growupWhiteShimmer 5s ease-in-out infinite;
}

.step-result-final .step-accent {
  background: linear-gradient(90deg, #E8651A, #F5923A, #E8651A, #C9530F, #E8651A);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: growupShimmer 5s ease-in-out infinite;
}

.step-result-final {
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  width: 100%;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(20px, 6.2vw, 28px);
  font-weight: 400;
  letter-spacing: 0.5px;
}

.step-result--3 .step-result-text strong {
  font-family: 'Oswald', 'Bebas Neue', sans-serif;
  font-size: clamp(24px, 6.5vw, 30px);
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

/* Главный заголовок внутри шага (Шаг 3) */
.step-headline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 4px 0 8px;
  text-align: left;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(20px, 5.6vw, 26px);
  line-height: 1.1;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.step-headline strong {
  font-weight: 400;
  color: var(--text-primary);
}

.step-headline-icon {
  flex-shrink: 0;
  font-size: 38px;
  color: var(--accent);
  filter: drop-shadow(0 0 10px rgba(232, 101, 26, 0.4));
  animation: stepHeadlineFloat 3.5s ease-in-out infinite;
}

@keyframes stepHeadlineFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-3px) rotate(-3deg); }
}

/* TPU label */
/* Блок ТПУ — иконка слева, текст справа в две строки */
.step-tpu-block {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(232, 101, 26, 0.04);
  border: 1px solid rgba(232, 101, 26, 0.15);
}

.step-tpu-icon {
  flex-shrink: 0;
  font-size: 22px;
  color: var(--accent);
  margin-top: 2px;
}

.step-tpu-text {
  font-family: 'Gilroy', sans-serif;
  line-height: 1.35;
  flex: 1;
  min-width: 0;
}

.step-tpu-line-1 {
  font-size: 13px;
  color: var(--text-primary);
  font-weight: 500;
}

.step-tpu-line-2 {
  font-size: clamp(13px, 3.8vw, 16px);
  color: var(--text-primary);
  font-weight: 700;
  margin-top: 2px;
}

.step-tpu-label {
  font-style: italic;
  color: var(--text-primary);
  margin-top: 16px;
  text-align: center;
  font-size: clamp(15px, 4.4vw, 17px);
  white-space: nowrap;
}

.step-tpu-arrow {
  color: var(--accent);
  font-style: italic;
  font-weight: 600;
}

.step-result-line {
  display: inline-block;
  white-space: nowrap;
  font-size: clamp(11px, 3.1vw, 14px);
}

.step-question {
  text-align: center;
  font-size: clamp(13px, 3.7vw, 16px);
}

.step-question span {
  display: block;
  white-space: nowrap;
}

.step-list-bullets {
  margin-top: 8px;
  padding-left: 8px;
}

.step-list-bullets li {
  font-size: 14px;
  color: var(--text-primary);
}

.step-list-bullets li strong {
  font-weight: 800;
  background: linear-gradient(90deg, #F2EDE8, #FFFFFF, #E8E0D8, #FFFFFF, #F2EDE8);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: growupWhiteShimmer 5s ease-in-out infinite;
}

[data-theme="light"] .step-list-bullets li strong {
  background: linear-gradient(90deg, #1A1510, #3A3530, #1A1510, #2A2520, #1A1510);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Сравнение ДО / ПОСЛЕ */
.step-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.step-compare-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.step-compare-label {
  font-family: 'Gilroy', sans-serif;
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 999px;
}

.step-compare-label--do {
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.step-compare-label--after {
  color: var(--accent);
  background: rgba(232, 101, 26, 0.08);
  border: 1px solid rgba(232, 101, 26, 0.3);
}

.step-compare-img {
  width: 100%;
  display: block;
}

.step-compare-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.3),
    0 0 18px rgba(232, 101, 26, 0.10);
  animation: stepImageFloat 6s ease-in-out infinite;
}

.step-compare-item:nth-child(2) .step-compare-img img {
  animation-delay: -3s;
}

/* Hand-drawn oval for 2GIS screenshot — over "Места NNN" badge (top-right) */
.step-oval-2gis .hand-drawn-oval {
  top: 13%;
  left: 71%;
  width: 38%;
  height: 22%;
}

.step-oval-2gis .hand-drawn-oval path {
  stroke-width: 1.5;
}

.step-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(232, 101, 26, 0.15),
    0 0 60px rgba(232, 101, 26, 0.06);
  animation: stepImageFloat 6s ease-in-out infinite;
}

.step-card > .step-image:nth-of-type(2) img { animation-delay: -2s; }
.step-card > .step-image:nth-of-type(3) img { animation-delay: -4s; }

@keyframes stepImageFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}

.step-image-caption {
  display: block;
  font-family: 'Gilroy', sans-serif;
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 6px;
  font-style: italic;
}

/* --- Example Accordion --- */

.example-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  margin: 12px auto 0;
  padding: 7px 28px;
  min-height: 38px;
  font-family: 'Gilroy', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--accent);
  background: transparent;
  border: 1.5px solid var(--accent);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}

.example-toggle.btn-nudge {
  animation: btnNudge 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

@keyframes btnNudge {
  0%   { transform: translateX(0); }
  15%  { transform: translateX(-3px); }
  30%  { transform: translateX(2px); }
  45%  { transform: translateX(-2px); }
  60%  { transform: translateX(1px); }
  100% { transform: translateX(0); }
}

.example-accordion {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.example-toggle:active {
  background: rgba(232, 101, 26, 0.15);
}

@media (hover: hover) {
  .example-toggle:hover {
    background: rgba(232, 101, 26, 0.08);
  }
}

.example-toggle-arrow {
  font-size: 18px;
  transition: transform 0.35s ease;
}

.example-accordion.is-open .example-toggle-arrow {
  transform: rotate(180deg);
}

.example-body {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease-in-out, opacity 0.35s ease-in-out;
}

.example-body-inner {
  padding-bottom: 8px;
}

.example-accordion.is-open .example-body {
  max-height: none;
  opacity: 1;
  overflow: visible;
}

/* Заголовок «Расскажу на примере» */
.step-example-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--text-primary);
  text-transform: uppercase;
  text-align: center;
  margin-top: 24px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.step-example-icon {
  font-size: 22px;
  color: var(--accent);
  opacity: 0.7;
  filter: drop-shadow(0 0 0px transparent);
  transition: opacity 0.4s ease, filter 0.4s ease;
}

.example-accordion.is-open .step-example-icon {
  opacity: 1;
  filter: drop-shadow(0 0 8px rgba(232, 101, 26, 0.7)) drop-shadow(0 0 20px rgba(232, 101, 26, 0.35));
}

/* Варианты выбора */
.step-choices {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.step-choices li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Gilroy', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
}

.choice-good {
  background: rgba(232, 101, 26, 0.05);
  border-color: rgba(232, 101, 26, 0.25);
  color: var(--text-primary);
}

.choice-good strong {
  font-weight: 800;
  background: linear-gradient(90deg, #F2EDE8, #FFFFFF, #E8E0D8, #FFFFFF, #F2EDE8);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: growupWhiteShimmer 5s ease-in-out infinite;
}

[data-theme="light"] .choice-good strong {
  background: linear-gradient(90deg, #1A1510, #3A3530, #1A1510, #2A2520, #1A1510);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: growupWhiteShimmer 5s ease-in-out infinite;
}

.step-choices li iconify-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  font-size: 18px;
  margin-top: 1px;
}

.step-obvious {
  text-align: center;
  font-weight: 600;
  margin-top: 14px;
}

/* Итог шага — badge + text, тонкая оранжевая обводка */
.step-result {
  margin-top: 22px;
  padding: 23px 19px; /* 24px 20px минус 1px border */
  max-width: 100%;
  box-sizing: border-box;
  text-align: left;
  word-wrap: break-word;
  overflow-wrap: break-word;
  background: rgba(232, 101, 26, 0.03);
  border: 1px solid rgba(232, 101, 26, 0.4);
  border-radius: 16px;
  box-shadow: 0 0 24px rgba(232, 101, 26, 0.08);
}

.step-result__badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(40, 22, 12, 0.85), rgba(28, 18, 12, 0.85));
  color: var(--accent);
  font-family: 'Oswald', 'Bebas Neue', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid rgba(232, 101, 26, 0.5);
  box-shadow: 0 0 12px rgba(232, 101, 26, 0.12);
  margin-bottom: 20px;
}

.step-result__text {
  color: var(--text-primary);
  font-family: 'Gilroy', sans-serif;
  font-size: clamp(15px, 4.1vw, 18px);
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

.step-result__text strong {
  color: var(--accent);
  font-weight: 700;
}

@media (min-width: 768px) {
  .step-result { padding: 31px 27px; }
  .step-result__badge { font-size: 17px; padding: 10px 22px; }
  .step-result__text { font-size: 20px; line-height: 1.45; }
}

@media (max-width: 360px) {
  .step-result { padding: 19px 15px; }
  .step-result__text { font-size: clamp(13px, 4.2vw, 16px); }
}

@media (max-width: 340px) {
  .step-result__text { font-size: 13px; }
}

/* Декоративная кривая стрелка от заголовка к итогу (от верх-лево к низ-право) */
.step-result-curve {
  position: absolute;
  inset: 12px 14px 14px 14px;
  width: auto;
  height: auto;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

.curve-line {
  stroke-dasharray: 480;
  stroke-dashoffset: 480;
}

.curve-tip {
  opacity: 0;
}

.curve-dot {
  opacity: 0;
}

.step-result--3.is-charged .curve-line {
  animation: chargeLine 2.4s ease-out forwards;
}

.step-result--3.is-charged .curve-tip {
  animation: chargeFade 0.4s ease-out 2.2s forwards;
}

.step-result--3.is-charged .curve-dot {
  animation: chargeFade 0.3s ease-out 0s forwards;
}

@keyframes chargeLine {
  0%   { stroke-dashoffset: 480; }
  100% { stroke-dashoffset: 0; }
}

@keyframes chargeFade {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

.step-result > .step-result-text {
  position: relative;
  z-index: 1;
}

.step-result-text {
  font-family: 'Gilroy', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-primary);
  text-align: center;
  text-wrap: pretty;
  text-wrap: balance;
}

.step-result-text strong {
  display: block;
  margin-bottom: 6px;
  font-weight: 800;
  color: var(--text-primary);
  text-transform: uppercase;
  font-size: clamp(10px, 3.1vw, 13px);
  letter-spacing: 0.3px;
  overflow-wrap: break-word;
}

/* Шаг 2 — заголовок итога крупнее (+4px) */
.step-result--2 .step-result-text strong {
  font-size: clamp(14px, 4.3vw, 17px);
}

/* ============================================
   ШАГ 1 — пропорциональное уменьшение ×0.82
   Только #step-1, другие шаги не затронуты
   ============================================ */
/* Step 1 typography — 5-level scale: H1(22) Lead(17) Body(15) Small(14) Caption(11) */
#step-1 { padding-bottom: 48px; }
#step-1 .step-card { padding: 18px 14px; }
/* Body — base text */
#step-1 .step-text { font-size: 15px; margin-top: 10px; line-height: 1.55; }
/* Lead — intro paragraph */
#step-1 .step-intro { font-size: 17px; text-align: left; color: var(--text-primary); font-weight: 500; line-height: 1.55; }
/* Small — bullet list */
#step-1 .step-list { gap: 6px; margin-top: 8px; }
#step-1 .step-list li { font-size: 15px; padding-left: 22px; color: var(--text-primary); }
/* Images */
#step-1 .step-image-wrap { margin: 12px auto 4px; }
#step-1 .step-image { margin: 12px auto 4px; }
#step-1 .step-image-2gis { width: 70%; }
#step-1 .step-image-review { width: 77%; }
/* Lead — highlight block */
#step-1 .step-highlight { padding: 10px 12px; margin-top: 12px; font-size: 17px; font-weight: 500; line-height: 1.55; }
/* Body — example title */
#step-1 .step-example-title { font-size: 17px; margin-top: 18px; }
#step-1 .step-example-icon { font-size: 18px; }
/* Body — accordion question */
#step-1 .step-question { font-size: 15px; line-height: 1.55; }
/* Small — choice cards */
#step-1 .step-choices { gap: 8px; margin-top: 10px; }
#step-1 .step-choices li { font-size: 14px; gap: 8px; }
#step-1 .step-choices li iconify-icon { width: 15px; height: 15px; font-size: 15px; }
/* Body — obvious */
#step-1 .step-obvious { margin-top: 10px; margin-bottom: 14px; font-size: 15px; }
/* Caption — image captions */
#step-1 .step-image-caption { font-size: 16px; margin-top: 8px; font-style: italic; opacity: 0.85; text-align: center; color: rgba(255,255,255,0.75); }
#step-1 > .step-card > .step-image { width: 98%; }
/* Lead — result block */
#step-1 .step-result { margin-top: 16px; }
#step-1 .step-pointer { font-size: 17px; }
#step-1 .step-pointer iconify-icon { font-size: 15px; }

/* ============================================
   ШАГ 2 + ШАГ 3 — unified 5-level font scale (same as Step 1)
   H1(22) Lead(17) Body(15) Small(14) Caption(11)
   ============================================ */
#step-2 { padding-bottom: 48px; }
#step-3 { padding-bottom: 24px; }
#step-2 .step-card,
#step-3 .step-card { padding: 18px 14px; }
/* Body — base text (13→15) */
#step-2 .step-text,
#step-3 .step-text { font-size: 15px; margin-top: 10px; line-height: 1.55; }
/* Lead — intro (14→17) */
#step-2 .step-intro,
#step-3 .step-intro { font-size: 17px; text-align: left; color: var(--text-primary); font-weight: 500; line-height: 1.55; }
/* Small — bullet lists (12→14) */
#step-2 .step-list,
#step-3 .step-list { gap: 6px; margin-top: 8px; }
#step-2 .step-list li,
#step-3 .step-list li { font-size: 15px; padding-left: 22px; color: var(--text-primary); }
/* Images */
#step-2 .step-image-wrap,
#step-3 .step-image-wrap { margin: 12px auto 4px; }
#step-2 .step-image,
#step-3 .step-image { margin: 12px auto 4px; }
#step-2 .step-image-chat,
#step-3 .step-image-chat { width: 74%; }
/* Lead — highlight (13→17) */
#step-2 .step-highlight { padding: 10px 12px; margin-top: 12px; font-size: 14px; font-weight: 500; line-height: 1.55; }
#step-3 .step-highlight { padding: 10px 12px; margin-top: 12px; font-size: 16px; font-weight: 500; line-height: 1.55; }
#step-2 .step-pointer,
#step-3 .step-pointer { font-size: 17px; }
#step-2 .step-pointer iconify-icon,
#step-3 .step-pointer iconify-icon { font-size: 15px; }
/* Lead — result */
#step-2 .step-result,
#step-3 .step-result { margin-top: 16px; }
/* Шаг 2 специфичные */
#step-2 .step-intro-icon { font-size: 34px; }
#step-2 .step-tpu-block { padding: 10px 12px; margin-top: 14px; }
#step-2 .step-tpu-icon { font-size: 18px; }
/* Body — TPU lines (11-13→14-15) */
#step-2 .step-tpu-line-1 { font-size: 14px; }
#step-2 .step-tpu-line-2 { font-size: 15px; }
/* Body — TPU label (12-14→15) */
#step-2 .step-tpu-label { font-size: 17px; margin-top: 12px; }
/* Small — bullet list (12→14) */
#step-2 .step-list-bullets li { font-size: 14px; }
#step-2 .step-compare { margin-top: 12px; gap: 8px; }
/* Шаг 3 специфичные */
#step-3 .step-headline { font-size: clamp(18px, 5vw, 22px); font-family: 'Oswald', sans-serif; font-weight: 700; text-align: left; text-transform: uppercase; margin: 2px 0 18px; }
#step-3 .step-headline-icon { font-size: 30px; }
#step-3 .step-text:not(.step-pointer):not(.step-highlight):not(.step-subhead):not(.step-main-line) { font-size: 17px; }
/* Body — subhead (16→17) */
#step-3 .step-subhead { margin-top: 14px; gap: 8px; font-size: 17px; }
#step-3 .step-subhead-icon { font-size: 18px; }
/* Small — large list (14→15) */
#step-3 .step-list-large li { font-size: 15px; }
#step-3 .step-main-line { margin-top: 14px; }
#step-3 .step-main-line-label { font-size: clamp(16px, 4.6vw, 22px); margin-bottom: 6px; }
#step-3 .step-main-line-icon { font-size: 22px; }
/* Body — result rows (11-13→15) */
#step-3 .step-result-row { font-size: 15px; }
#step-3 .step-result-final { font-size: clamp(18px, 5.5vw, 26px); margin-top: 6px; padding-top: 8px; }
#step-3 .step-result { padding: 18px 14px; }
#step-3 .step-result__text {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(17px, 5.5vw, 22px);
  text-align: left;
  line-height: 1.35;
  color: var(--text-primary);
  width: fit-content;
  margin: 0 auto;
}
.step-result-block .step-result__badge { margin-bottom: 10px; }

[data-theme="light"] .step-card {
  border-color: transparent;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .step-result-row .step-accent {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: var(--accent);
  color: var(--accent);
  animation: none;
}

/* ============================================
   ИТОГ ПО 3 ШАГАМ — секция .outcome
   ============================================ */
.outcome {
  position: relative;
  padding: 24px 10px 64px;
  max-width: 480px;
  margin: 0 auto;
  isolation: isolate;
}

/* ============================================
   СЕКЦИЯ: ВЫГЛЯДИТ ПРОСТО, НО...
   ============================================ */

.looks-simple {
  position: relative;
  padding: 48px 20px 40px;
  max-width: 480px;
  margin: 0 auto;
  isolation: isolate;
  overflow: hidden;
}

.looks-simple::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  bottom: 20%;
  right: -50px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 101, 26, 0.14) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.looks-simple::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse 90% 50% at 50% 0%, rgba(232, 101, 26, 0.1), transparent 75%);
}

.looks-simple-title {
  font-family: 'Oswald', 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 6.5vw, 30px);
  text-transform: uppercase;
  text-align: center;
  line-height: 1.15;
  letter-spacing: 0.3px;
  background: linear-gradient(90deg, #E8651A, #F5923A, #E8651A, #C9530F, #E8651A);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: growupShimmer 5s ease-in-out infinite;
}

.ls-dots-wrap {
  display: inline;
  margin-left: 1px;
  /* Override parent's gradient text — dots get their own color */
  -webkit-text-fill-color: #E8651A;
}

.ls-dot {
  display: inline-block;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ls-dot:nth-child(1) { opacity: 1; }
.ls-dot:nth-child(2) { animation: lsDotPulse 2.4s ease-in-out infinite; }
.ls-dot:nth-child(3) { animation: lsDotPulse 2.4s ease-in-out 0.5s infinite; }

@keyframes lsDotPulse {
  0%, 20%  { opacity: 0; }
  35%, 70% { opacity: 1; }
  85%, 100% { opacity: 0; }
}

.looks-simple-subtitle {
  font-family: 'Gilroy', sans-serif;
  font-weight: 600;
  font-size: clamp(12px, 3.4vw, 16px);
  color: var(--text-primary);
  text-align: center;
  margin-top: 12px;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.looks-simple-card {
  margin-top: 20px;
  padding: 24px 18px;
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid rgba(232, 101, 26, 0.25);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.looks-simple-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.looks-simple-num {
  font-family: 'Oswald', 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 0.9;
  background: linear-gradient(180deg, #F5923A, #E8651A);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
  min-width: 28px;
}

.looks-simple-text {
  font-family: 'Gilroy', sans-serif;
  font-weight: 400;
  font-size: clamp(13px, 3.6vw, 15px);
  line-height: 1.5;
  color: var(--text-primary);
}

.looks-simple-text .text-accent {
  font-weight: 800;
  background: linear-gradient(90deg, #F2EDE8, #FFFFFF, #E8E0D8, #FFFFFF, #F2EDE8);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: growupWhiteShimmer 5s ease-in-out infinite;
}

[data-theme="light"] .looks-simple-text .text-accent {
  background: linear-gradient(90deg, #1A1510, #3A3530, #1A1510, #2A2520, #1A1510);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.looks-simple-chat {
  margin-top: 24px;
  text-align: center;
}

.ls-chat-wrap {
  position: relative;
  display: inline-block;
  width: 68%;
}

.looks-simple-chat picture {
  display: block;
}

/* Hand-drawn oval for LooksSimple chat screenshot */
.step-oval-ls .hand-drawn-oval {
  top: 80%;
  left: -3%;
  width: 106%;
  height: 26%;
}

.looks-simple-chat img {
  width: 100%;
  border-radius: 16px;
  border: 1.5px solid rgba(232, 101, 26, 0.35);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(232, 101, 26, 0.12),
    0 0 60px rgba(232, 101, 26, 0.06);
}


/* ============================================
   СЕКЦИЯ: ВСЕ ОТВЕТЫ УЖЕ НАЙДЕНЫ
   ============================================ */

.all-answers {
  position: relative;
  padding: 48px 20px 40px;
  max-width: 480px;
  margin: 0 auto;
  isolation: isolate;
  overflow: hidden;
}

.all-answers::after {
  content: '';
  position: absolute;
  width: 130px;
  height: 130px;
  top: 40%;
  left: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 101, 26, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.all-answers::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 180px;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 50%, rgba(232, 101, 26, 0.14), transparent 70%);
  filter: blur(30px);
}

.all-answers-title {
  font-family: 'Oswald', 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 7vw, 34px);
  text-transform: uppercase;
  text-align: center;
  line-height: 1.1;
  letter-spacing: 0.3px;
  background: linear-gradient(90deg, #E8651A, #F5923A, #E8651A, #C9530F, #E8651A);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: growupShimmer 5s ease-in-out infinite;
}

.all-answers-subtitle {
  font-family: 'Oswald', 'Bebas Neue', sans-serif;
  font-weight: 600;
  font-size: clamp(14px, 4vw, 18px);
  text-transform: uppercase;
  color: var(--text-primary);
  text-align: center;
  margin-top: 10px;
  line-height: 1.3;
  letter-spacing: 0.2px;
}

.all-answers-list {
  margin-top: 24px;
  padding: 22px 16px;
  border-radius: 16px;
  border: 1px solid rgba(232, 101, 26, 0.12);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.all-answers-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.all-answers-num {
  font-family: 'Oswald', 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 10vw, 52px);
  line-height: 0.85;
  background: linear-gradient(180deg, #F5923A, #E8651A);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
  min-width: 34px;
  text-align: right;
}

.all-answers-text {
  font-family: 'Gilroy', sans-serif;
  font-weight: 400;
  font-size: clamp(13px, 3.6vw, 15px);
  line-height: 1.45;
  color: var(--text-primary);
  padding-top: 4px;
}

.all-answers-text .text-accent {
  font-weight: 800;
  background: linear-gradient(90deg, #F2EDE8, #FFFFFF, #E8E0D8, #FFFFFF, #F2EDE8);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: growupWhiteShimmer 5s ease-in-out infinite;
}

[data-theme="light"] .all-answers-text .text-accent {
  background: linear-gradient(90deg, #1A1510, #3A3530, #1A1510, #2A2520, #1A1510);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* ============================================
   СЕКЦИЯ: СКОЛЬКО ЭТО ДОЛЖНО СТОИТЬ?
   ============================================ */

.how-much {
  position: relative;
  padding: 48px 20px 40px;
  max-width: 480px;
  margin: 0 auto;
  overflow: hidden;
  isolation: isolate;
}

.how-much::before {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  top: 15%;
  left: -50px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 101, 26, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.how-much::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  bottom: 25%;
  right: -35px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 101, 26, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* Фоновое изображение — рука с монетой */
.how-much-bg {
  position: absolute;
  bottom: -10px;
  left: -30px;
  width: 180px;
  height: 180px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
  filter: blur(1px);
}

.how-much-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.how-much-title {
  position: relative;
  z-index: 1;
  font-family: 'Oswald', 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 6.5vw, 30px);
  text-transform: uppercase;
  text-align: center;
  line-height: 1.15;
  letter-spacing: 0.3px;
  background: linear-gradient(90deg, #E8651A, #F5923A, #E8651A, #C9530F, #E8651A);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: growupShimmer 5s ease-in-out infinite;
}

.how-much-subtitle {
  position: relative;
  z-index: 1;
  font-family: 'Gilroy', sans-serif;
  font-weight: 600;
  font-size: clamp(14px, 3.8vw, 17px);
  color: var(--text-primary);
  text-align: center;
  margin-top: 10px;
}

.how-much-card {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  padding: 20px 16px;
  border-radius: 16px;
  border: 1px solid rgba(232, 101, 26, 0.15);
  background: rgba(23, 22, 20, 0.65);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.how-much-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.how-much-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  font-size: 20px;
  color: var(--accent);
  opacity: 0.4;
  margin-top: 2px;
}

.how-much-text {
  font-family: 'Gilroy', sans-serif;
  font-weight: 400;
  font-size: clamp(13px, 3.6vw, 15px);
  line-height: 1.5;
  color: var(--text-primary);
}

.how-much-text .text-accent {
  font-weight: 800;
  background: linear-gradient(90deg, #F2EDE8, #FFFFFF, #E8E0D8, #FFFFFF, #F2EDE8);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: growupWhiteShimmer 5s ease-in-out infinite;
}

[data-theme="light"] .how-much-text .text-accent {
  background: linear-gradient(90deg, #1A1510, #3A3530, #1A1510, #2A2520, #1A1510);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

[data-theme="light"] .how-much-card {
  background: rgba(240, 234, 227, 0.75);
}

[data-theme="light"] .how-much-icon {
  opacity: 0.35;
}

.how-much-closing {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 28px;
}

.how-much-closing-text {
  font-family: 'Gilroy', sans-serif;
  font-weight: 600;
  font-size: clamp(15px, 4.2vw, 18px);
  color: var(--text-primary);
}

.how-much-closing-nums {
  font-family: 'Oswald', 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 7.5vw, 36px);
  text-transform: uppercase;
  line-height: 1.1;
  margin-top: 8px;
  background: linear-gradient(90deg, #E8651A, #F5923A, #E8651A, #C9530F, #E8651A);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: growupShimmer 5s ease-in-out infinite;
}


/* ============================================
   СЕКЦИЯ: СКОЛЬКО ЭТО БУДЕТ СТОИТЬ ДЛЯ ВАС?
   ============================================ */

.price-section {
  position: relative;
  padding: 48px 20px 60px;
  max-width: 480px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: -20px;
  z-index: 1;
}

.price-section::before {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  top: 10%;
  right: -50px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 101, 26, 0.14) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.price-section::after {
  content: '';
  position: absolute;
  width: 140px;
  height: 140px;
  bottom: 15%;
  left: -45px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 101, 26, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.price-title {
  display: inline-block;
  font-family: 'Oswald', 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: clamp(13px, 3.8vw, 17px);
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.3px;
  padding: 10px 24px;
  border-radius: 20px;
  border: 1px solid rgba(232, 101, 26, 0.3);
  background: rgba(232, 101, 26, 0.06);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: var(--accent);
  max-width: calc(100% - 32px);
  box-sizing: border-box;
}

.price-anchor {
  text-align: center;
  margin-top: 16px;
}

.price-anchor-text {
  font-family: 'Gilroy', sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 3.8vw, 16px);
  color: var(--text-primary);
  line-height: 1.5;
}

.price-anchor-sum {
  font-family: 'Oswald', 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 9vw, 42px);
  color: var(--text-primary);
  margin-top: 16px;
  letter-spacing: 0.5px;
}

.price-card {
  margin-top: 24px;
  padding: 22px 18px;
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border);
  text-align: center;
}

.price-card-header {
  font-family: 'Gilroy', sans-serif;
  font-weight: 700;
  font-size: clamp(13px, 3.5vw, 15px);
  color: var(--accent);
  text-transform: uppercase;
  line-height: 1.4;
}

.price-crossed {
  margin-top: 18px;
}

.price-crossed-sum {
  display: inline-block;
  font-family: 'Oswald', 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 8vw, 38px);
  color: var(--text-primary);
  position: relative;
}

/* SVG strikethrough line — animated */
.price-strike {
  position: absolute;
  top: 50%;
  left: -5%;
  width: 110%;
  height: 8px;
  transform: translateY(-50%);
  pointer-events: none;
}

.price-strike line {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 0.7s cubic-bezier(0.65, 0, 0.35, 1);
}

.price-card.is-struck .price-strike line {
  stroke-dashoffset: 0;
}

.price-card.is-struck .price-crossed--2 .price-strike line {
  transition-delay: 0.3s;
}

.price-crossed-label {
  display: block;
  font-family: 'Gilroy', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: var(--text-primary);
  margin-top: 4px;
  opacity: 0.75;
}

.price-final-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  margin-top: 24px;
  border-radius: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.price-final-link:active {
  transform: scale(0.98);
  transition: transform 0.12s ease;
}

@media (hover: hover) {
  .price-final-link:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 36px rgba(34, 197, 94, 0.5);
  }
}

.price-final-link .price-final {
  margin-top: 0;
}

.price-final {
  margin-top: 24px;
  padding: 20px 18px;
  background: linear-gradient(135deg, #22C55E, #16A34A);
  border-radius: 16px;
  text-align: center;
}

.price-final-sum {
  font-family: 'Oswald', 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: clamp(44px, 12vw, 56px);
  color: #fff;
  letter-spacing: 1px;
  line-height: 1;
}

.price-final-label {
  font-family: 'Gilroy', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 6px;
}

.price-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #22C55E, #16A34A);
  border-radius: 14px;
  color: #fff;
  font-family: 'Gilroy', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: filter 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.price-cta.btn-nudge {
  animation: btnNudge 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

.price-cta:active {
  filter: brightness(0.9);
}

.price-cta-icon {
  font-size: 22px;
  color: #fff;
}

.price-disclaimer {
  text-align: center;
  font-family: 'Gilroy', sans-serif;
  font-weight: 400;
  font-size: 11px;
  color: #FFFFFF;
  margin-top: 10px;
}


/* ============================================
   FLOATING WHATSAPP CTA
   ============================================ */

.floating-wa {
  position: fixed;
  z-index: 100;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  left: 16px;
  right: 68px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #22C55E, #16A34A);
  border-radius: 9999px;
  color: #fff;
  text-decoration: none;
  font-family: 'Gilroy', sans-serif;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.35);
  -webkit-tap-highlight-color: transparent;
  line-height: 0;
  /* Hidden by default */
  opacity: 0;
  pointer-events: none;
  transform: translateY(100px) scale(0.92);
}

.floating-wa-icon-wrap {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-wa-icon {
  font-size: 24px;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.floating-wa-icon--msg {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.floating-wa-icon--gift {
  opacity: 0;
  transform: scale(0.6) rotate(-20deg);
}

/* When in bonuses section */
.floating-wa.in-bonuses .floating-wa-icon--msg {
  opacity: 0;
  transform: scale(0.6) rotate(20deg);
}

.floating-wa.in-bonuses .floating-wa-icon--gift {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.floating-wa-text {
  white-space: nowrap;
  line-height: 1;
  transition: opacity 0.15s ease;
}

/* State: bar — bounce entrance */
.floating-wa.is-bar {
  pointer-events: auto;
  animation: slideUpBounce 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* After entrance done, switch to static positioning */
.floating-wa.is-bar.entrance-done {
  animation: none;
  opacity: 1;
  transform: translateX(0);
}

/* Periodic nudge to remind user */
.floating-wa.is-bar.entrance-done.wa-nudge {
  animation: waNudge 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

@keyframes waNudge {
  0%   { transform: translateX(0); }
  15%  { transform: translateX(-4px); }
  30%  { transform: translateX(3px); }
  45%  { transform: translateX(-2px); }
  60%  { transform: translateX(1px); }
  75%  { transform: translateX(-1px); }
  100% { transform: translateX(0); }
}

@keyframes slideUpBounce {
  0% {
    transform: translateY(100px) scale(0.92);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  70% {
    transform: translateY(-10px) scale(1.02);
    opacity: 1;
  }
  85% {
    transform: translateY(3px) scale(0.99);
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* State: bar exit (added via JS before switching to circle) */
.floating-wa.is-bar-exit {
  pointer-events: none;
  animation: slideDownFade 0.35s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes slideDownFade {
  0%   { transform: translateY(0) scale(1); opacity: 1; }
  100% { transform: translateY(60px) scale(0.9); opacity: 0; }
}

/* State: circle */
.floating-wa.is-circle {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  animation: circleEnter 0.45s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
  left: auto;
  right: 20px;
  width: 64px;
  min-width: 64px;
  max-width: 64px;
  height: 64px;
  min-height: 64px;
  max-height: 64px;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
  padding: 0;
}

@keyframes circleEnter {
  0%   { transform: scale(0.6); opacity: 0; }
  60%  { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

.floating-wa.is-circle .floating-wa-icon {
  font-size: 28px;
}

.floating-wa.is-circle .floating-wa-text {
  opacity: 0;
  width: 0;
  overflow: hidden;
  position: absolute;
}

/* Circle pulse */
.floating-wa.is-circle-idle {
  animation: waPulse 2s ease-in-out infinite;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(34, 197, 94, 0.35); }
  50%      { box-shadow: 0 6px 24px rgba(34, 197, 94, 0.6); }
}

/* Theme toggle: bar state — align beside capsule */
.theme-toggle.wa-bar-active {
  bottom: calc(17px + env(safe-area-inset-bottom, 0px));
  width: 48px;
  height: 48px;
}

/* Theme toggle: circle state — shift above WA circle */
.theme-toggle.wa-circle-active {
  bottom: calc(100px + env(safe-area-inset-bottom, 0px));
}

@media (prefers-reduced-motion: reduce) {
  .floating-wa.is-bar {
    animation: none;
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  .floating-wa.is-circle {
    animation: none;
  }
  .floating-wa.is-circle-idle {
    animation: none;
  }
}


/* ============================================
   СЕКЦИЯ: БОНУСЫ
   ============================================ */

.bonuses {
  position: relative;
  padding: 16px 20px 20px;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
  padding-top: 36px;
}

/* Scattered ambient orange glows */
.bonuses::before,
.bonuses::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.bonuses::before {
  width: 180px;
  height: 180px;
  top: 12%;
  left: -60px;
  background: radial-gradient(circle, rgba(232, 101, 26, 0.18) 0%, transparent 70%);
}

.bonuses::after {
  width: 140px;
  height: 140px;
  top: 55%;
  right: -45px;
  background: radial-gradient(circle, rgba(232, 101, 26, 0.14) 0%, transparent 70%);
}

.bonuses-cards::before,
.bonuses-cards::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.bonuses-cards {
  position: relative;
}

.bonuses-cards::before {
  width: 100px;
  height: 100px;
  bottom: 15%;
  left: -30px;
  background: radial-gradient(circle, rgba(232, 101, 26, 0.12) 0%, transparent 70%);
}

.bonuses-cards::after {
  width: 120px;
  height: 120px;
  top: 30%;
  right: -35px;
  background: radial-gradient(circle, rgba(232, 101, 26, 0.10) 0%, transparent 70%);
}

/* Gift icon */
.bonuses-gift {
  margin: 0 auto 8px;
}

.bonuses-gift picture img {
  width: 150px;
  height: 150px;
  margin: 0 auto;
  filter: drop-shadow(0 0 30px rgba(232, 101, 26, 0.35)) drop-shadow(0 0 60px rgba(232, 101, 26, 0.15));
  animation: giftFloat8 6s ease-in-out infinite;
}

@keyframes giftFloat8 {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(5px, -6px); }
  50%  { transform: translate(0, 0); }
  75%  { transform: translate(-5px, -6px); }
  100% { transform: translate(0, 0); }
}

.bonuses-pill {
  display: inline-block;
  font-family: 'Oswald', 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 4vw, 18px);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 6px 20px;
  border-radius: 9999px;
  border: 1.5px solid var(--accent);
  background: rgba(232, 101, 26, 0.08);
  color: var(--accent);
  max-width: calc(100% - 32px);
  box-sizing: border-box;
}

.bonuses-subtitle {
  font-family: 'Gilroy', sans-serif;
  font-weight: 600;
  font-size: clamp(12px, 3.3vw, 14px);
  color: var(--text-primary);
  margin-top: 8px;
  line-height: 1.4;
}

.bonuses-subtitle .text-accent {
  -webkit-text-fill-color: transparent;
}

.bonuses-cards {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.bonus-card {
  padding: 12px 16px;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid rgba(232, 101, 26, 0.2);
  text-align: left;
}

.bonus-num {
  font-family: 'Gilroy', sans-serif;
  font-weight: 800;
  font-size: 19px;
  color: var(--accent);
  text-transform: uppercase;
}

.bonus-icon {
  font-size: 18px;
  color: var(--accent);
  vertical-align: middle;
  margin-left: 4px;
  display: inline-block;
  animation: giftWiggle 4s ease-in-out infinite;
  transform-origin: center bottom;
}

.bonus-card:nth-child(2) .bonus-icon {
  animation-delay: 0.8s;
}

.bonus-card:nth-child(3) .bonus-icon {
  animation-delay: 1.6s;
}

@keyframes giftWiggle {
  0%, 100% { transform: rotate(0deg) scale(1); }
  15% { transform: rotate(-12deg) scale(1.1); }
  30% { transform: rotate(10deg) scale(1.15); }
  45% { transform: rotate(-8deg) scale(1.1); }
  55% { transform: rotate(0deg) scale(1); }
}

/* Clickable bonus cards */
a.bonus-card {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

a.bonus-card:active {
  transform: scale(0.98);
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(232, 101, 26, 0.2);
}

.bonus-name {
  font-family: 'Gilroy', sans-serif;
  font-weight: 700;
  font-size: clamp(12px, 3.2vw, 14px);
  color: var(--text-primary);
  margin-top: 2px;
  line-height: 1.3;
}

.bonus-desc {
  font-family: 'Gilroy', sans-serif;
  font-weight: 400;
  font-size: clamp(11px, 2.9vw, 12px);
  color: var(--text-primary);
  margin-top: 2px;
  line-height: 1.35;
}

.bonus-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.bonus-price-label {
  font-family: 'Gilroy', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--accent);
  text-transform: uppercase;
}

.bonus-price-sum {
  position: relative;
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-weight: 400;
  font-size: clamp(21px, 5.7vw, 27px);
  letter-spacing: 1.5px;
  color: var(--text-primary);
  display: inline-block;
}

.bonus-strike {
  position: absolute;
  top: 50%;
  left: -5%;
  width: 110%;
  height: 10px;
  transform: translateY(-50%);
  pointer-events: none;
}

.bonus-strike path {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  transition: stroke-dashoffset 0.7s cubic-bezier(0.65, 0, 0.35, 1);
}

.bonuses-cards.is-struck .bonus-strike path {
  stroke-dashoffset: 0;
}

.bonuses-cards.is-struck .bonus-card:nth-child(2) .bonus-strike path {
  transition-delay: 0.15s;
}

.bonuses-cards.is-struck .bonus-card:nth-child(3) .bonus-strike path {
  transition-delay: 0.3s;
}

.bonuses-total {
  font-family: 'Gilroy', sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 4.5vw, 20px);
  color: var(--text-primary);
  margin-top: 14px;
}

.bonuses-total-sum {
  position: relative;
  display: inline-block;
  font-weight: 700;
  color: var(--text-primary);
}

.bonuses.is-struck .bonuses-total-sum .bonus-strike path {
  stroke-dashoffset: 0;
  transition-delay: 0.5s;
}

.bonuses-total-free {
  font-weight: 800;
  font-size: 1.4em;
  background: linear-gradient(90deg, #E8651A, #F5923A, #E8651A);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: growupShimmer 5s ease-in-out infinite;
}


/* ============================================
   СЕКЦИЯ: ГАРАНТИЯ
   ============================================ */

.guarantee {
  position: relative;
  padding: 48px 20px 40px;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
}

/* Ambient orange glows */
.guarantee::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  top: 30%;
  left: -60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 101, 26, 0.16) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.guarantee::after {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  bottom: 20%;
  right: -50px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 101, 26, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.guarantee-title {
  position: relative;
  z-index: 2;
  font-family: 'Oswald', 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 8vw, 38px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  background: linear-gradient(90deg, #E8651A, #F5923A, #E8651A, #C9530F, #E8651A);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: growupShimmer 5s ease-in-out infinite;
}

.guarantee-shield-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -10px auto 0;
  width: 200px;
  height: 180px;
  z-index: 0;
}

.guarantee-shield-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 101, 26, 0.3) 0%, transparent 65%);
  z-index: 0;
  pointer-events: none;
}

.guarantee-shield {
  position: relative;
  z-index: 1;
  animation: shieldFloat 4s ease-in-out infinite;
}

.guarantee-shield img {
  width: 160px;
  height: auto;
}

@keyframes shieldFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

.guarantee-text {
  position: relative;
  z-index: 2;
  font-family: 'Gilroy', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 4vw, 17px);
  line-height: 1.55;
  color: var(--text-primary);
  max-width: 380px;
  margin: 0 auto;
}

.guarantee-text strong {
  font-weight: 700;
  color: var(--text-primary);
}

.guarantee-quote {
  position: relative;
  z-index: 2;
  font-family: 'Gilroy', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(13px, 3.6vw, 16px);
  line-height: 1.5;
  color: var(--text-primary);
  margin-top: 16px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-cta {
  position: relative;
  z-index: 2;
  margin-top: 20px;
}

.guarantee-quote .text-accent {
  font-weight: 800;
  font-style: normal;
  font-size: 1.3em;
  background: linear-gradient(90deg, #E8651A, #F5923A, #E8651A);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: growupShimmer 5s ease-in-out infinite;
}

/* Floating WA: Shield when in guarantee section */
.floating-wa-icon--shield {
  opacity: 0;
  transform: scale(0.6) rotate(-20deg);
}

.floating-wa.in-guarantee .floating-wa-icon--msg {
  opacity: 0;
  transform: scale(0.6) rotate(20deg);
}

.floating-wa.in-guarantee .floating-wa-icon--gift {
  opacity: 0;
  transform: scale(0.6) rotate(20deg);
}

.floating-wa.in-guarantee .floating-wa-icon--shield {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}


/* ============================================
   СЕКЦИЯ: FAQ
   ============================================ */

.faq {
  position: relative;
  padding: 32px 20px 40px;
  max-width: 480px;
  margin: 0 auto;
  overflow: hidden;
}

.faq::before {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  top: 20%;
  left: -55px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 101, 26, 0.14) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.faq::after {
  content: '';
  position: absolute;
  width: 140px;
  height: 140px;
  bottom: 25%;
  right: -45px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 101, 26, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.faq-fire {
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  height: auto;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
  filter: blur(1px);
}

.faq-bg-question {
  position: absolute;
  right: -40px;
  bottom: 60px;
  width: 220px;
  height: auto;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
  filter: blur(1px);
}

.faq-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
}

.faq-heading-image {
  display: block;
  width: auto;
  max-width: 168px;
  height: auto;
  object-fit: contain;
  margin: 0;
  padding: 0;
  animation: shieldFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 8px 24px rgba(232, 101, 26, 0.45)) drop-shadow(0 0 40px rgba(232, 101, 26, 0.2));
}

@media (min-width: 768px) {
  .faq-heading-image { max-width: 192px; }
}

.faq-title {
  font-family: 'Oswald', 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 6.5vw, 30px);
  text-transform: uppercase;
  text-align: center;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--text-primary);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}

/* Trigger */
.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 18px 20px;
  background: rgba(23, 22, 20, 0.7);
  border: 1.5px solid rgba(232, 101, 26, 0.4);
  border-radius: 16px;
  cursor: pointer;
  font-family: 'Gilroy', sans-serif;
  font-weight: 600;
  font-size: clamp(14px, 4vw, 17px);
  color: var(--text-primary);
  text-align: left;
  line-height: 1.3;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}

.faq-trigger:active {
  transform: scale(0.98);
}

.faq-trigger.faq-nudge {
  animation: faqNudge 0.6s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

@keyframes faqNudge {
  0%   { transform: translateX(0); box-shadow: 0 0 0 0 rgba(232, 101, 26, 0); }
  15%  { transform: translateX(-5px); box-shadow: 0 0 18px 2px rgba(232, 101, 26, 0.25); }
  30%  { transform: translateX(4px); box-shadow: 0 0 22px 3px rgba(232, 101, 26, 0.3); }
  45%  { transform: translateX(-3px); box-shadow: 0 0 14px 2px rgba(232, 101, 26, 0.2); }
  60%  { transform: translateX(2px); }
  100% { transform: translateX(0); box-shadow: 0 0 0 0 rgba(232, 101, 26, 0); }
}

.faq-item.is-open .faq-trigger {
  animation: none;
  border-color: rgba(232, 101, 26, 0.5);
  border-bottom-color: rgba(232, 101, 26, 0.5);
  box-shadow: 0 0 28px 4px rgba(232, 101, 26, 0.2);
  border-radius: 16px 16px 0 0;
}

.faq-chevron {
  font-size: 22px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.faq-answer-inner {
  position: relative;
  padding: 20px;
  background: rgba(10, 10, 14, 0.9);
  border: 1.5px solid rgba(232, 101, 26, 0.5);
  border-top: none;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), inset 0 -1px 0 rgba(232, 101, 26, 0.15);
}

.faq-answer-text {
  position: relative;
  z-index: 1;
}

.faq-answer-text p {
  font-family: 'Gilroy', sans-serif;
  font-weight: 400;
  font-size: clamp(13px, 3.6vw, 15px);
  line-height: 1.55;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.faq-answer-text p:last-child {
  margin-bottom: 0;
}

.faq-answer-text strong {
  font-weight: 700;
  color: var(--text-primary);
}

/* Decorative icons */
.faq-decor {
  position: absolute;
  display: flex;
  pointer-events: none;
  z-index: 0;
  animation: shieldFloat 4s ease-in-out infinite;
}

.faq-decor--top-right {
  top: 14px;
  right: 14px;
}

.faq-decor--bottom-right {
  bottom: 70px;
  right: 14px;
  animation-delay: 1.2s;
}

/* Carousel in FAQ answer 3 */
.faq-carousel {
  --faq-slide-height: 290px;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline-start: 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin: 16px 0 20px;
  padding: 4px 0;
}

@media (min-width: 768px) {
  .faq-carousel { --faq-slide-height: 360px; }
}

.faq-carousel::-webkit-scrollbar { display: none; }

.faq-carousel-track {
  display: flex;
  gap: 14px;
  padding: 0 20px;
  align-items: center;
  justify-content: flex-start;
}

.faq-carousel-slide {
  flex-shrink: 0;
  scroll-snap-align: start;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(232, 101, 26, 0.25);
  background: #0D0C0B;
  height: var(--faq-slide-height);
}

.faq-carousel-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.faq-carousel-hint {
  text-align: center;
  font-family: 'Gilroy', sans-serif;
  font-size: 12px;
  color: var(--accent);
  opacity: 0.65;
  margin-top: 6px;
  letter-spacing: 0.05em;
}

/* CTA inside FAQ */
.faq-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 20px;
  background: linear-gradient(135deg, #22C55E, #16A34A);
  border-radius: 14px;
  color: #fff;
  font-family: 'Gilroy', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
  -webkit-tap-highlight-color: transparent;
  transition: filter 0.2s ease;
}

.faq-cta:active {
  transform: scale(0.98);
}

.faq-cta-icon {
  font-size: 22px;
  color: #fff;
}

.faq-disclaimer {
  font-family: 'Gilroy', sans-serif;
  font-weight: 400;
  font-size: 11px;
  color: var(--text-primary);
  text-align: center;
  margin-top: 8px;
  opacity: 0.7;
}

/* Floating WA: HelpCircle when in FAQ section */
.floating-wa-icon--help {
  opacity: 0;
  transform: scale(0.6) rotate(-20deg);
}

.floating-wa.in-faq .floating-wa-icon--msg {
  opacity: 0;
  transform: scale(0.6) rotate(20deg);
}

.floating-wa.in-faq .floating-wa-icon--gift {
  opacity: 0;
  transform: scale(0.6) rotate(20deg);
}

.floating-wa.in-faq .floating-wa-icon--shield {
  opacity: 0;
  transform: scale(0.6) rotate(20deg);
}

.floating-wa.in-faq .floating-wa-icon--help {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}


/* Light theme overrides for FAQ + Guarantee + Footer */
[data-theme="light"] .faq-trigger {
  background: rgba(240, 234, 227, 0.8);
  border-color: rgba(232, 101, 26, 0.35);
  color: var(--text-primary);
}

[data-theme="light"] .faq-item.is-open .faq-trigger {
  border-color: rgba(232, 101, 26, 0.6);
}

[data-theme="light"] .faq-answer-inner {
  background: rgba(240, 234, 227, 0.95);
  border-color: rgba(232, 101, 26, 0.35);
}

[data-theme="light"] .faq-answer-text p {
  color: var(--text-primary);
}

[data-theme="light"] .faq-answer-text strong {
  color: var(--text-primary);
}

[data-theme="light"] .faq-disclaimer {
  color: var(--text-secondary);
}

[data-theme="light"] .guarantee-text,
[data-theme="light"] .guarantee-text strong,
[data-theme="light"] .guarantee-quote {
  color: var(--text-primary);
}


/* ============================================
   ФУТЕР
   ============================================ */

.site-footer {
  text-align: center;
  padding: 32px 20px;
  padding-bottom: calc(100px + env(safe-area-inset-bottom, 0px));
}

.footer-brand {
  font-family: 'Oswald', 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  opacity: 0.6;
}

.footer-tagline {
  font-family: 'Gilroy', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: var(--text-primary);
  opacity: 0.5;
  margin-top: 4px;
}

.footer-copy {
  font-family: 'Gilroy', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: var(--text-primary);
  opacity: 0.5;
  margin-top: 4px;
}


/* Только лёгкое свечение в центре и снизу — БЕЗ верхнего glow
   (иначе step::before снизу + outcome::before сверху суммируются
   и создают яркую оранжевую полосу-стык) */
.outcome::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 30% at 50% 50%, rgba(232, 101, 26, 0.04), transparent 75%),
    radial-gradient(ellipse 100% 18% at 50% 100%, rgba(232, 101, 26, 0.14), transparent 90%);
}

/* --- Заголовок (квадратный текст, шрифт как в hero «Как языковой школе») --- */
.outcome-headline-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  padding: 0;                  /* без боковых полей — JS использует всю ширину */
}

.outcome-headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  width: 100%;
  max-width: 100%;
  font-family: 'Oswald', 'Bebas Neue', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: var(--text-primary);
  letter-spacing: 0.3px;
  line-height: 1.12;
}

.outcome-line {
  display: block;
  font-size: 20px;
  text-align: center;
  white-space: nowrap;
}

.outcome-line--accent {
  background: linear-gradient(90deg, #E8651A, #F5923A, #E8651A, #C9530F, #E8651A);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: growupShimmer 5s ease-in-out infinite;
}

/* --- Карточка с иллюстрацией и чеками --- */
.outcome-card {
  position: relative;
  padding: 18px 16px 20px;
  border-radius: 22px;
  background: var(--bg-card);
  border: 2px dashed rgba(232, 101, 26, 0.55);
  box-shadow:
    0 14px 38px rgba(0, 0, 0, 0.35),
    0 0 60px rgba(232, 101, 26, 0.08),
    0 0 120px rgba(232, 101, 26, 0.04);
}

[data-theme="light"] .outcome-card {
  background: var(--bg-card);
  border-color: rgba(232, 101, 26, 0.6);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Метки ДО / ПОСЛЕ */
.outcome-labels {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0 6px;
  margin-bottom: 10px;
}

.outcome-label {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(26px, 7.6vw, 32px);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow:
    0.5px 0 0 currentColor,
    -0.5px 0 0 currentColor;
}

.outcome-label--do {
  color: var(--text-muted);
}

.outcome-label--posle {
  color: var(--accent);
}

/* Иллюстрация (cartoon до/после, 90% ширины карточки, центр) */
.outcome-illustration {
  display: block;
  width: 90%;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.35),
    0 0 28px rgba(232, 101, 26, 0.12);
}

.outcome-illustration img {
  display: block;
  width: 100%;
  height: auto;
}

/* X / ✓ под иллюстрацией */
.outcome-icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 8px 10px;
}

.outcome-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
}

.outcome-icon iconify-icon {
  width: 30px;
  height: 30px;
  font-size: 30px;
}

.outcome-icon--bad {
  background: rgba(154, 144, 136, 0.08);
  border: 2px solid rgba(154, 144, 136, 0.5);
  transform: translateX(34px) rotate(-10deg);
  opacity: 0;
}

.outcome-icon--bad iconify-icon {
  color: var(--text-secondary);
}

.outcome-icon--good {
  background: rgba(232, 101, 26, 0.14);
  border: 2px solid rgba(232, 101, 26, 0.65);
  box-shadow: 0 0 18px rgba(232, 101, 26, 0.25);
  transform: translateX(-34px);
  opacity: 0;
}

.outcome-icon--good iconify-icon {
  color: var(--accent);
}

/* Roll-in animation */
.outcome-icons.is-rolled .outcome-icon--bad {
  animation: rollInLeft 1.65s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

.outcome-icons.is-rolled .outcome-icon--good {
  animation: rollInRight 1.65s cubic-bezier(0.25, 0.1, 0.25, 1) 0.25s forwards;
}

@keyframes rollInLeft {
  0% {
    transform: translateX(-220px) rotate(0deg) scale(1, 1);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  70% {
    transform: translateX(48px) rotate(580deg) scale(1, 1);
    opacity: 1;
  }
  80% {
    transform: translateX(34px) rotate(680deg) scale(1.12, 0.88);
    opacity: 1;
  }
  88% {
    transform: translateX(34px) rotate(710deg) scale(0.95, 1.05) translateY(-6px);
  }
  94% {
    transform: translateX(34px) rotate(718deg) scale(1.04, 0.96);
  }
  100% {
    transform: translateX(34px) rotate(720deg) scale(1, 1);
    opacity: 1;
  }
}

@keyframes rollInRight {
  0% {
    transform: translateX(220px) rotate(0deg) scale(1, 1);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  70% {
    transform: translateX(-48px) rotate(-580deg) scale(1, 1);
    opacity: 1;
  }
  80% {
    transform: translateX(-34px) rotate(-680deg) scale(1.12, 0.88);
    opacity: 1;
  }
  88% {
    transform: translateX(-34px) rotate(-710deg) scale(0.95, 1.05) translateY(-6px);
  }
  94% {
    transform: translateX(-34px) rotate(-718deg) scale(1.04, 0.96);
  }
  100% {
    transform: translateX(-34px) rotate(-720deg) scale(1, 1);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .outcome-icons.is-rolled .outcome-icon--bad,
  .outcome-icons.is-rolled .outcome-icon--good {
    animation: none;
    opacity: 1;
  }
  .outcome-icons.is-rolled .outcome-icon--bad {
    transform: translateX(34px) rotate(-10deg);
  }
  .outcome-icons.is-rolled .outcome-icon--good {
    transform: translateX(-34px);
  }
}

/* Скриншоты операций ДО / ПОСЛЕ */
.outcome-receipts {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 6px;
}

.outcome-receipt {
  display: block;
  width: calc(50% - 3px);
}

.outcome-receipt img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.4),
    0 0 22px rgba(232, 101, 26, 0.12);
}

[data-theme="light"] .outcome-receipt img,
[data-theme="light"] .outcome-illustration {
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.08),
    0 0 18px rgba(232, 101, 26, 0.08);
}

@media (max-width: 360px) {
  .outcome-line { font-size: 20px; }
  .outcome-label { font-size: 24px; }
}

[data-theme="light"] .step-image img {
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.1),
    0 0 28px rgba(232, 101, 26, 0.18),
    0 0 56px rgba(232, 101, 26, 0.08);
}

/* --- Fade-in анимация при скролле --- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================
   ACCESSIBILITY: prefers-reduced-motion
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  .layer,
  .scroll-indicator {
    animation: none !important;
    filter: none !important;
  }
  .fade-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* =========================================================
   ЗАЩИТА ОТ КОПИРОВАНИЯ - START
   Переключатель: html[data-copy-protection="on"|"off"] в index.html
   Все правила активны только при data-copy-protection="on".
   При "off" сайт работает как обычно (текст выделяется, меню работает).
   Чтобы убрать навсегда: удалить весь блок между START и END маркерами.
   ========================================================= */

html[data-copy-protection="on"],
html[data-copy-protection="on"] body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

html[data-copy-protection="on"] img,
html[data-copy-protection="on"] video,
html[data-copy-protection="on"] picture,
html[data-copy-protection="on"] svg {
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
  pointer-events: none;
}

html[data-copy-protection="on"] a img,
html[data-copy-protection="on"] a picture,
html[data-copy-protection="on"] a svg,
html[data-copy-protection="on"] button img,
html[data-copy-protection="on"] button picture,
html[data-copy-protection="on"] button svg,
html[data-copy-protection="on"] [role="button"] img,
html[data-copy-protection="on"] [role="button"] picture,
html[data-copy-protection="on"] [role="button"] svg {
  pointer-events: auto;
}

html[data-copy-protection="on"] input,
html[data-copy-protection="on"] textarea,
html[data-copy-protection="on"] [contenteditable="true"] {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
  -webkit-touch-callout: default;
}

/* =========================================================
   ЗАЩИТА ОТ КОПИРОВАНИЯ - END
   ========================================================= */
