    /* ===== CSS VARIABLES ===== */
    :root {
      --primary-purple: #6B46C1;
      --deep-purple: #553C9A;
      --light-purple: #9F7AEA;
      --accent-blue: #4299E1;
      --bright-blue: #3182CE;
      --light-blue: #63B3ED;
      --dark-bg: #1A202C;
      --gray-800: #2D3748;
      --gray-600: #718096;
      --gray-200: #E2E8F0;
      --gray-100: #EDF2F7;
      --off-white: #F7FAFC;
      --white: #FFFFFF;
    }

    /* ===== RESET & BASE ===== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Poppins', sans-serif;
      line-height: 1.6;
      color: var(--gray-800);
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    ul {
      list-style: none;
    }

    img {
      max-width: 100%;
      height: auto;
    }

    /* ===== CONTAINER ===== */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* ===== HEADER ===== */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      transition: all 0.3s ease;
      padding: 15px 0;
    }

    .header.scrolled {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo-icon {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, var(--primary-purple), var(--accent-blue));
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 20px;
    }

    .logo-text {
      font-size: 1.25rem;
      font-weight: 700;
      color: white;
      transition: color 0.3s ease;
    }

    .header.scrolled .logo-text {
      color: var(--gray-800);
    }

    .logo-text span {
      color: var(--light-purple);
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 30px;
    }

    .nav-menu a {
      font-size: 14px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.9);
      transition: color 0.3s ease;
    }

    .header.scrolled .nav-menu a {
      color: var(--gray-700);
    }

    .nav-menu a:hover {
      color: var(--light-purple);
    }

    .mobile-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 24px;
      color: white;
      cursor: pointer;
    }

    .header.scrolled .mobile-toggle {
      color: var(--gray-800);
    }

    /* ===== HERO SECTION ===== */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      background: linear-gradient(135deg, var(--dark-bg) 0%, #2D3748 100%);
      overflow: hidden;
      padding: 100px 0 60px;
    }

    /* Background Shapes */
    .bg-shapes {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      pointer-events: none;
    }

    .shape {
      position: absolute;
      border-radius: 50%;
      opacity: 0.15;
    }

    .shape-1 {
      width: 400px;
      height: 400px;
      background: linear-gradient(135deg, var(--accent-blue), var(--light-blue));
      top: -100px;
      left: -100px;
      animation: float 20s ease-in-out infinite;
    }

    .shape-2 {
      width: 300px;
      height: 300px;
      background: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
      top: 40%;
      right: -100px;
      animation: float 25s ease-in-out infinite reverse;
    }

    .shape-3 {
      width: 250px;
      height: 250px;
      background: linear-gradient(135deg, var(--light-purple), var(--accent-blue));
      bottom: -50px;
      left: 30%;
      animation: float 18s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translate(0, 0) rotate(0deg); }
      50% { transform: translate(20px, -20px) rotate(5deg); }
    }

    /* Particles */
    .particles {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      overflow: hidden;
    }

    .particle {
      position: absolute;
      width: 3px;
      height: 3px;
      background: rgba(255, 255, 255, 0.3);
      border-radius: 50%;
      animation: particleFloat 15s linear infinite;
    }

    @keyframes particleFloat {
      0% { transform: translateY(100vh); opacity: 0; }
      10% { opacity: 0.4; }
      90% { opacity: 0.4; }
      100% { transform: translateY(-100vh); opacity: 0; }
    }

    /* Hero Content */
    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 10;
    }

    /* Verification Badge */
    .verify-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(255, 255, 255, 0.95);
      padding: 10px 20px;
      border-radius: 50px;
      box-shadow: 0 4px 15px rgba(107, 70, 193, 0.2);
      font-weight: 600;
      font-size: 13px;
      color: var(--gray-800);
      border: 2px solid var(--light-purple);
      margin-bottom: 25px;
      animation: badgePulse 3s ease-in-out infinite;
    }

    @keyframes badgePulse {
      0%, 100% { box-shadow: 0 4px 15px rgba(107, 70, 193, 0.2); }
      50% { box-shadow: 0 4px 20px rgba(107, 70, 193, 0.35); }
    }

    .verify-badge i {
      width: 32px;
      height: 32px;
      background: linear-gradient(135deg, var(--primary-purple), var(--accent-blue));
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
    }

    .verify-badge .highlight {
      color: var(--primary-purple);
      font-weight: 700;
    }

    /* Hero Title */
    .hero-title {
      font-size: 3rem;
      font-weight: 800;
      color: white;
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .hero-title span {
      background: linear-gradient(135deg, #fff 0%, #E9D8FD 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-subtitle {
      color: rgba(255, 255, 255, 0.8);
      font-size: 1.1rem;
      margin-bottom: 35px;
    }

    /* Glass Card */
    .glass-card {
      background: rgba(255, 255, 255, 0.98);
      border-radius: 20px;
      padding: 28px;
      box-shadow: 0 20px 50px rgba(107, 70, 193, 0.25);
    }

    /* Form Elements */
    .form-group {
      margin-bottom: 20px;
    }

    .form-label {
      display: flex;
      align-items: center;
      gap: 5px;
      font-weight: 600;
      color: var(--primary-purple);
      margin-bottom: 8px;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .required-star {
      color: #E53E3E;
    }

    .form-input {
      width: 100%;
      padding: 12px 16px;
      border: 2px solid var(--gray-200);
      border-radius: 10px;
      font-size: 14px;
      font-family: inherit;
      transition: all 0.2s ease;
      background: white;
      color: var(--gray-800);
    }

    .form-input:focus {
      outline: none;
      border-color: var(--accent-blue);
      box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.15);
    }

    .form-input::placeholder {
      color: var(--gray-600);
    }

    /* URL Items */
    .url-item {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 10px;
      padding: 12px;
      background: var(--off-white);
      border: 2px solid var(--gray-200);
      border-radius: 10px;
      transition: all 0.2s ease;
    }

    .url-item:hover {
      border-color: var(--light-purple);
    }

    .url-item i {
      color: var(--primary-purple);
      font-size: 18px;
      width: 24px;
      text-align: center;
    }

    .url-item input {
      flex: 1;
      border: none;
      background: transparent;
      font-size: 13px;
      color: var(--gray-800);
      font-weight: 500;
      font-family: inherit;
    }

    .url-item input:focus {
      outline: none;
    }

    .delete-btn {
      width: 32px;
      height: 32px;
      border: none;
      background: #FED7D7;
      color: #E53E3E;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.2s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .delete-btn:hover {
      background: #E53E3E;
      color: white;
    }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 24px;
      border: none;
      border-radius: 10px;
      font-weight: 600;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.2s ease;
      font-family: inherit;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--primary-purple), var(--deep-purple));
      color: white;
      box-shadow: 0 4px 12px rgba(107, 70, 193, 0.4);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 18px rgba(107, 70, 193, 0.5);
    }

    .btn-generate {
      width: 100%;
      padding: 14px;
      background: linear-gradient(135deg, var(--accent-blue), var(--bright-blue));
      color: white;
      font-size: 15px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      box-shadow: 0 4px 12px rgba(66, 153, 225, 0.4);
    }

    .btn-generate:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 18px rgba(66, 153, 225, 0.5);
    }

    .action-count {
      display: inline-block;
      padding: 6px 16px;
      background: #E9D8FD;
      color: var(--primary-purple);
      border-radius: 20px;
      font-size: 13px;
      font-weight: 600;
      margin-left: 10px;
    }

    /* Hero Visual */
    .hero-visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .orbit-container {
      position: absolute;
      width: 400px;
      height: 400px;
    }

    .orbit-ring {
      position: absolute;
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 50%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .orbit-ring-1 {
      width: 350px;
      height: 350px;
      animation: rotate 25s linear infinite;
    }

    .orbit-ring-2 {
      width: 280px;
      height: 280px;
      animation: rotate 18s linear infinite reverse;
    }

    .orbit-ring-3 {
      width: 210px;
      height: 210px;
      animation: rotate 12s linear infinite;
    }

    @keyframes rotate {
      from { transform: translate(-50%, -50%) rotate(0deg); }
      to { transform: translate(-50%, -50%) rotate(360deg); }
    }

    .orbit-dot {
      position: absolute;
      width: 8px;
      height: 8px;
      background: white;
      border-radius: 50%;
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }

    .orbit-ring-1 .orbit-dot {
      top: -4px;
      left: 50%;
      transform: translateX(-50%);
    }

    .orbit-ring-2 .orbit-dot {
      bottom: -4px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--light-purple);
    }

    .orbit-ring-3 .orbit-dot {
      top: 50%;
      right: -4px;
      transform: translateY(-50%);
      background: var(--accent-blue);
    }

    .hero-image {
      width: 100%;
      max-width: 500px;
      height: auto;
      position: relative;
      z-index: 10;
      filter: drop-shadow(0 15px 30px rgba(107, 70, 193, 0.25));
      animation: heroFloat 5s ease-in-out infinite;
    }

    @keyframes heroFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }

    /* ===== MODAL ===== */
            /* Popup Styles */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }
        
        .popup-content {
            background: #ffffff;
            width: 90%;
            max-width: 700px;
            max-height: 75vh;
            border-radius: 12px;
            padding: 20px;
            overflow-y: auto;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
            position: relative;
        }
        
        .popup-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 1.5px solid #FF0000;
        }
        
        .popup-title {
            font-size: 1.5rem;
            color: #FF0000;
        }
        
        .close-btn {
            background: transparent;
            border: none;
            color: #333333;
            font-size: 1.5rem;
            cursor: pointer;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .close-btn:hover {
            background: rgba(0, 0, 0, 0.08);
        }
        
        .options-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .option-category {
            margin-bottom: 30px;
        }
        
        .category-title {
            font-size: 1.4rem;
            color: #333333;
            margin-bottom: 15px;
            padding-bottom: 5px;
            border-bottom: 1px solid #d0d0d0;
        }
        
         .option-item {
            display: flex;
            align-items: center;
            padding: 15px;
            background: #f8f8f8;
            border-radius: 10px;
            margin-bottom: 10px;
            cursor: pointer;
            transition: all 0.3s;
            color: #333333;
        }
        
        .option-item:hover {
            background: #e8e8e8;
            transform: translateX(5px);
        }
        
        .option-icon {
            font-size: 1.5rem;
            margin-right: 15px;
            width: 40px;
            text-align: center;
        }
        
        .youtube-icon { color: #FF0000; }
        .facebook-icon { color: #1877F2; }
        .telegram-icon { color: #0088cc; }
        .discord-icon { color: #7289DA; }
        .instagram-icon { color: #E4405F; }
        .tiktok-icon { color: #000000; }
        .whatsapp-icon { color: #25D366; }
        .twitch-icon { color: #9146FF; }
        .reddit-icon { color: #FF4500; }
        .twitter-icon { color: black; }
        
        .option-text {
            font-size: 1.1rem;
            color: #333333;
        }

    /* ===== SECTION STYLES ===== */
    .section {
      padding: 80px 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-title h2 {
      font-size: 13px;
      font-weight: 600;
      color: var(--primary-purple);
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 8px;
    }

    .section-title p {
      font-size: 2rem;
      font-weight: 700;
      color: var(--gray-800);
    }

    /* ===== HOW IT WORKS ===== */
    .how-it-works {
      background: var(--off-white);
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    .step-card {
      background: white;
      border-radius: 20px;
      padding: 40px 30px;
      text-align: center;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
      transition: all 0.3s ease;
    }

    .step-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    }

    .step-image {
      width: 160px;
      height: 160px;
      object-fit: contain;
      margin-bottom: 20px;
    }

    .step-card h3 {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--gray-800);
      margin-bottom: 12px;
    }

    .step-card p {
      color: var(--gray-600);
      font-size: 14px;
      line-height: 1.7;
    }

    /* ===== STATS ===== */
    .stats {
      background: white;
      padding: 60px 0;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .stat-item {
      background: white;
      padding: 24px;
      border-radius: 16px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
      display: flex;
      align-items: center;
      gap: 16px;
      transition: all 0.3s ease;
    }

    .stat-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    }

    .stat-icon {
      width: 56px;
      height: 56px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      flex-shrink: 0;
    }

    .stat-icon.blue { background: #DBEAFE; color: #2563EB; }
    .stat-icon.orange { background: #FFEDD5; color: #EA580C; }
    .stat-icon.green { background: #D1FAE5; color: #059669; }
    .stat-icon.pink { background: #FCE7F3; color: #DB2777; }

    .stat-number {
      font-size: 2rem;
      font-weight: 700;
      color: var(--primary-purple);
      line-height: 1;
    }

    .stat-label {
      color: var(--gray-600);
      font-size: 13px;
      font-weight: 500;
    }

    /* ===== FEATURES ===== */
    .features {
      background: var(--off-white);
    }

    .features-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .features-image {
      width: 100%;
      max-width: 500px;
    }

    .features-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .feature-item {
      background: white;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
      display: flex;
      align-items: center;
      gap: 14px;
      transition: all 0.3s ease;
    }

    .feature-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .feature-icon {
      width: 44px;
      height: 44px;
      background: linear-gradient(135deg, var(--primary-purple), var(--accent-blue));
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 20px;
      flex-shrink: 0;
    }

    .feature-item h3 {
      font-size: 15px;
      font-weight: 600;
      color: var(--gray-800);
    }

    /* ===== FAQ ===== */
    .faq {
      background: white;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      max-width: 900px;
      margin: 0 auto;
    }

    .faq-item {
      background: white;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
      cursor: pointer;
      transition: all 0.3s ease;
      border-left: 4px solid transparent;
    }

    .faq-item:hover {
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }

    .faq-item.active {
      border-left-color: var(--primary-purple);
    }

    .faq-question {
      font-weight: 600;
      color: var(--gray-800);
      padding-right: 30px;
      position: relative;
    }

    .faq-toggle {
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      color: var(--primary-purple);
      transition: transform 0.3s ease;
    }

    .faq-item.active .faq-toggle {
      transform: translateY(-50%) rotate(90deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .faq-item.active .faq-answer {
      max-height: 200px;
      padding-top: 12px;
    }

    .faq-answer p {
      color: var(--gray-600);
      font-size: 14px;
      line-height: 1.7;
    }

    /* ===== CONTACT ===== */
    .contact {
      background: var(--off-white);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }

    .contact-info-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .contact-info-item {
      background: white;
      padding: 24px;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
      text-align: center;
      transition: all 0.3s ease;
    }

    .contact-info-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .contact-info-icon {
      width: 50px;
      height: 50px;
      background: #E9D8FD;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 12px;
      color: var(--primary-purple);
      font-size: 22px;
    }

    .contact-info-item h3 {
      font-size: 15px;
      font-weight: 600;
      color: var(--gray-800);
      margin-bottom: 8px;
    }

    .contact-info-item p {
      color: var(--gray-600);
      font-size: 13px;
      line-height: 1.6;
    }

    .contact-form {
      background: white;
      border-radius: 20px;
      padding: 32px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .form-row {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin-bottom: 16px;
    }

    textarea.form-input {
      resize: none;
      min-height: 120px;
    }

    /* ===== FOOTER ===== */
    .footer {
      background: var(--dark-bg);
      color: white;
      padding: 60px 0 20px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-about .logo {
      margin-bottom: 16px;
    }

    .footer-about .logo-text {
      color: white;
    }

    .footer-about p {
      color: rgba(255, 255, 255, 0.6);
      font-size: 14px;
      line-height: 1.8;
    }

    .footer-title {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 20px;
      color: white;
    }

    .footer-links li {
      margin-bottom: 10px;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.6);
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: color 0.2s ease;
    }

    .footer-links a:hover {
      color: var(--light-purple);
    }

    .footer-links a i {
      font-size: 12px;
    }

    .social-links {
      display: flex;
      gap: 10px;
    }

    .social-links a {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      transition: all 0.2s ease;
    }

    .social-links a:hover {
      background: var(--primary-purple);
      transform: translateY(-3px);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 20px;
      text-align: center;
    }

    .footer-bottom p {
      color: rgba(255, 255, 255, 0.5);
      font-size: 14px;
    }

    .footer-bottom strong {
      color: white;
    }

    /* ===== SCROLL TO TOP ===== */
    .scroll-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 45px;
      height: 45px;
      background: linear-gradient(135deg, var(--primary-purple), var(--accent-blue));
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      z-index: 100;
      box-shadow: 0 4px 15px rgba(107, 70, 193, 0.4);
      border: none;
    }

    .scroll-top.visible {
      opacity: 1;
      visibility: visible;
    }

    .scroll-top:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(107, 70, 193, 0.5);
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 992px) {
      .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .hero-visual {
        display: none;
      }

      .steps-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .features-image {
        max-width: 400px;
        margin: 0 auto;
        display: block;
      }

      .faq-grid {
        grid-template-columns: 1fr;
      }

      .contact-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      }

      .nav-menu.active {
        display: flex;
      }

      .header.scrolled .nav-menu a,
      .nav-menu a {
        color: var(--gray-700);
      }

      .mobile-toggle {
        display: block;
      }

      .hero-title {
        font-size: 2rem;
      }

      .steps-grid {
        grid-template-columns: 1fr;
      }

      .stats-grid {
        grid-template-columns: 1fr;
      }

      .features-list {
        grid-template-columns: 1fr;
      }

      .contact-info-grid {
        grid-template-columns: 1fr;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .platform-grid {
        grid-template-columns: 1fr;
      }

      .particles {
        display: none;
      }
    }

    /* ===== UTILITY CLASSES ===== */
    .text-center { text-align: center; }
    .mb-4 { margin-bottom: 16px; }
    .mb-6 { margin-bottom: 24px; }