/* 
 * Integrity Electrical - Electric Blue / Chrome Design System 
 * Reference: Agency High-Conversion Style
 */

/* --- Variables & Tokens --- */
:root {
  --color-electric: #00fcdb;
  --color-electric-dim: rgba(0, 252, 219, 0.1);
  --color-deep-slate: #111827;
  --color-surface: #1f2937;
  --color-chrome: #e5e7eb;
  --font-primary: 'Inter', sans-serif;
}

/* --- Global Reset & Base --- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: #f8fafc;
  color: var(--color-deep-slate);
  -webkit-font-smoothing: antialiased;
}

/* --- Typography Overrides --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
  letter-spacing: -0.025em;
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(0, 252, 219, 0.3);
  }

  50% {
    box-shadow: 0 0 35px rgba(0, 252, 219, 0.5);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

/* --- Utility Animations --- */
.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

/* Staggered delays */
.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

.delay-400 {
  animation-delay: 0.4s;
}

/* --- Component: Buttons --- */
.btn-primary {
  background: linear-gradient(135deg, var(--color-electric) 0%, #00d4ba 100%);
  color: #0f172a;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 252, 219, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

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

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

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 252, 219, 0.4);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-secondary:hover {
  border-color: var(--color-electric);
  color: var(--color-electric);
  background-color: rgba(0, 252, 219, 0.08);
  transform: translateY(-2px);
}

/* Light mode secondary button */
.btn-secondary-light {
  background-color: transparent;
  border: 2px solid var(--color-deep-slate);
  color: var(--color-deep-slate);
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.btn-secondary-light:hover {
  background-color: var(--color-deep-slate);
  color: white;
  transform: translateY(-2px);
}

/* --- Component: Cards --- */
.card-glass {
  background: rgba(31, 41, 55, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.card-hover {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
  transform: translateY(-8px);
  border-color: var(--color-electric);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Service cards */
.service-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  background: white;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-electric), #00d4ba);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-6px);
}

/* Glass Panel for Forms/Modals */
.glass-panel {
  background: rgba(31, 41, 55, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Scroll Logo Strip */
.logo-scroll-container {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.logo-scroll-content {
  display: inline-block;
  animation: scrollLeft 30s linear infinite;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* --- Component: Forms --- */
.form-input {
  width: 100%;
  background-color: #f9fafb;
  border: 2px solid #e5e7eb;
  color: #111827;
  padding: 0.875rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.25s ease;
  font-weight: 500;
}

.form-input::placeholder {
  color: #9ca3af;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-electric);
  box-shadow: 0 0 0 4px rgba(0, 252, 219, 0.15);
  background-color: white;
}

/* Dark mode inputs */
.form-input.dark-mode {
  background-color: rgba(17, 24, 39, 0.8);
  border-color: #374151;
  color: white;
}

.form-input.dark-mode::placeholder {
  color: #6b7280;
}

.form-input.dark-mode:focus {
  border-color: var(--color-electric);
  background-color: rgba(17, 24, 39, 0.95);
}

/* --- Utilities --- */
.text-electric {
  color: var(--color-electric);
}

.text-gradient {
  background: linear-gradient(135deg, white 0%, var(--color-electric) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glow-soft {
  text-shadow: 0 0 30px rgba(0, 252, 219, 0.4);
}

.glow-box {
  box-shadow: 0 0 30px rgba(0, 252, 219, 0.2);
}

/* --- Accent Elements --- */
.accent-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-electric), #00d4ba);
  border-radius: 2px;
}

.accent-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-electric);
  border-radius: 50%;
  display: inline-block;
}

/* --- Modal Transitions --- */
#modal-overlay {
  transition: opacity 0.3s ease;
}

#modal-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.modal-container {
  transform: scale(0.95) translateY(10px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

#modal-overlay:not(.hidden) .modal-container {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* --- Mobile Menu --- */
.mobile-menu-wrapper {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(17, 24, 39, 0.98);
  backdrop-filter: blur(10px);
  z-index: 40;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-wrapper.open {
  transform: translateX(0);
}

/* --- Floating Action Button --- */
.fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.fab:hover {
  transform: scale(1.1);
  animation: none;
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Hero Enhancements --- */
.hero-gradient {
  background: linear-gradient(135deg, var(--color-deep-slate) 0%, #1a2332 50%, var(--color-deep-slate) 100%);
}

/* --- Stats Counter Animation --- */
.stat-number {
  display: inline-block;
  transition: transform 0.3s ease;
}

.stat-number:hover {
  transform: scale(1.1);
  color: white;
}

/* --- Link Hover Effects --- */
.link-hover {
  position: relative;
}

.link-hover::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-electric);
  transition: width 0.3s ease;
}

.link-hover:hover::after {
  width: 100%;
}

/* ===========================================
   UI ENHANCEMENT PASS - Premium Animations
   =========================================== */

/* --- Trust Badge Animations --- */
@keyframes badge-scale-in {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes badge-glow-breathe {

  0%,
  100% {
    filter: drop-shadow(0 0 4px rgba(0, 252, 219, 0.3));
  }

  50% {
    filter: drop-shadow(0 0 12px rgba(0, 252, 219, 0.6));
  }
}

.trust-badge {
  transition: all 0.3s ease;
  animation: badge-scale-in 0.6s ease-out forwards;
}

.trust-badge:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 0 15px rgba(0, 252, 219, 0.5));
}

.trust-badge-primary {
  animation: badge-scale-in 0.6s ease-out forwards, badge-glow-breathe 3s ease-in-out infinite 0.6s;
}

/* --- Enhanced Stats Bar --- */
.stats-section {
  position: relative;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-electric), transparent);
}

.stats-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-electric), transparent);
}

.stat-item {
  position: relative;
  padding: 0 1rem;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50%;
  background: linear-gradient(180deg, transparent, rgba(0, 252, 219, 0.4), transparent);
}

.stat-number-enhanced {
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  transition: all 0.3s ease;
  position: relative;
}

.stat-number-enhanced::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-electric);
  transition: width 0.3s ease;
}

.stat-number-enhanced:hover::after {
  width: 60%;
}

.stat-number-enhanced:hover {
  transform: scale(1.05);
  text-shadow: 0 0 20px rgba(0, 252, 219, 0.5);
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.stat-item:hover .stat-label {
  opacity: 1;
}

/* --- Scroll Reveal Enhanced --- */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.scroll-reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* --- Card Depth Enhancement --- */
.card-depth {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.card-depth:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 252, 219, 0.1);
  transform: translateY(-4px);
}

/* --- Mobile Nav Text Visibility --- */
@media (max-width: 1023px) {

  nav .flex.items-center.gap-3 span,
  nav .flex.items-center.gap-3 div {
    display: flex !important;
  }

  nav .hidden.md\\:flex {
    display: flex !important;
  }
}

/* Company name always visible in navbar */
nav a.flex.items-center.gap-3>div {
  display: flex !important;
  flex-direction: column;
}

/* --- Section Divider Glow --- */
.section-glow-top {
  position: relative;
}

.section-glow-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, rgba(0, 252, 219, 0.05), transparent);
  pointer-events: none;
}

/* --- Micro-Animation Enhancements --- */
@keyframes subtle-pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.85;
  }
}

.pulse-subtle {
  animation: subtle-pulse 2s ease-in-out infinite;
}

/* Icon breathing effect */
.icon-breathe {
  animation: badge-glow-breathe 4s ease-in-out infinite;
}

/* --- Form Focus Enhancement --- */
.form-input:focus {
  box-shadow: 0 0 0 4px rgba(0, 252, 219, 0.2), 0 4px 20px rgba(0, 252, 219, 0.1);
}

/* --- Footer Social Icons --- */
footer a[href="#"]:hover i {
  transform: scale(1.2);
  filter: drop-shadow(0 0 8px var(--color-electric));
}

footer a[href="#"] i {
  transition: all 0.3s ease;
}

/* ===========================================
   HIGH-ENERGY UI / CONVERSION AUGMENTATION
   =========================================== */

/* --- Electric Flicker Animation --- */
@keyframes electric-flicker {

  0%,
  100% {
    opacity: 1;
  }

  5% {
    opacity: 0.8;
  }

  10% {
    opacity: 1;
  }

  15% {
    opacity: 0.9;
  }

  20% {
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

  52% {
    opacity: 0.7;
  }

  54% {
    opacity: 1;
  }
}

@keyframes electric-pulse {

  0%,
  100% {
    box-shadow: 0 0 5px rgba(0, 252, 219, 0.4),
      0 0 10px rgba(0, 252, 219, 0.2),
      0 0 20px rgba(0, 252, 219, 0.1);
  }

  50% {
    box-shadow: 0 0 10px rgba(0, 252, 219, 0.6),
      0 0 25px rgba(0, 252, 219, 0.4),
      0 0 40px rgba(0, 252, 219, 0.2);
  }
}

@keyframes electric-border {

  0%,
  100% {
    border-color: rgba(0, 252, 219, 0.5);
  }

  50% {
    border-color: rgba(0, 252, 219, 1);
  }
}

@keyframes glow-breathe-intense {

  0%,
  100% {
    filter: drop-shadow(0 0 3px rgba(0, 252, 219, 0.5));
    transform: scale(1);
  }

  50% {
    filter: drop-shadow(0 0 15px rgba(0, 252, 219, 0.8));
    transform: scale(1.02);
  }
}

@keyframes cta-attention {

  0%,
  90%,
  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(0, 252, 219, 0.25);
  }

  93% {
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(0, 252, 219, 0.5);
  }

  96% {
    transform: scale(0.98);
    box-shadow: 0 4px 20px rgba(0, 252, 219, 0.35);
  }
}

/* --- Electric Text Classes --- */
.electric-flicker {
  animation: electric-flicker 3s ease-in-out infinite;
}

.electric-text {
  text-shadow: 0 0 10px rgba(0, 252, 219, 0.5),
    0 0 20px rgba(0, 252, 219, 0.3);
  animation: glow-breathe-intense 2s ease-in-out infinite;
}

/* --- CTA Button Intensification --- */
.btn-primary {
  animation: electric-pulse 3s ease-in-out infinite;
  position: relative;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  border: 2px solid transparent;
  background: linear-gradient(135deg, rgba(0, 252, 219, 0.5), transparent, rgba(0, 252, 219, 0.3)) border-box;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-primary:hover {
  animation: none;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 35px rgba(0, 252, 219, 0.5),
    0 0 50px rgba(0, 252, 219, 0.2);
}

.btn-primary:active {
  transform: translateY(-2px) scale(0.99);
}

/* --- Mobile Sticky CTA --- */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 45;
  padding: 1rem 1.5rem;
  background: linear-gradient(180deg, transparent 0%, rgba(17, 24, 39, 0.95) 20%);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: none;
}

.mobile-sticky-cta.visible {
  transform: translateY(0);
}

.mobile-sticky-cta .btn-primary {
  animation: cta-attention 12s ease-in-out infinite;
}

@media (max-width: 1023px) {
  .mobile-sticky-cta {
    display: block;
  }
}

/* --- Floating Action Button Enhanced --- */
.fab-conversion {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 55;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-electric) 0%, #00d4ba 100%);
  color: #0f172a;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 252, 219, 0.4);
  animation: float 3s ease-in-out infinite, electric-pulse 2s ease-in-out infinite;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fab-conversion:hover {
  animation: none;
  transform: scale(1.15);
  box-shadow: 0 8px 40px rgba(0, 252, 219, 0.6);
}

.fab-conversion::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--color-electric);
  animation: electric-border 1.5s ease-in-out infinite;
}

@media (max-width: 1023px) {
  .fab-conversion {
    bottom: 5rem;
  }
}

/* --- Conversion Modal Enhanced --- */
.conversion-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.conversion-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.conversion-modal {
  background: linear-gradient(145deg, rgba(31, 41, 55, 0.95), rgba(17, 24, 39, 0.98));
  border: 1px solid rgba(0, 252, 219, 0.3);
  border-radius: 1.5rem;
  max-width: 480px;
  width: 100%;
  position: relative;
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(0, 252, 219, 0.15);
  overflow: hidden;
}

.conversion-modal-overlay.active .conversion-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.conversion-modal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-electric), #00d4ba, var(--color-electric));
  background-size: 200% 100%;
  animation: shimmer 2s linear infinite;
}

.conversion-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}

.conversion-modal-close:hover {
  background: rgba(0, 252, 219, 0.2);
  color: var(--color-electric);
  border-color: var(--color-electric);
}

.conversion-modal-header {
  padding: 2rem 2rem 1rem;
  text-align: center;
}

.conversion-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 252, 219, 0.1);
  border: 1px solid rgba(0, 252, 219, 0.3);
  border-radius: 2rem;
  color: var(--color-electric);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  animation: electric-flicker 4s ease-in-out infinite;
}

.conversion-modal-title {
  color: white;
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.conversion-modal-subtitle {
  color: #9ca3af;
  font-size: 0.9rem;
}

.conversion-modal-body {
  padding: 1rem 2rem 2rem;
}

.conversion-modal-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* --- Offer Badge Electric --- */
.offer-badge-electric {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, rgba(0, 252, 219, 0.2), rgba(0, 212, 186, 0.1));
  border: 1px solid rgba(0, 252, 219, 0.4);
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  color: var(--color-electric);
  font-weight: 700;
  animation: electric-pulse 2s ease-in-out infinite, electric-flicker 4s ease-in-out infinite;
}

/* --- Section Energy Dividers --- */
.energy-divider {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(0, 252, 219, 0.1) 20%,
      rgba(0, 252, 219, 0.5) 50%,
      rgba(0, 252, 219, 0.1) 80%,
      transparent 100%);
}

.energy-divider::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--color-electric);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-electric);
  animation: electric-flicker 2s ease-in-out infinite;
}

/* --- Stats Powered Effect --- */
.stat-powered {
  position: relative;
}

.stat-powered::before {
  content: '';
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle, rgba(0, 252, 219, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: pulse-glow 3s ease-in-out infinite;
}

.stat-powered:hover::before {
  opacity: 1;
}

/* --- Trust Badge Energy --- */
.trust-badge-energy {
  animation: glow-breathe-intense 3s ease-in-out infinite;
  transition: all 0.3s ease;
}

.trust-badge-energy:hover {
  animation: none;
  filter: drop-shadow(0 0 20px rgba(0, 252, 219, 0.8));
  transform: scale(1.1);
}

/* ===========================================
   CUSTOM SELECT DROPDOWN - MODERN GLASS UI
   =========================================== */

/* Custom select wrapper */
.custom-select-wrapper {
  position: relative;
  width: 100%;
}

/* Style the native select to look premium */
.custom-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  background-color: rgba(17, 24, 39, 0.8);
  border: 2px solid #374151;
  color: white;
  padding: 0.875rem 3rem 0.875rem 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
  font-family: var(--font-primary);
  cursor: pointer;
  transition: all 0.25s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2300fcdb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 18px;
}

.custom-select::-ms-expand {
  display: none;
}

/* Placeholder option style */
.custom-select option[value=""][disabled] {
  color: #6b7280;
}

.custom-select option {
  background-color: #1f2937;
  color: white;
  padding: 0.75rem;
}

.custom-select:hover {
  border-color: rgba(0, 252, 219, 0.5);
  background-color: rgba(17, 24, 39, 0.95);
}

.custom-select:focus {
  outline: none;
  border-color: var(--color-electric);
  box-shadow: 0 0 0 4px rgba(0, 252, 219, 0.2), 0 4px 20px rgba(0, 252, 219, 0.1);
  background-color: rgba(17, 24, 39, 0.95);
}

/* Light mode variant */
.custom-select.light-mode {
  background-color: #f9fafb;
  border-color: #e5e7eb;
  color: #111827;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23111827' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

.custom-select.light-mode option {
  background-color: white;
  color: #111827;
}

.custom-select.light-mode:hover {
  border-color: var(--color-electric);
}

.custom-select.light-mode:focus {
  border-color: var(--color-electric);
  background-color: white;
}

/* ===========================================
   FOOTER POLISH - CENTERED COPYRIGHT
   =========================================== */

.footer-copyright-row {
  text-align: center;
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright-text {
  color: rgba(229, 231, 235, 0.4);
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.footer-trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.footer-trust-badges img {
  height: 1.75rem;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.footer-trust-badges img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* ===========================================
   ENHANCED ALIGNMENT & POLISH
   =========================================== */

/* Card grid alignment */
.grid-align-center {
  display: grid;
  align-items: stretch;
}

.grid-align-center>* {
  display: flex;
  flex-direction: column;
}

/* Consistent section padding rhythm */
.section-rhythm {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

@media (max-width: 768px) {
  .section-rhythm {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

/* Icon centering utility */
.icon-center {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Enhanced trust badge sizing for hero */
.trust-badge-hero {
  height: 3rem;
  width: auto;
}

@media (min-width: 768px) {
  .trust-badge-hero {
    height: 3.5rem;
  }
}

/* Smooth scroll enhancement */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

/* Focus visible for accessibility */
:focus-visible {
  outline: 2px solid var(--color-electric);
  outline-offset: 2px;
}

/* Improved text rendering */
body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}