/* ============================================
   АВИТОЛОГ — Premium Landing Styles
   ============================================ */

:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --bg-card: #16161f;
  --surface: #1c1c28;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);

  --text: #f0f0f5;
  --text-muted: #8888a0;
  --text-dim: #5a5a70;

  --accent: #00d4aa;
  --accent-yellow: #ffc620;
  --accent-2: #00b4d8;
  --accent-glow: rgba(0, 212, 170, 0.35);
  --accent-yellow-glow: rgba(255, 198, 32, 0.25);
  --gradient: linear-gradient(135deg, #ffc620 0%, #00d4aa 50%, #00b4d8 100%);
  --gradient-text: linear-gradient(135deg, #ffc620, #00d4aa, #00e5ff);

  --avito: #00aaff;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;

  --header-h: 72px;
  --container: 1200px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Manrope', system-ui, sans-serif;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 212, 170, 0.12), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(0, 180, 216, 0.08), transparent);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body.has-bg-video {
  background: #08080c;
  background-image: none;
}

/* Фоновое видео — только верх страницы, плавный loop */
.bg-scroll-video {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  transition: opacity 0.2s ease-out;
}

.bg-scroll-video__media {
  position: absolute;
  inset: -10% -12% -14% -10%;
}

.bg-scroll-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  transform: scale(1.14);
  opacity: 0.62;
}

.bg-scroll-video__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 12, 0.72) 0%, rgba(8, 8, 12, 0.52) 45%, rgba(8, 8, 12, 0.78) 100%);
}

/* Закрываем водяной знак Google Flow (угол кадра) */
.bg-scroll-video__watermark-cover {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.bg-scroll-video__watermark-cover--br {
  right: 0;
  bottom: 0;
  width: min(240px, 40vw);
  height: min(88px, 15vw);
  background: linear-gradient(145deg, transparent 0%, rgba(8, 8, 12, 0.96) 58%);
}

.bg-scroll-video__watermark-cover--bl {
  left: 0;
  bottom: 0;
  width: min(200px, 34vw);
  height: min(72px, 12vw);
  background: linear-gradient(215deg, transparent 0%, rgba(8, 8, 12, 0.96) 58%);
}

body.has-bg-video .orb {
  opacity: 0.15;
}

/* Видео только в hero + знакомство — ниже обычный тёмный фон */
body.has-bg-video .hero {
  background: transparent;
}

body.has-bg-video .intro {
  background: rgba(10, 10, 15, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

body.has-bg-video .trust-bar {
  background: var(--bg-elevated);
  backdrop-filter: none;
}

body.has-bg-video .footer {
  background: var(--bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Noise overlay */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.btn--sm { padding: 10px 20px; font-size: 0.875rem; }
.btn--lg { padding: 18px 36px; font-size: 1rem; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--gradient);
  color: #0a0a0f;
  box-shadow: 0 4px 24px var(--accent-glow);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow);
}

.btn--ghost {
  border: 1px solid var(--border-hover);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
}

.header--scrolled {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 12px;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.header__phone {
  white-space: nowrap;
}

.badge--urgency {
  background: rgba(255, 198, 32, 0.12);
  border: 1px solid rgba(255, 198, 32, 0.35);
  color: var(--accent-yellow);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
}

.logo__mark {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  color: #0a0a0f;
  border-radius: 10px;
  font-weight: 800;
  font-size: 1rem;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav a:hover { color: var(--text); }

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  top: var(--header-h);
  z-index: 999;
  background: rgba(10, 10, 15, 0.97);
  backdrop-filter: blur(20px);
  padding: 32px 24px;
}

.mobile-menu[hidden] {
  display: none !important;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu a {
  font-size: 1.25rem;
  font-weight: 600;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 40px) 0 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(0, 212, 170, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(0, 212, 170, 0.1);
  border: 1px solid rgba(0, 212, 170, 0.25);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 40px;
}

.hero__stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.stat__value {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.stat__suffix {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
}

.stat__label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__glow {
  position: absolute;
  inset: 10%;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  filter: blur(40px);
}

.phone-mockup {
  position: relative;
  width: 280px;
  padding: 12px;
  background: var(--surface);
  border-radius: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.phone-mockup__screen {
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 9/19;
  background: var(--bg-card);
}

.phone-mockup__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Scroll Video Section */
.scroll-video {
  position: relative;
}

.scroll-video__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.scroll-video__canvas-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #0d1f1a 0%, #0a1628 45%, #12101f 100%);
}

.scroll-video__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scroll-video__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 15, 0.95) 0%,
    rgba(10, 10, 15, 0.4) 40%,
    transparent 70%
  );
  display: flex;
  align-items: flex-end;
  padding: 80px 24px;
}

.scroll-video__text {
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.scroll-video__step {
  position: absolute;
  bottom: 80px;
  left: 24px;
  right: 24px;
  max-width: 600px;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.scroll-video__step.active {
  opacity: 1;
  transform: translateY(0);
}

.scroll-video__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.scroll-video__spacer {
  height: 250vh;
}

.scroll-video--fallback .scroll-video__video {
  display: none;
}

.scroll-video__fallback-anim {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.scroll-video__fallback-anim svg {
  width: min(50vw, 320px);
  height: auto;
  filter: drop-shadow(0 0 40px rgba(0, 212, 170, 0.3));
  transition: transform 0.1s linear;
}

/* Sections */
.section {
  padding: 120px 0;
}

.section--dark {
  background: var(--bg-elevated);
}

.section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section__tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section__desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Cases */
.cases {
  padding-top: 80px;
}
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--text);
  border-color: var(--accent);
  background: rgba(0, 212, 170, 0.08);
}

.cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.case-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.case-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.case-card.hidden { display: none; }

.case-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--surface);
}

.case-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.case-card:hover .case-card__image img {
  transform: scale(1.05);
}

.case-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  left: auto;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
  color: var(--accent-yellow);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 100px;
  border: 1px solid rgba(255, 198, 32, 0.35);
  z-index: 2;
}

.case-card__body {
  padding: 20px;
}

.case-card__body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.case-card__body p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.cases__more {
  text-align: center;
  margin-top: 48px;
}

.cases-upload-note {
  max-width: 720px;
  margin: 0 auto 40px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(0, 212, 170, 0.45);
  background: rgba(0, 212, 170, 0.06);
  color: var(--text-muted);
  font-size: 0.92rem;
  text-align: center;
}

.cases-upload-note strong { color: var(--text); }
.cases-upload-note code {
  color: var(--accent);
  font-size: 0.88rem;
}

.case-card--empty .case-card__image {
  border: 2px dashed rgba(0, 212, 170, 0.35);
  background: linear-gradient(145deg, rgba(0, 212, 170, 0.06), rgba(0, 180, 216, 0.04));
}

.case-card--empty .case-card__image img {
  opacity: 0;
}

.case-card__placeholder-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
  pointer-events: none;
}

.case-card:not(.case-card--empty) .case-card__placeholder-label {
  display: none;
}

.case-card--empty {
  cursor: default;
}

.case-card--empty:hover {
  transform: none;
  box-shadow: none;
}

/* Live ticker */
.live-ticker {
  overflow: hidden;
  padding: 18px 0;
  border-block: 1px solid var(--border);
  background: rgba(0, 212, 170, 0.04);
}

.live-ticker__track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: ticker 28s linear infinite;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent);
  white-space: nowrap;
}

.live-ticker__track span:nth-child(even) {
  color: var(--text-dim);
  font-weight: 400;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Services */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  padding: 32px 24px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s var(--ease);
}

.service-card:hover {
  border-color: rgba(0, 212, 170, 0.3);
  transform: translateY(-4px);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 170, 0.1);
  border-radius: 12px;
  margin-bottom: 20px;
  color: var(--accent);
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Process */
.process__timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process__timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}

.process__step {
  text-align: center;
  position: relative;
}

.process__num {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  position: relative;
  z-index: 1;
}

.process__step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.process__step p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Pricing */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.price-card {
  position: relative;
  padding: 40px 32px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease);
}

.price-card:hover { transform: translateY(-4px); }

.price-card--featured {
  border-color: rgba(0, 212, 170, 0.4);
  background: linear-gradient(180deg, rgba(0, 212, 170, 0.08) 0%, var(--bg-card) 40%);
  transform: scale(1.04);
}

.price-card--featured:hover { transform: scale(1.04) translateY(-4px); }

.price-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: var(--gradient);
  color: #0a0a0f;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 100px;
}

.price-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.price-card__old-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.price-old {
  font-size: 0.9rem;
  color: var(--text-dim);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 100, 100, 0.7);
}

.price-card__price {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.price-card__price span {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
}

.price-card__period {
  font-size: 0.875rem;
  color: var(--text-dim);
  margin-bottom: 28px;
}

.price-card ul {
  margin-bottom: 32px;
}

.price-card li {
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  padding-left: 24px;
  position: relative;
}

.price-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* About */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.about__photo {
  position: relative;
}

.about__photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid var(--border);
  z-index: 1;
}

.about__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__photo-hint {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: rgba(0, 0, 0, 0.75);
  font-size: 0.75rem;
  color: var(--accent);
  text-align: center;
}

.about__photo-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  filter: blur(60px);
  z-index: 0;
}

.about__content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.about__facts {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.about__fact strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
}

.about__fact span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Testimonials */
.testimonials__slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  padding: 32px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.testimonial p {
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 24px;
  font-style: italic;
  color: var(--text-muted);
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial__author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--surface);
}

.testimonial__author strong {
  display: block;
  font-size: 0.95rem;
}

.testimonial__author span {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* Contact */
.contact__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 60px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.contact__info .section__title {
  text-align: left;
}

.contact__info > p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.contact__links {
  display: flex;
  gap: 16px;
}

.contact__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--surface);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
}

.contact__link:hover {
  border-color: var(--accent);
  background: rgba(0, 212, 170, 0.08);
}

.contact__link svg {
  width: 20px;
  height: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-muted);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group input::placeholder {
  color: var(--text-dim);
}

.form-note {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 16px;
}

/* Footer */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer p {
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox__content {
  max-width: 90vw;
  max-height: 85vh;
  text-align: center;
}

.lightbox__content img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox__caption {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  font-size: 2rem;
  color: var(--text);
  opacity: 0.7;
  transition: opacity 0.2s;
  padding: 16px;
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover { opacity: 1; }

.lightbox__close { top: 16px; right: 24px; }
.lightbox__prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 16px; top: 50%; transform: translateY(-50%); }

/* Reveal animations — управляются через .js-ready в <head> */
.reveal {
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal--delay { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }

/* ═══ PREMIUM V2 ═══ */

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.orb--1 { width: 500px; height: 500px; background: rgba(0, 212, 170, 0.15); top: -10%; right: -5%; animation: orbFloat 12s ease-in-out infinite; }
.orb--2 { width: 400px; height: 400px; background: rgba(123, 97, 255, 0.1); bottom: 20%; left: -10%; animation: orbFloat 15s ease-in-out infinite reverse; }
@keyframes orbFloat { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(30px, -20px); } }

.badge--pulse { animation: badgePulse 2.5s ease-in-out infinite; }
@keyframes badgePulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(0, 212, 170, 0.3); } 50% { box-shadow: 0 0 0 8px rgba(0, 212, 170, 0); } }

.hero__topline { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-bottom: 20px; }
.hero__trust { font-size: 0.8rem; color: var(--text-muted); }
.hero__title-sub { display: block; font-size: 0.55em; font-weight: 600; color: var(--accent); margin-top: 8px; min-height: 1.2em; }

.hero__stats--grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.stat-card {
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-align: center;
}
.stat-card--accent { border-color: rgba(0, 212, 170, 0.35); background: rgba(0, 212, 170, 0.06); }
.stat-card__value { display: block; font-size: 1.35rem; font-weight: 800; line-height: 1.2; }
.stat-card__label { font-size: 0.72rem; color: var(--text-muted); margin-top: 4px; display: block; }

.hero-card-stack { position: relative; }
.metric-float {
  position: absolute;
  z-index: 2;
  padding: 10px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: 12px;
  box-shadow: var(--shadow);
  animation: floatMetric 4s ease-in-out infinite;
}
.metric-float--1 { top: 10%; left: -10%; }
.metric-float--2 { bottom: 15%; right: -5%; animation-delay: 1.5s; }
.metric-float__val { display: block; font-weight: 800; color: var(--accent); font-size: 1rem; }
.metric-float__lbl { font-size: 0.7rem; color: var(--text-muted); }
@keyframes floatMetric { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* Pain */
.pain__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pain-card {
  padding: 28px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.pain-card:hover { transform: translateY(-4px); border-color: rgba(0, 212, 170, 0.3); }
.pain-card__icon { font-size: 1.75rem; margin-bottom: 14px; }
.pain-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.pain-card p { font-size: 0.88rem; color: var(--text-muted); }

/* Audience */
.audience__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.audience-card {
  padding: 28px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.audience-card span { font-size: 0.75rem; font-weight: 700; color: var(--accent); }
.audience-card h3 { font-size: 1.05rem; font-weight: 700; margin: 10px 0 8px; }
.audience-card p { font-size: 0.88rem; color: var(--text-muted); }

/* Process days */
.process__timeline--days {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.process__timeline--days::before { display: none; }
.process-day {
  padding: 24px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
}
.process-day--highlight { border-color: rgba(0, 212, 170, 0.4); background: linear-gradient(180deg, rgba(0, 212, 170, 0.08), var(--bg-card)); }
.process-day__label { font-size: 0.75rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.process-day h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.process-day p { font-size: 0.85rem; color: var(--text-muted); }

/* Niches */
.niches__tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 32px; }
.niche-tab {
  padding: 12px 24px;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: all 0.2s;
}
.niche-tab:hover, .niche-tab.active { color: var(--text); border-color: var(--accent); background: rgba(0, 212, 170, 0.08); }
.niche-panel {
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.niche-panel__content { display: none; }
.niche-panel__content.active { display: block; animation: fadeIn 0.4s var(--ease); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.niche-panel h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 10px; }
.niche-panel__lead { color: var(--text-muted); margin-bottom: 28px; max-width: 720px; }
.niche-panel__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.niche-panel__cols h4 { font-size: 0.85rem; font-weight: 700; color: var(--accent); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.06em; }
.niche-panel__cols li { font-size: 0.88rem; color: var(--text-muted); padding: 6px 0 6px 18px; position: relative; }
.niche-panel__cols li::before { content: '→'; position: absolute; left: 0; color: var(--text-dim); }
.list--good li::before { content: '✓'; color: var(--accent); }
.list--bad li::before { content: '✕'; color: #ff6b6b; }

/* AI Section */
.ai-section__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.ai-section__lead { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 24px; }
.ai-features { margin-bottom: 24px; }
.ai-features li { padding: 10px 0 10px 28px; position: relative; color: var(--text-muted); }
.ai-features li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.ai-section__price { margin-bottom: 24px; color: var(--text-muted); }
.ai-section__price strong { color: var(--accent); font-size: 1.1rem; }

.ai-chat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.ai-chat__header {
  padding: 14px 18px;
  background: var(--surface);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ai-chat__dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; animation: pulseDot 1.5s infinite; }
@keyframes pulseDot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.ai-chat__messages { padding: 20px; display: flex; flex-direction: column; gap: 12px; min-height: 220px; }
.ai-chat__msg { max-width: 85%; padding: 12px 16px; border-radius: 16px; font-size: 0.88rem; line-height: 1.45; animation: msgIn 0.5s var(--ease) both; }
.ai-chat__msg--them { align-self: flex-start; background: var(--surface); border-bottom-left-radius: 4px; animation-delay: 0.2s; }
.ai-chat__msg--bot { align-self: flex-end; background: rgba(0, 212, 170, 0.15); border: 1px solid rgba(0, 212, 170, 0.25); border-bottom-right-radius: 4px; }
.ai-chat__msg:nth-child(2) { animation-delay: 0.6s; }
.ai-chat__msg:nth-child(3) { animation-delay: 1.2s; }
.ai-chat__msg:nth-child(4) { animation-delay: 1.8s; }
@keyframes msgIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.ai-chat__typing { padding: 12px 20px; font-size: 0.75rem; color: var(--text-dim); display: flex; align-items: center; gap: 6px; border-top: 1px solid var(--border); }
.ai-chat__typing span { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); animation: typingDot 1.2s infinite; }
.ai-chat__typing span:nth-child(2) { animation-delay: 0.2s; }
.ai-chat__typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

/* Why */
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card { padding: 28px 22px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); }
.why-card__num { font-size: 0.75rem; font-weight: 700; color: var(--accent); margin-bottom: 12px; }
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: 0.88rem; color: var(--text-muted); }
.section__desc s { color: var(--text-dim); }

/* Premium cases */
.cases__grid--premium .case-card { position: relative; }
.case-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 4px 10px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
}
.case-card__result { font-weight: 600; color: var(--accent-yellow); font-size: 0.88rem; }
.case-card__metrics { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.case-metric {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(0, 212, 170, 0.1);
  color: var(--accent);
  border: 1px solid rgba(0, 212, 170, 0.2);
}
.case-card__view-hint {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s;
}
.case-card:hover .case-card__view-hint { opacity: 1; }

.cases__total {
  text-align: center;
  margin-top: 32px;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.about__photo-wrap--portrait img {
  object-position: 55% 15%;
}

.lightbox__tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.lightbox__tab {
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--border-hover);
  color: var(--text-muted);
  background: rgba(255,255,255,0.05);
}
.lightbox__tab.active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0, 212, 170, 0.1);
}

.cases__grid--premium .case-card__image img {
  object-fit: cover;
  object-position: top;
}

.price-card__badge--ai { background: linear-gradient(135deg, #7b61ff, #00b4d8); }

/* CTA Banner */
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px 56px;
  background: linear-gradient(135deg, rgba(0, 212, 170, 0.12), rgba(123, 97, 255, 0.08));
  border: 1px solid rgba(0, 212, 170, 0.25);
  border-radius: var(--radius-lg);
}
.cta-banner h2 { font-size: clamp(1.25rem, 3vw, 1.75rem); font-weight: 800; margin-bottom: 8px; }
.cta-banner p { color: var(--text-muted); }

/* FAQ */
.faq__list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--bg-card);
}
.faq-item summary {
  padding: 18px 22px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.25rem; color: var(--accent); }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 22px 18px; color: var(--text-muted); font-size: 0.92rem; }

.testimonial__stars { color: #fbbf24; font-size: 0.9rem; margin-bottom: 12px; letter-spacing: 2px; }

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  padding: 16px 24px;
  background: var(--gradient);
  color: #0a0a0f;
  font-weight: 700;
  border-radius: 100px;
  box-shadow: 0 8px 32px var(--accent-glow);
  transition: transform 0.3s var(--ease), opacity 0.3s;
  animation: stickyPulse 3s ease-in-out infinite;
}
.sticky-cta:not([hidden]) { display: block; }
.sticky-cta:hover { transform: translateY(-3px) scale(1.03); }
@keyframes stickyPulse { 0%, 100% { box-shadow: 0 8px 32px var(--accent-glow); } 50% { box-shadow: 0 8px 48px rgba(0, 212, 170, 0.5); } }

/* Quiz Modal */
.quiz-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.quiz-modal[hidden] { display: none !important; }
.quiz-modal__backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(8px); }
.quiz-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg-elevated);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  animation: quizIn 0.4s var(--ease);
}
@keyframes quizIn { from { opacity: 0; transform: scale(0.95) translateY(20px); } to { opacity: 1; transform: none; } }
.quiz-modal__close { position: absolute; top: 16px; right: 20px; font-size: 1.5rem; color: var(--text-muted); z-index: 1; }

/* Entry popup */
.entry-popup { z-index: 10000; }
.entry-popup__dialog { max-width: 440px; padding: 28px 24px 22px; }
.entry-popup__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-yellow);
  background: rgba(255, 198, 32, 0.12);
  border: 1px solid rgba(255, 198, 32, 0.3);
  padding: 5px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.entry-popup__title {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 10px;
  padding-right: 28px;
}
.entry-popup__sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}
.entry-popup__perks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}
.entry-popup__perks li {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(0, 212, 170, 0.1);
  border: 1px solid rgba(0, 212, 170, 0.25);
  padding: 5px 10px;
  border-radius: 20px;
}
.entry-popup__form .form-group { margin-bottom: 12px; }
.entry-popup__form input {
  width: 100%;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 1rem;
}
.entry-popup__form input:focus {
  outline: none;
  border-color: var(--accent);
}
.entry-popup__alt {
  display: block;
  width: 100%;
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.entry-popup__alt:hover { color: var(--accent); }
.entry-popup__note { margin-top: 10px; margin-bottom: 0; }

.quiz-progress { height: 4px; background: var(--surface); border-radius: 4px; margin-bottom: 28px; overflow: hidden; }
.quiz-progress__bar { height: 100%; background: var(--gradient); width: 25%; transition: width 0.4s var(--ease); border-radius: 4px; }
.quiz-step { display: none; }
.quiz-step.active { display: block; animation: fadeIn 0.35s var(--ease); }
.quiz-step__label { font-size: 0.75rem; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.quiz-step h3 { font-size: 1.35rem; font-weight: 800; margin-bottom: 24px; line-height: 1.3; }
.quiz-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.quiz-option { cursor: pointer; }
.quiz-option input { position: absolute; opacity: 0; }
.quiz-option span {
  display: block;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: all 0.2s;
}
.quiz-option input:checked + span { border-color: var(--accent); background: rgba(0, 212, 170, 0.1); color: var(--text); }
.quiz-option:hover span { border-color: var(--border-hover); }
.quiz-done { text-align: center; padding: 24px 0; }
.quiz-done__icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0, 212, 170, 0.15); border-radius: 50%;
  font-size: 1.75rem; color: var(--accent); font-weight: 800;
}
.quiz-done h3 { font-size: 1.5rem; margin-bottom: 10px; }
.quiz-done p { color: var(--text-muted); }

main { position: relative; z-index: 1; }

/* ─── Trust & Conversion V3 ─── */
.hero-proof {
  margin: 24px 0;
  padding: 16px 20px;
  border-left: 3px solid var(--accent);
  background: rgba(0, 212, 170, 0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  text-align: left;
}
.hero-proof p { font-size: 0.92rem; font-style: italic; color: var(--text-muted); margin-bottom: 6px; }
.hero-proof cite { font-size: 0.78rem; color: var(--text-dim); font-style: normal; }

.hero__risk {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

.trust-bar {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.trust-item__icon { font-size: 1.5rem; line-height: 1; }
.trust-item strong { display: block; font-size: 0.88rem; margin-bottom: 2px; }
.trust-item span { font-size: 0.75rem; color: var(--text-muted); }

.agitate__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.agitate__text p { color: var(--text-muted); margin-bottom: 14px; font-size: 1.02rem; }
.agitate__highlight {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: rgba(0, 212, 170, 0.08);
  border: 1px solid rgba(0, 212, 170, 0.2);
  color: var(--text) !important;
  font-weight: 500;
}
.agitate__list li {
  padding: 14px 18px 14px 44px;
  margin-bottom: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  position: relative;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.agitate__list li::before {
  content: '✕';
  position: absolute;
  left: 16px;
  color: #ff6b6b;
  font-weight: 700;
}

.compare__table {
  max-width: 720px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.compare__head,
.compare__row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 12px;
  padding: 16px 24px;
  align-items: center;
}
.compare__head {
  background: var(--bg-card);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.compare__row { border-top: 1px solid var(--border); font-size: 0.92rem; }
.compare__row--price { background: rgba(0, 212, 170, 0.05); font-weight: 600; }
.compare__bad { color: #ff6b6b; text-align: center; }
.compare__good { color: var(--accent); text-align: center; font-weight: 600; }

.case-card__note { font-size: 0.75rem; color: var(--text-dim); margin-top: 6px; }
.case-card:not(.case-card--empty) .case-card__note { display: none; }

.price-card__risk {
  margin-top: 14px;
  font-size: 0.75rem;
  color: var(--text-dim);
  text-align: center;
}

.pricing-proof {
  max-width: 560px;
  margin: 48px auto 0;
  padding: 24px 28px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
}
.pricing-proof p { font-style: italic; color: var(--text-muted); margin-bottom: 8px; }
.pricing-proof cite { font-size: 0.82rem; color: var(--text-dim); }

.guarantee__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.guarantee__main p { color: var(--text-muted); font-size: 1.02rem; margin-top: 16px; }
.guarantee__list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text-muted);
}
.guarantee__list li strong { display: block; color: var(--text); margin-bottom: 4px; }

.final-cta__inner {
  text-align: center;
  padding: 64px 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(0, 212, 170, 0.1), rgba(123, 97, 255, 0.06));
  border: 1px solid rgba(0, 212, 170, 0.2);
}
.final-cta h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; margin-bottom: 12px; }
.final-cta p { color: var(--text-muted); margin-bottom: 28px; max-width: 520px; margin-left: auto; margin-right: auto; }
.final-cta .hero__risk { margin-top: 16px; }

.footer__inner { flex-direction: column; text-align: center; }
.footer__legal { font-size: 0.78rem; color: var(--text-dim); }

.quiz-risk {
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--text-dim);
  text-align: center;
}

.owner-only[hidden] { display: none !important; }

/* ─── Avito phone UI ─── */
.phone-mockup__screen--avito {
  background: #0a0a0a;
  display: flex;
  flex-direction: column;
}

.avito-ui {
  display: flex;
  flex-direction: column;
  height: 100%;
  font-size: 0.65rem;
  color: #aaa;
}

.avito-ui__status {
  display: flex;
  justify-content: space-between;
  padding: 8px 14px 4px;
  font-size: 0.6rem;
  color: #888;
}

.avito-ui__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 12px 10px;
  border-bottom: 1px solid #222;
}

.avito-ui__logo {
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
}

.avito-ui__promo {
  font-size: 0.55rem;
  color: var(--accent-yellow);
  background: rgba(255, 198, 32, 0.12);
  padding: 3px 8px;
  border-radius: 20px;
}

.avito-ui__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 10px;
  gap: 8px;
}

.avito-ui__card img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  aspect-ratio: 4/3;
  border: 1px solid #333;
}

.avito-ui__card-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.avito-ui__case-tag {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-yellow);
}

.avito-ui__case-title {
  font-size: 0.7rem;
  color: #eee;
  font-weight: 600;
}

.avito-ui__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 10px 12px 14px;
  border-top: 1px solid #222;
  background: #111;
}

.avito-ui__metrics div {
  text-align: center;
}

.avito-ui__metrics strong {
  display: block;
  font-size: 0.75rem;
  color: var(--accent-yellow);
  font-weight: 800;
}

.avito-ui__metrics span {
  font-size: 0.5rem;
  color: #777;
}

/* ─── Intro / знакомство ─── */
.intro {
  padding-top: 48px;
  padding-bottom: 32px;
}

.intro__grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 40px;
}

.intro__media {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.intro__photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(255, 198, 32, 0.35);
  box-shadow: 0 0 40px var(--accent-yellow-glow);
}

.intro__photo-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: 55% 15%;
  display: block;
}

.intro__badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.75);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(0, 212, 170, 0.4);
}

.intro__badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.phone-mockup__screen--video {
  background: #0a0a0a;
  position: relative;
}

.phone-mockup__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.phone-mockup__avito {
  display: none;
  position: absolute;
  inset: 0;
}

html.perf-lite .phone-mockup__avito {
  display: flex;
}

html.perf-lite .phone-mockup__avito .avito-ui {
  width: 100%;
  height: 100%;
}

html.perf-lite .avito-ui__card img {
  max-height: 88px;
}

html.perf-lite .phone-mockup__video {
  display: none !important;
}

.avito-ui__leads {
  padding: 8px 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.avito-lead {
  background: rgba(0, 212, 170, 0.14);
  border: 1px solid rgba(0, 212, 170, 0.35);
  color: #e8fff8;
  font-size: 0.58rem;
  font-weight: 600;
  padding: 7px 10px;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(10px);
  animation: avitoLeadIn 0.45s ease forwards;
}

.avito-lead:nth-child(1) { animation-delay: 0.35s; }
.avito-lead:nth-child(2) { animation-delay: 1.1s; }
.avito-lead:nth-child(3) { animation-delay: 1.85s; }

@keyframes avitoLeadIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

html.perf-lite .orb {
  display: none;
}

.intro__lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.intro__facts { margin-top: 24px; }

.section__tag--yellow {
  color: var(--accent-yellow);
  border-color: rgba(255, 198, 32, 0.35);
  background: rgba(255, 198, 32, 0.08);
}

/* ─── Contacts hub ─── */
.contacts-hub {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  text-align: center;
}

.contacts-hub__title {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.contacts-hub__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}

.contact-card:hover {
  border-color: rgba(255, 198, 32, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.contact-card--primary {
  border-color: rgba(0, 212, 170, 0.4);
  background: linear-gradient(160deg, rgba(0, 212, 170, 0.08), rgba(255, 198, 32, 0.05));
}

.contact-card--primary:hover {
  border-color: var(--accent);
}

.contact-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent-yellow);
}

.contact-card__icon--phone { color: var(--accent); background: rgba(0, 212, 170, 0.12); }
.contact-card__icon--telegram { color: #29b6f6; background: rgba(41, 182, 246, 0.12); }
.contact-card__icon--whatsapp { color: #25d366; background: rgba(37, 211, 102, 0.12); }

.contact-icon-text {
  font-weight: 800;
  font-size: 0.75rem;
}

.contact-card__label {
  font-weight: 700;
  font-size: 0.9rem;
}

.contact-card__sub {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.contacts-hub__cta { width: 100%; max-width: 400px; }

/* ROI calculator */
.roi-calc__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.roi-calc__form {
  display: grid;
  gap: 16px;
}

.roi-calc__form input {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  font: inherit;
}

.roi-calc__result {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}

.roi-result__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.roi-result__grid strong {
  display: block;
  font-size: 1.35rem;
  color: var(--accent-yellow);
}

.roi-result__grid span {
  font-size: 0.72rem;
  color: var(--text-dim);
}

.roi-result__hint {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 20px;
}

/* Quiz recommendation */
.quiz-recommendation {
  padding: 16px 18px;
  margin-bottom: 20px;
  border-radius: var(--radius-sm);
  background: rgba(255, 198, 32, 0.08);
  border: 1px solid rgba(255, 198, 32, 0.25);
}

.quiz-rec__label { font-size: 0.72rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; }
.quiz-rec__tier { font-size: 1.1rem; font-weight: 700; margin: 6px 0; }
.quiz-rec__price { font-size: 1.25rem; color: var(--accent-yellow); font-weight: 800; }
.quiz-rec__note { font-size: 0.85rem; color: var(--text-muted); margin-top: 8px; }

.quiz-case-hint {
  margin: 12px 0 4px;
  padding: 12px 14px;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.quiz-case-hint a { color: var(--accent); text-decoration: underline; }

/* Lead success */
.lead-success {
  text-align: center;
  padding: 24px 16px;
}

.lead-success__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(0, 212, 170, 0.15);
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lead-success__sub { font-size: 0.82rem; color: var(--text-dim); margin-top: 8px; }

.footer__niches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: center;
  margin-top: 12px;
}

.footer__niches a {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer__niches a:hover { color: var(--accent); }

/* Niche landing pages */
.niche-page .niche-hero {
  min-height: auto;
  padding: calc(var(--header-h) + 48px) 0 64px;
}

.niche-case-highlight {
  font-size: 1rem;
  color: var(--accent-yellow);
  font-weight: 600;
  margin-bottom: 24px;
}

.niche-case__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.niche-case__grid img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  width: 100%;
}

.niche-case__grid figcaption {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 8px;
  text-align: center;
}

/* ─── Floating messenger dock ─── */
.messenger-dock {
  position: fixed;
  left: 16px;
  bottom: 100px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.messenger-dock__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  box-shadow: var(--shadow);
  transition: transform 0.2s, border-color 0.2s;
  text-decoration: none;
}

.messenger-dock__btn:hover {
  transform: scale(1.08);
  border-color: var(--accent-yellow);
}

.contact-card--copy {
  cursor: pointer;
  font: inherit;
  width: 100%;
}

.contact__link--copy {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.messenger-dock__btn[type="button"] {
  cursor: pointer;
}

.messenger-dock__btn--phone { color: var(--accent); }
.messenger-dock__btn--telegram { color: #29b6f6; }
.messenger-dock__btn--whatsapp { color: #25d366; }

/* Yellow accents on cases & metrics */
.metric-float__val { color: var(--accent-yellow); }
.case-card__result { color: var(--accent-yellow); }
.case-card__tag { background: rgba(255, 198, 32, 0.15); color: var(--accent-yellow); border-color: rgba(255, 198, 32, 0.3); }
.case-metric { border-color: rgba(255, 198, 32, 0.2); }
.case-metric strong { color: var(--accent-yellow); }

/* Responsive */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__topline { justify-content: center; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__stats--grid { grid-template-columns: repeat(2, 1fr); }
  .hero__actions { justify-content: center; }
  .hero__visual { order: -1; }
  .phone-mockup { width: 220px; }
  .metric-float--1 { left: 0; }
  .metric-float--2 { right: 0; }

  .pain__grid, .audience__grid { grid-template-columns: repeat(2, 1fr); }
  .process__timeline--days { grid-template-columns: repeat(2, 1fr); }
  .niche-panel__cols { grid-template-columns: 1fr; }
  .ai-section__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .cases__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .price-card--featured { transform: none; }
  .about__grid { grid-template-columns: 1fr; }
  .about__photo { max-width: 360px; margin: 0 auto; }
  .testimonials__slider { grid-template-columns: 1fr; }
  .contact__card { grid-template-columns: 1fr; padding: 40px 28px; }
  .cta-banner__inner { flex-direction: column; text-align: center; padding: 32px 24px; }
  .trust-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .agitate__inner { grid-template-columns: 1fr; }
  .guarantee__grid { grid-template-columns: 1fr; }
  .intro__grid { grid-template-columns: 1fr; text-align: center; }
  .intro__media { max-width: 280px; margin: 0 auto; }
  .messenger-dock { bottom: 80px; left: 10px; }
  .messenger-dock__btn { width: 42px; height: 42px; }
}

@media (max-width: 768px) {
  .nav, .header__cta { display: none; }
  .header__phone { padding: 8px 12px; font-size: 0.8rem; }
  .burger { display: flex; }
  .roi-calc__grid { grid-template-columns: 1fr; }
  .roi-result__grid { grid-template-columns: 1fr; }
  .niche-case__grid { grid-template-columns: 1fr; }

  .pain__grid, .audience__grid, .why__grid, .process__timeline--days { grid-template-columns: 1fr; }
  .cases__grid { grid-template-columns: 1fr; }
  .hero__stats--grid { grid-template-columns: repeat(2, 1fr); }
  .contact__links { flex-direction: column; }
  .sticky-cta { bottom: 16px; right: 16px; left: 16px; text-align: center; }
  .niche-panel { padding: 24px 18px; }
  .trust-bar__grid { grid-template-columns: 1fr; }
  .compare__head, .compare__row { padding: 12px 14px; font-size: 0.82rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
