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

/* ==========================================================================
   Design Tokens & Core Variables
   ========================================================================== */
:root {
  --bg-primary: #06070B;
  --bg-secondary: #0E1117;
  --accent-red: #FF3B3B;
  --gradient-red: #FF4D6D;
  --text-white: #F5F7FA;
  --text-muted: #A0A7B5;
  --glow-color: rgba(255, 59, 59, 0.35);
  --glow-soft: rgba(255, 59, 59, 0.1);
  --glow-strong: rgba(255, 59, 59, 0.6);
  --font-family: 'Poppins', sans-serif;
  --border-radius-sm: 8px;
  --border-radius-md: 18px;
  --border-radius-lg: 24px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-family);
  background-color: var(--bg-primary);
  color: var(--text-white);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(255, 59, 59, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 59, 59, 0.03) 0%, transparent 45%);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #1a1e29;
  border-radius: 4px;
  border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-red);
  box-shadow: 0 0 10px var(--accent-red);
}

/* Typography Selection */
::selection {
  background: var(--accent-red);
  color: var(--text-white);
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  color: inherit;
  background: transparent;
  border: none;
  outline: none;
}

/* ==========================================================================
   Layout & Spacing Components
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
  position: relative;
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
}

/* Grid System */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .grid-3, .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Flex Utilities */
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ==========================================================================
   Common Premium Elements
   ========================================================================== */

/* Neon/Glow Gradients */
.glow-text {
  text-shadow: 0 0 20px var(--glow-strong);
}

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

.bg-gradient-red {
  background: linear-gradient(135deg, var(--accent-red), var(--gradient-red));
}

/* Glassmorphism Card Style */
.glass-card {
  background: rgba(14, 17, 23, 0.65);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255, 59, 59, 0.1);
  border-radius: var(--border-radius-md);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 59, 59, 0.15), transparent);
  opacity: 0;
  transition: var(--transition-normal);
  z-index: 0;
  pointer-events: none;
}

.glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 59, 59, 0.4);
  box-shadow: 0 10px 30px -10px rgba(255, 59, 59, 0.25);
}

.glass-card:hover::before {
  opacity: 1;
}

.glass-card * {
  position: relative;
  z-index: 1;
}

/* Premium Glow Borders & Particles */
.glow-border {
  position: relative;
}
.glow-border::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--accent-red), transparent, var(--gradient-red));
  z-index: -1;
  opacity: 0.3;
  transition: var(--transition-normal);
}
.glow-border:hover::after {
  opacity: 1;
}

/* Custom Cursor Elements */
.custom-cursor {
  width: 20px;
  height: 20px;
  border: 2px solid var(--accent-red);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: width 0.2s, height 0.2s, background-color 0.2s;
  mix-blend-mode: difference;
}

.custom-cursor-dot {
  width: 4px;
  height: 4px;
  background-color: var(--accent-red);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  box-shadow: 0 0 10px var(--accent-red);
}

@media (max-width: 768px) {
  .custom-cursor, .custom-cursor-dot {
    display: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-weight: 500;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition-normal);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-red), var(--gradient-red));
  box-shadow: 0 4px 15px rgba(255, 59, 59, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 4px 25px rgba(255, 59, 59, 0.6);
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  border-color: var(--accent-red);
  background: rgba(255, 59, 59, 0.05);
  transform: translateY(-2px);
}

/* Navigation Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(6, 7, 11, 0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-normal);
}

header.scrolled {
  background: rgba(6, 7, 11, 0.9);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 59, 59, 0.15);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  max-width: 1240px;
  margin: 0 auto;
  transition: var(--transition-normal);
}

header.scrolled .nav-container {
  padding: 12px 24px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
}

.logo span {
  color: var(--accent-red);
  margin-left: 2px;
  text-shadow: 0 0 10px var(--accent-red);
}

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

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-white);
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text-white);
  transition: var(--transition-fast);
}

@media (max-width: 992px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(14, 17, 23, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 100px 40px;
    transition: var(--transition-normal);
    border-left: 1px solid rgba(255, 59, 59, 0.2);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
  }

  .nav-menu.active {
    right: 0;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  header.scrolled .nav-container {
    padding: 16px 24px;
  }
}

/* ==========================================================================
   Typography & Sections Layout
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 16px;
  text-align: center;
}

.section-subtitle {
  color: var(--accent-red);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  text-align: center;
  font-weight: 700;
  display: block;
}

.section-desc {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 60px auto;
  text-align: center;
  font-size: 1.05rem;
}

/* ==========================================================================
   Interactive Hero Section
   ========================================================================== */
.hero {
  padding-top: 180px;
  padding-bottom: 100px;
  display: flex;
  align-items: center;
  min-height: 100vh;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-subtitle {
  font-weight: 500;
  color: var(--accent-red);
  font-size: 1rem;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-subtitle::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-red);
  box-shadow: 0 0 10px var(--accent-red);
  animation: pulse-glow 2s infinite;
}

.hero-text {
  color: var(--text-muted);
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
}

@media (max-width: 576px) {
  .hero-ctas {
    flex-direction: column;
  }
}

/* ==========================================================================
   Interactive Hologram Growth Engine (Creative Hero Graphic)
   ========================================================================== */
.hero-graphic-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hologram-visual {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

/* Glowing Ambient Background */
.glow-ambient {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(255, 59, 59, 0.15) 0%, rgba(138, 43, 226, 0.05) 40%, transparent 70%);
  z-index: 1;
  pointer-events: none;
  filter: blur(30px);
  animation: pulse-glow-ambient 8s ease-in-out infinite alternate;
}

/* Hologram Core Sphere */
.hologram-core {
  position: absolute;
  width: 90px;
  height: 90px;
  z-index: 5;
  cursor: pointer;
}

.core-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #FF6B6B, var(--accent-red) 50%, #800000 100%);
  box-shadow: 
    0 0 30px var(--accent-red),
    0 0 60px rgba(255, 59, 59, 0.5),
    inset 0 0 20px rgba(255, 255, 255, 0.6);
  animation: core-spin 8s linear infinite, hologram-float 4s ease-in-out infinite alternate;
}

.core-glow {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 59, 59, 0.2) 0%, transparent 70%);
  border: 1px dashed rgba(255, 59, 59, 0.3);
  animation: core-pulse 2s ease-in-out infinite alternate;
  pointer-events: none;
}

/* Rotating Orbit Rings styling */
.hologram-orbits {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}

.orbit-ring {
  fill: none;
  stroke: rgba(255, 255, 255, 0.07);
  stroke-width: 1.5px;
  transform-origin: 250px 250px;
}

.orbit-ring.ring-1 {
  stroke: rgba(255, 59, 59, 0.2);
  stroke-dasharray: 6 12;
  transform: rotateX(65deg) rotateY(20deg);
  animation: rotate-orbit-clockwise 25s linear infinite;
}

.orbit-ring.ring-2 {
  stroke: rgba(159, 122, 234, 0.25);
  stroke-dasharray: 4 8;
  transform: rotateX(55deg) rotateY(-30deg);
  animation: rotate-orbit-counter 30s linear infinite;
}

.orbit-ring.ring-3 {
  stroke: rgba(49, 151, 149, 0.2);
  stroke-dasharray: 8 16;
  transform: rotateX(70deg) rotateY(45deg);
  animation: rotate-orbit-clockwise 35s linear infinite;
}

/* Data Stream lasers */
.data-stream {
  fill: none;
  stroke: rgba(255, 59, 59, 0.25);
  stroke-width: 1.5px;
  stroke-dasharray: 8 15;
  animation: data-flow 4s linear infinite;
  transition: stroke var(--transition-fast), stroke-width var(--transition-fast);
}

/* Hologram Floating Nodes */
.hologram-node {
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(14, 17, 23, 0.75);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-md);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: all var(--transition-normal);
  user-select: none;
}

.hologram-node::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--node-color, var(--accent-red)), transparent);
  z-index: -1;
  opacity: 0.2;
  transition: opacity var(--transition-fast);
}

.hologram-node:hover {
  transform: translateY(-5px) scale(1.05);
  border-color: var(--node-color, var(--accent-red));
  box-shadow: 0 15px 35px rgba(255, 59, 59, 0.15);
}

.hologram-node:hover::before {
  opacity: 0.6;
}

.node-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--node-color, var(--text-white));
  transition: all var(--transition-fast);
}

.hologram-node:hover .node-icon {
  background: var(--node-color, var(--accent-red));
  color: var(--text-white);
  box-shadow: 0 0 15px var(--node-color, var(--accent-red));
  border-color: transparent;
}

.node-icon svg {
  width: 18px;
  height: 18px;
}

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

.node-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.node-stat {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-white);
}

/* Specific Node Positionings & Accent Colors */
.hologram-node.node-1 {
  --node-color: var(--accent-red);
  top: 12%;
  left: 0%;
  animation: float-node-1 5s ease-in-out infinite alternate;
}

.hologram-node.node-2 {
  --node-color: #9F7AEA; /* Purple */
  top: 22%;
  right: 0%;
  animation: float-node-2 6s ease-in-out infinite alternate;
}

.hologram-node.node-3 {
  --node-color: #319795; /* Teal */
  bottom: 16%;
  left: 4%;
  animation: float-node-3 5.5s ease-in-out infinite alternate;
}

.hologram-node.node-4 {
  --node-color: #3182CE; /* Blue */
  bottom: 10%;
  right: 6%;
  animation: float-node-4 6.5s ease-in-out infinite alternate;
}

/* Keyframe Animations */
@keyframes hologram-float {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-10px) rotate(3deg); }
}

@keyframes core-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes core-pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@keyframes pulse-glow-ambient {
  0% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@keyframes rotate-orbit-clockwise {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes rotate-orbit-counter {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}

@keyframes data-flow {
  0% { stroke-dashoffset: 100; }
  100% { stroke-dashoffset: 0; }
}

@keyframes float-node-1 {
  0% { transform: translate(0px, 0px); }
  100% { transform: translate(-5px, -8px); }
}

@keyframes float-node-2 {
  0% { transform: translate(0px, 0px); }
  100% { transform: translate(6px, -5px); }
}

@keyframes float-node-3 {
  0% { transform: translate(0px, 0px); }
  100% { transform: translate(-3px, 6px); }
}

@keyframes float-node-4 {
  0% { transform: translate(0px, 0px); }
  100% { transform: translate(5px, 8px); }
}

/* Custom interactive laser states on hover */
.hologram-visual:has(.node-1:hover) .stream-1 {
  stroke: var(--accent-red);
  stroke-width: 2.5px;
  filter: drop-shadow(0 0 5px var(--accent-red));
}

.hologram-visual:has(.node-2:hover) .stream-2 {
  stroke: #9F7AEA;
  stroke-width: 2.5px;
  filter: drop-shadow(0 0 5px #9F7AEA);
}

.hologram-visual:has(.node-3:hover) .stream-3 {
  stroke: #319795;
  stroke-width: 2.5px;
  filter: drop-shadow(0 0 5px #319795);
}

.hologram-visual:has(.node-4:hover) .stream-4 {
  stroke: #3182CE;
  stroke-width: 2.5px;
  filter: drop-shadow(0 0 5px #3182CE);
}

/* Responsive adjustment */
@media (max-width: 576px) {
  .hologram-node {
    padding: 8px 12px;
    gap: 8px;
  }
  .node-icon {
    width: 28px;
    height: 28px;
  }
  .node-icon svg {
    width: 14px;
    height: 14px;
  }
  .node-title {
    font-size: 0.65rem;
  }
  .node-stat {
    font-size: 0.75rem;
  }
  .hologram-core {
    width: 70px;
    height: 70px;
  }
}

/* ==========================================================================
   Marquee / Social Proof Section
   ========================================================================== */
.marquee-container {
  overflow: hidden;
  width: 100%;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  background: rgba(14, 17, 23, 0.3);
}

.marquee-content {
  display: flex;
  gap: 80px;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.marquee-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.5;
  transition: var(--transition-fast);
  letter-spacing: 1px;
}

.marquee-logo:hover {
  opacity: 1;
  color: var(--text-white);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   Services Grid Section
   ========================================================================== */
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-sm);
  background: rgba(255, 59, 59, 0.08);
  border: 1px solid rgba(255, 59, 59, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-red);
  margin-bottom: 24px;
  box-shadow: 0 0 15px rgba(255, 59, 59, 0.1);
  transition: var(--transition-normal);
}

.glass-card:hover .service-icon {
  background: var(--accent-red);
  color: var(--text-white);
  box-shadow: 0 0 20px var(--accent-red);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-white);
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features li::before {
  content: '✓';
  color: var(--accent-red);
  font-weight: 700;
}

/* ==========================================================================
   Stats / Performance Section
   ========================================================================== */
.stats-section {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  border-top: 1px solid rgba(255, 59, 59, 0.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.stat-num-box {
  position: relative;
  margin-bottom: 12px;
  display: inline-block;
}

.stat-number {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--text-white), var(--accent-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

/* ==========================================================================
   Why Legit Lucknow (USPs & Comparison)
   ========================================================================== */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}

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

.comp-card {
  padding: 40px;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255,255,255,0.03);
}

.comp-card.traditional {
  background: rgba(255, 255, 255, 0.01);
}

.comp-card.legit {
  background: rgba(255, 59, 59, 0.02);
  border: 1px solid rgba(255, 59, 59, 0.2);
  box-shadow: 0 10px 40px -10px rgba(255, 59, 59, 0.1);
}

.comp-header {
  font-size: 1.5rem;
  margin-bottom: 24px;
  font-weight: 700;
}

.comp-card.legit .comp-header {
  color: var(--accent-red);
}

.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comp-item {
  display: flex;
  gap: 16px;
}

.comp-check {
  font-size: 1.1rem;
  font-weight: 700;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.traditional .comp-check {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

.legit .comp-check {
  background: rgba(255, 59, 59, 0.15);
  color: var(--accent-red);
}

.comp-content h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.comp-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Timeline / Process Section
   ========================================================================== */
.timeline {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  position: relative;
}

.timeline::after {
  content: '';
  position: absolute;
  top: 30px;
  left: 5%;
  width: 90%;
  height: 2px;
  background: rgba(255, 255, 255, 0.05);
  z-index: 1;
}

@media (max-width: 768px) {
  .timeline {
    flex-direction: column;
    gap: 40px;
  }
  .timeline::after {
    top: 5%;
    left: 24px;
    width: 2px;
    height: 90%;
  }
}

.timeline-step {
  width: 18%;
  text-align: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .timeline-step {
    width: 100%;
    text-align: left;
    padding-left: 60px;
  }
}

.step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 2px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 20px auto;
  color: var(--text-muted);
  transition: var(--transition-normal);
}

@media (max-width: 768px) {
  .step-num {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
  }
}

.timeline-step:hover .step-num {
  border-color: var(--accent-red);
  background: var(--accent-red);
  color: var(--text-white);
  box-shadow: 0 0 20px var(--accent-red);
}

.step-title {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

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

/* ==========================================================================
   Creator / Influencer Ecosystem Layout
   ========================================================================== */
.creator-map-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

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

.creator-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.creator-node-map {
  background: rgba(14, 17, 23, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-lg);
  height: 400px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.5);
}

.map-node {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-red);
  box-shadow: 0 0 10px var(--accent-red);
  cursor: pointer;
  z-index: 10;
}

.map-node::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px dashed rgba(255, 59, 59, 0.4);
  animation: rotate-clockwise 10s linear infinite;
}

.map-node-card {
  position: absolute;
  background: rgba(14, 17, 23, 0.95);
  border: 1px solid var(--accent-red);
  border-radius: var(--border-radius-sm);
  padding: 12px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-normal);
  z-index: 20;
  width: 160px;
}

.map-node:hover .map-node-card {
  opacity: 1;
  transform: translateY(0);
}

.node-title {
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 2px;
}

.node-niche {
  font-size: 0.7rem;
  color: var(--accent-red);
  font-weight: 500;
}

.node-reach {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Forms & Brand Collaboration Portal
   ========================================================================== */
.collaboration-split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
}

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

.onboard-form-box {
  background: rgba(14, 17, 23, 0.8);
  border: 1px solid rgba(255, 59, 59, 0.15);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

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

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

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-sm);
  padding: 14px 18px;
  font-size: 0.95rem;
  color: var(--text-white);
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--accent-red);
  background: rgba(255, 59, 59, 0.02);
  box-shadow: 0 0 15px rgba(255, 59, 59, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
}

.checkbox-label input {
  accent-color: var(--accent-red);
}

/* ==========================================================================
   AI Assistant Panel Widget
   ========================================================================== */
.ai-assistant-bubble {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-red), var(--gradient-red));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(255, 59, 59, 0.4);
  animation: pulse-ring 2.5s infinite;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.ai-assistant-bubble svg {
  width: 28px;
  height: 28px;
  fill: var(--text-white);
}

.ai-chat-window {
  position: fixed;
  bottom: 105px;
  right: 30px;
  width: 380px;
  height: 480px;
  background: rgba(14, 17, 23, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 59, 59, 0.25);
  border-radius: var(--border-radius-md);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: var(--transition-normal);
}

.ai-chat-window.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

@media (max-width: 480px) {
  .ai-chat-window {
    width: calc(100% - 40px);
    right: 20px;
    bottom: 95px;
  }
}

.chat-header {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 59, 59, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.chat-title-box h3 {
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.chat-title-box h3::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #27C93F;
  box-shadow: 0 0 6px #27C93F;
}

.chat-title-box p {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.chat-close {
  cursor: pointer;
  opacity: 0.6;
  transition: var(--transition-fast);
}

.chat-close:hover {
  opacity: 1;
  color: var(--accent-red);
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chat-msg {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 0.85rem;
  line-height: 1.4;
}

.chat-msg.bot {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}

.chat-msg.user {
  background: linear-gradient(135deg, var(--accent-red), var(--gradient-red));
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

.chat-input-area {
  padding: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  gap: 8px;
}

.chat-input-area input {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 10px 18px;
  font-size: 0.85rem;
  color: var(--text-white);
}

.chat-input-area input:focus {
  border-color: var(--accent-red);
  background: rgba(255, 59, 59, 0.02);
}

.chat-send-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.chat-send-btn:hover {
  transform: scale(1.05);
  background: var(--gradient-red);
}

.chat-send-btn svg {
  width: 18px;
  height: 18px;
  fill: var(--text-white);
}

.chat-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 20px 12px 20px;
}

.quick-reply-btn {
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 59, 59, 0.2);
  background: rgba(255, 59, 59, 0.05);
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--text-muted);
}

.quick-reply-btn:hover {
  border-color: var(--accent-red);
  color: var(--text-white);
  background: rgba(255, 59, 59, 0.15);
}

/* ==========================================================================
   Footer & Sticky Panels
   ========================================================================== */
footer {
  background: #020305;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 80px 0 30px 0;
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

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

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.social-icon-btn:hover {
  border-color: var(--accent-red);
  color: var(--accent-red);
  background: rgba(255, 59, 59, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 0 10px rgba(255, 59, 59, 0.2);
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
}

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

.footer-links a:hover {
  color: var(--text-white);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 30px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Sticky WhatsApp Widget */
.whatsapp-widget {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  transition: var(--transition-fast);
}

.whatsapp-widget:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-widget svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

/* ==========================================================================
   Animations Code
   ========================================================================== */
@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(255, 59, 59, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 59, 59, 0); }
}

@keyframes pulse-ring {
  0% { transform: scale(1); box-shadow: 0 10px 30px rgba(255, 59, 59, 0.4); }
  50% { transform: scale(1.05); box-shadow: 0 10px 35px rgba(255, 59, 59, 0.6), 0 0 0 10px rgba(255, 59, 59, 0.1); }
  100% { transform: scale(1); box-shadow: 0 10px 30px rgba(255, 59, 59, 0.4); }
}

@keyframes float-slow {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-12px) rotate(1deg); }
}

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

@keyframes rotate-clockwise {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Scroll reveal classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Background Particle styling */
#particles-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ==========================================================================
   Mobile Responsive Adjustments & Fixes
   ========================================================================== */
#mobile-sticky-cta {
  text-align: center !important;
}

@media (max-width: 992px) {
  .logo {
    font-size: 1.35rem;
    white-space: nowrap;
  }
  .btn-header {
    padding: 8px 16px !important;
    font-size: 0.8rem !important;
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  .logo {
    font-size: 1.2rem;
  }
  .btn-header {
    padding: 7px 12px !important;
    font-size: 0.75rem !important;
  }
  
  /* WhatsApp Widget optimization on mobile to sit above the sticky bottom call CTA */
  .whatsapp-widget {
    bottom: 90px;
    right: 20px;
    left: auto !important;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
  }
  
  /* Footer layout and spacing on mobile */
  footer {
    padding-bottom: 110px !important; /* Leave 3+ lines of blank space for the sticky CTA */
  }
  .footer-bottom {
    flex-direction: column !important;
    text-align: center !important;
    gap: 12px !important;
  }
  .footer-bottom p {
    width: 100% !important;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.1rem;
  }
  .btn-header {
    padding: 6px 10px !important;
    font-size: 0.7rem !important;
    letter-spacing: 0px;
  }
  .nav-container {
    padding: 14px 16px;
    gap: 8px;
  }
  header.scrolled .nav-container {
    padding: 8px 16px;
  }
}

@media (max-width: 360px) {
  .logo {
    font-size: 0.95rem;
  }
  .btn-header {
    padding: 5px 8px !important;
    font-size: 0.65rem !important;
  }
}
