/* ============================================
   IA BOT PARA EMPRESAS
   Tema: Purpura Oscuro + Neon Cian
   Estructura: Glassmorphism + Diagonal
   ============================================ */

:root {
  --purple-900: #0a0514;
  --purple-800: #120824;
  --purple-700: #1e0f3c;
  --purple-600: #2d1659;
  --purple-500: #4a2d8a;
  --purple-400: #6b4fbf;
  --purple-300: #9b7ee8;
  --cyan: #00f0ff;
  --cyan-dim: rgba(0, 240, 255, 0.12);
  --cyan-glow: 0 0 20px rgba(0, 240, 255, 0.3);
  --pink: #ff2d78;
  --text: #e8e4f0;
  --text-dim: #9d94b0;
  --text-muted: #6b6180;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-hover: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-sm: 10px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w: 1140px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--purple-900);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--cyan); text-decoration: none; transition: var(--transition); }
a:hover { color: #fff; text-shadow: 0 0 10px var(--cyan); }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* ========== ANIMATED BACKGROUND ========== */
.nebula {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.nebula::before,
.nebula::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  animation: nebulaFloat 12s ease-in-out infinite;
}

.nebula::before {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--purple-500), transparent 70%);
  top: -10%; right: -5%;
  animation-delay: 0s;
}

.nebula::after {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.2), transparent 70%);
  bottom: -10%; left: -5%;
  animation-delay: -6s;
  animation-duration: 15s;
}

@keyframes nebulaFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-30px, 20px) scale(1.05); }
  66% { transform: translate(20px, -15px) scale(0.97); }
}

/* ========== PARTICLES CANVAS ========== */
#particles-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(10, 5, 20, 0.85);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
}

.logo-icon {
  width: 40px; height: 40px;
  background: var(--cyan);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--cyan-glow);
}

.nav { display: flex; align-items: center; gap: 36px; }

.nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dim);
  position: relative;
  padding: 4px 0;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--cyan);
  box-shadow: var(--cyan-glow);
  transition: width 0.3s ease;
}

.nav a:hover { color: #fff; }
.nav a:hover::after { width: 100%; }

.nav-cta {
  background: var(--cyan);
  color: var(--purple-900) !important;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.82rem;
  box-shadow: var(--cyan-glow);
}

.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: #fff;
  color: var(--purple-900) !important;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  z-index: 2;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cyan-dim);
  border: 1px solid rgba(0, 240, 255, 0.25);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-badge .pulse {
  width: 8px; height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--cyan);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.hero h1 {
  font-size: 3.6rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero h1 span {
  background: var(--cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-dim);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-cyan {
  background: var(--cyan);
  color: var(--purple-900);
  box-shadow: var(--cyan-glow);
}

.btn-cyan:hover {
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
  transform: translateY(-2px);
  color: var(--purple-900);
}

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

.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: var(--cyan-dim);
}

/* Hero visual - glass cards */
.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
}

.glass-card {
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}

.glass-card:hover {
  background: var(--glass-hover);
  border-color: rgba(0, 240, 255, 0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.glass-card .gc-icon {
  width: 48px; height: 48px;
  background: var(--cyan);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
  box-shadow: var(--cyan-glow);
}

.glass-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.glass-card p {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ========== DIAGONAL SECTIONS ========== */
.section {
  position: relative;
  padding: 100px 0;
  z-index: 2;
}

.diagonal-top {
  position: absolute;
  top: -1px; left: 0;
  width: 100%; height: 80px;
  background: var(--purple-900);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
}

.diagonal-bot {
  position: absolute;
  bottom: -1px; left: 0;
  width: 100%; height: 80px;
  background: var(--purple-900);
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
}

.section-alt { background: var(--purple-800); }

.sheader {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 60px;
}

.stag {
  display: inline-block;
  background: var(--cyan-dim);
  color: var(--cyan);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.sheader h2 {
  font-size: 2.6rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -1px;
}

.sheader p {
  font-size: 1.05rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ========== CAPABILITIES GRID ========== */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cap-card {
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.cap-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--cyan);
  box-shadow: var(--cyan-glow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.cap-card:hover {
  background: var(--glass-hover);
  border-color: rgba(0, 240, 255, 0.2);
  transform: translateY(-8px);
}

.cap-card:hover::before { transform: scaleX(1); }

.cap-icon {
  width: 60px; height: 60px;
  background: var(--purple-700);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 22px;
  transition: var(--transition);
}

.cap-card:hover .cap-icon {
  background: rgba(0, 240, 255, 0.1);
  border-color: rgba(0, 240, 255, 0.3);
}

.cap-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.cap-card p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.65;
}

.cap-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }

.cap-tag {
  background: var(--purple-700);
  color: var(--purple-300);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
}

/* ========== FEATURES ROW ========== */
.feat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feat-item {
  display: flex;
  gap: 18px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}

.feat-item:hover {
  background: var(--glass-hover);
  border-color: rgba(0, 240, 255, 0.15);
}

.feat-icon {
  width: 48px; height: 48px;
  min-width: 48px;
  background: var(--purple-700);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.feat-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.feat-item p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ========== HOW IT WORKS - STEPS ========== */
.steps-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step-box {
  text-align: center;
  padding: 32px 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
}

.step-box:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 240, 255, 0.2);
}

.step-num {
  width: 48px; height: 48px;
  background: var(--cyan);
  color: var(--purple-900);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  margin: 0 auto 18px;
  box-shadow: var(--cyan-glow);
}

.step-box h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.step-box p {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.55;
}

/* ========== RESPONSABLE SECTION ========== */
.about-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-info h2 {
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.15;
}

.about-info > p {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 28px;
}

.r-card {
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.r-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--glass-border);
}

.ri {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.ri:last-child { margin-bottom: 0; }

.ri-icon {
  width: 36px; height: 36px;
  min-width: 36px;
  background: var(--purple-700);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  margin-top: 2px;
}

.ri-lbl {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ri-val {
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 500;
}

.warn-box {
  margin-top: 18px;
  background: rgba(255, 193, 7, 0.06);
  border: 1px solid rgba(255, 193, 7, 0.2);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.warn-box span { font-size: 1.1rem; margin-top: 2px; }

.warn-box p {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ========== STATS ========== */
.stats-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-box {
  text-align: center;
  padding: 28px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.stat-box:hover {
  border-color: rgba(0, 240, 255, 0.2);
  transform: translateY(-4px);
}

.stat-box .sn {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
  text-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.stat-box .sl {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 8px;
}

/* ========== CTA ========== */
.cta-area {
  position: relative;
  padding: 100px 0;
  z-index: 2;
  overflow: hidden;
}

.cta-area::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.06), transparent 70%);
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.cta-inner h2 {
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.cta-inner > p {
  font-size: 1.1rem;
  color: var(--text-dim);
  margin-bottom: 36px;
  line-height: 1.7;
}

.cta-grid-sm {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.cta-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}

.cta-item:hover {
  border-color: rgba(0, 240, 255, 0.2);
  transform: translateY(-4px);
}

.cta-item .ci {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.cta-item h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.cta-item p {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin: 0;
}

/* ========== FOOTER ========== */
.footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--glass-border);
  padding: 50px 0 0;
  background: rgba(10, 5, 20, 0.5);
}

.f-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}

.f-brand .logo { margin-bottom: 14px; }

.f-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.f-col h4 {
  font-size: 0.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.f-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: var(--transition);
}

.f-col a:hover { color: var(--cyan); }

.f-contact .fc {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.f-contact .fc span { margin-top: 2px; }

.f-bot {
  border-top: 1px solid var(--glass-border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.f-bot p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ========== ADMIN PANEL ========== */
.admin-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2500;
  display: none;
}

.admin-overlay.active { display: block; }

.admin-panel {
  position: fixed;
  top: 0; right: -440px;
  width: 420px;
  height: 100vh;
  background: var(--purple-800);
  border-left: 1px solid var(--glass-border);
  z-index: 3000;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
}

.admin-panel.active { right: 0; }

.ap-h {
  padding: 28px;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ap-h h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.btn-x {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px;
  transition: var(--transition);
}

.btn-x:hover { color: #fff; }

.ap-b { padding: 28px; }

.ap-g { margin-bottom: 24px; }

.ap-g label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.ap-g input[type="text"] {
  width: 100%;
  padding: 12px 14px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.9rem;
  transition: var(--transition);
}

.ap-g input[type="text"]:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.1);
}

.t-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.t-switch {
  position: relative;
  width: 50px; height: 26px;
  cursor: pointer;
}

.t-switch input { opacity: 0; width: 0; height: 0; }

.t-slider {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--purple-700);
  border-radius: 26px;
  transition: 0.3s;
}

.t-slider::before {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  left: 3px; bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s;
}

.t-switch input:checked + .t-slider {
  background: var(--cyan);
}

.t-switch input:checked + .t-slider::before {
  transform: translateX(24px);
  background: var(--purple-900);
}

.admin-status {
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}

.admin-status.ok {
  background: rgba(0, 240, 255, 0.1);
  color: var(--cyan);
  border: 1px solid rgba(0, 240, 255, 0.25);
}

.admin-status.off {
  background: var(--glass);
  color: var(--text-muted);
  border: 1px solid var(--glass-border);
}

.ap-info {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 18px;
  margin-bottom: 24px;
}

.ap-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  line-height: 1.5;
}

.ap-info p:last-child { margin-bottom: 0; }

.ap-info code {
  background: var(--purple-700);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.76rem;
  color: var(--cyan);
}

.btn-save {
  width: 100%;
  padding: 14px;
  background: var(--cyan);
  color: var(--purple-900);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
}

.btn-save:hover {
  background: #fff;
  box-shadow: var(--cyan-glow);
  transform: translateY(-1px);
}

/* ========== LEGAL PAGES ========== */
.legal-page {
  padding: 140px 0 80px;
  min-height: 100vh;
  position: relative;
  z-index: 2;
}

.legal-head {
  text-align: center;
  margin-bottom: 50px;
}

.legal-head h1 {
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
}

.legal-head p { font-size: 1rem; color: var(--text-muted); }

.legal-body { max-width: 820px; margin: 0 auto; }

.legal-block { margin-bottom: 36px; }

.legal-block h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 12px;
}

.legal-block p {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 10px;
}

.legal-block ul { margin: 12px 0 12px 22px; }

.legal-block li {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 6px;
}

.warn-legal {
  background: rgba(255, 193, 7, 0.05);
  border: 1px solid rgba(255, 193, 7, 0.15);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 30px 0;
}

.warn-legal p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin: 0;
}

.r-info {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 30px;
}

.r-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 14px;
}

.r-info p {
  font-size: 0.88rem;
  color: var(--text-dim);
  margin-bottom: 6px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .hero h1 { font-size: 2.8rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-wrap { grid-template-columns: repeat(2, 1fr); }
  .f-grid { grid-template-columns: 1fr 1fr; }
  .about-flex { grid-template-columns: 1fr; gap: 40px; }
  .stats-wrap { grid-template-columns: repeat(2, 1fr); }
  .cta-grid-sm { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .hero { padding: 120px 0 80px; min-height: auto; }
  .hero h1 { font-size: 2.2rem; }
  .hero-visual { order: -1; }
  .cap-grid { grid-template-columns: 1fr; }
  .feat-row { grid-template-columns: 1fr; }
  .steps-wrap { grid-template-columns: 1fr; }
  .stats-wrap { grid-template-columns: 1fr 1fr; }
  .sheader h2 { font-size: 2rem; }
  .f-grid { grid-template-columns: 1fr; gap: 30px; }
  .admin-panel { width: 100%; right: -110%; }
  .cta-inner h2 { font-size: 2rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .section { padding: 70px 0; }
  .hero-visual { grid-template-columns: 1fr; }
  .stats-wrap { grid-template-columns: 1fr; }
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--purple-900); }
::-webkit-scrollbar-thumb { background: var(--purple-600); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--purple-500); }

/* ========== SELECTION ========== */
::selection {
  background: var(--cyan);
  color: var(--purple-900);
}
