/*
================================================================
   ConTecto - Central Style Sheet (index.css)
   UI/UX Core Design System - Blueprint & Engineering Schematic Theme
   Elite Awwwards-Level Precision Layout & Tech Aesthetics
================================================================
*/

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

/* --- DESIGN TOKENS --- */
:root {
  /* Brand Palette (Logo Accent: #FFD600) */
  --color-primary: #FFD600;
  --color-primary-rgb: 255, 214, 0;
  --color-primary-hover: #FFE21A;
  --color-primary-active: #CCAB00;
  
  /* Technical Blueprint Neutral Palette (Deep Navy-Charcoal) */
  --color-bg: #050c21;
  --color-bg-rgb: 5, 12, 33;
  
  --color-surface-lvl1: #0e1837;      /* Main engineering panels */
  --color-surface-lvl2: #14234e;      /* Inner cards, input surfaces */
  --color-surface-lvl3: #1c2f68;      /* Hover states on technical surfaces */
  
  /* Text Palette */
  --color-text-primary: #ffffff;
  --color-text-secondary: #e2e8f0;
  --color-text-muted: #94a3b8;
  --color-text-inverse: #050c21;
  
  /* Feedback Colors */
  --color-success: #10b981;
  --color-error: #ef4444;
  
  /* Blueprint Grid Specifications */
  --blueprint-grid-major: rgba(0, 229, 255, 0.12); /* Electric Cyan major grid lines */
  --blueprint-grid-minor: rgba(255, 255, 255, 0.045); /* Ultra-fine white grid lines */
  --blueprint-grid-border: rgba(0, 229, 255, 0.12);
  
  /* Electric Glow Shadows (Yellow Neon) */
  --glow-shadow-primary: 0 0 25px rgba(255, 214, 0, 0.28);
  --glow-shadow-intense: 0 0 35px rgba(255, 214, 0, 0.65), 0 0 15px rgba(255, 214, 0, 0.3);
  --glass-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  
  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing Scale (rem) */
  --space-xs: 0.25rem;  /* 4px */
  --space-sm: 0.5rem;   /* 8px */
  --space-md: 1rem;     /* 16px */
  --space-lg: 1.5rem;   /* 24px */
  --space-xl: 2.5rem;   /* 40px */
  --space-xxl: 4rem;    /* 64px */
  
  /* Border Radius (Technical: Sharp & Chamfered Angles preferred over large curves) */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 6px;
  --radius-xl: 12px;
  --radius-full: 9999px;
  
  /* Transitions (Snappy & Mechanical) */
  --transition-fast: 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-normal: 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- MODERN RESET --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  line-height: 1.8;
  letter-spacing: -0.01em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
  
  /* Blueprint Grid background on the whole layout */
  background-image: 
    linear-gradient(to right, var(--blueprint-grid-major) 1px, transparent 1px),
    linear-gradient(to bottom, var(--blueprint-grid-major) 1px, transparent 1px),
    linear-gradient(to right, var(--blueprint-grid-minor) 1px, transparent 1px),
    linear-gradient(to bottom, var(--blueprint-grid-minor) 1px, transparent 1px);
  background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
  background-position: center top;
}

/* Fine drafting noise overlay */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0.015;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* --- SCALED TYPOGRAPHY (Outfit & Inter) --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

/* Hero Main Title */
h1 {
  font-size: clamp(3rem, 7.5vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

/* Section Title */
h2 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

/* Intermediate Titles */
h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

p {
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img, picture, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
}

button {
  cursor: pointer;
}

/* --- ACCENT BLUR EFFECTS (ELECTRICAL DISCHARGE) --- */
.bg-glow {
  position: absolute;
  width: clamp(300px, 45vw, 650px);
  height: clamp(300px, 45vw, 650px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--color-primary-rgb), 0.07) 0%, rgba(var(--color-primary-rgb), 0) 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: -1;
}

/* --- LAYOUT SYSTEM --- */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
  max-width: 1280px;
  position: relative;
  z-index: 2;
  
  /* Technical vertical axis guidelines */
  border-left: 1px dashed rgba(0, 229, 255, 0.12);
  border-right: 1px dashed rgba(0, 229, 255, 0.12);
}

.section {
  padding-top: clamp(var(--space-xl), 8vw, var(--space-xxl));
  padding-bottom: clamp(var(--space-xl), 8vw, var(--space-xxl));
  position: relative;
  overflow: hidden;
  
  /* Inter-section technical dividing lines */
  border-bottom: 1px solid var(--blueprint-grid-border);
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(var(--color-primary-rgb), 0.15) 15%, 
    rgba(var(--color-primary-rgb), 0.15) 85%, 
    transparent
  );
}

/* Flexbox utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
.gap-xs { gap: var(--space-xs); }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

/* CSS Grid */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 640px) {
  .grid-2-sm { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-sidebar { grid-template-columns: 280px 1fr; }
}

/* --- SCHEMATIC GLASSMORPHIC CARDS --- */
.glass-card {
  background: rgba(15, 18, 26, 0.7);
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  border: 1px solid var(--blueprint-grid-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: visible; /* Required to show corner node crosshairs */
  transition: transform var(--transition-normal), 
              border-color var(--transition-normal), 
              box-shadow var(--transition-normal);
}

/* Laser sweep scan line */
.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 50%, rgba(var(--color-primary-rgb), 0) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
  transition: background var(--transition-normal);
}

/* Electric Node Corner crosshairs / L-Brackets */
.glass-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  pointer-events: none;
  z-index: 5;
  background-image:
    /* Top-left L-bracket */
    linear-gradient(to right, var(--color-primary) 10px, transparent 10px),
    linear-gradient(to bottom, var(--color-primary) 10px, transparent 10px),
    /* Top-right L-bracket */
    linear-gradient(to left, var(--color-primary) 10px, transparent 10px),
    linear-gradient(to bottom, var(--color-primary) 10px, transparent 10px),
    /* Bottom-left L-bracket */
    linear-gradient(to right, var(--color-primary) 10px, transparent 10px),
    linear-gradient(to top, var(--color-primary) 10px, transparent 10px),
    /* Bottom-right L-bracket */
    linear-gradient(to left, var(--color-primary) 10px, transparent 10px),
    linear-gradient(to top, var(--color-primary) 10px, transparent 10px);
  background-position:
    0 0, 0 0,
    100% 0, 100% 0,
    0 100%, 0 100%,
    100% 100%, 100% 100%;
  background-size:
    10px 1.5px, 1.5px 10px,
    10px 1.5px, 1.5px 10px,
    10px 1.5px, 1.5px 10px,
    10px 1.5px, 1.5px 10px;
  background-repeat: no-repeat;
  opacity: 0.55;
  transition: all var(--transition-normal);
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65), var(--glow-shadow-primary);
}

.glass-card:hover::before {
  background: linear-gradient(135deg, var(--color-primary) 0%, rgba(255, 255, 255, 0.1) 50%, var(--color-primary) 100%);
}

.glass-card:hover::after {
  opacity: 1;
  filter: drop-shadow(0 0 5px var(--color-primary));
}

/* Technical Panels */
.glass-panel {
  background: rgba(10, 12, 16, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--blueprint-grid-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  position: relative;
}

/* --- PREMIUM BUTTONS WITH NEON GLOWS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.875rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius-md); /* Precise drafting style */
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Primary Button (Neon Glow yellow-amber #F5C542) */
.btn-primary {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  box-shadow: 0 4px 14px rgba(245, 197, 66, 0.3);
  border: 1px solid var(--color-primary);
}

.btn-primary::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary-hover);
  z-index: -2;
}

.btn-primary::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--color-primary-active);
  transition: all var(--transition-normal);
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  color: var(--color-text-inverse);
  box-shadow: var(--glow-shadow-intense);
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover::before {
  width: 100%;
}

/* Secondary Button (Tech Gray / Fine Border) */
.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-text-primary);
  border: 1px solid var(--blueprint-grid-border);
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(245, 197, 66, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(245, 197, 66, 0.15);
}

/* Outline Yellow Button with Neon Glow */
.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  transform: translateY(-2px);
  box-shadow: var(--glow-shadow-intense);
}

/* Icon / Tech circle button */
.btn-icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: var(--radius-md); /* matching sharp corners */
  flex-shrink: 0;
}

/* --- TYPOGRAPHY UTILITIES --- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { 
  color: var(--color-primary); 
  text-shadow: 0 0 6px rgba(var(--color-primary-rgb), 0.25);
}
.text-secondary { color: var(--color-text-secondary); }
.text-muted { color: var(--color-text-muted); }
.text-gradient {
  background: linear-gradient(135deg, #FFFFFF 30%, #cbd5e1 70%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.font-heading { font-family: var(--font-heading); }
.font-body { font-family: var(--font-body); }
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }

/* --- SPACING UTILITIES --- */
.m-0 { margin: 0; }
.m-xs { margin: var(--space-xs); }
.m-sm { margin: var(--space-sm); }
.m-md { margin: var(--space-md); }
.m-lg { margin: var(--space-lg); }
.m-xl { margin: var(--space-xl); }

.mt-0 { margin-top: 0; }
.mt-xs { margin-top: var(--space-xs); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-0 { margin-bottom: 0; }
.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.ml-0 { margin-left: 0; }
.ml-xs { margin-left: var(--space-xs); }
.ml-sm { margin-left: var(--space-sm); }
.ml-md { margin-left: var(--space-md); }
.ml-lg { margin-left: var(--space-lg); }

.mr-0 { margin-right: 0; }
.mr-xs { margin-right: var(--space-xs); }
.mr-sm { margin-right: var(--space-sm); }
.mr-md { margin-right: var(--space-md); }
.mr-lg { margin-right: var(--space-lg); }

.mx-auto { margin-left: auto; margin-right: auto; }
.my-md { margin-top: var(--space-md); margin-bottom: var(--space-md); }
.my-lg { margin-top: var(--space-lg); margin-bottom: var(--space-lg); }
.my-xl { margin-top: var(--space-xl); margin-bottom: var(--space-xl); }

/* Paddings */
.p-0 { padding: 0; }
.p-xs { padding: var(--space-xs); }
.p-sm { padding: var(--space-sm); }
.p-md { padding: var(--space-md); }
.p-lg { padding: var(--space-lg); }
.p-xl { padding: var(--space-xl); }

.pt-0 { padding-top: 0; }
.pt-xs { padding-top: var(--space-xs); }
.pt-sm { padding-top: var(--space-sm); }
.pt-md { padding-top: var(--space-md); }
.pt-lg { padding-top: var(--space-lg); }
.pt-xl { padding-top: var(--space-xl); }

.pb-0 { padding-bottom: 0; }
.pb-xs { padding-bottom: var(--space-xs); }
.pb-sm { padding-bottom: var(--space-sm); }
.pb-md { padding-bottom: var(--space-md); }
.pb-lg { padding-bottom: var(--space-lg); }
.pb-xl { padding-bottom: var(--space-xl); }

.px-xs { padding-left: var(--space-xs); padding-right: var(--space-xs); }
.px-sm { padding-left: var(--space-sm); padding-right: var(--space-sm); }
.px-md { padding-left: var(--space-md); padding-right: var(--space-md); }
.px-lg { padding-left: var(--space-lg); padding-right: var(--space-lg); }
.px-xl { padding-left: var(--space-xl); padding-right: var(--space-xl); }

.py-xs { padding-top: var(--space-xs); padding-bottom: var(--space-xs); }
.py-sm { padding-top: var(--space-sm); padding-bottom: var(--space-sm); }
.py-md { padding-top: var(--space-md); padding-bottom: var(--space-md); }
.py-lg { padding-top: var(--space-lg); padding-bottom: var(--space-lg); }
.py-xl { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }

/* --- OTHER UTILITIES --- */
.w-100 { width: 100%; }
.h-100 { height: 100%; }
.overflow-hidden { overflow: hidden; }
.position-relative { position: relative; }
.d-block { display: block; }
.d-inline-block { display: inline-block; }
.d-none { display: none; }

@media (min-width: 768px) {
  .d-md-block { display: block; }
  .d-md-flex { display: flex; }
  .d-md-none { display: none; }
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* ================================================================
   ConTecto - Component & Layout Styles
   ================================================================ */

/* Fixed Header */
#header.fixed-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: rgba(var(--color-bg-rgb), 0.8) !important;
  backdrop-filter: blur(20px) saturate(120%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(120%) !important;
  border-bottom: 1px solid var(--blueprint-grid-border) !important;
  transition: all var(--transition-normal) !important;
}
#header.fixed-header.scrolled {
  background: rgba(var(--color-bg-rgb), 0.96) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
  border-bottom-color: rgba(var(--color-primary-rgb), 0.2) !important;
}

.header-container {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-left: none;
  border-right: none;
}

.logo-wrapper {
  background: #ffffff;
  padding: 5px 12px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.logo-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--color-primary-rgb), 0.45);
  background: #ffffff;
}

.logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-menu {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
  align-items: center;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: var(--space-xs) 0;
  position: relative;
  color: var(--color-text-secondary);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: var(--transition-fast);
}
.nav-link:hover {
  color: var(--color-primary);
  text-shadow: 0 0 8px rgba(var(--color-primary-rgb), 0.5);
}
.nav-link:hover::after {
  width: 100%;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text-primary);
  transition: var(--transition-fast);
}
.mobile-nav-toggle:hover {
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .mobile-nav-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(var(--color-bg-rgb), 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    padding-top: var(--space-xl);
    gap: var(--space-xl);
    transition: var(--transition-normal);
    z-index: 999;
  }
  .nav-menu.active {
    left: 0;
  }
}

/* Floating WhatsApp Button */
.whatsapp-floating {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  z-index: 999;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-normal);
}
.whatsapp-floating:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
  color: white;
}
.whatsapp-floating::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulseWhatsApp 2s infinite;
  z-index: -1;
}

@keyframes pulseWhatsApp {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Section Header (Blueprint Drawing Block style option) */
.section-header {
  max-width: 700px;
  margin: 0 auto var(--space-xl) auto;
  position: relative;
  padding: var(--space-md);
  border: 1px solid var(--blueprint-grid-border);
  background: rgba(10, 12, 16, 0.4);
}

.section-header::before {
  content: '+';
  position: absolute;
  top: -8px;
  left: -8px;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 1.2rem;
}
.section-header::after {
  content: '+';
  position: absolute;
  bottom: -8px;
  right: -8px;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.section-header span {
  display: inline-block;
  background: rgba(var(--color-primary-rgb), 0.08);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(var(--color-primary-rgb), 0.2);
  margin-bottom: var(--space-sm);
  text-shadow: 0 0 6px rgba(var(--color-primary-rgb), 0.35);
}

/* Technical Schematic Tabs */
.tabs-container {
  display: flex;
  justify-content: center;
  gap: 4px;
  background: rgba(10, 12, 16, 0.85);
  padding: 4px;
  border-radius: var(--radius-md);
  max-width: 500px;
  margin: 0 auto var(--space-xl) auto;
  border: 1px solid var(--blueprint-grid-border);
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  color: var(--color-text-secondary);
  transition: all var(--transition-normal);
  flex: 1;
  text-align: center;
}

.tab-btn:hover {
  color: var(--color-text-primary);
  background: rgba(255, 255, 255, 0.02);
}

.tab-btn.active {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  box-shadow: var(--glow-shadow-primary);
}

.tab-pane {
  display: none;
}
.tab-pane.active {
  display: block;
  animation: fadeIn 0.5s ease-out forwards;
}

/* Drafting Form Controls */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  text-align: left;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-secondary);
}

.form-input, .form-select, .form-textarea {
  background: rgba(15, 18, 26, 0.85);
  border: 1px solid var(--blueprint-grid-border);
  border-radius: var(--radius-sm);
  padding: 0.85rem var(--space-md);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  transition: all var(--transition-normal);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 15px rgba(var(--color-primary-rgb), 0.25);
  background: rgba(20, 25, 36, 0.95);
}

/* Wizard (Cotizador) */
.wizard-container {
  max-width: 700px;
  margin: 0 auto;
}

.wizard-progress {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: var(--space-xl);
}
.wizard-progress::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--blueprint-grid-border);
  z-index: 1;
  transform: translateY(-50%);
}
.wizard-progress-bar {
  position: absolute;
  top: 50%;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-primary);
  box-shadow: var(--glow-shadow-primary);
  z-index: 1;
  transform: translateY(-50%);
  transition: width var(--transition-normal);
}

.wizard-step-node {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm); /* Sharp technical look */
  background: rgba(10, 12, 16, 0.9);
  border: 1px solid var(--blueprint-grid-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--color-text-muted);
  position: relative;
  z-index: 2;
  transition: all var(--transition-normal);
}
.wizard-step-node.active {
  border-color: var(--color-primary);
  background: var(--color-bg);
  color: var(--color-primary);
  box-shadow: var(--glow-shadow-primary);
  text-shadow: 0 0 8px rgba(var(--color-primary-rgb), 0.6);
}
.wizard-step-node.completed {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

.wizard-step-content {
  display: none;
}
.wizard-step-content.active {
  display: block;
  animation: fadeIn 0.4s ease-out forwards;
}

/* Wizard Selector Cards */
.selector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.selector-card {
  background: rgba(15, 18, 26, 0.7);
  border: 1px solid var(--blueprint-grid-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  cursor: pointer;
  text-align: center;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  position: relative;
}

.selector-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  pointer-events: none;
  transition: all var(--transition-normal);
}

.selector-card i {
  font-size: 2.2rem;
  color: var(--color-text-muted);
  transition: all var(--transition-normal);
}
.selector-card:hover {
  border-color: rgba(var(--color-primary-rgb), 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.selector-card.selected {
  border-color: var(--color-primary);
  background: rgba(var(--color-primary-rgb), 0.04);
  box-shadow: var(--glow-shadow-primary);
}
.selector-card.selected::after {
  border-color: var(--color-primary);
  filter: drop-shadow(0 0 5px var(--color-primary));
}
.selector-card.selected i {
  color: var(--color-primary);
  filter: drop-shadow(0 0 8px rgba(var(--color-primary-rgb), 0.5));
}

/* Checkbox selector for Step 2 */
.checkbox-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}
.checkbox-item {
  background: rgba(15, 18, 26, 0.7);
  border: 1px solid var(--blueprint-grid-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  cursor: pointer;
  transition: all var(--transition-normal);
}
.checkbox-item:hover {
  background: rgba(20, 25, 36, 0.85);
  border-color: rgba(var(--color-primary-rgb), 0.35);
}
.checkbox-item.selected {
  border-color: var(--color-primary);
  background: rgba(var(--color-primary-rgb), 0.03);
  box-shadow: 0 0 15px rgba(var(--color-primary-rgb), 0.1);
}
.checkbox-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--color-primary);
  cursor: pointer;
}

/* Blueprint styled Map Container */
.map-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  height: 350px;
  border: 1px solid var(--blueprint-grid-border);
}
.map-container::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: 
    linear-gradient(rgba(var(--color-primary-rgb), 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--color-primary-rgb), 0.02) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: 2;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(0.95) contrast(1.3) hue-rotate(185deg); /* Cyber-blueprint map styling */
}

/* Footer Section */
footer {
  background: #020514;
  border-top: 1px solid var(--blueprint-grid-border);
  padding: var(--space-xl) 0 var(--space-lg) 0;
  position: relative;
}
.footer-logo-wrapper {
  align-self: flex-start;
  margin-bottom: var(--space-md);
}

.footer-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.footer-link:hover {
  color: var(--color-primary);
  text-shadow: 0 0 6px rgba(var(--color-primary-rgb), 0.4);
}

/* --- MOUSE TRACKING GLOW --- */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(var(--color-primary-rgb), 0.12) 0%, rgba(var(--color-primary-rgb), 0.03) 40%, rgba(var(--color-primary-rgb), 0) 70%);
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: screen;
  border-radius: 50%;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* --- SVG CIRCUITS BACKGROUND --- */
.circuit-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.circuit-svg {
  width: 100%;
  height: 100%;
  opacity: 0.65; /* Enhanced schematic clarity */
}

.circuit-line {
  stroke: rgba(var(--color-primary-rgb), 0.05);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.circuit-pulse {
  stroke: var(--color-primary);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 5px rgba(var(--color-primary-rgb), 0.7));
}

.circuit-node {
  fill: var(--color-primary);
  filter: drop-shadow(0 0 6px rgba(var(--color-primary-rgb), 0.9));
}

/* Dynamic schematic current flow */
.pulse-1 {
  stroke-dasharray: 120 1200;
  animation: circuitFlow1 8s linear infinite;
}

.pulse-2 {
  stroke-dasharray: 100 1000;
  animation: circuitFlow2 6s linear infinite;
}

.pulse-3 {
  stroke-dasharray: 80 800;
  animation: circuitFlow3 7s linear infinite;
}

.pulse-4 {
  stroke-dasharray: 150 1500;
  animation: circuitFlow4 10s linear infinite;
}

@keyframes circuitFlow1 {
  0% { stroke-dashoffset: 1320; }
  100% { stroke-dashoffset: 0; }
}

@keyframes circuitFlow2 {
  0% { stroke-dashoffset: 1100; }
  100% { stroke-dashoffset: 0; }
}

@keyframes circuitFlow3 {
  0% { stroke-dashoffset: 880; }
  100% { stroke-dashoffset: 0; }
}

@keyframes circuitFlow4 {
  0% { stroke-dashoffset: 1650; }
  100% { stroke-dashoffset: 0; }
}

/* ================================================================
   Awwwards Premium Restructuring - Hero & Services Grid Redesign
   ================================================================ */

/* Hero Graphics Integration */
.hero-graphic-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  border-radius: var(--radius-xl);
  overflow: visible;
  transition: all var(--transition-slow);
}

.hero-bg-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--blueprint-grid-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: saturate(0.5) sepia(0.2) hue-rotate(185deg) brightness(0.85); /* Blueprint underlay */
  transition: transform var(--transition-slow) cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 9, 14, 0.9) 0%, rgba(15, 18, 26, 0.5) 50%, rgba(7, 9, 14, 0.95) 100%);
  z-index: 2;
}

.monitor-card {
  position: relative;
  z-index: 5;
  width: 100%;
  background: rgba(10, 12, 16, 0.5) !important;
  backdrop-filter: blur(32px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(32px) saturate(140%) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7) !important;
  transform: translateY(0) scale(1);
  transition: all var(--transition-slow) cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-graphic-wrapper:hover .hero-bg-img {
  transform: scale(1.06);
}

.hero-graphic-wrapper:hover .monitor-card {
  transform: translateY(-8px) scale(1.01);
  border-color: var(--color-primary) !important;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.85), var(--glow-shadow-primary) !important;
}

/* ==========================================
   4. ASYMMETRIC SERVICES GRID REDESIGN
   ========================================== */

.asymmetric-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: stretch;
  position: relative;
  border: 1px solid var(--blueprint-grid-border);
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.005);
}

@media (min-width: 1024px) {
  .asymmetric-services-grid {
    grid-template-columns: 1.15fr 1.85fr; /* Engineering precise split ratio */
    padding: var(--space-xl);
  }
}

/* Technical Drafting Annotations */
.asymmetric-services-grid::before {
  content: 'SYSTEM SCHEMATIC DIAGRAM // SEC. 02';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 0.65rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-primary);
  background: var(--color-bg);
  padding: 0 8px;
  letter-spacing: 0.15em;
  text-shadow: 0 0 6px rgba(var(--color-primary-rgb), 0.4);
}

.asymmetric-services-grid::after {
  content: 'DWG NO: CNT-SRV-2026 // SCALE: NTS';
  position: absolute;
  bottom: -10px;
  right: 20px;
  font-size: 0.65rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-text-muted);
  background: var(--color-bg);
  padding: 0 8px;
  letter-spacing: 0.1em;
}

/* Service Image Card (Left Column) */
.service-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-xl) var(--space-lg);
  box-shadow: var(--glass-shadow);
  border: 1px solid var(--blueprint-grid-border);
  transition: all var(--transition-slow);
}

/* Drafting Graph overlay on the image */
.service-image-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(var(--color-primary-rgb), 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--color-primary-rgb), 0.035) 1px, transparent 1px);
  background-size: 24px 24px;
  z-index: 3;
  pointer-events: none;
  opacity: 0.75;
  transition: opacity var(--transition-normal);
}

/* Dynamic crosshair corners for service image card */
.service-image-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  pointer-events: none;
  z-index: 4;
  background-image:
    /* Corner L brackets */
    linear-gradient(to right, var(--color-primary) 12px, transparent 12px),
    linear-gradient(to bottom, var(--color-primary) 12px, transparent 12px),
    linear-gradient(to left, var(--color-primary) 12px, transparent 12px),
    linear-gradient(to bottom, var(--color-primary) 12px, transparent 12px),
    linear-gradient(to right, var(--color-primary) 12px, transparent 12px),
    linear-gradient(to top, var(--color-primary) 12px, transparent 12px),
    linear-gradient(to left, var(--color-primary) 12px, transparent 12px),
    linear-gradient(to top, var(--color-primary) 12px, transparent 12px);
  background-position:
    0 0, 0 0,
    100% 0, 100% 0,
    0 100%, 0 100%,
    100% 100%, 100% 100%;
  background-size:
    12px 1.5px, 1.5px 12px,
    12px 1.5px, 1.5px 12px,
    12px 1.5px, 1.5px 12px,
    12px 1.5px, 1.5px 12px;
  background-repeat: no-repeat;
  opacity: 0.6;
  transition: all var(--transition-normal);
}

.service-img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform var(--transition-slow) cubic-bezier(0.16, 1, 0.3, 1),
              filter var(--transition-slow) ease;
  z-index: 1;
  filter: grayscale(0.5) contrast(1.1) brightness(0.85) sepia(0.1) hue-rotate(185deg); /* schematic shade */
}

.service-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, 
    rgba(4, 6, 10, 0.98) 0%, 
    rgba(10, 12, 16, 0.7) 45%, 
    rgba(10, 12, 16, 0.1) 100%
  );
  z-index: 2;
}

.service-image-content {
  position: relative;
  z-index: 4;
  text-align: left;
}

/* Service Badge with Neon Glow */
.service-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
  background: rgba(var(--color-primary-rgb), 0.06);
  padding: 5px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(var(--color-primary-rgb), 0.25);
  text-shadow: 0 0 6px rgba(var(--color-primary-rgb), 0.4);
  box-shadow: 0 0 15px rgba(var(--color-primary-rgb), 0.15), inset 0 0 8px rgba(var(--color-primary-rgb), 0.05);
  transition: all var(--transition-normal);
}

.service-badge:hover {
  background: rgba(var(--color-primary-rgb), 0.15);
  border-color: var(--color-primary);
  box-shadow: 0 0 25px rgba(var(--color-primary-rgb), 0.45), inset 0 0 12px rgba(var(--color-primary-rgb), 0.1);
  text-shadow: 0 0 12px rgba(var(--color-primary-rgb), 0.8);
}

.service-featured-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #FFFFFF 50%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-featured-desc {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.service-featured-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  border-top: 1px solid var(--blueprint-grid-border);
  padding-top: var(--space-md);
}

.stat-item {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.stat-item i {
  color: var(--color-primary);
  filter: drop-shadow(0 0 3px rgba(var(--color-primary-rgb), 0.6));
}

/* Hover effects for Services Image Card */
.service-image-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-primary);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), var(--glow-shadow-primary);
}

.service-image-card:hover .service-img-bg {
  transform: scale(1.04);
  filter: grayscale(0.1) contrast(1.2) brightness(0.95); /* turns on electric details */
}

.service-image-card:hover::before {
  opacity: 1;
  filter: drop-shadow(0 0 5px var(--color-primary));
}

/* Right Services List Grid */
.services-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 640px) {
  .services-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-list-grid > :nth-child(3) {
    grid-column: span 2;
  }
}

/* Schematic Service Detail Cards */
.service-detail-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(15, 18, 26, 0.65) !important;
  border: 1px solid var(--blueprint-grid-border) !important;
  padding: var(--space-lg) !important;
  box-shadow: var(--glass-shadow) !important;
  border-radius: var(--radius-lg) !important;
  transition: all var(--transition-normal) !important;
  position: relative;
}

.service-detail-card:hover {
  border-color: var(--color-primary) !important;
  background: rgba(20, 25, 36, 0.8) !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), var(--glow-shadow-primary) !important;
}

.service-detail-card .btn-icon {
  transition: all var(--transition-normal);
  border-radius: var(--radius-sm);
  background: rgba(var(--color-primary-rgb), 0.08);
  border: 1px solid rgba(var(--color-primary-rgb), 0.2);
  color: var(--color-primary);
}

.service-detail-card:hover .btn-icon {
  transform: scale(1.05) rotate(5deg);
  background: var(--color-primary);
  color: var(--color-text-inverse);
  box-shadow: var(--glow-shadow-primary);
  border-color: var(--color-primary);
}

.hover-arrow {
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.hover-arrow:hover {
  gap: 8px !important;
  color: var(--color-primary-hover) !important;
  text-shadow: 0 0 6px rgba(var(--color-primary-rgb), 0.4);
}

/* ================================================================
   5. COTIZADOR GRID & TRUST WARRANTY PANEL
   ================================================================ */

.cotizador-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .cotizador-grid-wrapper {
    grid-template-columns: 1.2fr 0.8fr; /* Technical split ratio */
  }
}

.trust-warranty-panel {
  background: rgba(15, 18, 26, 0.5) !important;
  backdrop-filter: blur(20px) saturate(120%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(120%) !important;
  border: 1px solid var(--blueprint-grid-border) !important;
  padding: var(--space-xl) !important;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: var(--space-lg);
}

.trust-item {
  transition: transform var(--transition-normal);
}

.trust-item:hover {
  transform: translateX(4px);
}

.trust-icon-box {
  background: rgba(255, 214, 0, 0.08);
  border: 1px solid rgba(255, 214, 0, 0.25);
  border-radius: var(--radius-sm);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  transition: all var(--transition-normal);
}

.trust-item:hover .trust-icon-box {
  background: var(--color-primary);
  color: var(--color-text-inverse) !important;
  box-shadow: var(--glow-shadow-primary);
}

.trust-item:hover .trust-icon-box i {
  color: var(--color-text-inverse) !important;
}


/* ==========================================
 * BLOG & MODAL STYLES OVERRIDES
 * ========================================== */
.modal-backdrop {
  opacity: 1;
}
.modal-content::-webkit-scrollbar {
  width: 6px;
}
.modal-content::-webkit-scrollbar-track {
  background: rgba(15, 18, 26, 0.5);
  border-radius: 4px;
}
.modal-content::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 4px;
}
.modal-content::-webkit-scrollbar-thumb:hover {
  background: #ffdb58;
}
.article-body h2 {
  color: #fff !important;
  font-family: var(--font-heading) !important;
  margin-top: var(--space-lg) !important;
  margin-bottom: var(--space-xs) !important;
  font-size: 1.25rem !important;
  border-left: 3px solid var(--color-primary) !important;
  padding-left: var(--space-xs) !important;
}
.article-body h3 {
  color: #fff !important;
  font-family: var(--font-heading) !important;
  margin-top: var(--space-lg) !important;
  margin-bottom: var(--space-xs) !important;
  font-size: 1.1rem !important;
}
.article-body p {
  margin-bottom: var(--space-md) !important;
  color: var(--color-text-secondary) !important;
  font-size: 0.95rem !important;
}
.article-body ul, .article-body ol {
  margin-bottom: var(--space-md) !important;
  padding-left: var(--space-lg) !important;
}
.article-body li {
  margin-bottom: var(--space-xs) !important;
  color: var(--color-text-secondary) !important;
  font-size: 0.95rem !important;
}


/* ==========================================
   FAQ SECTION & ACCORDION (GLASSMORPHIC)
   ========================================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.faq-item {
  background: rgba(20, 20, 24, 0.6) !important;
  border: 1px solid var(--blueprint-grid-border) !important;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
  border-color: var(--color-primary) !important;
  box-shadow: 0 4px 20px rgba(0, 242, 254, 0.1);
  background: rgba(25, 25, 30, 0.7) !important;
}

.faq-trigger {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  outline: none;
}

.faq-question {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  transition: color 0.3s ease;
}

.faq-item:hover .faq-question {
  color: var(--color-primary);
}

.faq-icon-wrapper {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  transition: all 0.3s ease;
}

.faq-item.active .faq-icon-wrapper {
  background: var(--color-primary);
  color: #000;
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(10, 10, 12, 0.3);
}

.faq-content-inner {
  padding: 0 1.5rem 1.5rem 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.faq-content-inner p {
  margin-bottom: var(--space-sm);
}

.faq-content-inner p:last-child {
  margin-bottom: 0;
}

.faq-content-inner ul, .faq-content-inner ol {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
  list-style-type: disc;
}

.faq-highlight-box {
  background: rgba(0, 242, 254, 0.05);
  border-left: 3px solid var(--color-primary);
  padding: var(--space-sm) var(--space-md);
  border-radius: 0 6px 6px 0;
  margin: var(--space-sm) 0;
  font-size: 0.9rem;
}


/* ================================================================
   WordPress Admin Bar Compatibility
   ================================================================ */
/* Adjust fixed header position when admin bar is present */
.admin-bar #header.fixed-header {
  top: 32px !important;
}

@media screen and (max-width: 782px) {
  .admin-bar #header.fixed-header {
    top: 46px !important;
  }
}

/* Adjust mobile menu position when admin bar is active */
@media (max-width: 768px) {
  .admin-bar .nav-menu {
    top: 126px; /* 80px (header) + 46px (admin bar on screens <= 782px) */
    height: calc(100vh - 126px);
  }
}
