:root {
  --bg-main: #0b0f19;
  --bg-card: rgba(21, 30, 49, 0.7);
  --border-card: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(139, 92, 246, 0.4);
  --primary: #8b5cf6;
  --primary-hover: #7c3aed;
  --wb-color: #cb11ab;
  --ozon-color: #005bff;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --success: #10b981;
  --warning: #f59e0b;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Background Glow Effects */
.bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
}

.bg-glow-1 {
  top: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
}

.bg-glow-2 {
  top: 600px;
  right: -100px;
  background: radial-gradient(circle, rgba(0, 91, 255, 0.18) 0%, transparent 70%);
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(11, 15, 25, 0.85);
  border-bottom: 1px solid var(--border-card);
  padding: 16px 0;
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
}

.logo-accent { color: var(--primary); }

.badge-version {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: #c4b5fd;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: #fff; }

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

/* Buttons */
.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(139, 92, 246, 0.55);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-card);
  color: var(--text-main);
}

.btn-secondary:hover { background: rgba(255, 255, 255, 0.12); }

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-card);
  color: #fff;
}

.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(139, 92, 246, 0.1);
}

.btn-full { width: 100%; }

.pulse-glow {
  animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(139, 92, 246, 0); }
  100% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0); }
}

/* Hero Section */
.hero {
  padding: 80px 24px 60px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.dot-live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.text-gradient-wb {
  background: linear-gradient(135deg, #f472b6, #cb11ab);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-ozon {
  background: linear-gradient(135deg, #60a5fa, #005bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 19px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.btn-hero {
  padding: 16px 36px;
  font-size: 17px;
  border-radius: 14px;
}

.btn-subtext {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.85;
  margin-top: 4px;
}

/* Trust Bar */
.trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 20px 30px;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  backdrop-filter: blur(12px);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trust-val {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

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

.trust-divider {
  width: 1px;
  height: 30px;
  background: var(--border-card);
}

/* Sections */
.section {
  padding: 90px 24px;
  position: relative;
  z-index: 1;
}

.section-container {
  max-width: 1180px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-tag {
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Live Demo Card */
.demo-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 24px;
  padding: 36px;
  backdrop-filter: blur(16px);
}

.rating-picker {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.rating-btn {
  padding: 10px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-card);
  color: var(--text-muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
}

.rating-btn.active, .rating-btn:hover {
  background: rgba(139, 92, 246, 0.15);
  border-color: var(--primary);
  color: #fff;
}

textarea {
  width: 100%;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  color: #fff;
  padding: 14px;
  font-size: 14px;
  margin-top: 8px;
  margin-bottom: 16px;
  outline: none;
  resize: none;
}

textarea:focus { border-color: var(--primary); }

.demo-output {
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.output-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 600;
}

.speed-badge {
  font-size: 11px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
  padding: 4px 10px;
  border-radius: 12px;
}

.output-box {
  font-size: 15px;
  color: #e2e8f0;
  line-height: 1.6;
  white-space: pre-line;
}

/* Comparison Section */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.comp-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 36px;
}

.comp-bad { border-color: rgba(239, 68, 68, 0.2); }
.comp-good { border-color: rgba(16, 185, 129, 0.3); background: rgba(16, 185, 129, 0.03); }

.comp-icon { font-size: 32px; margin-bottom: 16px; }
.comp-card h3 { font-size: 20px; margin-bottom: 20px; }
.comp-card ul { list-style: none; }
.comp-card li { margin-bottom: 14px; font-size: 15px; color: var(--text-muted); }
.comp-good li { color: #f1f5f9; }

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
}

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

.feat-icon { font-size: 32px; margin-bottom: 16px; }
.feature-card h3 { font-size: 19px; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-muted); }

/* TG Showcase Mockup */
.tg-showcase-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.tg-check-list { list-style: none; margin-top: 20px; }
.tg-check-list li { font-size: 16px; margin-bottom: 12px; }

.tg-mockup-card {
  background: #17212b;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--border-card);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.tg-mockup-header {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.tg-avatar { font-size: 28px; }
.tg-bot-name { font-weight: 700; font-size: 15px; }
.tg-bot-status { font-size: 12px; color: #5288c1; }
.tg-msg-body { font-size: 13px; line-height: 1.5; color: #e4ecf2; }
.tg-msg-title { font-weight: 700; color: #ef4444; margin-bottom: 8px; }

.tg-ai-box {
  background: #242f3d;
  padding: 12px;
  border-radius: 10px;
  margin-top: 10px;
  border-left: 3px solid #5288c1;
}

.tg-btn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 16px;
}

.tg-btn {
  background: #2b5278;
  color: #fff;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.tg-btn-success { background: #10b981; }
.tg-btn-danger { background: rgba(239, 68, 68, 0.2); color: #f87171; }

/* Calculator */
.calc-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 24px;
  padding: 40px;
}

.calc-label-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-weight: 600;
}

.calc-range-val { color: var(--primary); font-size: 20px; font-weight: 800; }

input[type=range] {
  width: 100%;
  accent-color: var(--primary);
  cursor: pointer;
}

.calc-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.calc-res-item {
  background: rgba(15, 23, 42, 0.6);
  padding: 24px;
  border-radius: 16px;
  text-align: center;
}

.calc-res-num { font-size: 26px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.calc-res-lbl { font-size: 13px; color: var(--text-muted); }

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.price-card-featured {
  border-color: var(--primary);
  background: rgba(139, 92, 246, 0.08);
}

.price-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 12px;
}

.price-header h3 { font-size: 20px; margin-bottom: 12px; }
.price-val { font-size: 32px; font-weight: 800; color: #fff; margin-bottom: 20px; }
.price-val span { font-size: 13px; font-weight: 400; color: var(--text-muted); }
.price-features { list-style: none; margin-bottom: 24px; }
.price-features li { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }

/* FAQ Accordion */
.faq-accordion { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border-card);
  border-radius: 16px;
  margin-bottom: 14px;
  background: var(--bg-card);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.faq-answer {
  padding: 0 24px 20px;
  display: none;
  font-size: 15px;
  color: var(--text-muted);
}

.faq-item.active .faq-answer { display: block; }
.faq-item.active .faq-icon { transform: rotate(45deg); }

/* CTA Banner */
.cta-banner {
  padding: 80px 24px;
  text-align: center;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(0, 91, 255, 0.15));
  border-top: 1px solid var(--border-card);
}

.cta-container { max-width: 700px; margin: 0 auto; }
.cta-container h2 { font-size: 36px; font-weight: 800; margin-bottom: 16px; }
.cta-container p { color: var(--text-muted); font-size: 16px; margin-bottom: 30px; }

/* Footer & Legal Compliance Box */
.footer {
  padding: 60px 24px 30px;
  border-top: 1px solid var(--border-card);
  background: #080b12;
}

.footer-container {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.legal-requisites-box {
  margin-top: 20px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  font-size: 12px;
  color: var(--text-muted);

}

.legal-requisites-box p { margin-bottom: 4px; }
.legal-requisites-box a { color: #a78bfa; text-decoration: none; }

.footer-links a, .footer-legal a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  margin-top: 10px;
  transition: color 0.2s;
}

.footer-links a:hover, .footer-legal a:hover { color: #fff; }

.copyright { font-size: 12px; color: var(--text-muted); margin-top: 20px; }

/* Modal Windows for Legal Docs */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal-overlay.active { display: flex; }

.modal-card {
  background: #151e31;
  border: 1px solid var(--border-card);
  border-radius: 20px;
  max-width: 700px;
  width: 100%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
}

.modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-card);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.modal-body {
  padding: 24px;
  overflow-y: auto;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* 📱 Responsive Mobile Adjustments (320px - 768px) */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

.nav-btn-mobile { display: none; }

@media (max-width: 540px) {
  .nav-btn-desktop { display: none; }
  .nav-btn-mobile { display: inline; }
}

/* --- Comparison Cards Grid (До vs Со SmartOtzyv) --- */
.comparison-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.comp-card {
  padding: 32px;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
}

.comp-card-old {
  border-color: rgba(239, 68, 68, 0.3);
  background: linear-gradient(145deg, rgba(239, 68, 68, 0.04), rgba(15, 23, 42, 0.4));
}

.comp-card-new {
  border-color: rgba(139, 92, 246, 0.4);
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.08), rgba(0, 91, 255, 0.08));
}

.comp-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.old-badge { background: rgba(239, 68, 68, 0.15); color: #f87171; }
.new-badge { background: rgba(167, 139, 250, 0.2); color: #c084fc; }

.comp-header h3 { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.comp-price { font-size: 26px; font-weight: 800; color: #fff; margin-bottom: 20px; }
.comp-price span { font-size: 14px; font-weight: 400; color: var(--text-muted); }

.comp-list { list-style: none; padding: 0; margin: 0; }
.comp-list li { margin-bottom: 12px; font-size: 14px; line-height: 1.5; color: var(--text-muted); }
.comp-list li strong { color: #fff; }

/* --- Security Section --- */
.security-card {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 30px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.06), rgba(15, 23, 42, 0.8));
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 24px;
  align-items: center;
}

.security-icon-box {
  width: 90px;
  height: 90px;
  border-radius: 24px;
  background: rgba(16, 185, 129, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 44px;
}

.security-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.sec-feat-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.sec-check { font-size: 20px; }
.sec-feat-item strong { display: block; font-size: 15px; color: #fff; margin-bottom: 4px; }
.sec-feat-item p { font-size: 13px; color: var(--text-muted); line-height: 1.4; }

/* --- Reviews Slider & Section --- */
.reviews-slider-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.reviews-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 12px 4px;
  width: 100%;
}

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

.review-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 320px;
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

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

.author-avatar {
  width: 46px !important;
  height: 46px !important;
  min-width: 46px !important;
  min-height: 46px !important;
  max-width: 46px !important;
  max-height: 46px !important;
  border-radius: 50% !important;
  flex-shrink: 0 !important;
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  aspect-ratio: 1 / 1 !important;
}

.bg-avatar-1 { background: linear-gradient(135deg, #8b5cf6, #3b82f6); }
.bg-avatar-2 { background: linear-gradient(135deg, #10b981, #059669); }
.bg-avatar-3 { background: linear-gradient(135deg, #f59e0b, #ef4444); }

.author-name { font-size: 15px; font-weight: 700; color: #fff; }
.author-meta { font-size: 12px; color: var(--text-muted); }

.review-text { font-size: 14px; line-height: 1.6; color: #cbd5e1; margin-bottom: 16px; }

.review-tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(139, 92, 246, 0.15);
  color: #a78bfa;
}

/* Slider Controls */
.slider-arrow {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease;
  z-index: 10;
  flex-shrink: 0;
}

.slider-arrow:hover {
  background: var(--accent-purple);
  border-color: var(--accent-purple);
  transform: scale(1.05);
}

.prev-arrow { margin-right: 12px; }
.next-arrow { margin-left: 12px; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dots .dot.active {
  width: 28px;
  border-radius: 12px;
  background: var(--accent-purple);
}

/* --- Product Preview Showcase Section --- */
.preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.preview-card-box {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.preview-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(139, 92, 246, 0.15);
  color: #a78bfa;
  margin-bottom: 12px;
}

.badge-ozon {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
}

.preview-card-header h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.preview-card-header p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 24px;
}

/* Dashboard Mockup Styling */
.dashboard-mockup-card {
  background: #0b1120;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px;
  font-size: 13px;
}

.dash-mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 16px;
}

.dash-brand { font-weight: 700; color: #fff; }
.dash-user { font-size: 11px; color: var(--text-muted); }

.dash-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.dash-stat-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 12px;
}

.dash-stat-title { font-size: 11px; color: var(--text-muted); margin-bottom: 4px; }
.dash-stat-val { font-size: 18px; font-weight: 800; color: #fff; }
.dash-stat-sub { font-size: 10px; color: var(--text-muted); }
.text-green { color: #10b981; }

.dash-chart-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 14px;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.leg-wb { color: #c084fc; font-weight: bold; }
.leg-ozon { color: #60a5fa; font-weight: bold; }

.mock-bars {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 90px;
  padding-top: 10px;
}

.bar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  height: 100%;
  justify-content: flex-end;
  width: 12%;
}

.bar-col span { font-size: 10px; color: var(--text-muted); }

.bar-fill { width: 100%; border-radius: 4px 4px 0 0; }
.wb-fill { background: linear-gradient(to top, #8b5cf6, #c084fc); }
.ozon-fill { background: linear-gradient(to top, #2563eb, #60a5fa); margin-top: 2px; }

/* ==========================================================================
   📱 FINAL MOBILE RESPONSIVE OVERRIDES (MUST REMAIN AT VERY END OF CSS)
   ========================================================================== */
@media (max-width: 768px) {
  .navbar { padding: 10px 0; }
  .nav-container { padding: 0 12px; gap: 8px; }
  .nav-links { display: none; }
  .badge-version { display: none; }
  .logo { font-size: 17px; gap: 6px; }
  
  .nav-actions .btn {
    padding: 8px 12px;
    font-size: 12px;
    white-space: nowrap;
    border-radius: 10px;
  }
  
  .hero { padding: 30px 16px 20px; }
  .hero-title { font-size: clamp(22px, 6.5vw, 32px); line-height: 1.2; word-break: break-word; overflow-wrap: break-word; }
  .hero-subtitle { font-size: 14px; margin-bottom: 24px; }
  
  .btn-hero { width: 100%; padding: 14px 16px; font-size: 14px; }
  
  .trust-bar { flex-direction: column; gap: 12px; padding: 14px; }
  .trust-divider { width: 80%; height: 1px; }
  
  .section { padding: 30px 14px; }
  .section-title { font-size: 22px; word-break: break-word; overflow-wrap: break-word; }
  
  .demo-card { grid-template-columns: 1fr; padding: 16px 12px; gap: 16px; }
  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  
  .calc-card { padding: 20px 14px; }
  .calc-results-grid { grid-template-columns: 1fr; gap: 12px; }
  .calc-res-num { font-size: 20px; }

  .cta-banner { padding: 40px 16px; }
  .cta-container h2 { font-size: clamp(20px, 5.5vw, 28px); word-break: break-word; overflow-wrap: break-word; }
  
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .footer-container { grid-template-columns: 1fr; gap: 24px; }

  /* 📱 Mobile Layout Overrides for New Blocks */
  .preview-grid { grid-template-columns: 1fr !important; gap: 20px; }
  .preview-card-box { padding: 20px 14px !important; border-radius: 18px !important; }
  .preview-card-header h3 { font-size: 18px !important; }
  .preview-card-header p { font-size: 13px !important; margin-bottom: 16px !important; }
  
  .tg-mockup-card { padding: 14px 12px !important; }
  .tg-msg-body { font-size: 12px !important; padding: 10px !important; }
  .tg-btn-grid { grid-template-columns: 1fr 1fr !important; gap: 6px !important; }
  .tg-btn { padding: 8px 6px !important; font-size: 11px !important; text-align: center; }

  .dashboard-mockup-card { padding: 14px 12px !important; border-radius: 14px !important; }
  .dash-mockup-header { flex-direction: column !important; align-items: flex-start !important; gap: 4px !important; }
  .dash-stats-grid { grid-template-columns: 1fr !important; gap: 8px !important; }
  .dash-stat-item { padding: 10px !important; }
  .dash-stat-val { font-size: 16px !important; }

  .dash-chart-box { padding: 10px !important; }
  .chart-header { flex-direction: column !important; gap: 4px !important; font-size: 10px !important; }
  .mock-bars { height: 75px !important; }
  .bar-col span { font-size: 9px !important; }

  .comparison-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .comparison-cards-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .comp-card { padding: 20px 14px !important; border-radius: 18px !important; }
  .comp-header h3 { font-size: 18px !important; }
  .comp-price { font-size: 22px !important; margin-bottom: 14px !important; }
  .comp-list li { font-size: 13px !important; margin-bottom: 10px !important; }

  .security-card { grid-template-columns: 1fr !important; text-align: center !important; padding: 24px 14px !important; gap: 16px !important; border-radius: 18px !important; }
  .security-icon-box { margin: 0 auto !important; width: 64px !important; height: 64px !important; font-size: 32px !important; border-radius: 16px !important; }
  .security-features-grid { grid-template-columns: 1fr !important; text-align: left !important; gap: 14px !important; margin-top: 16px !important; }
  .sec-feat-item { gap: 10px !important; }
  .sec-feat-item strong { font-size: 14px !important; }
  .sec-feat-item p { font-size: 12px !important; }

  .review-card {
    flex: 0 0 100% !important;
    min-width: 100% !important;
    padding: 20px 14px !important;
  }
  .slider-arrow { display: none !important; }
}
