    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: 'Inter', system-ui, sans-serif;
      background: #03050a;
      overflow-x: hidden;
      color: #eef2ff;
    }

    .glass-nav {
      background: rgba(3, 5, 10, 0.75);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(168, 85, 247, 0.45);
    }
    .btn-outline-light {
      border: 1px solid rgba(255,255,255,0.25);
      background: rgba(255,255,255,0.02);
      transition: all 0.25s;
    }
    .btn-outline-light:hover {
      border-color: #a855f7;
      background: rgba(168,85,247,0.1);
    }
    
    .mobile-menu-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 62vh;
      background: rgba(3, 5, 10, 0.99);
      backdrop-filter: blur(25px);
      z-index: 40;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding-top: 6rem;
      transform: translateY(-100%);
      transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
      border-radius: 0;
      border-bottom: 2px solid rgba(168, 85, 247, 0.5);
    }
    .mobile-menu-overlay.active {
      transform: translateY(0);
    }
    .mobile-menu-link {
      transition: all 0.3s ease;
      padding: 0.75rem 0;
      display: block;
    }
    .mobile-menu-link:hover {
      color: #c084fc;
    }
    .hamburger-line {
      transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      display: block;
      width: 26px;
      height: 2.5px;
      background: white;
      border-radius: 2px;
      margin: 5px 0;
    }
    .hamburger-active .line1 { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger-active .line2 { opacity: 0; }
    .hamburger-active .line3 { transform: rotate(-45deg) translate(5px, -5px); }
    .menu-backdrop {
      position: fixed;
      top: 62vh;
      left: 0;
      width: 100%;
      height: 38vh;
      background: rgba(0,0,0,0.5);
      z-index: 39;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }
    .menu-backdrop.active { opacity: 1; pointer-events: auto; }
    
    .pricing-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.8rem;
      max-width: 1400px;
      margin: 0 auto;
    }

    @media (min-width: 768px) {
      .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (min-width: 1280px) {
      .pricing-grid {
        gap: 2.5rem;
        max-width: 1300px;
      }
    }
    .pricing-card {
      background: linear-gradient(145deg, rgba(18, 24, 36, 0.85), rgba(10, 15, 25, 0.9));
      backdrop-filter: blur(12px);
      border-radius: 2rem;
      padding: 1.8rem;
      transition: all 0.3s ease;
      border: 1px solid rgba(168, 85, 247, 0.25);
      box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.6);
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    .pricing-card:hover {
      transform: translateY(-6px);
      border-color: rgba(168, 85, 247, 0.7);
      box-shadow: 0 28px 40px -15px rgba(139, 92, 246, 0.35);
      background: rgba(22, 28, 40, 0.9);
    }

    .card-header {
      display: flex;
      align-items: center;
      gap: 1.2rem;
      margin-bottom: 1.5rem;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      padding-bottom: 1.2rem;
    }
    .package-logo {
      width: 85px;
      height: 85px;
      object-fit: contain;
      padding: 10px;
      transition: transform 0.2s;
    }
    .pricing-card:hover .package-logo {
      transform: scale(1.02);
    }
    .package-name {
      font-family: 'Manrope', sans-serif;
      font-weight: 800;
      font-size: 1.8rem;
      letter-spacing: -0.02em;
      background: linear-gradient(135deg, #ffffff, #e0d4ff);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      line-height: 1.2;
    }
    .package-badge {
      font-size: 0.7rem;
      background: rgba(168, 85, 247, 0.25);
      padding: 0.25rem 0.8rem;
      border-radius: 40px;
      color: #c084fc;
      display: inline-block;
      margin-top: 0.3rem;
      font-weight: 500;
    }
    .price-tag {
      margin: 0.75rem 0 1rem;
    }
    .price {
      font-size: 2.5rem;
      font-weight: 800;
      font-family: 'Manrope', sans-serif;
      color: white;
    }
    .price-period {
      font-size: 0.9rem;
      color: #94a3b8;
      font-weight: 400;
    }
    .feature-list {
      list-style: none;
      padding: 0;
      margin: 1rem 0 1.5rem;
      flex-grow: 1;
    }
    .feature-list li {
      margin-bottom: 0.85rem;
      display: flex;
      align-items: center;
      gap: 0.8rem;
      font-size: 0.95rem;
      color: #cbd5e6;
    }
    .feature-list li i {
      color: #a855f7;
      width: 24px;
      font-size: 0.9rem;
    }
    .btn-order {
      background: linear-gradient(105deg, #6d28d9, #9333ea);
      border: none;
      padding: 1rem 0;
      border-radius: 60px;
      font-weight: 700;
      font-size: 1rem;
      color: white;
      cursor: pointer;
      transition: all 0.25s;
      margin-top: 0.5rem;
      width: 100%;
      text-align: center;
      display: inline-block;
      box-shadow: 0 6px 14px rgba(139, 92, 246, 0.25);
    }
    .btn-order:hover {
      background: linear-gradient(105deg, #7c3aed, #a855f7);
      transform: translateY(-2px);
      box-shadow: 0 12px 22px -8px rgba(139, 92, 246, 0.5);
    }

    @media (max-width: 640px) {
      .pricing-card { padding: 1.3rem; }
      .package-logo { width: 85px; height: 85px; padding: 8px; }
      .mobile-menu-overlay { height: 58vh; padding-top: 5rem; }
      .menu-backdrop { top: 58vh; height: 42vh; }
      .package-name { font-size: 1.4rem; }
      .price { font-size: 2rem; }
      .feature-list li { font-size: 0.85rem; gap: 0.6rem; }
      .btn-order { padding: 0.8rem 0; font-size: 0.9rem; }
      .card-header { gap: 0.9rem; }
    }
    footer {
      background: #020308;
      border-top: 2px solid rgba(168, 85, 247, 0.3);