/* ==========================================================================
   D8ADS & C3PA Pro - Flagship Performance Agency Stylesheet
   Inspired by d8ads.com, c3pa.net, affizer.com, paysale.com
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --bg-main: #080a11;
  --bg-surface: #0e1322;
  --bg-card: rgba(17, 24, 39, 0.75);
  --bg-card-hover: rgba(26, 36, 56, 0.9);
  --bg-glass: rgba(255, 255, 255, 0.035);
  
  --primary-neon: #00f59b;
  --primary-glow: rgba(0, 245, 155, 0.35);
  --cyan-neon: #00e5ff;
  --cyan-glow: rgba(0, 229, 255, 0.3);
  --purple-neon: #8b5cf6;
  --pink-neon: #ec4899;
  
  --text-pure: #ffffff;
  --text-body: #e2e8f0;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(0, 245, 155, 0.3);
  
  --font-anton: 'Anton', sans-serif;
  --font-heading: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --radius-pill: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 10% 15%, rgba(0, 229, 255, 0.07) 0%, transparent 45%),
    radial-gradient(circle at 90% 25%, rgba(0, 245, 155, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 50% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 40px 40px, 40px 40px;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--text-pure);
  font-weight: 700;
  letter-spacing: -0.5px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   Dynamic Entrance & Scroll-Reveal Animation Engine
   "Jab website open ho koi left sy aya koi right sy aya"
   ========================================================================== */
.reveal-left {
  opacity: 0;
  transform: translateX(-70px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-right {
  opacity: 0;
  transform: translateX(70px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-zoom {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.is-revealed {
  opacity: 1 !important;
  transform: translate(0, 0) scale(1) !important;
}

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

/* Hero Entrance Animations */
@keyframes heroTitleDrop {
  0% { opacity: 0; transform: translateY(-35px) scale(0.96); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes heroFadeUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes heroBtnPop {
  0% { opacity: 0; transform: scale(0.85); }
  100% { opacity: 1; transform: scale(1); }
}

.hero-main-title {
  animation: heroTitleDrop 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-sub-text {
  animation: heroFadeUp 0.9s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-btn-row {
  animation: heroBtnPop 0.9s 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* ==========================================================================
   Header & Navbar
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(8, 10, 17, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 100;
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-anton);
  font-size: 2rem;
  letter-spacing: 1px;
  color: #fff;
}

.logo-badge {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 800;
  background: rgba(0, 245, 155, 0.15);
  color: var(--primary-neon);
  border: 1px solid rgba(0, 245, 155, 0.3);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-neon);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-neon);
  box-shadow: 0 0 10px var(--primary-neon);
}

/* Custom Dropdown for Signup / Login */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #0d1222;
  border: 1px solid rgba(0, 245, 155, 0.25);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.85), 0 0 25px rgba(0, 245, 155, 0.12);
  padding: 8px;
  min-width: 250px;
  z-index: 200;
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.97);
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Invisible hover bridge */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  width: 100%;
  height: 12px;
}

.dropdown:hover .dropdown-menu,
.dropdown.show .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-decoration: none;
}

.dropdown-item:hover {
  background: rgba(0, 245, 155, 0.12);
  transform: translateX(3px);
}

.dropdown-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.dropdown-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.dropdown-item:hover .dropdown-title {
  color: var(--primary-neon);
}

.dropdown-subtitle {
  font-size: 0.76rem;
  color: var(--text-dim);
  margin-top: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.1rem; }

.btn-neon {
  background: var(--primary-neon);
  color: #080a11;
  box-shadow: 0 0 25px var(--primary-glow);
}

.btn-neon:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px var(--primary-glow);
  background: #25fba7;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-subtle);
  color: var(--text-pure);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--cyan-neon);
  transform: translateY(-2px);
}

.btn-cyan {
  background: var(--cyan-neon);
  color: #080a11;
  box-shadow: 0 0 25px var(--cyan-glow);
}

.btn-cyan:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px var(--cyan-glow);
}

/* Mobile Toggle */
.mobile-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: #fff;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 1.4rem;
  cursor: pointer;
}

/* ==========================================================================
   Hero Section (C3PA & D8Ads Style)
   ========================================================================== */
.hero-sec {
  padding: 90px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-main-title {
  font-family: var(--font-anton);
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 24px;
}

.hero-main-title span {
  background: linear-gradient(135deg, #00f59b 0%, #00e5ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub-text {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-muted);
  max-width: 820px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-btn-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* Marquee Top Offers Banner (C3PA & D8Ads Pro Style) */
.marquee-ribbon {
  background: #080c18;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.marquee-badge-wrapper {
  position: relative;
  z-index: 50;
  background: #080c18;
  padding: 0 20px 0 24px;
  display: flex;
  align-items: center;
  box-shadow: 20px 0 30px #080c18, 10px 0 15px #080c18;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.marquee-badge {
  background: rgba(0, 245, 155, 0.12);
  color: var(--primary-neon);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  letter-spacing: 1px;
  border: 1px solid rgba(0, 245, 155, 0.35);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.live-pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary-neon);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary-neon);
  display: inline-block;
  animation: pulseDot 1.6s infinite ease-in-out;
}

@keyframes pulseDot {
  0% { transform: scale(0.9); opacity: 0.7; box-shadow: 0 0 4px var(--primary-neon); }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 12px var(--primary-neon); }
  100% { transform: scale(0.9); opacity: 0.7; box-shadow: 0 0 4px var(--primary-neon); }
}

.marquee-viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
  width: 100%;
  padding-left: 20px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 30px, #000 calc(100% - 30px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 30px, #000 calc(100% - 30px), transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  width: max-content;
  animation: marqueeRun 32s linear infinite;
  will-change: transform;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  transition: var(--transition);
}

.marquee-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 245, 155, 0.3);
  transform: translateY(-1px);
}

.marquee-tag {
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(0, 245, 155, 0.15);
  color: var(--primary-neon);
  border: 1px solid rgba(0, 245, 155, 0.3);
  letter-spacing: 0.5px;
}

.marquee-title {
  color: #ffffff;
  font-weight: 600;
}

.marquee-payout {
  color: var(--primary-neon);
  font-weight: 700;
  font-family: var(--font-heading);
}

.marquee-geos {
  color: var(--text-dim);
  font-size: 0.78rem;
  background: rgba(255, 255, 255, 0.04);
  padding: 2px 6px;
  border-radius: 4px;
}

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

/* ==========================================================================
   Action Matters Pipeline Indicator (Click -> Conversion -> Connection)
   ========================================================================== */
.pipeline-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 680px;
  margin: 50px auto 40px;
}

.pipeline-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}

.pipeline-icon {
  width: 38px;
  height: 38px;
  background: rgba(0, 245, 155, 0.12);
  border: 1px solid rgba(0, 245, 155, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-neon);
  font-size: 1.1rem;
}

.pipeline-line {
  flex-grow: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 245, 155, 0.3), rgba(0, 229, 255, 0.3));
}

/* ==========================================================================
   Network Global Stats Counters
   ========================================================================== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0 70px;
}

.stat-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition);
}

.stat-box:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 245, 155, 0.4);
  box-shadow: 0 15px 30px rgba(0, 245, 155, 0.1);
}

.stat-num {
  font-family: var(--font-anton);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #fff 40%, var(--primary-neon) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-text {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* ==========================================================================
   Global 3D Performance Globe Showcase & Floating Glass HUD
   ========================================================================== */
.globe-showcase-sec {
  padding: 30px 0 80px;
  position: relative;
  overflow: hidden;
}

.globe-stage-wrapper {
  position: relative;
  max-width: 980px;
  height: 620px;
  margin: 30px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.globe-canvas-container {
  position: relative;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#performanceGlobe {
  width: 520px;
  height: 520px;
  border-radius: 50%;
  cursor: grab;
  touch-action: none;
  background: transparent;
  box-shadow: 
    0 0 80px rgba(0, 245, 155, 0.25),
    0 0 140px rgba(0, 229, 255, 0.16);
}

#performanceGlobe:active {
  cursor: grabbing;
}

.globe-glow-overlay {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(0, 245, 155, 0.08) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

/* Floating HUD Glassmorphism Cards */
.globe-hud {
  position: absolute;
  z-index: 10;
  background: rgba(8, 14, 24, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 245, 155, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 245, 155, 0.1);
  padding: 18px 24px;
  border-radius: 16px;
  min-width: 250px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  animation: hudFloat 6s ease-in-out infinite alternate;
}

.globe-hud:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(0, 245, 155, 0.5);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 245, 155, 0.2);
}

.hud-network {
  top: 30px;
  right: 20px;
  animation-delay: 0s;
}

.hud-tracking {
  bottom: 50px;
  left: 10px;
  animation-delay: -2s;
}

.hud-routing {
  bottom: 30px;
  right: 30px;
  animation-delay: -4s;
}

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

.hud-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary-neon);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.hud-bar {
  width: 3px;
  height: 14px;
  background: var(--primary-neon);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--primary-neon);
}

.hud-bar.teal {
  background: var(--cyan-neon);
  box-shadow: 0 0 8px var(--cyan-neon);
}

.hud-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary-neon);
  box-shadow: 0 0 8px var(--primary-neon);
}

.hud-dot.live-pulse {
  animation: livePulseDot 1.5s infinite;
}

@keyframes livePulseDot {
  0% { transform: scale(0.8); opacity: 0.6; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 12px var(--primary-neon); }
  100% { transform: scale(0.8); opacity: 0.6; }
}

.hud-title {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 2px;
  letter-spacing: -0.3px;
}

.hud-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Floating Region Labels */
.globe-geo {
  position: absolute;
  z-index: 5;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-neon);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(0, 245, 155, 0.5);
  pointer-events: none;
}

.geo-eu {
  top: 36%;
  left: 20%;
}

.geo-asia {
  top: 24%;
  right: 25%;
}

.geo-americas {
  bottom: 26%;
  right: 28%;
}

@media (max-width: 900px) {
  .globe-stage-wrapper {
    height: auto;
    flex-direction: column;
    gap: 20px;
  }
  .globe-canvas-container, #performanceGlobe {
    width: 340px;
    height: 340px;
  }
  .globe-hud {
    position: static;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    animation: none;
  }
  .globe-geo {
    display: none;
  }
}

/* ==========================================================================
   Dual Power Cards: FOR AFFILIATES & FOR ADVERTISERS
   ========================================================================== */
.dual-section {
  padding: 70px 0;
}

.dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.dual-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.dual-card.affiliate {
  background: linear-gradient(145deg, rgba(14, 19, 34, 0.9) 0%, rgba(8, 10, 17, 0.95) 100%);
}

.dual-card.advertiser {
  background: linear-gradient(145deg, rgba(20, 26, 45, 0.9) 0%, rgba(8, 10, 17, 0.95) 100%);
}

.dual-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 245, 155, 0.4);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
}

.dual-card-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.dual-card-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.dual-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.dual-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-body);
}

.dual-check-item svg {
  color: var(--primary-neon);
  flex-shrink: 0;
}

/* ==========================================================================
   Verticals & Niches Grid
   ========================================================================== */
.verticals-sec {
  padding: 70px 0;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.section-tagline {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-neon);
  background: rgba(0, 245, 155, 0.1);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
  border: 1px solid rgba(0, 245, 155, 0.25);
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
}

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

.v-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.v-card:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  box-shadow: 0 20px 40px rgba(0, 245, 155, 0.12);
}

.v-icon-wrap {
  width: 58px;
  height: 58px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.v-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: rgba(0, 245, 155, 0.15);
  color: var(--primary-neon);
  margin-bottom: 12px;
}

.v-title {
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.v-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.v-subtypes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.v-tag {
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.78rem;
  padding: 3px 8px;
  border-radius: 4px;
  color: var(--text-muted);
}

.v-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.v-payout {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-neon);
  font-size: 0.95rem;
}

/* ==========================================================================
   What Sets Us Apart Section (D8Ads Feature)
   ========================================================================== */
.apart-sec {
  padding: 80px 0;
  background: rgba(14, 19, 34, 0.6);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

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

.apart-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: var(--transition);
}

.apart-box:hover {
  border-color: var(--cyan-neon);
  transform: translateY(-4px);
}

.apart-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.apart-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.apart-text {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ==========================================================================
   Events & Conferences We Attend
   ========================================================================== */
.events-sec {
  padding: 80px 0;
}

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

.event-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.event-card:hover {
  border-color: rgba(0, 245, 155, 0.4);
  transform: translateY(-4px);
}

.event-title {
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.event-location {
  color: var(--cyan-neon);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.event-date {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.event-badge {
  background: rgba(0, 245, 155, 0.15);
  color: var(--primary-neon);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* ==========================================================================
   Partner Reviews / Testimonials (Paysale & C3PA)
   ========================================================================== */
.reviews-sec {
  padding: 80px 0;
}

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

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.review-quote {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-neon);
}

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

.review-role {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-sec {
  padding: 80px 0;
}

.faq-wrap {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-box.active {
  border-color: rgba(0, 245, 155, 0.4);
}

.faq-head {
  padding: 22px 26px;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-head:hover {
  color: var(--primary-neon);
}

.faq-icon {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.faq-box.active .faq-icon {
  transform: rotate(180deg);
  color: var(--primary-neon);
}

.faq-body {
  padding: 0 26px 22px;
  color: var(--text-muted);
  line-height: 1.7;
  display: none;
}

.faq-box.active .faq-body {
  display: block;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-sec {
  padding: 80px 0;
}

.contact-card {
  background: linear-gradient(145deg, rgba(14, 19, 34, 0.95) 0%, rgba(8, 10, 17, 0.98) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 50px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-neon);
  box-shadow: 0 0 15px var(--primary-glow);
  background: rgba(255, 255, 255, 0.07);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: #05070c;
  border-top: 1px solid var(--border-subtle);
  padding: 70px 0 35px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 16px 0 20px;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.footer-links a:hover {
  color: var(--primary-neon);
  padding-left: 5px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 25px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .dual-grid { grid-template-columns: 1fr; }
  .verticals-grid { grid-template-columns: repeat(2, 1fr); }
  .apart-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-menu, .header-actions .btn { display: none; }
  .mobile-btn { display: block; }
  .stats-row { grid-template-columns: 1fr; }
  .verticals-grid { grid-template-columns: 1fr; }
  .apart-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-card { padding: 25px; }
  .footer-grid { grid-template-columns: 1fr; }
  .pipeline-bar { flex-direction: column; gap: 10px; }
  .pipeline-line { display: none; }
}

@media (max-width: 640px) {
  .marquee-badge-wrapper {
    padding: 0 12px 0 14px;
  }
  .marquee-badge {
    padding: 4px 10px;
    font-size: 0.72rem;
  }
  .marquee-item {
    padding: 4px 12px;
    font-size: 0.82rem;
  }
}

