/* ===== Electric Minimal — Stripped Effects ===== */

/* ===== Hide ALL decorative background elements ===== */
.hero-mesh,
.floating-orb,
.hero-mouse-glow,
.hero-glow,
.hero-glow-1,
.hero-glow-2,
.section-blob,
.section-blob-left,
.section-blob-right,
.hero-bg-grid,
.cursor-glow {
  display: none !important;
}

/* ===== Gradient text — static purple on one word ===== */
.gradient-text-animated {
  background: linear-gradient(135deg, #7C3AED, #5B21B6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: none;
  position: relative;
  display: inline-block;
}

/* No underline animation — clean */
.gradient-text-animated::after {
  display: none;
}

/* ===== Glass morphism cards — simplified ===== */
.glass-card {
  background: #fff;
  border: 1px solid var(--border-subtle);
  transition: all var(--transition);
}

.glass-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow);
}

[data-theme="dark"] .glass-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .glass-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(124, 58, 237, 0.3);
}

/* ===== Gradient border — disabled ===== */
.gradient-border::before {
  display: none;
}

/* ===== Service card hover — no gradient border spin, just subtle border ===== */
.service-card::before,
.card::before {
  display: none;
}

/* ===== Shimmer — disabled ===== */
.stat-shimmer::after {
  display: none;
}

/* ===== Counter glow — disabled ===== */
.counter.counted {
  text-shadow: none;
}

/* ===== Photo — no breathing animation, hover to color ===== */
.hero-photo-frame {
  animation: none;
}

.hero-photo-frame img {
  transition: filter 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-photo-frame:hover img {
  filter: grayscale(0%) !important;
}

/* ===== Reveal animation — gentle ===== */
.reveal-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ===== Prefers reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  .gradient-text-animated {
    animation: none !important;
  }
  .hero-photo-frame {
    animation: none !important;
  }
  .reveal-up {
    opacity: 1;
    transform: none;
  }
}
