/* ============================================
   Zvonalitik Landing Page Styles
   Modern design with animations and mockups
   ============================================ */

/* === CSS Variables === */
:root {
  /* Colors */
  --primary: #2563EB;
  --primary-hover: #1D4ED8;
  --primary-light: #DBEAFE;
  --primary-glow: rgba(37, 99, 235, 0.4);

  --accent: #7C3AED;
  --accent-light: #A78BFA;
  --accent-glow: rgba(124, 58, 237, 0.4);

  --dark: #0F172A;
  --dark-alt: #1E293B;
  --dark-lighter: #334155;

  --text-primary: #1E293B;
  --text-secondary: #64748B;
  --text-light: #F1F5F9;
  --text-muted: #94A3B8;

  --bg-white: #FFFFFF;
  --surface: #FFFFFF; /* Alias for --bg-white, used in tools */
  --bg-alt: #F8FAFC;
  --bg-secondary: #F1F5F9;
  --border: #E2E8F0;
  --border-dark: #334155;

  --success: #10B981;
  --success-light: #D1FAE5;
  --success-dark: #065F46;
  --warning: #F59E0B;
  --warning-light: #FEF3C7;
  --warning-dark: #92400E;
  --error: #EF4444;
  --error-light: #FEE2E2;
  --error-dark: #991B1B;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', 'Consolas', monospace;

  /* Spacing */
  --container-max: 1280px;
  --section-gap: 140px;
  --section-gap-mobile: 80px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 60px var(--primary-glow);

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* === Reset & Base === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: white;
  background: var(--dark);
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--dark-lighter);
  border-radius: 5px;
  border: 2px solid var(--dark);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Selection */
::selection {
  background: var(--primary);
  color: white;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

/* === Container === */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* === Typography === */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

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

.section-header--light {
  color: var(--text-light);
}

.section-header--light .section-subtitle {
  color: var(--text-muted);
}

.section-title {
  font-size: clamp(36px, 5vw, 52px);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn i {
  width: 20px;
  height: 20px;
}

.btn--primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 14px var(--primary-glow);
}

.btn--primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--primary-glow);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn--outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--outline:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn--lg {
  padding: 18px 36px;
  font-size: 18px;
}

.btn--block {
  width: 100%;
}


/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: transparent;
  transition: all var(--transition-base);
}

.nav--scrolled {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  color: white;
}

.nav__logo-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 10px;
}

.nav__logo-icon i {
  width: 20px;
  height: 20px;
  color: white;
}

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

.nav__links a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.nav__links a:hover {
  color: white;
}

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

.nav__login {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.nav__login:hover {
  color: white;
}

.nav__mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: white;
}

.nav__mobile-toggle i {
  width: 24px;
  height: 24px;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: var(--dark);
  padding: 100px 24px 40px;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
}

.mobile-menu--open {
  transform: translateX(0);
}

.mobile-menu__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu__content a {
  font-size: 24px;
  font-weight: 600;
  color: white;
}


/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: var(--dark);
  overflow: hidden;
}

/* Hero Background */
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

.hero__orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 20s ease-in-out infinite;
}

.hero__orb--1 {
  width: 400px;
  height: 400px;
  background: var(--primary);
  top: -100px;
  right: 10%;
  animation-delay: 0s;
}

.hero__orb--2 {
  width: 300px;
  height: 300px;
  background: var(--accent);
  bottom: 20%;
  left: 5%;
  animation-delay: -7s;
}

.hero__orb--3 {
  width: 200px;
  height: 200px;
  background: var(--success);
  top: 50%;
  right: 30%;
  animation-delay: -14s;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(30px, -30px) scale(1.05);
  }

  50% {
    transform: translate(-20px, 20px) scale(0.95);
  }

  75% {
    transform: translate(20px, 30px) scale(1.02);
  }
}

/* Hero Container */
.hero__container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Hero Content */
.hero__content {
  color: white;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--success);
  margin-bottom: 24px;
}

.hero__badge i {
  width: 16px;
  height: 16px;
}

.hero__title {
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, white 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 20px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 500px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.hero__integrations {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
}

.hero__integrations-list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hero__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-muted);
}

/* Hero Mockup */
.hero__mockup {
  perspective: 1000px;
}

.mockup {
  position: relative;
  background: var(--dark-alt);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 80px rgba(37, 99, 235, 0.15);
  transform: rotateY(-5deg) rotateX(2deg);
  transition: transform var(--transition-slow);
}

.mockup:hover {
  transform: rotateY(0deg) rotateX(0deg);
}

.mockup__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--dark);
  border-bottom: 1px solid var(--border-dark);
}

.mockup__dots {
  display: flex;
  gap: 6px;
}

.mockup__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--dark-lighter);
}

.mockup__dots span:nth-child(1) {
  background: #EF4444;
}

.mockup__dots span:nth-child(2) {
  background: #F59E0B;
}

.mockup__dots span:nth-child(3) {
  background: #10B981;
}

.mockup__url {
  flex: 1;
  padding: 6px 12px;
  background: var(--dark-alt);
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}

.mockup__content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Call Info */
.mockup__call-info {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-dark);
}

.mockup__call-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
}

.mockup__call-title i {
  width: 18px;
  height: 18px;
  color: var(--success);
}

.mockup__call-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
}

.mockup__call-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.mockup__call-meta i {
  width: 14px;
  height: 14px;
}

/* Mockup Blocks */
.mockup__block {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 16px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.mockup__block.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.mockup__block-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin-bottom: 12px;
}

.mockup__block-header i {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

/* Info Block */
.mockup__info-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 8px;
}

.mockup__info-row:last-child {
  margin-bottom: 0;
}

.mockup__label {
  color: var(--text-muted);
}

.mockup__value {
  color: white;
}

/* Tags */
.mockup__tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: white;
}

.mockup__tag--blue {
  background: rgba(37, 99, 235, 0.2);
  color: #60A5FA;
}

.mockup__tag--yellow {
  background: rgba(245, 158, 11, 0.2);
  color: #FBBF24;
}

.mockup__tag--red {
  background: rgba(239, 68, 68, 0.2);
  color: #F87171;
}

.mockup__tag--green {
  background: rgba(16, 185, 129, 0.2);
  color: #34D399;
}

.mockup__tag--purple {
  background: rgba(124, 58, 237, 0.2);
  color: #A78BFA;
}

.mockup__tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Score Block */
.mockup__score {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}

.mockup__score-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--success);
}

.mockup__score-max {
  font-size: 14px;
  color: var(--text-muted);
}

.mockup__score-icon {
  width: 18px;
  height: 18px;
  color: var(--success);
}

.mockup__scores {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}

.mockup__score-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mockup__score-label {
  flex: 1;
  font-size: 12px;
  color: var(--text-muted);
}

.mockup__score-bar {
  width: 100px;
  height: 6px;
  background: var(--dark-lighter);
  border-radius: 3px;
  overflow: hidden;
}

.mockup__score-fill {
  height: 100%;
  background: var(--success);
  border-radius: 3px;
  transition: width 1s ease;
}

.mockup__score-fill--warning {
  background: var(--warning);
}

.mockup__score-num {
  font-size: 12px;
  font-weight: 600;
  color: white;
  width: 16px;
  text-align: right;
}

/* Recommendations */
.mockup__recommendations {
  padding-top: 12px;
  border-top: 1px solid var(--border-dark);
}

.mockup__rec-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--warning);
  margin-bottom: 8px;
}

.mockup__rec-title i {
  width: 14px;
  height: 14px;
}

.mockup__rec-list {
  font-size: 12px;
  color: var(--text-muted);
  padding-left: 16px;
  list-style: none;
}

.mockup__rec-list li {
  position: relative;
  margin-bottom: 4px;
}

.mockup__rec-list li::before {
  content: '→';
  position: absolute;
  left: -16px;
  color: var(--warning);
}

/* =============================================
   NEW MOCKUP V2 STYLES (Compact Hero Preview)
   ============================================= */

.mockup__content--compact {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

/* Score Badge - Top Right Corner */
.mockup__score-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05));
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 12px;
}

.mockup__score-badge-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--success);
  line-height: 1;
}

.mockup__score-badge-text {
  display: flex;
  flex-direction: column;
}

.mockup__score-badge-text span {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mockup__score-badge-text small {
  font-size: 12px;
  font-weight: 600;
  color: var(--success);
}

/* Transcript Section */
.mockup__transcript {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  padding: 12px;
  margin-top: 8px;
}

.mockup__transcript-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-dark);
}

.mockup__transcript-header i {
  width: 14px;
  height: 14px;
  color: var(--primary);
}

.mockup__messages {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mockup__msg {
  position: relative;
  padding-left: 12px;
}

.mockup__msg::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 2px;
}

.mockup__msg--operator::before {
  background: var(--primary);
}

.mockup__msg--client::before {
  background: var(--accent);
}

.mockup__msg-role {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.mockup__msg--operator .mockup__msg-role {
  color: var(--primary);
}

.mockup__msg--client .mockup__msg-role {
  color: var(--accent);
}

.mockup__msg-time {
  font-size: 10px;
  color: var(--text-muted);
  margin-left: 6px;
  font-family: var(--font-mono);
}

.mockup__msg p {
  margin: 4px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.mockup__msg mark {
  background: rgba(37, 99, 235, 0.2);
  color: #60A5FA;
  padding: 1px 4px;
  border-radius: 3px;
}

.mockup__highlight--red {
  background: rgba(239, 68, 68, 0.2) !important;
  color: #F87171 !important;
}

.mockup__highlight--green {
  background: rgba(16, 185, 129, 0.2) !important;
  color: #34D399 !important;
}

/* AI Insights */
.mockup__insights {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mockup__insight {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 11px;
}

.mockup__insight i {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.mockup__insight span {
  color: rgba(255, 255, 255, 0.85);
}

.mockup__insight strong {
  color: white;
}

.mockup__insight--warning {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.35);
}

.mockup__insight--warning i {
  color: var(--warning);
}

.mockup__insight--success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.35);
}

.mockup__insight--success i {
  color: var(--success);
}

/* Tags Row */
.mockup__tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mockup__tags-row .mockup__tag {
  font-size: 10px;
  padding: 3px 8px;
}

/* Criteria Scores */
.mockup__criteria {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
}

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

.mockup__criterion-label {
  flex: 1;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mockup__criterion-bar {
  width: 80px;
  height: 5px;
  background: var(--dark-lighter);
  border-radius: 3px;
  overflow: hidden;
}

.mockup__criterion-fill {
  height: 100%;
  background: var(--success);
  border-radius: 3px;
}

.mockup__criterion-fill--warning {
  background: var(--warning);
}

.mockup__criterion-score {
  font-size: 11px;
  font-weight: 600;
  color: white;
  width: 14px;
  text-align: right;
}

/* Recommendation Tip */
.mockup__tip {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 8px;
}

.mockup__tip i {
  width: 14px;
  height: 14px;
  color: var(--warning);
  flex-shrink: 0;
  margin-top: 1px;
}

.mockup__tip span {
  font-size: 11px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}


.mockup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.mockup__overlay.active {
  opacity: 1;
  visibility: visible;
}

.mockup__loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.mockup__spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border-dark);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

.mockup__loader span {
  font-size: 14px;
  color: var(--text-muted);
}

/* Scroll Indicator */
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.hero__scroll-line {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  border-radius: 2px;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}


/* ============================================
   ACCENT DIVIDERS
   ============================================ */

.divider {
  padding: 80px 0;
  background: var(--dark);
  overflow: hidden;
}

/* Stats Divider */
.divider--stats {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-alt) 100%);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat {
  text-align: center;
}

.stat__value {
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat__label {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Quote Divider */
.divider--quote {
  background: var(--bg-alt);
  padding: 120px 0;
}

.quote {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.quote__icon {
  margin-bottom: 24px;
}

.quote__icon i {
  width: 48px;
  height: 48px;
  color: var(--primary);
  opacity: 0.3;
}

.quote__text {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
}

/* Large Text Divider */
.divider--text {
  background: var(--dark);
  padding: 120px 0;
}

.large-text {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.large-text__line {
  font-size: clamp(48px, 10vw, 96px);
  font-weight: 800;
  color: white;
  line-height: 1;
}

.large-text__line--strike {
  position: relative;
  color: var(--text-muted);
}

.large-text__line--strike::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -5%;
  right: -5%;
  height: 6px;
  background: var(--error);
  transform: rotate(-3deg);
}

.large-text__line--gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* ============================================
   TRANSFORM SECTION (Problem → Solution)
   ============================================ */

.transform {
  padding: var(--section-gap) 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.transform::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 50% 50% at 20% 50%, rgba(239, 68, 68, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 80% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.transform__wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: flex-start;
  position: relative;
}

/* Columns */
.transform__column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.transform__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Badge */
.transform__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.transform__badge i {
  width: 16px;
  height: 16px;
}

.transform__badge--problem {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #F87171;
}

.transform__badge--solution {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34D399;
}

/* Title */
.transform__title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  color: white;
  line-height: 1.2;
}

/* List */
.transform__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Items */
.transform__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.transform__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.transform__item--problem::before {
  background: var(--error);
}

.transform__item--solution::before {
  background: var(--success);
}

.transform__item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(4px);
}

.transform__item--problem:hover {
  border-color: rgba(239, 68, 68, 0.2);
}

.transform__item--solution:hover {
  border-color: rgba(16, 185, 129, 0.2);
}

/* Item Icon */
.transform__item-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
}

.transform__item--problem .transform__item-icon {
  background: rgba(239, 68, 68, 0.15);
  color: #F87171;
}

.transform__item--solution .transform__item-icon {
  background: rgba(16, 185, 129, 0.15);
  color: #34D399;
}

.transform__item-icon i {
  width: 18px;
  height: 18px;
}

/* Item Content */
.transform__item-content p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Divider */
.transform__divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 80px;
}

.transform__divider-line {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--primary), transparent);
  border-radius: 2px;
}

.transform__divider-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 50%;
  color: white;
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.4);
  animation: pulse-glow 2s ease-in-out infinite;
}

.transform__divider-icon i {
  width: 24px;
  height: 24px;
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
  }

  50% {
    box-shadow: 0 0 40px rgba(37, 99, 235, 0.6);
  }
}


/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-it-works {
  padding: var(--section-gap) 0;
  background: var(--bg-alt);
}

.how-it-works--dark {
  background: var(--dark-alt);
  color: white;
}

.steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
  padding: 40px 0;
  width: 100%;
}

.step__number {
  font-size: 64px;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  opacity: 0.5;
}

.step__content {
  padding-top: 10px;
}

.step__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  color: white;
}

.step__desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.step__visual {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

/* Step 1: Stack */
.step__card-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step__card-option,
.step__card-core {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.step__card-core {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(124, 58, 237, 0.15));
  border-color: rgba(37, 99, 235, 0.3);
  margin-top: 8px;
}

.step__option-icon,
.step__core-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step__option-icon {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.step__core-icon {
  background: var(--primary);
  color: white;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
}

.step__option-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.step__option-text strong {
  font-size: 14px;
  color: white;
}

.step__option-text span,
.step__card-core span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.step__card-core span {
  color: white;
  font-weight: 600;
}

.step__option-arrow {
  color: rgba(255, 255, 255, 0.3);
}

/* Step 2: Pipeline */
.step__pipeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pipeline__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.pipeline__item--active {
  background: rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.3);
}

.pipeline__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pipeline__item--active .pipeline__icon {
  background: var(--primary);
  box-shadow: 0 0 15px rgba(37, 99, 235, 0.4);
}

.pipeline__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pipeline__content strong {
  font-size: 13px;
  color: white;
}

.pipeline__content span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

.pipeline__connector {
  width: 2px;
  height: 12px;
  background: rgba(255, 255, 255, 0.1);
  margin-left: 27px;
  /* Align with icon center */
}

/* Connectors */
.step__connector {
  height: 60px;
  display: flex;
  justify-content: center;
  position: relative;
}

.step__connector-line {
  width: 2px;
  height: 100%;
  border-radius: 2px;
}

.step__connector-line--gradient-1 {
  background: linear-gradient(to bottom, var(--dark-alt), var(--primary), var(--dark-alt));
}

.step__connector-line--gradient-2 {
  background: linear-gradient(to bottom, var(--dark-alt), var(--success), var(--dark-alt));
}

/* Step 3: Result */
.step__result {
  background: rgba(255, 255, 255, 0.05);
  /* Lighter than background */
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.result__tabs {
  display: flex;
  gap: 4px;
  padding: 8px;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.result__tab {
  padding: 6px 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.result__tab--active {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.result__content {
  padding: 20px;
}

.result__score {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.result__score-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.result__score-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--success);
}

.result__score i {
  color: var(--success);
  width: 20px;
  height: 20px;
}

.result__list-title {
  font-weight: 600;
  font-size: 13px;
  color: white;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.result__list-title i {
  width: 16px;
  height: 16px;
}

.result__list ul {
  padding-left: 20px;
}

.result__list li {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
  position: relative;
}

.result__list li::before {
  content: '•';
  position: absolute;
  left: -12px;
}

/* Step Connector */
.step__connector {
  height: 80px;
  display: flex;
  justify-content: center;
}

.step__connector-svg {
  width: 40px;
  height: 100%;
}


/* ============================================
   FEATURES SECTION
   ============================================ */

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
  padding: var(--section-gap) 0;
  background: var(--bg-white);
}

.features--dark {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.features--dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Feature Card */
.feature {
  position: relative;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  height: 100%;
}

.feature:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.feature__content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Icon */
.feature__icon-wrapper {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.feature:hover .feature__icon-wrapper {
  transform: scale(1.05);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(124, 58, 237, 0.2));
  border-color: rgba(255, 255, 255, 0.1);
}

.feature__icon-wrapper i {
  width: 28px;
  height: 28px;
  color: #818CF8;
}

.feature:hover .feature__icon-wrapper i {
  color: #A78BFA;
}

/* Text */
.feature__title {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.feature__desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}


/* ============================================
   DEMO SECTION - Interactive Mockups
   ============================================ */

.demo {
  padding: var(--section-gap) 0;
  background: var(--dark);
}

.demo__tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.demo__tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-base);
}

.demo__tab i {
  width: 18px;
  height: 18px;
}

.demo__tab:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.demo__tab--active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.demo__content {
  max-width: 1000px;
  margin: 0 auto;
}

.demo__panel {
  display: none;
}

.demo__panel--active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Dialog Mockup */
.dialog-mockup {
  background: var(--dark-alt);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.dialog-mockup__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-bottom: 1px solid var(--border-dark);
}

.dialog-mockup__info strong {
  display: block;
  font-size: 16px;
  color: white;
  margin-bottom: 4px;
}

.dialog-mockup__info span {
  font-size: 13px;
  color: var(--text-muted);
}

.dialog-mockup__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: white;
}

.tag--red {
  background: rgba(239, 68, 68, 0.2);
  color: #F87171;
}

.tag--green {
  background: rgba(16, 185, 129, 0.2);
  color: #34D399;
}

.dialog-mockup__messages {
  padding: 20px;
  max-height: 400px;
  overflow-y: auto;
}

.message {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.message:last-child {
  margin-bottom: 0;
}

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

.message--operator .message__avatar {
  background: var(--primary);
  color: white;
}

.message--client .message__avatar {
  background: var(--dark-lighter);
  color: var(--text-muted);
}

.message__avatar i {
  width: 16px;
  height: 16px;
}

.message__content {
  flex: 1;
}

.message__meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.message__meta span {
  margin-left: 8px;
  opacity: 0.7;
}

.message__text {
  font-size: 14px;
  color: white;
  line-height: 1.5;
}

.message__text mark {
  background: rgba(37, 99, 235, 0.3);
  color: #60A5FA;
  padding: 0 4px;
  border-radius: 2px;
}

.message__text .mark--red {
  background: rgba(239, 68, 68, 0.3);
  color: #F87171;
}

.message__text .mark--green {
  background: rgba(16, 185, 129, 0.3);
  color: #34D399;
}

/* Scoring Mockup */
.scoring-mockup {
  background: var(--dark-alt);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 24px;
}

.scoring-mockup__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-dark);
}

.scoring-mockup__info strong {
  display: block;
  font-size: 16px;
  color: white;
  margin-bottom: 4px;
}

.scoring-mockup__info span {
  font-size: 13px;
  color: var(--text-muted);
}

.scoring-mockup__total {
  display: flex;
  align-items: baseline;
}

.scoring-mockup__total-value {
  font-size: 48px;
  font-weight: 800;
  color: var(--success);
  line-height: 1;
}

.scoring-mockup__total-max {
  font-size: 20px;
  color: var(--text-muted);
}

.scoring-mockup__profiles {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.scoring-profile {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.scoring-profile__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.scoring-profile__name {
  font-size: 15px;
  font-weight: 600;
  color: white;
}

.scoring-profile__score {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

.scoring-profile__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.scoring-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.scoring-item i {
  width: 18px;
  height: 18px;
}

.scoring-item--good i {
  color: var(--success);
}

.scoring-item--warning i {
  color: var(--warning);
}

.scoring-item--bad i {
  color: var(--error);
}

.scoring-item__name {
  flex: 1;
  font-size: 13px;
  color: var(--text-muted);
}

.scoring-item__bar {
  width: 120px;
  height: 6px;
  background: var(--dark-lighter);
  border-radius: 3px;
  overflow: hidden;
}

.scoring-item__bar>div {
  height: 100%;
  border-radius: 3px;
  transition: width 1s ease;
}

.scoring-item--good .scoring-item__bar>div {
  background: var(--success);
}

.scoring-item--warning .scoring-item__bar>div {
  background: var(--warning);
}

.scoring-item--bad .scoring-item__bar>div {
  background: var(--error);
}

.scoring-item__value {
  font-size: 13px;
  font-weight: 600;
  color: white;
  width: 20px;
  text-align: right;
}

.scoring-profile__recommendations {
  padding-top: 16px;
  border-top: 1px solid var(--border-dark);
}

.scoring-rec {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.scoring-rec:last-child {
  margin-bottom: 0;
}

.scoring-rec i {
  width: 14px;
  height: 14px;
  color: var(--warning);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Dashboard Mockup */
.dashboard-mockup {
  background: var(--dark-alt);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 24px;
}

.dashboard-mockup__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.dashboard-mockup__header strong {
  font-size: 18px;
  color: white;
}

.dashboard-mockup__header span {
  font-size: 13px;
  color: var(--text-muted);
}

.dashboard-mockup__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.dashboard-stat {
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  text-align: center;
}

.dashboard-stat__value {
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.dashboard-stat__value span {
  font-size: 16px;
  color: var(--text-muted);
}

.dashboard-stat__label {
  font-size: 13px;
  color: var(--text-muted);
}

.dashboard-mockup__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.dashboard-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.dashboard-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin-bottom: 16px;
}

.dashboard-card__header i {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

/* Leaderboard */
.leaderboard__item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.leaderboard__item:last-child {
  margin-bottom: 0;
}

.leaderboard__rank {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-lighter);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 600;
  color: white;
}

.leaderboard__item:first-child .leaderboard__rank {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: var(--dark);
}

.leaderboard__name {
  flex: 1;
  font-size: 13px;
  color: white;
}

.leaderboard__bar {
  width: 80px;
  height: 6px;
  background: var(--dark-lighter);
  border-radius: 3px;
  overflow: hidden;
}

.leaderboard__bar>div {
  height: 100%;
  background: var(--success);
  border-radius: 3px;
}

.leaderboard__score {
  font-size: 13px;
  font-weight: 600;
  color: var(--success);
  width: 24px;
  text-align: right;
}

/* Errors List */
.error-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-dark);
}

.error-item:last-child {
  border-bottom: none;
}

.error-item__name {
  font-size: 13px;
  color: var(--text-muted);
}

.error-item__percent {
  font-size: 13px;
  font-weight: 600;
  color: var(--error);
}

/* Dashboard Recommendations */
.dashboard-mockup__recommendations {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.dashboard-recs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dashboard-rec {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.dashboard-rec i {
  width: 16px;
  height: 16px;
  color: var(--warning);
}


/* ============================================
   SECURITY SECTION
   ============================================ */

/* ============================================
   SECURITY SECTION
   ============================================ */

.security {
  padding: var(--section-gap) 0;
  background: var(--bg-alt);
}

.security--dark {
  background: var(--dark-alt);
  position: relative;
  overflow: hidden;
}

/* Background Effect */
.security--dark::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.security__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

/* Card */
.security__card {
  position: relative;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.security__card-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.security__card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
}

.security__card:hover .security__card-bg {
  opacity: 1;
}

.security__card-content {
  position: relative;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

/* Icon */
.security__icon-wrapper {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.security__icon-wrapper i {
  width: 28px;
  height: 28px;
  color: #60A5FA;
  /* Blue tint */
}

/* Russia Flag Icon */
.russia-flag-icon {
  width: 32px;
  height: 22px;
  border-radius: 3px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Typography */
.security__title {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 12px;
}

.security__desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}


/* ============================================
   ACADEMY PROMO SECTION
   ============================================ */

/* ============================================
   ACADEMY PROMO SECTION
   ============================================ */

.academy-promo {
  padding: 100px 0;
  background: var(--bg-white);
  position: relative;
}

.academy-promo--dark {
  background: #0F172A;
  /* Dark Slate */
  overflow: hidden;
}

.academy-promo__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(37, 99, 235, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.academy-promo__wrapper {
  position: relative;
  z-index: 2;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.academy-promo__content {
  padding: 60px;
}

.academy-promo__header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 48px;
  max-width: 800px;
}

.academy-promo__icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.3);
}

.academy-promo__icon i {
  width: 32px;
  height: 32px;
  color: white;
}

.academy-promo__title {
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  line-height: 1.2;
}

.academy-promo__subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.academy-promo__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
  flex-wrap: wrap;
}

.academy-promo__stats {
  display: flex;
  gap: 40px;
}

.academy-promo__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.academy-promo__stat-value {
  font-size: 32px;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.academy-promo__stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.academy-promo__stat--free .academy-promo__stat-value {
  background: linear-gradient(135deg, #34D399 0%, #10B981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.academy-promo__topics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.academy-topic {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}

.academy-topic i {
  width: 16px;
  height: 16px;
  color: #A78BFA;
}

.academy-topic:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

/* 9 modules grid 3x3 */
.academy-promo__modules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.academy-module {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.2s;
}

.academy-module i {
  width: 18px;
  height: 18px;
  color: #A78BFA;
  flex-shrink: 0;
}

.academy-module:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(167, 139, 250, 0.3);
  color: white;
}

@media (max-width: 768px) {
  .academy-promo__modules {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .academy-promo__modules {
    grid-template-columns: 1fr;
  }
}

.academy-promo__action {
  margin-top: 40px;
  display: flex;
  justify-content: flex-start;
}


/* ============================================
   PRICING SECTION
   ============================================ */

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing {
  padding: var(--section-gap) 0;
  background: var(--bg-white);
}

.pricing--dark {
  background: var(--dark);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.pricing__card {
  position: relative;
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.pricing__card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.pricing__card--featured {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.1);
}

.pricing__card--featured:hover {
  border-color: var(--primary);
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.2);
}

.pricing__header {
  margin-bottom: 16px;
  min-height: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pricing__badge {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 10px;
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
  font-size: 11px;
  font-weight: 600;
  border-radius: 100px;
  margin-top: 4px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.pricing__badge--popular {
  background: rgba(37, 99, 235, 0.1);
  color: #60A5FA;
  border-color: rgba(37, 99, 235, 0.2);
}

.pricing__name {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin: 0;
}

.pricing__volume {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
  min-height: 40px;
  /* Align volume lines */
}

.pricing__volume span {
  display: block;
  font-size: 12px;
  opacity: 0.5;
}

.pricing__price {
  margin-bottom: 8px;
  color: white;
}

.pricing__amount {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.pricing__currency {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}

.pricing__per {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
  flex: 1;
  /* Push button to bottom */
}

.pricing__save {
  display: block;
  margin-top: 4px;
  color: #10B981;
  font-size: 11px;
  font-weight: 600;
}

.pricing__card .btn {
  width: 100%;
}

/* Pricing Features */
.pricing__features {
  max-width: 900px;
  margin: 0 auto;
  padding: 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
}

.pricing__features h4 {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  text-align: center;
  font-weight: 500;
}

.pricing__features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.pricing__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.pricing__feature i {
  width: 18px;
  height: 18px;
  color: #10B981;
  flex-shrink: 0;
}


/* ============================================
   FAQ SECTION
   ============================================ */

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
  padding: var(--section-gap) 0;
  background: var(--bg-alt);
}

.faq--dark {
  background: var(--dark-alt);
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.faq-item--open {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2);
}

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

.faq-item__question i {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.5);
  transition: transform 0.3s ease;
}

.faq-item--open .faq-item__question i {
  transform: rotate(180deg);
  color: white;
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item--open .faq-item__answer {
  max-height: 500px;
}

.faq-item__answer p {
  padding: 0 24px 24px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}


/* ============================================
   CTA SECTION
   ============================================ */

.cta {
  position: relative;
  padding: 120px 0;
  background: var(--dark);
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.cta__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.cta__orb--1 {
  width: 600px;
  height: 600px;
  background: var(--primary);
  opacity: 0.2;
  top: -200px;
  left: -100px;
}

.cta__orb--2 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  opacity: 0.15;
  bottom: -100px;
  right: -50px;
}

.cta__content {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
}

.cta__subtitle {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}


/* ============================================
   FOOTER
   ============================================ */

.footer {
  padding: 80px 0 40px;
  background: var(--dark);
  border-top: 1px solid var(--border-dark);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 80px;
  margin-bottom: 60px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.footer__logo-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 10px;
}

.footer__logo-icon i {
  width: 20px;
  height: 20px;
  color: white;
}

.footer__tagline {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-alt);
  border-radius: 10px;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.footer__social a:hover {
  background: var(--primary);
  color: white;
}

.footer__social i {
  width: 18px;
  height: 18px;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer__column h4 {
  font-size: 14px;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.footer__column li {
  margin-bottom: 12px;
}

.footer__column a {
  font-size: 15px;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer__column a:hover {
  color: white;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid var(--border-dark);
  font-size: 14px;
  color: var(--text-muted);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a:hover {
  color: white;
}


/* ============================================
   ANIMATIONS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal--delay-1 {
  transition-delay: 0.1s;
}

.reveal--delay-2 {
  transition-delay: 0.2s;
}

.reveal--delay-3 {
  transition-delay: 0.3s;
}

.reveal--delay-4 {
  transition-delay: 0.4s;
}

.reveal--delay-5 {
  transition-delay: 0.5s;
}

.reveal--delay-6 {
  transition-delay: 0.6s;
}

.reveal--delay-7 {
  transition-delay: 0.7s;
}


/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1200px) {
  .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing__card:nth-child(4),
  .pricing__card:nth-child(5) {
    grid-column: span 1;
  }
}

@media (max-width: 1024px) {
  :root {
    --section-gap: 100px;
  }

  .nav__links {
    display: none;
  }

  .nav__actions .nav__login,
  .nav__actions .btn {
    display: none;
  }

  .nav__mobile-toggle {
    display: flex;
  }

  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__content {
    max-width: 600px;
    margin: 0 auto;
  }

  .hero__subtitle {
    max-width: 100%;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__integrations {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero__mockup {
    max-width: 600px;
    margin: 0 auto;
  }

  .mockup {
    transform: none;
  }

  .stats {
    display: none;
  }

  .transform__wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .transform__divider {
    transform: rotate(90deg);
    padding: 20px 0;
  }

  .step {
    grid-template-columns: 80px 1fr;
    gap: 24px;
  }

  .step__visual {
    grid-column: span 2;
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .demo__tabs {
    flex-wrap: wrap;
  }

  .security__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer__links {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-gap: 80px;
  }

  body {
    font-size: 16px;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero__title {
    font-size: 36px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

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

  .stat__value {
    font-size: 36px;
  }



  .step {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .step__number {
    font-size: 48px;
  }

  .step__visual {
    grid-column: auto;
  }

  .step__connector {
    display: none;
  }

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

  .demo__tab span {
    display: none;
  }

  .dialog-mockup__header {
    flex-direction: column;
    gap: 16px;
  }

  .dashboard-mockup__grid {
    grid-template-columns: 1fr;
  }

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

  .academy-promo__content {
    padding: 32px 24px;
  }

  .academy-promo__header {
    flex-direction: column;
    gap: 16px;
  }

  .academy-promo__title {
    font-size: 24px;
  }

  .academy-promo__stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .academy-promo__topics {
    justify-content: flex-start;
  }

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

  .cta__actions {
    flex-direction: column;
  }

  .cta__actions .btn {
    width: 100%;
  }

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

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

  .footer__legal {
    flex-wrap: wrap;
    justify-content: center;
  }

  .large-text {
    flex-direction: column;
    gap: 8px;
  }

  .large-text__line {
    font-size: 48px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .mockup__call-meta {
    flex-direction: column;
    gap: 8px;
  }

  .scoring-item__bar {
    display: none;
  }

  .leaderboard__bar {
    display: none;
  }
}