/* ============================================
   ÓRBITA Landing Page - interOS Style
   ============================================ */

:root {
  --bg-dark: #0a1628;
  --bg-dark-2: #0f1d32;
  --bg-dark-3: #162544;
  --blue: #0d6efd;
  --blue-light: #3d8bfd;
  --blue-dark: #0a58ca;
  --blue-glow: rgba(13, 110, 253, 0.3);
  --cyan: #00d4ff;
  --purple: #7c3aed;
  --green: #10b981;
  --orange: #f59e0b;
  --text-white: #f8fafc;
  --text-gray: #94a3b8;
  --text-gray-light: #cbd5e1;
  --border-dark: rgba(255, 255, 255, 0.08);
  --border-blue: rgba(13, 110, 253, 0.3);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.4);
  --shadow-blue: 0 4px 30px rgba(13, 110, 253, 0.25);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Module theme (default: maps - green/emerald) */
  --accent: #10b981;
  --accent-light: #34d399;
  --accent-dark: #059669;
  --accent-rgb: 16, 185, 129;
  --accent-secondary: #a3e635;
  --accent-glow: rgba(16, 185, 129, 0.3);
  --accent-shadow: 0 4px 30px rgba(16, 185, 129, 0.25);
  --gradient-start: #10b981;
  --gradient-end: #06b6d4;
}

/* Maps — Green/Emerald */
body[data-module="maps"] {
  --accent: #10b981;
  --accent-light: #34d399;
  --accent-dark: #059669;
  --accent-rgb: 16, 185, 129;
  --accent-secondary: #a3e635;
  --accent-glow: rgba(16, 185, 129, 0.3);
  --accent-shadow: 0 4px 30px rgba(16, 185, 129, 0.25);
  --gradient-start: #10b981;
  --gradient-end: #06b6d4;
}

/* Networking — Cyan/Electric Blue */
body[data-module="networking"] {
  --accent: #06b6d4;
  --accent-light: #22d3ee;
  --accent-dark: #0891b2;
  --accent-rgb: 6, 182, 212;
  --accent-secondary: #3b82f6;
  --accent-glow: rgba(6, 182, 212, 0.3);
  --accent-shadow: 0 4px 30px rgba(6, 182, 212, 0.25);
  --gradient-start: #06b6d4;
  --gradient-end: #3b82f6;
}

/* Manager — Purple/Violet */
body[data-module="manager"] {
  --accent: #8b5cf6;
  --accent-light: #a78bfa;
  --accent-dark: #7c3aed;
  --accent-rgb: 139, 92, 246;
  --accent-secondary: #ec4899;
  --accent-glow: rgba(139, 92, 246, 0.3);
  --accent-shadow: 0 4px 30px rgba(139, 92, 246, 0.25);
  --gradient-start: #8b5cf6;
  --gradient-end: #ec4899;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-dark);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 22, 40, 0.95);
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-white);
}

.logo-icon {
  font-size: 28px;
}

.logo-text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 2px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: background 0.4s ease;
}

.logo-sub {
  font-size: 11px;
  color: var(--text-gray);
  font-weight: 400;
  margin-left: -2px;
}

.nav-links {
  display: flex;
  gap: 4px;
  background: var(--bg-dark-2);
  padding: 4px;
  border-radius: 12px;
  border: 1px solid var(--border-dark);
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-gray);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--text-white);
  background: var(--bg-dark-3);
}

.nav-link.active {
  color: var(--text-white);
  background: var(--accent);
  box-shadow: var(--accent-shadow);
}

.nav-icon {
  font-size: 16px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-demo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-demo:hover {
  background: var(--accent-light);
  box-shadow: var(--accent-shadow);
  transform: translateY(-1px);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 999;
}

.mobile-overlay.active {
  display: block;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 24px 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(var(--accent-rgb), 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(var(--accent-rgb), 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 80%, rgba(var(--accent-rgb), 0.06) 0%, transparent 50%);
  transition: background 0.6s ease;
}

.hero-particles {
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 8px;
  background: var(--bg-dark-2);
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  border-radius: 100px;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--accent-light);
  font-weight: 500;
}

.badge-icon {
  font-size: 20px;
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-gray-light);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  border: none;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--accent-shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(var(--accent-rgb), 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--text-white);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--accent);
  background: rgba(var(--accent-rgb), 0.1);
}

.btn-large {
  padding: 16px 40px;
  font-size: 17px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--text-white), var(--text-gray-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 13px;
  color: var(--text-gray);
  font-weight: 500;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-mockup {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4/3;
  background: var(--bg-dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: var(--bg-dark-3);
  border-bottom: 1px solid var(--border-dark);
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-dot.red { background: #ef4444; }
.mockup-dot.yellow { background: #f59e0b; }
.mockup-dot.green { background: #10b981; }

.mockup-title {
  font-size: 12px;
  color: var(--text-gray);
  margin-left: 8px;
}

.mockup-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mockup-card {
  background: var(--bg-dark-3);
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mockup-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.mockup-card-text {
  flex: 1;
}

.mockup-card-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-white);
}

.mockup-card-sub {
  font-size: 10px;
  color: var(--text-gray);
}

.mockup-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mockup-stat {
  background: var(--bg-dark-3);
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}

.mockup-stat-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-light);
}

.mockup-stat-label {
  font-size: 10px;
  color: var(--text-gray);
}

/* ═══════════════════════════════════════════
   MANAGER MOCKUP — Dashboard con chart + tabla
   ═══════════════════════════════════════════ */
.mockup-manager { border-color: rgba(139,92,246,0.25); }
.mockup-manager .mockup-body { padding: 16px; gap: 10px; }

.mgr-stats-row {
  display: flex;
  gap: 8px;
}
.mgr-pill {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  font-size: 11px;
}
.mgr-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mgr-pill-val {
  font-weight: 800;
  font-size: 13px;
}
.mgr-pill-lbl {
  color: var(--text-gray);
  font-size: 9px;
}

.mgr-chart {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 12px 14px;
}
.mgr-chart-label {
  font-size: 10px;
  color: var(--text-gray);
  margin-bottom: 10px;
  font-weight: 600;
}
.mgr-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 70px;
}
.mgr-bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
  gap: 4px;
}
.mgr-bar-col span {
  font-size: 9px;
  color: var(--text-gray);
}
.mgr-bar {
  width: 100%;
  background: linear-gradient(180deg, rgba(139,92,246,0.5), rgba(139,92,246,0.15));
  border-radius: 4px 4px 0 0;
  min-height: 4px;
  transition: height 0.8s ease;
}
.mgr-bar.active {
  background: linear-gradient(180deg, #a78bfa, #7c3aed);
  box-shadow: 0 0 12px rgba(139,92,246,0.4);
}

.mgr-table {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  overflow: hidden;
}
.mgr-table-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 12px;
  font-size: 11px;
  color: var(--text-gray-light);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mgr-table-row:last-child { border-bottom: none; }
.mgr-table-row.header {
  background: rgba(139,92,246,0.06);
  font-weight: 700;
  font-size: 10px;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.mgr-table-row span { flex: 1; }
.mgr-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 1px 8px;
  border-radius: 6px;
}
.mgr-badge.green { color: #10b981; background: rgba(16,185,129,0.1); }
.mgr-badge.yellow { color: #f59e0b; background: rgba(245,158,11,0.1); }
.mgr-badge.blue { color: #3b82f6; background: rgba(59,130,246,0.1); }

/* ═══════════════════════════════════════════
   MAPS MOCKUP — Mapa SVG con nodos y fibra
   ═══════════════════════════════════════════ */
.mockup-maps { border-color: rgba(16,185,129,0.25); }
.mockup-maps .mockup-body { padding: 0; gap: 0; }

.maps-hdr .maps-live-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  margin-left: auto;
  animation: maps-pulse 2s ease-in-out infinite;
}
@keyframes maps-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}

.maps-canvas {
  padding: 10px;
  background: linear-gradient(180deg, rgba(16,185,129,0.03), transparent);
}
.maps-svg {
  width: 100%;
  height: auto;
}
.maps-line {
  animation: maps-draw 2s ease-out forwards;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
}
@keyframes maps-draw {
  to { stroke-dashoffset: 0; }
}
.maps-node-pulse {
  animation: node-pulse 2.5s ease-in-out infinite;
}
@keyframes node-pulse {
  0%, 100% { filter: drop-shadow(0 0 3px rgba(16,185,129,0.3)); }
  50% { filter: drop-shadow(0 0 10px rgba(16,185,129,0.6)); }
}

.maps-legend {
  display: flex;
  gap: 12px;
  padding: 10px 16px;
  background: rgba(0,0,0,0.2);
  border-top: 1px solid rgba(16,185,129,0.1);
  flex-wrap: wrap;
}
.maps-legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  color: var(--text-gray);
}
.maps-lg-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   NETWORKING MOCKUP — Terminal CLI
   ═══════════════════════════════════════════ */
.mockup-networking { border-color: rgba(6,182,212,0.25); }
.mockup-networking .mockup-header { background: #0a0e14; }
.mockup-networking .mockup-body { padding: 0; gap: 0; }

.net-hdr { border-bottom-color: rgba(6,182,212,0.15); }

.net-body {
  background: #0a0e14;
  padding: 14px 16px !important;
  font-family: 'Courier New', monospace;
  font-size: 11px;
  line-height: 1.6;
  min-height: 220px;
}
.net-line {
  margin-bottom: 2px;
  color: var(--text-gray-light);
}
.net-prompt {
  color: #22d3ee;
  font-weight: 700;
}
.net-cmd {
  color: #f8fafc;
}
.net-output {
  padding: 4px 0 10px 16px;
  color: var(--text-gray);
}
.net-table-hdr {
  color: var(--text-gray);
  font-weight: 600;
  font-size: 10px;
  margin-bottom: 2px;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-bottom: 3px;
}
.net-table-row {
  font-size: 11px;
  color: var(--text-gray-light);
  padding: 1px 0;
}
.net-ok { color: #10b981; font-weight: 600; }
.net-warn { color: #f59e0b; font-weight: 600; }
.net-val { color: #22d3ee; font-weight: 600; }
.net-blink {
  animation: blink 1s step-end infinite;
  color: #22d3ee;
}
@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-gray);
  font-size: 13px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.scroll-arrow {
  font-size: 18px;
  opacity: 0.5;
}

/* ============================================
   FEATURES
   ============================================ */
.features {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(var(--accent-rgb), 0.1);
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.05), transparent);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: rgba(var(--accent-rgb), 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.15), rgba(var(--accent-rgb), 0.05));
  border: 1px solid rgba(var(--accent-rgb), 0.3);
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
  position: relative;
}

/* ============================================
   PLANS
   ============================================ */
.plans {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
}

.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.billing-option {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-gray);
  cursor: pointer;
  transition: var(--transition);
}

.billing-option.active {
  color: var(--text-white);
}

.billing-switch {
  width: 48px;
  height: 26px;
  background: var(--bg-dark-3);
  border: 1px solid var(--border-dark);
  border-radius: 100px;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.billing-switch:hover {
  border-color: var(--accent);
}

.billing-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: var(--accent);
  border-radius: 50%;
  transition: var(--transition);
}

.billing-knob.yearly {
  left: 25px;
}

.save-badge {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--green);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  margin-left: 4px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.plan-card {
  background: var(--bg-dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.plan-card.popular {
  border-color: var(--accent);
  box-shadow: var(--accent-shadow);
  background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.08) 0%, var(--bg-dark-2) 100%);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 20px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
  font-size: 12px;
  font-weight: 700;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.plan-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.plan-desc {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 24px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.plan-currency {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-gray-light);
}

.plan-amount {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
}

.plan-period {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 28px;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-gray-light);
}

.plan-features li .check {
  color: var(--green);
  font-size: 16px;
  flex-shrink: 0;
}

.plan-btn {
  display: block;
  width: 100%;
  padding: 14px;
  text-align: center;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.plan-btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  box-shadow: var(--accent-shadow);
}

.plan-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(var(--accent-rgb), 0.4);
}

.plan-btn.secondary {
  background: transparent;
  color: var(--text-white);
  border: 1px solid var(--border-dark);
}

.plan-btn.secondary:hover {
  border-color: var(--accent);
  background: rgba(var(--accent-rgb), 0.1);
}

/* ── Plan icon wraps ── */
.plan-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
}

.starter-icon {
  background: rgba(var(--accent-rgb), 0.1);
}

.popular-icon {
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.2), rgba(var(--accent-rgb), 0.05));
  box-shadow: 0 4px 15px rgba(var(--accent-rgb), 0.15);
}

.enterprise-icon {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

/* ── Plan divider ── */
.plan-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-dark), transparent);
  margin-bottom: 24px;
}

/* ── Plan STARTER (Básico) ── clean, minimal */
.plan-card.starter {
  background: var(--bg-dark-2);
  border: 1px solid var(--border-dark);
}

.plan-card.starter .plan-amount {
  font-size: 36px;
}

/* ── Plan POPULAR (Profesional) ── glow, elevated */
.plan-card.popular {
  border-color: var(--accent);
  box-shadow: var(--accent-shadow), 0 0 60px rgba(var(--accent-rgb), 0.08);
  background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.1) 0%, var(--bg-dark-2) 40%);
  transform: scale(1.04);
  z-index: 2;
}

.plan-card.popular .plan-name {
  color: var(--accent);
}

.plan-guarantee {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 12px;
  padding: 8px;
  border-radius: 8px;
  background: rgba(var(--accent-rgb), 0.06);
}

/* ── Plan ENTERPRISE ── dark premium, gold accents */
.plan-card.enterprise {
  background: linear-gradient(160deg, #1a1a2e 0%, #0f0f1e 50%, #1a1020 100%);
  border: 1px solid rgba(245, 158, 11, 0.3);
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.06);
}

.plan-enterprise-header {
  position: relative;
}

.plan-card.enterprise .plan-name {
  font-size: 24px;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.plan-card.enterprise .plan-amount {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.plan-card.enterprise .plan-divider {
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.3), transparent);
}

.plan-everything {
  font-size: 13px;
  font-weight: 600;
  color: #fbbf24;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.1);
}

.plan-features .check.star {
  color: #f59e0b;
}

.plan-btn.enterprise-btn {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #0a0a0a;
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.25);
}

.plan-btn.enterprise-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(245, 158, 11, 0.4);
}

/* ============================================
   MODULES OVERVIEW v2 — Differentiated layouts
   ============================================ */
.modules-overview {
  padding: 100px 0;
}

/* ── Layout ── */
.modules-grid-v2 {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mod-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ── Base card ── */
.mod-card {
  background: var(--bg-dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.mod-card:hover {
  transform: translateY(-4px);
}

.mod-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}

.mod-card p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.mod-icon-lg {
  font-size: 42px;
  margin-bottom: 16px;
}

.mod-features-compact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.mod-features-compact span {
  font-size: 12px;
  color: var(--text-gray-light);
  background: rgba(255,255,255,0.04);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.06);
}

.mod-cta-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-light);
  transition: var(--transition);
}

/* ═══════════════════════════════════
   MANAGER — Card hero grande horizontal
   ═══════════════════════════════════ */
.mod-manager {
  border-color: rgba(139, 92, 246, 0.25);
  background: linear-gradient(135deg, rgba(139,92,246,0.06) 0%, var(--bg-dark-2) 60%);
}

.mod-manager:hover {
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 8px 50px rgba(139, 92, 246, 0.15);
}

.mod-card-body {
  display: flex;
  gap: 40px;
  align-items: center;
}

.mod-card-content {
  flex: 1;
}

.mod-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #a78bfa;
  background: rgba(139,92,246,0.1);
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.mod-features-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.mod-features-inline span {
  font-size: 13px;
  color: var(--text-gray-light);
  background: rgba(139,92,246,0.06);
  padding: 6px 14px;
  border-radius: 10px;
  border: 1px solid rgba(139,92,246,0.15);
}

.mod-cta-btn {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  color: #fff;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition);
}

.mod-manager:hover .mod-cta-btn {
  box-shadow: 0 4px 20px rgba(124,58,237,0.4);
}

/* Mini dashboard visual */
.mod-card-visual {
  flex-shrink: 0;
  width: 280px;
}

.mod-mini-dashboard {
  background: #0d1117;
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 16px;
  padding: 20px;
  overflow: hidden;
}

.mod-mini-header {
  font-size: 11px;
  color: var(--text-gray);
  margin-bottom: 16px;
  display: flex;
  gap: 6px;
  align-items: center;
}

.mod-mini-header span {
  margin-left: 8px;
  font-weight: 600;
  color: var(--text-gray-light);
}

.mod-mini-stats {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.mod-mini-stat {
  flex: 1;
  text-align: center;
  background: rgba(139,92,246,0.08);
  border-radius: 10px;
  padding: 10px 6px;
}

.mod-stat-num {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: #a78bfa;
}

.mod-stat-label {
  font-size: 9px;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mod-mini-bar {
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  margin-bottom: 8px;
  overflow: hidden;
}

.mod-mini-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, #7c3aed, #a78bfa);
}

/* ═══════════════════════════════════
   MAPS — Card con acento lateral verde
   ═══════════════════════════════════ */
.mod-maps {
  padding-left: 36px;
}

.mod-maps:hover {
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 8px 40px rgba(16, 185, 129, 0.12);
}

.mod-card-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #10b981, #06b6d4);
  border-radius: 4px 0 0 4px;
}

.mod-maps h3 {
  color: #34d399;
}

/* Network visual */
.mod-visual-network {
  position: relative;
  height: 80px;
  margin-bottom: 16px;
}

.mod-node {
  position: absolute;
  font-size: 20px;
  animation: float 3s ease-in-out infinite;
}

.mod-node-1 { left: 10%; top: 0; animation-delay: 0s; }
.mod-node-2 { right: 10%; top: 0; animation-delay: 1s; }
.mod-node-3 { left: 40%; bottom: 0; animation-delay: 0.5s; }

.mod-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.mod-maps .mod-features-compact span {
  border-color: rgba(16,185,129,0.15);
  background: rgba(16,185,129,0.05);
}

/* ═══════════════════════════════════
   NETWORKING — Card estilo terminal
   ═══════════════════════════════════ */
.mod-networking {
  padding-top: 0;
}

.mod-networking:hover {
  border-color: rgba(6, 182, 212, 0.4);
  box-shadow: 0 8px 40px rgba(6, 182, 212, 0.12);
}

.mod-terminal-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 0;
  margin: 0 -28px 20px;
  padding: 12px 28px;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(6,182,212,0.15);
}

.mod-term-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mod-term-dot.red { background: #f87171; }
.mod-term-dot.yellow { background: #fbbf24; }
.mod-term-dot.green { background: #34d399; }

.mod-term-title {
  margin-left: 8px;
  font-size: 12px;
  font-family: 'Courier New', monospace;
  color: var(--text-gray);
}

.mod-networking h3 {
  color: #22d3ee;
}

.mod-terminal-output {
  background: rgba(0,0,0,0.25);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 16px;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  border: 1px solid rgba(6,182,212,0.1);
}

.mod-term-line {
  color: var(--text-gray);
  margin-bottom: 4px;
  line-height: 1.6;
}

.mod-term-prompt {
  color: #22d3ee;
  font-weight: 700;
  margin-right: 6px;
}

.mod-term-result {
  color: #34d399;
  padding-left: 16px;
}

.mod-networking .mod-features-compact span {
  border-color: rgba(6,182,212,0.15);
  background: rgba(6,182,212,0.05);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .mod-card-body {
    flex-direction: column;
    gap: 24px;
  }
  .mod-card-visual {
    width: 100%;
  }
  .mod-cards-row {
    grid-template-columns: 1fr;
  }
}

/* Keep old grid for compatibility */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.module-card {
  background: var(--bg-dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  cursor: pointer;
  transition: var(--transition);
}

.module-card:hover {
  border-color: rgba(var(--accent-rgb), 0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.module-card[data-mod="maps"]:hover {
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 8px 40px rgba(16, 185, 129, 0.15);
}
.module-card[data-mod="networking"]:hover {
  border-color: rgba(6, 182, 212, 0.4);
  box-shadow: 0 8px 40px rgba(6, 182, 212, 0.15);
}
.module-card[data-mod="manager"]:hover {
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 8px 40px rgba(139, 92, 246, 0.15);
}

.module-icon {
  font-size: 42px;
  margin-bottom: 20px;
}

.module-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.module-card p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.module-features-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.module-features-list span {
  font-size: 13px;
  color: var(--text-gray-light);
}

.module-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-light);
  transition: var(--transition);
}

.module-card:hover .module-cta {
  color: var(--accent);
}

.module-card[data-mod="maps"] .module-cta { color: #34d399; }
.module-card[data-mod="networking"] .module-cta { color: #22d3ee; }
.module-card[data-mod="manager"] .module-cta { color: #a78bfa; }

.module-card[data-mod="maps"] .module-icon { background: linear-gradient(135deg, rgba(16,185,129,0.12), rgba(6,182,212,0.08)); border-radius: 16px; width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; }
.module-card[data-mod="networking"] .module-icon { background: linear-gradient(135deg, rgba(6,182,212,0.12), rgba(59,130,246,0.08)); border-radius: 16px; width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; }
.module-card[data-mod="manager"] .module-icon { background: linear-gradient(135deg, rgba(139,92,246,0.12), rgba(236,72,153,0.08)); border-radius: 16px; width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-2) 50%, var(--bg-dark) 100%);
}

.cta-content {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.1), rgba(var(--accent-rgb), 0.03));
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.cta-content::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: radial-gradient(ellipse at center, rgba(var(--accent-rgb), 0.08), transparent 70%);
}

.cta-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
}

.cta-content p {
  font-size: 17px;
  color: var(--text-gray-light);
  margin-bottom: 32px;
  position: relative;
}

.cta-content .btn-primary {
  position: relative;
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 20px;
  overflow-y: auto;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: var(--bg-dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 680px;
  padding: 40px;
  position: relative;
  animation: modalIn 0.3s ease-out;
  margin: auto 0;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-gray);
  font-size: 28px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--text-white);
}

.modal-header {
  text-align: center;
  margin-bottom: 32px;
}

.modal-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.modal-header h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

.modal-header p {
  font-size: 14px;
  color: var(--text-gray);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-full {
  margin-bottom: 24px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-gray-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  background: var(--bg-dark);
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  color: var(--text-white);
  font-size: 14px;
  font-family: inherit;
  transition: var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.15);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group select option {
  background: var(--bg-dark);
  color: var(--text-white);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.form-notice {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-gray);
}

.btn-submit {
  min-width: 200px;
  justify-content: center;
}

.btn-text, .btn-loading {
  display: flex;
  align-items: center;
  gap: 8px;
}

.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Success State */
.demo-success {
  text-align: center;
  padding: 20px 0;
}

.success-icon {
  font-size: 64px;
  margin-bottom: 16px;
}

.demo-success h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.demo-success p {
  font-size: 15px;
  color: var(--text-gray-light);
  margin-bottom: 8px;
}

.success-detail {
  font-size: 13px;
  color: var(--text-gray);
  margin-bottom: 24px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 60px 0 30px;
  border-top: 1px solid var(--border-dark);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo .logo-text {
  font-size: 18px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-white);
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-gray);
  text-decoration: none;
  padding: 4px 0;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border-dark);
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-gray);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: var(--text-gray);
  text-decoration: none;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--text-gray-light);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-mockup {
    max-width: 400px;
  }

  .hero-title {
    font-size: 40px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plans-grid .plan-card:last-child {
    grid-column: span 2;
    max-width: 400px;
    justify-self: center;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-dark-2);
    border: none;
    border-radius: 0;
    border-bottom: 1px solid var(--border-dark);
    padding: 12px;
    z-index: 1001;
  }

  .nav-links.open {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .btn-demo {
    display: none;
  }

  .hero {
    padding: 90px 20px 40px;
    min-height: auto;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-stats {
    gap: 24px;
  }

  .stat-number {
    font-size: 22px;
  }

  .hero-scroll {
    display: none;
  }

  .section-title {
    font-size: 28px;
  }

  .features-grid,
  .modules-grid {
    grid-template-columns: 1fr;
  }

  .plans-grid {
    grid-template-columns: 1fr;
  }

  .plans-grid .plan-card:last-child {
    grid-column: span 1;
    max-width: none;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .modal-content {
    padding: 24px;
  }

  .form-footer {
    flex-direction: column;
  }

  .btn-submit {
    width: 100%;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .cta-content {
    padding: 40px 24px;
  }

  .cta-content h2 {
    font-size: 26px;
  }

  .billing-toggle {
    flex-wrap: wrap;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 26px;
  }

  .hero-mockup {
    max-width: 320px;
  }

  .plan-card {
    padding: 28px 24px;
  }

  .plan-amount {
    font-size: 34px;
  }
}
