/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap');
@import url('modal.css');

/* ============================================================
   JVH — Dark Navy Theme · Alineado con JVH ITSM
   Paleta: Navy oscuro + acentos púrpura / cyan / naranja
   ============================================================ */

:root {
  /* Core Palette */
  --bg-primary:   #0B1437;
  --bg-secondary: #111C44;
  --bg-tertiary:  #1B254B;
  --bg-hover:     #1E2D5B;
  --text-primary:   #FFFFFF;
  --text-secondary: #A3AED0;
  --text-muted:     #687CA8;
  --accent-brand:  #7551FF;
  --accent-orange: #F97316;
  --accent-green:  #01B574;
  --accent-red:    #EE5D50;
  --accent-cyan:   #22D3EE;
  --accent-blue:   #3B82F6;
  --border-color: rgba(255,255,255,0.08);
  --border-light: rgba(255,255,255,0.14);
  /* Legacy vars — compatibilidad con páginas existentes */
  --primary-color: #7551FF;
  --accent-color:  #22D3EE;
  --text-dark:  #FFFFFF;
  --text-light: #A3AED0;
  --bg-white: #0B1437;
  --bg-light: #111C44;
  /* Typography */
  --font-main:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  /* Misc */
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.3);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.45);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --transition: all 0.28s cubic-bezier(0.4,0,0.2,1);
  --gradient-hero: linear-gradient(135deg, #0B1437 0%, #111C44 100%);
}

/* ── Reset ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html {
  font-family: var(--font-main);
  scrollbar-width: thin;
  scrollbar-color: #1B254B #0B1437;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-main);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: #1B254B; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); }
a { text-decoration: none; color: inherit; transition: color 0.25s; }
ul { list-style: none; }
section[id] { scroll-margin-top: 80px; }

/* ── Utilities ── */
.hidden { display: none !important; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 80px 0; }
.text-center { text-align: center; }
.mb-2 { margin-bottom: 20px; }
.mb-4 { margin-bottom: 40px; }

/* ── Label / Badge ── */
.section-label {
  display: inline-block;
  background: rgba(117,81,255,0.12);
  color: var(--accent-brand);
  border: 1px solid rgba(117,81,255,0.28);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  font-family: var(--font-main);
}
.btn-primary {
  background: var(--accent-brand);
  color: #fff;
  box-shadow: 0 4px 18px rgba(117,81,255,0.35);
}
.btn-primary:hover {
  background: #8B6DFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(117,81,255,0.5);
  color: #fff;
  text-decoration: none;
}
.btn-orange {
  background: var(--accent-orange);
  color: #fff;
  box-shadow: 0 4px 18px rgba(249,115,22,0.35);
}
.btn-orange:hover {
  background: #EA6A0A;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(249,115,22,0.5);
  color: #fff;
  text-decoration: none;
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border-light);
  color: var(--text-secondary);
}
.btn-outline:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  text-decoration: none;
}
.btn-accent { background: var(--accent-cyan); color: #0B1437; font-weight: 700; }
.btn-accent:hover { background: #1CBFD6; color: #0B1437; text-decoration: none; }
.btn-lg { padding: 13px 28px; font-size: 0.95rem; }

/* ── Admin / upload compat ── */
.btn-upload-wrapper { position: relative; overflow: hidden; display: inline-block; }
.btn-upload-wrapper input[type=file] { font-size: 100px; position: absolute; left:0; top:0; opacity:0; cursor:pointer; }
.btn-purple { background: var(--accent-brand); color: #fff; border: none; }
.btn-orange-sm { background: var(--accent-orange); color: #fff; border: none; }

/* ════════════════════════════════════════════
   HEADER
════════════════════════════════════════════ */
header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  background: rgba(11,20,55,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
}

header > .container { max-width: 1100px; }

.navbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 64px;
  padding: 4px 0;
}

.logo { justify-self: start; z-index: 1001; }
.logo a { display: flex; align-items: center; gap: 10px; text-decoration: none; }

/* ── Logo texto puro ── */
.logo-mark {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 0;
  line-height: 1;
}
.logo-mark .lm-dot { color: var(--accent-brand); font-size: 1.6rem; line-height: 0.6; margin: 0 1px; }
.logo-mark .lm-tag {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-left: 8px;
  padding: 3px 7px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  line-height: 1;
}
nav { justify-self: center; }
.header-actions { justify-self: end; display: flex; gap: 10px; align-items: center; }

.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 7px;
  color: var(--text-secondary);
  cursor: pointer;
  z-index: 1001;
  transition: var(--transition);
}
.mobile-menu-btn:hover { border-color: var(--border-light); color: white; }

.nav-links { display: flex; gap: 2px; align-items: center; }
.nav-links a {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links a:hover { color: white; background: rgba(255,255,255,0.06); }
.nav-links a.active-link { color: white; background: rgba(255,255,255,0.08); }
.nav-links a.active-link::after { display: none; }

.nav-cta {
  background: var(--accent-brand) !important;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.875rem;
  transition: var(--transition);
}
.nav-cta:hover { background: #8B6DFF !important; color: #fff !important; text-decoration: none; }

.nav-itsm {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-secondary) !important;
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.875rem;
  transition: var(--transition);
}
.nav-itsm:hover { border-color: var(--accent-cyan); color: var(--accent-cyan) !important; text-decoration: none; }

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  background: var(--bg-primary);
  background-image:
    radial-gradient(ellipse 70% 55% at 50% -5%, rgba(117,81,255,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 40% 35% at 85% 65%, rgba(34,211,238,0.07) 0%, transparent 55%);
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
  color: white;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(117,81,255,0.12);
  border: 1px solid rgba(117,81,255,0.25);
  color: #A78BFA;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent-brand);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-text h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  color: white;
}
.gradient-text {
  background: linear-gradient(135deg, #A78BFA 0%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 460px;
  line-height: 1.75;
}

.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero visual — mini dashboard */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-dashboard {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 18px;
  width: 100%;
  box-shadow: 0 30px 70px rgba(0,0,0,0.55), 0 0 0 1px rgba(117,81,255,0.12);
}
.dashboard-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-color);
}
.dash-dot { width: 9px; height: 9px; border-radius: 50%; }
.dash-dot.red { background: #EE5D50; }
.dash-dot.yellow { background: #FFB547; }
.dash-dot.green { background: #01B574; }
.dashboard-title { font-size: 0.7rem; color: var(--text-muted); margin-left: auto; }

.dash-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 12px; }
.dash-kpi {
  background: var(--bg-tertiary);
  border-radius: var(--radius-sm);
  padding: 10px;
  text-align: center;
}
.dash-kpi .kpi-num { font-size: 1.3rem; font-weight: 700; color: white; line-height: 1; }
.dash-kpi .kpi-label { font-size: 0.6rem; color: var(--text-muted); margin-top: 3px; }
.dash-kpi.green .kpi-num { color: var(--accent-green); }
.dash-kpi.cyan  .kpi-num { color: var(--accent-cyan); }
.dash-kpi.purple .kpi-num { color: var(--accent-brand); }

.dash-chart-bar { background: var(--bg-tertiary); border-radius: var(--radius-sm); padding: 10px; margin-bottom: 8px; }
.dash-bar-label { font-size: 0.62rem; color: var(--text-muted); margin-bottom: 6px; }
.dash-bars { display: flex; align-items: flex-end; gap: 3px; height: 36px; }
.dash-bar { flex: 1; background: var(--bg-hover); border-radius: 3px 3px 0 0; }
.dash-bar.h90  { height: 90%; background: var(--accent-brand); }
.dash-bar.h60  { height: 60%; background: var(--accent-brand); opacity:.7; }
.dash-bar.h75  { height: 75%; background: var(--accent-brand); opacity:.85; }
.dash-bar.h45  { height: 45%; }
.dash-bar.h80  { height: 80%; background: var(--accent-cyan); opacity:.6; }
.dash-bar.h55  { height: 55%; }
.dash-bar.h70  { height: 70%; background: var(--accent-brand); opacity:.6; }

.dash-tickets { display: flex; flex-direction: column; gap: 5px; }
.dash-ticket {
  display: flex; align-items: center; gap: 7px;
  background: var(--bg-tertiary);
  border-radius: 6px;
  padding: 7px 9px;
}
.dash-ticket-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.dash-ticket-text { flex: 1; font-size: 0.62rem; color: var(--text-secondary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dash-ticket-badge { font-size: 0.58rem; padding: 2px 6px; border-radius: 4px; font-weight: 600; flex-shrink: 0; }
.badge-open { background: rgba(249,115,22,0.15); color: var(--accent-orange); }
.badge-progress { background: rgba(34,211,238,0.15); color: var(--accent-cyan); }
.badge-done { background: rgba(1,181,116,0.15); color: var(--accent-green); }

.floating-badge {
  position: absolute;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 9px 13px;
  display: flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 0.75rem; color: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  white-space: nowrap;
}
.badge-1 { top: -14px; left: -24px; }
.badge-2 { bottom: -12px; right: -16px; }

/* ════════════════════════════════════════════
   STATS BAR
════════════════════════════════════════════ */
.stats-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 26px 0;
}
.stats-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.stat-item { text-align: center; }
.stat-num {
  font-size: 1.55rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  font-family: var(--font-heading);
}
.stat-num span { color: var(--accent-cyan); }
.stat-label { font-size: 0.72rem; color: var(--text-muted); margin-top: 4px; letter-spacing: 0.3px; }
.stats-divider { width: 1px; height: 40px; background: var(--border-color); }

/* ════════════════════════════════════════════
   SECTION HEADER
════════════════════════════════════════════ */
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 {
  font-size: 2.1rem;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.section-header p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ════════════════════════════════════════════
   PRODUCTS — DOS FORMAS DE TRABAJAR CON JVH
════════════════════════════════════════════ */
.products-section { padding: 80px 0; background: var(--bg-primary); }
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.product-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.product-card.msp::before  { background: linear-gradient(90deg, var(--accent-brand), var(--accent-cyan)); }
.product-card.itsm::before { background: linear-gradient(90deg, var(--accent-orange), #FBBF24); }
.product-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.product-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.product-card.msp  .product-icon { background: rgba(117,81,255,0.14); color: var(--accent-brand); }
.product-card.itsm .product-icon { background: rgba(249,115,22,0.14); color: var(--accent-orange); }
.product-icon svg { width: 24px; height: 24px; }

.product-card h3 { font-size: 1.35rem; font-weight: 700; color: white; margin-bottom: 6px; }
.product-subtitle {
  font-size: 0.75rem; color: var(--accent-cyan); font-weight: 600;
  margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.5px;
}
.product-desc { color: var(--text-secondary); font-size: 0.875rem; line-height: 1.65; margin-bottom: 24px; }

.product-features { margin-bottom: 28px; }
.product-features li {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0;
  color: var(--text-secondary); font-size: 0.85rem;
  border-bottom: 1px solid var(--border-color);
}
.product-features li:last-child { border-bottom: none; }
.check-icon {
  width: 16px; height: 16px; flex-shrink: 0;
  background: rgba(1,181,116,0.12);
  border: 1.5px solid var(--accent-green);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%2301B574' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 9px;
}

/* ════════════════════════════════════════════
   MSP SERVICES PILLARS
════════════════════════════════════════════ */
.services-section { padding: 80px 0; background: var(--bg-secondary); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}
.service-pillar {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: var(--transition);
}
.service-pillar:hover {
  border-color: rgba(117,81,255,0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}
.pillar-icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: rgba(117,81,255,0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  color: var(--accent-brand);
}
.pillar-icon svg { width: 20px; height: 20px; }
.service-pillar h3 { font-size: 0.95rem; font-weight: 700; color: white; margin-bottom: 6px; }
.service-pillar p  { font-size: 0.8rem; color: var(--text-muted); line-height: 1.55; }

/* ════════════════════════════════════════════
   ITSM PLATFORM SECTION
════════════════════════════════════════════ */
.platform-section {
  padding: 80px 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}
.platform-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(117,81,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative; z-index: 1;
}
.platform-text h2 {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.platform-text > p { color: var(--text-secondary); line-height: 1.7; margin-bottom: 28px; font-size: 0.9rem; }

.platform-modules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 28px;
}
.module-tag {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 0.78rem; color: var(--text-secondary);
  transition: var(--transition);
}
.module-tag:hover { border-color: rgba(117,81,255,0.3); color: white; }
.module-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-brand); flex-shrink: 0; }

.platform-apps { display: flex; gap: 10px; flex-wrap: wrap; }
.app-tag {
  display: flex; align-items: center; gap: 6px;
  background: rgba(34,211,238,0.08);
  border: 1px solid rgba(34,211,238,0.2);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 0.75rem; color: var(--accent-cyan);
  font-weight: 600;
}

.platform-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.platform-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  transition: var(--transition);
}
.platform-card:hover { border-color: var(--border-light); }
.platform-card.span2 {
  grid-column: span 2;
  display: flex; align-items: center; gap: 14px;
  text-align: left;
}
.platform-card .pc-icon { font-size: 1.6rem; margin-bottom: 8px; flex-shrink: 0; }
.platform-card h4 { font-size: 0.82rem; font-weight: 600; color: white; margin-bottom: 4px; }
.platform-card p  { font-size: 0.7rem; color: var(--text-muted); line-height: 1.5; }

/* ════════════════════════════════════════════
   COMPARISON TABLE
════════════════════════════════════════════ */
.comparison-section { padding: 80px 0; background: var(--bg-secondary); }
.comparison-table {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  max-width: 820px;
  margin: 0 auto;
}
.comparison-header {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  padding: 14px 24px;
  background: var(--bg-hover);
  border-bottom: 1px solid var(--border-color);
}
.comparison-header span {
  font-size: 0.75rem; font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.5px;
}
.comparison-header span:nth-child(2) { text-align: center; }
.comparison-header span:last-child   { text-align: center; color: var(--accent-cyan); }

.comparison-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  padding: 13px 24px;
  border-top: 1px solid var(--border-color);
  align-items: center;
  transition: background 0.15s;
}
.comparison-row:hover { background: rgba(255,255,255,0.02); }
.comparison-row .row-label { font-size: 0.85rem; color: var(--text-secondary); }
.comparison-row .no  { text-align: center; color: var(--text-muted); font-size: 0.82rem; }
.comparison-row .yes { text-align: center; color: var(--accent-green); font-size: 0.82rem; font-weight: 600; }

/* ════════════════════════════════════════════
   CONTACT SECTION
════════════════════════════════════════════ */
.contact-section { padding: 80px 0; background: var(--bg-primary); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 {
  font-size: 1.9rem; font-weight: 800; color: white; margin-bottom: 14px; letter-spacing: -0.3px;
}
.contact-info > p { color: var(--text-secondary); line-height: 1.7; margin-bottom: 30px; font-size: 0.9rem; }
.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-detail-item {
  display: flex; align-items: center; gap: 12px;
  color: var(--text-secondary); font-size: 0.875rem;
}
.cd-icon {
  width: 36px; height: 36px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-cyan); flex-shrink: 0;
}
.cd-icon svg { width: 16px; height: 16px; }

.contact-form {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 36px;
}
.contact-form h3 { font-size: 1.1rem; font-weight: 700; color: white; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 0.75rem; font-weight: 600; color: var(--text-muted);
  margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 10px 13px;
  color: white; font-size: 0.875rem;
  font-family: var(--font-main);
  transition: var(--transition); outline: none;
  color-scheme: dark;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-brand);
  box-shadow: 0 0 0 3px rgba(117,81,255,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group select option { background: var(--bg-secondary); }
.form-submit {
  width: 100%;
  background: var(--accent-brand);
  color: white; border: none;
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  font-size: 0.9rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
  font-family: var(--font-main);
  margin-top: 4px;
}
.form-submit:hover { background: #8B6DFF; transform: translateY(-1px); }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
#main-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 50px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-col p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 2;
  display: flex; align-items: center; gap: 8px;
}
.footer-col a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent-cyan); }
.footer-col ul li a { display: block; padding: 4px 0; }
.footer-col ul li a:hover { color: var(--accent-cyan); }
.footer-col svg, .footer-col i[data-lucide] { width: 15px; height: 15px; flex-shrink: 0; }

.social-icons { display: flex; gap: 8px; margin-top: 16px; }
.social-link {
  width: 32px; height: 32px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.social-link:hover { border-color: var(--accent-cyan); color: var(--accent-cyan); }
.social-link svg, .social-link i { width: 14px; height: 14px; }

.security-badge {
  display: flex; align-items: center; gap: 6px;
  margin-top: 14px; font-size: 0.75rem; color: var(--accent-green);
}
.security-badge svg, .security-badge i { width: 13px; height: 13px; }

.copyright {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  text-align: center;
}
.copyright p { color: var(--text-muted); font-size: 0.75rem; }

/* ════════════════════════════════════════════
   MODAL OVERRIDES (dark)
════════════════════════════════════════════ */
.modal { background-color: rgba(0,0,0,0.7); }
.modal-content {
  background-color: var(--bg-secondary) !important;
  border: 1px solid var(--border-color);
  color: white;
}
.modal-content h2, .modal-content h3, .modal-content label { color: var(--text-secondary); }
.modal-content input,
.modal-content select,
.modal-content textarea {
  background: var(--bg-tertiary) !important;
  border-color: var(--border-color) !important;
  color: white !important;
  color-scheme: dark;
}
.close-modal { color: var(--text-muted); }
.close-modal:hover { color: white; }

/* ════════════════════════════════════════════
   MOBILE RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-text h1 { font-size: 2.7rem; }
  .platform-grid { grid-template-columns: 1fr; gap: 40px; }
  .platform-visual { display: none; }
}

@media (max-width: 768px) {
  .mobile-menu-btn { display: flex; }
  .navbar { grid-template-columns: auto auto; }
  .header-actions { display: none; }

  nav {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    z-index: 999;
    padding: 16px 24px 20px;
    justify-self: stretch;
  }
  nav.mobile-open { display: block; }
  .nav-links { flex-direction: column; gap: 2px; }
  .nav-links a { padding: 10px 14px; width: 100%; font-size: 0.95rem; }

  .hero { padding: 100px 0 60px; }
  .hero-container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-text h1 { font-size: 2rem; letter-spacing: -0.5px; }
  .hero-text p { max-width: 100%; }

  .stats-divider { display: none; }
  .stats-grid { gap: 16px; justify-content: center; }

  .products-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .platform-modules { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }

  .comparison-header span:nth-child(2),
  .comparison-row .no { display: none; }
  .comparison-header { grid-template-columns: 2fr 1fr; }
  .comparison-row    { grid-template-columns: 2fr 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .section-header h2 { font-size: 1.65rem; }
  .section-padding { padding: 52px 0; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 1.75rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .container { padding: 0 18px; }
  .contact-form { padding: 24px 20px; }
}
