:root {
  --white: #ffffff;
  --bg: #f8f9fc;
  --bg-alt: #f0f2f7;
  --bg-card: #ffffff;
  --text-primary: #1a1a2e;
  --text-secondary: #5a5a7a;
  --text-muted: #8a8aa0;
  --accent: #6c5ce7;
  --accent-hover: #5a4bd4;
  --accent-light: rgba(108, 92, 231, 0.08);
  --accent-lighter: rgba(108, 92, 231, 0.04);
  --accent-glow: rgba(108, 92, 231, 0.2);
  --accent-secondary: #00cec9;
  --success: #00b894;
  --warning: #f9a825;
  --danger: #e17055;
  --border: #e2e4ed;
  --border-light: #eceef5;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.5px;
}

.logo-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}

.nav a:hover { color: var(--text-primary); }

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
  border-radius: 1px;
}

.nav a:hover::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: var(--accent-light);
  color: var(--accent);
  border-color: var(--accent);
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 2px 8px var(--accent-glow);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--accent-glow);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: var(--radius-md);
}

.btn-xl {
  padding: 18px 40px;
  font-size: 17px;
  border-radius: var(--radius-md);
}

.btn-telegram {
  background: linear-gradient(135deg, #0088cc, #00aced);
  color: white;
  box-shadow: 0 2px 8px rgba(0, 136, 204, 0.3);
}

.btn-telegram:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 136, 204, 0.4);
}

.btn-white {
  background: white;
  color: var(--accent);
  border: 2px solid transparent;
}

.btn-white:hover {
  border-color: white;
  background: transparent;
  color: white;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-primary);
}

.mobile-menu-btn svg { width: 24px; height: 24px; }

/* ===== HERO ===== */
.hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 206, 201, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--accent-light);
  border: 1px solid rgba(108, 92, 231, 0.15);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-badge .pulse {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--accent), #a855f7, var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.hero-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  width: 100%;
}

.hero-image-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: white;
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 3s ease-in-out infinite;
}

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

.hero-image-badge .badge-icon {
  width: 36px;
  height: 36px;
  background: rgba(0, 184, 148, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.hero-image-badge .badge-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.hero-image-badge .badge-sub {
  font-size: 11px;
  color: var(--text-muted);
}

/* ===== SECTION STYLES ===== */
.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--white);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
  opacity: 0.2;
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 8px;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  border: 3px solid var(--accent-light);
  transition: var(--transition);
}

.step-card:hover .step-number {
  background: var(--accent);
  color: white;
  transform: scale(1.05);
}

.step-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-1, linear-gradient(90deg, var(--accent), var(--accent-secondary)));
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.feature-icon.purple { background: rgba(108, 92, 231, 0.1); }
.feature-icon.teal { background: rgba(0, 206, 201, 0.1); }
.feature-icon.green { background: rgba(0, 184, 148, 0.1); }
.feature-icon.orange { background: rgba(253, 203, 110, 0.15); }
.feature-icon.blue { background: rgba(9, 132, 227, 0.1); }
.feature-icon.pink { background: rgba(232, 67, 147, 0.1); }

.feature-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== SCREENSHOTS ===== */
.screenshots-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.screenshots-showcase.reverse {
  direction: rtl;
}

.screenshots-showcase.reverse > * {
  direction: ltr;
}

.screenshot-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.screenshot-visual img {
  width: 100%;
  display: block;
}

.screenshot-info h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.screenshot-info p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.screenshot-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.screenshot-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.screenshot-features li .check {
  width: 20px;
  height: 20px;
  background: rgba(0, 184, 148, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.screenshot-features li .check svg {
  width: 12px;
  height: 12px;
  color: var(--success);
}

/* ===== EXAMPLES ===== */
.examples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.example-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  cursor: pointer;
}

.example-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.example-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: var(--transition);
}

.example-card:hover img {
  transform: scale(1.02);
}

.example-card-body {
  padding: 20px;
}

.example-card-tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
}

.example-card-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.example-card-desc {
  font-size: 13px;
  color: var(--text-muted);
}

/* ===== COMPARISON ===== */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.comparison-table thead th {
  padding: 20px 24px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border-light);
}

.comparison-table thead th:first-child {
  text-align: left;
  width: 30%;
}

.comparison-table thead th.highlight {
  background: var(--accent);
  color: white;
  position: relative;
}

.comparison-table thead th.highlight::before {
  content: '★ Рекомендуем';
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 11px;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  font-weight: 600;
  white-space: nowrap;
}

.comparison-table tbody td {
  padding: 16px 24px;
  font-size: 14px;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
}

.comparison-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text-primary);
}

.comparison-table tbody td.highlight {
  background: var(--accent-lighter);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 14px;
}

.comparison-check.yes {
  background: rgba(0, 184, 148, 0.1);
  color: var(--success);
}

.comparison-check.no {
  background: rgba(225, 112, 85, 0.1);
  color: var(--danger);
}

.comparison-check.partial {
  background: rgba(253, 203, 110, 0.15);
  color: var(--warning);
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  color: #f9a825;
  fill: #f9a825;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-1, linear-gradient(135deg, var(--accent), #a855f7));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 700;
}

.testimonial-role {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition);
  user-select: none;
}

.faq-question:hover { color: var(--accent); }

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-icon {
  background: var(--accent);
  color: white;
  transform: rotate(45deg);
}

.faq-icon svg { width: 14px; height: 14px; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-card {
  background: linear-gradient(135deg, var(--accent), #a855f7);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.cta-card::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

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

.cta-card h2 {
  font-size: 40px;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.cta-card p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-bonus {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  color: white;
}

.cta-bonus svg { width: 20px; height: 20px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--white);
  border-top: 1px solid var(--border-light);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 4px 0;
  transition: var(--transition);
}

.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  font-size: 13px;
  color: var(--text-muted);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--text-muted);
}

.footer-social:hover {
  background: var(--accent);
  color: white;
}

.footer-social svg { width: 18px; height: 18px; }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
}

.mobile-menu.active { display: block; }

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: white;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--shadow-xl);
}

.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-muted);
}

.mobile-menu-close svg { width: 24px; height: 24px; }

.mobile-menu-content a {
  padding: 12px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-light);
}

.mobile-menu-content .btn {
  margin-top: 16px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero h1 { font-size: 42px; }
  .section-title { font-size: 34px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .screenshots-showcase { gap: 30px; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .header-actions .btn-ghost { display: none; }
  .mobile-menu-btn { display: block; }

  .hero { padding: 120px 0 60px; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero h1 { font-size: 36px; }
  .hero-desc { margin: 0 auto 28px; font-size: 16px; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image-badge { display: none; }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .steps-grid::before { display: none; }

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

  .screenshots-showcase {
    grid-template-columns: 1fr;
  }
  .screenshots-showcase.reverse { direction: ltr; }

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

  .comparison-table { font-size: 12px; }
  .comparison-table thead th,
  .comparison-table tbody td { padding: 12px 8px; }

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

  .cta-card { padding: 48px 24px; }
  .cta-card h2 { font-size: 28px; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .section { padding: 60px 0; }
  .section-title { font-size: 28px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 30px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .steps-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* cxl.ru integrations */
.lv2-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.lv2-header-actions .site-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.lv2-header-actions .site-nav a,
.lv2-header-actions .site-nav .nav-user {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.lv2-header-actions .site-nav .nav-btn {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  font-size: 14px;
}

.lv2-footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: center;
  margin-top: 16px;
  font-size: 13px;
}

.lv2-footer-legal a {
  color: var(--text-muted);
}

.lv2-footer-legal a:hover {
  color: var(--accent);
}

.lv2-footer-partner {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 640px;
}

.lv2-footer-partner a {
  color: var(--accent);
  font-weight: 600;
}

.lv2-footer-disclaimer {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 720px;
}

@media (max-width: 768px) {
  .lv2-header-actions .nav { display: none; }
}

/* Промо: подарок 100 ₽ (как на старой главной) */
body.page-landing-v2 .hero > .container > .landing-gift-banner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.85rem 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto 28px;
  max-width: min(640px, 100%);
  padding: 0.9rem 1.15rem 0.9rem 1rem;
  border-radius: 20px;
  text-decoration: none;
  color: #1c1917;
  background: linear-gradient(
      125deg,
      rgba(255, 255, 255, 0.97) 0%,
      rgba(255, 251, 235, 0.96) 42%,
      rgba(253, 242, 248, 0.95) 100%
    ),
    linear-gradient(135deg, #fbbf24 0%, #f472b6 45%, #818cf8 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border: 2px solid transparent;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.75) inset,
    0 14px 36px rgba(124, 58, 237, 0.12),
    0 6px 16px rgba(245, 158, 11, 0.1);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

body.page-landing-v2 .landing-gift-banner:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.85) inset,
    0 20px 48px rgba(124, 58, 237, 0.16),
    0 8px 20px rgba(245, 158, 11, 0.14);
}

body.page-landing-v2 .landing-gift-banner:focus-visible {
  outline: 3px solid rgba(108, 92, 231, 0.45);
  outline-offset: 3px;
}

body.page-landing-v2 .landing-gift-banner-shimmer {
  position: absolute;
  inset: -40% -30%;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.55) 48%,
    rgba(255, 255, 255, 0.2) 52%,
    transparent 65%
  );
  transform: translateX(-60%) rotate(12deg);
  animation: lv2-gift-shimmer 4.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes lv2-gift-shimmer {
  0%,
  12% {
    transform: translateX(-65%) rotate(12deg);
  }
  55%,
  100% {
    transform: translateX(55%) rotate(12deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.page-landing-v2 .landing-gift-banner-shimmer {
    animation: none;
    opacity: 0;
  }
}

body.page-landing-v2 .landing-gift-banner-icon {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 3.1rem;
  height: 3.1rem;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, #fef08a 0%, #fdba74 40%, #f472b6 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.65) inset,
    0 6px 14px rgba(234, 88, 12, 0.25);
}

body.page-landing-v2 .landing-gift-banner-icon-inner {
  font-size: 1.55rem;
  line-height: 1;
}

body.page-landing-v2 .landing-gift-banner-copy {
  position: relative;
  z-index: 1;
  flex: 1 1 200px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0.15rem;
}

body.page-landing-v2 .landing-gift-banner-kicker {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c2410c;
}

body.page-landing-v2 .landing-gift-banner-title {
  font-size: clamp(1.05rem, 2.8vw, 1.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #111827;
}

body.page-landing-v2 .landing-gift-banner-sum {
  background: linear-gradient(102deg, #ea580c 0%, #db2777 45%, #7c3aed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

body.page-landing-v2 .landing-gift-banner-sub {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.45;
  color: #57534e;
  max-width: 26rem;
}

body.page-landing-v2 .landing-gift-banner-cta {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--accent);
  white-space: nowrap;
}

body.page-landing-v2 .landing-gift-banner:hover .landing-gift-banner-cta {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

@media (max-width: 520px) {
  body.page-landing-v2 .landing-gift-banner {
    padding: 0.85rem 1rem;
    gap: 0.75rem;
  }

  body.page-landing-v2 .landing-gift-banner-copy {
    flex-basis: 100%;
    order: 2;
  }

  body.page-landing-v2 .landing-gift-banner-icon {
    order: 0;
  }

  body.page-landing-v2 .landing-gift-banner-cta {
    order: 1;
    margin-left: auto;
  }
}
