/* ==========================================================================
   VOLTEDGE THEME - ELÉCTRICO CERTIFICADO SEC (DOMINGO)
   Modern Vanilla CSS - High-End Electrician & Contractor Design System
   Optimized for Core Web Vitals, Mobile-First & SEO Rich Snippets
   ========================================================================== */

/* --- Import Google Fonts: Inter & Cardo --- */
@import url('https://fonts.googleapis.com/css2?family=Cardo:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* --- Root CSS Variables --- */
:root {
  /* Brand Palette (Extraída del Logotipo Oficial) */
  --volt-orange: #F37021;
  --volt-orange-dark: #D45B10;
  --volt-orange-light: #FF8533;
  --volt-orange-subtle: rgba(243, 112, 33, 0.12);
  --volt-orange-glow: rgba(243, 112, 33, 0.35);

  --brand-blue: #2357A4;
  --brand-blue-dark: #163B72;
  --brand-blue-light: #3D75CA;
  --brand-blue-subtle: rgba(35, 87, 164, 0.12);
  --brand-blue-glow: rgba(35, 87, 164, 0.35);

  /* Deep Tech Navy (VoltEdge Dark fusionado con Azul Real) */
  --volt-dark: #080D1A;
  --volt-dark-card: #0F172E;
  --volt-dark-card-hover: #162244;
  --volt-dark-border: rgba(255, 255, 255, 0.09);

  --volt-light-bg: #F8FAFC;
  --volt-light-card: #FFFFFF;
  --volt-light-border: #E2E8F0;

  --badge-sec-gold: #F59E0B;
  --badge-green: #10B981;
  --badge-promo: #C4FF44;

  /* Typography: Inter + Cardo */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Cardo', Georgia, 'Times New Roman', serif;

  /* Text Colors */
  --text-white: #FFFFFF;
  --text-dark: #0F172A;
  --text-muted: #64748B;
  --text-muted-dark: #94A3B8;

  /* Spacing & Borders */
  --site-max-width: 1240px;
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --radius-pill: 9999px;
  --transition-normal: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);

  /* 2026 Multi-Tiered Physically-Modeled Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 2px 6px rgba(0, 0, 0, 0.03);
  --shadow-card: 0 1px 2px rgba(15, 23, 42, 0.04), 0 6px 18px -2px rgba(15, 23, 42, 0.05), 0 16px 32px -4px rgba(15, 23, 42, 0.04);
  --shadow-card-hover: 0 4px 6px -2px rgba(15, 23, 42, 0.05), 0 14px 28px -4px rgba(15, 23, 42, 0.09), 0 24px 44px -8px rgba(15, 23, 42, 0.05);
  --shadow-dark: 0 2px 4px rgba(0, 0, 0, 0.25), 0 12px 28px -4px rgba(0, 0, 0, 0.45), 0 30px 60px -12px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 0 1px rgba(243, 112, 33, 0.25), 0 4px 20px -2px rgba(243, 112, 33, 0.3);

  /* 2026 Precision Specular Bevels & Reflections */
  --bevel-dark: inset 0 1px 0 0 rgba(255, 255, 255, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  --bevel-light: inset 0 1px 0 0 rgba(255, 255, 255, 0.85);
}

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

html {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

body {
  background-color: var(--volt-light-bg);
  color: var(--text-dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  max-width: 100%;
  padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)); /* Spacing for sticky mobile bar */
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
}

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

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

button, input, select, textarea {
  font: inherit;
}

/* --- Container Utility --- */
.container {
  width: 100%;
  max-width: var(--site-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

@media (max-width: 576px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }
}

/* --- Top Utility Bar --- */
.top-bar {
  background-color: var(--volt-dark);
  color: var(--text-muted-dark);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--volt-dark-border);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-bar-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(251, 88, 0, 0.18);
  color: var(--volt-orange-light);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.78rem;
}

.top-bar-badge::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  background-color: #00E676;
  border-radius: 50%;
  box-shadow: 0 0 8px #00E676;
}

.top-bar a:hover {
  color: var(--text-white);
}

@media (max-width: 768px) {
  .top-bar {
    padding: 6px 0;
    font-size: 0.76rem;
  }
  .top-bar .container {
    justify-content: center;
    gap: 6px 12px;
  }
  .top-bar-right {
    display: none;
  }
}

/* --- Header & Navigation --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--volt-light-border);
  transition: var(--transition-normal);
}

.site-header.is-dark {
  background: rgba(8, 13, 26, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

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

@media (max-width: 768px) {
  .header-inner {
    height: 70px;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .header-inner {
    height: 64px;
    gap: 6px;
  }
}

/* Logo - Enlarged & High Presence */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -0.5px;
  color: var(--volt-dark);
  min-width: 0;
}

.site-header.is-dark .logo {
  color: var(--text-white);
}

.logo-badge-img {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35), 0 0 0 2px rgba(255, 255, 255, 0.95);
  flex-shrink: 0;
  background: #FFFFFF;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

@media (max-width: 768px) {
  .logo {
    gap: 10px;
  }
  .logo-badge-img {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 480px) {
  .logo {
    gap: 8px;
  }
  .logo-badge-img {
    width: 42px;
    height: 42px;
  }
}

.logo:hover .logo-badge-img {
  transform: scale(1.05);
  box-shadow: 0 6px 22px rgba(243, 112, 33, 0.4), 0 0 0 2px var(--volt-orange);
}

.logo-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--volt-orange) 0%, var(--volt-orange-dark) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: var(--shadow-glow);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}

.logo-main {
  font-size: clamp(1.2rem, 2vw, 1.48rem);
  font-weight: 900;
  letter-spacing: -0.4px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .logo-main {
    font-size: clamp(1rem, 3.8vw, 1.25rem);
    letter-spacing: -0.3px;
  }
}

@media (max-width: 480px) {
  .logo-main {
    font-size: 1.05rem;
    letter-spacing: -0.2px;
  }
}

.logo-main span {
  color: var(--volt-orange);
}

.logo-sec-tag {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--badge-sec-gold);
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .logo-sec-tag {
    font-size: clamp(0.58rem, 2.2vw, 0.68rem);
    letter-spacing: 0.4px;
  }
  .logo-sec-prefix {
    display: none;
  }
}

@media (max-width: 480px) {
  .logo-sec-tag {
    font-size: 0.58rem;
    letter-spacing: 0.3px;
  }
}

/* Nav Menu */
.nav-menu {
  display: none;
}

@media (min-width: 992px) {
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
  }
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.site-header.is-dark .nav-link {
  color: var(--text-muted-dark);
}

.nav-link:hover, .nav-link.active {
  color: var(--volt-orange);
}

.site-header.is-dark .nav-link:hover, .site-header.is-dark .nav-link.active {
  color: var(--text-white);
}

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #FFFFFF;
  min-width: 250px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-dark);
  border: 1px solid var(--volt-light-border);
  padding: 10px 0;
  list-style: none;
  z-index: 1001;
}

.site-header.is-dark .dropdown-menu {
  background: var(--volt-dark-card);
  border-color: var(--volt-dark-border);
}

.nav-item:hover .dropdown-menu {
  display: block;
  animation: fadeIn 0.2s ease;
}

.dropdown-item a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}

.site-header.is-dark .dropdown-item a {
  color: var(--text-muted-dark);
}

.dropdown-item a:hover {
  background: var(--volt-orange-subtle);
  color: var(--volt-orange);
}

/* Header CTAs */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .header-actions {
    gap: 8px;
  }

  .header-cta-text {
    display: none;
  }

  .header-cta-btn {
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
  }
}

@media (max-width: 480px) {
  /* En móviles, ocultar el botón CTA de la cabecera superior:
     el usuario tiene la barra inferior fija siempre visible con WhatsApp y llamada directa */
  .header-cta-btn {
    display: none !important;
  }
}

.header-phone-box {
  display: none;
  text-align: right;
}

@media (min-width: 1100px) {
  .header-phone-box {
    display: flex;
    flex-direction: column;
  }
}

.header-phone-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.header-phone-number {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--volt-dark);
}

.site-header.is-dark .header-phone-number {
  color: var(--text-white);
}

/* Mobile Toggle */
.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--volt-light-border);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  cursor: pointer;
  flex-shrink: 0;
}

.site-header.is-dark .mobile-toggle {
  border-color: var(--volt-dark-border);
  color: var(--text-white);
}

@media (max-width: 480px) {
  .mobile-toggle {
    width: 40px;
    height: 40px;
  }
}

@media (min-width: 992px) {
  .mobile-toggle {
    display: none;
  }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
  text-align: center;
  white-space: nowrap;
}

.btn-volt {
  background: linear-gradient(180deg, #FF7A24 0%, #E65A08 100%);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 
    0 1px 2px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.35),
    0 6px 20px -2px rgba(243, 112, 33, 0.38);
  position: relative;
  overflow: hidden;
}

.btn-volt:hover {
  background: linear-gradient(180deg, #FF8938 0%, #EB6414 100%);
  transform: translateY(-2px);
  box-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.45),
    0 10px 28px -2px rgba(243, 112, 33, 0.48);
}

.btn-dark {
  background: linear-gradient(180deg, #1A2234 0%, #0B101E 100%);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2), inset 0 1px 0 0 rgba(255, 255, 255, 0.15);
}

.btn-dark:hover {
  background: linear-gradient(180deg, #243048 0%, #121A2E 100%);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.btn-whatsapp {
  background: linear-gradient(180deg, #2ED872 0%, #1DA851 100%);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 
    0 1px 2px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.35),
    0 6px 20px -2px rgba(29, 168, 81, 0.38);
}

.btn-whatsapp:hover {
  background: linear-gradient(180deg, #38E47D 0%, #22B95A 100%);
  transform: translateY(-2px);
  box-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.45),
    0 10px 28px -2px rgba(29, 168, 81, 0.48);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--volt-dark);
  border: 1px solid rgba(15, 23, 42, 0.18);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.site-header.is-dark ~ * .btn-outline,
.hero-voltedge .btn-outline,
.emergency-banner .btn-outline {
  background: rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.btn-outline:hover {
  background: var(--volt-dark);
  color: #FFFFFF;
  border-color: var(--volt-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.btn-pill {
  border-radius: var(--radius-pill);
}

/* --- HERO SECTION (2026 ARCHITECTURAL LIGHTING & GRID) --- */
.hero-voltedge {
  background-color: #080D1A;
  background-image: 
    radial-gradient(ellipse 90% 60% at 50% -15%, rgba(35, 87, 164, 0.25) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 88% 15%, rgba(243, 112, 33, 0.13) 0%, transparent 65%),
    radial-gradient(ellipse 50% 35% at 10% 45%, rgba(35, 87, 164, 0.16) 0%, transparent 60%);
  color: var(--text-white);
  padding: 50px 0 90px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Subtle Technical Grid Overlay */
.hero-voltedge::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 75% 75% at 50% 35%, black 25%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 75% 75% at 50% 35%, black 25%, transparent 80%);
  pointer-events: none;
}

.hero-badge-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.badge-sec-verified {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.32);
  color: #FBBF24;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.badge-urgencias-247 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(243, 112, 33, 0.14);
  border: 1px solid rgba(243, 112, 33, 0.35);
  color: #FF944D;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5.5vw, 4.4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.hero-heading .text-orange {
  color: var(--volt-orange);
  position: relative;
  display: inline-block;
}

.hero-heading .text-highlight {
  background: linear-gradient(120deg, #FFFFFF 0%, #A5B4FC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subheading {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-muted-dark);
  max-width: 650px;
  line-height: 1.6;
  margin-bottom: 35px;
}

/* Tabs System inside Hero - 2026 Glassmorphism */
.hero-tabs-card {
  background: rgba(13, 19, 36, 0.76);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-dark), inset 0 1px 0 0 rgba(255, 255, 255, 0.15);
  margin-top: 24px;
  position: relative;
}

.tabs-nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 24px;
  scrollbar-width: none;
}

.tabs-nav::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted-dark);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-normal);
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.04);
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.tab-btn.active {
  background: linear-gradient(180deg, rgba(243, 112, 33, 0.22) 0%, rgba(243, 112, 33, 0.08) 100%);
  color: #FFFFFF;
  border-color: rgba(243, 112, 33, 0.75);
  box-shadow: 
    0 0 0 1px rgba(243, 112, 33, 0.25),
    0 4px 16px -2px rgba(243, 112, 33, 0.35),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.25);
}

.tab-pane {
  display: none;
  animation: fadeIn 0.3s ease;
}

.tab-pane.active {
  display: block;
}

.tab-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: center;
}

@media (min-width: 992px) {
  .tab-content-grid {
    grid-template-columns: 1.15fr 1fr;
  }
}

.tab-info h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-white);
}

.tab-info p {
  color: var(--text-muted-dark);
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.55;
}

.tab-features-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 24px;
}

@media (min-width: 576px) {
  .tab-features-list {
    grid-template-columns: 1fr 1fr;
  }
}

.tab-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-white);
}

.tab-features-list li svg {
  color: var(--volt-orange);
  flex-shrink: 0;
}

/* Tab Media Showcase Card with 2026 Camera Grade Filter */
.tab-media-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 
    0 1px 2px rgba(0, 0, 0, 0.2),
    0 12px 32px -4px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.15);
  background: #080D1A;
  aspect-ratio: 16 / 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* 2026 Editorial Photographic Filter: removes AI plastic sheen, enriches tones */
.tab-media-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(103%) saturate(92%) brightness(97%) sepia(2%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
  display: block;
}

.tab-media-card:hover .tab-media-img {
  transform: scale(1.03);
  filter: contrast(105%) saturate(95%) brightness(99%);
}

/* Optical lens vignette & top rim lighting */
.tab-media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 35px rgba(8, 13, 26, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  z-index: 1;
}

.tab-media-overlay {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 13, 26, 0.6) 35%, rgba(8, 13, 26, 0.95) 100%);
  padding: 16px 18px;
  width: 100%;
}

.rating-pill-card {
  background: rgba(11, 14, 20, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4), inset 0 1px 0 0 rgba(255, 255, 255, 0.15);
}

.stars-group {
  display: flex;
  gap: 4px;
  color: #F59E0B;
}

.rating-text {
  font-size: 0.85rem;
  color: var(--text-muted-dark);
  line-height: 1.2;
}

.rating-score {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-white);
}

.rating-count {
  font-weight: 700;
  color: #00E676;
}

/* Hero Action Bar */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

/* --- STATS COUNTER BAR --- */
.stats-bar {
  background: var(--volt-dark-card);
  border-top: 1px solid var(--volt-dark-border);
  border-bottom: 1px solid var(--volt-dark-border);
  padding: 30px 0;
  color: var(--text-white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

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

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px;
}

.stat-icon {
  width: 48px;
  height: 48px;
  background: var(--volt-orange-subtle);
  border: 1px solid rgba(251, 88, 0, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--volt-orange);
  flex-shrink: 0;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
  color: var(--text-white);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted-dark);
  line-height: 1.2;
}

/* --- SECTIONS HEADINGS --- */
.section-padding {
  padding: 70px 0;
}

@media (min-width: 992px) {
  .section-padding {
    padding: 100px 0;
  }
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}

.section-badge {
  display: inline-block;
  background: var(--volt-orange-subtle);
  color: var(--volt-orange);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--volt-dark);
  line-height: 1.18;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}

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

/* --- SERVICES CARDS GRID --- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

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

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

.service-card {
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card), inset 0 1px 0 0 rgba(255, 255, 255, 0.9);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--volt-orange) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover), 0 0 0 1px rgba(35, 87, 164, 0.12);
  border-color: rgba(35, 87, 164, 0.25);
}

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

.service-icon-box {
  width: 56px;
  height: 56px;
  background: rgba(248, 250, 252, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--volt-orange);
  margin-bottom: 22px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), inset 0 1px 0 0 rgba(255, 255, 255, 0.9);
  transition: var(--transition-normal);
}

.service-card:hover .service-icon-box {
  background: linear-gradient(135deg, var(--volt-orange) 0%, var(--volt-orange-dark) 100%);
  color: #FFFFFF;
  border-color: var(--volt-orange);
  box-shadow: 0 4px 14px -2px rgba(243, 112, 33, 0.4), inset 0 1px 0 0 rgba(255, 255, 255, 0.3);
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.25;
}

.service-card-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--volt-orange);
  margin-top: auto;
}

.service-link svg {
  transition: transform 0.2s ease;
}

.service-card:hover .service-link svg {
  transform: translateX(4px);
}

/* --- PROFILE & MEDIA SHOWCASE --- */
.profile-showcase {
  background: #FFFFFF;
  border-top: 1px solid var(--volt-light-border);
  border-bottom: 1px solid var(--volt-light-border);
}

.profile-showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 992px) {
  .profile-showcase-grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 60px;
  }
}

.profile-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), 0 16px 40px -8px rgba(8, 13, 26, 0.18);
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: var(--volt-dark);
}

.profile-img-wrap img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  display: block;
  object-fit: cover;
  filter: contrast(103%) saturate(92%) brightness(97%) sepia(2%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.profile-img-wrap:hover img {
  transform: scale(1.025);
  filter: contrast(105%) saturate(95%) brightness(99%);
}

.profile-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 35px rgba(8, 13, 26, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  z-index: 1;
}

.profile-badge-float {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(8, 13, 26, 0.88);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #FFFFFF;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 1px 0 0 rgba(255, 255, 255, 0.15);
  z-index: 2;
}

.profile-badge-float img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  filter: none;
}

/* --- COMUNAS SANTIAGO MODULE --- */
.comunas-section {
  background: #FFFFFF;
  border-top: 1px solid var(--volt-light-border);
  border-bottom: 1px solid var(--volt-light-border);
}

.comunas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

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

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

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

.comuna-card {
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  position: relative;
}

.comuna-card:hover {
  background: #FFFFFF;
  border-color: rgba(35, 87, 164, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover), 0 0 0 1px rgba(35, 87, 164, 0.15);
}

/* Mini Mapa Técnico GPS Banner */
.comuna-map-thumb {
  height: 84px;
  background: #090E17;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.comuna-map-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.65;
  transition: opacity 0.3s ease, transform 0.4s ease;
}

.comuna-card:hover .comuna-map-svg {
  opacity: 0.9;
  transform: scale(1.04);
}

/* Radar Beacon & Pulse */
.comuna-map-beacon {
  position: absolute;
  width: 14px;
  height: 14px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.beacon-core {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  box-shadow: 0 0 8px #22c55e;
}

.beacon-pulse {
  position: absolute;
  inset: -6px;
  border: 2px solid rgba(34, 197, 94, 0.6);
  border-radius: 50%;
  animation: radar-ping 2.4s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes radar-ping {
  0% {
    transform: scale(0.4);
    opacity: 1;
  }
  80%, 100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

/* Coordinates & Status Badge inside Map Header */
.comuna-map-overlay {
  position: absolute;
  inset: 0;
  padding: 8px 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(8, 14, 26, 0.75) 0%, rgba(8, 14, 26, 0.15) 60%, rgba(8, 14, 26, 0.8) 100%);
}

.comuna-coords-chip {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #94A3B8;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 2px 6px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.comuna-active-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #4ADE80;
  background: rgba(20, 83, 45, 0.65);
  border: 1px solid rgba(74, 222, 128, 0.35);
  padding: 2px 6px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.comuna-active-badge::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 6px #4ADE80;
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Card Body */
.comuna-card-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.comuna-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--volt-dark);
  margin-bottom: 2px;
  line-height: 1.25;
}

.comuna-zone {
  font-size: 0.74rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.comuna-sectors-list {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 12px;
}

.comuna-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  padding-top: 10px;
  margin-top: auto;
}

.comuna-time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--badge-green);
  font-weight: 700;
}

.comuna-arrow {
  color: var(--volt-blue);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  transition: transform 0.2s ease;
}

.comuna-card:hover .comuna-arrow {
  transform: translateX(3px);
}

/* Comuna Detalle 2-Column Hero Showcase */
.comuna-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

@media (min-width: 992px) {
  .comuna-hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
  }
}

.comuna-showcase-card {
  position: relative;
  background: #0B111E;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  box-shadow: var(--shadow-dark), 0 0 40px rgba(10, 25, 47, 0.4);
}

.comuna-showcase-media {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: #080D1A;
}

@media (min-width: 768px) {
  .comuna-showcase-media {
    height: 300px;
  }
}

.comuna-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(102%) saturate(94%) brightness(96%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.comuna-showcase-card:hover .comuna-showcase-img {
  transform: scale(1.03);
}

.comuna-showcase-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 13, 26, 0.15) 0%, rgba(8, 13, 26, 0.85) 100%);
  pointer-events: none;
}

.comuna-showcase-badge-top {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(8, 14, 26, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.comuna-showcase-coords {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, monospace;
  font-size: 0.7rem;
  color: #94A3B8;
  background: rgba(8, 14, 26, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 4px 8px;
  border-radius: 6px;
  backdrop-filter: blur(8px);
}

.comuna-showcase-caption {
  position: absolute;
  bottom: 14px;
  left: 16px;
  right: 16px;
  color: #FFFFFF;
  pointer-events: none;
}

.comuna-showcase-landmark {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 2px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.comuna-showcase-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 6px;
}

.comuna-showcase-info {
  padding: 16px 20px;
  background: #0D1527;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.comuna-showcase-stat {
  display: flex;
  flex-direction: column;
}

.comuna-showcase-stat-val {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: #4ADE80;
}

.comuna-showcase-stat-lbl {
  font-size: 0.72rem;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

/* --- TE1 PROCESS SECTION --- */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

.process-step {
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-md);
  padding: 30px 22px;
  position: relative;
  box-shadow: var(--shadow-card), inset 0 1px 0 0 rgba(255, 255, 255, 0.85);
  transition: var(--transition-normal);
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover), 0 0 0 1px rgba(35, 87, 164, 0.1);
}

.step-badge {
  width: 44px;
  height: 44px;
  background: linear-gradient(180deg, #1E293B 0%, #0F172A 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.15rem;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.process-step:first-child .step-badge {
  background: linear-gradient(180deg, #FF7A24 0%, #E65A08 100%);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 14px rgba(243, 112, 33, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

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

/* --- FAQ ACCORDION --- */
.faq-list {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--volt-light-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item.is-active {
  border-color: var(--volt-orange);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--volt-dark);
}

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--volt-light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--volt-orange);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-item.is-active .faq-icon {
  transform: rotate(180deg);
  background: var(--volt-orange);
  color: #FFFFFF;
}

.faq-answer {
  display: none;
  padding: 0 24px 22px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-item.is-active .faq-answer {
  display: block;
}

/* --- CTA BANNER (24/7 EMERGENCY - 2026 AMBIENT FLARE) --- */
.cta-emergency-banner {
  background: linear-gradient(135deg, #080D1A 0%, #121A2E 50%, #0F1626 100%);
  color: var(--text-white);
  border-radius: var(--radius-lg);
  padding: 50px 36px;
  margin: 40px auto;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-dark), inset 0 1px 0 0 rgba(255, 255, 255, 0.16);
}

.cta-emergency-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(243, 112, 33, 0.16) 0%, transparent 65%);
  pointer-events: none;
}

.cta-emergency-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .cta-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 900;
  margin-bottom: 10px;
}

.cta-content p {
  color: var(--text-muted-dark);
  font-size: 1.05rem;
  max-width: 550px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* --- QUOTE CARD & FORM (2026 PRECISION STYLING) --- */
.quote-card-wrapper {
  background: #FFFFFF !important;
  border: 1px solid rgba(226, 232, 240, 0.9) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 12px 36px -4px rgba(15, 23, 42, 0.08), inset 0 1px 0 0 rgba(255, 255, 255, 0.9) !important;
  transition: var(--transition-normal);
}

.whatsapp-case-form input,
.whatsapp-case-form select,
.whatsapp-case-form textarea {
  transition: border-color 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease;
  border: 1px solid #CBD5E1 !important;
}

.whatsapp-case-form input:focus,
.whatsapp-case-form select:focus,
.whatsapp-case-form textarea:focus {
  outline: none;
  border-color: var(--brand-blue) !important;
  background-color: #FFFFFF !important;
  box-shadow: 0 0 0 3.5px rgba(35, 87, 164, 0.12), inset 0 1px 2px rgba(0, 0, 0, 0.02) !important;
}

/* --- FOOTER --- */
.site-footer {
  background: var(--volt-dark);
  color: var(--text-muted-dark);
  padding: 70px 0 30px;
  border-top: 1px solid var(--volt-dark-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

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

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 2fr 1.2fr 1.2fr 1.6fr;
  }
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 20px;
  position: relative;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--volt-orange);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--volt-dark-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  font-size: 0.85rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    text-align: left;
  }
}

/* --- STICKY MOBILE ACTION BAR (HIGH CONVERSION) --- */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  box-sizing: border-box;
  height: calc(62px + env(safe-area-inset-bottom, 0px));
  background: rgba(8, 13, 26, 0.94);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 7px 10px calc(7px + env(safe-area-inset-bottom, 0px)) 10px;
  z-index: 9999;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

@media (min-width: 769px) {
  .mobile-sticky-bar {
    display: none !important;
  }
}

.mobile-action-btn {
  flex: 1 1 0;
  min-width: 0;
  max-width: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 46px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: clamp(0.74rem, 3.2vw, 0.88rem);
  letter-spacing: -0.01em;
  color: #FFFFFF;
  padding: 0 8px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.mobile-action-btn svg {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
}

.mobile-btn-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  min-width: 0;
}

.mobile-action-btn:active {
  transform: scale(0.97);
  filter: brightness(0.95);
}

.mobile-call-btn {
  background: linear-gradient(180deg, #FF7A24 0%, #E65A08 100%);
  box-shadow: 0 2px 12px var(--volt-orange-glow), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.mobile-whatsapp-btn {
  background: linear-gradient(180deg, #2ED76E 0%, #1DA851 100%);
  box-shadow: 0 2px 12px rgba(37, 211, 102, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

/* --- MOBILE DRAWER NAVIGATION --- */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100%;
  background: var(--volt-dark);
  color: var(--text-white);
  z-index: 10000;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-drawer.is-open {
  right: 0;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.drawer-close {
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.5rem;
  cursor: pointer;
}

.drawer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 30px;
}

.drawer-nav a {
  font-size: 1.1rem;
  font-weight: 700;
}

.drawer-nav a:hover {
  color: var(--volt-orange);
}

/* --- ANIMATIONS --- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- VOLTEDGE SIGNATURE VISUAL SERVICES GRID --- */
.voltedge-services-section {
  padding: 85px 0;
  background: #090E17;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.voltedge-services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.voltedge-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

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

/* Base Service Card */
.voltedge-card {
  position: relative;
  height: 310px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  background: #0D1424;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.voltedge-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(243, 112, 33, 0.3);
}

.voltedge-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
  filter: brightness(0.92) contrast(102%);
}

.voltedge-card:hover .voltedge-card-img {
  transform: scale(1.06);
  filter: brightness(1.02);
}

/* Top-Right Corner Notch */
.voltedge-card-notch {
  position: absolute;
  top: 0;
  right: 0;
  width: 58px;
  height: 58px;
  background: #090E17;
  border-bottom-left-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.voltedge-notch-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: all 0.3s ease;
}

.voltedge-card:hover .voltedge-notch-icon {
  background: var(--volt-orange);
  color: #FFFFFF;
  transform: rotate(45deg);
}

/* Card 2 Highlight (Emergency Services) */
.voltedge-card.is-emergency .voltedge-card-notch {
  background: #090E17;
}

.voltedge-card.is-emergency .voltedge-notch-icon {
  background: var(--volt-orange);
  color: #FFFFFF;
}

/* Bottom Tab Label */
.voltedge-card-tab {
  position: relative;
  z-index: 2;
  margin-top: auto;
  align-self: flex-start;
  background: #FFFFFF;
  color: #0B111E;
  padding: 13px 22px;
  border-top-right-radius: 20px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  transition: all 0.25s ease;
  max-width: 90%;
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .voltedge-card-tab {
    padding: 10px 16px;
    font-size: clamp(0.86rem, 3.4vw, 0.98rem);
    max-width: 88%;
  }
}

.voltedge-card:hover .voltedge-card-tab {
  color: var(--volt-orange);
}

.voltedge-card.is-emergency .voltedge-card-tab {
  background: var(--volt-orange);
  color: #FFFFFF;
}

/* Special Card 8: 24/7 Promo Card */
.voltedge-promo-card {
  position: relative;
  height: 310px;
  border-radius: 20px;
  overflow: hidden;
  background: #FFFFFF;
  color: #0B111E;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.voltedge-promo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55), 0 0 0 2px var(--volt-orange);
}

.voltedge-promo-notch {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: var(--volt-orange);
  border-bottom-left-radius: 24px;
}

.voltedge-promo-icon {
  width: 48px;
  height: 48px;
  border: 2px solid #0B111E;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0B111E;
}

.voltedge-promo-big {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 900;
  color: var(--volt-orange);
  line-height: 1;
  margin-bottom: 8px;
}

.voltedge-promo-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: #0B111E;
  line-height: 1.25;
  margin-bottom: 6px;
}

.voltedge-promo-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--volt-blue);
}
