/* ==========================================================================
   SUIZASOFT 2026 - HIGH-TECH & CYBER-ENTERPRISE STYLESHEET
   Tecnología · Conectividad · Infraestructura · Soluciones Críticas
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;700;800&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  /* Dark Tech Obsidian Base */
  --bg-dark-base: #030712;
  --bg-dark-surface: #070D1E;
  --bg-dark-card: rgba(10, 20, 42, 0.85);
  --bg-dark-card-hover: rgba(15, 29, 60, 0.95);
  --bg-dark-border: rgba(30, 58, 110, 0.5);
  
  /* Cyber Neons & Glowing Accents */
  --neon-cyan: #00F0FF;
  --neon-cyan-glow: rgba(0, 240, 255, 0.4);
  --neon-blue: #005BEA;
  --neon-blue-light: #3B82F6;
  --neon-green: #10B981;
  --neon-green-glow: rgba(16, 185, 129, 0.4);
  --neon-purple: #8B5CF6;
  --neon-purple-glow: rgba(139, 92, 246, 0.4);
  --neon-orange: #F59E0B;
  
  /* Text Shades */
  --text-white: #FFFFFF;
  --text-light: #F1F5F9;
  --text-muted: #94A3B8;
  --text-dim: #64748B;
  
  /* Borders & Shadows */
  --cyber-border: 1px solid rgba(0, 240, 255, 0.2);
  --cyber-border-active: 1px solid rgba(0, 240, 255, 0.7);
  --cyber-shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.6);
  --cyber-shadow-md: 0 10px 40px rgba(0, 0, 0, 0.8);
  --cyber-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.95);
  --glow-cyan: 0 0 30px rgba(0, 240, 255, 0.3);
  --glow-blue: 0 0 35px rgba(0, 91, 234, 0.4);
  --glow-green: 0 0 30px rgba(16, 185, 129, 0.3);
  
  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  background-color: #030712 !important;
  color-scheme: dark !important;
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #F1F5F9 !important;
  background-color: #030712 !important;
  line-height: 1.6;
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

section {
  overflow: hidden !important;
  position: relative;
  width: 100%;
}

/* ==========================================================================
   CYBER BACKGROUNDS & GRID OVERLAYS
   ========================================================================== */

.cyber-grid-bg {
  background-color: #030712 !important;
  background-image: 
    linear-gradient(rgba(0, 240, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.04) 1px, transparent 1px) !important;
  background-size: 40px 40px !important;
  background-position: center center !important;
}

.glow-mesh-radial {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  max-width: 100vw;
  overflow: hidden;
}

.glow-cyan-top {
  top: -80px;
  right: 5%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.15), transparent 70%);
}

.glow-blue-left {
  top: 25%;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 91, 234, 0.18), transparent 70%);
}

.glow-green-bottom {
  bottom: 5%;
  right: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15), transparent 70%);
}

/* ==========================================================================
   TYPOGRAPHY & HIGH-TECH ACCENTS
   ========================================================================== */

.font-mono-tech {
  font-family: 'JetBrains Mono', monospace !important;
}

.text-gradient-cyan {
  background: linear-gradient(135deg, #FFFFFF 0%, #00F0FF 50%, #005BEA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-neon {
  background: linear-gradient(90deg, #00F0FF 0%, #38BDF8 35%, #10B981 75%, #00FF88 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 9999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.35);
  color: var(--neon-cyan) !important;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
  max-width: 100%;
  word-break: break-word;
}

.tech-badge-green {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.4);
  color: #34D399 !important;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #10B981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: cyber-pulse 1.8s infinite;
  flex-shrink: 0;
}

@keyframes cyber-pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* ==========================================================================
   BUTTONS WITH NEON GLOW & SHIMMER
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.9375rem;
  font-weight: 800;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  position: relative;
  overflow: hidden;
  max-width: 100%;
  text-align: center;
}

.btn-primary-tech {
  background: linear-gradient(135deg, #005BEA 0%, #00BFEF 100%) !important;
  color: #FFFFFF !important;
  box-shadow: 0 8px 25px rgba(0, 91, 234, 0.45), inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

.btn-primary-tech:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 240, 255, 0.55), inset 0 1px 1px rgba(255, 255, 255, 0.6);
  filter: brightness(1.1);
}

.btn-outline-tech {
  background: rgba(10, 20, 42, 0.8) !important;
  color: #F1F5F9 !important;
  border: 1px solid rgba(0, 240, 255, 0.45) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn-outline-tech:hover {
  transform: translateY(-2px);
  background: rgba(0, 240, 255, 0.15) !important;
  border-color: var(--neon-cyan) !important;
  color: var(--neon-cyan) !important;
  box-shadow: var(--glow-cyan);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   NAVBAR & TOP PARTNER
   ========================================================================== */

.top-bar-partner {
  background: linear-gradient(90deg, #030712 0%, #071530 50%, #030712 100%) !important;
  border-bottom: 1px solid rgba(0, 240, 255, 0.15) !important;
  color: #94A3B8 !important;
  padding: 8px 0;
  font-size: 0.8125rem;
  width: 100%;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100% !important;
  max-width: 100vw !important;
  z-index: 990;
  background: rgba(3, 7, 18, 0.96) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 240, 255, 0.2) !important;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(3, 7, 18, 0.98) !important;
  border-bottom: 1px solid rgba(0, 240, 255, 0.35) !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.85);
}

.nav-link {
  color: #94A3B8 !important;
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  position: relative;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--neon-cyan) !important;
  background-color: rgba(0, 240, 255, 0.08);
}

.nav-link.active {
  color: var(--neon-cyan) !important;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--neon-cyan);
  box-shadow: 0 0 10px var(--neon-cyan);
  border-radius: 2px;
}

/* ==========================================================================
   LIVE SYSTEM TERMINAL (HERO)
   ========================================================================== */

.cyber-terminal {
  background: rgba(5, 11, 26, 0.95) !important;
  border: 1px solid rgba(0, 240, 255, 0.3) !important;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 91, 234, 0.2);
  overflow: hidden;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  width: 100%;
  max-width: 100%;
}

.terminal-header {
  background: rgba(10, 22, 48, 0.98) !important;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 240, 255, 0.2);
}

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

.t-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.t-dot-red { background: #EF4444; }
.t-dot-yellow { background: #F59E0B; }
.t-dot-green { background: #10B981; }

.terminal-body {
  padding: 16px;
  color: #E2E8F0 !important;
  line-height: 1.6;
  background: #050B1A !important;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.terminal-line {
  word-break: break-word;
  overflow-wrap: anywhere;
}

.terminal-cursor {
  display: inline-block;
  width: 7px;
  height: 14px;
  background: var(--neon-cyan);
  vertical-align: middle;
  animation: cursor-blink 1s step-end infinite;
}

@keyframes cursor-blink {
  50% { opacity: 0; }
}

/* ==========================================================================
   INTERACTIVE DASHBOARD MOCKUP
   ========================================================================== */

.dashboard-mockup-frame {
  background: rgba(7, 15, 34, 0.92) !important;
  border: 1px solid rgba(0, 240, 255, 0.25) !important;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), inset 0 1px 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  width: 100%;
}

.dash-tab-btn {
  padding: 8px 14px;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  color: #94A3B8 !important;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: normal;
  text-align: center;
}

.dash-tab-btn:hover {
  color: #F1F5F9 !important;
  background: rgba(255, 255, 255, 0.08);
}

.dash-tab-btn.active {
  color: var(--neon-cyan) !important;
  background: rgba(0, 240, 255, 0.12) !important;
  border-color: rgba(0, 240, 255, 0.4) !important;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.metric-tech-card {
  background: rgba(12, 24, 52, 0.75) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: var(--radius-md);
  padding: 16px;
  transition: all 0.25s ease;
  width: 100%;
}

.metric-tech-card:hover {
  border-color: rgba(0, 240, 255, 0.5) !important;
  transform: translateY(-2px);
  box-shadow: var(--glow-cyan);
}

/* ==========================================================================
   CYBER-GLASS CARDS & SOLUTIONS GRID
   ========================================================================== */

.cyber-card {
  background: rgba(10, 20, 42, 0.85) !important;
  border: 1px solid rgba(30, 58, 110, 0.5) !important;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--cyber-shadow-md);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  width: 100%;
}

.cyber-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-blue), var(--neon-purple));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cyber-card:hover {
  transform: translateY(-4px);
  background: rgba(15, 29, 60, 0.95) !important;
  border-color: rgba(0, 240, 255, 0.5) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.9), var(--glow-cyan);
}

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

.cyber-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  position: relative;
  flex-shrink: 0;
}

.icon-cyan-glow {
  background: rgba(0, 240, 255, 0.15) !important;
  color: var(--neon-cyan) !important;
  border: 1px solid rgba(0, 240, 255, 0.4) !important;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.25);
}

.icon-green-glow {
  background: rgba(16, 185, 129, 0.15) !important;
  color: #34D399 !important;
  border: 1px solid rgba(16, 185, 129, 0.4) !important;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.25);
}

.icon-purple-glow {
  background: rgba(139, 92, 246, 0.15) !important;
  color: #A78BFA !important;
  border: 1px solid rgba(139, 92, 246, 0.4) !important;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.25);
}

.icon-orange-glow {
  background: rgba(245, 158, 11, 0.15) !important;
  color: #FBBF24 !important;
  border: 1px solid rgba(245, 158, 11, 0.4) !important;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.25);
}

/* ==========================================================================
   AGRO PIPELINE / ARCHITECTURE STEPS
   ========================================================================== */

.agro-pipeline-step {
  background: rgba(10, 22, 45, 0.8) !important;
  border: 1px solid rgba(16, 185, 129, 0.25) !important;
  border-radius: var(--radius-md);
  padding: 18px;
  transition: all 0.25s ease;
  cursor: pointer;
  width: 100%;
}

.agro-pipeline-step:hover,
.agro-pipeline-step.active {
  border-color: var(--neon-green) !important;
  background: rgba(16, 185, 129, 0.15) !important;
  box-shadow: var(--glow-green);
  transform: translateY(-2px);
}

.step-badge-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8125rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--neon-green);
  color: #030712;
  margin-bottom: 10px;
}

/* ==========================================================================
   COTIZADOR HIGH-TECH
   ========================================================================== */

.quote-tech-card {
  background: rgba(9, 19, 41, 0.85) !important;
  border: 1.5px solid rgba(30, 58, 110, 0.5) !important;
  border-radius: var(--radius-md);
  padding: 18px;
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
  width: 100%;
}

.quote-tech-card:hover {
  border-color: rgba(0, 240, 255, 0.5) !important;
  background: rgba(14, 30, 64, 0.95) !important;
}

.quote-tech-card.selected {
  border-color: var(--neon-cyan) !important;
  background: rgba(0, 240, 255, 0.12) !important;
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.25);
}

.quote-tech-checkbox {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.quote-tech-card.selected .quote-tech-checkbox {
  background: var(--neon-cyan);
  border-color: var(--neon-cyan);
  color: #030712;
}

/* ==========================================================================
   FAQ ACCORDION (DARK TECH)
   ========================================================================== */

.faq-tech-item {
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: var(--radius-md);
  background: rgba(10, 20, 42, 0.7) !important;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.25s ease;
  backdrop-filter: blur(15px);
  width: 100%;
}

.faq-tech-item.active {
  border-color: rgba(0, 240, 255, 0.5) !important;
  background: rgba(12, 26, 56, 0.9) !important;
  box-shadow: var(--glow-cyan);
}

.faq-tech-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  font-weight: 700;
  font-size: 0.98rem;
  color: #F1F5F9 !important;
  cursor: pointer;
  user-select: none;
}

.faq-tech-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94A3B8 !important;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.faq-tech-item.active .faq-tech-icon {
  transform: rotate(180deg);
  background: var(--neon-cyan);
  border-color: var(--neon-cyan);
  color: #030712 !important;
}

.faq-tech-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 20px;
  color: #94A3B8 !important;
  line-height: 1.7;
  font-size: 0.9rem;
}

.faq-tech-item.active .faq-tech-answer {
  max-height: 400px;
  padding-bottom: 18px;
}

/* ==========================================================================
   FORM & INPUTS (DARK CYBER)
   ========================================================================== */

.form-control-tech {
  width: 100% !important;
  max-width: 100% !important;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
  background-color: rgba(6, 14, 32, 0.9) !important;
  color: #F1F5F9 !important;
  font-family: inherit;
  font-size: 0.9375rem;
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.form-control-tech:focus {
  border-color: var(--neon-cyan) !important;
  background-color: rgba(9, 20, 46, 0.98) !important;
  box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.2), var(--glow-cyan);
}

.form-control-tech::placeholder {
  color: #64748B !important;
}

/* ==========================================================================
   WHATSAPP TERMINAL WIDGET
   ========================================================================== */

.wa-floating-wrapper {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  max-width: calc(100vw - 36px);
}

.wa-popup-menu {
  display: none;
  background: rgba(7, 15, 34, 0.98) !important;
  border: 1px solid rgba(0, 240, 255, 0.35) !important;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.95), var(--glow-cyan);
  width: 300px;
  max-width: calc(100vw - 36px);
  overflow: hidden;
  margin-bottom: 12px;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  animation: slide-up-fade 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.wa-popup-menu.show {
  display: block;
}

@keyframes slide-up-fade {
  from { opacity: 0; transform: translateY(12px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.wa-header-tech {
  background: linear-gradient(135deg, #064E3B 0%, #047857 50%, #10B981 100%) !important;
  color: #FFFFFF !important;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(16, 185, 129, 0.3);
}

.wa-channel-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  color: #F1F5F9 !important;
  text-decoration: none;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.wa-channel-item:last-child {
  border-bottom: none;
}

.wa-channel-item:hover {
  background: rgba(0, 240, 255, 0.12) !important;
  color: var(--neon-cyan) !important;
}

.wa-channel-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.2) !important;
  border: 1px solid rgba(16, 185, 129, 0.4) !important;
  color: #10B981 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-main-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%) !important;
  color: #FFFFFF !important;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.5), var(--glow-green);
  transition: all 0.25s ease;
  margin-left: auto;
}

.wa-main-btn:hover {
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 16px 40px rgba(16, 185, 129, 0.7);
}

/* ==========================================================================
   MOBILE NAVIGATION DRAWER
   ========================================================================== */

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 7, 18, 0.9) !important;
  backdrop-filter: blur(8px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  width: 100vw;
  height: 100vh;
}

.mobile-nav-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 85%;
  max-width: 340px;
  background: #070E22 !important;
  border-left: 1px solid rgba(0, 240, 255, 0.25) !important;
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 20px;
  display: flex;
  flex-direction: column;
  box-shadow: -15px 0 50px rgba(0, 0, 0, 0.95);
}

.mobile-nav-backdrop.open .mobile-nav-drawer {
  transform: translateX(0);
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */

.toast-notification {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(7, 15, 34, 0.98) !important;
  color: #FFFFFF !important;
  padding: 14px 22px;
  border-radius: 9999px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.95), var(--glow-cyan);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.875rem;
  z-index: 1050;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(0, 240, 255, 0.5) !important;
  backdrop-filter: blur(20px);
  max-width: calc(100vw - 32px);
  text-align: center;
}

.toast-notification.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ==========================================================================
   RESPONSIVE OVERRIDES
   ========================================================================== */

@media (max-width: 640px) {
  .site-header {
    padding: 0;
  }
  .btn {
    width: 100%;
  }
  .cyber-card {
    padding: 20px;
  }
}
