* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    color: #fff;
    overflow-y: auto;
    background: #0a0a0a;
  }
  
  .background {
    position: fixed;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    z-index: -1;
  }
  
  #particles {
    width: 100%;
    height: 100%;
    opacity: 0.6;
  }
  
  .container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    padding: 2rem 5%;
    background: rgba(10, 10, 15, 0.45);
    backdrop-filter: blur(20px);
  }
  
  /* Header */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    margin-bottom: 3rem;
  }
  
  .logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: -2px;
  }
  
  .glow {
    background: linear-gradient(90deg, #00f5ff, #ff00ff, #00f5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    animation: gradientShift 6s linear infinite;
  }
  
  nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 2.5rem;
    font-weight: 500;
    position: relative;
  }
  
  nav a:hover {
    color: #00f5ff;
    transform: translateY(-2px);
  }
  
  nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: linear-gradient(to right, #00f5ff, #ff00ff);
    transition: width 0.4s ease;
  }
  
  nav a:hover::after { 
    width: 100%; 
  }
  
  /* Hero */
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 6rem;
  }
  
  .hero-left {
    animation: fadeInUp 1.2s ease forwards;
  }
  
  .title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 7vw, 5.8rem);
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: -3px;
    margin-bottom: 1.5rem;
  }
  
  .gradient-text {
    background: linear-gradient(90deg, #00f5ff, #a855f7, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    animation: gradientShift 8s linear infinite;
  }
  
  .subtitle {
    font-size: 1.35rem;
    color: #a0a0cc;
    margin-bottom: 2.5rem;
    max-width: 480px;
  }
  
  .cta-container {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
  }
  
  .cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  .primary {
    background: linear-gradient(135deg, #00f5ff, #a855f7);
    color: black;
  }
  
  .secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
  }
  
  .cta-button:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 245, 255, 0.3);
  }
  
  /* Toolkit */
  .toolkit {
    margin-top: 2rem;
  }
  
  .toolkit-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #a855f7, #00f5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .toolkit-subtitle {
    color: #888;
    margin-bottom: 2rem;
  }
  
  .toolkit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
  }
  
  .toolkit-card {
    background: rgba(20, 20, 35, 0.85);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 1.8rem 1.5rem;
    transition: all 0.4s ease;
  }
  
  .toolkit-card:hover {
    border-color: #a855f7;
    transform: translateY(-8px);
  }
  
  .icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    display: block;
  }
  
  .toolkit-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.8rem;
    color: #fff;
  }
  
  .toolkit-card p {
    color: #aaa;
    font-size: 0.98rem;
    line-height: 1.5;
  }
  
  /* Code Window */
  .code-window {
    width: 100%;
    max-width: 480px;
    background: #1a1625;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #6b5b9e;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7);
  }
  
  .code-header {
    background: #120e1f;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .dots {
    display: flex;
    gap: 8px;
  }
  
  .dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
  }
  
  .red { background: #ff5f56; }
  .yellow { background: #ffbd2e; }
  .green { background: #27c93f; }
  
  .code-title {
    color: #9d8ac7;
    font-size: 0.92rem;
    margin-left: 8px;
  }
  
  .code-body {
    padding: 22px 20px;
    background: #1a1625;
    font-family: 'SF Mono', monospace;
    font-size: 0.95rem;
    color: #c4b5fd;
    height: 340px;
    overflow: hidden;
    line-height: 1.55;
  }
  
  /* Pricing */
  .pricing-section {
    padding: 5rem 0;
  }
  
  .section-title {
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
    background: linear-gradient(90deg, #00f5ff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
  }
  
  .pricing-card {
    background: rgba(20, 20, 35, 0.8);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
  }
  
  .pricing-card:hover {
    transform: translateY(-15px);
    border-color: #00f5ff;
  }
  
  .popular {
    border-color: #a855f7;
    transform: scale(1.05);
  }
  
  .popular-badge {
    position: absolute;
    top: 20px;
    right: -32px;
    background: #a855f7;
    color: white;
    padding: 6px 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transform: rotate(45deg);
  }
  
  .price {
    font-size: 3.2rem;
    font-weight: 700;
    margin: 1rem 0;
    color: #00f5ff;
  }
  
  .pricing-card ul {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
  }
  
  .pricing-card li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: #ddd;
  }
  
  .pricing-card li:last-child { 
    border-bottom: none; 
  }
  
  /* Footer */
  .footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.95rem;
    color: #777;
    margin-top: 4rem;
  }
  
  .heart { 
    color: #ff3366; 
    animation: heartbeat 1.5s infinite; 
  }
  
  .socials { 
    display: flex; 
    gap: 1.5rem; 
  }
  
  .social-icon {
    color: #aaa;
    font-size: 1.5rem;
    transition: all 0.3s ease;
  }
  
  .social-icon:hover {
    color: #00f5ff;
    transform: scale(1.3) rotate(10deg);
  }
  
  /* ====================== */
  /* PAYMENT MODAL STYLES   */
  /* ====================== */
  
  .modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0; 
    top: 0;
    width: 100%; 
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(12px);
  }
  
  .modal-content {
    background: rgba(15,15,30,0.98);
    margin: 8% auto;
    padding: 2.8rem;
    border-radius: 20px;
    width: 90%;
    max-width: 560px;
    border: 1px solid rgba(0,245,255,0.2);
    text-align: center;
  }
  
  .close {
    position: absolute;
    right: 1.8rem;
    top: 1.2rem;
    font-size: 2.2rem;
    cursor: pointer;
    color: #888;
  }
  
  .close:hover { 
    color: #ff3366; 
  }
  
  .modal-price {
    font-size: 2.8rem;
    font-weight: 700;
    color: #00f5ff;
    margin: 1rem 0 2rem 0;
  }
  
  .payment-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
  }
  
  .payment-option {
    background: rgba(255,255,255,0.06);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
  }
  
  .highlight {
    color: #00f5ff;
    font-weight: 500;
  }
  
  .contact-info {
    background: rgba(0,245,255,0.08);
    padding: 1.2rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    text-align: left;
  }
  
  .note {
    font-size: 0.95rem;
    color: #aaa;
    margin-top: 1.5rem;
  }
  
  /* Animations */
  @keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(60px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
  }
  
  /* Responsive */
  @media (max-width: 968px) {
    .hero {
      grid-template-columns: 1fr;
    }
    .code-window {
      max-width: 100%;
    }
  }