/* ═══════════════════════════════════════════════════════
   ADS PLAIN — Landing Page Styles
   Dark premium theme · Bebas Neue + Source Sans 3
   ═══════════════════════════════════════════════════════ */

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

:root {
  /* Palette */
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-card: #16161f;
  --bg-card-hover: #1c1c28;
  --bg-elevated: #1e1e2a;

  --text-primary: #f0f0f5;
  --text-secondary: #9898a8;
  --text-tertiary: #5a5a6e;

  --accent-blue: #2563EB;
  --accent-blue-light: #3b82f6;
  --accent-blue-glow: rgba(37, 99, 235, 0.25);
  --accent-orange: #F97316;
  --accent-orange-glow: rgba(249, 115, 22, 0.2);

  --border: #22222e;
  --border-light: #2a2a38;

  /* Typography */
  --font-display: 'Bebas Neue', system-ui, sans-serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Misc */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --transition: 200ms ease;
  --header-height: 72px;
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

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

/* ─── Utility ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.text-accent {
  color: var(--accent-blue-light);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-blue-light);
  background: var(--accent-blue-glow);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: var(--space-md);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 2px;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.section-title--left {
  text-align: left;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-desc--left {
  text-align: left;
  margin: 0;
}

/* ─── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent-blue);
  color: #fff;
  box-shadow: 0 0 20px var(--accent-blue-glow);
}

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

.btn--primary:active {
  transform: translateY(0);
}

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

.btn--ghost:hover {
  color: var(--text-primary);
  border-color: var(--text-tertiary);
  background: rgba(255, 255, 255, 0.03);
}

.btn--outline {
  color: var(--text-primary);
  border: 1px solid var(--border-light);
  background: transparent;
}

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

.btn--large {
  padding: 16px 36px;
  font-size: 16px;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

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

.header--scrolled {
  background: rgba(10, 10, 15, 0.95);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 2px;
}

.header__logo-icon {
  background: var(--accent-blue);
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 1.2rem;
  letter-spacing: 3px;
}

.header__logo-text {
  color: var(--text-primary);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.header__link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
}

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

.header__link-icon {
  width: 16px;
  height: 16px;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 250ms ease;
}

.header__burger--active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__burger--active span:nth-child(2) {
  opacity: 0;
}

.header__burger--active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-primary);
  z-index: 999;
  padding: var(--space-xl);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 250ms ease, transform 250ms ease;
}

.mobile-menu--open {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.mobile-menu__link {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border);
}

.mobile-menu__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero__video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(10, 10, 20, 0.55);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-4xl) 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.6s ease both;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  letter-spacing: 4px;
  line-height: 0.95;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero__title-accent {
  color: transparent;
  background: linear-gradient(135deg, var(--accent-blue-light), var(--accent-orange));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  line-height: 1.7;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-3xl);
  animation: fadeInUp 0.6s ease 0.3s both;
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  animation: fadeInUp 0.6s ease 0.4s both;
}

.hero__stat {
  text-align: center;
}

.hero__stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 2px;
  color: var(--text-primary);
}

.hero__stat-suffix {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 2px;
  color: var(--accent-blue-light);
}

.hero__stat-label {
  display: block;
  font-size: 13px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 30px;
  background: var(--accent-blue);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -30px; }
  100% { top: 60px; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════
   PRODUCTS
   ═══════════════════════════════════════════════════════ */
.products {
  padding: var(--space-4xl) 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.products__tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
}

.products__tab {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.products__tab:hover {
  color: var(--text-primary);
  border-color: var(--border-light);
}

.products__tab--active {
  color: #fff;
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  box-shadow: 0 0 20px var(--accent-blue-glow);
}

.products__panel {
  display: none;
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.products__panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.products__panel-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 2px;
  margin-bottom: var(--space-md);
}

.products__panel-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.products__features-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.products__features-list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 15px;
  color: var(--text-secondary);
}

.products__features-list li svg {
  color: #22c55e;
  flex-shrink: 0;
}

/* Widget preview mock */
.widget-preview {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.widget-preview__header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.widget-preview__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-tertiary);
}

.widget-preview__dot:nth-child(1) { background: #ef4444; }
.widget-preview__dot:nth-child(2) { background: #eab308; }
.widget-preview__dot:nth-child(3) { background: #22c55e; }

.widget-preview__url {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-left: auto;
}

.widget-preview__body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.widget-preview__block--content {
  height: 12px;
  background: var(--bg-elevated);
  border-radius: 4px;
}

.widget-preview__block--short {
  width: 70%;
}

.widget-preview__widget {
  border: 2px dashed var(--accent-blue);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  background: rgba(37, 99, 235, 0.05);
}

.widget-preview__widget-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-blue-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-sm);
  display: block;
}

.widget-preview__widget-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.widget-preview__widget-item {
  height: 32px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.15), rgba(37, 99, 235, 0.05));
  border-radius: 4px;
  animation: shimmer 2s ease-in-out infinite;
}

.widget-preview__widget-item:nth-child(2) { animation-delay: 0.3s; }
.widget-preview__widget-item:nth-child(3) { animation-delay: 0.6s; }

@keyframes shimmer {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Push preview mock */
.push-preview {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-xl);
}

.push-preview__notification {
  display: flex;
  gap: var(--space-md);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: slideInRight 0.6s ease both;
}

.push-preview__notification--1 { animation-delay: 0s; }
.push-preview__notification--2 { animation-delay: 0.15s; }
.push-preview__notification--3 { animation-delay: 0.3s; }

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

.push-preview__icon {
  width: 40px;
  height: 40px;
  background: var(--accent-blue-glow);
  border: 1px solid var(--accent-blue);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.push-preview__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}

.push-preview__title-line {
  height: 10px;
  width: 60%;
  background: var(--bg-elevated);
  border-radius: 3px;
}

.push-preview__body-line {
  height: 8px;
  width: 90%;
  background: var(--bg-elevated);
  border-radius: 3px;
  opacity: 0.6;
}

/* ═══════════════════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════════════════ */
.features {
  padding: var(--space-4xl) 0;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all 300ms ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
  opacity: 0;
  transition: opacity 300ms ease;
}

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

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

.feature-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-blue-glow);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
}

.feature-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent-blue-light);
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 1px;
  margin-bottom: var(--space-sm);
}

.feature-card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   STATISTICS
   ═══════════════════════════════════════════════════════ */
.stats {
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
}

.stats__marquee {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  overflow: hidden;
  pointer-events: none;
  opacity: 0.04;
}

.stats__marquee-track {
  display: flex;
  gap: var(--space-3xl);
  font-family: var(--font-display);
  font-size: 10rem;
  letter-spacing: 8px;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  position: relative;
  z-index: 1;
}

.stats__card {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 300ms ease;
}

.stats__card:hover {
  border-color: var(--accent-blue);
}

.stats__number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  letter-spacing: 2px;
  color: var(--text-primary);
  display: inline;
}

.stats__plus {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent-blue-light);
}

.stats__label {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: var(--space-sm);
}

.stats__sublabel {
  display: block;
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════ */
.how-it-works {
  padding: var(--space-4xl) 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.step {
  text-align: center;
  padding: var(--space-xl);
  position: relative;
}

.step__number {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--accent-blue);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: var(--space-md);
}

.step__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 1px;
  margin-bottom: var(--space-sm);
}

.step__desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.step__line {
  position: absolute;
  top: 40%;
  right: 0;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
}

.step:last-child .step__line {
  display: none;
}

/* ═══════════════════════════════════════════════════════
   DASHBOARD
   ═══════════════════════════════════════════════════════ */
.dashboard {
  padding: var(--space-4xl) 0;
}

.dashboard__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3xl);
  align-items: center;
}

.dashboard__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin: var(--space-lg) 0 var(--space-xl);
}

.dashboard__list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 15px;
  color: var(--text-secondary);
}

.dashboard__list li svg {
  color: #22c55e;
  flex-shrink: 0;
}

.dashboard__mockup {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.dashboard__mockup-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.dashboard__mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dashboard__mockup-dot:nth-child(1) { background: #ef4444; }
.dashboard__mockup-dot:nth-child(2) { background: #eab308; }
.dashboard__mockup-dot:nth-child(3) { background: #22c55e; }

.dashboard__mockup-body {
  display: flex;
  min-height: 280px;
}

.dashboard__sidebar {
  width: 60px;
  border-right: 1px solid var(--border);
  padding: var(--space-md) var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.dashboard__sidebar-item {
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
}

.dashboard__sidebar-item--active {
  background: var(--accent-blue);
}

.dashboard__main {
  flex: 1;
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.dashboard__chart {
  flex: 1;
  min-height: 120px;
}

.dashboard__chart-svg {
  width: 100%;
  height: 100%;
}

.dashboard__mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.dashboard__mini-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  padding: var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dashboard__mini-card-line {
  height: 8px;
  width: 50%;
  background: var(--text-tertiary);
  border-radius: 2px;
  opacity: 0.3;
}

.dashboard__mini-card-value {
  height: 14px;
  width: 70%;
  background: var(--accent-blue-glow);
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════ */
.testimonials {
  padding: var(--space-4xl) 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testimonials__carousel {
  overflow: hidden;
  position: relative;
}

.testimonials__track {
  display: flex;
  gap: var(--space-lg);
  transition: transform 500ms ease;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - var(--space-lg) * 2 / 3);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: border-color 300ms ease;
}

.testimonial-card:hover {
  border-color: var(--border-light);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  color: #eab308;
  margin-bottom: var(--space-md);
}

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

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-blue-glow);
  border: 1px solid var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 1px;
  color: var(--accent-blue-light);
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 15px;
}

.testimonial-card__role {
  font-size: 13px;
  color: var(--text-tertiary);
}

.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.testimonials__btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.testimonials__btn:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue-light);
  background: var(--accent-blue-glow);
}

.testimonials__dots {
  display: flex;
  gap: var(--space-sm);
}

.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-tertiary);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.testimonials__dot--active {
  background: var(--accent-blue);
  width: 24px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════ */
.faq {
  padding: var(--space-4xl) 0;
}

.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 300ms ease;
}

.faq__item--open {
  border-color: var(--accent-blue);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}

.faq__question:hover {
  color: var(--accent-blue-light);
}

.faq__chevron {
  flex-shrink: 0;
  transition: transform 300ms ease;
  color: var(--text-tertiary);
}

.faq__item--open .faq__chevron {
  transform: rotate(180deg);
  color: var(--accent-blue-light);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease, padding 300ms ease;
}

.faq__item--open .faq__answer {
  max-height: 300px;
}

.faq__answer p {
  padding: 0 var(--space-xl) var(--space-lg);
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════════ */
.final-cta {
  padding: var(--space-4xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}

.final-cta__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: var(--accent-blue-glow);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(150px);
  pointer-events: none;
  opacity: 0.3;
}

.final-cta__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 3px;
  margin-bottom: var(--space-md);
  position: relative;
}

.final-cta__desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto var(--space-xl);
  line-height: 1.7;
  position: relative;
}

.final-cta__actions {
  position: relative;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
  padding: var(--space-3xl) 0 var(--space-xl);
  border-top: 1px solid var(--border);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer__brand-desc {
  font-size: 14px;
  color: var(--text-tertiary);
  line-height: 1.7;
  margin-top: var(--space-md);
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-tertiary);
  transition: all var(--transition);
}

.footer__social-link:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue-light);
  background: var(--accent-blue-glow);
}

.footer__col-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__links a {
  font-size: 14px;
  color: var(--text-tertiary);
  transition: color var(--transition);
}

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

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

.footer__bottom-links {
  display: flex;
  gap: var(--space-lg);
}

.footer__bottom-links a {
  font-size: 13px;
  color: var(--text-tertiary);
  transition: color var(--transition);
}

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

/* ═══════════════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .products__panel-inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .dashboard__layout {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .testimonial-card {
    flex: 0 0 calc(50% - var(--space-lg) / 2);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --space-4xl: 64px;
  }

  .header__nav,
  .header__actions {
    display: none;
  }

  .header__burger {
    display: flex;
  }

  .hero__title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .hero__cta {
    flex-direction: column;
  }

  .hero__cta .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__stats {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .hero__stat-divider {
    width: 40px;
    height: 1px;
  }

  .products__tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .products__tab {
    justify-content: center;
  }

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

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

  .steps {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .step__line {
    display: none;
  }

  .step__number {
    font-size: 3.5rem;
  }

  .testimonial-card {
    flex: 0 0 calc(100% - var(--space-lg));
  }

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

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .footer__bottom-links {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .section-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
}

/* Small mobile */
@media (max-width: 375px) {
  .stats__grid {
    grid-template-columns: 1fr;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero__scroll-line::after {
    animation: none;
  }

  .stats__marquee-track {
    animation: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
