/* ===== PrimeVolt Design System ===== */
/* Color Palette:
   --navy:        #0A1628  (dark navy background)
   --navy-mid:    #0F2140  (mid navy)
   --blue-deep:   #162D50  (deep blue)
   --blue-electric: #1E90FF (electric blue accent)
   --blue-glow:   #4DA8FF  (lighter blue glow)
   --yellow:      #FFD036  (energy yellow)
   --yellow-hover:#FFBA08  (hover yellow)
   --white:       #FFFFFF
   --gray-50:     #F7F8FA  (lightest bg)
   --gray-100:    #EEF0F4
   --gray-200:    #D1D5DB
   --gray-400:    #9CA3AF
   --gray-600:    #6B7280
   --gray-800:    #374151
   --green-whats: #25D366  (WhatsApp green)
   --green-hover: #1DA851
*/

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

:root {
  --navy: #0A0A0A;
  --navy-mid: #161616;
  --blue-deep: #2B2B2B;
  --blue-electric: #FFC400;
  --blue-glow: #E6A800;
  --yellow: #FFC400;
  --yellow-hover: #E6A800;
  --white: #FFFFFF;
  --gray-50: #F7F8FA;
  --gray-100: #EEF0F4;
  --gray-200: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-600: #6B7280;
  --gray-800: #374151;
  --green-whats: #25D366;
  --green-hover: #1DA851;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.14);
  --shadow-xl: 0 16px 48px rgba(0,0,0,.18);
  --shadow-glow: 0 0 20px rgba(255,196,0,.25);
  --transition-fast: .2s ease;
  --transition-med: .35s ease;
  --transition-slow: .5s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-800);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: transparent; }

/* ===== UTILITY ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 80px 0; }
.text-center { text-align: center; }

/* Section Headers */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(30,144,255,.1);
  color: var(--blue-electric);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-badge svg { width: 14px; height: 14px; fill: currentColor; }

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title span { color: var(--blue-electric); }
.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--yellow);
  color: var(--navy);
  padding: 14px 32px;
  box-shadow: 0 4px 16px rgba(255,208,54,.3);
}
.btn-primary:hover {
  background: var(--yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,208,54,.4);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border: 2px solid rgba(255,255,255,.3);
}
.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.1);
}
.btn-whatsapp {
  background: var(--green-whats);
  color: var(--white);
  padding: 14px 28px;
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.btn-whatsapp:hover {
  background: var(--green-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
}
.btn-whatsapp svg { width: 20px; height: 20px; fill: #fff; }

.btn-outline-blue {
  background: transparent;
  color: var(--blue-electric);
  padding: 12px 24px;
  border: 2px solid var(--blue-electric);
}
.btn-outline-blue:hover {
  background: var(--blue-electric);
  color: var(--white);
}
.btn-sm { padding: 10px 20px; font-size: .9rem; }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,22,40,.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: all var(--transition-med);
}
.site-header.scrolled {
  background: rgba(10,22,40,.98);
  box-shadow: 0 4px 32px rgba(0,0,0,.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
  flex-shrink: 0;
}
.logo-image {
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}
.site-header .logo-image { height: 44px; }
.site-footer .logo-image { height: 54px; }
.logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-hover));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon svg { width: 22px; height: 22px; }
.logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
}
.logo-text em {
  font-style: normal;
  color: var(--yellow);
}

/* Nav */
.main-nav { display: flex; gap: 4px; }
.main-nav a {
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.nav-cta {
  background: var(--yellow) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 10px 20px !important;
}
.nav-cta:hover {
  background: var(--yellow-hover) !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.menu-toggle span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-fast);
}
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .25;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,22,40,.95) 0%,
    rgba(15,33,64,.85) 40%,
    rgba(22,45,80,.75) 100%
  );
}
/* Animated grid effect */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,144,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,144,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}
/* Glow orb */
.hero::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,144,255,.15), transparent 70%);
  top: -100px; right: -100px;
  z-index: 1;
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 20px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 100px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text { max-width: 560px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(30,144,255,.15);
  border: 1px solid rgba(30,144,255,.25);
  border-radius: 100px;
  color: var(--blue-glow);
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeInDown .6s ease;
}
.hero-badge svg { width: 14px; height: 14px; fill: var(--yellow); }

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeInUp .6s ease .1s both;
}
.hero h1 span {
  background: linear-gradient(135deg, var(--yellow), #FFA800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin-bottom: 32px;
  animation: fadeInUp .6s ease .2s both;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
  animation: fadeInUp .6s ease .3s both;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 40px;
  animation: fadeInUp .6s ease .4s both;
}
.hero-stat {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-stat-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(30,144,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-stat-icon svg { width: 20px; height: 20px; fill: var(--blue-glow); }
.hero-stat-text h4 {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.hero-stat-text p {
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  animation: fadeIn 1s ease .3s both;
}
.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.4);
  max-width: 480px;
  width: 100%;
}
.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  z-index: 1;
}
/* Floating badge on image */
.hero-float-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(10,22,40,.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  animation: float 5s ease-in-out infinite;
}
.hero-float-badge .pulse {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--green-whats);
  position: relative;
}
.hero-float-badge .pulse::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--green-whats);
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}
.hero-float-badge p {
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
}
.hero-float-badge small {
  color: rgba(255,255,255,.5);
  font-size: .75rem;
}

/* ===== NEEDS SECTION ===== */
.needs { background: var(--gray-50); }
.needs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.need-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  border: 1px solid var(--gray-100);
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.need-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-electric), var(--yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-med);
}
.need-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.need-card:hover::before { transform: scaleX(1); }

.need-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  transition: all var(--transition-fast);
}
.need-card:hover .need-icon { transform: scale(1.1); }
.need-icon.home-icon { background: rgba(30,144,255,.1); color: var(--blue-electric); }
.need-icon.office-icon { background: rgba(255,208,54,.12); color: var(--yellow-hover); }
.need-icon.factory-icon { background: rgba(16,185,129,.1); color: #10B981; }
.need-icon.electrician-icon { background: rgba(139,92,246,.1); color: #8B5CF6; }

.need-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.need-card p {
  font-size: .92rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.need-card .btn { width: 100%; justify-content: center; }

/* ===== ABOUT ===== */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.about-content h2 span { color: var(--blue-electric); }
.about-text {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 32px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}
.about-feature:hover { background: rgba(30,144,255,.06); }
.about-feature-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--blue-electric);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-feature-icon svg { width: 16px; height: 16px; fill: var(--white); }
.about-feature span {
  font-size: .92rem;
  font-weight: 600;
  color: var(--navy);
}

.about-visual {
  position: relative;
}
.about-img-box {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-img-box img { width: 100%; }
.about-stat-float {
  position: absolute;
  top: -20px; right: -20px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-xl);
  text-align: center;
}
.about-stat-float h4 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.about-stat-float p {
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  margin-top: 4px;
}

/* ===== PRODUCTS / CATEGORIES ===== */
.categories { background: var(--gray-50); }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.cat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  text-align: center;
  border: 1px solid var(--gray-100);
  transition: all var(--transition-med);
  cursor: pointer;
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-electric);
}
.cat-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: rgba(30,144,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: all var(--transition-fast);
}
.cat-card:hover .cat-icon {
  background: var(--blue-electric);
}
.cat-icon svg { width: 26px; height: 26px; fill: var(--blue-electric); transition: fill var(--transition-fast); }
.cat-card:hover .cat-icon svg { fill: var(--white); }
.cat-card h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

/* ===== ELECTRICIANS ===== */
.electricians {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-deep) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.electricians::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,208,54,.08), transparent 70%);
  bottom: -100px; left: -100px;
}
.electricians .section-title { color: var(--white); }
.electricians .section-subtitle { color: rgba(255,255,255,.6); }

.elec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.elec-text p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  line-height: 1.8;
  margin-bottom: 32px;
}
.elec-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.elec-highlight {
  display: flex;
  align-items: center;
  gap: 14px;
}
.elec-highlight-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,208,54,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.elec-highlight-icon svg { width: 18px; height: 18px; fill: var(--yellow); }
.elec-highlight span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.elec-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.elec-stat-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  backdrop-filter: blur(8px);
  transition: all var(--transition-fast);
}
.elec-stat-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  transform: translateX(6px);
}
.elec-stat-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.elec-stat-icon svg { width: 24px; height: 24px; }
.elec-stat-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}
.elec-stat-card p {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  margin-top: 2px;
}

/* ===== BRANDS ===== */
.brands { background: var(--white); }
.brands-track {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.brand-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 24px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  transition: all var(--transition-fast);
}
.brand-card:hover {
  border-color: var(--blue-electric);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.brand-card span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-600);
  transition: color var(--transition-fast);
}
.brand-card:hover span { color: var(--navy); }

/* ===== DIFFERENTIALS ===== */
.differentials { background: var(--gray-50); }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.diff-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--gray-100);
  transition: all var(--transition-med);
  text-align: center;
}
.diff-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.diff-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  background: rgba(30,144,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all var(--transition-fast);
}
.diff-card:hover .diff-icon {
  background: var(--blue-electric);
}
.diff-icon svg { width: 28px; height: 28px; fill: var(--blue-electric); transition: fill var(--transition-fast); }
.diff-card:hover .diff-icon svg { fill: var(--white); }
.diff-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.diff-card p {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #0D2547 50%, var(--blue-deep) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,208,54,.08), transparent 70%);
  top: -200px; right: -100px;
}
.cta-banner::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,144,255,.06), transparent 70%);
  bottom: -200px; left: -100px;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.cta-banner h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.cta-banner h2 span { color: var(--yellow); }
.cta-banner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 36px;
  line-height: 1.7;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== LOCATION ===== */
.location { background: var(--white); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.location-info { display: flex; flex-direction: column; gap: 20px; }
.location-info h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.location-info > p {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 8px;
}
.loc-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}
.loc-item:hover { background: rgba(30,144,255,.05); }
.loc-item-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--blue-electric);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.loc-item-icon svg { width: 18px; height: 18px; fill: var(--white); }
.loc-item-text h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
}
.loc-item-text p {
  font-size: .9rem;
  color: var(--gray-600);
  margin-top: 2px;
}
.loc-item-text a {
  color: var(--blue-electric);
  font-weight: 600;
  transition: color var(--transition-fast);
}
.loc-item-text a:hover { color: var(--navy); }

.loc-buttons {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 400px;
  position: relative;
}
.location-media {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.location-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--navy-mid);
}
.location-photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== QUOTE FORM ===== */
.quote-form-section { background: var(--gray-50); }
.quote-form-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}
.quote-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  color: var(--gray-800);
  background: var(--white);
  transition: all var(--transition-fast);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-electric);
  box-shadow: 0 0 0 4px rgba(30,144,255,.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: .92rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}
.footer-social a:hover {
  background: var(--blue-electric);
  transform: translateY(-2px);
}
.footer-social a svg { width: 18px; height: 18px; fill: rgba(255,255,255,.7); }
.footer-social a:hover svg { fill: var(--white); }

.footer-col h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  transition: color var(--transition-fast);
}
.footer-col a:hover { color: var(--yellow); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: .85rem;
  color: rgba(255,255,255,.35);
}

/* ===== WHATSAPP FLOATING ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--green-whats);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: all var(--transition-fast);
  animation: whatsapp-pulse 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37,211,102,.5);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: var(--white); }

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.4); }
  50% { box-shadow: 0 6px 32px rgba(37,211,102,.6), 0 0 0 12px rgba(37,211,102,.1); }
}

/* Mobile fixed CTA */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 12px 16px;
  gap: 10px;
}
.mobile-cta .btn { flex: 1; text-align: center; font-size: .9rem; padding: 12px 16px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all .7s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PAGE-SPECIFIC: Inner Page Hero ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-deep) 100%);
  color: var(--white);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,144,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,144,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
}
.page-hero h1 span { color: var(--yellow); }
.page-hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,.7);
  max-width: 600px;
  margin: 0 auto;
}

/* Inner page content sections */
.page-content { padding: 80px 0; }
.page-content.alt-bg { background: var(--gray-50); }

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--gray-100);
  transition: all var(--transition-med);
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.benefit-card .diff-icon { margin: 0 auto 16px; }
.benefit-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.benefit-card p {
  font-size: .9rem;
  color: var(--gray-600);
}

/* Content block with image */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.content-split.reverse { direction: rtl; }
.content-split.reverse > * { direction: ltr; }
.content-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
}
.content-text h2 span { color: var(--blue-electric); }
.content-text p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 24px;
}
.content-text ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.content-text ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  color: var(--gray-800);
  font-weight: 500;
}
.content-text ul li svg { width: 20px; height: 20px; fill: var(--green-whats); flex-shrink: 0; }

.content-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.content-image img { width: 100%; }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-grid .quote-form-wrap {
  max-width: none;
  margin: 0;
}

/* ===== BIO PAGE ===== */
.bio-page-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(255,196,0,.16), transparent 28%),
    radial-gradient(circle at bottom left, rgba(230,168,0,.14), transparent 32%),
    linear-gradient(160deg, #0A0A0A 0%, #161616 60%, #2B2B2B 100%);
}
.bio-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
}
.bio-shell {
  width: 100%;
  max-width: 560px;
  padding: 32px;
  border-radius: 28px;
  background: rgba(10,10,10,.88);
  border: 1px solid rgba(184,134,11,.45);
  box-shadow: 0 18px 48px rgba(255,196,0,.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.bio-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.bio-brand-image {
  width: 100%;
  max-width: 220px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(255,196,0,.18));
}
.bio-logo {
  justify-content: center;
  margin-bottom: 0;
}
.bio-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,196,0,.08);
  color: #FFC400;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0 auto 18px;
  border: 1px solid rgba(184,134,11,.35);
}
.bio-title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  line-height: 1.12;
  font-weight: 900;
  color: var(--white);
  text-align: center;
  margin-bottom: 16px;
}
.bio-description {
  max-width: 440px;
  margin: 0 auto 24px;
  text-align: center;
  color: #D9D9D9;
  font-size: 1rem;
  line-height: 1.7;
}
.bio-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 28px;
}
.bio-pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: #161616;
  color: #D9D9D9;
  font-size: .85rem;
  font-weight: 600;
  border: 1px solid rgba(184,134,11,.25);
}
.bio-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bio-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: #161616;
  border: 1px solid rgba(184,134,11,.28);
  color: var(--white);
  transition: all var(--transition-fast);
}
.bio-link:hover {
  transform: translateY(-2px);
  background: #1C1C1C;
  border-color: rgba(255,196,0,.55);
  box-shadow: 0 10px 24px rgba(255,196,0,.08);
}
.bio-link-primary {
  background: linear-gradient(90deg, #FFC400 0%, #E6A800 50%, #B8860B 100%);
  color: var(--navy);
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(255,196,0,.22);
}
.bio-link-primary .bio-link-copy strong,
.bio-link-primary .bio-link-copy small,
.bio-link-primary svg {
  color: #0A0A0A;
  fill: #0A0A0A;
}
.bio-link-primary:hover {
  background: linear-gradient(90deg, #E6A800 0%, #FFC400 50%, #B8860B 100%);
  border-color: transparent;
}
.bio-link-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.bio-link-copy strong {
  font-size: 1rem;
  font-weight: 800;
}
.bio-link-copy small {
  font-size: .82rem;
  font-weight: 600;
  color: #D9D9D9;
}
.bio-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}
.bio-footer {
  margin-top: 24px;
  text-align: center;
  color: #D9D9D9;
  font-size: .9rem;
  line-height: 1.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-text { max-width: 100%; margin: 0 auto; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .needs-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .elec-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-split { grid-template-columns: 1fr; }
  .content-split.reverse { direction: ltr; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    transform: translateY(-120%);
    transition: transform var(--transition-med);
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 12px 16px; }
  .menu-toggle { display: flex; }
  .site-header .logo-image { height: 38px; }
  .site-footer .logo-image { height: 48px; }

  .hero { min-height: auto; }
  .hero-content { padding: 120px 0 80px; }
  .hero h1 { font-size: 2rem; }
  .hero-stats { flex-direction: column; gap: 16px; }

  .needs-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .location-map { height: 300px; }
  .location-photo img { height: 240px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .loc-buttons { flex-direction: column; }
  .about-features { grid-template-columns: 1fr; }

  .mobile-cta { display: flex; }
  .whatsapp-float { bottom: 80px; }

  .quote-form-wrap { padding: 32px 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-pad { padding: 64px 0; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .bio-shell { padding: 24px 18px; }
  .bio-title { font-size: 1.8rem; }
  .bio-link { padding: 16px; }
}
