  /* ===== CSS VARIABLES ===== */
  :root {
      --primary: #7c3aed;
      --primary-light: #a78bfa;
      --secondary: #06b6d4;
      --accent: #22d3ee;
      --neon-blue: #3b82f6;
      --neon-purple: #8b5cf6;
      --neon-cyan: #06b6d4;
      --dark-bg: #0a0a1a;
      --dark-card: rgba(15, 15, 35, 0.7);
      --dark-surface: #111128;
      --glass-bg: rgba(255, 255, 255, 0.05);
      --glass-border: rgba(255, 255, 255, 0.1);
      --glass-shadow: rgba(124, 58, 237, 0.1);
      --text-primary: #f1f5f9;
      --text-secondary: #94a3b8;
      --gradient-1: linear-gradient(135deg, #7c3aed, #06b6d4);
      --gradient-2: linear-gradient(135deg, #3b82f6, #8b5cf6, #06b6d4);
      --gradient-3: linear-gradient(180deg, #0a0a1a 0%, #111128 100%);
  }

  /* ===== GLOBAL STYLES ===== */
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  html {
      overflow-x: hidden;
      scroll-behavior: smooth;
  }

  body {
      font-family: 'Inter', sans-serif;
      background: var(--dark-bg);
      color: var(--text-primary);
      overflow-x: hidden;
      line-height: 1.7;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700;
  }

  a {
      text-decoration: none;
      transition: all 0.3s ease;
  }

  section {
      position: relative;
      padding: 100px 0;
      overflow: hidden;
  }

  .section-title {
      font-size: 2.8rem;
      font-weight: 800;
      margin-bottom: 1rem;
      background: var(--gradient-1);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
  }

  .section-subtitle {
      color: var(--text-secondary);
      font-size: 1.15rem;
      max-width: 600px;
      margin: 0 auto 3.5rem;
  }

  /* ===== SCROLLBAR ===== */
  ::-webkit-scrollbar {
      width: 8px;
  }

  ::-webkit-scrollbar-track {
      background: var(--dark-bg);
  }

  ::-webkit-scrollbar-thumb {
      background: var(--gradient-1);
      border-radius: 10px;
  }

  /* ===== GLASS CARD ===== */
  .glass-card {
      background: var(--glass-bg);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid var(--glass-border);
      border-radius: 20px;
      padding: 2rem;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .glass-card:hover {
      transform: translateY(-8px);
      border-color: rgba(124, 58, 237, 0.4);
      box-shadow: 0 20px 60px rgba(124, 58, 237, 0.15),
          0 0 30px rgba(6, 182, 212, 0.1);
  }

  /* ===== GRADIENT BUTTONS ===== */
  .btn-gradient {
      background: var(--gradient-1);
      color: #fff;
      border: none;
      padding: 14px 36px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1rem;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
      z-index: 1;
  }

  .btn-gradient::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #06b6d4, #7c3aed);
      z-index: -1;
      opacity: 0;
      transition: opacity 0.4s ease;
      border-radius: 50px;
  }

  .btn-gradient:hover {
      color: #fff;
      transform: translateY(-3px);
      box-shadow: 0 10px 40px rgba(124, 58, 237, 0.4);
  }

  .btn-gradient:hover::before {
      opacity: 1;
  }

  .btn-outline-glow {
      background: transparent;
      color: var(--accent);
      border: 2px solid var(--accent);
      padding: 12px 34px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1rem;
      transition: all 0.4s ease;
  }

  .btn-outline-glow:hover {
      background: rgba(6, 182, 212, 0.1);
      color: #fff;
      border-color: var(--accent);
      box-shadow: 0 0 30px rgba(6, 182, 212, 0.3);
      transform: translateY(-3px);
  }

  /* ===== GLOW EFFECTS ===== */
  .glow-purple {
      position: absolute;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(124, 58, 237, 0.3), transparent 70%);
      border-radius: 50%;
      filter: blur(80px);
      pointer-events: none;
      z-index: 0;
  }

  .glow-cyan {
      position: absolute;
      width: 350px;
      height: 350px;
      background: radial-gradient(circle, rgba(6, 182, 212, 0.25), transparent 70%);
      border-radius: 50%;
      filter: blur(80px);
      pointer-events: none;
      z-index: 0;
  }

  /* ===== FLOATING ANIMATION ===== */
  @keyframes float {

      0%,
      100% {
          transform: translateY(0px) rotate(0deg);
      }

      50% {
          transform: translateY(-20px) rotate(5deg);
      }
  }

  @keyframes float-reverse {

      0%,
      100% {
          transform: translateY(0px) rotate(0deg);
      }

      50% {
          transform: translateY(20px) rotate(-5deg);
      }
  }

  @keyframes pulse-glow {

      0%,
      100% {
          opacity: 0.5;
          transform: scale(1);
      }

      50% {
          opacity: 1;
          transform: scale(1.05);
      }
  }

  @keyframes rotate-slow {
      from {
          transform: rotate(0deg);
      }

      to {
          transform: rotate(360deg);
      }
  }

  @keyframes shimmer {
      0% {
          background-position: -200% center;
      }

      100% {
          background-position: 200% center;
      }
  }

  .floating {
      animation: float 6s ease-in-out infinite;
  }

  .floating-reverse {
      animation: float-reverse 7s ease-in-out infinite;
  }

  .pulse-glow {
      animation: pulse-glow 3s ease-in-out infinite;
  }

  .rotate-slow {
      animation: rotate-slow 20s linear infinite;
  }

  /* ===== PARTICLES CANVAS ===== */
  #particles-canvas {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
  }

  /* ===== FLOATING CRYPTO ICONS ===== */
  .floating-icons {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
  }

  .floating-icon {
      position: absolute;
      font-size: 1.5rem;
      opacity: 0.07;
      color: var(--accent);
  }

  /* ===== NAVBAR ===== */
  .navbar-pixel {
      background: rgba(10, 10, 26, 0.8);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      padding: 15px 0;
      transition: all 0.4s ease;
      z-index: 9999;
  }

  .navbar-pixel.scrolled {
      background: rgba(10, 10, 26, 0.95);
      padding: 10px 0;
      box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
  }

  .navbar-brand-pixel {
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 800;
      font-size: 1.6rem;
      background: var(--gradient-1);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
  }

  .navbar-pixel .nav-link {
      color: var(--text-secondary);
      font-weight: 500;
      padding: 8px 18px !important;
      border-radius: 8px;
      transition: all 0.3s ease;
      font-size: 0.95rem;
  }

  .navbar-pixel .nav-link:hover,
  .navbar-pixel .nav-link.active {
      color: var(--text-primary);
      background: rgba(124, 58, 237, 0.1);
  }

  .navbar-toggler {
      border: 1px solid var(--glass-border);
      padding: 6px 10px;
  }

  .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }

  /* ===== HERO SECTION ===== */
  #hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding-top: 100px;
      background: var(--dark-bg);
      position: relative;
  }

  #hero .glow-purple {
      top: -100px;
      left: -100px;
      width: 600px;
      height: 600px;
  }

  #hero .glow-cyan {
      bottom: -100px;
      right: -50px;
      width: 500px;
      height: 500px;
  }

  .hero-title {
      font-size: 4.2rem;
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 1.5rem;
  }

  .hero-title .gradient-text {
      background: var(--gradient-2);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
  }

  .hero-subtitle {
      font-size: 1.25rem;
      color: var(--text-secondary);
      margin-bottom: 2.5rem;
      max-width: 520px;
  }

  .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(124, 58, 237, 0.15);
      border: 1px solid rgba(124, 58, 237, 0.3);
      padding: 8px 20px;
      border-radius: 50px;
      font-size: 0.9rem;
      color: var(--primary-light);
      margin-bottom: 1.5rem;
  }

  .hero-badge .pulse-dot {
      width: 8px;
      height: 8px;
      background: #22c55e;
      border-radius: 50%;
      animation: pulse-glow 2s infinite;
  }

  /* Dashboard Mockup */
  .dashboard-mockup {
      background: var(--glass-bg);
      backdrop-filter: blur(20px);
      border: 1px solid var(--glass-border);
      border-radius: 24px;
      padding: 1.5rem;
      position: relative;
  }

  .dashboard-mockup .mockup-header {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 1rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid var(--glass-border);
  }

  .mockup-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
  }

  .mockup-chart {
      height: 200px;
      position: relative;
      overflow: hidden;
  }

  .chart-line {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
  }

  .mockup-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      margin-top: 1rem;
  }

  .mockup-stat {
      background: rgba(255, 255, 255, 0.03);
      border-radius: 12px;
      padding: 1rem;
      text-align: center;
  }

  .mockup-stat .stat-value {
      font-size: 1.3rem;
      font-weight: 700;
      background: var(--gradient-1);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
  }

  .mockup-stat .stat-label {
      font-size: 0.75rem;
      color: var(--text-secondary);
      margin-top: 4px;
  }

  /* Hero Counters */
  .hero-counters {
      display: flex;
      gap: 3rem;
      margin-top: 3rem;
  }

  .counter-item .counter-value {
      font-size: 2rem;
      font-weight: 800;
      font-family: 'Space Grotesk', sans-serif;
      background: var(--gradient-1);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
  }

  .counter-item .counter-label {
      font-size: 0.85rem;
      color: var(--text-secondary);
  }

  /* ===== PARTNERS SECTION ===== */
  #partners {
      padding: 60px 0;
      background: var(--dark-surface);
      border-top: 1px solid var(--glass-border);
      border-bottom: 1px solid var(--glass-border);
  }

  .partner-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      opacity: 0.4;
      transition: all 0.4s ease;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--text-secondary);
      font-family: 'Space Grotesk', sans-serif;
  }

  .partner-logo:hover {
      opacity: 1;
  }

  .partner-logo i {
      font-size: 1.8rem;
  }

  /* ===== FEATURES SECTION ===== */
  #features {
      background: var(--dark-bg);
  }

  .feature-card {
      text-align: center;
      padding: 2.5rem 1.5rem;
  }

  .feature-icon {
      width: 80px;
      height: 80px;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      font-size: 2rem;
      background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(6, 182, 212, 0.15));
      border: 1px solid rgba(124, 58, 237, 0.2);
      color: var(--accent);
      transition: all 0.4s ease;
  }

  .glass-card:hover .feature-icon {
      background: var(--gradient-1);
      color: #fff;
      transform: scale(1.1) rotate(5deg);
      box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
  }

  .feature-card h5 {
      font-size: 1.2rem;
      margin-bottom: 0.75rem;
  }

  .feature-card p {
      color: var(--text-secondary);
      font-size: 0.95rem;
  }

  /* ===== TOKEN STATS ===== */
  #token-stats {
      background: var(--dark-surface);
  }

  .stat-card {
      text-align: center;
      padding: 2rem 1.5rem;
  }

  .stat-icon {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      background: var(--gradient-1);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
  }

  .stat-card .stat-number {
      font-size: 2.2rem;
      font-weight: 800;
      font-family: 'Space Grotesk', sans-serif;
      color: var(--text-primary);
      margin-bottom: 0.25rem;
  }

  .stat-card .stat-title {
      color: var(--text-secondary);
      font-size: 0.9rem;
  }

  /* ===== TOKENOMICS ===== */
  #tokenomics {
      background: var(--dark-bg);
  }

  .tokenomics-chart {
      position: relative;
      width: 320px;
      height: 320px;
      margin: 0 auto;
  }

  .chart-center {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      z-index: 2;
  }

  .chart-center .total-label {
      font-size: 0.85rem;
      color: var(--text-secondary);
  }

  .chart-center .total-value {
      font-size: 1.8rem;
      font-weight: 800;
      font-family: 'Space Grotesk', sans-serif;
  }

  .token-distribution .dist-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 0;
      border-bottom: 1px solid var(--glass-border);
  }

  .dist-item .dist-left {
      display: flex;
      align-items: center;
      gap: 12px;
  }

  .dist-dot {
      width: 14px;
      height: 14px;
      border-radius: 4px;
      flex-shrink: 0;
  }

  .dist-bar-container {
      flex: 1;
      margin: 0 1.5rem;
  }

  .dist-bar {
      height: 8px;
      border-radius: 4px;
      background: rgba(255, 255, 255, 0.05);
      overflow: hidden;
  }

  .dist-bar-fill {
      height: 100%;
      border-radius: 4px;
      transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
      width: 0;
  }

  .dist-percent {
      font-weight: 700;
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.1rem;
      min-width: 50px;
      text-align: right;
  }

  /* ===== ABOUT ===== */
  #about {
      background: var(--dark-surface);
  }

  .about-highlight-card {
      padding: 2rem;
      text-align: center;
  }

  .about-highlight-card .highlight-number {
      font-size: 3rem;
      font-weight: 900;
      background: var(--gradient-1);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-family: 'Space Grotesk', sans-serif;
  }

  /* ===== ROADMAP ===== */
  #roadmap {
      background: var(--dark-bg);
  }

  .timeline {
      position: relative;
      padding: 2rem 0;
  }

  .timeline::before {
      content: '';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      width: 3px;
      height: 100%;
      background: linear-gradient(180deg, var(--primary), var(--secondary));
      border-radius: 3px;
  }

  .timeline-item {
      position: relative;
      width: 50%;
      padding: 0 3rem 3rem;
  }

  .timeline-item:nth-child(odd) {
      left: 0;
      text-align: right;
      padding-right: 3rem;
  }

  .timeline-item:nth-child(even) {
      left: 50%;
      text-align: left;
      padding-left: 3rem;
  }

  .timeline-dot {
      position: absolute;
      width: 20px;
      height: 20px;
      background: var(--gradient-1);
      border-radius: 50%;
      top: 0;
      z-index: 2;
      box-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
  }

  .timeline-item:nth-child(odd) .timeline-dot {
      right: -10px;
  }

  .timeline-item:nth-child(even) .timeline-dot {
      left: -10px;
  }

  .timeline-content {
      background: var(--glass-bg);
      backdrop-filter: blur(20px);
      border: 1px solid var(--glass-border);
      border-radius: 16px;
      padding: 1.5rem;
      transition: all 0.4s ease;
  }

  .timeline-content:hover {
      border-color: rgba(124, 58, 237, 0.4);
      box-shadow: 0 10px 40px rgba(124, 58, 237, 0.15);
  }

  .timeline-date {
      display: inline-block;
      background: var(--gradient-1);
      color: #fff;
      padding: 4px 14px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
      margin-bottom: 0.75rem;
  }

  .timeline-content h5 {
      margin-bottom: 0.5rem;
  }

  .timeline-content p {
      color: var(--text-secondary);
      font-size: 0.9rem;
      margin: 0;
  }

  /* ===== PRICING ===== */
  #pricing {
      background: var(--dark-surface);
  }

  .pricing-card {
      text-align: center;
      padding: 2.5rem 2rem;
      position: relative;
      overflow: hidden;
  }

  .pricing-card.featured {
      border-color: rgba(124, 58, 237, 0.5);
      background: rgba(124, 58, 237, 0.08);
  }

  .pricing-card.featured::before {
      content: 'POPULAR';
      position: absolute;
      top: 20px;
      right: -30px;
      background: var(--gradient-1);
      color: #fff;
      padding: 4px 40px;
      font-size: 0.75rem;
      font-weight: 700;
      transform: rotate(45deg);
  }

  .pricing-card .plan-name {
      font-size: 1.1rem;
      color: var(--text-secondary);
      margin-bottom: 1rem;
      text-transform: uppercase;
      letter-spacing: 2px;
  }

  .pricing-card .plan-price {
      font-size: 3.5rem;
      font-weight: 900;
      font-family: 'Space Grotesk', sans-serif;
      margin-bottom: 0.5rem;
  }

  .pricing-card .plan-price .currency {
      font-size: 1.5rem;
      vertical-align: super;
      color: var(--accent);
  }

  .pricing-card .plan-period {
      color: var(--text-secondary);
      font-size: 0.9rem;
      margin-bottom: 2rem;
  }

  .pricing-card .plan-features {
      list-style: none;
      padding: 0;
      margin-bottom: 2rem;
      text-align: left;
  }

  .pricing-card .plan-features li {
      padding: 10px 0;
      border-bottom: 1px solid var(--glass-border);
      color: var(--text-secondary);
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .pricing-card .plan-features li i {
      color: #22c55e;
      font-size: 1rem;
  }

  .pricing-card .plan-features li.disabled {
      opacity: 0.4;
  }

  .pricing-card .plan-features li.disabled i {
      color: #ef4444;
  }

  /* ===== TEAM ===== */
  #team {
      background: var(--dark-bg);
  }

  .team-card {
      text-align: center;
      padding: 2rem;
  }

  .team-avatar {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      margin: 0 auto 1.5rem;
      background: var(--gradient-1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3rem;
      color: #fff;
      position: relative;
      overflow: hidden;
  }

  .team-avatar::after {
      content: '';
      position: absolute;
      inset: 3px;
      background: var(--dark-surface);
      border-radius: 50%;
      z-index: 0;
  }

  .team-avatar i {
      position: relative;
      z-index: 1;
  }

  .team-card h5 {
      margin-bottom: 0.25rem;
  }

  .team-card .team-role {
      color: var(--accent);
      font-size: 0.9rem;
      margin-bottom: 1rem;
  }

  .team-card .team-bio {
      color: var(--text-secondary);
      font-size: 0.9rem;
      margin-bottom: 1rem;
  }

  .team-socials a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.05);
      color: var(--text-secondary);
      margin: 0 4px;
      transition: all 0.3s ease;
  }

  .team-socials a:hover {
      background: var(--gradient-1);
      color: #fff;
      transform: translateY(-3px);
  }

  /* ===== FAQ ===== */
  #faq {
      background: var(--dark-surface);
  }

  .faq-accordion .accordion-item {
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: 16px !important;
      margin-bottom: 1rem;
      overflow: hidden;
  }

  .faq-accordion .accordion-button {
      background: transparent;
      color: var(--text-primary);
      font-weight: 600;
      font-size: 1.05rem;
      padding: 1.25rem 1.5rem;
      box-shadow: none;
      border: none;
  }

  .faq-accordion .accordion-button:not(.collapsed) {
      background: rgba(124, 58, 237, 0.1);
      color: var(--accent);
  }

  .faq-accordion .accordion-button::after {
      filter: brightness(0) invert(1);
  }

  .faq-accordion .accordion-body {
      color: var(--text-secondary);
      padding: 0 1.5rem 1.25rem;
      line-height: 1.8;
  }

  /* ===== CTA SECTION ===== */
  #cta {
      background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(6, 182, 212, 0.2));
      position: relative;
  }

  #cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--dark-bg);
      opacity: 0.7;
      z-index: 0;
  }

  .cta-content {
      position: relative;
      z-index: 1;
  }

  .cta-title {
      font-size: 3.2rem;
      font-weight: 900;
      margin-bottom: 1.5rem;
  }

  /* ===== CONTACT ===== */
  #contact {
      background: var(--dark-bg);
  }

  .contact-form .form-control,
  .contact-form .form-select {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--glass-border);
      color: var(--text-primary);
      padding: 14px 18px;
      border-radius: 12px;
      font-size: 0.95rem;
      transition: all 0.3s ease;
  }

  .contact-form .form-control:focus,
  .contact-form .form-select:focus {
      background: rgba(255, 255, 255, 0.05);
      border-color: var(--primary);
      box-shadow: 0 0 20px rgba(124, 58, 237, 0.15);
      color: var(--text-primary);
  }

  .contact-form .form-control::placeholder {
      color: var(--text-secondary);
  }

  .contact-info-card {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1.5rem;
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: 16px;
      margin-bottom: 1rem;
      transition: all 0.3s ease;
  }

  .contact-info-card:hover {
      border-color: rgba(124, 58, 237, 0.3);
  }

  .contact-info-card .info-icon {
      width: 50px;
      height: 50px;
      border-radius: 12px;
      background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(6, 182, 212, 0.15));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      color: var(--accent);
      flex-shrink: 0;
  }

  .contact-info-card h6 {
      margin-bottom: 0.25rem;
  }

  .contact-info-card p {
      color: var(--text-secondary);
      font-size: 0.9rem;
      margin: 0;
  }

  /* ===== FOOTER ===== */
  #footer {
      background: var(--dark-surface);
      border-top: 1px solid var(--glass-border);
      padding: 80px 0 0;
  }

  .footer-brand {
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 800;
      font-size: 1.5rem;
      background: var(--gradient-1);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 1rem;
      display: inline-block;
  }

  .footer-desc {
      color: var(--text-secondary);
      font-size: 0.9rem;
      max-width: 300px;
  }

  .footer-title {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      color: var(--text-primary);
  }

  .footer-links {
      list-style: none;
      padding: 0;
  }

  .footer-links li {
      margin-bottom: 0.75rem;
  }

  .footer-links a {
      color: var(--text-secondary);
      font-size: 0.9rem;
      transition: all 0.3s ease;
  }

  .footer-links a:hover {
      color: var(--accent);
      padding-left: 5px;
  }

  .newsletter-input {
      display: flex;
      gap: 0;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--glass-border);
      border-radius: 50px;
      overflow: hidden;
      padding: 4px;
  }

  .newsletter-input input {
      background: transparent;
      border: none;
      color: var(--text-primary);
      padding: 12px 18px;
      flex: 1;
      outline: none;
      font-size: 0.9rem;
  }

  .newsletter-input input::placeholder {
      color: var(--text-secondary);
  }

  .newsletter-input button {
      background: var(--gradient-1);
      border: none;
      color: #fff;
      padding: 10px 24px;
      border-radius: 50px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      white-space: nowrap;
  }

  .newsletter-input button:hover {
      box-shadow: 0 5px 20px rgba(124, 58, 237, 0.4);
  }

  .footer-socials {
      display: flex;
      gap: 12px;
      margin-top: 1.5rem;
  }

  .footer-socials a {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.05);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-secondary);
      transition: all 0.3s ease;
      font-size: 1.1rem;
  }

  .footer-socials a:hover {
      background: var(--gradient-1);
      color: #fff;
      transform: translateY(-3px);
  }

  .footer-bottom {
      border-top: 1px solid var(--glass-border);
      padding: 25px 0;
      margin-top: 60px;
  }

  .footer-bottom p {
      color: var(--text-secondary);
      font-size: 0.85rem;
      margin: 0;
  }

  /* ===== BACK TO TOP ===== */
  .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--gradient-1);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      cursor: pointer;
      z-index: 9999;
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s ease;
      border: none;
      box-shadow: 0 5px 30px rgba(124, 58, 237, 0.4);
  }

  .back-to-top.show {
      opacity: 1;
      visibility: visible;
  }

  .back-to-top:hover {
      transform: translateY(-5px);
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 991.98px) {
      .hero-title {
          font-size: 3rem;
      }

      .section-title {
          font-size: 2.2rem;
      }

      .cta-title {
          font-size: 2.5rem;
      }

      .hero-counters {
          gap: 2rem;
          flex-wrap: wrap;
      }

      .timeline::before {
          left: 30px;
      }

      .timeline-item {
          width: 100%;
          left: 0 !important;
          text-align: left !important;
          padding-left: 70px !important;
          padding-right: 1rem !important;
      }

      .timeline-item .timeline-dot {
          left: 20px !important;
          right: auto !important;
      }
  }

  @media (max-width: 767.98px) {
      .hero-title {
          font-size: 2.4rem;
      }

      .section-title {
          font-size: 1.8rem;
      }

      .cta-title {
          font-size: 2rem;
      }

      section {
          padding: 70px 0;
      }

      .hero-counters {
          gap: 1.5rem;
      }

      .counter-item .counter-value {
          font-size: 1.5rem;
      }

      .mockup-stats {
          grid-template-columns: 1fr;
      }

      .pricing-card .plan-price {
          font-size: 2.5rem;
      }
  }

  @media (max-width: 575.98px) {
      .hero-title {
          font-size: 2rem;
      }

      .hero-counters {
          flex-direction: column;
          gap: 1rem;
      }

      .navbar-pixel .nav-link {
          padding: 10px 15px !important;
      }
  }

  /* ===== ANIMATIONS ===== */
  .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .reveal.active {
      opacity: 1;
      transform: translateY(0);
  }

  .reveal-left {
      opacity: 0;
      transform: translateX(-40px);
      transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .reveal-left.active {
      opacity: 1;
      transform: translateX(0);
  }

  .reveal-right {
      opacity: 0;
      transform: translateX(40px);
      transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .reveal-right.active {
      opacity: 1;
      transform: translateX(0);
  }

  /* Stagger children */
  .stagger-children>* {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .stagger-children.active>*:nth-child(1) {
      transition-delay: 0.1s;
  }

  .stagger-children.active>*:nth-child(2) {
      transition-delay: 0.2s;
  }

  .stagger-children.active>*:nth-child(3) {
      transition-delay: 0.3s;
  }

  .stagger-children.active>*:nth-child(4) {
      transition-delay: 0.4s;
  }

  .stagger-children.active>*:nth-child(5) {
      transition-delay: 0.5s;
  }

  .stagger-children.active>*:nth-child(6) {
      transition-delay: 0.6s;
  }

  .stagger-children.active>*:nth-child(7) {
      transition-delay: 0.7s;
  }

  .stagger-children.active>*:nth-child(8) {
      transition-delay: 0.8s;
  }

  .stagger-children.active>* {
      opacity: 1;
      transform: translateY(0);
  }

  /* Live price ticker */
  .price-ticker {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--glass-border);
      border-radius: 12px;
      padding: 6px 16px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.85rem;
      color: var(--text-secondary);
  }

  .price-ticker .price {
      color: var(--text-primary);
      font-weight: 700;
      font-family: 'Space Grotesk', sans-serif;
  }

  .price-ticker .change {
      color: #22c55e;
      font-weight: 600;
  }

  .price-ticker .change.negative {
      color: #ef4444;
  }

  .logo-text {
      font-weight: 700;
      letter-spacing: 2px;
      background: linear-gradient(to right, #fff, var(--secondary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }

  @keyframes floating {
      0% {
          transform: translateY(0px);
      }

      50% {
          transform: translateY(-15px);
      }

      100% {
          transform: translateY(0px);
      }
  }