/* =============================================
   LEADSX — Landing Page Styles
   ============================================= */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #020B18;
  color: #e2e8f0;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ---- Variables ---- */
:root {
  --blue: #06B6D4;
  --blue-light: #38BDF8;
  --blue-dark: #0891B2;
  --orange: #38BDF8;
  --orange-light: #7DD3FC;
  --navy: #020B18;
  --navy-2: #030F1F;
  --navy-3: #041525;
  --card-bg: #051A2E;
  --card-border: rgba(6, 182, 212, 0.2);
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --green: #22d3ee;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 32px rgba(0,0,0,0.5);
  --glow-blue: 0 0 60px rgba(6, 182, 212, 0.3);
}

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

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, #0891B2, #38BDF8);
  color: #fff;
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(6, 182, 212, 0.6);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-outline:hover {
  border-color: var(--blue-light);
  color: var(--blue-light);
  background: rgba(26, 111, 216, 0.1);
}
.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: 10px; }
.btn-xl { padding: 18px 40px; font-size: 1.1rem; border-radius: 12px; }
.btn-icon { width: 20px; height: 20px; }

/* ---- Section Tags ---- */
.section-tag {
  display: inline-block;
  background: rgba(26, 111, 216, 0.15);
  color: var(--blue-light);
  border: 1px solid rgba(26, 111, 216, 0.3);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.tag-blue { color: var(--blue-light); }

/* ---- Section Titles ---- */
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}
.gradient-text {
  background: linear-gradient(135deg, #38BDF8, #06B6D4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.highlight-orange { color: #38BDF8; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 10px 0;
  transition: all 0.3s;
}
.navbar.scrolled {
  background: rgba(5, 13, 26, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 111, 216, 0.15);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo img {
  height: 120px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 24px;
  margin-left: auto;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-cta { margin-left: 8px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 16px 24px;
  background: rgba(5, 13, 26, 0.98);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 10px 0;
  color: var(--text-muted);
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-menu .btn { margin-top: 8px; text-align: center; justify-content: center; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6, 182, 212, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 182, 212, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.glow-1 {
  width: 600px; height: 600px;
  background: rgba(6, 182, 212, 0.12);
  top: -200px; left: -200px;
}
.glow-2 {
  width: 400px; height: 400px;
  background: rgba(56, 189, 248, 0.08);
  bottom: -100px; right: -100px;
}
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 111, 216, 0.12);
  border: 1px solid rgba(26, 111, 216, 0.3);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--blue-light);
  font-weight: 500;
  margin-bottom: 28px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 28px 48px;
  border-radius: var(--radius);
  display: inline-flex;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #38BDF8, #06B6D4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.08);
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  animation: bounce 1.5s infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(4px); }
}

/* =============================================
   LOGOS STRIP
   ============================================= */
.logos-strip {
  padding: 24px 0;
  background: var(--navy-2);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}
.logos-label {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.logos-track {
  display: flex;
  gap: 16px;
  animation: scroll-x 20s linear infinite;
  width: max-content;
}
.niche-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 111, 216, 0.08);
  border: 1px solid rgba(26, 111, 216, 0.15);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.pill-icon { font-size: 1rem; }
@keyframes scroll-x {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   PROBLEM
   ============================================= */
.problem {
  padding: 100px 0;
  text-align: center;
}
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.problem-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: left;
  transition: transform 0.2s, border-color 0.2s;
}
.problem-card:hover {
  transform: translateY(-4px);
  border-color: rgba(26, 111, 216, 0.5);
}
.problem-icon { font-size: 2rem; margin-bottom: 16px; }
.problem-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.problem-card p { font-size: 0.9rem; color: var(--text-muted); }

/* =============================================
   SOLUTION
   ============================================= */
.solution {
  padding: 100px 0;
  background: var(--navy-2);
}
.solution-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.solution-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}
.solution-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
}
.check-icon {
  width: 22px; height: 22px;
  background: rgba(34, 197, 94, 0.15);
  color: var(--green);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- Visual Card (mock dashboard) ---- */
.visual-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow), var(--glow-blue);
}
.visual-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.visual-dots { display: flex; gap: 6px; }
.visual-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.visual-dots span:nth-child(1) { background: #ff5f57; }
.visual-dots span:nth-child(2) { background: #febc2e; }
.visual-dots span:nth-child(3) { background: #28c840; }
.visual-title { font-size: 0.8rem; color: var(--text-muted); margin-left: auto; }
.visual-body { padding: 20px; }
.visual-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.v-stat {
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: center;
}
.v-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
}
.text-blue { color: var(--blue-light); }
.text-orange { color: var(--orange); }
.text-green { color: var(--green); }
.v-label { font-size: 0.7rem; color: var(--text-muted); }

/* Bar chart mini */
.visual-bar-chart { margin-bottom: 20px; }
.bar-group {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
}
.bar {
  flex: 1;
  height: var(--h);
  background: rgba(26, 111, 216, 0.3);
  border-radius: 4px 4px 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 2px;
  transition: background 0.2s;
}
.bar-active { background: var(--blue) !important; }
.bar span { font-size: 0.6rem; color: var(--text-muted); }

/* Leads list */
.visual-leads-list { display: flex; flex-direction: column; gap: 8px; }
.lead-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
}
.lead-avatar {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.av-2 { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.av-3 { background: linear-gradient(135deg, #059669, #10b981); }
.lead-info { flex: 1; }
.lead-name { display: block; font-size: 0.8rem; font-weight: 600; color: #fff; }
.lead-status {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 600;
}
.status-new { background: rgba(26,111,216,0.2); color: var(--blue-light); }
.status-talk { background: rgba(245,161,0,0.2); color: var(--orange); }
.status-sch { background: rgba(34,197,94,0.2); color: var(--green); }
.lead-time { font-size: 0.7rem; color: var(--text-muted); }

/* =============================================
   FEATURES
   ============================================= */
.features {
  padding: 100px 0;
  text-align: center;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: left;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #0891B2, #38BDF8);
  opacity: 0;
  transition: opacity 0.2s;
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(26,111,216,0.5); }
.feature-card:hover::before { opacity: 1; }
.feature-main {
  grid-column: 1;
  border-color: rgba(26,111,216,0.35);
}
.feature-main::before { opacity: 1; }
.feature-icon-wrap { margin-bottom: 20px; }
.feature-emoji { width: 48px; height: 48px; }
.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.feature-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; }
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.feature-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}
.feature-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue-light);
}
.feature-tag {
  display: inline-block;
  background: rgba(6,182,212,0.1);
  color: var(--blue-light);
  border: 1px solid rgba(6,182,212,0.2);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}
.feature-screenshot {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(6,182,212,0.15);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.feature-screenshot img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

/* =============================================
   NICHES
   ============================================= */
.niches {
  padding: 100px 0;
  background: var(--navy-2);
  text-align: center;
}
.niches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.niche-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.2s;
}
.niche-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56,189,248,0.4);
  box-shadow: 0 8px 32px rgba(6,182,212,0.12);
}
.niche-icon { font-size: 3rem; margin-bottom: 16px; }
.niche-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.niche-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; }
.niche-result {
  display: inline-block;
  background: rgba(6,182,212,0.12);
  color: #38BDF8;
  border: 1px solid rgba(6,182,212,0.25);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
}
.niche-link {
  display: block;
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-light);
  transition: color 0.2s;
}
.niche-link:hover { color: #fff; }

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-it-works {
  padding: 100px 0;
  text-align: center;
}
.steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 64px;
  position: relative;
}
.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.step-number {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #38BDF8, #06B6D4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}
.step-content { max-width: 280px; }
.step-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.step-content p { font-size: 0.9rem; color: var(--text-muted); }
.step-arrow {
  position: absolute;
  right: -20px;
  top: 20px;
  font-size: 1.8rem;
  color: rgba(26,111,216,0.4);
  z-index: 1;
}

/* =============================================
   DEMO
   ============================================= */
.demo {
  padding: 100px 0;
  background: var(--navy-2);
  text-align: center;
}

/* --- Bloco vídeo Ana + texto --- */
.demo-video-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 960px;
  margin: 60px auto 0;
  text-align: left;
}
.demo-video-player {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  position: relative;
}
.demo-video-player video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.demo-video-block--reverse {
  direction: rtl;
}
.demo-video-block--reverse > * {
  direction: ltr;
}

.demo-video-title {
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.demo-video-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* --- Moldura celular --- */
.phone-mockup {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}
.phone-frame {
  width: 100%;
  background: #111;
  border-radius: 44px;
  padding: 14px 10px 20px;
  border: 2px solid rgba(6,182,212,0.35);
  box-shadow: 0 0 40px rgba(6,182,212,0.15), 0 24px 60px rgba(0,0,0,0.6);
  overflow: hidden;
}
.phone-notch {
  width: 80px;
  height: 18px;
  background: #111;
  border-radius: 0 0 12px 12px;
  margin: 0 auto 8px;
  border: 2px solid #222;
  border-top: none;
}
.phone-screen {
  background: #0f1e17;
  border-radius: 28px;
  overflow: hidden;
  width: 100%;
}

/* WhatsApp header fake */
.wa-header {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1f2c34;
  padding: 10px 12px;
}
.wa-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wa-info {
  display: flex;
  flex-direction: column;
}
.wa-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: #e9edef;
}
.wa-status {
  font-size: 0.68rem;
  color: #8696a0;
}

/* Vídeo dentro do celular */
.phone-video {
  display: block;
  width: 100%;
  height: auto;
  background: #000;
}

/* Glow atrás do celular */
.phone-glow {
  display: none;
}
.demo-screen {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 80px rgba(26,111,216,0.2);
  max-width: 960px;
  margin: 0 auto;
}
.demo-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.demo-dots { display: flex; gap: 6px; }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }
.demo-url {
  font-size: 0.8rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.05);
  padding: 4px 16px;
  border-radius: 6px;
  flex: 1;
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
}
.demo-body {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 360px;
}
.demo-sidebar {
  background: rgba(255,255,255,0.02);
  border-right: 1px solid rgba(255,255,255,0.05);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.sidebar-item:hover { background: rgba(26,111,216,0.1); color: #fff; }
.sidebar-item.active {
  background: rgba(26,111,216,0.15);
  color: var(--blue-light);
  font-weight: 600;
}
.demo-main-area { padding: 20px; }
.demo-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.demo-kpi {
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-sm);
  padding: 14px 12px;
  text-align: center;
}
.kpi-val {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
}
.kpi-lab { display: block; font-size: 0.7rem; color: var(--text-muted); margin: 4px 0; }
.kpi-trend { font-size: 0.7rem; font-weight: 700; }
.kpi-trend.up { color: var(--green); }
.demo-chart-area { }
.demo-chart-title { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 12px; text-align: left; }
.demo-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100px;
}
.db {
  flex: 1;
  height: var(--h);
  background: rgba(26,111,216,0.3);
  border-radius: 6px 6px 0 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 6px;
  transition: background 0.2s;
}
.db:hover { background: rgba(26,111,216,0.5); }
.db-hi { background: linear-gradient(180deg, var(--blue-light), var(--blue)) !important; }
.db-val { font-size: 0.6rem; color: var(--text-muted); font-weight: 600; }
.db-day {
  position: absolute;
  bottom: -18px;
  font-size: 0.65rem;
  color: var(--text-muted);
}
.demo-img-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.demo-img {
  width: 100%;
  display: block;
  border-radius: 0;
}
.demo-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 220px;
  background: linear-gradient(to top, var(--navy-2) 20%, transparent);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 36px;
}

/* =============================================
   CTA FINAL
   ============================================= */
.cta-section {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-inner { position: relative; z-index: 1; }
.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
}
.cta-section p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 40px; }
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.cta-note { font-size: 0.85rem; color: var(--text-muted); }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--navy-2);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo { height: 120px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.footer-social svg { width: 16px; height: 16px; }
.footer-insta {
  display: flex !important;
  align-items: center;
  gap: 8px;
  width: auto !important;
  padding: 0 14px !important;
  font-size: 0.85rem;
  font-weight: 600;
}
.footer-links h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.footer-links a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--blue-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 24px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-main { grid-column: 1 / -1; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .solution-inner { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-main { grid-column: 1; }
  .niches-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; gap: 40px; }
  .step-arrow { display: none; }
  .demo-body { grid-template-columns: 1fr; }
  .demo-sidebar { display: none; }
  .demo-kpis { grid-template-columns: repeat(2, 1fr); }
  .demo-video-block { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .demo-video-block .solution-list { text-align: left; display: inline-block; }
  .phone-frame { width: 240px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { gap: 20px; padding: 20px 28px; }
  .stat-divider { display: none; }
  .problems-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.9rem; }
  .section-title { font-size: 1.6rem; }
  .demo-kpis { grid-template-columns: 1fr 1fr; }
  .visual-stat-row { grid-template-columns: 1fr; gap: 8px; }
}
