/* ==========================================================================
   ZORIA - Consultora de Automatización y Soluciones Digitales
   High-End Luxury Dark Design System (Midnight Navy & Champagne Gold)
   ========================================================================== */

:root {
  /* Core Luxury Palette */
  --bg-primary: #040814;
  --bg-surface: #070F22;
  --bg-surface-dark: #03060E;
  --bg-card: rgba(10, 22, 48, 0.7);
  --bg-card-hover: rgba(15, 32, 68, 0.85);
  --bg-input: rgba(5, 12, 28, 0.85);

  /* Gold Metallic Gradients & Glows */
  --gold-primary: #D4AF37;
  --gold-light: #F7E5A9;
  --gold-vibrant: #E5BE58;
  --gold-dark: #9A7418;
  --gold-glow: rgba(212, 175, 55, 0.35);
  --gold-subtle: rgba(212, 175, 55, 0.12);
  --gold-border: rgba(212, 175, 55, 0.28);

  /* Cyber Midnight Accents */
  --blue-tech: #38BDF8;
  --blue-glow: rgba(56, 189, 248, 0.25);
  --navy-accent: #1E3A8A;

  /* Typography Colors */
  --text-pure: #FFFFFF;
  --text-main: #F1F5F9;
  --text-muted: #94A3B8;
  --text-dim: #64748B;

  /* Borders & Glassmorphism */
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(212, 175, 55, 0.4);
  --glass-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);

  /* Fonts & Radii */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 9999px;

  --anim-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --trans-fast: 0.2s var(--anim-ease);
  --trans-smooth: 0.35s var(--anim-ease);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 10% 20%, rgba(30, 58, 138, 0.35) 0%, transparent 45%),
    radial-gradient(circle at 90% 70%, rgba(212, 175, 55, 0.08) 0%, transparent 45%);
  background-size: 32px 32px, 100% 100%, 100% 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Ambient Glow Orbs */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
  z-index: 0;
}

.glow-1 {
  width: 500px;
  height: 500px;
  background: rgba(30, 58, 138, 0.3);
  top: 5%;
  left: -100px;
}

.glow-2 {
  width: 450px;
  height: 450px;
  background: rgba(212, 175, 55, 0.12);
  top: 35%;
  right: -80px;
}

.glow-3 {
  width: 600px;
  height: 600px;
  background: rgba(15, 23, 42, 0.8);
  bottom: 10%;
  left: 30%;
}

/* Container */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.faq-narrow-container {
  max-width: 860px;
}

.form-max-container {
  max-width: 1140px;
}

/* Typography Helpers */
.gradient-gold-text {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--gold-light) 40%, var(--gold-primary) 85%, #E5BE58 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-center {
  text-align: center;
}

.gold-icon {
  color: var(--gold-primary);
}

/* Section Common Headings */
.section {
  padding: 110px 0;
  position: relative;
}

.section-dark-surface {
  background: var(--bg-surface-dark);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 3.8rem;
}

.badge-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
  text-transform: uppercase;
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  padding: 0.35rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--text-pure);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.cta-spacing {
  margin-top: 3.5rem;
}

/* Button System */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: linear-gradient(135deg, #FDE68A 0%, var(--gold-primary) 60%, #B48A18 100%);
  color: #040814;
  font-weight: 700;
  padding: 0.85rem 1.8rem;
  border-radius: var(--r-full);
  box-shadow: 0 4px 20px var(--gold-glow);
  transition: var(--trans-smooth);
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.btn-gold:hover::before {
  left: 100%;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.55);
}

.btn-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: rgba(14, 30, 60, 0.7);
  color: var(--text-pure);
  font-weight: 600;
  padding: 0.85rem 1.7rem;
  border-radius: var(--r-full);
  border: 1px solid var(--gold-border);
  backdrop-filter: blur(12px);
  transition: var(--trans-smooth);
}

.btn-glass:hover {
  background: rgba(24, 48, 92, 0.9);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn-lg {
  padding: 1rem 2.2rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* Navbar */
.navbar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 1.5rem;
  pointer-events: none;
}

.navbar {
  pointer-events: auto;
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(6, 13, 30, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--r-full);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  padding: 0.4rem 1.4rem;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-brand {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.25));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--trans-fast);
}

.nav-link:hover {
  color: var(--gold-light);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-actions .btn-glass,
.nav-actions .btn-gold {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
}

/* 01. Hero Section */
.hero {
  padding-top: 170px;
  padding-bottom: 110px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-border);
  padding: 0.45rem 1.1rem;
  border-radius: var(--r-full);
  margin-bottom: 1.6rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-primary);
  box-shadow: 0 0 12px var(--gold-primary);
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 16px #FFF; }
  100% { transform: scale(0.9); opacity: 0.7; }
}

.badge-text {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--gold-light);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--text-pure);
  margin-bottom: 1.4rem;
}

.hero-description {
  font-size: 1.18rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2.2rem;
  max-width: 560px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin-bottom: 2.2rem;
}

.hero-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
}

.trust-pill i {
  color: var(--gold-primary);
}

/* 3D Dashboard Showcase Window */
.dashboard-window-3d {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--r-xl);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.75),
    0 0 45px rgba(212, 175, 55, 0.15),
    inset 0 1px 1px rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.6s var(--anim-ease);
}

.dashboard-window-3d:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg) translateY(-4px);
}

.window-glass-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.4rem;
  background: rgba(6, 14, 32, 0.8);
  border-bottom: 1px solid var(--glass-border);
}

.window-controls {
  display: flex;
  gap: 6px;
}

.control-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.control-dot.red { background: #EF4444; }
.control-dot.yellow { background: #F59E0B; }
.control-dot.green { background: #10B981; }

.window-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.window-title span {
  font-size: 0.7rem;
  color: var(--text-dim);
  font-weight: 500;
}

.window-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #34D399;
}

.status-indicator {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34D399;
  box-shadow: 0 0 8px #34D399;
}

.window-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

/* Metrics Row */
.metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.metric-card {
  background: rgba(6, 14, 32, 0.6);
  border: 1px solid var(--glass-border);
  padding: 0.85rem;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.metric-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.metric-icon.gold-icon {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
  border: 1px solid var(--gold-border);
}

.metric-icon.blue-icon {
  background: rgba(56, 189, 248, 0.12);
  color: var(--blue-tech);
  border: 1px solid rgba(56, 189, 248, 0.25);
}

.metric-icon.cyan-icon {
  background: rgba(16, 185, 129, 0.12);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.metric-info {
  display: flex;
  flex-direction: column;
}

.metric-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
}

.metric-number {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-pure);
  line-height: 1.2;
}

.metric-delta {
  font-size: 0.65rem;
  font-weight: 700;
}
.metric-delta.positive { color: #34D399; }
.metric-delta.neutral { color: var(--gold-light); }
.metric-delta.highlight { color: var(--blue-tech); }

/* Analytics Chart Box */
.analytics-showcase {
  background: rgba(4, 9, 22, 0.85);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  padding: 1rem 1.2rem;
}

.analytics-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.analytics-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-main);
}

.analytics-subtitle {
  font-size: 0.7rem;
  color: var(--text-dim);
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.3);
  padding: 0.25rem 0.6rem;
  border-radius: var(--r-full);
  font-size: 0.68rem;
  font-weight: 800;
  color: #34D399;
}

.pulse-mini {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34D399;
  box-shadow: 0 0 8px #34D399;
  animation: pulse-glow 1.5s infinite;
}

.chart-bars-container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 85px;
  padding: 0 0.5rem;
}

.chart-bar-group {
  flex: 1;
  margin: 0 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
  position: relative;
}

.bar-fill {
  width: 100%;
  max-width: 32px;
  background: rgba(30, 58, 138, 0.45);
  border-radius: 4px 4px 0 0;
  transition: all 0.3s;
}

.chart-bar-group.active-bar .bar-fill {
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold-primary) 100%);
  box-shadow: 0 0 16px var(--gold-glow);
  position: relative;
}

.bar-tooltip {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-primary);
  color: #040814;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  white-space: nowrap;
}

.bar-label {
  font-size: 0.68rem;
  color: var(--text-dim);
  margin-top: 6px;
}

.highlight-label {
  color: var(--gold-light);
  font-weight: 700;
}

/* AI Widget Footer */
.ai-assistant-badge {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.12) 0%, rgba(10, 22, 48, 0.6) 100%);
  border: 1px solid var(--gold-border);
  padding: 0.75rem 1rem;
  border-radius: var(--r-md);
}

.ai-spark-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold-primary);
  color: #040814;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  box-shadow: 0 0 12px var(--gold-glow);
}

.ai-text {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.ai-text strong {
  color: var(--gold-light);
  margin-right: 4px;
}

/* 02. Soluciones Grid */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.solution-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  transition: var(--trans-smooth);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.solution-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold-border);
  transform: translateY(-6px);
  box-shadow: var(--glass-shadow);
}

.solution-card:hover::before {
  opacity: 1;
}

.solution-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.4rem;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.card-category {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold-primary);
  margin-bottom: 0.4rem;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 0.8rem;
}

.card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.4rem;
  flex-grow: 1;
}

.card-footer-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-light);
}

.card-footer-tag i {
  color: var(--gold-primary);
}

/* 03. Propuesta de Valor */
.value-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}

.value-box {
  background: rgba(10, 22, 48, 0.55);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 2.2rem 1.6rem;
  position: relative;
  overflow: hidden;
  transition: var(--trans-smooth);
  backdrop-filter: blur(14px);
}

.value-box:hover {
  background: rgba(15, 32, 68, 0.75);
  border-color: var(--gold-border);
  transform: translateY(-5px);
  box-shadow: var(--glass-shadow);
}

.value-num-watermark {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(212, 175, 55, 0.12);
  line-height: 1;
  pointer-events: none;
}

.value-icon {
  font-size: 1.6rem;
  color: var(--gold-primary);
  margin-bottom: 1.2rem;
}

.value-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 0.6rem;
}

.value-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* 04. Timeline / Metodología */
.timeline-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.4rem;
  position: relative;
}

.timeline-line {
  position: absolute;
  top: 32px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.1) 0%, var(--gold-primary) 50%, rgba(212, 175, 55, 0.1) 100%);
  z-index: 0;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #060E22;
  border: 2px solid var(--gold-primary);
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px var(--gold-glow);
  transition: var(--trans-smooth);
}

.timeline-step:hover .step-circle {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
  color: #040814;
  transform: scale(1.1);
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  padding: 1.5rem 1.2rem;
  text-align: center;
  width: 100%;
  transition: var(--trans-smooth);
  backdrop-filter: blur(10px);
}

.timeline-step:hover .step-card {
  border-color: var(--gold-border);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* 05. Disponibilidad Multiplataforma */
.devices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.devices-checklist {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.check-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.check-row strong {
  display: block;
  font-size: 1rem;
  color: var(--text-pure);
  margin-bottom: 0.2rem;
}

.check-row span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Laptop Mockup Frame */
.laptop-mockup-frame {
  background: rgba(8, 18, 40, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--r-xl);
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.8),
    0 0 35px rgba(212, 175, 55, 0.15);
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.mockup-top-bar {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.2rem;
  background: rgba(4, 9, 20, 0.9);
  border-bottom: 1px solid var(--glass-border);
}

.dots-group {
  display: flex;
  gap: 6px;
}

.mockup-url-bar {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--gold-light);
  background: rgba(14, 30, 60, 0.8);
  padding: 0.25rem 0.8rem;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: monospace;
}

.mockup-screen-inner {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.screen-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.badge-user {
  font-size: 0.72rem;
  background: rgba(56, 189, 248, 0.12);
  color: var(--blue-tech);
  padding: 0.2rem 0.6rem;
  border-radius: var(--r-full);
  border: 1px solid rgba(56, 189, 248, 0.25);
}

.screen-grid-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.screen-tile {
  background: rgba(14, 30, 60, 0.6);
  border: 1px solid var(--glass-border);
  padding: 0.9rem;
  border-radius: var(--r-sm);
  text-align: center;
}

.screen-tile span {
  display: block;
  font-size: 0.7rem;
  color: var(--text-dim);
}

.screen-tile strong {
  font-size: 0.95rem;
  color: var(--gold-light);
}

.screen-mock-chart {
  height: 100px;
  background: linear-gradient(180deg, rgba(30, 58, 138, 0.4) 0%, rgba(4, 9, 20, 0.2) 100%);
  border: 1px dashed var(--glass-border);
  border-radius: var(--r-sm);
  position: relative;
}

/* 06. Tecnología */
.tech-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  margin-bottom: 2.8rem;
}

.tech-pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 2.2rem 1.6rem;
  transition: var(--trans-smooth);
  backdrop-filter: blur(12px);
}

.tech-pillar-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-5px);
  box-shadow: var(--glass-shadow);
}

.pillar-icon {
  font-size: 1.8rem;
  color: var(--gold-primary);
  margin-bottom: 1.2rem;
}

.pillar-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 0.6rem;
}

.pillar-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Tech Drawer Dropdown */
.tech-drawer-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.tech-drawer-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--r-full);
  background: rgba(14, 30, 60, 0.6);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--trans-smooth);
}

.tech-drawer-btn:hover {
  background: rgba(24, 48, 92, 0.85);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
}

.tech-drawer-btn .arrow-icon {
  transition: transform 0.3s ease;
}

.tech-drawer-btn.open .arrow-icon {
  transform: rotate(180deg);
}

.tech-drawer-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--anim-ease);
}

.tech-drawer-content.open {
  max-height: 300px;
  margin-top: 1.8rem;
}

.tech-badges-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.tech-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 1.15rem;
  background: rgba(10, 22, 48, 0.85);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-full);
  font-size: 0.85rem;
  color: var(--text-main);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.tech-badge-item i {
  color: var(--gold-primary);
}

/* 07. FAQ List */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.faq-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: var(--trans-smooth);
  backdrop-filter: blur(12px);
}

.faq-card.active {
  border-color: var(--gold-border);
  background: var(--bg-card-hover);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.faq-header-btn {
  width: 100%;
  padding: 1.5rem 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}

.faq-title {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text-pure);
  padding-right: 1.5rem;
}

.faq-header-btn:hover .faq-title {
  color: var(--gold-light);
}

.faq-chevron-wrap {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-border);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.35s var(--anim-ease), background 0.3s;
}

.faq-card.active .faq-chevron-wrap {
  transform: rotate(180deg);
  background: var(--gold-primary);
  color: #040814;
}

.faq-body-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--anim-ease), padding 0.4s var(--anim-ease);
  padding: 0 1.8rem;
}

.faq-card.active .faq-body-panel {
  max-height: 250px;
  padding: 0 1.8rem 1.6rem 1.8rem;
}

.faq-body-panel p {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* 08. Formulario de Diagnóstico / Reserva */
.booking-split-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3.8rem;
  align-items: start;
}

.booking-perks {
  margin-top: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.perk-card {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
}

.perk-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.perk-info strong {
  display: block;
  font-size: 1.05rem;
  color: var(--text-pure);
  margin-bottom: 0.25rem;
}

.perk-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.whatsapp-direct-card {
  margin-top: 2.4rem;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.3);
  padding: 1.2rem 1.4rem;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.whatsapp-direct-card i {
  font-size: 2rem;
  color: #25D366;
}

.whatsapp-direct-card span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.wa-link {
  font-size: 0.95rem;
  font-weight: 700;
  color: #25D366;
}

.wa-link:hover {
  text-decoration: underline;
}

/* Luxury Form Card Box */
.luxury-form-box {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--r-xl);
  padding: 2.5rem 2.2rem;
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.7),
    0 0 35px rgba(212, 175, 55, 0.12);
  backdrop-filter: blur(18px);
}

.form-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-border);
  padding: 0.35rem 0.9rem;
  border-radius: var(--r-full);
  margin-bottom: 1.6rem;
}

.form-input-group {
  margin-bottom: 1.25rem;
}

.form-two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-input-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.45rem;
}

.req {
  color: var(--gold-primary);
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon i {
  position: absolute;
  left: 1.1rem;
  color: var(--gold-primary);
  font-size: 0.95rem;
  pointer-events: none;
}

.input-with-icon input,
.input-with-icon select,
.input-with-icon textarea {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.8rem;
  background: var(--bg-input);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-sm);
  color: var(--text-pure);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--trans-fast);
}

.input-with-icon textarea {
  padding-top: 0.85rem;
}

.input-with-icon.textarea-wrap i {
  top: 1rem;
}

.input-with-icon input:focus,
.input-with-icon select:focus,
.input-with-icon textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px var(--gold-subtle);
  background: rgba(8, 18, 42, 0.95);
}

.input-with-icon select option {
  background: #070F22;
  color: #FFF;
}

.form-consent-box {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.6rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.form-consent-box input {
  margin-top: 3px;
  accent-color: var(--gold-primary);
  width: 16px;
  height: 16px;
}

.gold-link {
  color: var(--gold-light);
  text-decoration: underline;
}

.btn-submit-action {
  padding: 1rem 1.8rem;
  font-size: 1.05rem;
}

.booking-alert-box {
  margin-top: 1.4rem;
  padding: 1.1rem;
  border-radius: var(--r-sm);
  font-size: 0.92rem;
  line-height: 1.5;
}

.booking-alert-box.success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid #10B981;
  color: #34D399;
}

.booking-alert-box.error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid #EF4444;
  color: #F87171;
}

/* 09. Sobre Zoria Grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem;
  max-width: 960px;
  margin: 0 auto;
}

.about-vision-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: 2.5rem 2.2rem;
  text-align: center;
  backdrop-filter: blur(14px);
  transition: var(--trans-smooth);
}

.about-vision-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-5px);
  box-shadow: var(--glass-shadow);
}

.about-card-badge {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.4rem;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.about-card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 0.8rem;
}

.about-card-text {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* 10. Footer */
.footer {
  background: #02050C;
  border-top: 1px solid var(--glass-border);
  padding: 80px 0 35px;
  position: relative;
  z-index: 1;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1.3fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand-logo {
  height: 44px;
  width: auto;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.2));
}

.footer-summary {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 1.2rem;
}

.footer-security-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--gold-border);
  padding: 0.35rem 0.85rem;
  border-radius: var(--r-full);
}

.footer-col-heading {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 1.3rem;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav-list a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--trans-fast);
}

.footer-nav-list a:hover {
  color: var(--gold-light);
  transform: translateX(3px);
  display: inline-block;
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  font-size: 0.85rem;
  color: var(--text-dim);
}

.legal-links-group {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.legal-link {
  color: var(--text-muted);
  transition: var(--trans-fast);
}

.legal-link:hover {
  color: var(--gold-light);
}

.dot-separator {
  color: var(--text-dim);
}

/* Modal */
.modal-backdrop-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-card-box {
  background: var(--bg-surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-lg);
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 2.2rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
}

.modal-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 1rem;
}

.modal-card-header h3 {
  font-family: var(--font-heading);
  color: var(--gold-light);
}

.modal-close-btn {
  font-size: 1.8rem;
  color: var(--text-muted);
  line-height: 1;
}

.modal-card-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.modal-card-body h4 {
  margin: 1.2rem 0 0.4rem;
  color: var(--text-pure);
}

/* Responsive Media Queries */
@media (max-width: 1100px) {
  .hero-grid,
  .devices-grid,
  .booking-split-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .timeline-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .timeline-line {
    display: none;
  }

  .solutions-grid,
  .value-cards-grid,
  .tech-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links,
  .btn-action-demo {
    display: none;
  }

  .hero {
    padding-top: 130px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2.1rem;
  }

  .solutions-grid,
  .value-cards-grid,
  .tech-pillars-grid,
  .about-grid,
  .footer-main-grid {
    grid-template-columns: 1fr;
  }

  .form-two-cols,
  .metrics-row,
  .screen-grid-preview {
    grid-template-columns: 1fr;
  }

  .footer-bottom-bar {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
