/* ============================================
   DESIGN SYSTEM — Gestor de Tráfego Pago
   Inspired by Sarkle Alliance aesthetics
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  /* Primary — Petrol Blue */
  --primary-900: #041c26;
  --primary-800: #082a38;
  --primary-700: #0d3b4f;
  --primary-600: #145369;
  --primary-500: #1a6b84;
  --primary-400: #22879f;
  --primary-300: #2da3ba;
  --primary-200: #5abdd1;
  --primary-100: #97d7e5;
  --primary-50: #d4eef4;

  /* Accent — Vibrant Blue */
  --accent-600: #0077cc;
  --accent-500: #0099ff;
  --accent-400: #33adff;
  --accent-300: #66c2ff;
  --accent-200: #99d6ff;
  --accent-100: #cceaff;

  /* Neutrals (Cinematic Dark) */
  --neutral-950: #030508;
  --neutral-900: #060c14;
  --neutral-850: #0a1421;
  --neutral-800: #1a2436;
  --neutral-700: #2a3650;
  --neutral-600: #3e4f6e;
  --neutral-500: #5a6b8a;
  --neutral-400: #8494b2;
  --neutral-300: #b0bdd4;
  --neutral-200: #d4dbe8;
  --neutral-100: #eef1f6;
  --neutral-50: #f7f8fb;
  --white: #ffffff;

  /* Semantic */
  --success: #22c55e;
  --warning: #f59e0b;
  --danger: #ef4444;

  /* Gradients */
  --gradient-hero: linear-gradient(160deg, var(--neutral-950) 0%, var(--primary-900) 40%, var(--neutral-950) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent-600) 0%, var(--accent-400) 100%);
  --gradient-glow: radial-gradient(circle at 50% 50%, rgba(0, 153, 255, 0.10) 0%, transparent 70%);

  /* Typography */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --space-xs: 0.375rem;
  --space-sm: 0.625rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.5rem;
  --space-2xl: 3.5rem;
  --space-3xl: 5rem;
  --space-4xl: 7rem;
  --space-5xl: 10rem;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.18);
  --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.22);
  --shadow-glow: 0 0 40px rgba(0, 153, 255, 0.2);

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast: 200ms;
  --dur-normal: 350ms;
  --dur-slow: 600ms;
}

/* ---- Reset ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body {
  font-family: var(--font-body);
  color: var(--neutral-300);
  background-color: var(--neutral-950);
  background-image:
    radial-gradient(circle at 50% 0%, rgba(8, 42, 56, 0.4) 0%, transparent 70%),
    radial-gradient(circle at 85% 50%, rgba(0, 90, 160, 0.06) 0%, transparent 50%);
  background-attachment: fixed;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Global Flow Line */
body::before {
  content: '';
  position: fixed;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(0, 153, 255, 0.03), transparent);
  z-index: 0;
  transform: translateX(-50%);
  pointer-events: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-shadow: 0 0 35px rgba(0, 153, 255, 0.3);
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--dur-fast) var(--ease-out);
}

ul,
ol {
  list-style: none;
}

/* ---- Utilities ---- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section-padding {
  padding: 7rem 0;
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent-600) 0%, var(--accent-300) 50%, var(--accent-600) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shine-text 5s linear infinite;
}

@keyframes shine-text {
  to {
    background-position: 200% center;
  }
}

/* ---- Typography ---- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.03em;
}

/* ---- Section Headers ---- */
.section-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-400);
  margin-bottom: var(--space-lg);
  padding: 0.4rem 1.1rem;
  background: rgba(0, 153, 255, 0.08);
  border: 1px solid rgba(0, 153, 255, 0.15);
  border-radius: var(--radius-full);
}

.section-title-lg {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: var(--space-lg);
  line-height: 1.1;
}

.section-desc {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--neutral-400);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.95rem 2rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--dur-normal) var(--ease-out);
  position: relative;
  white-space: nowrap;
}

.btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--gradient-accent);
  color: var(--white);
  box-shadow: var(--shadow-glow), var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(0, 153, 255, 0.3), var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--neutral-200);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
}

.btn-secondary:hover {
  border-color: var(--accent-400);
  color: var(--accent-300);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white);
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.25), var(--shadow-md);
  font-size: 1rem;
  padding: 1rem 2.2rem;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(37, 211, 102, 0.35), var(--shadow-lg);
}

.btn-xl {
  font-size: 1.1rem;
  padding: 1.15rem 2.8rem;
  border-radius: var(--radius-lg);
}

/* ---- Scroll Progress ---- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gradient-accent);
  z-index: 1100;
  width: 0%;
  transition: width 50ms linear;
  box-shadow: 0 0 12px rgba(0, 153, 255, 0.5);
}

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) 0;
  transition: all var(--dur-normal) var(--ease-out);
}

.navbar.scrolled {
  background: rgba(8, 12, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: var(--space-sm) 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient-accent);
  box-shadow: 0 0 10px rgba(0, 153, 255, 0.5);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.navbar-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--neutral-400);
  position: relative;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-400);
  border-radius: 2px;
  transition: width var(--dur-normal) var(--ease-out);
}

.navbar-links a:hover {
  color: var(--white);
}

.navbar-links a:hover::after {
  width: 100%;
}

.navbar-links a.active-link {
  color: var(--accent-300);
}

.navbar-links a.active-link::after {
  width: 100%;
}

.navbar-cta {
  font-size: 0.82rem !important;
  padding: 0.6rem 1.3rem !important;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--dur-normal) var(--ease-out);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
  padding-bottom: 0;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 153, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 153, 255, 0.025) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black 20%, transparent 100%);
  pointer-events: none;
}

.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(0, 153, 255, 0.07);
  top: -10%;
  right: -5%;
  animation: orb-drift 15s ease-in-out infinite;
}

.hero-orb-2 {
  width: 350px;
  height: 350px;
  background: rgba(0, 119, 204, 0.05);
  bottom: -5%;
  left: -5%;
  animation: orb-drift 20s ease-in-out infinite reverse;
}

@keyframes orb-drift {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(30px, -20px);
  }
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* ---- Hero Flex Layout ---- */
.hero-container-flex {
  display: flex;
  align-items: center;
  gap: var(--space-4xl);
  min-height: 100vh;
  padding-top: 80px;
  /* Navbar space */
}

.hero-content {
  flex: 1;
  z-index: 5;
  max-width: 650px;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 500px;
}

/* 3D Orbit System */
.orbit-system {
  position: relative;
  width: 450px;
  height: 450px;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at 30% 30%, var(--accent-400), var(--neutral-900));
  border-radius: 50%;
  box-shadow: 0 0 60px var(--accent-500);
  animation: pulse-core 4s infinite alternate;
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(0, 153, 255, 0.3);
  box-shadow: 0 0 15px rgba(0, 153, 255, 0.1);
}

.ring-1 {
  width: 280px;
  height: 280px;
  animation: spin-orbit 12s linear infinite;
  border-top-color: var(--accent-400);
}

.ring-2 {
  width: 380px;
  height: 380px;
  animation: spin-orbit 18s linear infinite reverse;
  border-left-color: var(--primary-400);
  border-right-color: var(--primary-400);
}

.ring-3 {
  width: 500px;
  height: 500px;
  animation: spin-orbit-3d 25s linear infinite;
  border: 1px dashed rgba(255, 255, 255, 0.15);
}

@keyframes spin-orbit {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes spin-orbit-3d {
  from {
    transform: translate(-50%, -50%) rotateX(70deg) rotateZ(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotateX(70deg) rotateZ(360deg);
  }
}

@keyframes pulse-core {
  0% {
    transform: translate(-50%, -50%) scale(0.9);
    box-shadow: 0 0 40px var(--accent-500);
  }

  100% {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 0 90px var(--accent-400);
  }
}

/* Floating Data Cards */
.floating-data-card {
  position: absolute;
  background: rgba(4, 12, 20, 0.85);
  backdrop-filter: blur(12px);
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid rgba(0, 153, 255, 0.3);
  color: white;
  font-family: var(--font-display);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: float-card 5s infinite ease-in-out;
  display: flex;
  flex-direction: column;
  min-width: 100px;
}

.floating-data-card span {
  font-size: 0.75rem;
  color: var(--neutral-400);
  text-transform: uppercase;
}

.floating-data-card b {
  font-size: 1.2rem;
  color: var(--accent-300);
}

.card-1 {
  top: 15%;
  right: 10%;
  animation-delay: 0s;
}

.card-2 {
  bottom: 15%;
  left: 0%;
  animation-delay: 2.5s;
  background: rgba(20, 4, 10, 0.85);
  border-color: var(--primary-500);
}

.card-2 b {
  color: var(--primary-400);
}

@keyframes float-card {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* Hero Typography */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(0, 153, 255, 0.1);
  border: 1px solid rgba(0, 153, 255, 0.3);
  border-radius: var(--radius-full);
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-300);
  margin-bottom: var(--space-lg);
  letter-spacing: 0.04em;
  box-shadow: 0 0 15px rgba(0, 153, 255, 0.15);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-400);
  box-shadow: 0 0 10px var(--accent-400);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.hero-title {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--neutral-300);
  margin-bottom: var(--space-2xl);
  max-width: 540px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-3xl);
}

/* Glowing Button */
.glowing-btn {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

.glowing-btn:hover {
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.6);
  transform: translateY(-2px);
}

.btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  animation: shine-btn 4s infinite;
}

@keyframes shine-btn {
  0% {
    left: -100%;
  }

  20% {
    left: 200%;
  }

  100% {
    left: 200%;
  }
}

.glass-btn {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

/* Dashboard Stats */
.hero-stats {
  display: flex;
  gap: var(--space-md);
  margin-top: 0;
  padding: 0;
  border-top: none;
}

.stat-card {
  flex: 1;
  background: linear-gradient(145deg, rgba(20, 30, 40, 0.6), rgba(10, 15, 20, 0.8));
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  /* Subtle border */
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.stat-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(145deg, rgba(30, 45, 60, 0.7), rgba(15, 25, 35, 0.9));
  border-color: rgba(0, 153, 255, 0.3);
  box-shadow: 0 15px 40px rgba(0, 153, 255, 0.15);
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  background: linear-gradient(180deg, #ffffff 0%, #aee2ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2px;
  line-height: 1.1;
  text-align: center;
  z-index: 2;
  text-shadow: 0 0 20px rgba(0, 153, 255, 0.3);
}

.hero-stat-label {
  font-size: 0.7rem;
  color: var(--neutral-400);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  z-index: 2;
}

.stat-icon {
  font-size: 1.5rem;
  color: var(--accent-400);
  margin-bottom: var(--space-xs);
  opacity: 1;
  filter: drop-shadow(0 0 8px var(--accent-500));
  transition: 0.3s;
}

.stat-card:hover .stat-icon {
  transform: scale(1.1);
  color: var(--white);
}

/* Mobile Logic */
@media (max-width: 900px) {
  .hero-container-flex {
    flex-direction: column;
    text-align: center;
    padding-top: 100px;
    min-height: auto;
    padding-bottom: 60px;
  }

  .hero-visual {
    display: none;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-xl);
  }

  .hero-buttons {
    justify-content: center;
  }
}

/* ---- Trust Bar & Marquee ---- */
.trust-bar {
  background: var(--neutral-950);
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  padding: var(--space-lg) 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.trust-flex {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.trust-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--neutral-600);
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  background: var(--neutral-950);
  /* Ensure label sits on top of scrolling elements if needed */
  padding-right: var(--space-lg);
  box-shadow: 10px 0 20px var(--neutral-950);
  /* Soft fade from label to marquee */
}

.marquee-slider {
  flex-grow: 1;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  /* Consistent gap between all items including duplicated sets */
  width: max-content;
  animation: marquee-scroll 35s linear infinite;
  will-change: transform;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-33.333%);
  }

  /* Move exactly one set/third */
}

.trust-item {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--neutral-400);
  transition: color var(--dur-fast);
  white-space: nowrap;
}

.trust-item:hover {
  color: var(--accent-300);
}

.trust-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--neutral-800);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .trust-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }

  .trust-label {
    width: 100%;
    margin-bottom: var(--space-xs);
    box-shadow: none;
    padding-right: 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding-bottom: var(--space-sm);
  }

  .marquee-slider {
    width: 100%;
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
  }

  .marquee-track {
    animation-duration: 25s;
    /* Slightly faster on mobile */
  }
}

/* ---- Intro Statement + Hexagonal Cards ---- */
/* ---- Intro Statement ---- */
.intro-statement {
  background: var(--neutral-950);
  position: relative;
  z-index: 10;
}

.intro-card {
  background: radial-gradient(circle at 100% 0%, rgba(20, 83, 105, 0.2), transparent 50%),
    linear-gradient(145deg, rgba(8, 20, 32, 0.9), rgba(0, 0, 0, 0.95));
  border: 1px solid rgba(0, 153, 255, 0.2);
  border-left: 4px solid var(--accent-500);
  border-radius: var(--radius-lg);
  padding: var(--space-3xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 20px 60px rgba(0, 0, 0, 0.7),
    0 0 50px rgba(0, 153, 255, 0.05);
  backdrop-filter: blur(20px);
  margin-bottom: var(--space-4xl);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.intro-card:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 30px 70px rgba(0, 0, 0, 0.8),
    0 0 60px rgba(0, 153, 255, 0.1);
  border-color: rgba(0, 153, 255, 0.4);
}

.intro-decoration {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 153, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 153, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at 90% 10%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 90% 10%, black 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.intro-card-body {
  position: relative;
  z-index: 1;
}

.intro-card .section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: var(--space-lg);
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.intro-lead {
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 500;
  margin-bottom: var(--space-md);
}

.intro-card p {
  font-size: 1.1rem;
  color: var(--neutral-400);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.intro-card p strong {
  color: var(--accent-300);
  font-weight: 600;
}

/* ---- Problems & Hexagons ---- */
.problem {
  position: relative;
  padding-bottom: var(--space-4xl);
}

.text-highlight-warn {
  color: var(--accent-300);
  position: relative;
  display: inline-block;
  text-shadow: 0 0 25px rgba(0, 153, 255, 0.4);
}

.text-highlight-warn::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 0.2rem;
  background: rgba(0, 153, 255, 0.3);
  filter: blur(4px);
  z-index: -1;
}

.hex-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.hex-wrapper {
  width: 280px;
  height: 320px;
  position: relative;
  transition: transform 0.3s ease;
}

.hex-wrapper:hover {
  transform: translateY(-10px);
  z-index: 10;
}

/* Creating the Hexagon Shape with CSS Clip-path */
.hex-shape {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, rgba(8, 20, 32, 0.9), rgba(4, 8, 12, 0.95));
  backdrop-filter: blur(20px);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2rem;
  text-align: center;
  border: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

/* Hexagon Border Hack */
.hex-shape::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 2px;
  /* Thicker border */
  background: linear-gradient(to bottom, var(--accent-500), rgba(0, 153, 255, 0.1) 40%, transparent 80%, var(--accent-500));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: 2;
  transition: all 0.4s ease;
}

/* Internal Glow on Hover */
.hex-shape::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 153, 255, 0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.hex-wrapper:hover .hex-shape {
  background: rgba(14, 21, 32, 0.9);
  transform: scale(1.02);
}

.hex-wrapper:hover .hex-shape::before {
  background: linear-gradient(180deg, var(--accent-400), var(--accent-600));
  padding: 3px;
  box-shadow: 0 0 30px rgba(0, 153, 255, 0.25);
}

.hex-wrapper:hover .hex-shape::after {
  opacity: 1;
}

.hex-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.hex-icon-warn {
  width: 60px;
  height: 60px;
  color: var(--accent-300);
  margin-bottom: var(--space-md);
  filter: drop-shadow(0 0 15px rgba(0, 153, 255, 0.5));
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hex-wrapper:hover .hex-icon-warn {
  transform: scale(1.15) translateY(-5px);
  filter: drop-shadow(0 0 20px rgba(0, 153, 255, 0.6));
  color: var(--white);
}

.hex-number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(0, 153, 255, 0.03);
  -webkit-text-stroke: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  z-index: 0;
  transition: all 0.4s ease;
  opacity: 1;
}

.hex-wrapper:hover .hex-number {
  color: rgba(0, 153, 255, 0.05);
  -webkit-text-stroke: 1px rgba(0, 153, 255, 0.2);
  transform: translate(-50%, -50%) scale(1.2);
  opacity: 0.8;
}

.hex-text {
  font-size: 1.05rem;
  color: var(--neutral-200);
  line-height: 1.6;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  position: relative;
  z-index: 2;
}

/* ---- Hex Indicators (Mobile) ---- */
.hex-indicators {
  display: none;
  justify-content: center;
  gap: 12px;
  margin-top: var(--space-xl);
}

.hex-indicators .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neutral-700);
  transition: all 0.3s ease;
  cursor: pointer;
}

.hex-indicators .dot.active {
  background: var(--accent-400);
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 153, 255, 0.4);
}

@media (max-width: 768px) {
  .hex-indicators {
    display: flex;
  }
}

/* ---- CTA Strip ---- */
.cta-strip {
  background: linear-gradient(180deg, var(--neutral-950) 0%, var(--primary-900) 50%, var(--neutral-950) 100%);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 153, 255, 0.05);
  border-bottom: 1px solid rgba(0, 153, 255, 0.05);
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(0, 153, 255, 0.12), transparent 60%);
  pointer-events: none;
}

.cta-strip-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2xl);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-strip-text h3 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: var(--space-xs);
}

.cta-strip-text p {
  color: var(--primary-100);
  font-size: 0.95rem;
}

/* ---- Process / Methodology ---- */
.process {
  background: var(--neutral-950);
  position: relative;
  /* Seamless transition */
  padding-top: var(--space-4xl);
}

.process-timeline {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}

/* Alive Network Process Line */
.process-line {
  position: absolute;
  left: 31px;
  /* Centered with 64px marker */
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg,
      rgba(0, 153, 255, 0.1) 0%,
      var(--accent-500) 50%,
      rgba(0, 153, 255, 0.1) 100%);
  background-size: 100% 200%;
  animation: data-pulse 3s linear infinite;
  box-shadow: 0 0 10px rgba(0, 153, 255, 0.4);
  z-index: 1;
}

@keyframes data-pulse {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 0% 200%;
  }
}

.process-step {
  display: flex;
  gap: var(--space-xl);
  padding-bottom: var(--space-3xl);
  position: relative;
  z-index: 2;
}

/* Connecting Pulse Line */
.process-step::before {
  content: '';
  position: absolute;
  left: 64px;
  /* Start from marker edge */
  top: 32px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-500), transparent);
  transition: width 0.5s ease-out;
  opacity: 0.8;
  z-index: 0;
}

.process-step:hover::before {
  width: 40px;
  /* Shoot out a connection line */
}

.process-step:last-child {
  padding-bottom: 0;
}

/* Alive Node Marker */
.step-marker {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--neutral-900);
  border: 2px solid rgba(0, 153, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  transition: all 400ms var(--ease-out);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

/* Node Pulse Animation */
.step-marker::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--accent-400);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s ease;
}

.process-step:hover .step-marker::after {
  animation: node-ripple 1.5s infinite cubic-bezier(0, 0.2, 0.8, 1);
}

@keyframes node-ripple {
  0% {
    transform: scale(1);
    opacity: 0.8;
    border-color: var(--accent-400);
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
    border-color: transparent;
  }
}

.step-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-400);
}

.process-step:hover .step-marker {
  background: var(--gradient-accent);
  border-color: transparent;
  box-shadow: 0 0 30px rgba(0, 153, 255, 0.3);
  transform: scale(1.1);
}

.process-step:hover .step-num {
  color: var(--white);
}

/* Tech Icons Animated */
.tech-icon {
  width: 32px;
  height: 32px;
  stroke: var(--accent-400);
  filter: drop-shadow(0 0 5px rgba(0, 153, 255, 0.4));
  margin-bottom: var(--space-md);
  transition: all 0.3s ease;
}

.process-step:hover .tech-icon {
  stroke: var(--white);
  filter: drop-shadow(0 0 10px var(--accent-400));
  transform: scale(1.1);
}

.step-icon {
  display: block;
}

/* Glass Data Card (Process Content) */
.step-content {
  background: linear-gradient(135deg, rgba(8, 20, 32, 0.7), rgba(4, 12, 20, 0.8));
  border: 1px solid rgba(0, 153, 255, 0.1);
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-md);
  position: relative;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  margin-left: 0;
  flex: 1;
}

.process-step:hover .step-content {
  border-color: var(--accent-500);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 153, 255, 0.1);
  transform: translateX(8px);
}

.step-content h4 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  color: var(--white);
  text-shadow: 0 0 10px rgba(0, 153, 255, 0.3);
}

.step-content p {
  font-size: 0.95rem;
  color: var(--neutral-400);
  line-height: 1.7;
}

/* ---- Value Proposition ---- */
.value-prop {
  background: var(--neutral-950);
  position: relative;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}

.value-card {
  background: #141414;
  /* Netflix darker background */
  border: 1px solid #333;
  border-radius: 4px;
  /* Subtle radius */
  padding: var(--space-xl);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.value-card::after {
  content: none;
}

.value-card:hover {
  transform: scale(1.05);
  /* Significant scale up */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
  border-color: rgba(255, 255, 255, 0.9);
  /* Bright border on hover */
  background: #181818;
  z-index: 10;
}

.value-card-icon {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  display: block;
  font-size: 2.2rem;
  margin-bottom: var(--space-md);
  transition: all var(--dur-normal);
  color: var(--accent-500);
  border: none;
  padding: 0;
}

.value-card:hover .value-card-icon {
  background: transparent;
  color: var(--white);
  border-color: transparent;
  transform: none;
  box-shadow: none;
  text-shadow: 0 0 20px var(--accent-500);
}

.value-card h4 {
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
  color: var(--white);
  font-weight: 700;
}

.value-card p {
  font-size: 0.95rem;
  color: #b3b3b3;
  /* Standard streaming app grey */
  line-height: 1.6;
}

/* ---- Trajectory ---- */
.trajectory {
  background: linear-gradient(to bottom, var(--neutral-950) 0%, rgba(8, 20, 32, 0.3) 100%);
  position: relative;
}

.trajectory-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.trajectory-text .section-tag {
  margin-bottom: var(--space-lg);
}

.trajectory-text .section-title-lg {
  margin-bottom: var(--space-xl);
}

.trajectory-text p {
  font-size: 1.02rem;
  margin-bottom: var(--space-lg);
  color: var(--neutral-400);
  line-height: 1.8;
}

.trajectory-highlights {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.trajectory-highlight {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: rgba(0, 153, 255, 0.04);
  border: 1px solid rgba(0, 153, 255, 0.1);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--neutral-200);
  transition: all var(--dur-normal);
}

.trajectory-highlight:hover {
  background: rgba(0, 153, 255, 0.08);
  border-color: rgba(0, 153, 255, 0.2);
  transform: translateX(4px);
}

.highlight-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  font-weight: 700;
}

.trajectory-card {
  background: rgba(14, 21, 32, 0.6);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.trajectory-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-accent);
}

.trajectory-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.metric {
  text-align: center;
  padding: var(--space-lg);
}

.metric-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-400);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.metric-label {
  font-size: 0.78rem;
  color: var(--neutral-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---- Social Proof ---- */
.social-proof {
  background: var(--neutral-950);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-4xl);
}

.result-card {
  background: var(--neutral-900);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all 400ms var(--ease-out);
  position: relative;
  overflow: hidden;
}

.result-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity var(--dur-normal);
}

.result-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 153, 255, 0.2);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.result-card:hover::before {
  opacity: 1;
}

.result-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-400);
  background: rgba(0, 153, 255, 0.08);
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
}

.result-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.result-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
}

.result-info h4 {
  font-size: 1rem;
  margin-bottom: 0.1rem;
}

.result-info span {
  font-size: 0.78rem;
  color: var(--neutral-500);
}

.result-body {
  margin-bottom: var(--space-lg);
}

.result-body p {
  font-size: 0.92rem;
  font-style: italic;
  color: var(--neutral-300);
  line-height: 1.7;
}

.result-metrics {
  display: flex;
  gap: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.result-metric-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--success);
  line-height: 1;
  margin-bottom: 0.15rem;
}

.result-metric-label {
  font-size: 0.7rem;
  color: var(--neutral-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Metrics Showcase */
.metrics-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.showcase-item {
  text-align: center;
  padding: var(--space-2xl);
  background: var(--neutral-900);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  transition: all var(--dur-normal);
}

.showcase-item:hover {
  border-color: rgba(0, 153, 255, 0.2);
  transform: translateY(-3px);
}

.showcase-value {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.3rem;
  line-height: 1;
}

.showcase-value.blue {
  color: var(--accent-400);
}

.showcase-value.green {
  color: var(--success);
}

.showcase-label {
  font-size: 0.8rem;
  color: var(--neutral-500);
  font-weight: 500;
}

/* ---- Final CTA ---- */
.final-cta {
  background: linear-gradient(180deg, var(--neutral-950), var(--primary-900));
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: var(--gradient-glow);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.final-cta-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  position: relative;
  z-index: 2;
}

.final-cta-text .section-tag {
  margin-bottom: var(--space-lg);
}

.final-cta-text .section-title-lg {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: var(--space-lg);
}

.final-cta-desc {
  font-size: 1.05rem;
  color: var(--neutral-400);
  line-height: 1.75;
  margin-bottom: var(--space-2xl);
}

.final-cta-guarantees {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.92rem;
  color: var(--neutral-300);
}

.guarantee-item svg {
  width: 18px;
  height: 18px;
  color: var(--success);
  flex-shrink: 0;
}

.final-cta-box {
  background: rgba(14, 21, 32, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  text-align: center;
}

.cta-box-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.78rem;
  font-weight: 700;
  color: #fca5a5;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: var(--radius-full);
  padding: 0.4rem 1rem;
  margin-bottom: var(--space-xl);
}

.cta-urgency-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  animation: pulse-glow 1.5s ease-in-out infinite;
}

.final-cta-box h3 {
  font-size: 1.4rem;
  margin-bottom: var(--space-md);
}

.final-cta-box p {
  font-size: 0.95rem;
  color: var(--neutral-400);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

.cta-response-time {
  display: block;
  margin-top: var(--space-lg);
  font-size: 0.82rem;
  color: var(--neutral-500);
  font-weight: 500;
}

/* ---- Footer ---- */
.footer {
  background: var(--neutral-950);
  padding: var(--space-4xl) 0 var(--space-xl);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-4xl);
  margin-bottom: var(--space-3xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-brand p {
  margin-top: var(--space-md);
  font-size: 0.9rem;
  color: var(--neutral-500);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-nav h5 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--neutral-300);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-nav a {
  font-size: 0.85rem;
  color: var(--neutral-500);
  transition: color var(--dur-fast);
}

.footer-nav a:hover {
  color: var(--accent-300);
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--neutral-600);
}

/* ---- Floating WhatsApp ---- */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: all var(--dur-normal) var(--ease-out);
  animation: float-btn 3s ease-in-out infinite;
}

.floating-whatsapp:hover {
  animation: none;
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: white;
}

@keyframes float-btn {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* ---- Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* ---- Interactive Effects (Spotlight & Shine) ---- */
.value-card::after,
.stat-card::after,
.result-card::after,
.intro-card::after,
.expert-image-frame::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
      rgba(255, 255, 255, 0.1),
      transparent 60%);
  opacity: 0;
  z-index: 10;
  transition: opacity 0.3s;
  pointer-events: none;
  mix-blend-mode: overlay;
  border-radius: inherit;
}

.value-card:hover::after,
.stat-card:hover::after,
.result-card:hover::after,
.intro-card:hover::after,
.expert-image-frame:hover::after {
  opacity: 1;
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: none;
  pointer-events: none;
}

.btn:hover::before {
  animation: shine 1.5s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }

  100% {
    left: 200%;
  }
}

/* ---- Mobile Overlay ---- */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--dur-normal);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .results-grid {
    grid-template-columns: 1fr;
  }

  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trajectory-content {
    grid-template-columns: 1fr;
  }

  .trajectory-visual {
    order: 2;
  }

  .metrics-showcase {
    grid-template-columns: repeat(2, 1fr);
  }

  .final-cta-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .final-cta-text .section-title-lg {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
    text-wrap: balance;
    /* Prevent widow words */
    padding: 0 var(--space-xs);
  }

  .final-cta-box {
    padding: var(--space-xl) var(--space-md) 100px var(--space-md);
    /* Extra bottom padding for FAB */
  }

  .final-cta-guarantees {
    align-items: center;
    justify-content: center;
  }

  /* Restore Footer & Hex Grid responsive styles */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-2xl);
  }

  .footer-nav {
    align-items: center;
  }

  .hex-grid {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    gap: var(--space-lg);
  }

  .hex-shape {
    width: 170px;
    height: 187px;
  }
}

@media (max-width: 768px) {
  .hex-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: var(--space-md) var(--space-md) var(--space-xl) var(--space-md);
    scroll-snap-type: x mandatory;
    gap: var(--space-md);
    grid-template-columns: none;
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
    scroll-padding-left: var(--space-md);
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .hex-grid::-webkit-scrollbar {
    display: none;
  }

  .hex-wrapper {
    flex: 0 0 280px;
    height: 320px;
    scroll-snap-align: center;
    margin-bottom: 0;
  }

  .hex-shape {
    width: 100%;
    height: 100%;
  }

  .section-padding {
    padding: var(--space-xl) 0;
  }

  /* Intro Card Mobile Optimization */
  .intro-card {
    padding: var(--space-xl) var(--space-md);
    margin-bottom: var(--space-xl);
    border-left-width: 3px;
    width: 100%;
    /* Ensure it takes full width of container */
  }

  .intro-card .section-title {
    font-size: 1.6rem;
    /* Slightly smaller to prevent single word lines */
    line-height: 1.3;
    text-wrap: balance;
    margin-bottom: var(--space-md);
    padding: 0;
  }

  .intro-card p {
    font-size: 1rem;
    line-height: 1.6;
    padding: 0;
    max-width: 100%;
    margin-bottom: var(--space-md);
    overflow-wrap: break-word;
    /* Prevent overflow */
  }

  .container {
    padding: 0 var(--space-md);
  }

  .navbar-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: rgba(8, 12, 20, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: var(--space-2xl);
    padding: var(--space-2xl);
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    transition: right var(--dur-normal) var(--ease-out);
    z-index: 999;
  }

  .navbar-links.active {
    right: 0;
  }

  .navbar-links a {
    font-size: 1.25rem;
    /* Larger touch targets */
    padding: var(--space-sm) 0;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
  }

  .mobile-toggle {
    display: flex;
    z-index: 1001;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero .container {
    padding-top: 80px;
  }

  .hero-title {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }

  .hero-stats {
    gap: var(--space-xl);
    flex-wrap: wrap;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn {
    text-align: center;
    justify-content: center;
  }

  .hex-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

  .intro-card-body {
    padding: var(--space-2xl) var(--space-xl);
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    max-width: 100%;
  }

  .cta-strip-content {
    justify-content: center;
    text-align: center;
    gap: var(--space-lg);
  }

  /* Tighter section headers on mobile */
  .section-header {
    margin-bottom: var(--space-xl);
  }

  .section-title-lg {
    font-size: 2rem;
    /* Fixed manageable size for mobile */
  }

  /* Process Line Optimization for Mobile Space */
  .process-timeline {
    border-left: 2px solid rgba(0, 153, 255, 0.2);
    padding-left: var(--space-md);
    margin-left: 0;
    max-width: 100%;
  }

  .process-line {
    display: none;
  }

  /* Remove the fancy center line, use simple border */

  .process-step {
    flex-direction: column;
    gap: var(--space-sm);
    padding-bottom: var(--space-lg);
    max-width: 100%;
  }

  .process-step::before {
    display: none;
  }

  /* Remove connecting lines */

  .step-marker {
    width: 40px;
    height: 40px;
    margin-bottom: var(--space-xs);
  }

  .step-num {
    font-size: 0.9rem;
  }

  .step-content {
    margin-left: 0;
    width: auto;
    max-width: 100%;
    padding: var(--space-md);
    overflow-wrap: break-word;
  }

  .metrics-showcase {
    grid-template-columns: 1fr 1fr;
  }

  .result-metrics {
    flex-wrap: wrap;
    gap: var(--space-md);
  }

  .footer-content {
    gap: var(--space-2xl);
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-md);
  }

  /* Netflix Cards Mobile Stack */
  .value-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .metrics-showcase {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .showcase-item {
    padding: var(--space-md);
    /* Compact showcase */
  }

  .trajectory-metrics {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .hex-grid {
    grid-template-columns: 1fr;
    /* 1 column for hexes to ensure readability */
    justify-items: center;
    gap: var(--space-lg);
  }

  .hex-shape {
    width: 220px;
    /* Larger clearer hexes in 1 col */
    height: 250px;
  }

  .hex-number {
    font-size: 4rem;
  }

  .hex-text {
    font-size: 1rem;
  }

  /* Trust Bar Mobile */
  .trust-logos {
    gap: var(--space-md);
  }

  .trust-divider {
    display: none;
  }

  /* Clean up dense logos */
  .trust-item {
    font-size: 0.75rem;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
  }
}

/* ---- About Expert (Cinematic) ---- */
.about-expert {
  /* Seamless dark background matching previous section */
  background: var(--neutral-950);
  position: relative;
  overflow: hidden;
  /* Removed borders for seamless look */
}

/* Background animated particles effect */
.about-expert::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 153, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 153, 255, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at 30% 50%, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 30% 50%, black 0%, transparent 80%);
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.expert-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  /* Slightly more space for image */
  gap: var(--space-5xl);
  align-items: center;
  position: relative;
  z-index: 2;
}

.expert-image-container {
  position: relative;
  perspective: 1000px;
  /* For 3D feel */
}

/* Glowing orb behind image */
.expert-bg-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(0, 153, 255, 0.15) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
  opacity: 0.6;
  animation: pulse-glow 4s infinite alternate;
}

@keyframes pulse-glow {
  0% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(0.95);
  }

  100% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

.expert-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: all 0.5s ease;
}

.expert-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  /* Border width */
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent 50%, rgba(0, 153, 255, 0.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.expert-image {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.0);
  transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
  filter: contrast(1.05) saturate(1.1);
}

.expert-image-frame:hover .expert-image {
  transform: scale(1.04);
}

.expert-image-frame:hover {
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 153, 255, 0.15);
}

.expert-badge {
  position: absolute;
  bottom: 40px;
  right: -30px;
  background: rgba(4, 12, 20, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1.2rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 153, 255, 0.2);
  border-bottom: 2px solid var(--accent-500);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 153, 255, 0.1);
  transform: translateY(0);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 5;
}

.expert-image-container:hover .expert-badge {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(0, 153, 255, 0.4);
}

.badge-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  /* More defined shadow for better readability */
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 153, 255, 0.6);
  background: linear-gradient(180deg, #ffffff 0%, #aee2ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 5px rgba(0, 153, 255, 0.4));
}

.badge-text {
  font-size: 0.75rem;
  color: var(--accent-200);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-top: 0.3rem;
}

/* Content Typography */
.section-title-lg {
  letter-spacing: -0.02em;
}

.expert-subtitle {
  font-size: 1.25rem;
  color: var(--neutral-200);
  margin-bottom: var(--space-xl);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.expert-subtitle::after {
  content: '';
  height: 1px;
  width: 60px;
  background: var(--accent-500);
  display: block;
}

.expert-bio p {
  font-size: 1.05rem;
  color: var(--neutral-400);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.expert-bio strong {
  color: var(--white);
  font-weight: 600;
}

.expert-quote {
  position: relative;
  background: radial-gradient(circle at 0% 50%, rgba(0, 153, 255, 0.08), transparent 60%);
  padding: var(--space-xl);
  border-left: 3px solid var(--accent-400);
  margin: var(--space-xl) 0;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  box-shadow: inset 10px 0 30px rgba(0, 153, 255, 0.05);
}

.expert-quote::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 4rem;
  color: rgba(0, 153, 255, 0.1);
  font-family: serif;
  line-height: 1;
}

.expert-quote p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 500;
  font-style: italic;
  margin: 0;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

/* Responsive */
@media (max-width: 900px) {
  .expert-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    text-align: center;
  }

  .expert-image-container {
    max-width: 400px;
    margin: 0 auto;
  }

  .expert-badge {
    right: 0;
    bottom: var(--space-md);
  }

  .expert-subtitle {
    justify-content: center;
  }
}

.expert-image-container {
  position: relative;
  perspective: 1000px;
  /* For 3D feel */
}

/* Glowing orb behind image */
.expert-bg-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(0, 153, 255, 0.15) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
  opacity: 0.6;
  animation: pulse-glow 4s infinite alternate;
}

@keyframes pulse-glow {
  0% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(0.95);
  }

  100% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

.expert-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: all 0.5s ease;
}

.expert-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), transparent 40%, var(--accent-500));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.8;
}

.expert-image {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.0);
  transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
  filter: contrast(1.05) saturate(1.1);
}

.expert-image-frame:hover .expert-image {
  transform: scale(1.04);
}

.expert-image-frame:hover {
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 153, 255, 0.15);
}

.expert-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  /* Pop out effect */
  background: rgba(4, 18, 28, 0.9);
  backdrop-filter: blur(16px);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--accent-400);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.expert-image-frame:hover .expert-badge {
  transform: translateY(-5px);
}

.badge-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.badge-text {
  font-size: 0.7rem;
  color: var(--neutral-300);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-top: 0.2rem;
}

/* Content Typography */
.section-title-lg {
  letter-spacing: -0.02em;
}

.expert-subtitle {
  font-size: 1.25rem;
  color: var(--neutral-200);
  margin-bottom: var(--space-xl);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.expert-subtitle::after {
  content: '';
  height: 1px;
  width: 60px;
  background: var(--accent-500);
  display: block;
}

.expert-bio p {
  font-size: 1.05rem;
  color: var(--neutral-400);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.expert-bio strong {
  color: var(--white);
  font-weight: 600;
}

.expert-quote {
  position: relative;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.03), transparent);
  padding: var(--space-xl);
  border-left: 2px solid var(--accent-400);
  margin: var(--space-xl) 0;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.expert-quote p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 500;
  font-style: italic;
  margin: 0;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
  .expert-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    text-align: center;
  }

  .expert-image-container {
    max-width: 400px;
    margin: 0 auto;
  }

  .expert-badge {
    right: 0;
    bottom: var(--space-md);
  }

  .expert-subtitle {
    justify-content: center;
  }

  .expert-subtitle::after {
    display: none;
  }

  .expert-quote {
    text-align: left;
    /* Keep quote readable */
  }
}

/* Network Background */
.section-network-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: screen;
}

/* Creating responsive process line */
@media (max-width: 768px) {
  .process-timeline {
    padding-left: 0;
    max-width: 100%;
  }

  .process-line {
    left: 20px;
    /* Adjust line position for smaller marker */
  }

  /* Smaller markers on mobile to save space */
  .step-marker {
    width: 42px;
    height: 42px;
  }

  .process-step::before {
    left: 42px;
    /* Connect from smaller marker */
    top: 21px;
    width: 15px !important;
    /* Force connection width */
  }

  .process-step {
    padding-bottom: var(--space-xl);
    gap: var(--space-md);
  }

  .step-num {
    font-size: 0.9rem;
  }

  .step-content {
    padding-top: 0;
  }
}