/* CSS Variables */
    :root {
      --background: 222 47% 6%;
      --foreground: 180 100% 95%;
      --primary: 180 100% 50%;
      --primary-foreground: 222 47% 6%;
      --secondary: 300 100% 60%;
      --accent: 280 100% 65%;
      --muted: 222 30% 15%;
      --muted-foreground: 180 20% 65%;
      --neon-cyan: 180 100% 50%;
      --neon-magenta: 300 100% 60%;
      --neon-orange: 25 100% 55%;
      --neon-green: 145 100% 50%;
      --card: 222 40% 10%;
      --border: 180 50% 30%;
    }

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

    body {
      font-family: 'Inter', sans-serif;
      background: hsl(var(--background));
      color: hsl(var(--foreground));
      line-height: 1.6;
      overflow-x: hidden;
    }

    .font-display {
      font-family: 'Orbitron', sans-serif;
    }

    /* Utility Classes */
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    .text-center { text-align: center; }
    .relative { position: relative; }
    .overflow-hidden { overflow: hidden; }

    /* Gradient Text */
    .gradient-text {
      background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--secondary)), hsl(var(--accent)));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .text-glow-cyan {
      text-shadow: 0 0 20px hsl(var(--neon-cyan) / 0.5), 0 0 40px hsl(var(--neon-cyan) / 0.3);
    }

    /* Glass Card */
    .glass-card {
      background: hsl(var(--card) / 0.8);
      backdrop-filter: blur(20px);
      border: 1px solid hsl(var(--border) / 0.3);
    }

    .neon-border {
      box-shadow: 0 0 20px hsl(var(--primary) / 0.2), inset 0 0 20px hsl(var(--primary) / 0.05);
    }

    /* Grid Background */
    .grid-bg {
      background-image: 
        linear-gradient(hsl(var(--primary) / 0.03) 1px, transparent 1px),
        linear-gradient(90deg, hsl(var(--primary) / 0.03) 1px, transparent 1px);
      background-size: 50px 50px;
    }

    /* Cyber Line */
    .cyber-line {
      background: linear-gradient(90deg, transparent, hsl(var(--primary)), hsl(var(--secondary)), hsl(var(--primary)), transparent);
    }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      padding: 1.25rem 2.5rem;
      font-family: 'Orbitron', sans-serif;
      font-weight: 700;
      font-size: 1.125rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      border: none;
      border-radius: 0.75rem;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
    }

    .btn-hero {
      background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--secondary)));
      color: hsl(var(--primary-foreground));
      box-shadow: 0 0 30px hsl(var(--primary) / 0.5), 0 0 60px hsl(var(--secondary) / 0.3);
    }

    .btn-hero:hover {
      transform: scale(1.05);
      box-shadow: 0 0 40px hsl(var(--primary) / 0.7), 0 0 80px hsl(var(--secondary) / 0.5);
    }

    .btn-outline {
      background: transparent;
      color: hsl(var(--foreground));
      border: 2px solid hsl(var(--border));
    }

    .btn-outline:hover {
      background: hsl(var(--primary) / 0.1);
      border-color: hsl(var(--primary));
    }

    /* Animations */
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    @keyframes pulse-glow {
      0%, 100% { opacity: 0.5; }
      50% { opacity: 1; }
    }

    .animate-float {
      animation: float 3s ease-in-out infinite;
    }

    .animate-pulse {
      animation: pulse-glow 2s ease-in-out infinite;
    }

    /* ==================== HERO SECTION ==================== */
    .hero-section {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      padding: 6rem 0;
    }

    .hero-glow-1 {
      position: absolute;
      top: 20%;
      left: 10%;
      width: 400px;
      height: 400px;
      background: hsl(var(--primary) / 0.3);
      border-radius: 50%;
      filter: blur(150px);
    }

    .hero-glow-2 {
      position: absolute;
      bottom: 20%;
      right: 10%;
      width: 400px;
      height: 400px;
      background: hsl(var(--secondary) / 0.3);
      border-radius: 50%;
      filter: blur(150px);
    }

    .hero-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    @media (max-width: 968px) {
      .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
      }
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 1rem;
      border-radius: 9999px;
      font-size: 0.875rem;
      margin-bottom: 1.5rem;
      color: hsl(var(--neon-cyan));
    }

    .hero-title {
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 1.5rem;
    }

    .hero-subtitle {
      font-size: 1.25rem;
      color: hsl(var(--muted-foreground));
      margin-bottom: 2rem;
      max-width: 500px;
    }

    @media (max-width: 968px) {
      .hero-subtitle {
        margin: 0 auto 2rem;
      }
    }

    .hero-cta-group {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 2rem;
    }

    @media (max-width: 968px) {
      .hero-cta-group {
        justify-content: center;
      }
    }

    .trust-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      font-size: 0.875rem;
      color: hsl(var(--muted-foreground));
    }

    @media (max-width: 968px) {
      .trust-badges {
        justify-content: center;
      }
    }

    .trust-badge {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .hero-visual {
      position: relative;
      display: flex;
      justify-content: center;
    }

    .ebook-mockup {
      position: relative;
      width: 320px;
      height: 420px;
      background: linear-gradient(135deg, hsl(var(--primary) / 0.2), hsl(var(--secondary) / 0.2));
      border-radius: 1rem;
      border: 2px solid hsl(var(--primary) / 0.5);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 2rem;
      box-shadow: 0 0 60px hsl(var(--primary) / 0.3);
    }

    .ebook-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 1.5rem;
      color: hsl(var(--primary));
    }

    .ebook-title {
      font-size: 1.5rem;
      font-weight: 900;
      text-align: center;
      margin-bottom: 0.5rem;
    }

    .ebook-subtitle {
      font-size: 0.875rem;
      color: hsl(var(--muted-foreground));
      text-align: center;
    }

    /* ==================== ABOUT SECTION ==================== */
    .about-section {
      padding: 6rem 0;
      position: relative;
    }

    .section-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 1rem;
      border-radius: 9999px;
      font-size: 0.875rem;
      margin-bottom: 1.5rem;
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 900;
      margin-bottom: 1.5rem;
    }

    .section-subtitle {
      font-size: 1.125rem;
      color: hsl(var(--muted-foreground));
      max-width: 700px;
      margin: 0 auto 3rem;
    }

    .about-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      max-width: 1000px;
      margin: 0 auto;
    }

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

    .about-card {
      padding: 2rem;
      border-radius: 1rem;
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .about-card:hover {
      transform: translateY(-5px);
    }

    .about-icon {
      width: 64px;
      height: 64px;
      margin: 0 auto 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 1rem;
      background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)), hsl(var(--secondary)));
    }

    .about-icon svg {
      width: 32px;
      height: 32px;
      color: hsl(var(--foreground));
    }

    .about-card h3 {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
    }

    .about-card p {
      font-size: 0.875rem;
      color: hsl(var(--muted-foreground));
    }

    /* ==================== LEARN SECTION ==================== */
    .learn-section {
      padding: 6rem 0;
      position: relative;
    }

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

    .learn-card {
      padding: 1.5rem;
      border-radius: 1rem;
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      transition: all 0.3s;
    }

    .learn-card:hover {
      transform: translateX(5px);
      border-color: hsl(var(--primary) / 0.5);
    }

    .learn-icon {
      width: 48px;
      height: 48px;
      min-width: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 0.75rem;
      background: hsl(var(--primary) / 0.2);
      border: 1px solid hsl(var(--primary) / 0.3);
    }

    .learn-icon svg {
      width: 24px;
      height: 24px;
      color: hsl(var(--primary));
    }

    .learn-card h4 {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 0.25rem;
    }

    .learn-card p {
      font-size: 0.875rem;
      color: hsl(var(--muted-foreground));
    }

    /* ==================== DIFFERENCE SECTION ==================== */
    .difference-section {
      padding: 6rem 0;
      position: relative;
    }

    .comparison-grid {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 2rem;
      max-width: 1000px;
      margin: 0 auto;
      align-items: start;
    }

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

    .comparison-card {
      padding: 2rem;
      border-radius: 1rem;
    }

    .comparison-card.bad {
      border-color: hsl(0 70% 50% / 0.3);
    }

    .comparison-card.good {
      border-color: hsl(var(--neon-green) / 0.3);
      box-shadow: 0 0 30px hsl(var(--neon-green) / 0.1);
    }

    .comparison-header {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1.5rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid hsl(var(--border) / 0.3);
    }

    .comparison-header.bad svg {
      color: hsl(0 70% 50%);
    }

    .comparison-header.good svg {
      color: hsl(var(--neon-green));
    }

    .comparison-list {
      list-style: none;
    }

    .comparison-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      margin-bottom: 1rem;
      font-size: 0.875rem;
      color: hsl(var(--muted-foreground));
    }

    .comparison-list li svg {
      width: 20px;
      height: 20px;
      min-width: 20px;
      margin-top: 2px;
    }

    .comparison-list.bad li svg {
      color: hsl(0 70% 50%);
    }

    .comparison-list.good li svg {
      color: hsl(var(--neon-green));
    }

    .vs-divider {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    @media (max-width: 768px) {
      .vs-divider {
        padding: 1rem 0;
      }
    }

    .vs-badge {
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--secondary)));
      font-weight: 900;
      font-size: 1.25rem;
    }

    /* ==================== BONUSES SECTION ==================== */
    .bonuses-section {
      padding: 6rem 0;
      position: relative;
    }

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

    .bonus-card {
      padding: 1.5rem;
      border-radius: 1rem;
      position: relative;
      overflow: hidden;
      transition: all 0.3s;
    }

    .bonus-card:hover {
      transform: translateY(-5px);
    }

    .bonus-number {
      position: absolute;
      top: 1rem;
      right: 1rem;
      font-size: 0.75rem;
      padding: 0.25rem 0.75rem;
      border-radius: 9999px;
      background: hsl(var(--primary) / 0.2);
      border: 1px solid hsl(var(--primary) / 0.3);
      color: hsl(var(--primary));
    }

    .bonus-icon {
      width: 56px;
      height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 1rem;
      background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)), hsl(var(--secondary)));
      margin-bottom: 1rem;
    }

    .bonus-icon svg {
      width: 28px;
      height: 28px;
      color: hsl(var(--foreground));
    }

    .bonus-card h4 {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .bonus-card p {
      font-size: 0.875rem;
      color: hsl(var(--muted-foreground));
      margin-bottom: 1rem;
    }

    .bonus-value {
      font-size: 0.875rem;
      color: hsl(var(--neon-green));
      font-weight: 600;
    }

    /* ==================== TESTIMONIALS SECTION ==================== */
    .testimonials-section {
      padding: 6rem 0;
      position: relative;
    }

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

    .testimonial-card {
      padding: 1.5rem;
      border-radius: 1rem;
      position: relative;
      transition: all 0.3s;
    }

    .testimonial-card:hover {
      transform: scale(1.02);
    }

    .testimonial-quote {
      position: absolute;
      top: 1rem;
      right: 1rem;
      width: 32px;
      height: 32px;
      color: hsl(var(--primary) / 0.2);
    }

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

    .testimonial-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)), hsl(var(--secondary)));
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 0.875rem;
    }

    .testimonial-name {
      font-weight: 700;
    }

    .testimonial-role {
      font-size: 0.875rem;
      color: hsl(var(--muted-foreground));
    }

    .testimonial-stars {
      display: flex;
      gap: 0.25rem;
      margin-bottom: 1rem;
    }

    .testimonial-stars svg {
      width: 16px;
      height: 16px;
      color: hsl(var(--neon-orange));
      fill: hsl(var(--neon-orange));
    }

    .testimonial-content {
      font-size: 0.875rem;
      color: hsl(var(--muted-foreground));
      margin-bottom: 1rem;
      line-height: 1.6;
    }

    .testimonial-earnings {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.25rem 0.75rem;
      border-radius: 9999px;
      background: hsl(var(--neon-green) / 0.2);
      border: 1px solid hsl(var(--neon-green) / 0.3);
      font-size: 0.75rem;
    }

    .testimonial-earnings span:first-child {
      color: hsl(var(--muted-foreground));
    }

    .testimonial-earnings span:last-child {
      color: hsl(var(--neon-green));
      font-weight: 700;
    }

    /* ==================== PRICING SECTION ==================== */
    .pricing-section {
      padding: 6rem 0;
      position: relative;
    }

    .pricing-card {
      max-width: 600px;
      margin: 0 auto;
      padding: 3rem;
      border-radius: 1.5rem;
      text-align: center;
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, hsl(var(--card)), hsl(var(--muted)));
      border: 2px solid hsl(var(--primary) / 0.3);
      box-shadow: 0 0 60px hsl(var(--primary) / 0.2);
    }

    .pricing-badge {
      position: absolute;
      top: 0;
      right: 2rem;
      background: linear-gradient(135deg, hsl(var(--neon-orange)), hsl(25 100% 45%));
      color: white;
      padding: 0.5rem 1.5rem;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      border-radius: 0 0 0.5rem 0.5rem;
    }

    .pricing-title {
      font-size: 1.5rem;
      font-weight: 900;
      margin-bottom: 0.5rem;
    }

    .pricing-subtitle {
      color: hsl(var(--muted-foreground));
      margin-bottom: 2rem;
    }

    .pricing-price {
      margin-bottom: 2rem;
    }

    .price-old {
      font-size: 1.5rem;
      color: hsl(var(--muted-foreground));
      text-decoration: line-through;
      margin-right: 1rem;
    }

    .price-new {
      font-size: 4rem;
      font-weight: 900;
      background: linear-gradient(135deg, hsl(var(--neon-green)), hsl(145 100% 40%));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .pricing-includes {
      text-align: left;
      margin-bottom: 2rem;
    }

    .pricing-includes h4 {
      font-size: 0.875rem;
      color: hsl(var(--muted-foreground));
      margin-bottom: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .pricing-includes ul {
      list-style: none;
    }

    .pricing-includes li {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.75rem 0;
      border-bottom: 1px solid hsl(var(--border) / 0.2);
      font-size: 0.875rem;
    }

    .pricing-includes li svg {
      width: 20px;
      height: 20px;
      color: hsl(var(--neon-green));
    }

    .pricing-cta {
      width: 100%;
      margin-bottom: 1.5rem;
    }

    .pricing-guarantee {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      font-size: 0.875rem;
      color: hsl(var(--muted-foreground));
    }

    .pricing-guarantee svg {
      width: 20px;
      height: 20px;
      color: hsl(var(--neon-green));
    }

    /* ==================== FAQ SECTION ==================== */
    .faq-section {
      padding: 6rem 0;
      position: relative;
    }

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

    .faq-item {
      margin-bottom: 1rem;
      border-radius: 1rem;
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      padding: 1.25rem 1.5rem;
      background: hsl(var(--card) / 0.8);
      border: 1px solid hsl(var(--border) / 0.3);
      border-radius: 1rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      transition: all 0.3s;
      text-align: left;
      color: hsl(var(--foreground));
      font-weight: 600;
    }

    .faq-question:hover {
      background: hsl(var(--card));
      border-color: hsl(var(--primary) / 0.3);
    }

    .faq-question svg {
      width: 20px;
      height: 20px;
      color: hsl(var(--primary));
      transition: transform 0.3s;
    }

    .faq-item.open .faq-question svg {
      transform: rotate(180deg);
    }

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

    .faq-item.open .faq-answer {
      max-height: 500px;
    }

    .faq-answer-content {
      padding: 1rem 1.5rem 1.5rem;
      color: hsl(var(--muted-foreground));
      font-size: 0.875rem;
      line-height: 1.7;
    }

    /* ==================== FINAL CTA SECTION ==================== */
    .final-cta-section {
      padding: 6rem 0;
      position: relative;
      text-align: center;
    }

    .final-cta-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 1rem;
      background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)), hsl(var(--secondary)));
    }

    .final-cta-icon svg {
      width: 40px;
      height: 40px;
      color: hsl(var(--foreground));
    }

    .final-cta-title {
      font-size: clamp(2rem, 4vw, 3.5rem);
      font-weight: 900;
      margin-bottom: 1.5rem;
      line-height: 1.2;
    }

    .final-cta-subtitle {
      font-size: 1.25rem;
      color: hsl(var(--muted-foreground));
      max-width: 600px;
      margin: 0 auto 2rem;
    }

    .final-cta-box {
      max-width: 500px;
      margin: 0 auto 2rem;
      padding: 2rem;
      border-radius: 1rem;
    }

    .final-cta-box p:first-child {
      font-size: 1.125rem;
      margin-bottom: 0.5rem;
    }

    .final-cta-box p:last-child {
      color: hsl(var(--muted-foreground));
      font-size: 0.875rem;
    }

    .final-trust {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.5rem;
      font-size: 0.875rem;
      color: hsl(var(--muted-foreground));
    }

    .final-trust-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    /* ==================== FOOTER ==================== */
    .footer {
      padding: 3rem 0;
      border-top: 1px solid hsl(var(--border) / 0.3);
      text-align: center;
    }

    .footer-logo {
      font-size: 1.5rem;
      font-weight: 900;
      margin-bottom: 1rem;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin-bottom: 1.5rem;
      flex-wrap: wrap;
    }

    .footer-links a {
      color: hsl(var(--muted-foreground));
      text-decoration: none;
      font-size: 0.875rem;
      transition: color 0.3s;
    }

    .footer-links a:hover {
      color: hsl(var(--primary));
    }

    .footer-copy {
      font-size: 0.75rem;
      color: hsl(var(--muted-foreground));
    }

    /* SVG Icons */
    .icon {
      display: inline-block;
      width: 1em;
      height: 1em;
      vertical-align: middle;
    }