/* ==========================================================================
   Системный денежный код — v2
   Редакторская брутальность: чёрно-белая база, лимонный + янтарный акценты.
   Mobile-first: все размеры отталкиваются от узкого экрана через clamp().
   ========================================================================== */

:root {
  --ink: #0A0A0A;
  --paper: #F5F4F1;
  --surface-muted: #F0EFEC;
  --accent-yellow: #F5E300;
  --accent-amber-start: #E8A33D;
  --accent-amber-end: #7A3B12;
  --text-primary: #FFFFFF;
  --text-primary-on-light: #0A0A0A;
  --text-muted: #9A9A94;
  --text-muted-on-dark: #8C8C87;
  --text-body-muted: #40403B;
  --text-body-muted-on-dark: #B8B8B3;
  --border-hairline: rgba(255, 255, 255, 0.12);
  --border-hairline-on-light: rgba(10, 10, 10, 0.10);

  --amber-gradient: linear-gradient(135deg, var(--accent-amber-start) 0%, var(--accent-amber-end) 100%);

  --font-display: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-pill: 999px;
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --radius-scoop: 40px;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-section: 96px;

  --shadow-card-lift: 0 12px 32px rgba(0, 0, 0, 0.18);
  --shadow-hover-glow: 0 8px 24px rgba(232, 163, 61, 0.35);

  --container-width: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 4vw, 1.125rem);
  line-height: 1.5;
  color: var(--text-primary-on-light);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  color: inherit;
  font-weight: 500;
}

h1 {
  font-size: clamp(2.25rem, 9vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 6vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-sm);
}

h3 { font-size: clamp(1.2rem, 3.4vw, 1.5rem); line-height: 1.15; font-weight: 600; }

p { font-size: clamp(1rem, 4vw, 1.125rem); }

a { color: inherit; }

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

@media (min-width: 900px) {
  .container { padding: 0 var(--space-xl); }
}

.container--narrow { max-width: 820px; }

.section { padding: 56px 0; position: relative; }

@media (min-width: 900px) {
  .section { padding: var(--space-section) 0; }
}

.section-alt {
  background: var(--ink);
  color: var(--text-primary);
}

#top, #about, #method, #reviews, #program, #faq {
  scroll-margin-top: 90px;
}

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

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

/* ===== Scoop transitions between dark/light sections ===== */
.section:not(.hero) + .section-alt {
  border-radius: var(--radius-scoop) var(--radius-scoop) 0 0;
  margin-top: calc(-1 * var(--radius-scoop));
  padding-top: calc(56px + var(--radius-scoop));
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .section:not(.hero) + .section-alt { padding-top: calc(var(--space-section) + var(--radius-scoop)); }
}

.section-alt + .section:not(.section-alt) {
  border-radius: var(--radius-scoop) var(--radius-scoop) 0 0;
  background: var(--paper);
  margin-top: calc(-1 * var(--radius-scoop));
  padding-top: calc(56px + var(--radius-scoop));
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .section-alt + .section:not(.section-alt) { padding-top: calc(var(--space-section) + var(--radius-scoop)); }
}

/* ===== Site header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 244, 241, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-hairline-on-light);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: 12px 0;
}

.site-header .container {
  padding-left: max(var(--space-sm), env(safe-area-inset-left) + 16px);
  padding-right: max(var(--space-sm), env(safe-area-inset-right) + 16px);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo__mark {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex-shrink: 0;
}

.site-logo__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.1;
}

.site-logo__text span {
  display: block;
  font-weight: 500;
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.start-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin: 0 auto;
  padding: 6px 16px;
  min-width: 0;
  flex: 1 1 auto;
  text-align: center;
  line-height: 1.1;
  background: var(--accent-yellow);
  border-radius: var(--radius-pill);
}

.start-date__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #000;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .start-date__label { white-space: normal; }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .site-logo__text { display: none; }
  .site-header__inner { gap: 10px; }
  .site-nav { gap: 12px; }
  .site-nav a { font-size: 13px; }
  .start-date { padding: 5px 14px; }
  .start-date__label { font-size: 9px; letter-spacing: 0.02em; }
  .start-date__value { font-size: 15px; }
}

.start-date__value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: #000;
  white-space: nowrap;
}

@media (max-width: 520px) {
  .start-date { gap: 1px; padding: 5px 12px; }
  .start-date__label { font-size: 9px; }
  .start-date__value { font-size: 16px; }
}

@media (max-width: 360px) {
  .start-date { padding: 4px 10px; }
  .start-date__label { font-size: 8px; }
  .start-date__value { font-size: 14px; }
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.site-nav a:hover { color: var(--accent-amber-end); }

.site-header__inner > .btn-cta {
  display: none;
}

@media (min-width: 1181px) {
  .site-header__inner > .btn-cta {
    display: inline-flex;
    height: 44px;
    padding: 0 22px;
    font-size: 14px;
  }
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  border: none;
  background: none;
  cursor: pointer;
  flex-shrink: 0;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  max-height: 0;
  overflow: hidden;
  background: var(--paper);
  border-top: 1px solid var(--border-hairline-on-light);
  transition: max-height 0.25s ease;
}

.mobile-nav.is-open { max-height: 480px; }
.mobile-nav.js-no-transition { transition: none; }

.mobile-nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 8px var(--space-sm);
}

.mobile-nav__list a {
  display: block;
  padding: 14px 0;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border-bottom: 1px solid var(--border-hairline-on-light);
}

.mobile-nav__cta {
  margin: var(--space-sm) var(--space-sm) var(--space-md);
  text-align: center;
}

@media (max-width: 900px) {
  .site-nav { display: none; }
  .burger { display: flex; }
  .mobile-nav { display: flex; }
}

@media (max-width: 480px) {
  .site-header__inner { gap: 12px; }
  .site-logo__text { display: none; }
}

/* ===== Eyebrow / pill label ===== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-muted);
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-md);
}

.section-alt .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
}

/* ===== Price block ===== */
.price-block {
  display: inline-flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.price-old-wrap,
.price-new-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding-top: 2px;
}

.price-old-label,
.price-new-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
  font-weight: 500;
}

.price-old-label { color: var(--text-muted); }
.section-alt .price-old-label { color: var(--text-muted-on-dark); }

.price-new-label {
  color: var(--accent-amber-end);
  font-weight: 700;
}

.section-alt .price-new-label { color: var(--accent-amber-start); }

.price-old {
  position: relative;
  color: var(--text-muted);
  font-size: clamp(2.75rem, 9vw, 3.75rem);
  font-weight: 500;
  font-family: var(--font-display);
  line-height: 0.95;
}

.section-alt .price-old { color: var(--text-muted-on-dark); }

.price-old::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  top: 50%;
  height: 2px;
  background: currentColor;
  opacity: 0.6;
  transform: rotate(-6deg);
}

.price-arrow {
  font-size: 22px;
  color: var(--text-muted);
  align-self: flex-start;
  margin-top: 24px;
}

.section-alt .price-arrow { color: var(--text-muted-on-dark); }

.price-new {
  font-size: clamp(2.75rem, 9vw, 3.75rem);
  font-weight: 700;
  color: var(--ink);
  font-family: var(--font-display);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.section-alt .price-new { color: var(--text-primary); }

.price-badge {
  background: #E23B3B;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 20px rgba(226, 59, 59, 0.35);
  align-self: flex-start;
  margin-top: 22px;
}

/* ===== CTA design system ===== */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  height: 52px;
  padding: 0 26px;
  border-radius: var(--radius-pill);
  border: none;
  text-decoration: none;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-cta:hover {
  background: var(--accent-amber-start);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover-glow);
}

.btn-cta:active {
  transform: translateY(0);
  filter: brightness(0.96);
}

.btn-cta:focus-visible {
  outline: 2px solid var(--accent-amber-start);
  outline-offset: 3px;
}

.section-alt .btn-cta:not(.btn-cta--accent) {
  background: #fff;
  color: var(--ink);
}

.section-alt .btn-cta:not(.btn-cta--accent):hover {
  background: var(--accent-amber-start);
  color: var(--ink);
}

.btn-cta--accent {
  background: var(--amber-gradient);
}

.btn-cta--accent:hover {
  background: var(--amber-gradient);
  filter: brightness(1.08);
  color: #fff;
}

.btn-cta--lg {
  height: 58px;
  font-size: 16px;
  padding: 0 30px;
  margin: var(--space-md) 0 var(--space-sm);
}

@media (max-width: 480px) {
  .btn-cta { font-size: 14px; padding: 0 20px; }
  .btn-cta--lg { height: 54px; font-size: 15px; padding: 0 20px; white-space: normal; }
}

.card {
  background: var(--surface-muted);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
}

.section-alt .card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-hairline);
}

/* ===== Icon tiles ===== */
.icon-3d {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  flex-shrink: 0;
  background: var(--surface-muted);
}

.section-alt .icon-3d { background: rgba(255, 255, 255, 0.08); }

.icon-3d--sm { width: 52px; height: 52px; font-size: 24px; border-radius: var(--radius-sm); }
.icon-3d--lg { width: 84px; height: 84px; font-size: 42px; border-radius: var(--radius-lg); }

/* ===== Hero (blocks 1-4) ===== */
.hero {
  padding-top: 40px;
  padding-bottom: 24px;
  overflow: hidden;
  border-radius: 0 0 var(--radius-scoop) var(--radius-scoop);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: var(--amber-gradient);
}

@media (min-width: 900px) {
  .hero { padding-top: 56px; padding-bottom: 88px; }
  .hero__photo-wrap::before { display: none; }
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.1fr 0.9fr; gap: 48px; }
}

.hero__content { text-align: center; min-width: 0; }

@media (min-width: 900px) {
  .hero__content { text-align: left; }
}

.hero__subtitle {
  font-size: clamp(1.05rem, 4vw, 1.25rem);
  color: var(--text-muted-on-dark);
  margin: 20px 0 28px;
  max-width: 540px;
}

@media (min-width: 900px) {
  .hero__subtitle { margin-left: 0; margin-right: 0; }
}

.hero .price-block { justify-content: center; }

@media (min-width: 900px) {
  .hero .price-block { justify-content: flex-start; }
}

.hero__hint {
  margin-top: 6px;
  font-size: 14px;
  color: var(--text-muted-on-dark);
}

.hero__photo-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  min-height: 420px;
}

.hero__photo-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(232, 163, 61, 0.55) 1.8px, transparent 1.8px);
  background-size: 20px 20px;
  -webkit-mask-image: radial-gradient(ellipse 85% 90% at 50% 100%, #000 0%, transparent 88%);
  mask-image: radial-gradient(ellipse 85% 90% at 50% 100%, #000 0%, transparent 88%);
  pointer-events: none;
}

.hero__photo-wrap img {
  position: relative;
  max-width: 460px;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top center;
  margin-top: -6%;
  -webkit-mask-image: linear-gradient(to bottom, #000 94%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 94%, transparent 100%);
}

.hero__photo-badge {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber-gradient);
  border-radius: var(--radius-pill);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  white-space: nowrap;
  box-shadow: var(--shadow-hover-glow);
}

@media (min-width: 900px) {
  .hero__photo-wrap img { max-width: 460px; }
  .hero__photo-badge { left: 12px; max-width: calc(100% - 24px); transform: none; bottom: 12px; white-space: normal; }
}

/* ===== "We / Create / Future" style pill row reused for hero eyebrow row ===== */

/* ===== Pain / reasons blocks (5-6) ===== */
.pain-section {
  background: #E1E4E7;
  color: var(--text-primary-on-light);
}

.pain-section .card {
  background: #FFFFFF;
}

.pain-section .card.pain-item--dark {
  background: var(--ink);
}

.pain-section .pain-item:not(.pain-item--dark) p { color: var(--text-body-muted); }

.section-intro, .section-outro {
  font-size: clamp(1rem, 4vw, 1.15rem);
  max-width: 780px;
  margin: 0 auto 20px;
  color: var(--text-body-muted);
}

.section-alt .section-intro,
.section-alt .section-outro { color: var(--text-muted-on-dark); }

.pain-section.section-alt .section-intro,
.pain-section.section-alt .section-outro { color: var(--text-body-muted); }

.pain-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-lg) var(--space-md);
  margin: var(--space-xl) 0 var(--space-lg);
}

@media (min-width: 720px) {
  .pain-list { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
  .pain-list { grid-template-columns: repeat(3, 1fr); }
}

.pain-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding: 0 var(--space-md) var(--space-md);
  overflow: visible;
}

.pain-item__art {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: -48px;
  pointer-events: none;
}

.pain-item__art img {
  width: 132px;
  height: 132px;
  object-fit: contain;
  filter: drop-shadow(0 16px 20px rgba(10, 10, 10, 0.16));
}

.pain-item__art--lg {
  margin-top: -34px;
}

.pain-item__art--lg img {
  width: 160px;
  height: 160px;
}

.pain-item__art--sm {
  margin-top: -28px;
}

.pain-item__art--sm img {
  width: 88px;
  height: 88px;
}

@media (max-width: 719px) {
  .pain-item__art--sm {
    margin-top: -14px;
  }

  .pain-item__art--sm img {
    width: 72px;
    height: 72px;
  }
}

.pain-item__title {
  font-size: 18px;
  margin-bottom: 0;
}

.pain-item p {
  color: var(--text-body-muted);
  font-size: 15px;
  margin: 0;
  max-width: 34ch;
}

.pain-item--dark {
  background: var(--ink);
}

.pain-item--dark .pain-item__title { color: var(--text-primary); }
.pain-item--dark p { color: var(--text-body-muted-on-dark); }
.pain-item--dark .pain-item__art img { filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.55)); }

.check-list {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0;
}

.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: start;
  column-gap: 14px;
  margin-bottom: 14px;
  font-size: clamp(1rem, 4vw, 1.125rem);
  line-height: 1.5;
}

.check-list li::before {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--amber-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(calc((1.5em - 24px) / 2));
}

.text-emphasis {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-body-muted);
}

/* ===== Reason deck (block 6): светлые карточки-стопка с жёлтой нумерацией ===== */
.reason-deck {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: var(--space-lg) 0;
}

.reason-deck-item {
  background: linear-gradient(135deg, #FDFDFC 0%, #DCDAD3 100%);
  border: 1px solid rgba(10, 10, 10, 0.06);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 88px;
}

.reason-deck-item__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #FBFA7A 0%, var(--accent-yellow) 55%, #C9BE00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.reason-deck-item p {
  color: var(--text-primary-on-light);
  font-size: clamp(0.95rem, 3.6vw, 1.0625rem);
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

/* ===== About / Method blocks (7-8) ===== */
.about {
  background: var(--ink);
  color: var(--text-primary);
}

.about__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 780px) {
  .about__inner { grid-template-columns: 340px 1fr; }
}

.about__photo {
  display: flex;
  justify-content: center;
}

.about__photo-frame {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  max-width: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--amber-gradient);
  aspect-ratio: 3 / 4;
}

.about__photo-num {
  position: absolute;
  left: -0.06em;
  bottom: -0.16em;
  font-family: var(--font-display);
  font-size: clamp(5rem, 22vw, 8rem);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.18);
  z-index: 0;
  pointer-events: none;
}

.about__photo-frame img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
}

.about__text .btn-cta { margin-top: var(--space-lg); margin-bottom: var(--space-md); }

.about__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg);
  margin: var(--space-md) 0;
}

@media (min-width: 780px) {
  .about__stats { justify-content: flex-start; }
}

.about__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

@media (min-width: 780px) {
  .about__stat { align-items: flex-start; }
}

.about__stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 6vw, 2.5rem);
  font-weight: 700;
  color: var(--accent-amber-start);
  line-height: 1;
}

.about__stat-label {
  font-size: 13px;
  color: var(--text-muted-on-dark);
}

.method-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.method-step {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  text-align: left;
}

.method-step__number {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-pill);
  background: var(--accent-yellow);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 780px) {
  .about__inner { text-align: center; }
  .about__stats { flex-wrap: wrap; }
  .method-step { flex-direction: column; align-items: center; text-align: center; }
}

/* ===== Countdown (shared) ===== */
.countdown-box { text-align: center; margin-top: var(--space-xl); }

.countdown-box__label {
  font-size: clamp(1rem, 4vw, 1.25rem);
  font-weight: 600;
  color: var(--accent-amber-start);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-md);
}

.section:not(.section-alt) .countdown-box__label { color: var(--accent-amber-end); }

.countdown {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.countdown__unit {
  background: linear-gradient(135deg, #6b6b64 0%, #3a3a36 100%);
  color: #fff;
  border-radius: var(--radius-md);
  min-width: 84px;
  padding: 16px 8px;
  box-shadow: none;
}

.countdown__value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 9vw, 3.25rem);
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown__unit-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 6px;
  opacity: 0.85;
}

.countdown--expired .countdown__unit {
  background: linear-gradient(135deg, #6b6b64 0%, #3a3a36 100%);
  box-shadow: none;
}

.countdown-expired-msg {
  display: none;
  font-size: clamp(1rem, 4vw, 1.15rem);
  font-weight: 600;
  color: var(--accent-amber-start);
  margin-top: var(--space-sm);
}

.section:not(.section-alt) .countdown-expired-msg { color: var(--accent-amber-end); }

.countdown--expired + .countdown-expired-msg,
.countdown-box.is-expired .countdown-expired-msg { display: block; }

@media (max-width: 560px) {
  .countdown { gap: 8px; }
  .countdown__unit { min-width: 76px; padding: 12px 6px; }
}

/* ===== Bonuses block (9) ===== */
.bonuses { position: relative; }

.bonus-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-md);
  margin: var(--space-lg) 0;
  text-align: left;
}

@media (min-width: 640px) {
  .bonus-grid { grid-template-columns: repeat(2, 1fr); }
}

.bonus-card {
  --bonus-glow-color: 232, 163, 61;
  background: #141414;
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s;
}

.bonus-card--yellow { --bonus-glow-color: 248, 243, 22; }

/* Открытая карточка держит чуть более выразительную обводку в состоянии покоя. */
.bonus-card.is-opened { border-color: rgba(var(--bonus-glow-color), 0.4); }

@media (min-width: 640px) {
  .bonus-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.22); }
  .bonus-card.is-opened:hover { border-color: rgba(var(--bonus-glow-color), 0.55); }
}

@media (prefers-reduced-motion: reduce) {
  .bonus-card:hover { transform: none; }
}

.bonus-card__stage {
  /* Сброс нативных стилей <button>: визуально это остаётся тем же stage-блоком. */
  appearance: none;
  border: 0;
  margin: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;

  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bonus-card--amber .bonus-card__stage {
  background: radial-gradient(120% 120% at 30% 20%, #6B3A18 0%, #3D2210 40%, #201209 70%, #141414 100%);
}

.bonus-card--yellow .bonus-card__stage {
  background: radial-gradient(120% 120% at 30% 20%, #4a4408 0%, #1c1a05 60%, #0A0A0A 100%);
}

/* Diagonal shine — один проход, никогда в цикле; запускается только через .is-shining. */
.bonus-card__stage::after {
  content: "";
  position: absolute;
  inset: -20% -60%;
  background: linear-gradient(
    75deg,
    rgba(255, 255, 255, 0) 45%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0) 55%
  );
  transform: translateX(-60%);
  opacity: 0;
  pointer-events: none;
}

.bonus-card__stage.is-shining::after {
  animation: bonus-shine 600ms ease-out;
}

@keyframes bonus-shine {
  0% { transform: translateX(-60%); opacity: 0; }
  15% { opacity: 1; }
  100% { transform: translateX(60%); opacity: 0; }
}

.bonus-card__glow {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--bonus-glow-color), 0.35) 0%, rgba(var(--bonus-glow-color), 0) 70%);
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 400ms ease, transform 400ms ease;
  pointer-events: none;
}

.bonus-card--yellow .bonus-card__glow {
  background: radial-gradient(circle, rgba(248, 243, 22, 0.25) 0%, rgba(248, 243, 22, 0) 70%);
}

.bonus-card__stage.is-revealing .bonus-card__glow,
.bonus-card__stage.is-opened .bonus-card__glow {
  opacity: 1;
  transform: scale(1);
}

.bonus-card__stage.is-opened .bonus-card__glow { opacity: 0.35; }

.bonus-card__gift {
  position: relative;
  width: 42%;
  aspect-ratio: 1;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.45));
  transition: transform 90ms ease-out, filter 300ms ease;
}

@media (max-width: 639px) {
  .bonus-card__stage { aspect-ratio: 21 / 9; }
  .bonus-card__gift { width: 30%; }
}

/* Этап 1 — micro press: сжатие всей кнопки-stage на нажатии. */
.bonus-card__stage.is-pressed { transform: scale(0.985); }
.bonus-card__stage.is-pressed .bonus-card__gift { transform: scale(0.985); }

/* Этап 2 — reveal: подарок приподнимается и слегка растёт после отпускания. */
.bonus-card__stage.is-revealing .bonus-card__gift {
  transform: translateY(-5px) scale(1.03);
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), filter 300ms ease;
}

/* Этап 3 — открыт: лёгкий остаточный подъём, свечение почти неподвижно. */
.bonus-card__stage.is-opened .bonus-card__gift {
  transform: translateY(-2.5px) scale(1.01);
  filter: drop-shadow(0 20px 32px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 18px rgba(var(--bonus-glow-color), 0.25));
}

@media (min-width: 640px) {
  /* Desktop hover — дополнительный слой поверх готового mobile-сценария, не замена клику. */
  .bonus-card__stage:hover .bonus-card__gift {
    transform: translateY(-4px) scale(1.025);
  }
  .bonus-card__stage.is-opened:hover .bonus-card__gift {
    transform: translateY(-5px) scale(1.03);
  }
  .bonus-card__stage:hover .bonus-card__glow { opacity: 0.6; transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .bonus-card__stage.is-pressed,
  .bonus-card__stage.is-pressed .bonus-card__gift,
  .bonus-card__stage.is-revealing .bonus-card__gift,
  .bonus-card__stage.is-opened .bonus-card__gift,
  .bonus-card__stage:hover .bonus-card__gift {
    transform: none;
  }
  .bonus-card__stage::after { display: none; }
  .bonus-card__glow { transition: opacity 200ms ease; transform: none; }
  .bonus-card__stage.is-revealing .bonus-card__glow,
  .bonus-card__stage.is-opened .bonus-card__glow { transform: none; }
}

.bonus-card__label {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(6px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-primary);
  transition: color 300ms ease;
}

.bonus-card--amber .bonus-card__label { color: var(--accent-amber-start); }
.bonus-card--yellow .bonus-card__label { color: var(--accent-yellow); }

.bonus-card__body { padding: var(--space-md) var(--space-md) var(--space-lg); }

.bonus-card h3 {
  font-size: clamp(1.15rem, 3vw, 1.4rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.bonus-card__body p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-body-muted-on-dark);
  max-width: 42ch;
}

/* ===== Reviews gallery + lightbox (10) ===== */
.reviews-gallery {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: var(--space-lg);
}

.reviews-gallery__track {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 4px;
  scrollbar-width: none;
}

.reviews-gallery__track::-webkit-scrollbar { display: none; }

.review-thumb {
  flex: 0 0 auto;
  width: 240px;
  scroll-snap-align: start;
  border: none;
  background: none;
  padding: 0;
  cursor: zoom-in;
  display: block;
}

.review-thumb img {
  border-radius: var(--radius-md);
  transition: transform 0.15s ease;
}

.review-thumb:hover img { transform: translateY(-4px); }

.reviews-gallery__arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--ink);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.reviews-gallery__arrow:hover { background: var(--accent-amber-start); color: var(--ink); }

@media (max-width: 640px) {
  .reviews-gallery__arrow { display: none; }
  .review-thumb { width: 78vw; }
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 32px;
}

.lightbox.is-open { display: flex; }

.lightbox__img {
  max-width: min(720px, 90vw);
  max-height: 86vh;
  border-radius: var(--radius-md);
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.lightbox__close:hover { background: rgba(255, 255, 255, 0.24); }

.lightbox__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  flex-shrink: 0;
}

.lightbox__arrow:hover { background: rgba(255, 255, 255, 0.24); }

@media (max-width: 640px) {
  .lightbox { padding: 12px; }
  .lightbox__arrow { width: 38px; height: 38px; font-size: 20px; }
  .lightbox__close { top: 12px; right: 12px; }
}

/* ===== Program: numeral cards (signature component) ===== */
.program-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.numeral-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md) 96px;
  overflow: hidden;
  text-align: left;
  min-height: 220px;
  display: flex;
  align-items: flex-start;
}

.numeral-card--dark {
  background: #161615;
  color: var(--text-primary);
  border: 1px solid var(--border-hairline);
}

.numeral-card--yellow {
  background: var(--accent-yellow);
  color: var(--ink);
}

.numeral-card--amber {
  background: var(--amber-gradient);
  color: var(--text-primary);
}

.program-item__body { position: relative; z-index: 1; max-width: 80%; }

.program-item__label {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
  opacity: 0.75;
}

.numeral-card--yellow .program-item__label { opacity: 0.65; }

.numeral-card h3 { margin-bottom: 10px; }

.numeral-card p:not(.program-item__label) {
  font-size: 15px;
  opacity: 0.85;
}

.numeral-card--yellow p:not(.program-item__label) { opacity: 0.75; }

.numeral-card__num {
  position: absolute;
  right: var(--space-md);
  bottom: var(--space-sm);
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 15vw, 5.5rem);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.03em;
  z-index: 0;
  pointer-events: none;
}

.numeral-card--dark .numeral-card__num { color: rgba(255, 255, 255, 0.1); }
.numeral-card--yellow .numeral-card__num { color: rgba(10, 10, 10, 0.14); }
.numeral-card--amber .numeral-card__num { color: rgba(255, 255, 255, 0.16); }

@media (min-width: 720px) {
  .numeral-card { min-height: 260px; padding: var(--space-xl) var(--space-lg) 108px; }
}

#program .btn-cta { margin-bottom: var(--space-lg); }

@media (min-width: 900px) {
  #program .btn-cta { margin-bottom: var(--space-xl); }
}

.check-list--centered {
  max-width: 580px;
  margin: var(--space-lg) auto 0;
  text-align: left;
}

.check-list--icons {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.check-list--icons .check-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: clamp(1rem, 4vw, 1.125rem);
  padding-left: 0;
}

.check-list--icons .check-item::before {
  content: none;
}

/* ===== FAQ ===== */
.faq { margin-top: var(--space-lg); display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--surface-muted);
  color: var(--text-primary-on-light);
  border-radius: var(--radius-md);
  padding: 22px 24px;
}

.faq-item summary {
  font-weight: 600;
  font-size: clamp(1.05rem, 4vw, 1.2rem);
  color: var(--text-primary-on-light);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

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

.faq-icon {
  position: relative;
  background: var(--ink);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  border-radius: 1px;
  transform: translate(-50%, -50%);
}

.faq-icon::before { width: 12px; height: 2px; }
.faq-icon::after { width: 2px; height: 12px; }

.faq-item[open] .faq-icon::after { height: 0; }

.faq-item p { margin-top: var(--space-sm); color: var(--text-body-muted); }

/* ===== Final CTA (14) ===== */
.final-cta {
  position: relative;
}

.hint-text { color: var(--text-muted-on-dark); font-size: 14px; margin-top: var(--space-sm); }

/* ===== Site footer (16-17) ===== */
.site-footer {
  background: var(--ink);
  color: var(--text-muted-on-dark);
  padding: var(--space-xl) 0 0;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border-hairline);
  text-align: center;
}

@media (min-width: 780px) {
  .site-footer__grid { grid-template-columns: 1.3fr 1fr 1fr; text-align: left; }
}

.site-footer__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: var(--space-sm);
}

@media (min-width: 780px) {
  .site-footer__brand { justify-content: flex-start; }
}

.site-footer__brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: #fff;
}

.site-footer p { font-size: 15px; }

.site-footer h4 {
  font-family: var(--font-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-amber-start);
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.site-footer ul { list-style: none; display: flex; flex-direction: column; align-items: center; gap: 12px; }

@media (min-width: 780px) {
  .site-footer ul { align-items: flex-start; }
}

.site-footer a {
  color: var(--text-muted-on-dark);
  text-decoration: none;
  font-size: 15px;
}

.site-footer a:hover { color: #fff; }

.site-footer__contacts a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.site-footer__contacts svg { flex-shrink: 0; }

.site-footer__social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 4px;
}

@media (min-width: 780px) {
  .site-footer__social { justify-content: flex-start; }
}

.site-footer__social a {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.site-footer__social a:hover { background: rgba(255, 255, 255, 0.18); }

.site-footer__bottom {
  padding: var(--space-md) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted-on-dark);
}

@media (max-width: 780px) {
  .site-footer__bottom { justify-content: center; text-align: center; }
}

.site-footer__bottom a { color: var(--text-muted-on-dark); text-decoration: underline; }

/* ===== Legal pages ===== */
.legal-page {
  padding: 48px 0 88px;
  max-width: 820px;
  margin: 0 auto;
}

.legal-page h1 { font-size: clamp(1.75rem, 6vw, 2.25rem); margin-bottom: 8px; }
.legal-page h2 { font-size: clamp(1.35rem, 4vw, 1.6rem); margin: 32px 0 12px; }
.legal-page h3 { font-size: clamp(1.1rem, 3.2vw, 1.25rem); margin: 20px 0 8px; }
.legal-page p, .legal-page li { font-size: 15px; color: var(--text-body-muted); margin-bottom: 12px; }
.legal-page ul { margin: 0 0 16px; padding-left: 20px; }
.legal-page li { margin-bottom: 8px; }
.legal-page strong { color: var(--ink); }
.legal-page .back-link { display: inline-block; margin-bottom: var(--space-lg); font-weight: 600; }

/* ===== Sticky CTA (chrome, liquid metal — blue) ===== */
.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: calc(20px + env(safe-area-inset-bottom));
  transform: translateX(-50%) translateY(140%);
  z-index: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 34px;
  background: #050b18;
  background-image:
    radial-gradient(120% 180% at 15% -20%, rgba(180,220,255,0.6) 0%, rgba(180,220,255,0) 40%),
    radial-gradient(120% 180% at 85% 120%, rgba(120,180,255,0.4) 0%, rgba(120,180,255,0) 45%),
    linear-gradient(115deg, #030712 0%, #1e56c8 22%, #06122b 40%, #3f8ff5 55%, #051229 72%, #1a4fb8 88%, #030712 100%);
  background-size: 100% 100%, 100% 100%, 260% 260%;
  background-position: 0 0, 0 0, 0% 50%;
  animation: chromeShift 5s ease-in-out infinite;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  border-radius: var(--radius-pill);
  border: 2px solid #08152e;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 12px 30px rgba(31, 96, 224, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
}

.sticky-cta.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-cta:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 16px 38px rgba(31, 96, 224, 0.65);
}

.sticky-cta:active { transform: translateX(-50%) translateY(0) scale(0.95); }

.sticky-cta:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

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

@media (max-width: 480px) {
  .sticky-cta { height: 54px; font-size: 14px; padding: 0 24px; bottom: calc(14px + env(safe-area-inset-bottom)); }
}

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

/* Переключение вариантов цены (/1/, /2/, /3/) */
[data-variant="1"] .variant-2,
[data-variant="1"] .variant-3,
[data-variant="2"] .variant-1,
[data-variant="2"] .variant-3,
[data-variant="3"] .variant-1,
[data-variant="3"] .variant-2 {
  display: none !important;
}

/* Переключение лендинг / thank-you */
[data-mode="landing"] .thank-you-view { display: none; }
[data-mode="thank-you"] .landing-view { display: none; }

/* Thank-you карточка (перенесено из site/1/thank-you/index.html) */
.thanks {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0 56px;
  overflow: hidden;
}

.thanks::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: var(--amber-gradient);
}

.thanks__card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.thanks__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: var(--radius-lg);
  background: var(--amber-gradient);
  font-size: 40px;
  margin: 0 auto 28px;
  box-shadow: var(--shadow-hover-glow);
}

.thanks__eyebrow { margin-left: auto; margin-right: auto; }

.thanks h1 { margin: 4px 0 20px; }

.thanks__hint {
  color: var(--text-muted-on-dark);
  font-size: clamp(1rem, 4vw, 1.15rem);
  max-width: 460px;
  margin: 0 auto 32px;
}

.thanks .btn-cta {
  width: 100%;
  max-width: 360px;
}

@media (min-width: 480px) {
  .thanks .btn-cta { width: auto; }
}

.thanks__messengers {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 360px;
  margin: 0 auto;
}

@media (min-width: 480px) {
  .thanks__messengers {
    flex-direction: row;
    justify-content: center;
    max-width: none;
  }
}

.btn-messenger {
  flex: 1;
  max-width: 240px;
  margin: 0 auto;
}

@media (min-width: 480px) {
  .btn-messenger { margin: 0; }
}

.btn-messenger__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.btn-messenger--whatsapp,
.section-alt .btn-cta.btn-messenger--whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-messenger--whatsapp:hover,
.section-alt .btn-cta.btn-messenger--whatsapp:hover {
  background: #1ebe5a;
  color: #fff;
}

.btn-messenger--telegram,
.section-alt .btn-cta.btn-messenger--telegram {
  background: #26a5e4;
  color: #fff;
}

.btn-messenger--telegram:hover,
.section-alt .btn-cta.btn-messenger--telegram:hover {
  background: #1e91cb;
  color: #fff;
}

.thanks__next {
  margin-top: var(--space-xl);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.thanks__next-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  text-align: left;
}

.thanks__next-item .icon-3d { background: rgba(255, 255, 255, 0.08); }

.thanks__next-item p {
  font-size: 14px;
  color: var(--text-muted-on-dark);
  margin: 0;
}

.thanks__next-item strong {
  display: block;
  color: var(--text-primary);
  font-size: 15px;
  margin-bottom: 2px;
}
