﻿
    :root {
      --bg-primary: #050510;
      --bg-secondary: #0a0a1a;
      --bg-card: rgba(255, 255, 255, 0.03);
      --bg-glass: rgba(255, 255, 255, 0.05);
      --border-glass: rgba(255, 255, 255, 0.08);
      --text-primary: #f0f0f5;
      --text-secondary: #8888a0;
      --text-muted: #555570;
      --accent-1: #6366f1;
      --accent-2: #8b5cf6;
      --accent-3: #06b6d4;
      --accent-gold: #f59e0b;
      --glow-purple: rgba(139, 92, 246, 0.3);
      --glow-blue: rgba(6, 182, 212, 0.3);
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      background: var(--bg-primary);
      color: var(--text-primary);
      line-height: 1.7;
      overflow-x: hidden;
    }

    /* ===== ANIMATED BACKGROUND ===== */
    .bg-grid {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background-image:
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
      background-size: 60px 60px;
      z-index: 0;
      pointer-events: none;
    }

    .bg-orbs {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.4;
      animation: orbFloat 20s ease-in-out infinite;
    }

    .orb-1 {
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(99, 102, 241, 0.3), transparent 70%);
      top: -200px; left: -100px;
      animation-delay: 0s;
    }

    .orb-2 {
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(139, 92, 246, 0.25), transparent 70%);
      top: 40%; right: -150px;
      animation-delay: -7s;
      animation-duration: 25s;
    }

    .orb-3 {
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(6, 182, 212, 0.2), transparent 70%);
      bottom: 10%; left: 20%;
      animation-delay: -14s;
      animation-duration: 22s;
    }

    @keyframes orbFloat {
      0%, 100% { transform: translate(0, 0) scale(1); }
      25% { transform: translate(50px, -30px) scale(1.1); }
      50% { transform: translate(-20px, 40px) scale(0.95); }
      75% { transform: translate(30px, 20px) scale(1.05); }
    }

    /* ===== NAVIGATION ===== */
    .navbar {
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      z-index: 1000;
      padding: 1rem 0;
      transition: all 0.4s ease;
    }

    .navbar.scrolled {
      background: rgba(5, 5, 16, 0.85);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border-glass);
      padding: 0.75rem 0;
    }

    .nav-container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--text-primary);
      text-decoration: none;
    }

    .logo-icon {
      width: 40px; height: 40px;
      background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      box-shadow: 0 0 20px var(--glow-purple);
    }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 2rem;
      align-items: center;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--text-secondary);
      font-size: 0.9rem;
      font-weight: 500;
      transition: color 0.3s;
      position: relative;
    }

    .nav-links a:hover { color: var(--text-primary); }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--accent-1), var(--accent-3));
      transition: width 0.3s;
    }

    .nav-links a:hover::after { width: 100%; }

    .nav-cta {
      background: linear-gradient(135deg, var(--accent-1), var(--accent-2)) !important;
      color: #fff !important;
      padding: 0.6rem 1.5rem;
      border-radius: 10px;
      font-weight: 600;
      box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
      transition: all 0.3s !important;
    }

    .nav-cta:hover {
      box-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
      transform: translateY(-2px);
    }

    .nav-cta::after { display: none !important; }

    .mobile-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 5px;
    }

    .mobile-toggle span {
      width: 24px; height: 2px;
      background: var(--text-primary);
      border-radius: 2px;
      transition: 0.3s;
    }

    /* ===== HERO ===== */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 8rem 2rem 4rem;
      overflow: hidden;
    }

    #hero-canvas {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--bg-glass);
      border: 1px solid var(--border-glass);
      border-radius: 100px;
      padding: 0.5rem 1.25rem;
      font-size: 0.85rem;
      color: var(--text-secondary);
      margin-bottom: 2rem;
      backdrop-filter: blur(10px);
      animation: fadeInUp 0.8s ease;
    }

    .hero-badge .dot {
      width: 8px; height: 8px;
      background: #10b981;
      border-radius: 50%;
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
      50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    }

    .hero-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 1.5rem;
      animation: fadeInUp 0.8s ease 0.2s both;
    }

    .gradient-text {
      background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 30%, #06b6d4 60%, #6366f1 100%);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: shimmer 4s linear infinite;
    }

    @keyframes shimmer {
      0% { background-position: 0% center; }
      100% { background-position: 200% center; }
    }

    .hero-subtitle {
      font-size: clamp(1.1rem, 2.5vw, 1.35rem);
      color: var(--text-secondary);
      max-width: 650px;
      margin: 0 auto 2.5rem;
      line-height: 1.8;
      animation: fadeInUp 0.8s ease 0.4s both;
    }

    .hero-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      animation: fadeInUp 0.8s ease 0.6s both;
    }

    /* ===== BUTTONS ===== */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 1rem 2rem;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1rem;
      transition: all 0.3s;
      border: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
      color: #fff;
      box-shadow: 0 0 30px rgba(99, 102, 241, 0.3), 0 10px 30px rgba(0,0,0,0.3);
    }

    .btn-primary:hover {
      box-shadow: 0 0 50px rgba(99, 102, 241, 0.5), 0 15px 40px rgba(0,0,0,0.4);
      transform: translateY(-3px);
    }

    .btn-primary::before {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 100%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
      transition: left 0.5s;
    }

    .btn-primary:hover::before { left: 100%; }

    .btn-ghost {
      background: var(--bg-glass);
      border: 1px solid var(--border-glass);
      color: var(--text-primary);
      backdrop-filter: blur(10px);
    }

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

    .btn-gold {
      background: linear-gradient(135deg, #f59e0b, #d97706);
      color: #fff;
      box-shadow: 0 0 30px rgba(245, 158, 11, 0.3);
    }

    .btn-gold:hover {
      box-shadow: 0 0 50px rgba(245, 158, 11, 0.5);
      transform: translateY(-3px);
    }

    /* ===== SECTION UTILITIES ===== */
    .section {
      position: relative;
      z-index: 2;
      padding: 7rem 2rem;
    }

    .section-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--accent-3);
      margin-bottom: 1rem;
    }

    .section-label::before {
      content: '';
      width: 30px; height: 1px;
      background: var(--accent-3);
    }

    .section-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      margin-bottom: 1.5rem;
      line-height: 1.2;
    }

    .section-subtitle {
      color: var(--text-secondary);
      font-size: 1.15rem;
      max-width: 600px;
      margin-bottom: 3.5rem;
    }

    .text-center { text-align: center; }
    .mx-auto { margin-left: auto; margin-right: auto; }

    /* ===== GLASS CARD ===== */
    .glass-card {
      background: var(--bg-card);
      border: 1px solid var(--border-glass);
      border-radius: 20px;
      padding: 2rem;
      backdrop-filter: blur(10px);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .glass-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
      opacity: 0;
      transition: opacity 0.4s;
    }

    .glass-card:hover {
      border-color: rgba(99, 102, 241, 0.3);
      transform: translateY(-5px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 30px rgba(99, 102, 241, 0.1);
    }

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

    /* ===== FEATURES GRID ===== */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
    }

    .feature-card {
      padding: 2.5rem 2rem;
    }

    .feature-icon-wrap {
      width: 56px; height: 56px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
      position: relative;
    }

    .feature-icon-wrap.blue {
      background: rgba(99, 102, 241, 0.1);
      box-shadow: 0 0 20px rgba(99, 102, 241, 0.1);
    }

    .feature-icon-wrap.purple {
      background: rgba(139, 92, 246, 0.1);
      box-shadow: 0 0 20px rgba(139, 92, 246, 0.1);
    }

    .feature-icon-wrap.cyan {
      background: rgba(6, 182, 212, 0.1);
      box-shadow: 0 0 20px rgba(6, 182, 212, 0.1);
    }

    .feature-icon-wrap.emerald {
      background: rgba(16, 185, 129, 0.1);
      box-shadow: 0 0 20px rgba(16, 185, 129, 0.1);
    }

    .feature-card h3 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 0.75rem;
    }

    .feature-card p {
      color: var(--text-secondary);
      font-size: 0.95rem;
      line-height: 1.7;
    }

    /* ===== STATS SECTION ===== */
    .stats-section {
      background: linear-gradient(180deg, transparent, rgba(99, 102, 241, 0.03), transparent);
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
    }

    .stat-card {
      text-align: center;
      padding: 3rem 2rem;
    }

    .stat-number {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 3.5rem;
      font-weight: 800;
      margin-bottom: 0.5rem;
      background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .stat-label {
      color: var(--text-secondary);
      font-size: 0.95rem;
    }

    /* ===== HOW IT WORKS ===== */
    .steps-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      position: relative;
    }

    .step-card {
      text-align: center;
      padding: 3rem 2rem;
    }

    .step-number {
      width: 70px; height: 70px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.5rem;
      font-weight: 700;
      margin: 0 auto 1.5rem;
      box-shadow: 0 0 30px var(--glow-purple);
    }

    .step-card h3 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .step-card p {
      color: var(--text-secondary);
      font-size: 0.95rem;
    }

    /* ===== AI CALL DEMO ===== */
    .demo-section {
      background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.03), transparent);
    }

    .demo-box {
      max-width: 700px;
      margin: 0 auto;
      padding: 3rem;
      background: var(--bg-card);
      border: 1px solid var(--border-glass);
      border-radius: 24px;
      backdrop-filter: blur(10px);
      position: relative;
      overflow: hidden;
    }

    .demo-box::before {
      content: '';
      position: absolute;
      top: -1px; left: -1px;
      right: -1px; bottom: -1px;
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), transparent, rgba(6, 182, 212, 0.2));
      border-radius: 24px;
      z-index: -1;
    }

    .demo-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 2rem;
      padding-bottom: 1.5rem;
      border-bottom: 1px solid var(--border-glass);
    }

    .demo-avatar {
      width: 48px; height: 48px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
    }

    .demo-name {
      font-weight: 600;
      font-size: 1.1rem;
    }

    .demo-status {
      font-size: 0.8rem;
      color: #10b981;
      display: flex;
      align-items: center;
      gap: 0.35rem;
    }

    .demo-status::before {
      content: '';
      width: 6px; height: 6px;
      background: #10b981;
      border-radius: 50%;
      animation: pulse 2s ease-in-out infinite;
    }

    .demo-message {
      background: rgba(99, 102, 241, 0.08);
      border: 1px solid rgba(99, 102, 241, 0.15);
      border-radius: 16px;
      border-top-left-radius: 4px;
      padding: 1.25rem 1.5rem;
      margin-bottom: 1rem;
      font-size: 1rem;
      line-height: 1.7;
      color: var(--text-primary);
    }

    .demo-note {
      margin-top: 2rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--border-glass);
      color: var(--text-secondary);
      font-size: 0.95rem;
      text-align: center;
    }

    /* ===== INDUSTRIES ===== */
    .industries-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 1rem;
    }

    .industry-chip {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      padding: 1.25rem 1.5rem;
      background: var(--bg-card);
      border: 1px solid var(--border-glass);
      border-radius: 14px;
      font-weight: 500;
      font-size: 1rem;
      transition: all 0.3s;
      cursor: default;
    }

    .industry-chip:hover {
      background: rgba(99, 102, 241, 0.08);
      border-color: rgba(99, 102, 241, 0.3);
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    /* ===== PRICING ===== */
    .pricing-section {
      background: linear-gradient(180deg, transparent, rgba(6, 182, 212, 0.02), transparent);
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
      max-width: 1100px;
      margin: 0 auto;
    }

    .price-card {
      padding: 2.5rem;
      border-radius: 24px;
      background: var(--bg-card);
      border: 1px solid var(--border-glass);
      backdrop-filter: blur(10px);
      transition: all 0.4s;
      position: relative;
    }

    .price-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    }

    .price-card.featured {
      border-color: rgba(245, 158, 11, 0.4);
      background: linear-gradient(180deg, rgba(245, 158, 11, 0.05), var(--bg-card));
      box-shadow: 0 0 40px rgba(245, 158, 11, 0.1);
    }

    .price-badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(135deg, #f59e0b, #d97706);
      color: #fff;
      padding: 0.4rem 1.25rem;
      border-radius: 100px;
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .price-tier {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 1rem;
      color: var(--text-primary);
    }

    .price-amount {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 3rem;
      font-weight: 800;
      margin-bottom: 0.5rem;
    }

    .price-amount span {
      font-size: 1rem;
      font-weight: 400;
      color: var(--text-secondary);
    }

    .price-card.featured .price-amount {
      background: linear-gradient(135deg, #f59e0b, #fbbf24);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .price-desc {
      color: var(--text-secondary);
      font-size: 0.9rem;
      margin-bottom: 2rem;
    }

    .price-features {
      list-style: none;
      margin-bottom: 2rem;
    }

    .price-features li {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.6rem 0;
      font-size: 0.95rem;
      color: var(--text-secondary);
      border-bottom: 1px solid rgba(255,255,255,0.03);
    }

    .price-features li::before {
      content: 'Ô£ô';
      color: var(--accent-3);
      font-weight: 700;
      font-size: 0.85rem;
    }

    .price-card .btn {
      width: 100%;
      justify-content: center;
    }

    /* ===== TESTIMONIALS ===== */
    .testimonials-track {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .testimonial {
      padding: 2rem;
      border-radius: 18px;
      background: var(--bg-card);
      border: 1px solid var(--border-glass);
      transition: all 0.3s;
    }

    .testimonial:hover {
      border-color: rgba(99, 102, 241, 0.2);
      transform: translateY(-4px);
      box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    }

    .testimonial-stars {
      color: #f59e0b;
      margin-bottom: 1rem;
      font-size: 0.9rem;
      letter-spacing: 2px;
    }

    .testimonial-text {
      color: var(--text-secondary);
      font-size: 0.95rem;
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .testimonial-avatar {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 0.85rem;
      color: #fff;
      flex-shrink: 0;
    }

    .testimonial-name {
      font-weight: 600;
      font-size: 0.9rem;
    }

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

    /* ===== MARQUEE ===== */
    .marquee-section {
      padding: 3rem 0;
      overflow: hidden;
      border-top: 1px solid var(--border-glass);
      border-bottom: 1px solid var(--border-glass);
      position: relative;
      z-index: 2;
    }

    .marquee-track {
      display: flex;
      animation: marquee 30s linear infinite;
      width: max-content;
    }

    .marquee-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0 3rem;
      font-size: 1.1rem;
      font-weight: 500;
      color: var(--text-muted);
      white-space: nowrap;
    }

    .marquee-item .dot {
      width: 6px; height: 6px;
      background: var(--accent-1);
      border-radius: 50%;
    }

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

    /* ===== FINAL CTA ===== */
    .cta-section {
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-glow {
      position: absolute;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(99, 102, 241, 0.15), transparent 70%);
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      filter: blur(60px);
      pointer-events: none;
    }

    .cta-content {
      position: relative;
      z-index: 1;
    }

    /* ===== FOOTER ===== */
    footer {
      position: relative;
      z-index: 2;
      border-top: 1px solid var(--border-glass);
      padding: 3rem 2rem;
      text-align: center;
      color: var(--text-muted);
      font-size: 0.85rem;
    }

    footer a {
      color: var(--text-secondary);
      text-decoration: none;
      transition: color 0.3s;
    }

    footer a:hover { color: var(--text-primary); }

    /* ===== WHATSAPP FLOAT ===== */
    .whatsapp-float {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      z-index: 999;
      width: 60px; height: 60px;
      background: #25d366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
      transition: all 0.3s;
      text-decoration: none;
      font-size: 1.75rem;
      animation: floatBounce 3s ease-in-out infinite;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    }

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

    /* ===== SCROLL ANIMATIONS ===== */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .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; }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ===== WAVE DIVIDER ===== */
    .wave-divider {
      position: relative;
      z-index: 2;
      height: 80px;
      overflow: hidden;
    }

    .wave-divider svg {
      position: absolute;
      bottom: 0;
      width: 100%;
      height: 80px;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 968px) {
      .testimonials-track {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100vh;
        background: rgba(5, 5, 16, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
      }

      .nav-links.open { display: flex; }

      .nav-links a {
        font-size: 1.2rem;
      }

      .mobile-toggle { display: flex; }

      .hero { padding: 7rem 1.5rem 3rem; }

      .section { padding: 4rem 1.5rem; }

      .testimonials-track {
        grid-template-columns: 1fr;
      }

      .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
      }

      .price-card.featured {
        transform: none;
      }

      .price-card.featured:hover {
        transform: translateY(-8px);
      }
    }

    @media (max-width: 480px) {
      .hero-buttons {
        flex-direction: column;
        align-items: center;
      }

      .btn { width: 100%; justify-content: center; }

      .stats-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ===== SOUND WAVE ANIMATION ===== */
    .sound-waves {
      display: flex;
      align-items: center;
      gap: 3px;
      height: 30px;
      margin: 1.5rem auto;
      width: fit-content;
    }

    .sound-bar {
      width: 3px;
      background: linear-gradient(180deg, var(--accent-1), var(--accent-3));
      border-radius: 3px;
      animation: soundWave 1.2s ease-in-out infinite;
    }

    .sound-bar:nth-child(1) { height: 10px; animation-delay: 0s; }
    .sound-bar:nth-child(2) { height: 20px; animation-delay: 0.1s; }
    .sound-bar:nth-child(3) { height: 15px; animation-delay: 0.2s; }
    .sound-bar:nth-child(4) { height: 25px; animation-delay: 0.3s; }
    .sound-bar:nth-child(5) { height: 18px; animation-delay: 0.4s; }
    .sound-bar:nth-child(6) { height: 22px; animation-delay: 0.5s; }
    .sound-bar:nth-child(7) { height: 12px; animation-delay: 0.6s; }

    @keyframes soundWave {
      0%, 100% { transform: scaleY(1); }
      50% { transform: scaleY(2.5); }
    }
  /* ===== MISSING SECTION STYLES ===== */

/* Partners Bar */
.partners-bar {
  margin-top: 4rem;
  padding: 2rem;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.partners-label {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.partner-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all 0.3s;
}

.partner-badge:hover {
  background: rgba(99, 102, 241, 0.2);
  border-color: rgba(99, 102, 241, 0.4);
  transform: translateY(-2px);
}

.partner-badge .p-icon {
  font-size: 1.2rem;
}

/* ROI Section - AI vs Human Comparison */
.roi-section {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.roi-comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.roi-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  position: relative;
  transition: transform 0.3s;
}

.roi-card.highlight {
  border: 2px solid var(--accent-primary);
  box-shadow: 0 0 40px rgba(99, 102, 241, 0.3);
}

.roi-card:hover {
  transform: translateY(-8px);
}

.roi-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.roi-card-icon {
  font-size: 3rem;
}

.roi-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.roi-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.roi-price.gradient {
  background: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.roi-period {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.roi-features {
  list-style: none;
  padding: 0;
}

.roi-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.roi-features li.weak {
  color: var(--text-muted);
  opacity: 0.7;
}

.roi-features li::before {
  content: "\2713";
  color: var(--accent-primary);
  font-weight: bold;
  margin-right: 0.75rem;
}

.roi-features li.weak::before {
  content: "\2717";
  color: #ef4444;
}

/* Dashboard Preview */
.dashboard-preview {
  padding: 6rem 2rem;
  background: var(--bg-secondary);
}

.dashboard-mockup {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--border-glass);
}

.dash-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dash-dot.red { background: #ef4444; }
.dash-dot.yellow { background: #f59e0b; }
.dash-dot.green { background: #10b981; }

.dashboard-topbar-title {
  margin-left: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.2);
}

.stat-mini {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 1.25rem;
}

.stat-mini-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.stat-mini-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.stat-mini-delta {
  font-size: 0.85rem;
  color: #10b981;
}

.feed-list {
  padding: 2rem;
}

.feed-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: all 0.3s;
}

.feed-item:hover {
  border-color: var(--accent-primary);
  transform: translateX(4px);
}

.feed-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.feed-body {
  flex: 1;
}

.feed-title {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

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

.feed-tag {
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feed-tag.booked {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.feed-tag.calling {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
  animation: pulse-tag 1.5s ease-in-out infinite;
}

@keyframes pulse-tag {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* Handles Section - What AI Handles */
.handles-section {
  padding: 6rem 2rem;
  background: var(--bg-primary);
}

.handles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.handle-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}

.handle-item:hover {
  transform: translateY(-4px);
  border-color: var(--accent-primary);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.handle-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.handle-icon.hi-blue { background: rgba(99, 102, 241, 0.15); }
.handle-icon.hi-green { background: rgba(16, 185, 129, 0.15); }
.handle-icon.hi-purple { background: rgba(139, 92, 246, 0.15); }
.handle-icon.hi-cyan { background: rgba(6, 182, 212, 0.15); }
.handle-icon.hi-gold { background: rgba(245, 158, 11, 0.15); }
.handle-icon.hi-pink { background: rgba(236, 72, 153, 0.15); }

.handle-text h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.handle-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* FAQ Section */
.faq-section {
  padding: 6rem 2rem;
  background: var(--bg-secondary);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: var(--accent-primary);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq-question span:first-child {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--accent-primary);
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Phone Demo Section */
.phone-demo-section {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.phone-container {
  max-width: 400px;
  margin: 3rem auto 0;
}

.phone-frame {
  background: var(--bg-glass);
  border: 2px solid var(--border-glass);
  border-radius: 30px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.phone-notch {
  width: 150px;
  height: 20px;
  background: var(--bg-secondary);
  border-radius: 10px;
  margin: 0 auto 1.5rem;
}

.phone-header {
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-glass);
}

.caller-avatar {
  font-size: 3rem;
  margin-bottom: 0.75rem;
}

.caller-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.caller-business {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.call-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 100px;
  font-size: 0.85rem;
  color: #10b981;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.conversation-area {
  padding: 1.5rem 0;
  min-height: 300px;
  max-height: 400px;
  overflow-y: auto;
}

.demo-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.demo-btn {
  padding: 0.75rem 1.5rem;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.demo-btn:hover {
  border-color: var(--accent-primary);
  color: var(--text-primary);
}

.demo-btn.active {
  background: rgba(99, 102, 241, 0.2);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}