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

/* ===== CSS VARIABLES ===== */
:root {
  --bg: #0B0B0F;
  --bg-2: #12121A;
  --bg-3: #1A1A26;
  --surface: rgba(255,255,255,0.04);
  --surface-hover: rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(255,255,255,0.18);
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255,255,255,0.7);
  --text-muted: #94A3B8;
  --accent: #7C3AED;
  --accent-2: #A855F7;
  --accent-glow: rgba(124, 58, 237, 0.3);
  --green: #22C55E;
  --blue: #3b82f6;
  --max-width: 1200px;
  --radius-card: 24px;
  --radius-btn: 12px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: all 0.7s var(--ease);
}

/* ===== RESET ===== */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Particle Canvas */
#particleCanvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* Cursor Glow */
.cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: transform 0.1s linear;
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 140px 0;
  position: relative;
  z-index: 1;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.2rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 3rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(99,102,241,0.12);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(99,102,241,0.25);
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, #818cf8 0%, #c084fc 50%, #f0abfc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
@keyframes scrollLine {
  0% { height: 0; opacity: 1; }
  100% { height: 60px; opacity: 0; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.05); }
}

.reveal-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

.delay-0 { transition-delay: 0s; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.3s ease;
  border-radius: inherit;
}

.btn:hover::after {
  background: rgba(255,255,255,0.08);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  box-shadow: 0 0 30px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 40px rgba(99,102,241,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  box-shadow: 0 0 30px rgba(34,197,94,0.25);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 40px rgba(34,197,94,0.4);
}

.btn-call {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  box-shadow: 0 0 30px rgba(59,130,246,0.25);
}

.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 40px rgba(59,130,246,0.4);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

.btn-full { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(8,10,15,0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 14px 40px;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-logo:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
}

.logo-wm {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  letter-spacing: 0.12em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
}

.logo-ave {
  color: #a855f7;
  text-shadow: 
    0 0 5px rgba(168, 85, 247, 0.9),
    0 0 12px rgba(168, 85, 247, 0.7),
    0 0 25px rgba(168, 85, 247, 0.5),
    0 0 45px rgba(168, 85, 247, 0.3),
    0 0 80px rgba(168, 85, 247, 0.1);
  animation: premiumPulse 4s ease-in-out infinite;
}

.logo-nor {
  color: #ffffff;
  text-shadow: 
    0 0 4px rgba(255, 255, 255, 0.4),
    0 0 12px rgba(168, 85, 247, 0.2);
}

.logo-wm-lg {
  font-size: 4rem;
  margin-bottom: 24px;
}

@keyframes premiumPulse {
  0%, 100% {
    text-shadow: 
      0 0 5px rgba(168, 85, 247, 0.9),
      0 0 12px rgba(168, 85, 247, 0.6),
      0 0 30px rgba(168, 85, 247, 0.3);
    opacity: 0.95;
    transform: scale(1);
  }
  50% {
    text-shadow: 
      0 0 12px rgba(192, 132, 252, 1),
      0 0 30px rgba(168, 85, 247, 0.8),
      0 0 60px rgba(168, 85, 247, 0.5),
      0 0 110px rgba(168, 85, 247, 0.2);
    opacity: 1;
    transform: scale(1.02);
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--text-primary); }

.nav-cta {
  background: rgba(99,102,241,0.15) !important;
  color: var(--accent) !important;
  padding: 8px 18px;
  border-radius: var(--radius-btn);
  border: 1px solid rgba(99,102,241,0.3) !important;
}

.nav-cta:hover {
  background: var(--accent) !important;
  color: white !important;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 4px;
}

@media (max-width: 768px) {
  .mobile-menu-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 30px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-links.active {
    display: flex;
  }
  .nav { padding: 12px 20px; }
  .hero-heading { font-size: 40px; }
  .hero-sub { font-size: 16px; margin-bottom: 32px; }
  .hero-split { 
    padding: 120px 0 60px; 
    align-items: flex-start;
    min-height: auto;
  }
}

/* ===== HERO SPLIT ===== */
.hero-split {
  position: relative;
  min-height: 100vh;
  padding: 180px 0 100px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: var(--bg);
}

.hero-bg-animated {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.radial-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  animation: floatGlow 15s infinite alternate ease-in-out;
}
.glow-1 {
  width: 600px; height: 600px;
  background: var(--accent);
  top: -100px; right: -100px;
}
.glow-2 {
  width: 500px; height: 500px;
  background: var(--blue);
  bottom: -200px; left: 30%;
  animation-delay: -5s;
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.hero-split-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* Left Side */
.hero-content-left {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}
.badge-dot-green {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--green);
}

.hero-heading {
  font-size: clamp(3rem, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.gradient-text-purple {
  background: linear-gradient(to right, var(--accent-2), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-purple {
  color: var(--accent);
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 48px;
}
.btn-primary-glow {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  padding: 16px 32px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 30px var(--accent-glow);
  transition: all 0.3s ease;
  display: inline-block;
}
.btn-primary-glow:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 15px 40px var(--accent-glow);
}
.btn-glass-outline {
  background: var(--surface);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 16px 32px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  display: inline-block;
}
.btn-glass-outline:hover {
  background: rgba(255,255,255,0.1);
}

/* ===== PREMIUM TRUST SECTION ===== */
.premium-trust-section {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background: radial-gradient(circle at 50% -20%, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
}
.premium-trust-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.premium-stats-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.p-stat-card {
  background: rgba(10, 10, 15, 0.4);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.p-stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(124, 58, 237, 0.4);
}
.p-stat-icon-wrapper {
  background: rgba(124, 58, 237, 0.05);
  padding: 14px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 15px rgba(124, 58, 237, 0.1);
}
.p-stat-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.p-stat-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #c084fc;
  margin: 0 0 4px 0;
  line-height: 1;
}
.p-stat-title {
  font-size: 13px;
  color: #f8fafc;
  font-weight: 500;
  margin: 0 0 6px 0;
}
.p-stat-sub {
  font-size: 11px;
  color: #94a3b8;
  margin: 0;
}

/* Premium Divider */
.premium-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 60px auto;
  max-width: 800px;
}
.p-line {
  flex-grow: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(124, 58, 237, 0.5), transparent);
}
.p-star {
  padding: 0 16px;
  animation: pulseGlow 3s infinite alternate;
}

/* Premium Logos */
.premium-logos-wrapper {
  background: rgba(10, 10, 15, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 60px 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.premium-logos-wrapper::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%; height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.premium-logos-wrapper::after {
  content: '';
  position: absolute;
  top: 0; right: -20%;
  width: 60%; height: 150%;
  background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
  z-index: 0;
  pointer-events: none;
}

.p-bg-elements {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.p-bg-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 100%);
  animation: bgPan 20s linear infinite;
}
.p-bg-noise {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>');
  opacity: 0.03;
  mix-blend-mode: overlay;
}
@keyframes bgPan {
  0% { transform: translateY(0); }
  100% { transform: translateY(30px); }
}

.premium-trust-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 50px;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 2;
}

.premium-logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  position: relative;
  z-index: 2;
}

.p-logo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  padding: 0 40px;
  transition: transform 350ms cubic-bezier(.22,1,.36,1);
  cursor: pointer;
}

.p-logo-icon {
  width: 64px;
  height: 64px;
  background: #ffffff; /* White background hides white borders on Collins/PFM */
  border: 2px solid rgba(124, 58, 237, 0.8);
  border-radius: 50%; /* Circle clips the dark edges of Platinum/Green Nature */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(124, 58, 237, 0.4), inset 0 0 10px rgba(124, 58, 237, 0.2);
  transition: all 350ms cubic-bezier(.22,1,.36,1);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.p-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the circular logos fill the space and clip their backgrounds */
  transition: all 350ms ease;
}

.p-logo-col:hover {
  transform: translateY(-6px) scale(1.08);
}
.p-logo-col:hover .p-logo-icon {
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.7), inset 0 0 15px rgba(124, 58, 237, 0.3);
  border-color: #a78bfa;
}
.p-logo-col:hover svg {
  stroke: #fff;
}
.p-logo-col:hover .p-logo-img {
  transform: scale(1.05);
}

.p-logo-text {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 4px;
}

.p-l-main {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.12em;
  transition: color 350ms ease;
}
.p-logo-col:hover .p-l-main {
  color: rgba(255, 255, 255, 0.92);
}

.p-l-sub {
  font-size: 10px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.05em;
}

.p-logo-floor-glow {
  position: absolute;
  bottom: -15px;
  width: 40px;
  height: 4px;
  background: rgba(124, 58, 237, 0.8);
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.6;
  transition: all 350ms ease;
  z-index: 1;
}
.p-logo-col:hover .p-logo-floor-glow {
  opacity: 1;
  width: 60px;
  filter: blur(12px);
  background: rgba(167, 139, 250, 1);
}

.p-logo-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(transparent, rgba(255,255,255,0.12), transparent);
}

@media (max-width: 1024px) {
  .premium-stats-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .premium-stats-cards { grid-template-columns: 1fr; }
  
  /* Horizontal Carousel for Logos on Mobile */
  .premium-logos-row { 
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 24px;
    margin: 0 -24px;
    padding-left: 24px;
    padding-right: 24px;
    gap: 40px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  
  .premium-logos-row::-webkit-scrollbar {
    height: 4px;
  }
  .premium-logos-row::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    margin: 0 24px;
  }
  .premium-logos-row::-webkit-scrollbar-thumb {
    background: rgba(124, 58, 237, 0.4);
    border-radius: 4px;
  }
  
  .p-logo-col {
    flex: 0 0 auto;
    padding: 0;
    scroll-snap-align: center;
  }
  
  .p-logo-divider {
    display: none;
  }
}

/* Right Side - 3D Mockup */
.hero-content-right {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 20px;
}
.mockup-scene {
  perspective: 1500px;
  width: 100%;
  max-width: 640px;
}
.mockup-container {
  position: relative;
  transform: rotateY(-20deg) rotateX(12deg);
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out;
}
.browser-bar {
  background: var(--bg-3);
  padding: 12px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-bottom: none;
}
.browser-bar .dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.browser-bar .red { background: #ff5f56; }
.browser-bar .yellow { background: #ffbd2e; }
.browser-bar .green { background: #27c93f; }
.url-bar {
  margin-left: 20px;
  background: rgba(0,0,0,0.4);
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 12px;
  color: var(--text-muted);
}
.mockup-img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.hero-bg-sphere {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, #7C3AED 0%, #3b82f6 100%);
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  z-index: -1;
  animation: pulseGlow 4s ease-in-out infinite alternate;
}
@keyframes pulseGlow {
  0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.4; }
  100% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.6; }
}

.mockup-particles {
  position: absolute; width: 100%; height: 100%; top: 0; left: 0; z-index: 0; pointer-events: none;
}
.m-particle {
  position: absolute;
  width: 4px; height: 4px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px #fff, 0 0 20px var(--accent);
  opacity: 0.5;
}
.p1 { top: 10%; left: 20%; animation: float 5s infinite ease-in-out; }
.p2 { top: 80%; left: 80%; animation: float 7s infinite ease-in-out; }
.p3 { top: 20%; right: 10%; animation: float 6s infinite ease-in-out reverse; }
.p4 { bottom: 10%; left: 10%; animation: float 4s infinite ease-in-out; }


/* Glass Cards */
.glass-card {
  position: absolute;
  background: rgba(15, 15, 20, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: inset 0 0 20px rgba(255,255,255,0.02), 0 30px 60px rgba(0,0,0,0.6);
  transform: translateZ(80px);
  z-index: 10;
}
.card-header {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.card-title { font-size: 36px; font-weight: 700; color: #fff; line-height: 1; letter-spacing: -1px;}
.card-subtitle { font-size: 15px; font-weight: 500; color: #fff; }
.card-subtext { font-size: 13px; color: var(--text-muted); display: block; margin-top: 6px;}
.card-icon-title { font-size: 14px; font-weight: 500; margin-bottom: 8px; color: #fff; opacity: 0.9;}
.stars { display: flex; gap: 2px; margin-bottom: 6px;}
.card-val { font-size: 36px; font-weight: 700; color: #fff; line-height: 1; letter-spacing: -1px; margin-bottom: 4px;}
.card-label-row { display: flex; align-items: center; gap: 6px; }

.card-top-right { top: -20px; right: -40px; }
.card-left { top: 40%; left: -60px; }
.card-bottom-left { bottom: 20px; left: -20px; }
.card-bottom-right { bottom: -20px; right: -20px; }

.card-progress { display: flex; align-items: center; gap: 12px; margin-top: 12px;}
.circular-chart { width: 50px; height: 50px; }
.circle-bg { fill: none; stroke: rgba(255,255,255,0.1); stroke-width: 2.5; }
.circle { fill: none; stroke: url(#circle-grad); stroke-width: 2.5; stroke-linecap: round; }
.percentage { font-size: 24px; font-weight: 700; color:#fff;}
.percentage .small { font-size: 12px; color: var(--text-muted); font-weight: 400;}
.smooth-chart { width: 100%; height: auto; margin-top: 8px;}

.float-1 { animation: float 6s ease-in-out infinite; }
.float-2 { animation: float 7s ease-in-out infinite 1s; }
.float-3 { animation: float 5s ease-in-out infinite 2s; }
.float-4 { animation: float 8s ease-in-out infinite 0.5s; }

@keyframes float {
  0%, 100% { transform: translateZ(80px) translateY(0px); }
  50% { transform: translateZ(80px) translateY(-15px); }
}
@keyframes floatGlow {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

@media (max-width: 992px) {
  .hero-split {
    align-items: flex-start;
    min-height: auto;
    padding: 140px 0 80px;
  }
  .hero-split-container {
    grid-template-columns: 1fr;
    gap: 80px;
    padding-top: 10px;
  }
  .hero-content-right { padding-top: 0; }
  .hero-heading { font-size: 48px; }
  .mockup-scene { perspective: none; margin: 0 auto;}
  .mockup-container { transform: none !important; }
  .glass-card { display: none; }
}

/* ===== STATS STRIP ===== */
.stats-strip {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 24px;
}

.stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 0 60px;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #818cf8, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-plus, .stat-extra {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  vertical-align: super;
  background: linear-gradient(135deg, #818cf8, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .stats-inner { flex-wrap: wrap; gap: 32px; }
  .stat-item { padding: 0 24px; }
  .stat-divider { display: none; }
}

/* ===== TRUST STRIP (Marquee) ===== */
.trust-strip {
  overflow: hidden;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  position: relative;
  z-index: 1;
}

.trust-scroll {
  width: 100%;
  overflow: hidden;
}

.trust-scrolling {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
  width: max-content;
}

.trust-scrolling span {
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ===== PORTFOLIO ===== */
.portfolio {
  background: var(--bg);
}

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

@media (max-width: 768px) {
  .portfolio-grid { grid-template-columns: 1fr; }
}

.portfolio-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.portfolio-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(99,102,241,0.15);
}

.card-image-wrap {
  position: relative;
  overflow: hidden;
}

.portfolio-image {
  width: 100%;
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: top center;
  transition: transform 0.8s var(--ease);
}

.portfolio-card:hover .portfolio-image {
  transform: scale(1.06);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,10,15,0.65);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-card:hover .card-overlay {
  opacity: 1;
}

.overlay-btn {
  background: white;
  color: var(--bg);
  padding: 12px 28px;
  border-radius: 100px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  transform: translateY(10px);
  transition: transform 0.4s var(--ease);
}

.portfolio-card:hover .overlay-btn {
  transform: translateY(0);
}

.card-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(8,10,15,0.75);
  backdrop-filter: blur(8px);
  color: var(--text-secondary);
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
}

.portfolio-info {
  padding: 28px 32px;
}

.portfolio-info h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.portfolio-info p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.3s ease, color 0.3s;
}

.card-link span {
  transition: transform 0.3s ease;
}

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

/* ===== CAPABILITIES ===== */
.capabilities {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

@media (max-width: 768px) {
  .cap-grid { grid-template-columns: 1fr; }
}

.cap-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: var(--transition);
}

.cap-card:hover {
  border-color: var(--border-hover);
  background: rgba(99,102,241,0.05);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.cap-image-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.cap-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s var(--ease);
  display: block;
}

.cap-card:hover .cap-image {
  transform: scale(1.05);
}

.cap-body {
  padding: 32px 36px;
}

.cap-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.cap-body p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== PROCESS ===== */
.process {
  background: var(--bg);
}

.process-timeline {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 5rem;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 48px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  transition: var(--transition);
  position: relative;
}

.process-step:hover {
  border-color: rgba(99,102,241,0.4);
  background: rgba(99,102,241,0.06);
  transform: translateY(-6px);
}

.process-step-num {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, rgba(99,102,241,0.3), rgba(139,92,246,0.3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.2rem;
  line-height: 1;
}

.process-step h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.process-step p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.process-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, rgba(99,102,241,0.4), rgba(139,92,246,0.4));
  flex-shrink: 0;
  position: relative;
}

.process-connector::after {
  content: '';
  position: absolute;
  right: -6px;
  top: -4px;
  width: 10px;
  height: 10px;
  background: var(--accent-2);
  border-radius: 50%;
}

@media (max-width: 768px) {
  .process-timeline { flex-direction: column; gap: 16px; }
  .process-connector {
    width: 2px; height: 40px;
    background: linear-gradient(180deg, rgba(99,102,241,0.4), rgba(139,92,246,0.4));
  }
  .process-connector::after { right: -4px; top: auto; bottom: -6px; }
}

/* ===== ABOUT ===== */
.about {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}

.about-body {
  margin-top: 1.5rem;
}

.about-body p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.about-body strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Offer Box */
.offer-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.offer-glow {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(99,102,241,0.2) 0%, transparent 70%);
  pointer-events: none;
  animation: pulse-glow 3s ease-in-out infinite;
}

.offer-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
  animation: float 3s ease-in-out infinite;
}

.offer-box h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.offer-box p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.offer-box strong { color: var(--text-primary); }

.offer-list {
  list-style: none;
  margin-bottom: 2.5rem;
  text-align: left;
}

.offer-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.offer-list li:last-child { border-bottom: none; }

/* ===== FINAL CTA ===== */
.final-cta {
  background: linear-gradient(135deg, #0f0b2a, #0d1117);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  padding: 140px 24px;
}

.cta-glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: pulse-glow 4s ease-in-out infinite;
}

.cta-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%);
  top: -200px; left: -100px;
}

.cta-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,0.12) 0%, transparent 70%);
  bottom: -200px; right: -100px;
  animation-delay: 2s;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

/* ===== STICKY BUTTONS ===== */
.sticky-buttons {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  display: flex;
  gap: 10px;
  z-index: 1000;
  background: rgba(8,10,15,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px;
  border-radius: 100px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 0 1px var(--border);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.6s var(--ease), opacity 0.4s ease, visibility 0.4s;
}

.sticky-buttons.visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.sticky-buttons .btn {
  padding: 12px 22px;
  font-size: 0.9rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--bg);
  position: relative;
}

.overall-rating {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stars {
  color: #fbbf24;
  letter-spacing: 2px;
  font-size: 1.2rem;
}

.overall-rating span {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

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

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: var(--radius-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  border-color: var(--border-hover);
  background: var(--surface-hover);
  transform: translateY(-5px);
}

.testimonial-stars {
  color: #fbbf24;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 30px;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.author-title {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== PREMIUM LAPTOP VISUAL ===== */
.offer-visual {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
}

.offer-laptop {
  position: relative;
  width: 140px;
  perspective: 1000px;
}

.laptop-screen {
  background: #111;
  border: 4px solid #222;
  border-radius: 8px;
  height: 85px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(168, 85, 247, 0.4);
  transform: rotateX(10deg);
}

.screen-content {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #a855f7 0%, #6366f1 100%);
  opacity: 0.3;
  position: relative;
}

.screen-content::after {
  content: 'WEB DEMO';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.7rem;
  font-weight: 900;
  color: white;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

.laptop-base {
  height: 6px;
  background: #333;
  border-radius: 0 0 6px 6px;
  margin: 0 auto;
  position: relative;
  width: 110%;
  left: -5%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

@media (max-width: 992px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 60px 24px 40px;
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #818cf8, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--text-primary); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  section { padding: 80px 0; }
  .section-title { font-size: 2.2rem; }
  .hero-heading { font-size: 2.8rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

/* ===== LEAD FORM SECTION ===== */
.lead-section {
    padding: 100px 0;
    position: relative;
    background: radial-gradient(circle at right, rgba(99,102,241,0.05), transparent 60%);
}

.lead-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 991px) {
    .lead-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.lead-benefits {
    list-style: none;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lead-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(99,102,241, 0.1);
    color: var(--accent);
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 700;
}

.lead-form-wrapper {
    position: relative;
}

.form-glow-bg {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(99,102,241, 0.2), transparent);
    border-radius: 24px;
    filter: blur(40px);
    z-index: 0;
}

.lead-form {
    position: relative;
    z-index: 1;
    background: var(--surface);
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: var(--radius-card);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .lead-form {
        padding: 2rem;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-left: 0.25rem;
}

.form-group input {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 4px rgba(99,102,241, 0.15);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-submit-btn {
    margin-top: 1rem;
    height: 54px;
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.form-submit-btn:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

/* ===== DROPDOWN MENU ===== */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-2);
    min-width: 160px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    border: 1px solid var(--border);
    border-radius: 12px;
    z-index: 100;
    padding: 0.5rem 0;
}

.dropdown-content a {
    color: var(--text-secondary) !important;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    transition: background 0.3s ease;
}

.dropdown-content a:hover {
    background-color: var(--surface-hover);
    color: var(--text-primary) !important;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .dropdown { display: block; margin-bottom: 1rem; }
    .dropdown-content { position: relative; box-shadow: none; border: none; background: transparent; padding-left: 1rem; }
}

/* ===== FUNNEL & ANIMATION UPGRADES ===== */
.floating-element {
    animation: float-up-down 6s ease-in-out infinite;
}

.floating-element.delay-1 { animation-delay: -2s; }
.floating-element.delay-2 { animation-delay: -4s; }

@keyframes float-up-down {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.pulse-glow {
    animation: pulse-glow-anim 4s ease-in-out infinite;
}

@keyframes pulse-glow-anim {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(99,102,241, 0.4)); }
    50% { filter: drop-shadow(0 0 40px rgba(99,102,241, 0.8)); }
}

.pulse-glow.google-blue {
    animation: pulse-glow-google 4s ease-in-out infinite;
}
@keyframes pulse-glow-google {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(66,133,244, 0.4)); }
    50% { filter: drop-shadow(0 0 40px rgba(66,133,244, 0.8)); }
}

.pulse-glow.meta-blue {
    animation: pulse-glow-meta 4s ease-in-out infinite;
}
@keyframes pulse-glow-meta {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(6,104,225, 0.4)); }
    50% { filter: drop-shadow(0 0 40px rgba(6,104,225, 0.8)); }
}

/* Glass Card Stats */
.glass-stat-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}
.glass-stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.05), transparent);
    transform: skewX(-20deg);
    animation: shine 6s infinite;
}
@keyframes shine {
    0%, 20% { left: -100%; }
    40%, 100% { left: 200%; }
}
.glass-stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.25rem;
    line-height: 1.1;
}
.glass-stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Funnel Step Section */
.funnel-steps {
    position: relative;
    padding-left: 2rem;
    border-left: 2px dashed rgba(255,255,255,0.1);
    margin: 3rem 0;
}
.funnel-step {
    position: relative;
    margin-bottom: 3rem;
}
.funnel-step:last-child {
    margin-bottom: 0;
}
.funnel-step-dot {
    position: absolute;
    left: -2rem;
    top: 0;
    width: 28px;
    height: 28px;
    background: var(--bg);
    border: 2px solid var(--accent);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(99,102,241, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.85rem;
}
.funnel-step-title {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 0.5rem;
}
.funnel-step-desc {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Service Hero Grid */
.service-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}
@media (max-width: 991px) {
    .service-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .service-hero-grid .hero-ctas {
        justify-content: center;
    }
}
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-visual svg {
    max-width: 100%;
    height: auto;
}
