/* ==========================================================================
   ASHI - PERSONAL DIGITAL MARKETING PORTFOLIO
   Design System: Luxury Black (#000000) • Electric Green (#3ACC05) • White
   Aesthetic: Cinematic, Futuristic, Glassmorphism, Bold Typography, Generous Spacing
   ========================================================================== */

:root {
  --color-black: #000000;
  --color-dark-surface: #070707;
  --color-card-bg: rgba(14, 14, 16, 0.75);
  --color-card-border: rgba(255, 255, 255, 0.08);
  --color-card-border-hover: rgba(58, 204, 5, 0.5);
  
  --color-electric: #3ACC05;
  --color-electric-glow: rgba(58, 204, 5, 0.4);
  --color-electric-soft: rgba(58, 204, 5, 0.12);
  --color-electric-dark: #2fa604;
  
  --color-text-primary: #FFFFFF;
  --color-text-secondary: #D4D4D8;
  --color-text-muted: #8E8E93;

  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* CSS Reset & Defaults */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-black);
  color: var(--color-text-primary);
  font-family: var(--font-sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--color-black);
  color: var(--color-text-primary);
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
}

/* Selection Color */
::selection {
  background-color: var(--color-electric);
  color: #000000;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #050505;
}
::-webkit-scrollbar-thumb {
  background: #222222;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-electric);
}

/* Typography Helpers */
.font-display {
  font-family: var(--font-display);
}

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

.glow-text {
  text-shadow: 0 0 24px rgba(58, 204, 5, 0.55);
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

/* Ambient Background Lights */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events-none;
  opacity: 0.18;
}

.glow-1 {
  width: 600px;
  height: 600px;
  background: var(--color-electric);
  top: -100px;
  right: -100px;
  animation: pulse-ambient 8s ease-in-out infinite alternate;
}

.glow-2 {
  width: 500px;
  height: 500px;
  background: #1e7003;
  top: 40%;
  left: -200px;
  animation: pulse-ambient 12s ease-in-out infinite alternate-reverse;
}

.glow-3 {
  width: 700px;
  height: 700px;
  background: var(--color-electric);
  bottom: -200px;
  right: 15%;
  animation: pulse-ambient 10s ease-in-out infinite alternate;
}

@keyframes pulse-ambient {
  0% { transform: scale(1) translate(0, 0); opacity: 0.14; }
  100% { transform: scale(1.15) translate(30px, 40px); opacity: 0.22; }
}

/* Subtle Futuristic Grid Pattern Overlay */
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 50% 50%, black 40%, transparent 95%);
  pointer-events-none;
}

/* Custom Cursor Follower */
.custom-cursor {
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--color-electric);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, width 0.2s, height 0.2s, background-color 0.2s;
  box-shadow: 0 0 15px rgba(58, 204, 5, 0.35);
}

.custom-cursor-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-electric);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
}

.cursor-hover {
  width: 48px;
  height: 48px;
  background-color: rgba(58, 204, 5, 0.15);
  border-color: var(--color-electric);
}

/* ==================== NAVIGATION ==================== */
header#navbar {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header#navbar.scrolled {
  background: rgba(0, 0, 0, 0.88);
  border-bottom: 1px solid rgba(58, 204, 5, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.brand-avatar {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
  border: 1.5px solid var(--color-electric);
  box-shadow: 0 0 14px rgba(58, 204, 5, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s;
}

.group:hover .brand-avatar {
  transform: scale(1.05) rotate(3deg);
  box-shadow: 0 0 22px rgba(58, 204, 5, 0.6);
}

.glow-dot {
  text-shadow: 0 0 12px var(--color-electric);
}

.glass-nav {
  background: rgba(18, 18, 20, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #A1A1AA;
  text-decoration: none;
  transition: color 0.25s, text-shadow 0.25s;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #FFFFFF;
  text-shadow: 0 0 12px rgba(58, 204, 5, 0.5);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-electric);
  box-shadow: 0 0 8px var(--color-electric);
  transition: width 0.25s var(--ease-smooth);
}

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

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 9999px;
  background: rgba(58, 204, 5, 0.08);
  border: 1px solid rgba(58, 204, 5, 0.3);
  font-size: 0.75rem;
  font-weight: 600;
  color: #E4E4E7;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-electric);
  box-shadow: 0 0 10px var(--color-electric);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(58, 204, 5, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 6px rgba(58, 204, 5, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(58, 204, 5, 0); }
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-electric);
  color: #000000;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 9999px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  box-shadow: 0 0 25px rgba(58, 204, 5, 0.45);
  transition: all 0.3s var(--ease-smooth);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #46e808;
  box-shadow: 0 0 35px rgba(58, 204, 5, 0.75);
}

.btn-primary-sm {
  display: inline-flex;
  align-items: center;
  background: var(--color-electric);
  color: #000000;
  font-weight: 700;
  font-size: 0.8125rem;
  padding: 8px 18px;
  border-radius: 9999px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  box-shadow: 0 0 15px rgba(58, 204, 5, 0.35);
  transition: all 0.25s;
}

.btn-primary-sm:hover {
  transform: translateY(-1px);
  background: #46e808;
  box-shadow: 0 0 25px rgba(58, 204, 5, 0.6);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 9999px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  transition: all 0.3s var(--ease-smooth);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(58, 204, 5, 0.1);
  border-color: var(--color-electric);
  box-shadow: 0 0 20px rgba(58, 204, 5, 0.3);
}

/* Mobile Drawer */
.mobile-drawer {
  background: rgba(8, 8, 10, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(58, 204, 5, 0.3);
}

.mobile-nav-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: #D4D4D8;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-nav-link:hover {
  color: var(--color-electric);
  padding-left: 8px;
}

/* ==================== HERO SECTION & PHOTO ==================== */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(58, 204, 5, 0.08);
  border: 1px solid rgba(58, 204, 5, 0.3);
  padding: 7px 18px;
  border-radius: 9999px;
  backdrop-filter: blur(8px);
}

.badge-icon {
  color: var(--color-electric);
  font-size: 0.85rem;
  filter: drop-shadow(0 0 6px var(--color-electric));
}

.badge-text {
  font-size: 0.775rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #F4F4F5;
}

/* Hero Photo Component */
.hero-photo-glow {
  position: absolute;
  width: 420px;
  height: 540px;
  background: radial-gradient(circle, rgba(58, 204, 5, 0.38) 0%, rgba(58, 204, 5, 0.1) 45%, transparent 75%);
  filter: blur(60px);
  border-radius: 40px;
  z-index: 0;
  animation: breathe 5s ease-in-out infinite alternate;
}

@keyframes breathe {
  0% { transform: scale(0.95); opacity: 0.7; }
  100% { transform: scale(1.05); opacity: 1; }
}

.hero-photo-wrapper {
  position: relative;
  z-index: 1;
  max-width: 380px;
  width: 100%;
  transition: transform 0.4s var(--ease-smooth);
}

.hero-photo-wrapper:hover {
  transform: translateY(-6px);
}

.hero-border-accent {
  position: absolute;
  inset: -2px;
  background: linear-gradient(145deg, #3ACC05 0%, rgba(58, 204, 5, 0.3) 40%, rgba(255, 255, 255, 0.1) 100%);
  border-radius: 32px;
  z-index: 1;
  opacity: 0.9;
  filter: drop-shadow(0 0 20px rgba(58, 204, 5, 0.35));
}

.hero-image-frame {
  position: relative;
  z-index: 2;
  border-radius: 30px;
  overflow: hidden;
  background: #09090b;
  aspect-ratio: 9 / 14;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.9);
}

.hero-person-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transform: scale(1);
  transition: transform 0.6s var(--ease-smooth);
}

.hero-photo-wrapper:hover .hero-person-img {
  transform: scale(1.03);
}

.hero-image-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 55%,
    rgba(0, 0, 0, 0.4) 80%,
    rgba(0, 0, 0, 0.85) 100%
  );
  pointer-events-none;
}

/* Floating Badges on Hero Photo */
.floating-badge {
  position: absolute;
  z-index: 10;
  background: rgba(14, 14, 16, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(58, 204, 5, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 15px rgba(58, 204, 5, 0.2);
  border-radius: 16px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float-badge 4s ease-in-out infinite alternate;
}

.badge-top-right {
  top: 24px;
  right: -24px;
  animation-delay: 0.5s;
}

.badge-bottom-left {
  bottom: 60px;
  left: -28px;
  animation-delay: 1.2s;
}

.badge-bottom-pill {
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 9999px;
  padding: 8px 18px;
  white-space: nowrap;
  animation: none;
}

@keyframes float-badge {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.badge-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(58, 204, 5, 0.12);
  border: 1px solid rgba(58, 204, 5, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ==================== TICKER MARQUEE ==================== */
.marquee-track {
  animation: marquee 30s linear infinite;
  width: max-content;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==================== GLASS CARDS & SECTIONS ==================== */
.section-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3.25rem;
  }
}

.section-subtitle {
  font-size: 1.05rem;
  color: #A1A1AA;
  max-width: 640px;
  line-height: 1.6;
}

.glass-card {
  background: var(--color-card-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--color-card-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transition: all 0.3s var(--ease-smooth);
}

.glass-card:hover {
  border-color: var(--color-card-border-hover);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(58, 204, 5, 0.18);
}

.glass-card-lg {
  background: rgba(12, 12, 14, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

/* ==================== SERVICES CARDS ==================== */
.service-card {
  position: relative;
  background: rgba(14, 14, 16, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.35s var(--ease-smooth);
  display: flex;
  flex-col: column;
  overflow: hidden;
}

.service-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-electric), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(58, 204, 5, 0.45);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(58, 204, 5, 0.15);
}

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

.service-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(58, 204, 5, 0.09);
  border: 1.5px solid rgba(58, 204, 5, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 15px rgba(58, 204, 5, 0.2);
  transition: transform 0.3s;
}

.service-card:hover .service-icon-box {
  transform: scale(1.08);
  box-shadow: 0 0 25px rgba(58, 204, 5, 0.45);
}

.service-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-electric);
  margin-bottom: 0.5rem;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.service-description {
  font-size: 0.875rem;
  color: #A1A1AA;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.service-list {
  list-style: none;
  space-y: 8px;
  margin-bottom: 1.5rem;
  font-size: 0.8125rem;
  color: #D4D4D8;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.service-list li span {
  color: var(--color-electric);
  font-size: 0.75rem;
}

.service-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.tech-badge {
  font-size: 0.7rem;
  padding: 3px 9px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: #A1A1AA;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* ==================== ROI CALCULATOR ==================== */
.custom-slider {
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 9999px;
  background: #27272A;
  outline: none;
  cursor: pointer;
  transition: background 0.2s;
}

.custom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-electric);
  box-shadow: 0 0 12px var(--color-electric);
  cursor: pointer;
  transition: transform 0.15s;
}

.custom-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

/* ==================== SKILLS & BARS ==================== */
.skill-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  overflow: hidden;
  position: relative;
}

.skill-fill {
  height: 100%;
  background: linear-gradient(90deg, #248003 0%, #3ACC05 100%);
  border-radius: 9999px;
  box-shadow: 0 0 10px var(--color-electric);
  transition: width 1.2s var(--ease-smooth);
}

.stack-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 9999px;
  background: rgba(20, 20, 24, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #D4D4D8;
  transition: all 0.25s;
}

.stack-chip:hover {
  border-color: var(--color-electric);
  background: rgba(58, 204, 5, 0.1);
  color: #FFFFFF;
  box-shadow: 0 0 15px rgba(58, 204, 5, 0.25);
  transform: translateY(-2px);
}

/* ==================== CASE STUDIES (CHALLENGE -> STRATEGY -> RESULT) ==================== */
.filter-btn {
  padding: 8px 18px;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #A1A1AA;
  cursor: pointer;
  transition: all 0.25s;
}

.filter-btn:hover {
  color: #FFFFFF;
  border-color: rgba(58, 204, 5, 0.4);
}

.filter-btn.active {
  background: var(--color-electric);
  color: #000000;
  border-color: var(--color-electric);
  box-shadow: 0 0 15px rgba(58, 204, 5, 0.4);
}

.case-card {
  background: rgba(14, 14, 16, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
  transition: all 0.35s var(--ease-smooth);
}

.case-card:hover {
  transform: translateY(-6px);
  border-color: rgba(58, 204, 5, 0.5);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.85), 0 0 30px rgba(58, 204, 5, 0.2);
}

.case-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-electric);
  background: rgba(58, 204, 5, 0.1);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(58, 204, 5, 0.25);
}

.case-timeframe {
  font-size: 0.75rem;
  color: #71717A;
  font-mono: true;
}

.case-metrics-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 12px;
  margin: 1.25rem 0;
  text-align: center;
}

.metric-num {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
}

.metric-lbl {
  font-size: 0.675rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #8E8E93;
  margin-top: 2px;
}

.case-csr-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.csr-block {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.4);
  border-left: 3px solid #333333;
}

.csr-challenge {
  border-left-color: #ef4444;
}

.csr-strategy {
  border-left-color: #3b82f6;
}

.csr-result {
  border-left-color: var(--color-electric);
  background: rgba(58, 204, 5, 0.05);
}

.csr-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #E4E4E7;
  margin-bottom: 4px;
}

.csr-icon {
  font-size: 0.85rem;
}

.csr-text {
  font-size: 0.8125rem;
  color: #A1A1AA;
  line-height: 1.55;
}

.case-card-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.btn-case-detail {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  color: #E4E4E7;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-case-detail:hover {
  background: rgba(58, 204, 5, 0.1);
  border-color: var(--color-electric);
  color: #FFFFFF;
}

/* ==================== STATS CARDS & RESULTS WALL ==================== */
.stat-card {
  position: relative;
  background: rgba(14, 14, 16, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2rem;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(58, 204, 5, 0.4);
}

.stat-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 100px;
  height: 100px;
  background: var(--color-electric);
  filter: blur(50px);
  opacity: 0.15;
  pointer-events-none;
}

.stat-number {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.stat-badge-pill {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.06);
  padding: 3px 9px;
  border-radius: 9999px;
}

/* ==================== TESTIMONIAL SLIDER ==================== */
.testimonial-slide {
  transition: opacity 0.4s ease-in-out;
}

.dot-btn {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #333333;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
}

.dot-btn.active {
  background: var(--color-electric);
  box-shadow: 0 0 10px var(--color-electric);
  width: 24px;
  border-radius: 9999px;
}

.slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
}

.slider-btn:hover {
  background: var(--color-electric);
  color: #000000;
  border-color: var(--color-electric);
  box-shadow: 0 0 15px rgba(58, 204, 5, 0.4);
}

/* ==================== INSIGHT CARDS ==================== */
.insight-card {
  background: rgba(14, 14, 16, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: all 0.3s var(--ease-smooth);
}

.insight-card:hover {
  transform: translateY(-6px);
  border-color: rgba(58, 204, 5, 0.45);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(58, 204, 5, 0.15);
}

.insight-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-electric);
  margin-bottom: 0.5rem;
}

.insight-meta {
  font-size: 0.75rem;
  color: #71717A;
  margin-bottom: 0.75rem;
}

.insight-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.insight-excerpt {
  font-size: 0.85rem;
  color: #A1A1AA;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.insight-read-more {
  display: inline-flex;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-electric);
  margin-top: auto;
}

/* ==================== CONTACT FORM & CHANNELS ==================== */
.contact-channel-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.25s;
}

.contact-channel-item:hover {
  border-color: rgba(58, 204, 5, 0.4);
  background: rgba(58, 204, 5, 0.05);
}

.channel-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(58, 204, 5, 0.1);
  border: 1px solid rgba(58, 204, 5, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.social-circle-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #D4D4D8;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s;
}

.social-circle-btn:hover {
  background: var(--color-electric);
  color: #000000;
  border-color: var(--color-electric);
  box-shadow: 0 0 15px rgba(58, 204, 5, 0.4);
  transform: translateY(-2px);
}

.form-label {
  display: block;
  font-size: 0.775rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #D4D4D8;
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 12px 16px;
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.form-input:focus {
  border-color: var(--color-electric);
  box-shadow: 0 0 15px rgba(58, 204, 5, 0.25);
}

.form-input::placeholder {
  color: #52525B;
}

.service-checkbox-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #D4D4D8;
  cursor: pointer;
  transition: all 0.2s;
}

.service-checkbox-btn:has(input:checked) {
  border-color: var(--color-electric);
  background: rgba(58, 204, 5, 0.12);
  color: #FFFFFF;
  box-shadow: 0 0 10px rgba(58, 204, 5, 0.2);
}

.service-checkbox-btn input {
  accent-color: var(--color-electric);
}

/* ==================== MODALS ==================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: modal-fade 0.25s ease-out;
}

.modal-backdrop.hidden {
  display: none;
}

.modal-card {
  background: #0e0e11;
  border: 1px solid rgba(58, 204, 5, 0.35);
  border-radius: 24px;
  padding: 2.5rem;
  max-width: 720px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(58, 204, 5, 0.2);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: #FFFFFF;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.modal-close:hover {
  background: var(--color-electric);
  color: #000000;
}

@keyframes modal-fade {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.animate-fade-in-up {
  animation: fadeInUp 0.8s var(--ease-smooth) forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

/* Responsive adjustments */
@media (max-width: 1024px) {
  .hero-photo-wrapper {
    max-width: 340px;
    margin-top: 1.5rem;
  }
  .badge-top-right {
    right: -10px;
  }
  .badge-bottom-left {
    left: -10px;
  }
}

@media (max-width: 640px) {
  .section-title {
    font-size: 2rem;
  }
  .hero-photo-wrapper {
    max-width: 290px;
  }
  .badge-top-right,
  .badge-bottom-left {
    display: none;
  }
  .badge-bottom-pill {
    bottom: -12px;
    padding: 6px 14px;
    font-size: 0.65rem;
  }
  .case-metrics-bar {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
