/* =============================================
   ZION ADVANCED SYSTEM - Enterprise Stylesheet
   Meta Fusion Technologies © 2025
   ============================================= */

/* =============================================
   1. BASE & RESET
   ============================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background-color: #020617;
  /* Matches body background */
}

/* Full-Page Acrylic Background (Windows 11 Style) */
body {
  position: relative;
  min-height: 100vh;
  color: #e2e8f0;
  line-height: 1.8;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1515268064940-5150b7c29f35?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center;
  background-size: cover;
  filter: blur(20px) brightness(0.8);
  transform: scale(1.1);
  z-index: -2;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.2), rgba(30, 64, 175, 0.4));
  z-index: -1;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* =============================================
   2. SCROLL PROGRESS BAR (NEW)
   ============================================= */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #38bdf8, #a5b4fc, #38bdf8);
  background-size: 200% 100%;
  animation: progressGlow 2s linear infinite;
  z-index: 10001;
  transition: width 0.1s ease-out;
}

@keyframes progressGlow {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

/* =============================================
   3. HEADER & NAVIGATION
   ============================================= */
header {
  background: rgba(30, 60, 114, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
}

/* Logo - Premium Hexagonal Version */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo:hover {
  transform: scale(1.02);
}

.logo-component {
  position: relative;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-hexagon {
  width: 44px;
  height: 48px;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(56, 189, 248, 0.3);
  z-index: 2;
  transition: border-color 0.3s ease;
}

.logo-letter {
  font-family: 'Oswald', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
  margin-top: -2px;
}

.logo-glow {
  position: absolute;
  inset: -2px;
  background: conic-gradient(from 0deg, transparent, #38bdf8, transparent 40%, #6366f1, transparent);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: logoRotate 4s linear infinite;
  z-index: 1;
  opacity: 0.6;
}

@keyframes logoRotate {
  0% {
    transform: rotate(0deg);
    filter: hue-rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
    filter: hue-rotate(360deg);
  }
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text-main {
  font-family: 'Oswald', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #38bdf8 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-text-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 5px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

/* Navigation Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-separator {
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
  user-select: none;
  font-weight: 300;
}

.nav-links a {
  color: #e2e8f0;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease, transform 0.2s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -6px;
  left: 0;
  background: linear-gradient(90deg, #38bdf8, #a5b4fc);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #38bdf8;
  transform: translateY(-2px);
}

/* Focus Styles - Accessibility */
.nav-links a:focus-visible {
  outline: 2px solid #38bdf8;
  outline-offset: 4px;
  border-radius: 4px;
}

.hamburger {
  display: none;
  font-size: 24px;
  color: #e2e8f0;
  cursor: pointer;
  transition: color 0.3s ease;
}

.hamburger:hover,
.hamburger:focus-visible {
  color: #38bdf8;
}

/* Skip Link - Accessibility (Hidden by default) */
.skip-link {
  position: fixed;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(45deg, #38bdf8, #6366f1);
  color: #ffffff;
  padding: 12px 24px;
  text-decoration: none;
  z-index: 10002;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(56, 189, 248, 0.4);
  transition: top 0.3s ease;
  opacity: 0;
}

.skip-link:focus {
  top: 10px;
  opacity: 1;
}

/* =============================================
   4. BUTTONS - Premium Micro-Interactions
   ============================================= */
.cta-button {
  position: relative;
  background: linear-gradient(45deg, #38bdf8, #6366f1);
  color: #ffffff;
  padding: 16px 48px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow:
    0 4px 15px rgba(56, 189, 248, 0.3),
    0 0 0 0 rgba(56, 189, 248, 0);
  display: inline-block;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.cta-button:hover,
.cta-button:focus-visible {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 8px 30px rgba(56, 189, 248, 0.4),
    0 0 20px rgba(99, 102, 241, 0.3);
}

.cta-button:active::before {
  width: 300px;
  height: 300px;
}

.cta-button:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

/* =============================================
   5. BACK TO TOP BUTTON
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(45deg, #38bdf8, #a5b4fc);
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(56, 189, 248, 0.3);
}

.back-to-top i {
  font-size: 1.2rem;
}

/* =============================================
   6. CUSTOM CURSOR - Premium Blend Mode
   ============================================= */
.cursor {
  position: fixed;
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  mix-blend-mode: difference;
}

.cursor-trail {
  position: fixed;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  mix-blend-mode: difference;
}

/* =============================================
   7. HERO SECTION - Enterprise Edition
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 120px 20px 80px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.08) 0%, transparent 70%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(56, 189, 248, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  -webkit-mask-image: radial-gradient(circle at center, black, transparent 80%);
  mask-image: radial-gradient(circle at center, black, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

/* Floating Decorative Shapes */
.hero-floating {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.15), rgba(99, 102, 241, 0.1));
  filter: blur(40px);
  animation: floatShape 20s infinite ease-in-out;
}

.shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: -50px;
  animation-delay: -7s;
}

.shape-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 10%;
  animation-delay: -14s;
}

@keyframes floatShape {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(30px, -30px) scale(1.1);
  }

  50% {
    transform: translate(-20px, 20px) scale(0.95);
  }

  75% {
    transform: translate(20px, 10px) scale(1.05);
  }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

/* Credibility Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.badge-icon {
  font-size: 1.2rem;
}

.badge-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: #38bdf8;
  letter-spacing: 0.5px;
}

/* Enhanced Title */
.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.title-line-1,
.title-line-2 {
  display: block;
}

.title-line-1 {
  color: #e2e8f0;
  margin-bottom: 8px;
}

.title-line-2 {
  color: #94a3b8;
  font-size: 0.85em;
}

.title-line-2 .highlight {
  background: linear-gradient(135deg, #38bdf8, #a5b4fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtitle */
.hero-subtitle {
  font-size: 1.25rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Dual CTA Buttons */
.hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
  animation: fadeInUp 0.8s ease-out 0.8s both;
  flex-wrap: wrap;
}

.cta-button.primary {
  background: linear-gradient(135deg, #38bdf8, #6366f1);
  color: #fff;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(56, 189, 248, 0.3);
}

.cta-button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(56, 189, 248, 0.4);
}

.cta-button.secondary {
  background: transparent;
  color: #e2e8f0;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(56, 189, 248, 0.5);
  transform: translateY(-3px);
}

/* Quick Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  animation: fadeInUp 0.8s ease-out 1s both;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #38bdf8;
  display: flex;
  align-items: center;
  gap: 4px;
}

.stat-value i {
  font-size: 0.9rem;
  color: #fbbf24;
}

.stat-label {
  font-size: 0.85rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

/* Staggered Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 100px 20px 60px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .cta-button.primary,
  .cta-button.secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }

  .floating-shape {
    display: none;
  }
}

/* =============================================
   8. PROMO BANNER
   ============================================= */
.promo-banner {
  background: linear-gradient(90deg, #ff6b6b, #feca57);
  text-align: center;
  padding: 25px;
  margin: 30px 0;
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  animation: slideIn 1s ease-out;
}

.promo-banner span {
  color: #ffd700;
  font-weight: bold;
}

@keyframes slideIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.countdown {
  font-size: 1.2rem;
  color: #ffd700;
  font-weight: bold;
}

/* =============================================
   9. DEMO VIDEO
   ============================================= */
.demo-video {
  max-width: 800px;
  margin: 100px auto;
  padding: 0 20px;
  text-align: center;
  animation: fadeIn 1s ease-out;
}

.demo-video h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 40px;
  background: linear-gradient(45deg, #38bdf8, #a5b4fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.demo-video p {
  font-size: 1.2rem;
  color: #e2e8f0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* =============================================
   10. FEATURES SECTION
   ============================================= */
.features {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 20px;
  animation: fadeIn 1s ease-out;
}

.features h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 60px;
  background: linear-gradient(45deg, #38bdf8, #a5b4fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

/* =============================================
   11. CARDS - Premium Glassmorphism
   ============================================= */
.feature-card,
.pricing-card,
.testimonial-card,
.rating-card,
.comparison-item,
.roadmap-item,
.faq-item {
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 28px;
  border-radius: 16px;
  border: 1px solid rgba(56, 189, 248, 0.15);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.feature-card:hover,
.pricing-card:hover,
.testimonial-card:hover,
.rating-card:hover,
.comparison-item:hover,
.roadmap-item:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.25),
    0 0 30px rgba(56, 189, 248, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: rgba(56, 189, 248, 0.4);
}

.feature-card:focus-visible,
.pricing-card:focus-visible,
.testimonial-card:focus-visible {
  outline: 2px solid #38bdf8;
  outline-offset: 4px;
}

.feature-card {
  text-align: center;
  transform-style: preserve-3d;
}

.feature-card i {
  font-size: 2.5rem;
  color: #38bdf8;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #38bdf8;
}

.feature-card p {
  color: #e2e8f0;
  font-size: 1.1rem;
}

/* =============================================
   12. ABOUT SECTION
   ============================================= */
.about {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 20px;
  text-align: center;
  animation: fadeIn 1s ease-out;
}

.about h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 40px;
  background: linear-gradient(45deg, #38bdf8, #a5b4fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about p {
  font-size: 1.2rem;
  color: #e2e8f0;
  max-width: 800px;
  margin: 0 auto;
}

/* =============================================
   13. PRICING SECTION
   ============================================= */
.pricing {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 20px;
  text-align: center;
  animation: fadeIn 1s ease-out;
}

.pricing h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 60px;
  background: linear-gradient(45deg, #38bdf8, #a5b4fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.pricing-card h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #38bdf8;
}

.pricing-card p {
  color: #e2e8f0;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.pricing-card .price {
  font-size: 2.2rem;
  font-weight: 700;
  color: #a5b4fc;
  margin-bottom: 20px;
}

.pricing-card .cta-button {
  width: 100%;
  text-align: center;
}

/* =============================================
   14. TESTIMONIALS SECTION
   ============================================= */
.testimonials {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 20px;
  text-align: center;
  animation: fadeIn 1s ease-out;
}

.testimonials h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 60px;
  background: linear-gradient(45deg, #38bdf8, #a5b4fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.testimonial-card {
  font-style: italic;
  color: #e2e8f0;
}

.testimonial-card p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.testimonial-card cite {
  font-size: 1rem;
  color: #38bdf8;
  font-style: normal;
  font-weight: 600;
}

/* =============================================
   15. RATINGS SECTION
   ============================================= */
.ratings {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 20px;
  text-align: center;
  animation: fadeIn 1s ease-out;
}

.ratings h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 40px;
  background: linear-gradient(45deg, #38bdf8, #a5b4fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ratings-summary {
  margin-bottom: 40px;
}

.rating-stars {
  font-size: 2rem;
  color: #ffd700;
  margin-bottom: 10px;
}

.rating-stars span {
  color: #e2e8f0;
  font-size: 1.5rem;
  margin-left: 10px;
}

.rating-comments {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.rating-stars-small {
  color: #ffd700;
  margin-bottom: 10px;
}

.rating-card p {
  color: #e2e8f0;
  font-style: italic;
  margin-bottom: 10px;
}

.rating-card cite {
  color: #38bdf8;
  font-weight: 600;
}

/* =============================================
   16. COMPARISON SECTION
   ============================================= */
.comparison {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 20px;
  text-align: center;
  animation: fadeIn 1s ease-out;
}

.comparison h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 60px;
  background: linear-gradient(45deg, #38bdf8, #a5b4fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.comparison-table {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.comparison-item h3 {
  font-size: 1.5rem;
  color: #38bdf8;
  margin-bottom: 15px;
}

.comparison-item p {
  color: #e2e8f0;
  font-size: 1rem;
}

.comparison-item.zion {
  border-color: #38bdf8;
}

.comparison-item.zion h3 {
  color: #38bdf8;
}

.comparison-item.others {
  opacity: 0.7;
}

.comparison-item.others h3 {
  color: #e2e8f0;
}

/* =============================================
   17. ROADMAP SECTION
   ============================================= */
.roadmap {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 20px;
  text-align: center;
  animation: fadeIn 1s ease-out;
}

.roadmap h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 60px;
  background: linear-gradient(45deg, #38bdf8, #a5b4fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.roadmap-item h3 {
  font-size: 1.5rem;
  color: #38bdf8;
  margin-bottom: 15px;
}

.roadmap-item p {
  color: #e2e8f0;
  font-size: 1rem;
}

/* =============================================
   18. FAQ SECTION
   ============================================= */
.faq {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 20px;
  animation: fadeIn 1s ease-out;
}

.faq h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 60px;
  background: linear-gradient(45deg, #38bdf8, #a5b4fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-item h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #38bdf8;
  margin-bottom: 15px;
}

.faq-item p {
  color: #e2e8f0;
  font-size: 1.1rem;
}

/* =============================================
   19. CONTACT SECTION
   ============================================= */
.contact {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 20px;
  text-align: center;
  animation: fadeIn 1s ease-out;
}

.contact h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 40px;
  background: linear-gradient(45deg, #38bdf8, #a5b4fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto 30px;
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 28px;
  border-radius: 16px;
  border: 1px solid rgba(56, 189, 248, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 20px;
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 10px;
  background: rgba(45, 55, 72, 0.8);
  color: #e2e8f0;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #38bdf8;
  box-shadow: 0 6px 24px rgba(56, 189, 248, 0.2);
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form .cta-button {
  width: 100%;
}

/* =============================================
   20. FOOTER - Enterprise Layout
   ============================================= */
footer {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  margin-top: 100px;
  color: #e2e8f0;
  border-top: 1px solid rgba(56, 189, 248, 0.2);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 40px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #38bdf8, #6366f1);
  border-radius: 10px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
}

.footer-logo-text {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #e2e8f0;
}

.footer-tagline {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #38bdf8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.footer-column a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-column a:hover {
  color: #38bdf8;
  transform: translateX(4px);
}

.footer-column a i {
  font-size: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 24px;
  text-align: center;
}

.footer-bottom p {
  color: #64748b;
  font-size: 0.85rem;
}

/* Footer Responsive */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-content {
    padding: 40px 20px 30px;
  }
}

/* =============================================
   21. PARTICLES - Optimized with Fixed Position
   ============================================= */
.particles-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  pointer-events: none;
  animation: floatParticle 15s infinite ease-in-out;
  will-change: transform, opacity;
}

@keyframes floatParticle {

  0%,
  100% {
    transform: translateY(0) translateX(0);
    opacity: 0.3;
  }

  25% {
    transform: translateY(-30vh) translateX(10px);
    opacity: 0.6;
  }

  50% {
    transform: translateY(-50vh) translateX(-10px);
    opacity: 0.4;
  }

  75% {
    transform: translateY(-30vh) translateX(5px);
    opacity: 0.5;
  }
}

/* =============================================
   21b. RIPPLE EFFECT
   ============================================= */
.ripple-effect {
  position: absolute;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%);
  animation: rippleAnim 0.6s ease-out forwards;
  pointer-events: none;
}

@keyframes rippleAnim {
  to {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}

/* Exit Modal section removed */

/* =============================================
   23. RESPONSIVE - Tablet
   ============================================= */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3.2rem;
  }

  .hero p {
    font-size: 1.3rem;
  }

  .features h2,
  .pricing h2,
  .testimonials h2,
  .faq h2,
  .about h2,
  .contact h2 {
    font-size: 2.5rem;
  }

  .logo-square {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
    line-height: 48px;
  }

  .logo-text-main {
    font-size: 14px;
  }

  .logo-text-sub {
    font-size: 12px;
  }
}

/* =============================================
   24. RESPONSIVE - Mobile
   ============================================= */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #1e3c72, #3b82f6);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .nav-links.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
  }

  .nav-links a {
    font-size: 16px;
    padding: 10px 0;
  }

  .nav-links a::after {
    display: none;
  }

  .feature-grid,
  .pricing-grid,
  .testimonial-grid,
  .comparison-table {
    grid-template-columns: 1fr;
  }

  .features,
  .pricing,
  .testimonials,
  .faq,
  .about,
  .contact {
    padding: 0 20px;
  }

  .logo-square {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    line-height: 40px;
  }

  .logo-text-main {
    font-size: 13px;
  }

  .logo-text-sub {
    font-size: 11px;
  }

  /* Hide custom cursor on touch devices */
  .cursor,
  .cursor-trail {
    display: none;
  }
}

/* =============================================
   25. RESPONSIVE - Small Mobile
   ============================================= */
@media (max-width: 480px) {
  .cta-button {
    padding: 12px 30px;
    font-size: 1rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .promo-banner {
    font-size: 1.1rem;
  }

  .features h2,
  .pricing h2,
  .testimonials h2,
  .faq h2,
  .about h2,
  .contact h2 {
    font-size: 2rem;
  }

  nav {
    padding: 0 16px;
  }

  .logo-square {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    line-height: 36px;
  }

  .logo-text-main {
    font-size: 12px;
  }

  .logo-text-sub {
    font-size: 10px;
  }

  .influencer-section-title {
    font-size: 2.2rem;
  }

  .influencers-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* =============================================
   15. INFLUENCERS PAGE STYLES
   ============================================= */
.influencers-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 100px 20px;
  background: radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.08) 0%, transparent 70%);
}

.influencers-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(56, 189, 248, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  -webkit-mask-image: radial-gradient(circle at center, black, transparent 80%);
  mask-image: radial-gradient(circle at center, black, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 30px;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.1);
  animation: badgePulse 3s infinite;
}

@keyframes badgePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(56, 189, 248, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(56, 189, 248, 0);
  }
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.hero-title .highlight {
  text-shadow: 0 0 30px rgba(56, 189, 248, 0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #94a3b8;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Side Decorations */
.hero-decoration {
  position: absolute;
  font-size: 5rem;
  color: rgba(56, 189, 248, 0.05);
  pointer-events: none;
  z-index: 1;
  filter: blur(2px);
  animation: floatDecoration 10s infinite alternate ease-in-out;
}

.hero-decoration-left {
  left: 5%;
  top: 30%;
}

.hero-decoration-right {
  right: 5%;
  bottom: 25%;
  animation-delay: -5s;
}

@keyframes floatDecoration {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  100% {
    transform: translateY(-40px) rotate(10deg);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #94a3b8;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 3;
}

.mouse-icon {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  position: relative;
}

.mouse-wheel {
  width: 4px;
  height: 8px;
  background: #38bdf8;
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: mouseWheelMove 1.5s infinite;
}

@keyframes mouseWheelMove {
  0% {
    top: 8px;
    opacity: 1;
  }

  100% {
    top: 25px;
    opacity: 0;
  }
}

/* Staggered Delay Helpers */
.anim-delay-1 {
  transition-delay: 0.1s !important;
}

.anim-delay-2 {
  transition-delay: 0.2s !important;
}

.anim-delay-3 {
  transition-delay: 0.3s !important;
}

.influencers-grid-section {
  max-width: 1200px;
  margin: 0 auto 100px;
  padding: 0 20px;
}

.influencers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1100px) {
  .influencers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .influencers-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.influencer-card,
.feature-card,
.pricing-card,
.testimonial-card,
.rating-card,
.comparison-item,
.roadmap-item {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.influencer-card::before,
.feature-card::before,
.pricing-card::before,
.testimonial-card::before,
.rating-card::before,
.comparison-item::before,
.roadmap-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent, rgba(56, 189, 248, 0.5));
  -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;
  pointer-events: none;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.influencer-card:hover::before,
.feature-card:hover::before,
.pricing-card:hover::before,
.testimonial-card:hover::before,
.rating-card:hover::before,
.comparison-item:hover::before,
.roadmap-item:hover::before {
  opacity: 1;
}

.influencer-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 20px rgba(56, 189, 248, 0.1);
}

.influencer-card:hover::before {
  opacity: 1;
}

.influencer-image {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  position: relative;
}

.influencer-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(56, 189, 248, 0.3);
  transition: transform 0.3s ease;
}

.influencer-card:hover .influencer-image img {
  transform: scale(1.1);
}

.verified-badge {
  position: absolute;
  bottom: 0;
  right: -10px;
  background: #38bdf8;
  color: #fff;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.influencer-info h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: #fff;
}

.influencer-info .handle {
  color: #38bdf8;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.influencer-info .bio {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #e2e8f0;
  font-size: 1.2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-links a:hover {
  background: rgba(56, 189, 248, 0.15);
  border-color: rgba(56, 189, 248, 0.5);
  color: #38bdf8;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Animations for new sections */
.influencers-hero,
.influencer-card,
.influencer-section-header {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.influencer-section-header {
  text-align: center;
  margin-bottom: 50px;
  margin-top: 80px;
}

.influencer-section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(45deg, #38bdf8, #a5b4fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

.influencer-section-subtitle {
  color: #94a3b8;
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
}

.casual-card {
  border-bottom: 2px solid rgba(255, 255, 255, 0.05);
}

/* CTA Section - Seja um Parceiro */
.cta-partner-section {
  padding: 100px 20px;
  text-align: center;
  background: radial-gradient(circle at center, rgba(56, 189, 248, 0.05) 0%, transparent 70%);
}

.cta-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 40px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg at 50% 50%, transparent 0%, rgba(56, 189, 248, 0.1) 25%, transparent 50%);
  animation: rotate 10s linear infinite;
  pointer-events: none;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.cta-content h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fff;
}

.cta-content p {
  color: #94a3b8;
  font-size: 1.1rem;
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #38bdf8, #6366f1);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(56, 189, 248, 0.2);
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 30px rgba(56, 189, 248, 0.3);
  filter: brightness(1.1);
}

.influencer-image img {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.influencer-card:hover .influencer-image img {
  transform: scale(1.1) translateZ(30px);
}