/* ==========================================================================
   CELUU.COM.AR - DESIGN SYSTEM & STYLESHEET
   Azul Tecnología (#1E40AF, #2563EB, #38BDF8) & Verde Éxito (#10B981, #059669)
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-dark: #0B0F19;
  --bg-card: rgba(17, 24, 39, 0.75);
  --bg-card-hover: rgba(30, 41, 59, 0.85);
  --bg-card-border: rgba(255, 255, 255, 0.08);
  --bg-card-border-glow: rgba(56, 189, 248, 0.25);
  
  --primary-blue: #2563EB;
  --primary-blue-dark: #1E40AF;
  --primary-blue-light: #38BDF8;
  --primary-blue-glow: rgba(37, 99, 235, 0.4);

  --accent-emerald: #10B981;
  --accent-emerald-dark: #059669;
  --accent-emerald-light: #34D399;
  --accent-emerald-glow: rgba(16, 185, 129, 0.35);

  --accent-purple: #8B5CF6;
  --accent-purple-glow: rgba(139, 92, 246, 0.25);
  --accent-amber: #F59E0B;
  --accent-red: #EF4444;

  --text-main: #F8FAFC;
  --text-body: #94A3B8;
  --text-muted: #64748B;
  
  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Layout & Transitions */
  --max-w: 1200px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(30, 58, 138, 0.18) 0%, transparent 60%),
    radial-gradient(circle at 10% 30%, rgba(16, 185, 129, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 70%, rgba(99, 102, 241, 0.08) 0%, transparent 45%);
}

/* Background Ambient Glows */
.bg-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}
.bg-glow-blue {
  top: 5%;
  left: -100px;
  background: radial-gradient(circle, var(--primary-blue-dark), transparent);
}
.bg-glow-emerald {
  top: 45%;
  right: -100px;
  background: radial-gradient(circle, var(--accent-emerald-dark), transparent);
}
.bg-glow-purple {
  bottom: 10%;
  left: 20%;
  background: radial-gradient(circle, var(--accent-purple), transparent);
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Top Announcement Bar */
.top-announcement {
  background: linear-gradient(90deg, #1E1B4B, #1E3A8A, #064E3B);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 0;
  font-size: 0.85rem;
  color: #E2E8F0;
  position: relative;
  z-index: 100;
}
.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  text-align: center;
}
.badge-pulse {
  background: rgba(16, 185, 129, 0.2);
  color: #34D399;
  border: 1px solid rgba(52, 211, 153, 0.3);
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.announcement-link {
  color: var(--primary-blue-light);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}
.announcement-link:hover {
  color: #FFF;
  text-decoration: underline;
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--bg-card-border);
  z-index: 99;
  transition: var(--transition);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-main);
}
.logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
}
.brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.brand-dot {
  color: var(--primary-blue-light);
  font-weight: 600;
  font-size: 1.1rem;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-link {
  color: var(--text-body);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: var(--transition);
}
.nav-link:hover {
  color: var(--text-main);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  padding: 12px 24px;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue), #1D4ED8);
  color: #FFF;
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 18px var(--primary-blue-glow);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #3B82F6, var(--primary-blue));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
}
.btn-primary-sm {
  background: linear-gradient(135deg, var(--primary-blue), #1D4ED8);
  color: #FFF;
  padding: 8px 18px;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
}
.btn-primary-sm:hover {
  background: #3B82F6;
  transform: translateY(-1px);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--bg-card-border);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.btn-secondary-sm {
  background: transparent;
  color: var(--text-body);
  padding: 8px 14px;
  font-size: 0.88rem;
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-sm);
}
.btn-secondary-sm:hover {
  color: var(--text-main);
  border-color: rgba(255, 255, 255, 0.2);
}
.btn-glow {
  position: relative;
}
.btn-glow::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-md) + 2px);
  background: linear-gradient(90deg, #38BDF8, #10B981);
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
  filter: blur(8px);
}
.btn-glow:hover::after {
  opacity: 0.6;
}
.btn-outline-emerald {
  background: rgba(16, 185, 129, 0.08);
  color: var(--accent-emerald-light);
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.btn-outline-emerald:hover {
  background: rgba(16, 185, 129, 0.16);
  border-color: var(--accent-emerald-light);
}
.btn-block {
  width: 100%;
}
.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}
.btn-whatsapp {
  background: #25D366;
  color: #064E3B;
  font-weight: 700;
  border-radius: var(--radius-md);
  padding: 12px 20px;
  text-decoration: none;
}
.btn-whatsapp:hover {
  background: #20BA56;
  transform: scale(1.02);
}

/* Hero Section */
.hero-section {
  padding: 60px 0 80px;
  position: relative;
}
.hero-container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.25);
  color: #7DD3FC;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.dot-live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-emerald);
  box-shadow: 0 0 10px var(--accent-emerald);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.2); }
}
.hero-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.gradient-text-emerald {
  background: linear-gradient(135deg, #34D399, #10B981, #38BDF8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-body);
  margin-bottom: 32px;
  line-height: 1.65;
}
.hero-subtitle strong {
  color: var(--text-main);
}
.hero-cta-group {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.trust-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-body);
}
.check-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Hero Visual & Mockup */
.hero-visual {
  perspective: 1200px;
}
.mockup-glass-card {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.7), 0 0 35px rgba(37, 99, 235, 0.15);
  overflow: hidden;
  transition: transform 0.4s ease;
}
.mockup-glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.3);
}
.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: rgba(11, 15, 25, 0.9);
  border-bottom: 1px solid var(--bg-card-border);
}
.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; }

.url-badge {
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 3px 10px;
  border-radius: 12px;
  color: #94A3B8;
  font-family: monospace;
}
.currency-toggle-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
}
.toggle-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.currency-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--bg-card-border);
  color: var(--text-body);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.currency-btn.active {
  background: var(--primary-blue);
  color: #FFF;
  border-color: var(--primary-blue-light);
}

.mockup-body {
  padding: 20px;
}
.mockup-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.stat-card {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-sm);
  padding: 12px;
}
.stat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.stat-name {
  font-size: 0.75rem;
  color: var(--text-body);
  font-weight: 500;
}
.tag-badge {
  font-size: 0.68rem;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
}
.tag-badge.green { background: rgba(16, 185, 129, 0.15); color: #34D399; }
.tag-badge.blue { background: rgba(56, 189, 248, 0.15); color: #7DD3FC; }
.tag-badge.purple { background: rgba(139, 92, 246, 0.15); color: #C4B5FD; }

.stat-value {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 2px;
}
.stat-value small {
  font-size: 0.72rem;
  font-weight: 500;
}
.stat-sub {
  font-size: 0.68rem;
  color: var(--text-muted);
}

.mockup-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.panel-card {
  background: rgba(30, 41, 59, 0.4);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-sm);
  padding: 14px;
}
.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.panel-header h4 {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
}
.badge-live-pulse {
  font-size: 0.68rem;
  color: #34D399;
  background: rgba(16, 185, 129, 0.15);
  padding: 2px 6px;
  border-radius: 10px;
}

/* Debtor List */
.debtor-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.debtor-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
}
.debtor-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.debtor-status-dot.green { background: #10B981; box-shadow: 0 0 6px #10B981; }
.debtor-status-dot.yellow { background: #F59E0B; box-shadow: 0 0 6px #F59E0B; }
.debtor-status-dot.red { background: #EF4444; box-shadow: 0 0 6px #EF4444; }

.debtor-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.debtor-info strong {
  color: #E2E8F0;
  font-weight: 600;
}
.debtor-info span {
  color: var(--text-muted);
  font-size: 0.68rem;
}
.status-pill {
  font-size: 0.68rem;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
}
.status-pill.ok { background: rgba(16, 185, 129, 0.12); color: #34D399; }
.status-pill.warning { background: rgba(245, 158, 11, 0.15); color: #FBBF24; }
.status-pill.locked { background: rgba(239, 68, 68, 0.2); color: #F87171; border: 1px solid rgba(239, 68, 68, 0.4); }

/* Stock Alerts */
.stock-alerts-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}
.stock-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.74rem;
}
.stock-icon {
  font-size: 1rem;
}
.stock-info {
  flex-grow: 1;
}
.stock-name {
  color: #CBD5E1;
  margin-bottom: 3px;
}
.stock-bar-wrap {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}
.stock-bar {
  height: 100%;
  border-radius: 2px;
}
.stock-count {
  font-weight: 600;
  font-size: 0.72rem;
}

.bimonetary-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15, 23, 42, 0.8);
  border: 1px dashed rgba(56, 189, 248, 0.3);
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.72rem;
}
.bimonetary-item {
  display: flex;
  gap: 4px;
}
.b-label { color: var(--text-muted); }
.b-val { color: #34D399; font-weight: 700; }
.b-divider { width: 1px; height: 14px; background: rgba(255, 255, 255, 0.1); }
.b-sync { color: #7DD3FC; font-size: 0.68rem; display: flex; align-items: center; gap: 4px; }
.sync-dot { width: 6px; height: 6px; border-radius: 50%; background: #38BDF8; }

/* Global Section Styling */
.section {
  padding: 90px 0;
  position: relative;
}
.section-header {
  max-width: 760px;
  margin: 0 auto 56px;
}
.text-center {
  text-align: center;
}
.badge-tag-danger {
  display: inline-block;
  background: rgba(239, 68, 68, 0.12);
  color: #F87171;
  border: 1px solid rgba(239, 68, 68, 0.25);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.badge-tag-success {
  display: inline-block;
  background: rgba(16, 185, 129, 0.12);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.badge-tag-blue {
  display: inline-block;
  background: rgba(37, 99, 235, 0.12);
  color: #7DD3FC;
  border: 1px solid rgba(56, 189, 248, 0.25);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.badge-tag-emerald {
  display: inline-block;
  background: rgba(16, 185, 129, 0.15);
  color: #6EE7B7;
  border: 1px solid rgba(52, 211, 153, 0.3);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.1rem;
  color: var(--text-body);
}

/* Problems Grid */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.problem-card:hover {
  transform: translateY(-6px);
  border-color: rgba(239, 68, 68, 0.3);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}
.problem-card.highlight-card {
  border-color: rgba(245, 158, 11, 0.3);
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
}
.problem-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.problem-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #FFF;
}
.problem-text {
  color: var(--text-body);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}
.impact-box {
  background: rgba(239, 68, 68, 0.08);
  border-left: 3px solid #EF4444;
  padding: 12px 14px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.85rem;
}
.impact-box strong {
  display: block;
  color: #F87171;
  margin-bottom: 3px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.impact-box span {
  color: #CBD5E1;
}

/* Solutions Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
  position: relative;
  backdrop-filter: blur(12px);
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(37, 99, 235, 0.15);
}
.feature-card.featured-border {
  border: 1px solid rgba(239, 68, 68, 0.4);
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.85), rgba(15, 23, 42, 0.95));
}
.top-badge-card {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #F87171;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}
.feature-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon.blue {
  background: rgba(37, 99, 235, 0.15);
  color: #38BDF8;
  border: 1px solid rgba(56, 189, 248, 0.3);
}
.feature-icon.emerald {
  background: rgba(16, 185, 129, 0.15);
  color: #34D399;
  border: 1px solid rgba(52, 211, 153, 0.3);
}
.feature-icon.purple {
  background: rgba(139, 92, 246, 0.15);
  color: #A78BFA;
  border: 1px solid rgba(167, 139, 250, 0.3);
}
.feature-icon.red-glow {
  background: rgba(239, 68, 68, 0.15);
  color: #F87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}
.feature-cat {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary-blue-light);
  margin-bottom: 2px;
}
.feature-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: #FFF;
}
.feature-description {
  color: var(--text-body);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.feature-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.88rem;
  color: #CBD5E1;
}
.feature-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.feature-bullets span {
  color: #10B981;
  font-weight: 700;
}

/* Simulator Section */
.simulator-box {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}
.sim-controls {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.control-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #E2E8F0;
  margin-bottom: 6px;
}
.form-input-sim {
  width: 100%;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid var(--bg-card-border);
  color: #FFF;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: var(--transition);
}
.form-input-sim:focus {
  border-color: var(--primary-blue-light);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.2);
}

.sim-result-card {
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sim-result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.sim-badge {
  font-size: 0.8rem;
  font-weight: 700;
  color: #94A3B8;
  text-transform: uppercase;
}
.tc-pill {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34D399;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 10px;
}
.sim-calc-lines {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.calc-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: var(--text-body);
}
.calc-row strong {
  color: #FFF;
}
.calc-row.divider {
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
  padding-top: 14px;
  font-size: 1.05rem;
  align-items: baseline;
}
.text-blue { color: #38BDF8; }
.text-success { color: #34D399; }
.text-danger { color: #F87171; }
.text-warning { color: #FBBF24; }
.glow-text {
  text-shadow: 0 0 15px rgba(52, 211, 153, 0.4);
}
.contract-tip {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* Onboarding Section */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: var(--transition);
}
.step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 189, 248, 0.3);
}
.step-card.highlight-step {
  border-color: rgba(16, 185, 129, 0.3);
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.95));
}
.step-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.06);
}
.step-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.step-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #FFF;
}
.step-text {
  font-size: 0.94rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* Lead Capture Section */
.lead-section {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.6), rgba(11, 15, 25, 0.9));
}
.lead-container {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
}
.lead-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.lead-desc {
  font-size: 1.08rem;
  color: var(--text-body);
  margin-bottom: 32px;
}
.lead-perks {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.perk-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.perk-icon {
  font-size: 1.4rem;
}
.perk-item strong {
  display: block;
  color: #FFF;
  font-size: 1rem;
  margin-bottom: 2px;
}
.perk-item p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.form-card {
  background: rgba(17, 24, 39, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}
.form-card-header {
  margin-bottom: 24px;
}
.form-card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #FFF;
}
.form-card-header p {
  font-size: 0.88rem;
  color: var(--text-muted);
}
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #CBD5E1;
}
.form-group input,
.form-group select {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid var(--bg-card-border);
  color: #FFF;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary-blue-light);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.25);
}
.form-footer-privacy {
  text-align: center;
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 8px;
}
.form-success-box {
  text-align: center;
  padding: 30px 10px;
}
.success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}
.form-success-box h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #34D399;
  margin-bottom: 10px;
}
.form-success-box p {
  color: var(--text-body);
  font-size: 0.95rem;
  margin-bottom: 24px;
}
.success-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* FAQ Section */
.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.active {
  border-color: rgba(56, 189, 248, 0.3);
  background: rgba(30, 41, 59, 0.6);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  color: #FFF;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}
.faq-chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid #94A3B8;
  border-bottom: 2px solid #94A3B8;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 12px;
}
.faq-item.active .faq-chevron {
  transform: rotate(-135deg);
  border-color: #38BDF8;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-answer p {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Trust Bar Section */
.trust-bar-section {
  padding: 36px 0;
  background: rgba(15, 23, 42, 0.7);
  border-top: 1px solid var(--bg-card-border);
  border-bottom: 1px solid var(--bg-card-border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.trust-pill {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
}
.t-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-pill strong {
  display: block;
  color: #FFF;
  font-size: 0.95rem;
}
.trust-pill span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Footer */
.footer {
  background: #070A12;
  padding: 70px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-container {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand .brand-name {
  font-size: 1.4rem;
}
.footer-tagline {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 16px 0;
  line-height: 1.6;
}
.footer-country-tag {
  font-size: 0.78rem;
  color: var(--primary-blue-light);
  background: rgba(37, 99, 235, 0.1);
  padding: 6px 10px;
  border-radius: 6px;
  display: inline-block;
}
.footer-links-col h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 18px;
}
.footer-links-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  margin-bottom: 10px;
  transition: var(--transition);
}
.footer-links-col a:hover {
  color: var(--primary-blue-light);
  transform: translateX(3px);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-legal {
  display: flex;
  gap: 8px;
}
.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
}
.footer-legal a:hover {
  color: #FFF;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  text-decoration: none;
}
.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
}
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFF;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.floating-whatsapp:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(-4px);
}

/* Modal Styling */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.modal-backdrop.active {
  display: flex;
}
.modal-box {
  background: #111827;
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 620px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.8);
  animation: modal-enter 0.3s ease;
}
@keyframes modal-enter {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--bg-card-border);
}
.modal-header h3 {
  font-size: 1.15rem;
  color: #FFF;
}
.modal-close {
  background: none;
  border: none;
  color: var(--text-body);
  font-size: 1.5rem;
  cursor: pointer;
}
.modal-body {
  padding: 24px;
  max-height: 70vh;
  overflow-y: auto;
}
.contract-paper {
  background: #0F172A;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 20px;
  font-size: 0.85rem;
}
.contract-doc-header {
  border-bottom: 2px solid var(--primary-blue);
  padding-bottom: 8px;
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contract-doc-header h4 {
  font-size: 0.82rem;
  color: #E2E8F0;
}
.doc-code {
  font-family: monospace;
  color: var(--primary-blue-light);
  font-size: 0.75rem;
}
.contract-table {
  width: 100%;
  margin: 14px 0;
  border-collapse: collapse;
}
.contract-table td {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.contract-terms {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 12px;
}
.signature-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
}
.sig-line {
  text-align: center;
}
.digital-stamp {
  color: #34D399;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px dashed #34D399;
  padding: 4px;
  border-radius: 4px;
  margin-bottom: 6px;
}
.sig-line span {
  font-size: 0.7rem;
  color: var(--text-muted);
}
.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 14px 24px;
  background: rgba(15, 23, 42, 0.8);
  border-top: 1px solid var(--bg-card-border);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    margin-top: 20px;
  }
  .problems-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .simulator-box {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .lead-container {
    grid-template-columns: 1fr;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: #0B0F19;
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid var(--bg-card-border);
    display: none;
  }
  .nav-links.mobile-open {
    display: flex;
  }
  .menu-toggle {
    display: flex;
  }
  .hero-title {
    font-size: 2.3rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .mockup-stats-grid {
    grid-template-columns: 1fr;
  }
  .mockup-details-grid {
    grid-template-columns: 1fr;
  }
  .form-row-2 {
    grid-template-columns: 1fr;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
}
