/* ==========================================================================
   Gestor IPTV Desktop — Design System & Landing Page Styles
   Tema: Dark Obsidian & Neon Emerald & Cyber Cyan
   ========================================================================== */

:root {
  /* Palette */
  --bg-main: #07090e;
  --bg-card: #0d1017;
  --bg-card-alt: #121622;
  --bg-card-hover: #171c2b;
  --bg-dark-alt: #0a0d13;
  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-highlight: rgba(255, 255, 255, 0.14);

  /* Brand Accents */
  --emerald-400: #34d399;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --emerald-glow: rgba(16, 185, 129, 0.25);
  
  --cyan-400: #22d3ee;
  --cyan-500: #06b6d4;
  --cyan-glow: rgba(6, 182, 212, 0.25);

  --blue-400: #60a5fa;
  --blue-500: #3b82f6;

  --amber-400: #fbbf24;
  --amber-500: #f59e0b;

  --rose-400: #fb7185;
  --rose-500: #f43f5e;

  --purple-400: #c084fc;
  --purple-500: #a855f7;

  /* Typography */
  --text-main: #f4f4f6;
  --text-muted: #94a3b8;
  --text-subtle: #64748b;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Layout */
  --container-max: 1200px;
  --nav-height: 72px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* Selection */
::selection {
  background: rgba(16, 185, 129, 0.35);
  color: #a7f3d0;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #07090e;
}
::-webkit-scrollbar-thumb {
  background: #1f293d;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #10b981;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Helper Utilities */
.text-emerald { color: var(--emerald-400); }
.text-blue { color: var(--blue-400); }
.text-amber { color: var(--amber-400); }
.text-purple { color: var(--purple-400); }
.text-rose { color: var(--rose-400); }
.text-zinc-400 { color: #a1a1aa; }
.text-center { text-align: center; }
.bg-dark-alt { background-color: var(--bg-dark-alt); }
.section-padding { padding-top: 100px; padding-bottom: 100px; }

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #34d399 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gradient-text-red {
  background: linear-gradient(135deg, #ff8080 0%, #f43f5e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Code Snippets */
code {
  font-family: var(--font-mono);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 0.85em;
  color: #67e8f9;
}

/* ==========================================================================
   Top Announcement Bar
   ========================================================================== */
.top-announcement {
  background: linear-gradient(90deg, #064e3b 0%, #0d1017 50%, #083344 100%);
  border-bottom: 1px solid rgba(16, 185, 129, 0.2);
  padding: 10px 0;
  font-size: 13px;
  position: relative;
  z-index: 50;
}
.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.announcement-badge {
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid var(--emerald-500);
  color: var(--emerald-400);
  padding: 2px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.announcement-text {
  color: var(--text-main);
}
.announcement-link {
  color: var(--cyan-400);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.announcement-link:hover {
  color: #fff;
  text-decoration: underline;
}

/* ==========================================================================
   Sticky Navbar
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 9, 14, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(7, 9, 14, 0.96);
  border-bottom: 1px solid rgba(16, 185, 129, 0.2);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon-box {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--emerald-500), var(--cyan-500));
  padding: 1px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}
.logo-icon {
  width: 22px;
  height: 22px;
  color: #ffffff;
}
.brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: #ffffff;
  display: block;
  line-height: 1.2;
}
.brand-tagline {
  font-size: 11px;
  color: var(--emerald-400);
  font-weight: 500;
  display: block;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: #ffffff;
}
.nav-link:hover::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--emerald-500);
  border-radius: 2px;
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.btn-ghost {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.2s;
}
.btn-ghost:hover {
  color: #fff;
  border-color: var(--border-highlight);
  background: rgba(255, 255, 255, 0.08);
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--emerald-500) 0%, #059669 100%);
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px var(--emerald-glow);
  transition: all 0.2s;
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45);
}
.btn-icon {
  width: 16px;
  height: 16px;
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: all 0.3s;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  padding-top: 60px;
  padding-bottom: 80px;
  overflow: hidden;
}
.hero-glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.blob-1 {
  width: 500px;
  height: 500px;
  background: rgba(16, 185, 129, 0.12);
  top: -100px;
  left: 20%;
  animation: floatSlow 12s infinite alternate ease-in-out;
}
.blob-2 {
  width: 450px;
  height: 450px;
  background: rgba(6, 182, 212, 0.1);
  top: 150px;
  right: 10%;
  animation: floatSlow 10s infinite alternate-reverse ease-in-out;
}

@keyframes floatSlow {
  0% { transform: translate(0, 0); }
  100% { transform: translate(40px, 30px); }
}

.hero-container {
  position: relative;
  z-index: 1;
}

.hero-content {
  text-align: center;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 999px;
  margin-bottom: 24px;
}
.pill-dot {
  width: 8px;
  height: 8px;
  background: var(--emerald-400);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--emerald-400);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.pill-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--emerald-400);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 36px;
}

/* Hero CTA Wrapper */
.hero-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #10b981 0%, #047857 100%);
  color: #ffffff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
}
.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.6);
}
.btn-icon-large {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.btn-hero-text {
  text-align: left;
}
.btn-hero-main {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.5px;
}
.btn-hero-sub {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-highlight);
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 26px;
  border-radius: var(--radius-md);
  transition: all 0.2s;
}
.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--text-muted);
  font-weight: 500;
}
.trust-item svg {
  width: 15px;
  height: 15px;
}

/* ==========================================================================
   Hero Interactive Mockup Window
   ========================================================================== */
.hero-showcase {
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
}
.mockup-window {
  background: #0d1017;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.shadow-emerald {
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.9), 0 0 35px rgba(16, 185, 129, 0.15);
}

.window-bar {
  background: #080b10;
  border-bottom: 1px solid var(--border-subtle);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.window-dots {
  display: flex;
  gap: 6px;
}
.window-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.window-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-family: var(--font-mono);
  color: #a1a1aa;
}
.window-status-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--emerald-400);
}
.status-indicator {
  width: 6px;
  height: 6px;
  background: var(--emerald-400);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--emerald-400);
}

/* App Inner Frame */
.app-frame {
  display: flex;
  min-height: 440px;
}
.app-sidebar {
  width: 220px;
  background: #0b0e14;
  border-right: 1px solid var(--border-subtle);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
}
.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 12px;
}
.sidebar-logo-icon {
  font-size: 18px;
}
.sidebar-title {
  font-weight: 700;
  font-size: 13px;
  color: #fff;
}
.sidebar-sub {
  font-size: 10px;
  color: var(--emerald-400);
  font-weight: 500;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sidebar-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  cursor: pointer;
}
.sidebar-item.active {
  background: rgba(16, 185, 129, 0.12);
  color: var(--emerald-400);
  font-weight: 600;
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.badge-count {
  background: var(--amber-500);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 999px;
}

.sidebar-footer {
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
}
.license-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--emerald-400);
  background: rgba(16, 185, 129, 0.08);
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: 600;
}
.dot-green {
  width: 6px;
  height: 6px;
  background: var(--emerald-400);
  border-radius: 50%;
}

.app-screen-body {
  flex: 1;
  background: #0d1017;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}

/* Mini KPI Grid */
.mini-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.mini-kpi-card {
  background: #121622;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 12px;
}
.mini-kpi-card.emerald { border-left: 3px solid var(--emerald-500); }
.mini-kpi-card.blue { border-left: 3px solid var(--blue-500); }
.mini-kpi-card.amber { border-left: 3px solid var(--amber-500); }
.mini-kpi-card.purple { border-left: 3px solid var(--purple-500); }

.mini-kpi-header {
  display: flex;
  justify-content: space-between;
  font-size: 10.5px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.mini-kpi-value {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
}
.kpi-tag {
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 500;
  vertical-align: middle;
}
.kpi-tag.amber { background: rgba(245, 158, 11, 0.15); color: var(--amber-400); }
.kpi-tag.purple { background: rgba(168, 85, 247, 0.15); color: var(--purple-400); }
.mini-kpi-sub {
  font-size: 10.5px;
  margin-top: 2px;
  font-weight: 500;
}

/* Mini Table Box */
.mini-table-box {
  background: #121622;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 14px;
  flex: 1;
}
.mini-table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-subtle);
}
.table-title {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}
.tag-live {
  font-size: 10px;
  color: var(--emerald-400);
  background: rgba(16, 185, 129, 0.1);
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 600;
}

.mini-client-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  margin-bottom: 8px;
}
.mini-client-row.auto-extended {
  background: rgba(16, 185, 129, 0.04);
  border-color: rgba(16, 185, 129, 0.2);
}
.cli-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cli-avatar {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #1f293d;
  color: var(--cyan-400);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cli-avatar.green {
  background: rgba(16, 185, 129, 0.2);
  color: var(--emerald-400);
}
.cli-name {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}
.cli-wa {
  font-size: 10.5px;
  color: var(--text-muted);
}
.cli-status-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
}
.cli-status-tag.urgent {
  background: rgba(244, 63, 94, 0.15);
  color: var(--rose-400);
  border: 1px solid rgba(244, 63, 94, 0.3);
}
.cli-status-tag.extended {
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald-400);
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.btn-mini-wa {
  font-size: 10.5px;
  color: var(--amber-400);
  background: rgba(245, 158, 11, 0.1);
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 600;
}
.badge-success {
  font-size: 10.5px;
  color: var(--emerald-400);
  font-weight: 600;
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.section-header {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-tag.red {
  background: rgba(244, 63, 94, 0.12);
  border: 1px solid rgba(244, 63, 94, 0.3);
  color: var(--rose-400);
}
.section-tag.emerald {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--emerald-400);
}
.section-tag.blue {
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.3);
  color: var(--cyan-400);
}
.section-tag.green {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--emerald-400);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.section-subtitle {
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Pain Points & Solutions Grid
   ========================================================================== */
.pain-comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.pain-card:hover {
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}
.pain-card-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 12px;
}
.pain-icon-box.bad {
  width: 36px;
  height: 36px;
  background: rgba(244, 63, 94, 0.15);
  color: var(--rose-400);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pain-icon-box.bad svg {
  width: 20px;
  height: 20px;
}
.card-status-label.bad {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--rose-400);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.pain-heading {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.pain-text {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.solution-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 12px 0 16px 0;
}
.pain-card-solution {
  background: rgba(16, 185, 129, 0.04);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 10px;
  padding: 14px;
}
.solution-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}
.solution-icon {
  font-size: 14px;
}
.solution-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--emerald-400);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.solution-text {
  font-size: 13px;
  color: #e4e4e7;
  line-height: 1.5;
}

/* Pain CTA Box */
.pain-cta-box {
  background: linear-gradient(135deg, #0d1a1a 0%, #0d1017 100%);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.pain-cta-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.pain-cta-sub {
  font-size: 14px;
  color: var(--text-muted);
}
.btn-primary-large {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--emerald-500), #059669);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 25px var(--emerald-glow);
  transition: all 0.2s;
}
.btn-primary-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5);
}

/* ==========================================================================
   Real Screen Tabs Showcase
   ========================================================================== */
.screen-tabs-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.screen-tab-btn {
  background: #0d1017;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.screen-tab-btn:hover {
  color: #fff;
  border-color: var(--border-highlight);
  background: #121622;
}
.screen-tab-btn.active {
  background: rgba(16, 185, 129, 0.12);
  border-color: var(--emerald-500);
  color: var(--emerald-400);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.15);
}

.screen-tabs-container {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.screen-tab-pane {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}
.screen-tab-pane.active {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.screen-mockup-card {
  background: #0d1017;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}
.mockup-header-bar {
  background: #080b10;
  border-bottom: 1px solid var(--border-subtle);
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.mockup-badge {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--emerald-400);
  font-family: var(--font-heading);
}
.mockup-caption {
  font-size: 12px;
  color: var(--text-muted);
}

.real-ui-view {
  padding: 24px;
}

/* Dashboard UI View */
.dashboard-kpi-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.ui-kpi-card {
  background: #121622;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px;
}
.ui-kpi-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.ui-kpi-label {
  font-size: 11.5px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
}
.ui-kpi-number {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
}
.ui-kpi-number .unit {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}
.ui-kpi-growth {
  font-size: 11.5px;
  margin-top: 4px;
  font-weight: 500;
}

.ui-alert-table-box {
  background: #121622;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
}
.ui-table-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-subtle);
}
.ui-box-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
}
.ui-badge-active {
  font-size: 11px;
  color: var(--emerald-400);
  background: rgba(16, 185, 129, 0.1);
  padding: 2px 10px;
  border-radius: 999px;
  font-weight: 600;
}
.ui-table-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ui-table-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 14px;
  flex-wrap: wrap;
  gap: 12px;
}
.cli-col-main {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar-circle {
  width: 36px;
  height: 36px;
  background: #1f293d;
  color: var(--cyan-400);
  font-size: 12px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.avatar-circle.green { background: rgba(16, 185, 129, 0.2); color: var(--emerald-400); }
.avatar-circle.blue { background: rgba(59, 130, 246, 0.2); color: var(--blue-400); }
.name-bold {
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
}
.sub-muted {
  font-size: 11.5px;
  color: var(--text-muted);
}
.badge-urgent-today {
  background: rgba(244, 63, 94, 0.15);
  border: 1px solid rgba(244, 63, 94, 0.4);
  color: var(--rose-400);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}
.badge-warning-tomorrow {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: var(--amber-400);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}
.action-col {
  display: flex;
  align-items: center;
  gap: 10px;
}
.status-pill-green {
  font-size: 11px;
  color: var(--emerald-400);
  font-weight: 600;
}
.status-pill-amber {
  font-size: 11px;
  color: var(--amber-400);
  font-weight: 600;
}
.btn-mock-charge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-highlight);
  font-size: 11.5px;
  color: #fff;
  padding: 4px 12px;
  border-radius: 6px;
  cursor: pointer;
}

/* Chat Mockup View */
.chat-mock-layout {
  display: flex;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 480px;
  background: #090c12;
}
.chat-sidebar-mock {
  width: 260px;
  background: #0d1017;
  border-right: 1px solid var(--border-subtle);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}
.chat-search-mock {
  background: #121622;
  border: 1px solid var(--border-subtle);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.chat-thread-item {
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  cursor: pointer;
}
.chat-thread-item.active {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.3);
}
.chat-thread-item.waiting {
  background: rgba(245, 158, 11, 0.05);
  border-color: rgba(245, 158, 11, 0.2);
}
.thread-top {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}
.thread-time {
  font-size: 10px;
  color: var(--text-subtle);
}
.thread-preview {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 6px;
}
.thread-tag-row {
  display: flex;
  gap: 4px;
}
.tag-ai-active {
  font-size: 9.5px;
  color: var(--emerald-400);
  background: rgba(16, 185, 129, 0.15);
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 600;
}
.tag-lead {
  font-size: 9.5px;
  color: var(--cyan-400);
  background: rgba(6, 182, 212, 0.15);
  padding: 1px 6px;
  border-radius: 4px;
}
.tag-human-needed {
  font-size: 9.5px;
  color: var(--amber-400);
  background: rgba(245, 158, 11, 0.15);
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 700;
}

.chat-main-mock {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #07090e;
}
.chat-main-header {
  background: #0d1017;
  border-bottom: 1px solid var(--border-subtle);
  padding: 12px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chat-user-header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.chat-user-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.chat-user-status {
  font-size: 11px;
  color: var(--emerald-400);
}
.btn-takeover {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: var(--amber-400);
  font-size: 11.5px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
}

.chat-messages-container {
  flex: 1;
  padding: 18px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.msg-bubble {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
}
.msg-bubble.inbound {
  align-self: flex-start;
  background: #171c2b;
  border: 1px solid var(--border-subtle);
  color: #e4e4e7;
}
.msg-bubble.outbound.ai {
  align-self: flex-end;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #ffffff;
}
.msg-sender {
  font-size: 11px;
  font-weight: 700;
  color: var(--cyan-400);
  margin-bottom: 4px;
}
.msg-sender-ai {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--emerald-400);
  margin-bottom: 6px;
}
.badge-ai-call {
  background: rgba(6, 182, 212, 0.2);
  color: var(--cyan-400);
  padding: 1px 6px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 9.5px;
}
.msg-meta {
  font-size: 10px;
  color: var(--text-subtle);
  margin-top: 6px;
  text-align: right;
}

/* Finance UI View */
.finance-grid-mock {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px;
}
.invoices-box {
  background: #121622;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px;
}
.invoices-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-subtle);
}
.inv-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.gateway-badge {
  font-size: 10.5px;
  color: var(--cyan-400);
  background: rgba(6, 182, 212, 0.12);
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 600;
}
.invoice-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 8px;
}
.invoice-item-row.paid {
  border-left: 3px solid var(--emerald-500);
}
.invoice-item-row.pending {
  border-left: 3px solid var(--amber-500);
}
.invoice-item-row.overdue {
  border-left: 3px solid var(--rose-500);
}
.inv-name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
.inv-sub {
  font-size: 11px;
  color: var(--text-muted);
}
.inv-col-amount {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.status-tag-paid {
  font-size: 10.5px;
  color: var(--emerald-400);
  font-weight: 700;
}
.status-tag-pending {
  font-size: 10.5px;
  color: var(--amber-400);
  font-weight: 700;
}
.status-tag-overdue {
  font-size: 10.5px;
  color: var(--rose-400);
  font-weight: 700;
}
.badge-auto-extend {
  font-size: 10.5px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald-400);
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
}
.badge-poll-running {
  font-size: 10.5px;
  background: rgba(245, 158, 11, 0.15);
  color: var(--amber-400);
  padding: 3px 8px;
  border-radius: 4px;
}
.badge-auto-blocked {
  font-size: 10.5px;
  background: rgba(244, 63, 94, 0.15);
  color: var(--rose-400);
  padding: 3px 8px;
  border-radius: 4px;
}

.flow-card-mock {
  background: #121622;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px;
}
.flow-card-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.step-flow-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.step-flow-item {
  display: flex;
  gap: 12px;
}
.step-num {
  width: 26px;
  height: 26px;
  background: var(--emerald-500);
  color: #000;
  font-weight: 800;
  font-size: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}
.step-desc strong {
  color: #fff;
}

/* Clients UI View */
.clients-table-mock {
  background: #121622;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px;
  overflow-x: auto;
}
.clients-search-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  gap: 12px;
  flex-wrap: wrap;
}
.search-input-fake {
  background: #0d1017;
  border: 1px solid var(--border-subtle);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 12px;
  color: var(--text-muted);
  flex: 1;
  min-width: 250px;
}
.filter-pills {
  display: flex;
  gap: 6px;
}
.pill-f {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 6px;
  background: #0d1017;
  color: var(--text-muted);
  cursor: pointer;
}
.pill-f.active {
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald-400);
  font-weight: 600;
}

.ui-table-real {
  width: 100%;
  border-collapse: collapse;
  font-size: 12.5px;
}
.ui-table-real th {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-subtle);
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 600;
}
.ui-table-real td {
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: #e4e4e7;
}
.tbl-client-name { font-weight: 600; color: #fff; }
.tbl-client-phone { font-size: 11px; color: var(--text-muted); }
.tbl-line-user code { font-size: 11.5px; }
.tbl-line-id { font-size: 10px; color: var(--text-subtle); }
.badge-date-ok { font-weight: 600; color: var(--emerald-400); display: block; }
.badge-date-urgent { font-weight: 700; color: var(--rose-400); display: block; }
.sub-date { font-size: 10.5px; color: var(--text-muted); }
.tbl-status-active { color: var(--emerald-400); font-weight: 600; }
.tbl-status-warning { color: var(--amber-400); font-weight: 600; }
.tbl-btn-opt {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: #fff;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
}
.tbl-btn-opt.highlight {
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.4);
  color: var(--amber-400);
}

/* Import UI View */
.import-mock-layout {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.upload-dropzone-fake {
  background: rgba(16, 185, 129, 0.03);
  border: 2px dashed rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  text-align: center;
}
.drop-icon { font-size: 32px; margin-bottom: 8px; }
.drop-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.drop-sub { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
.drop-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--emerald-400);
  background: rgba(16, 185, 129, 0.1);
  padding: 3px 10px;
  border-radius: 999px;
}

.extracted-table-box {
  background: #121622;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
}
.ext-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 10px;
}
.ext-title { font-size: 12.5px; font-weight: 600; color: var(--emerald-400); }
.btn-confirm-import {
  background: var(--emerald-500);
  color: #000;
  font-weight: 700;
  font-size: 11.5px;
  padding: 6px 14px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}
.ext-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  margin-bottom: 6px;
  font-size: 12px;
}
.ext-tag.ok {
  font-size: 10px;
  font-weight: 700;
  color: var(--emerald-400);
  background: rgba(16, 185, 129, 0.15);
  padding: 2px 6px;
  border-radius: 4px;
}

/* ==========================================================================
   Calculadora de ROI
   ========================================================================== */
.calculator-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}
.calculator-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
.calc-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.calc-label {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.calc-val-display {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
}

.range-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #1f293d;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--emerald-500);
  cursor: pointer;
  box-shadow: 0 0 10px var(--emerald-500);
  border: 2px solid #fff;
}
.slider-ticks {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-subtle);
  margin-top: 6px;
}

.calculator-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}
.calc-res-card {
  background: #121622;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.calc-res-card.highlight-glow {
  border-color: rgba(168, 85, 247, 0.4);
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.08), #121622);
}
.calc-res-icon {
  font-size: 26px;
}
.calc-res-label {
  display: block;
  font-size: 11.5px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.calc-res-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 2px;
}
.calc-res-sub {
  font-size: 11.5px;
  color: var(--text-subtle);
}

.calc-cta-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  flex-wrap: wrap;
  gap: 16px;
}
.calc-verdict {
  font-size: 14px;
  color: #fff;
}

/* ==========================================================================
   Pricing Cards Section
   ========================================================================== */
.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.25s;
}
.pricing-card:hover {
  transform: translateY(-4px);
}
.pricing-card.free-plan {
  border-color: rgba(255, 255, 255, 0.12);
}
.pricing-card.pro-plan {
  border-color: var(--emerald-500);
  background: linear-gradient(180deg, #0f1c1a 0%, #0d1017 100%);
  box-shadow: 0 10px 40px rgba(16, 185, 129, 0.15);
}

.popular-ribbon {
  position: absolute;
  top: -12px;
  right: 24px;
  background: linear-gradient(135deg, var(--emerald-500), #059669);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.5px;
}

.pricing-badge-tier {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  margin-bottom: 12px;
}
.pricing-badge-tier.pro {
  background: rgba(16, 185, 129, 0.2);
  color: var(--emerald-400);
}

.plan-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.plan-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 20px;
}

.plan-price-box {
  display: flex;
  align-items: baseline;
  margin-bottom: 6px;
}
.plan-price-box .currency {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-muted);
  margin-right: 4px;
}
.plan-price-box .price-val {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.plan-price-box .cents {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.plan-price-box .period {
  font-size: 13px;
  color: var(--text-muted);
  margin-left: 6px;
}

.plan-limit-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan-400);
  background: rgba(6, 182, 212, 0.1);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 24px;
  display: inline-block;
  align-self: flex-start;
}
.plan-limit-tag.pro {
  color: var(--emerald-400);
  background: rgba(16, 185, 129, 0.15);
}

.plan-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
  flex: 1;
}
.plan-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: #e4e4e7;
  line-height: 1.4;
}
.plan-features-list li svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 2px;
}

.btn-pricing-free {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-highlight);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  transition: all 0.2s;
}
.btn-pricing-free:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-pricing-pro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--emerald-500), #059669);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 25px var(--emerald-glow);
  transition: all 0.2s;
}
.btn-pricing-pro:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5);
}

.pricing-foot-note {
  font-size: 11px;
  color: var(--text-subtle);
  text-align: center;
  margin-top: 10px;
}

/* Feature Comparison Matrix */
.features-comparison-matrix {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.matrix-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  text-align: center;
}
.matrix-table-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow-x: auto;
}
.matrix-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}
.matrix-table th {
  background: #080b10;
  padding: 14px 18px;
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  border-bottom: 1px solid var(--border-subtle);
}
.matrix-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-subtle);
  color: #e4e4e7;
}
.matrix-table tr:last-child td {
  border-bottom: none;
}
.matrix-check { color: var(--emerald-400); font-weight: 700; }
.matrix-dash { color: var(--text-subtle); }
.matrix-val { font-weight: 600; }

/* ==========================================================================
   Security Box Section
   ========================================================================== */
.security-box {
  background: linear-gradient(135deg, #0e1518 0%, #0d1017 100%);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  gap: 36px;
  align-items: center;
}
.shield-badge {
  font-size: 64px;
}
.security-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.security-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.security-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sec-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: #e4e4e7;
}
.sec-icon {
  font-size: 16px;
  margin-top: 1px;
}
.sec-item strong {
  color: #fff;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-accordion-wrapper {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.2s;
}
.faq-item:hover {
  border-color: var(--border-highlight);
}
.faq-item.open {
  border-color: rgba(16, 185, 129, 0.3);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 15.5px;
  font-weight: 700;
  text-align: left;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
}
.faq-arrow {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  color: var(--emerald-400);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}
.faq-answer p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.faq-answer strong {
  color: #fff;
}

/* ==========================================================================
   Download Final CTA Section
   ========================================================================== */
.download-cta-section {
  position: relative;
}
.final-cta-card {
  background: linear-gradient(180deg, #0f1c1a 0%, #07090e 100%);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 50px rgba(16, 185, 129, 0.15);
}
.final-cta-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 250px;
  background: rgba(16, 185, 129, 0.15);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.final-cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.final-cta-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 36px;
}

.quick-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
  text-align: left;
}
.quick-step-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px;
}
.step-badge {
  font-size: 10px;
  font-weight: 800;
  color: var(--emerald-400);
  background: rgba(16, 185, 129, 0.15);
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.quick-step-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.quick-step-card p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

.download-button-wrapper {
  margin-bottom: 20px;
}
.btn-download-hero {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  text-decoration: none;
  padding: 18px 36px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 40px rgba(16, 185, 129, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: all 0.25s ease;
}
.btn-download-hero:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 50px rgba(16, 185, 129, 0.7);
}
.btn-icon-xl {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.btn-download-labels {
  text-align: left;
}
.btn-download-main {
  display: block;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.5px;
}
.btn-download-sub {
  display: block;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.9);
}

.download-trust-notes {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--text-muted);
}

/* ==========================================================================
   Mobile Sticky Bottom Bar
   ========================================================================== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(13, 16, 23, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-highlight);
  padding: 10px 16px;
  z-index: 99;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.6);
}
.mobile-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-sticky-title {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}
.mobile-sticky-sub {
  display: block;
  font-size: 11px;
}
.btn-primary-small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--emerald-500);
  color: #000;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   Social Proof Toast
   ========================================================================== */
.social-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: #121622;
  border: 1px solid var(--border-highlight);
  border-left: 3px solid var(--emerald-500);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  z-index: 90;
  transform: translateY(120px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.social-toast.show {
  transform: translateY(0);
  opacity: 1;
}
.toast-avatar {
  font-size: 20px;
}
.toast-title {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}
.toast-desc {
  font-size: 11.5px;
  color: var(--text-muted);
}
.toast-time {
  font-size: 10px;
  color: var(--text-subtle);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: #05070a;
  border-top: 1px solid var(--border-subtle);
  padding-top: 60px;
  padding-bottom: 40px;
  font-size: 13.5px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-desc {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 14px 0;
  font-size: 13px;
  max-width: 320px;
}
.footer-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--emerald-400);
  background: rgba(16, 185, 129, 0.1);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links-list a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links-list a:hover {
  color: #fff;
}
.footer-text-muted {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}
.footer-tag-list {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.foot-tag {
  font-size: 10.5px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: #a1a1aa;
  padding: 2px 8px;
  border-radius: 4px;
}

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

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-showcase { display: none; }
  .calculator-inputs { grid-template-columns: 1fr; }
  .calculator-results { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .finance-grid-mock { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .mobile-menu-btn { display: block; }
  .mobile-sticky-bar { display: block; }
  .quick-steps-grid { grid-template-columns: 1fr; }
  .security-box { flex-direction: column; text-align: center; }
  .security-checklist { text-align: left; }
  .footer-inner { grid-template-columns: 1fr; }
  .pain-comparison-grid { grid-template-columns: 1fr; }
  .pricing-cards-grid { grid-template-columns: 1fr; }
  .chat-mock-layout { flex-direction: column; height: auto; }
  .chat-sidebar-mock { width: 100%; }
}
