/* ==========================================================================
   Aura7 Landing — Styles
   ==========================================================================
   Включает: дизайн-токены, типографику, reset, контейнер, кнопки, утилиты
   ========================================================================== */

/* Golos Text — primary typeface (official foundry files). */
@font-face {
  font-family: 'Golos Text';
  src: url('assets/fonts/GolosText-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Golos Text';
  src: url('assets/fonts/GolosText-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Golos Text';
  src: url('assets/fonts/GolosText-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Golos Text';
  src: url('assets/fonts/GolosText-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Golos Text';
  src: url('assets/fonts/GolosText-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Golos Text';
  src: url('assets/fonts/GolosText-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   Design Tokens
   ========================================================================== */

:root {
  /* ---------- Brand palette ---------- */
  --a7-ink-black:    #000000;
  --a7-paper-white:  #FFFFFF;
  --a7-rose-violet:  #E472AD;
  --a7-warm-pink:    #FE8272;
  --a7-sunny-yellow: #FFD585;

  /* Extended tints/shades for UI */
  --a7-rose-50:   #FCEAF3;
  --a7-rose-100:  #F7CDE2;
  --a7-rose-300:  #EE9BC6;
  --a7-rose-500:  #E472AD;
  --a7-rose-700:  #B84A85;
  --a7-rose-900:  #6F2953;

  --a7-pink-50:   #FFECE7;
  --a7-pink-300:  #FEAB9E;
  --a7-pink-500:  #FE8272;
  --a7-pink-700:  #C75A4C;

  --a7-yellow-50:  #FFF6E1;
  --a7-yellow-300: #FFE3AE;
  --a7-yellow-500: #FFD585;
  --a7-yellow-700: #C79D4E;

  --a7-violet-900: #3A1E3D;
  --a7-violet-800: #4E2A56;
  --a7-violet-700: #6B3A72;

  /* Neutral ramp */
  --a7-neutral-0:   #FFFFFF;
  --a7-neutral-50:  #FAF7F4;
  --a7-neutral-100: #F2EDE8;
  --a7-neutral-200: #E4DCD4;
  --a7-neutral-300: #C9BFB5;
  --a7-neutral-400: #9C9289;
  --a7-neutral-500: #6E655D;
  --a7-neutral-700: #3E3832;
  --a7-neutral-900: #1A1715;
  --a7-neutral-1000:#000000;

  /* Aura Gradient */
  --a7-aura-gradient:
    linear-gradient(135deg,
      var(--a7-sunny-yellow) 0%,
      var(--a7-warm-pink) 50%,
      var(--a7-rose-violet) 100%);

  --a7-aura-gradient-h:
    linear-gradient(90deg,
      var(--a7-sunny-yellow) 0%,
      var(--a7-warm-pink) 50%,
      var(--a7-rose-violet) 100%);

  --a7-aura-gradient-soft:
    linear-gradient(135deg,
      #FFF4E0 0%,
      #FFE0D8 50%,
      #F8D5E8 100%);

  --a7-aura-gradient-radial:
    radial-gradient(120% 90% at 20% 20%,
      var(--a7-sunny-yellow) 0%,
      var(--a7-warm-pink) 45%,
      var(--a7-rose-violet) 100%);

  /* Semantic tokens */
  --fg-1: var(--a7-ink-black);
  --fg-2: var(--a7-neutral-700);
  --fg-3: var(--a7-neutral-500);
  --fg-mute: var(--a7-neutral-400);
  --fg-on-accent: var(--a7-paper-white);

  --bg-1: var(--a7-paper-white);
  --bg-2: var(--a7-neutral-50);
  --bg-3: var(--a7-neutral-100);
  --bg-night: var(--a7-neutral-900);

  --accent: var(--a7-rose-violet);
  --accent-hover: var(--a7-rose-700);
  --accent-soft: var(--a7-rose-50);

  --success: #2F9E6B;
  --warning: var(--a7-yellow-700);
  --danger:  #C7433C;
  --info:    var(--a7-violet-700);

  --border: var(--a7-neutral-200);
  --border-strong: var(--a7-neutral-300);

  /* Type */
  --font-sans: 'Golos Text', 'Helvetica Neue', system-ui, sans-serif;
  --font-display: 'Golos Text', 'Helvetica Neue', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Type scale (1.200 — minor third) */
  --text-xs:   12px;
  --text-sm:   14px;
  --text-base: 16px;
  --text-md:   18px;
  --text-lg:   22px;
  --text-xl:   28px;
  --text-2xl:  36px;
  --text-3xl:  48px;
  --text-4xl:  64px;
  --text-5xl:  88px;

  --leading-tight: 1.08;
  --leading-snug:  1.22;
  --leading-body:  1.5;
  --leading-loose: 1.7;

  --tracking-tight: -0.02em;
  --tracking-display: -0.025em;
  --tracking-caps: 0.08em;

  /* Spacing (4px base) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  /* Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-2xl: 36px;
  --radius-pill: 999px;

  /* Elevation */
  --shadow-xs: 0 1px 2px rgba(26, 23, 21, 0.06);
  --shadow-sm: 0 2px 6px rgba(26, 23, 21, 0.06), 0 1px 2px rgba(26, 23, 21, 0.04);
  --shadow-md: 0 8px 20px rgba(26, 23, 21, 0.08), 0 2px 6px rgba(26, 23, 21, 0.05);
  --shadow-lg: 0 18px 40px rgba(26, 23, 21, 0.10), 0 6px 12px rgba(26, 23, 21, 0.06);
  --shadow-glow: 0 10px 50px -10px rgba(228, 114, 173, 0.45);
  --shadow-glow-warm: 0 10px 50px -10px rgba(254, 130, 114, 0.45);

  /* Motion */
  --ease-standard: cubic-bezier(0.2, 0.6, 0.2, 1);
  --ease-out-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-1: 120ms;
  --dur-2: 200ms;
  --dur-3: 320ms;
  --dur-4: 560ms;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

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

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--leading-body);
  color: var(--fg-1);
  background: var(--bg-1);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: transparent;
}

/* Уважение prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ==========================================================================
   Type Styles
   ========================================================================== */

.a7 {
  font-family: var(--font-sans);
  color: var(--fg-1);
  font-weight: 400;
}

.a7-display,
.a7 .display {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 800;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-display);
}

.a7-h1, .a7 h1 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-display);
  margin: 0 0 var(--space-6);
}

.a7-h2, .a7 h2 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: var(--leading-snug);
  letter-spacing: var(--tracking-tight);
  margin: 0 0 var(--space-5);
}

.a7-h3, .a7 h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  line-height: var(--leading-snug);
  letter-spacing: var(--tracking-tight);
  margin: 0 0 var(--space-4);
}

.a7-h4, .a7 h4 {
  font-family: var(--font-sans);
  font-size: var(--text-xl);
  font-weight: 600;
  line-height: var(--leading-snug);
  margin: 0 0 var(--space-3);
}

.a7-lead {
  font-size: var(--text-lg);
  line-height: var(--leading-body);
  font-weight: 400;
  color: var(--fg-2);
}

.a7-p, .a7 p {
  font-size: var(--text-base);
  line-height: var(--leading-body);
  color: var(--fg-2);
  margin: 0 0 var(--space-4);
}

.a7-small, .a7 small {
  font-size: var(--text-sm);
  line-height: var(--leading-body);
  color: var(--fg-3);
}

.a7-caption {
  font-size: var(--text-xs);
  line-height: var(--leading-body);
  color: var(--fg-3);
  letter-spacing: 0.02em;
}

.a7-eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-caps);
  color: var(--fg-3);
}

.a7-mono {
  font-family: var(--font-mono);
}

.a7-gradient-text {
  background: var(--a7-aura-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ==========================================================================
   Layout — Container & Sections
   ========================================================================== */

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

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

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

.section {
  padding: 48px 0;
}

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

@media (min-width: 1200px) {
  .section {
    padding: 96px 0;
  }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: var(--text-base);
  letter-spacing: -0.01em;
  transition: all var(--dur-2) var(--ease-standard);
  white-space: nowrap;
  user-select: none;
}

.btn:focus-visible {
  outline: 2px solid var(--a7-rose-violet);
  outline-offset: 2px;
}

.btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--a7-rose-violet);
  color: var(--a7-paper-white);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  background: var(--a7-rose-700);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-primary:active {
  transform: scale(0.98);
  box-shadow: var(--shadow-sm);
}

.btn-secondary {
  background: var(--a7-paper-white);
  color: var(--a7-ink-black);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.btn-secondary:active {
  transform: scale(0.98);
}

/* CTA-группа из двух кнопок */
.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ==========================================================================
   Site Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid var(--border);
}

.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
}

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

.site-header__logo img {
  height: 28px;
  width: auto;
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  gap: 28px;
}

.site-nav a {
  color: var(--fg-2);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: color var(--dur-1) var(--ease-standard);
}

.site-nav a:hover {
  color: var(--fg-1);
}

.site-nav a:focus-visible {
  outline: 2px solid var(--a7-rose-violet);
  outline-offset: 4px;
  border-radius: 4px;
}

@media (min-width: 900px) {
  .site-nav__list {
    display: flex;
  }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--a7-aura-gradient-soft);
  padding-top: 32px;
  padding-bottom: 56px;
}

@media (min-width: 768px) {
  .hero {
    padding-top: 48px;
    padding-bottom: 88px;
  }
}

@media (min-width: 1200px) {
  .hero {
    padding-top: 56px;
    padding-bottom: 112px;
  }
}

.hero__grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 1024px) {
  .hero__grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    grid-template-rows: auto 1fr;
    column-gap: 56px;
    row-gap: 28px;
    align-items: start;
  }
  .hero__head { grid-column: 1; grid-row: 1; }
  .hero__visual { grid-column: 2; grid-row: 1 / span 2; align-self: stretch; }
  .hero__rest { grid-column: 1; grid-row: 2; }
}

/* ---------- Head ---------- */

.hero__badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--a7-paper-white);
  border: 1px solid var(--border);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--fg-2);
  margin-bottom: 20px;
  box-shadow: var(--shadow-xs);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5.4vw, 58px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--fg-1);
  margin: 0 0 20px;
}

.hero__title .a7-gradient-text {
  display: inline;
}

.hero__lead {
  font-size: var(--text-md);
  line-height: 1.5;
  color: var(--fg-2);
  margin: 0;
  max-width: 520px;
}

/* ---------- Visual (photo + cards + decor) ---------- */

.hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 360px;
}

@media (min-width: 1024px) {
  .hero__visual {
    min-height: 520px;
    padding: 20px 0;
  }
}

.hero__photo {
  width: 100%;
  max-width: 520px;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: contain;
  display: block;
}

@media (max-width: 1023px) {
  .hero__photo {
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 60%, transparent 96%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 60%, transparent 96%);
  }
}

.hero__decor {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.hero__decor--sparkle {
  top: -12px;
  right: 4px;
  width: 72px;
  height: auto;
  transform: rotate(10deg);
}

@media (min-width: 1024px) {
  .hero__decor--sparkle {
    top: -4px;
    right: 8px;
    width: 92px;
  }
}

/* Review card — mobile: static block under photo */
.review-card {
  margin: 16px 0 0;
  padding: 16px 20px;
  background: var(--a7-paper-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
  width: 100%;
  max-width: 420px;
}

.review-card__text {
  margin: 0;
  padding: 0;
  font-size: var(--text-sm);
  line-height: 1.45;
  color: var(--fg-1);
  font-weight: 500;
}

.review-card__meta {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.review-card__author {
  font-size: var(--text-xs);
  color: var(--fg-3);
}

.review-card__stars {
  color: var(--a7-warm-pink);
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1;
}

/* Pro card — mobile: static block */
.pro-card {
  margin: 12px 0 0;
  padding: 20px 22px;
  background: var(--a7-ink-black);
  color: var(--a7-paper-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 420px;
}

.pro-card__title {
  font-size: var(--text-md);
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--a7-paper-white);
  letter-spacing: -0.01em;
}

.pro-card__text {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  line-height: 1.45;
}

/* Desktop: absolute overlay cards */
@media (min-width: 1024px) {
  .review-card {
    position: absolute;
    top: 60px;
    left: -16px;
    right: auto;
    max-width: 220px;
    margin: 0;
    z-index: 2;
  }
  .pro-card {
    position: absolute;
    bottom: 16px;
    right: -16px;
    left: auto;
    max-width: 240px;
    margin: 0;
    z-index: 2;
  }
}

@media (min-width: 1200px) {
  .review-card {
    left: -24px;
    right: auto;
    max-width: 240px;
    top: 80px;
  }
  .pro-card {
    right: -24px;
    left: auto;
    max-width: 260px;
    bottom: 24px;
  }
}

/* ---------- Rest (features, sub, cta, experts) ---------- */

.hero__features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 560px) {
  .hero__features {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

.hero__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--a7-paper-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  color: var(--fg-2);
  box-shadow: var(--shadow-xs);
  line-height: 1.3;
}

.hero__features img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.hero__features strong {
  color: var(--fg-1);
  font-weight: 700;
}

.hero__sub {
  font-size: var(--text-lg);
  font-weight: 700;
  margin: 0 0 20px;
  color: var(--fg-1);
  line-height: 1.3;
  letter-spacing: -0.015em;
}

.hero__experts {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.experts-avatars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.experts-avatars li {
  margin-left: -10px;
}

.experts-avatars li:first-child {
  margin-left: 0;
}

.experts-avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--a7-paper-white);
  object-fit: cover;
  box-shadow: var(--shadow-xs);
  background: var(--a7-neutral-100);
}

.hero__experts-text {
  font-size: var(--text-sm);
  color: var(--fg-2);
  margin: 0;
  line-height: 1.4;
}

.hero__experts-text strong {
  color: var(--fg-1);
  font-weight: 700;
}

/* ==========================================================================
   Section Title (shared)
   ========================================================================== */

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, var(--text-3xl));
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  text-align: center;
  margin: 0 0 40px;
  color: var(--fg-1);
}

/* ==========================================================================
   Earnings Section
   ========================================================================== */

.earnings {
  background: var(--bg-1);
}

.earnings__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .earnings__list {
    grid-template-columns: 1fr 1fr;
  }
}

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

.earn-card {
  background: var(--a7-paper-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.earn-card__icon {
  width: 32px;
  height: 32px;
}

.earn-card__level {
  font-size: var(--text-xl);
  font-weight: 700;
  margin: 8px 0 0;
  color: var(--fg-1);
  letter-spacing: -0.01em;
}

.earn-card__badge {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--a7-rose-50);
  color: var(--a7-rose-700);
  font-size: var(--text-xs);
  font-weight: 600;
}

.earn-card--mid .earn-card__badge {
  background: var(--a7-yellow-50);
  color: var(--a7-yellow-700);
}

.earn-card--top .earn-card__badge {
  background: var(--a7-aura-gradient);
  color: var(--a7-paper-white);
}

.earn-card__amount {
  font-size: clamp(28px, 4vw, var(--text-2xl));
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 8px 0 0;
  background: var(--a7-aura-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}

.earn-card__period {
  color: var(--fg-3);
  font-size: var(--text-sm);
  margin: 0 0 16px;
}

.earn-card__conds {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  font-size: var(--text-sm);
  color: var(--fg-2);
}

.earn-card__conds li {
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}

.earn-card__conds li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--a7-rose-violet);
  font-weight: 700;
  font-size: 13px;
}

/* ==========================================================================
   Audience + Practice Section
   ========================================================================== */

.audience {
  background: var(--a7-neutral-50);
}

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

@media (min-width: 1024px) {
  .audience__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

.audience__card,
.practice__card {
  background: var(--a7-paper-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.audience__title,
.practice__title {
  font-size: var(--text-xl);
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--fg-1);
  letter-spacing: -0.015em;
}

.audience__lead {
  color: var(--fg-2);
  margin: 0 0 20px;
  font-size: var(--text-base);
  line-height: 1.5;
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.checklist li {
  padding-left: 32px;
  position: relative;
  color: var(--fg-2);
  font-size: var(--text-sm);
  line-height: 1.45;
}

.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  background-color: var(--a7-rose-50);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23E472AD'%3E%3Cpath d='M7.5 13.5l-3-3 1.4-1.4 1.6 1.6L13.1 5l1.4 1.4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
  border-radius: 50%;
}

.audience__decor {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: auto;
  opacity: 0.35;
  pointer-events: none;
}

.tags {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  padding: 8px 14px;
  background: var(--a7-neutral-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: var(--text-sm);
  color: var(--fg-2);
  transition: border-color var(--dur-1) var(--ease-standard), color var(--dur-1) var(--ease-standard);
  cursor: default;
}

.tag:hover {
  border-color: var(--a7-rose-300);
  color: var(--a7-rose-700);
}

.practice__note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--a7-yellow-50);
  border-radius: var(--radius-md);
}

.practice__note img {
  flex-shrink: 0;
  margin-top: 1px;
}

.practice__note p {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--fg-2);
  line-height: 1.45;
}

.practice__note strong {
  color: var(--fg-1);
}

/* ==========================================================================
   Client Flow Section
   ========================================================================== */

.flow {
  background: var(--bg-1);
}

.flow__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .flow__steps {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 16px;
    align-items: center;
  }
}

.flow-step {
  background: var(--a7-paper-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 24px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--shadow-sm);
  margin-top: 18px;
}

.flow-step__num {
  position: absolute;
  top: -18px;
  left: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--a7-aura-gradient);
  color: var(--a7-paper-white);
  font-weight: 800;
  font-size: var(--text-sm);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  line-height: 1;
}

.flow-step__icon {
  width: 40px;
  height: 40px;
  margin-top: 4px;
}

.flow-step__title {
  font-size: var(--text-md);
  font-weight: 700;
  margin: 4px 0 0;
  color: var(--fg-1);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.flow-step__text {
  font-size: var(--text-sm);
  color: var(--fg-2);
  margin: 0;
  line-height: 1.45;
}

.flow-arrow {
  align-self: center;
  justify-self: center;
  font-size: 28px;
  color: var(--a7-rose-violet);
  font-weight: 600;
  display: none;
  line-height: 1;
}

@media (min-width: 1024px) {
  .flow-arrow {
    display: block;
  }
  .flow-step {
    margin-top: 0;
  }
}

.flow__note {
  margin: 40px auto 0;
  max-width: 700px;
  padding: 16px 28px;
  background: var(--a7-paper-white);
  color: var(--a7-rose-violet);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1.4;
}

.flow__note-spark {
  flex-shrink: 0;
  display: block;
}

.flow__note strong {
  color: var(--a7-rose-violet);
  font-weight: 700;
}

/* ==========================================================================
   Realistic Start Section
   ========================================================================== */

.start {
  background: var(--a7-neutral-50);
}

.start__cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

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

.start-card {
  background: var(--a7-paper-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  position: relative;
  box-shadow: var(--shadow-xs);
}

.start-card img {
  width: 40px;
  height: 40px;
}

.start-card__title {
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--fg-3);
  margin: 12px 0 8px;
  letter-spacing: -0.01em;
}

.start-card__lead {
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
  line-height: 1.1;
  background: var(--a7-aura-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.start-card__text {
  font-size: var(--text-sm);
  color: var(--fg-2);
  margin: 0;
  line-height: 1.45;
}

@media (min-width: 768px) {
  .start-card:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--a7-rose-violet);
    font-size: 22px;
    font-weight: 600;
    z-index: 1;
  }
}

/* ==========================================================================
   Value (Это просто) + Trust Section
   ========================================================================== */

.value {
  background: var(--bg-1);
}

.value__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 1024px) {
  .value__grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
  }
}

.value__title,
.trust__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 24px;
  color: var(--fg-1);
}

.value__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.value-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  background: var(--a7-paper-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--dur-2) var(--ease-standard);
}

.value-card:hover {
  box-shadow: var(--shadow-sm);
}

.value-card img {
  width: 40px;
  height: 40px;
  padding: 8px;
  background: var(--a7-rose-50);
  border-radius: var(--radius-md);
}

.value-card__title {
  font-size: var(--text-md);
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--fg-1);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.value-card__text {
  font-size: var(--text-sm);
  color: var(--fg-2);
  margin: 0;
  line-height: 1.45;
}

/* Trust card */

.trust {
  padding: 28px;
  background: var(--a7-paper-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  gap: 0 20px;
  align-items: start;
}

.trust__title {
  grid-column: 1;
  grid-row: 1;
}

.trust .checklist {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
  align-self: start;
}

.trust__shield {
  grid-column: 2;
  grid-row: 1 / 3;
  display: block;
  width: 120px;
  height: auto;
  align-self: center;
  opacity: 0.88;
}

/* ==========================================================================
   Final CTA Section
   ========================================================================== */

.final-cta {
  padding: 0 0 64px;
}

.final-cta__card {
  position: relative;
  overflow: hidden;
  padding: 48px 28px;
  border-radius: var(--radius-2xl);
  background: var(--a7-aura-gradient);
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 1024px) {
  .final-cta__card {
    grid-template-columns: 1.1fr 1fr;
    padding: 64px 72px;
    gap: 48px;
  }
}

.final-cta__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, var(--text-3xl));
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--a7-ink-black);
  margin: 0 0 16px;
}

.final-cta__lead {
  font-size: var(--text-md);
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.72);
  margin: 0 0 28px;
  max-width: 480px;
}

.final-cta__note {
  margin: 20px 0 0;
  font-size: var(--text-sm);
  color: rgba(0, 0, 0, 0.58);
  line-height: 1.4;
}

/* Кнопки внутри CTA: на градиенте rose-violet нечитаемы,
   поэтому primary — чёрная, secondary — белая без бордера */
.btn-cta-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: var(--text-base);
  letter-spacing: -0.01em;
  transition: all var(--dur-2) var(--ease-standard);
  white-space: nowrap;
  background: var(--a7-ink-black);
  color: var(--a7-paper-white);
  box-shadow: var(--shadow-md);
}

.btn-cta-dark:hover {
  background: var(--a7-neutral-900);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

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

.btn-cta-dark:focus-visible {
  outline: 2px solid var(--a7-paper-white);
  outline-offset: 2px;
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: var(--text-base);
  letter-spacing: -0.01em;
  transition: all var(--dur-2) var(--ease-standard);
  white-space: nowrap;
  background: var(--a7-paper-white);
  color: var(--a7-ink-black);
  box-shadow: var(--shadow-sm);
}

.btn-cta-white:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

.btn-cta-white:focus-visible {
  outline: 2px solid var(--a7-ink-black);
  outline-offset: 2px;
}

.final-cta__visual {
  display: flex;
  justify-content: center;
}

.final-cta__visual img {
  width: 100%;
  max-width: 460px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: block;
}

/* ==========================================================================
   Anchor Stubs
   ========================================================================== */

.anchor-stub {
  padding: 56px 0;
  border-top: 1px solid var(--border);
}

.anchor-stub__text {
  text-align: center;
  color: var(--fg-3);
  margin: 0;
  font-size: var(--text-base);
}

.anchor-stub a {
  color: var(--a7-rose-violet);
  border-bottom: 1px solid currentColor;
  transition: color var(--dur-1) var(--ease-standard);
}

.anchor-stub a:hover {
  color: var(--a7-rose-700);
}

.anchor-stub a:focus-visible {
  outline: 2px solid var(--a7-rose-violet);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ==========================================================================
   Trust Notice Bar
   ========================================================================== */

.trust-notice {
  background: linear-gradient(90deg, #fdf2f8 0%, #f5f0ff 100%);
  border-top: 1px solid var(--a7-rose-100);
  border-bottom: 1px solid var(--a7-rose-100);
  padding: 14px 0;
}

.trust-notice__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.trust-notice__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-top: 1px;
}

.trust-notice__text {
  font-size: var(--text-sm);
  color: var(--fg-2);
  margin: 0;
  line-height: 1.55;
}

/* ==========================================================================
   Site Footer
   ========================================================================== */

.site-footer {
  padding: 32px 0 40px;
  background: var(--a7-neutral-50);
  border-top: 1px solid var(--border);
}

.site-footer__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
}

.site-footer__logo img {
  height: 22px;
  width: auto;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.site-footer__nav a {
  font-size: var(--text-sm);
  color: var(--fg-3);
  transition: color var(--dur-1) var(--ease-standard);
}

.site-footer__nav a:hover {
  color: var(--fg-1);
}

.site-footer__nav a:focus-visible {
  outline: 2px solid var(--a7-rose-violet);
  outline-offset: 3px;
  border-radius: 3px;
}

.site-footer__copy {
  font-size: var(--text-sm);
  color: var(--fg-3);
  margin: 0;
  width: 100%;
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .site-footer__copy {
    width: auto;
    padding-top: 0;
    border-top: 0;
    text-align: right;
  }
}

/* ==========================================================================
   Header CTA Button
   ========================================================================== */

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: -0.01em;
  transition: all var(--dur-2) var(--ease-standard);
  white-space: nowrap;
  flex-shrink: 0;
  background: linear-gradient(90deg, #FF6B3C 0%, var(--a7-rose-violet) 100%);
  color: var(--a7-paper-white);
  box-shadow: 0 4px 18px -4px rgba(254, 107, 60, 0.45);
}

.btn-header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px -4px rgba(254, 107, 60, 0.58);
  filter: brightness(1.06);
}

.btn-header-cta:active {
  transform: scale(0.97);
}

.btn-header-cta:focus-visible {
  outline: 2px solid var(--a7-rose-violet);
  outline-offset: 3px;
}

/* ==========================================================================
   Hero: disabled apply button + hint
   ========================================================================== */

.cta-group {
  align-items: flex-start;
}

.cta-apply-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.btn-hero-disabled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: var(--text-base);
  letter-spacing: -0.01em;
  white-space: nowrap;
  background: var(--a7-neutral-100);
  color: var(--a7-neutral-400);
  cursor: not-allowed;
  border: 1px solid var(--border);
  user-select: none;
}

.cta-apply-hint {
  font-size: var(--text-xs);
  color: var(--fg-mute);
  margin: 0;
  text-align: center;
  line-height: 1.3;
}

/* Hero sub — accent color */
.hero__sub {
  color: var(--a7-rose-violet) !important;
}

/* ==========================================================================
   CTA block — label + buttons + hint
   ========================================================================== */

.cta-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: var(--a7-paper-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
}

.cta-block__label {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--fg-2);
  letter-spacing: -0.01em;
}

.cta-block__arrow {
  color: var(--a7-rose-violet);
  flex-shrink: 0;
}

.cta-block__hint {
  font-size: var(--text-xs);
  color: var(--fg-mute);
  margin: 0;
  padding-left: 2px;
}

/* ==========================================================================
   Pro-card — white (matching reference)
   ========================================================================== */

.pro-card {
  background: var(--a7-paper-white) !important;
  color: var(--fg-1) !important;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pro-card__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-bottom: 2px;
}

.pro-card__title {
  color: var(--fg-1) !important;
}

.pro-card__text {
  color: var(--fg-2) !important;
}

/* ==========================================================================
   Review card — decorative quote mark
   ========================================================================== */

.review-card {
  position: relative;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 4px;
  left: 14px;
  font-size: 44px;
  line-height: 1;
  color: var(--a7-rose-100);
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  pointer-events: none;
  z-index: 0;
}

.review-card__text {
  position: relative;
  z-index: 1;
  padding-top: 20px;
}

/* ==========================================================================
   Earn cards — inline level + badge header
   ========================================================================== */

.earn-card__header {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.earn-card__level {
  margin: 0 !important;
}

.earn-card__badge {
  align-self: center;
}

/* Icon tinted backgrounds per tier */
.earn-card--starter .earn-card__icon {
  width: 44px;
  height: 44px;
  padding: 8px;
  background: var(--a7-rose-50);
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.earn-card--mid .earn-card__icon {
  width: 44px;
  height: 44px;
  padding: 8px;
  background: var(--a7-yellow-50);
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.earn-card--top .earn-card__icon {
  width: 44px;
  height: 44px;
  padding: 8px;
  background: #FFF0E0;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

/* TOP card — warm accent top-border */
.earn-card--top {
  border-top: 3px solid var(--a7-warm-pink);
  box-shadow: var(--shadow-md), 0 6px 20px -8px rgba(254, 130, 114, 0.3);
}


/* ==========================================================================
   Section title — tighter on mobile
   ========================================================================== */

@media (max-width: 767px) {
  .section-title {
    margin-bottom: 28px;
  }
}

/* ==========================================================================
   Anchor stubs — improved look
   ========================================================================== */

.anchor-stub .section-title {
  margin-bottom: 12px;
}

/* ==========================================================================
   App UI Mockup — final-cta visual preview
   ========================================================================== */

.app-mockup {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transform: perspective(900px) rotateY(-5deg) rotateX(2deg);
  transform-origin: center top;
}

.app-mockup__phone {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.14), 0 2px 8px rgba(0,0,0,0.07);
  padding: 12px 13px 16px;
  width: 192px;
  flex-shrink: 0;
}

.app-phone__statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  font-weight: 500;
  color: #888;
  margin-bottom: 10px;
  padding: 0 2px;
}

.app-phone__header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 11px;
}

.app-phone__title {
  font-weight: 700;
  font-size: 15px;
  color: #1a1a2e;
  font-family: var(--font-display);
}

.app-phone__tabs {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
  flex-wrap: nowrap;
  overflow: hidden;
}

.app-tab {
  font-size: 9.5px;
  font-weight: 500;
  padding: 3px 6px;
  border-radius: 20px;
  background: #f0f0f5;
  color: #777;
  white-space: nowrap;
  line-height: 1.5;
  flex-shrink: 1;
  min-width: 0;
}

.app-tab strong {
  font-weight: 700;
}

.app-tab--active {
  background: linear-gradient(90deg, #FF6B9D 0%, #E472AD 100%);
  color: #fff;
}

.app-client-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff5f9;
  border-radius: 10px;
  padding: 10px;
}

.app-client__row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-client__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF8FAB 0%, #A78BFA 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
}

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

.app-client__name {
  font-size: 12px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.3;
}

.app-client__type,
.app-client__time {
  font-size: 10px;
  color: #999;
  line-height: 1.4;
}

.app-client__online {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: #999;
  margin-top: 3px;
  line-height: 1.2;
}

.app-client__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  flex-shrink: 0;
}

.app-client__accept {
  background: linear-gradient(90deg, #FF6B9D 0%, #E472AD 100%);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: center;
  line-height: 1.2;
}

.app-client__online-btn {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 10.5px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #FF6B9D 0%, #E472AD 100%);
  padding: 7px 0;
  border-radius: 20px;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(255, 107, 157, 0.30);
  box-sizing: border-box;
}

.app-mockup__stats {
  background: linear-gradient(160deg, #fff 60%, #fff0f6 100%);
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(255, 107, 157, 0.14), 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid rgba(255, 107, 157, 0.12);
  padding: 18px 18px 14px;
  width: 158px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.app-stats__label {
  font-size: 11px;
  color: #999;
  line-height: 1.45;
  margin: 0 0 4px;
}

.app-stats__number {
  font-size: 42px;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1;
  margin: 0 0 12px;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

.app-stats__graph {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1023px) {
  .app-mockup {
    transform: none;
    max-width: 380px;
    margin: 0 auto;
  }
}

@media (max-width: 479px) {
  .app-mockup__phone {
    width: 158px;
    padding: 10px 11px 14px;
  }
  .app-mockup__stats {
    width: 136px;
    padding: 13px 14px 12px;
  }
  .app-stats__number {
    font-size: 34px;
  }
}

/* ==========================================================================
   Legal Footer
   ========================================================================== */

.legal-footer {
  background: #fff;
  border-top: 1px solid var(--border);
}

.legal-footer__inner {
  padding: 40px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.legal-footer__logo {
  display: inline-flex;
  margin-bottom: 28px;
}

.legal-footer__divider {
  height: 1px;
  background: var(--border);
  margin: 0 0 24px;
}

.legal-footer__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.legal-footer__text p {
  font-size: 13px;
  color: var(--fg-2);
  line-height: 1.6;
  margin: 0;
}

.legal-footer__text a {
  color: var(--fg-2);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-footer__text a:hover {
  color: var(--fg-1);
}

.legal-footer__bottom {
  display: flex;
  align-items: center;
  gap: 16px;
}

.legal-footer__copy {
  font-size: 13px;
  color: var(--fg-3);
  margin: 0;
}

.legal-footer__age {
  font-size: 11px;
  font-weight: 600;
  color: var(--fg-3);
  border: 1.5px solid var(--border);
  border-radius: 4px;
  padding: 1px 5px;
  line-height: 1.5;
  flex-shrink: 0;
}

/* ==========================================================================
   Hero CTA Block — enhanced accent card
   ========================================================================== */

.cta-block--accent {
  background: linear-gradient(135deg, #fff 0%, #FFF2F8 100%);
  border: 1.5px solid var(--a7-rose-100);
  box-shadow: var(--shadow-lg), 0 0 0 4px var(--a7-rose-50);
  padding: 28px 28px 24px;
  gap: 14px;
}

.cta-block__title {
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: 700;
  line-height: 1.35;
  color: var(--fg-1);
  letter-spacing: -0.015em;
  margin: 0;
}

.cta-block__sub {
  font-size: var(--text-xs);
  color: var(--fg-3);
  margin: 0;
  line-height: 1.4;
}

/* Hero Telegram button — gradient pink accent */
.btn-hero-tg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: var(--text-md);
  letter-spacing: -0.01em;
  white-space: nowrap;
  background: linear-gradient(90deg, var(--a7-warm-pink) 0%, var(--a7-rose-violet) 100%);
  color: var(--a7-paper-white);
  box-shadow: var(--shadow-glow), 0 4px 16px -4px rgba(254, 130, 114, 0.5);
  transition: all var(--dur-2) var(--ease-standard);
}

.btn-hero-tg:hover {
  filter: brightness(1.07);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-hero-tg:active {
  transform: scale(0.98);
}

.btn-hero-tg:focus-visible {
  outline: 2px solid var(--a7-rose-violet);
  outline-offset: 3px;
}

/* Hero MAX button — secondary with pink border */
.btn-hero-max {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: var(--text-md);
  letter-spacing: -0.01em;
  white-space: nowrap;
  background: var(--a7-paper-white);
  color: var(--fg-1);
  border: 1.5px solid var(--a7-rose-100);
  box-shadow: var(--shadow-sm);
  transition: all var(--dur-2) var(--ease-standard);
}

.btn-hero-max:hover {
  border-color: var(--a7-rose-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-hero-max:active {
  transform: scale(0.98);
}

.btn-hero-max:focus-visible {
  outline: 2px solid var(--a7-rose-violet);
  outline-offset: 3px;
}

/* ==========================================================================
   Earnings cards — tier visual gradient
   ========================================================================== */

/* Mid card — warm tinted top strip + stronger border */
.earn-card--mid {
  background: linear-gradient(180deg, #FFFDF2 0%, 52px, #ffffff 52px);
  border-color: var(--a7-yellow-300);
  box-shadow: var(--shadow-md);
}

/* Trend icon row for mid card */
.earn-card__icon-tray {
  display: flex;
  align-items: center;
  gap: 8px;
}

.earn-card__trend {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--a7-yellow-700);
  flex-shrink: 0;
}

/* TOP card — gradient border all around + warm glow */
.earn-card--top {
  border: 2px solid transparent;
  background:
    linear-gradient(var(--a7-paper-white), var(--a7-paper-white)) padding-box,
    linear-gradient(135deg, var(--a7-sunny-yellow) 0%, var(--a7-warm-pink) 50%, var(--a7-rose-violet) 100%) border-box;
  box-shadow: var(--shadow-lg), 0 10px 36px -8px rgba(228, 114, 173, 0.28);
}

/* TOP card "Максимальная загрузка" super-label */
.earn-card__top-label {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: var(--a7-aura-gradient-soft);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--a7-rose-700);
  letter-spacing: 0.01em;
  margin-bottom: 4px;
}

/* ==========================================================================
   Earnings — career path scale
   ========================================================================== */

.earnings__path {
  margin-top: 36px;
  padding: 0 4px;
}

.earnings__path-track {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.earnings__path-track::before {
  content: '';
  position: absolute;
  top: 7px;
  left: 20px;
  right: 20px;
  height: 3px;
  background: linear-gradient(90deg,
    var(--a7-pink-300) 0%,
    var(--a7-warm-pink) 50%,
    var(--a7-rose-violet) 100%);
  border-radius: var(--radius-pill);
  z-index: 0;
}

.earnings__path-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
  max-width: 100px;
}

.earnings__path-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2.5px solid var(--a7-paper-white);
  flex-shrink: 0;
}

.earnings__path-point--1 .earnings__path-dot {
  background: var(--a7-pink-300);
  box-shadow: 0 0 0 2px var(--a7-pink-300);
}

.earnings__path-point--2 .earnings__path-dot {
  background: var(--a7-warm-pink);
  box-shadow: 0 0 0 2px var(--a7-warm-pink);
}

.earnings__path-point--3 .earnings__path-dot {
  background: var(--a7-rose-violet);
  box-shadow: 0 0 0 2px var(--a7-rose-violet);
}

.earnings__path-point span {
  font-size: var(--text-xs);
  color: var(--fg-3);
  font-weight: 500;
  text-align: center;
  line-height: 1.35;
}

.earnings__path-point--3 span {
  color: var(--a7-rose-700);
  font-weight: 700;
}

/* ==========================================================================
   Earnings — income disclaimer note
   ========================================================================== */

.earnings__note {
  margin: 24px auto 0;
  width: 78%;
  background: linear-gradient(135deg, #FFF8F2 0%, #FFF2F8 100%);
  border: 1px solid var(--a7-rose-100);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

@media (max-width: 767px) {
  .earnings__note {
    width: 100%;
  }
}

.earnings__note-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--a7-rose-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--a7-rose-700);
  margin-top: 1px;
}

.earnings__note-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-2);
  margin: 0;
}

.earnings__note-text strong {
  color: var(--fg-1);
  font-weight: 700;
}

/* ==========================================================================
   Hero features — premium redesigned cards
   ========================================================================== */

/* Base card override — higher specificity than .hero__features li */
.hero__features .hero-feat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  min-height: 76px;
  background: linear-gradient(135deg, #ffffff 0%, #FFF7F4 100%);
  border: 1px solid #FFD5C8;
  border-radius: 18px;
  box-shadow: 0 3px 10px rgba(228, 87, 140, 0.07), 0 1px 2px rgba(26, 23, 21, 0.04);
  font-size: var(--text-base);
  color: var(--fg-1);
  line-height: 1.25;
  transition: transform var(--dur-2) var(--ease-standard),
              box-shadow var(--dur-2) var(--ease-standard);
}

.hero__features .hero-feat:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(228, 87, 140, 0.14), 0 3px 8px rgba(26, 23, 21, 0.06);
}

/* Per-card accent tints */
.hero__features .hero-feat--1 {
  background: linear-gradient(135deg, #ffffff 0%, #FFF3EE 100%);
  border-color: #FFCFBA;
}

.hero__features .hero-feat--2 {
  background: linear-gradient(135deg, #ffffff 0%, #FFF1F6 100%);
  border-color: #FFC4D6;
}

.hero__features .hero-feat--3 {
  background: linear-gradient(135deg, #ffffff 0%, #F5F0FF 100%);
  border-color: #DDD0F8;
}

/* Icon container */
.hero-feat__icon-wrap {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-feat--1 .hero-feat__icon-wrap {
  background: #FFE6DC;
  color: #C8481A;
}

.hero-feat--2 .hero-feat__icon-wrap {
  background: #FFE0EB;
  color: var(--a7-rose-700);
}

.hero-feat--3 .hero-feat__icon-wrap {
  background: #EDE5FF;
  color: var(--a7-violet-700);
}

/* Text body */
.hero-feat__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.hero-feat__badge {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--fg-mute);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1;
}

.hero-feat__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--fg-1);
  line-height: 1.28;
  letter-spacing: -0.01em;
  display: block;
}

/* ==========================================================================
   Hero visual — логотип-бейдж поверх фото
   ========================================================================== */

.hero__visual-badge {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.hero__visual-badge img {
  height: 20px;
  width: auto;
  display: block;
}

/* ==========================================================================
   Hero photo — плавное исчезновение снизу на десктопе (как на мобиле)
   ========================================================================== */

/* superseded by V2 override below */

/* ==========================================================================
   Hero visual — фикс перекрытия карточек на десктопе
   ========================================================================== */

@media (min-width: 1024px) {
  .hero__visual {
    min-height: 680px;
  }

  .review-card {
    top: 80px;
    left: 0;
  }

  .pro-card {
    bottom: 60px;
    right: 0;
  }
}

@media (min-width: 1200px) {
  .hero__visual {
    min-height: 720px;
  }

  .review-card {
    top: 100px;
    left: -8px;
  }

  .pro-card {
    bottom: 64px;
    right: -8px;
  }
}

/* ==========================================================================
   Start Section — Roadmap Redesign
   ========================================================================== */

/* Section background + decorative blobs */
.start {
  position: relative;
  overflow: hidden;
}

.start__bg-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.start__bg-deco::before,
.start__bg-deco::after {
  content: '';
  position: absolute;
  border-radius: 50%;
}

.start__bg-deco::before {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(254, 130, 114, 0.11) 0%, transparent 68%);
  top: -160px;
  right: -100px;
}

.start__bg-deco::after {
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(228, 114, 173, 0.09) 0%, transparent 68%);
  bottom: -120px;
  left: -80px;
}

.start .container {
  position: relative;
  z-index: 1;
}

/* Section subtitle */
.start__subtitle {
  font-size: 16px;
  color: var(--fg-2);
  text-align: center;
  margin: -4px auto 44px;
  max-width: 620px;
  line-height: 1.6;
}

/* === Progress track (desktop only) === */
.start__track {
  display: none;
}

@media (min-width: 768px) {
  .start__track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: relative;
    margin-bottom: 20px;
    height: 44px;
    align-items: center;
  }
}

.start__track-line {
  display: none;
}

@media (min-width: 768px) {
  .start__track-line {
    display: block;
    position: absolute;
    top: 50%;
    left: calc(100% / 6);
    right: calc(100% / 6);
    height: 2px;
    background: linear-gradient(90deg, #FFD585 0%, #FE8272 45%, #E472AD 100%);
    transform: translateY(-50%);
    border-radius: 2px;
    opacity: 0.8;
  }
}

.start__dot {
  display: none;
}

@media (min-width: 768px) {
  .start__dot {
    display: flex;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: white;
    font-size: 13px;
    font-weight: 800;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    font-family: inherit;
    line-height: 1;
    border: 2.5px solid var(--a7-neutral-50);
  }

  .start__dot--1 {
    background: linear-gradient(135deg, #FFD070 0%, #FFBA40 100%);
    box-shadow: 0 3px 10px rgba(255, 185, 60, 0.5);
    color: #6A3E00;
  }

  .start__dot--2 {
    background: linear-gradient(135deg, #FFA090 0%, #FE7060 100%);
    box-shadow: 0 3px 10px rgba(254, 112, 96, 0.5);
  }

  .start__dot--3 {
    background: linear-gradient(135deg, #E472AD 0%, #C844A0 100%);
    box-shadow: 0 3px 12px rgba(200, 68, 160, 0.5);
  }
}

/* === Card overrides === */
.start-card {
  background: white;
  border: 1.5px solid #F2DDD5;
  border-radius: 24px;
  padding: 26px 24px 24px;
  position: relative;
  box-shadow: 0 4px 18px rgba(228, 87, 140, 0.06), 0 1px 3px rgba(26, 23, 21, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  list-style: none;
}

.start-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(228, 87, 140, 0.11), 0 2px 6px rgba(26, 23, 21, 0.05);
}

/* Remove old arrow connector */
.start-card:not(:last-child)::after {
  display: none !important;
}

/* Card 1 — warm peach-yellow tint */
.start-card--1 {
  background: linear-gradient(150deg, #FFF8EC 0%, #FFFFFF 58%);
  border-color: #FFE2B5;
}

/* Card 2 — soft peach tint */
.start-card--2 {
  background: linear-gradient(150deg, #FFF3EE 0%, #FFFFFF 58%);
  border-color: #FFCABC;
}

/* Card 3 — rose gradient border (most premium) */
.start-card--3 {
  background:
    linear-gradient(150deg, #FFF0F6 0%, #FFFFFF 58%) padding-box,
    linear-gradient(135deg, #FFD585 0%, #FE8272 38%, #E472AD 72%, #C844A0 100%) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 4px 20px rgba(200, 68, 160, 0.1), 0 1px 3px rgba(26, 23, 21, 0.04);
}

.start-card--3:hover {
  box-shadow: 0 10px 32px rgba(200, 68, 160, 0.16), 0 2px 6px rgba(26, 23, 21, 0.05);
}

/* Card top row: icon + badge */
.start-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

/* Icon containers */
.start-card__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.start-card--1 .start-card__icon-wrap {
  background: #FFEEC0;
  color: #8A5B00;
}

.start-card--2 .start-card__icon-wrap {
  background: #FFE2D0;
  color: #A84030;
}

.start-card--3 .start-card__icon-wrap {
  background: linear-gradient(135deg, #FFD5E8 0%, #F8C8E2 100%);
  color: #9A3468;
  box-shadow: 0 3px 10px rgba(200, 68, 160, 0.25);
}

/* Step badges */
.start-card__badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 4px 11px;
  border-radius: 100px;
  line-height: 1;
}

.start-card--1 .start-card__badge {
  background: #FFE8B0;
  color: #7A5000;
}

.start-card--2 .start-card__badge {
  background: #FFD8C4;
  color: #8A3820;
}

.start-card--3 .start-card__badge {
  background: linear-gradient(90deg, #FFD0E8, #F5C4DF);
  color: #7A2A50;
}

/* Eyebrow label */
.start-card__eyebrow {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--fg-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 5px;
}

/* Lead (main value) — keep gradient, adjust size */
.start__cards .start-card__lead {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
  line-height: 1.1;
}

/* Description */
.start__cards .start-card__text {
  font-size: 13.5px;
  color: var(--fg-2);
  margin: 0;
  line-height: 1.5;
}

/* ==========================================================================
   Value + Trust Section Layout Fix
   ========================================================================== */

/* Stretch both columns to the same height on desktop */
@media (min-width: 1024px) {
  .value__grid {
    align-items: stretch;
  }

  .value__col {
    display: flex;
    flex-direction: column;
  }

  .value__list {
    flex: 1;
  }
}

/* Simplify trust card — remove internal 2-column grid, go flex column */
.trust {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.trust__title {
  grid-column: unset;
  grid-row: unset;
}

.trust .checklist {
  grid-column: unset;
  grid-row: unset;
  flex: 1;
}

/* Hide shield image */
.trust__shield {
  display: none;
}

/* ==========================================================================
   Final CTA — Glassmorphic Button Panel
   ========================================================================== */

/* Reduce lead margin so box follows tighter */
.final-cta__content .final-cta__lead {
  margin-bottom: 16px;
}

/* Glass box wrapping the buttons */
.final-cta__cta-box {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.26);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.44);
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.55);
  margin-bottom: 20px;
}

.final-cta__cta-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(26, 23, 21, 0.58);
  letter-spacing: 0.01em;
  padding: 0 2px;
}

.final-cta__cta-box .cta-group {
  gap: 10px;
  align-items: center;
}

/* Telegram — primary white gradient button */
.btn-final-tg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 54px;
  padding: 0 22px 0 6px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  color: #1A1715;
  background: linear-gradient(135deg, #ffffff 0%, #fff4f8 100%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 26px rgba(255, 255, 255, 0.3), 0 4px 12px rgba(0, 0, 0, 0.09);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.btn-final-tg:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255, 255, 255, 0.38), 0 6px 16px rgba(0, 0, 0, 0.11);
}

.btn-final-tg:active {
  transform: scale(0.98);
}

/* MAX — secondary semi-transparent button */
.btn-final-max {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 54px;
  padding: 0 22px 0 6px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  color: #1A1715;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.btn-final-max:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 22px rgba(0, 0, 0, 0.10);
}

.btn-final-max:active {
  transform: scale(0.98);
}

/* Colored icon circles inside buttons */
.btn-final__circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-final__circle--tg {
  background: #2AABEE;
}

.btn-final__circle--max {
  background: linear-gradient(135deg, #9B59D0, #7B5CF6);
}

/* ==========================================================================
   Value Cards — Premium Polish
   ========================================================================== */

.value-card {
  padding: 22px 20px;
  border-color: #F2DDD5;
  box-shadow: 0 3px 14px rgba(228, 87, 140, 0.06), 0 1px 2px rgba(26, 23, 21, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  border-radius: 20px;
}

.value-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(228, 87, 140, 0.09), 0 2px 4px rgba(26, 23, 21, 0.04);
  border-color: #EBC8BE;
}

.value-card img {
  width: 44px;
  height: 44px;
  padding: 9px;
  background: #FDEEF6;
}

.value-card__title {
  font-size: 16px;
}

.value-card__text {
  line-height: 1.52;
}

/* ==========================================================================
   Trust Card — Premium Polish
   ========================================================================== */

/* Warm border + deeper shadow + peach gradient glow top-right */
.trust {
  position: relative;
  overflow: hidden;
  border-color: #F2DDD5;
  box-shadow: 0 6px 26px rgba(228, 87, 140, 0.08), 0 2px 5px rgba(26, 23, 21, 0.04);
  background:
    radial-gradient(ellipse 220px 180px at calc(100% + 30px) -20px, rgba(254, 130, 114, 0.13) 0%, transparent 70%),
    var(--a7-paper-white);
}

/* "Работает более 16 лет" badge */
.trust__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px 5px 8px;
  border-radius: 999px;
  background: #FDE8F3;
  border: 1px solid #F0CCDF;
  font-size: 12.5px;
  font-weight: 600;
  color: #7A2A54;
  margin-bottom: 12px;
  line-height: 1;
  flex-shrink: 0;
  width: fit-content;
}

/* Make checklist markers bigger and more vivid */
.trust .checklist li::before {
  width: 24px;
  height: 24px;
  background-color: #FCDCEF;
  background-size: 15px;
}

/* Checklist item spacing */
.trust .checklist {
  gap: 14px;
}

.trust .checklist li {
  font-size: 14.5px;
  line-height: 1.45;
}

/* ==========================================================================
   ============================================================================
   V2 REDESIGN OVERRIDES — приоритетные правки визуала
   ============================================================================
   ========================================================================== */

/* ---------- Header — вписать в hero (peach tint) ---------- */
.site-header {
  background:
    linear-gradient(180deg, rgba(255, 244, 224, 0.7) 0%, rgba(255, 230, 218, 0.55) 100%) !important;
  backdrop-filter: blur(14px) saturate(1.1) !important;
  -webkit-backdrop-filter: blur(14px) saturate(1.1) !important;
  border-bottom: 0 !important;
}

/* Затемним nav-ссылки чуть сильнее для контраста на peach */
.site-nav a { color: var(--fg-1); font-weight: 600; }
.site-nav a:hover { color: var(--a7-rose-700); }

/* ---------- Header CTA → outline (вспомогательная точка входа) ---------- */
.btn-header-cta {
  background: transparent !important;
  color: var(--fg-1) !important;
  border: 1.5px solid var(--a7-neutral-200);
  box-shadow: none !important;
  padding: 8px 14px 8px 12px;
  gap: 8px;
  font-weight: 600;
}

.btn-header-cta:hover {
  border-color: var(--a7-rose-300);
  background: var(--a7-rose-50) !important;
  filter: none;
  transform: none;
  box-shadow: 0 4px 12px -4px rgba(228, 114, 173, 0.25) !important;
}

.btn-header-cta__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--a7-warm-pink), var(--a7-rose-violet));
  box-shadow: 0 0 0 4px rgba(254, 130, 114, 0.18);
  display: inline-block;
  flex-shrink: 0;
}

/* ---------- Hero photo soft-edge + integrated decor ---------- */
.hero {
  background:
    radial-gradient(120% 80% at 75% 25%, rgba(255, 213, 133, 0.45) 0%, transparent 55%),
    radial-gradient(80% 70% at 20% 80%, rgba(228, 114, 173, 0.22) 0%, transparent 60%),
    var(--a7-aura-gradient-soft);
}

.hero__visual {
  position: relative;
  isolation: isolate;
}

@media (min-width: 1024px) {
  .hero__visual { min-height: 560px; }
}

.hero__photo {
  position: relative;
  z-index: 2;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 55%, transparent 95%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 55%, transparent 95%);
}

/* Soft glow halo behind photo */
.hero__visual::before {
  content: '';
  position: absolute;
  z-index: 1;
  width: 80%;
  height: 80%;
  left: 10%;
  top: 8%;
  background: radial-gradient(circle, rgba(254, 130, 114, 0.35) 0%, transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}

.hero__decor {
  position: absolute;
  pointer-events: none;
  z-index: 3;
}

.hero__decor--sparkle {
  top: 4%;
  right: 6%;
  width: 72px;
  height: 72px;
  display: block;
  animation: a7-float 6s ease-in-out infinite;
}

.hero__decor--sparkle svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(228, 114, 173, 0.35));
}

.hero__decor--orb {
  bottom: 8%;
  left: 0%;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 213, 133, 0.95), rgba(254, 130, 114, 0.4) 60%, transparent 80%);
  filter: blur(2px);
  animation: a7-float 8s ease-in-out infinite reverse;
}

.hero__decor--ring {
  top: 38%;
  right: -14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px dashed rgba(228, 114, 173, 0.45);
  animation: a7-spin 22s linear infinite;
}

@keyframes a7-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-10px) rotate(8deg); }
}

@keyframes a7-spin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__decor--sparkle,
  .hero__decor--orb,
  .hero__decor--ring { animation: none !important; }
}

/* ---------- Hero CTA — упрощённая (вместо cta-block--accent) ---------- */
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 4px;
}

.hero-cta .cta-group {
  gap: 12px;
}

.hero-cta__hint {
  font-size: var(--text-xs);
  color: var(--fg-3);
  margin: 0;
  padding-left: 4px;
  letter-spacing: 0.005em;
}

.btn-hero-tg,
.btn-hero-max {
  padding: 16px 26px;
  font-size: 16px;
  min-width: 220px;
  height: 56px;
  justify-content: center;
  letter-spacing: -0.01em;
}

.btn-hero-tg {
  box-shadow:
    0 14px 32px -8px rgba(228, 114, 173, 0.45),
    0 6px 16px -6px rgba(254, 130, 114, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-hero-tg:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 38px -8px rgba(228, 114, 173, 0.55),
    0 8px 18px -6px rgba(254, 130, 114, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

@media (max-width: 480px) {
  .btn-hero-tg,
  .btn-hero-max {
    min-width: 0;
    width: 100%;
  }
}

/* ---------- Section eyebrow (мелкая надсекционная подпись) ---------- */
.section-eyebrow {
  display: block;
  text-align: center;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--a7-rose-700);
  margin: 0 auto 14px;
}

.flow--dark .section-eyebrow {
  color: var(--a7-warm-pink);
}

/* ---------- Proof-strip (под hero) ---------- */
.proof-strip {
  background: var(--a7-paper-white);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.proof-strip__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
}

@media (min-width: 768px) {
  .proof-strip__row {
    grid-template-columns: auto 1fr auto;
    gap: 36px;
  }
}

.proof-strip__group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.proof-strip__text {
  font-size: 14px;
  color: var(--fg-2);
  margin: 0;
  line-height: 1.35;
}

.proof-strip__text strong {
  color: var(--fg-1);
  font-weight: 700;
}

.proof-strip__review {
  margin: 0;
  padding: 0 0 0 20px;
  border-left: 2px solid var(--a7-rose-100);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

@media (max-width: 767px) {
  .proof-strip__review {
    padding: 14px 0 0;
    border-left: 0;
    border-top: 1px solid var(--a7-rose-100);
  }
}

.proof-strip__quote {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--fg-1);
  font-weight: 500;
  font-style: italic;
  max-width: 460px;
}

.proof-strip__meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.proof-strip__author {
  font-size: 12px;
  color: var(--fg-3);
}

.proof-strip__stars { display: inline-flex; align-items: center; }

.proof-strip__pro {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #FFF6E1 0%, #FFE2D0 100%);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  border: 1px solid #FFD0B6;
}

.proof-strip__pro-icon {
  display: flex;
  flex-shrink: 0;
  color: var(--a7-warm-pink);
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
}

.proof-strip__pro-title {
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 2px;
  color: var(--fg-1);
  letter-spacing: -0.01em;
}

.proof-strip__pro-text {
  font-size: 12px;
  color: var(--fg-2);
  margin: 0;
  line-height: 1.35;
}

/* ---------- Avatars (улучшенный overlap) ---------- */
.proof-strip .experts-avatars li,
.experts-avatars li {
  margin-left: -12px;
}
.proof-strip .experts-avatars li:first-child,
.experts-avatars li:first-child { margin-left: 0; }

.experts-avatars img {
  width: 38px;
  height: 38px;
  border: 2.5px solid var(--a7-paper-white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* ---------- Section title variations (H2 разнообразие) ---------- */
.section-title--on-dark {
  color: var(--a7-paper-white) !important;
  letter-spacing: -0.03em;
}

.section-title__accent {
  background: linear-gradient(90deg, var(--a7-sunny-yellow), var(--a7-warm-pink), var(--a7-rose-violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 800;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .section-title__accent { display: block; }
}

/* ---------- FLOW SECTION → DARK ---------- */
.flow--dark {
  position: relative;
  background:
    radial-gradient(60% 60% at 85% 15%, rgba(228, 114, 173, 0.18) 0%, transparent 60%),
    radial-gradient(50% 50% at 10% 90%, rgba(254, 130, 114, 0.14) 0%, transparent 60%),
    linear-gradient(180deg, #1A1320 0%, #110A1A 100%);
  color: var(--a7-paper-white);
  overflow: hidden;
}

.flow--dark .section-title { margin-bottom: 56px; }

.flow__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 213, 133, 0.4) 0%, transparent 1.5%),
    radial-gradient(circle at 80% 60%, rgba(228, 114, 173, 0.5) 0%, transparent 1.2%),
    radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.4) 0%, transparent 0.8%),
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.3) 0%, transparent 0.6%),
    radial-gradient(circle at 12% 70%, rgba(255, 255, 255, 0.3) 0%, transparent 0.7%);
  opacity: 0.7;
}

.flow--dark .flow__steps {
  position: relative;
  z-index: 1;
}

.flow--dark .flow-step {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 32px 26px 28px;
  box-shadow: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  margin-top: 0;
  overflow: hidden;
}

.flow--dark .flow-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(254, 130, 114, 0.5), transparent);
}

.flow--dark .flow-step__num {
  position: absolute;
  top: 18px;
  right: 22px;
  left: auto;
  width: auto;
  height: auto;
  border-radius: 0;
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  font-family: var(--font-display);
  box-shadow: none;
  background: linear-gradient(135deg, var(--a7-sunny-yellow), var(--a7-warm-pink), var(--a7-rose-violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  opacity: 0.5;
  display: block;
  pointer-events: none;
}

.flow--dark .flow-step__icon {
  color: var(--a7-warm-pink);
  width: 52px;
  height: 52px;
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(254, 130, 114, 0.1);
  border: 1px solid rgba(254, 130, 114, 0.2);
  border-radius: 14px;
  align-self: flex-start;
}

.flow--dark .flow-step__icon svg { width: 28px; height: 28px; }

.flow--dark .flow-step__title {
  color: var(--a7-paper-white);
  font-size: 18px;
  margin: 0 0 8px;
}

.flow--dark .flow-step__text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.flow--dark .flow-arrow {
  color: rgba(228, 114, 173, 0.7);
  font-size: 0;
}

.flow--dark .flow-arrow svg {
  width: 36px;
  height: 14px;
}

.flow--dark .flow__note {
  position: relative;
  z-index: 1;
  margin-top: 48px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  box-shadow: none;
}

.flow--dark .flow__note strong { color: var(--a7-rose-violet); }

/* Hide chat2desk legacy elements that may still reference old paths */

/* ---------- Earn-card icon — outline span ---------- */
.earn-card > .earn-card__icon {
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--a7-rose-50);
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--a7-rose-700);
  margin-bottom: 4px;
}

.earn-card--mid > .earn-card__icon {
  background: var(--a7-yellow-50);
  color: var(--a7-yellow-700);
}

.earn-card--top > .earn-card__icon {
  background: #FFF0E0;
  color: #B45C2E;
}

/* hide legacy icon-tray since we no longer wrap mid icon */
.earn-card__icon-tray { display: none !important; }

/* ---------- Value-card icon — unified outline ---------- */
.value-card {
  grid-template-columns: 48px 1fr;
  gap: 16px;
}

.value-card__icon {
  width: 44px;
  height: 44px;
  background: #FDEEF6;
  color: var(--a7-rose-700);
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

/* Suppress legacy img icons within value-card if any leftover */
.value-card > img { display: none; }

/* ---------- Practice-note icon ---------- */
.practice__note-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--a7-rose-50);
  color: var(--a7-rose-700);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Final-CTA (container-width, rounded card) ---------- */
.final-cta {
  padding: 32px 0 64px !important;
}

.final-cta__card {
  border-radius: 32px !important;
  padding: 48px 32px !important;
  background:
    radial-gradient(60% 80% at 80% 10%, rgba(255, 213, 133, 0.5) 0%, transparent 65%),
    radial-gradient(60% 70% at 15% 95%, rgba(228, 114, 173, 0.45) 0%, transparent 60%),
    var(--a7-aura-gradient) !important;
  position: relative;
  overflow: hidden;
}

.final-cta__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 28%, rgba(255, 255, 255, 0.5) 0%, transparent 0.6%),
    radial-gradient(circle at 84% 70%, rgba(255, 255, 255, 0.55) 0%, transparent 0.7%),
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.45) 0%, transparent 0.5%);
  pointer-events: none;
  opacity: 0.9;
}

@media (min-width: 1024px) {
  .final-cta__card {
    padding: 72px 64px !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 56px !important;
  }
}

.final-cta__content { position: relative; z-index: 1; max-width: 540px; }
.final-cta__visual { position: relative; z-index: 1; }

.final-cta__title {
  font-size: clamp(32px, 4.5vw, 56px) !important;
  letter-spacing: -0.03em !important;
}

.final-cta__buttons {
  margin: 24px 0 16px;
  gap: 12px;
}

/* ---------- Telegram chat mockup ---------- */
.tg-mockup {
  background: var(--a7-paper-white);
  border-radius: 24px;
  box-shadow:
    0 30px 60px -20px rgba(74, 36, 70, 0.35),
    0 12px 28px -12px rgba(74, 36, 70, 0.2);
  overflow: hidden;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
  transform-origin: center;
}

@media (max-width: 1023px) {
  .tg-mockup { transform: none; }
}

.tg-mockup__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: linear-gradient(180deg, #FAFAFC 0%, #F2F2F5 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.tg-mockup__bot-avatar {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
}

.tg-mockup__bot-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.tg-mockup__bot-name {
  font-size: 14px;
  font-weight: 700;
  color: #1A1715;
  line-height: 1.2;
}

.tg-mockup__bot-status {
  font-size: 11.5px;
  color: #2AABEE;
  line-height: 1;
}

.tg-mockup__platform {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.tg-mockup__chat {
  padding: 18px 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background:
    radial-gradient(circle at 18% 20%, rgba(254, 130, 114, 0.06) 0%, transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(228, 114, 173, 0.06) 0%, transparent 30%),
    #fff;
  min-height: 320px;
}

.tg-msg {
  max-width: 78%;
  padding: 10px 14px 14px;
  border-radius: 16px;
  font-size: 13.5px;
  line-height: 1.4;
  color: #1A1715;
  position: relative;
}

.tg-msg p { margin: 0 0 2px; }

.tg-msg__time {
  font-size: 10px;
  color: rgba(0, 0, 0, 0.4);
  position: absolute;
  bottom: 4px;
  right: 10px;
}

.tg-msg--in {
  background: #F1F1F4;
  align-self: flex-start;
  border-bottom-left-radius: 6px;
  padding-bottom: 16px;
}

.tg-msg--out {
  background: linear-gradient(135deg, var(--a7-warm-pink) 0%, var(--a7-rose-violet) 100%);
  color: var(--a7-paper-white);
  align-self: flex-end;
  border-bottom-right-radius: 6px;
  padding-bottom: 16px;
  box-shadow: 0 4px 12px -4px rgba(228, 114, 173, 0.45);
}

.tg-msg--out .tg-msg__time { color: rgba(255, 255, 255, 0.75); }

.tg-msg__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.tg-msg__chips span {
  display: inline-block;
  padding: 5px 10px;
  background: rgba(228, 114, 173, 0.12);
  color: var(--a7-rose-700);
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 600;
}

.tg-msg--typing {
  background: #F1F1F4;
  align-self: flex-start;
  border-bottom-left-radius: 6px;
  padding: 14px 18px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: auto;
  max-width: 70px;
}

.tg-msg--typing span {
  width: 7px;
  height: 7px;
  background: rgba(0, 0, 0, 0.32);
  border-radius: 50%;
  animation: tg-typing 1.4s infinite ease-in-out;
}

.tg-msg--typing span:nth-child(2) { animation-delay: 0.2s; }
.tg-msg--typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes tg-typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}

@media (prefers-reduced-motion: reduce) {
  .tg-msg--typing span { animation: none; }
}

/* ---------- Support-strip (вместо anchor-stub секции) ---------- */
.support-strip {
  padding: 32px 0;
  background: var(--a7-paper-white);
  border-top: 1px solid var(--border);
}

.support-strip__row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

@media (min-width: 768px) {
  .support-strip__row {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
}

.support-strip__label {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--a7-rose-700);
  background: var(--a7-rose-50);
  padding: 6px 12px;
  border-radius: 100px;
  flex-shrink: 0;
}

.support-strip__text {
  margin: 0;
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.5;
}

.support-strip__text a {
  color: var(--a7-rose-700);
  font-weight: 600;
  border-bottom: 1px solid rgba(228, 114, 173, 0.35);
  transition: color var(--dur-1) var(--ease-standard), border-color var(--dur-1) var(--ease-standard);
}

.support-strip__text a:hover {
  color: var(--a7-rose-violet);
  border-bottom-color: currentColor;
}

/* ---------- Adjust earnings note width since no path above ---------- */
.earnings__note {
  margin-top: 36px;
}

/* ---------- Mobile hero adjustments ---------- */
@media (max-width: 1023px) {
  .hero__visual { min-height: 380px; }
  .hero__decor--orb { left: 4%; }
  .hero__decor--ring { display: none; }
}

@media (max-width: 600px) {
  .hero__decor--sparkle { width: 54px; height: 54px; top: 0; right: 4%; }
  .hero__decor--orb { width: 44px; height: 44px; }
}

/* ---------- LK Mockup (кабинет эксперта) ---------- */
.lk-mockup {
  background: var(--a7-paper-white);
  border-radius: 24px;
  box-shadow:
    0 30px 60px -20px rgba(74, 36, 70, 0.35),
    0 12px 28px -12px rgba(74, 36, 70, 0.2);
  overflow: hidden;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
  transform-origin: center;
  padding: 18px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (max-width: 1023px) {
  .lk-mockup { transform: none; }
}

.lk-mockup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
}

.lk-mockup__title {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 15px;
  color: var(--fg-1);
  letter-spacing: -0.01em;
  font-family: var(--font-display);
}

.lk-mockup__title svg { color: var(--a7-warm-pink); }

.lk-mockup__online {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #2A9E5A;
  font-weight: 600;
}

.lk-mockup__online i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34C467;
  box-shadow: 0 0 0 3px rgba(52, 196, 103, 0.18);
  display: inline-block;
}

.lk-mockup__tabs {
  display: flex;
  gap: 6px;
  padding: 0 2px;
}

.lk-tab {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 100px;
  background: #F3F1F4;
  color: var(--fg-3);
  letter-spacing: -0.01em;
}

.lk-tab b {
  font-weight: 700;
  font-size: 10.5px;
  opacity: 0.85;
}

.lk-tab--active {
  background: linear-gradient(90deg, var(--a7-warm-pink) 0%, var(--a7-rose-violet) 100%);
  color: #fff;
  box-shadow: 0 3px 8px -2px rgba(228, 114, 173, 0.45);
}

.lk-mockup__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lk-card {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 11px;
  align-items: center;
  padding: 11px 12px;
  background: #FAFAFC;
  border: 1px solid #EFEDF1;
  border-radius: 14px;
  transition: background 0.2s ease;
}

.lk-card--new {
  background: linear-gradient(135deg, #FFF4F1 0%, #FFEAEF 100%);
  border-color: #FFD3D9;
  box-shadow: 0 2px 8px -2px rgba(254, 130, 114, 0.2);
}

.lk-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  font-family: var(--font-display);
  background: linear-gradient(135deg, #FF8FAB 0%, #E472AD 100%);
  flex-shrink: 0;
}

.lk-card__avatar--2 {
  background: linear-gradient(135deg, #FFD585 0%, #FE8272 100%);
}

.lk-card__avatar--3 {
  background: linear-gradient(135deg, #B292F0 0%, #7B5CF6 100%);
}

.lk-card__body { min-width: 0; }

.lk-card__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}

.lk-card__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--fg-1);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lk-card__time {
  font-size: 10.5px;
  color: var(--fg-mute);
  flex-shrink: 0;
}

.lk-card__topic {
  display: block;
  font-size: 11.5px;
  color: var(--fg-3);
  line-height: 1.3;
  margin-top: 1px;
}

.lk-card__cta {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--a7-warm-pink) 0%, var(--a7-rose-violet) 100%);
  color: #fff;
  white-space: nowrap;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 10px -3px rgba(228, 114, 173, 0.5);
}

.lk-card__cta--ghost {
  background: #fff;
  color: var(--a7-rose-700);
  border: 1px solid var(--a7-rose-100);
  box-shadow: none;
}

.lk-mockup__earnings {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  background: linear-gradient(135deg, #FFF8F2 0%, #FFE8D8 100%);
  border-radius: 14px;
  border: 1px solid #FFE0CC;
}

.lk-earn__label {
  display: block;
  font-size: 11px;
  color: var(--fg-3);
  font-weight: 500;
  margin-bottom: 2px;
}

.lk-earn__amount {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--fg-1);
  letter-spacing: -0.025em;
  font-family: var(--font-display);
  line-height: 1;
}

.lk-earn__chart {
  width: 100px;
  height: 36px;
  flex-shrink: 0;
}

/* Hide old tg-mockup styles when not in use — they shouldn't render now */
.tg-mockup, .app-mockup { display: none !important; }

/* ---------- Earnings cards — fill out content ---------- */
.earn-card__lead {
  font-size: 13px;
  color: var(--fg-2);
  margin: 4px 0 8px;
  line-height: 1.4;
  min-height: 36px;
}

.earn-card__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 8px 0 14px;
  padding: 12px;
  background: var(--a7-neutral-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.earn-card--mid .earn-card__meta {
  background: #FFFBF0;
  border-color: #FFE6B5;
}

.earn-card--top .earn-card__meta {
  background: #FFF4E8;
  border-color: #FFD9B8;
}

.earn-card__meta-item {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.earn-card__meta-item strong {
  font-size: 18px;
  font-weight: 800;
  color: var(--fg-1);
  letter-spacing: -0.02em;
  font-family: var(--font-display);
  line-height: 1.1;
}

.earn-card__meta-item span {
  font-size: 11px;
  color: var(--fg-3);
  line-height: 1.25;
}

.earn-card__conds {
  margin-top: auto !important;
}

/* ---------- Mobile footer & containers — more side padding ---------- */
@media (max-width: 767px) {
  .container { padding: 0 24px !important; }
  .legal-footer__inner {
    padding: 36px 24px 28px !important;
  }
  .legal-footer__text { gap: 14px; }
  .legal-footer__text p { font-size: 12.5px; line-height: 1.6; }
  .legal-footer__bottom { gap: 12px; flex-wrap: wrap; }
  .support-strip { padding: 26px 0; }
}

@media (max-width: 400px) {
  .container { padding: 0 20px !important; }
  .legal-footer__inner { padding: 32px 20px 24px !important; }
}

/* TOP earn-card: иконка + бейдж "Максимальная загрузка" в одну строку,
   чтобы карточка не съезжала вниз относительно соседних */
.earn-card--top > .earn-card__icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}

.earn-card--top .earn-card__icon-row .earn-card__icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.earn-card--top .earn-card__icon-row .earn-card__top-label {
  margin-bottom: 0;
}

/* ---------- TOP earn-card: бейдж "Максимальная загрузка" в одну строку с иконкой ---------- */
.earn-card__icon-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.earn-card--top .earn-card__top-label {
  margin: 0;
  flex-shrink: 1;
  min-width: 0;
}

.earn-card--top > .earn-card__icon {
  margin-bottom: 0;
}

/* ==========================================================================
   V2.2 — modal + button text + remove metrics
   ========================================================================== */

/* Header CTA: было <a>, теперь <button>. Сброс button-стилей. */
button.btn-header-cta {
  font: inherit;
  cursor: pointer;
}

/* Messenger Modal */
.messenger-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms var(--ease-standard);
}

.messenger-modal[hidden] { display: none; }

.messenger-modal--open {
  opacity: 1;
  pointer-events: auto;
}

.messenger-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 23, 21, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.messenger-modal__card {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: var(--a7-paper-white);
  border-radius: 24px;
  padding: 36px 32px 32px;
  box-shadow:
    0 30px 80px -20px rgba(74, 36, 70, 0.45),
    0 12px 32px -12px rgba(74, 36, 70, 0.25);
  transform: translateY(16px) scale(0.97);
  opacity: 0;
  transition: transform 220ms var(--ease-out-soft), opacity 220ms var(--ease-out-soft);
}

.messenger-modal--open .messenger-modal__card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.messenger-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  border: 0;
  color: var(--fg-3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 150ms var(--ease-standard), color 150ms var(--ease-standard);
}

.messenger-modal__close:hover {
  background: var(--a7-neutral-100);
  color: var(--fg-1);
}

.messenger-modal__close:focus-visible {
  outline: 2px solid var(--a7-rose-violet);
  outline-offset: 2px;
}

.messenger-modal__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fg-1);
  margin: 0 0 8px;
  line-height: 1.2;
}

.messenger-modal__subtitle {
  font-size: 14.5px;
  color: var(--fg-2);
  margin: 0 0 24px;
  line-height: 1.5;
}

.messenger-modal__buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.messenger-modal__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: transform 180ms var(--ease-out-soft), box-shadow 180ms var(--ease-standard), filter 180ms var(--ease-standard);
}

.messenger-modal__btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
}

.messenger-modal__btn--telegram {
  background: linear-gradient(135deg, #229ED9 0%, #2AABEE 100%);
  color: var(--a7-paper-white);
  box-shadow: 0 8px 22px -8px rgba(42, 171, 238, 0.55);
}

.messenger-modal__btn--telegram .messenger-modal__btn-icon {
  background: rgba(255, 255, 255, 0.18);
  color: var(--a7-paper-white);
}

.messenger-modal__btn--telegram:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 12px 28px -8px rgba(42, 171, 238, 0.7);
}

.messenger-modal__btn--max {
  background: linear-gradient(135deg, #7B5CF6 0%, #6A4DFF 100%);
  color: var(--a7-paper-white);
  box-shadow: 0 8px 22px -8px rgba(106, 77, 255, 0.5);
}

.messenger-modal__btn--max .messenger-modal__btn-icon {
  background: rgba(255, 255, 255, 0.95);
}

.messenger-modal__btn--max:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 12px 28px -8px rgba(106, 77, 255, 0.6);
}

.messenger-modal__btn:focus-visible {
  outline: 2px solid var(--a7-paper-white);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(228, 114, 173, 0.45);
}

@media (max-width: 480px) {
  .messenger-modal__card {
    padding: 30px 22px 24px;
    border-radius: 22px;
  }
  .messenger-modal__title { font-size: 21px; }
}

/* Удалённые metrics-блоки — больше не нужны; правило ниже на случай
   если вдруг где-то остался .earn-card__meta — скрываем. */
.earn-card__meta { display: none !important; }

/* ==========================================================================
   V2.3 — sticky-header fix
   ============================================================================
   На <html>/<body> базовое правило ставит overflow-x: hidden — это создаёт
   scroll-контейнер и ломает position:sticky на потомках в Safari и мобильном
   Chrome. overflow-x: clip даёт ту же защиту от горизонтального переполнения,
   но НЕ создаёт scroll-контейнер, поэтому sticky продолжает работать.
   Браузеры без поддержки overflow:clip (Chrome <90, Safari <16) сохранят
   прежнее поведение через original overflow-x:hidden — sticky на них может
   не работать, но это допустимый fallback.
   ========================================================================== */
html, body {
  overflow-x: clip;
}
