  * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      }

      :root {
        --primary: #0a0e17;
        --secondary: #13182d;
        --accent: #6c63ff;
        --accent-light: #8a84ff;
        --danger: #ff4757;
        --warning: #ffa502;
        --success: #2ed573;
        --text: #e4e6f1;
        --text-secondary: #8a92b0;
        --premium: #ffd700;
      }

      body {
        background-color: var(--primary);
        color: var(--text);
        min-height: 100vh;
        overflow-x: hidden;
      }

      #spaceCanvas {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
      }

      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        position: relative;
        z-index: 1;
      }

      /* Header Styles */
      header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
        border-bottom: 1px solid rgba(108, 99, 255, 0.2);
        margin-bottom: 40px;
      }

      .logo {
        display: flex;
        align-items: center;
        gap: 15px;
      }

      .logo i {
        font-size: 2.5rem;
        color: var(--accent);
      }

      .logo h1 {
        font-size: 2.2rem;
        font-weight: 700;
        background: linear-gradient(
          to right,
          var(--accent),
          var(--accent-light)
        );
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
      }

      .nav-buttons {
        display: flex;
        gap: 15px;
      }

      .nav-btn {
        padding: 10px 20px;
        border-radius: 8px;
        background: rgba(108, 99, 255, 0.1);
        color: var(--text);
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        border: 1px solid rgba(108, 99, 255, 0.2);
      }

      .nav-btn:hover {
        background: rgba(108, 99, 255, 0.2);
        transform: translateY(-2px);
      }

      .nav-btn.active {
        background: var(--accent);
      }

      .user-section {
        display: flex;
        align-items: center;
        gap: 15px;
      }

      .user-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--accent), #3632a8);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 1.2rem;
      }

      /* Dashboard Layout - Hidden by default */
      .dashboard {
        display: none;
        grid-template-columns: 1fr 350px;
        gap: 30px;
        margin-bottom: 40px;
      }

      /* Pricing Page */
      .pricing-page {
        padding: 30px 0;
      }

      .pricing-header {
        text-align: center;
        margin-bottom: 50px;
      }

      .pricing-header h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
        background: linear-gradient(
          to right,
          var(--accent),
          var(--accent-light)
        );
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
      }

      .pricing-header p {
        color: var(--text-secondary);
        max-width: 600px;
        margin: 0 auto;
        font-size: 1.1rem;
        line-height: 1.6;
      }

      .pricing-tabs {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-bottom: 30px;
      }

      .pricing-tab {
        padding: 12px 25px;
        background: rgba(26, 31, 53, 0.8);
        border-radius: 8px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s ease;
        border: 1px solid rgba(108, 99, 255, 0.1);
      }

      .pricing-tab:hover {
        background: rgba(108, 99, 255, 0.1);
      }

      .pricing-tab.active {
        background: var(--accent);
      }

      .pricing-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
        margin-bottom: 50px;
      }

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

      .pricing-card {
        background: rgba(19, 24, 45, 0.9);
        border-radius: 15px;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(108, 99, 255, 0.1);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
      }

      .pricing-card:hover {
        transform: translateY(-10px);
        border-color: var(--accent);
        box-shadow: 0 15px 40px rgba(108, 99, 255, 0.2);
      }

      .pricing-card.featured {
        border-color: var(--premium);
        transform: scale(1.05);
      }

      .pricing-card.featured:hover {
        transform: scale(1.05) translateY(-10px);
      }

      .pricing-card.featured::before {
        content: "POPULAR";
        position: absolute;
        top: 20px;
        right: -35px;
        background: var(--premium);
        color: #000;
        font-weight: bold;
        padding: 5px 40px;
        transform: rotate(45deg);
        font-size: 0.8rem;
      }

      .pricing-card-header {
        margin-bottom: 25px;
      }

      .pricing-card-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .pricing-card-title i {
        color: var(--accent);
      }

      .pricing-card.featured .pricing-card-title i {
        color: var(--premium);
      }

      .pricing-card-description {
        color: var(--text-secondary);
        font-size: 0.95rem;
        line-height: 1.5;
      }

      .pricing-card-price {
        margin-bottom: 25px;
      }

      .price {
        font-size: 3rem;
        font-weight: 700;
        color: var(--text);
      }

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

      .pricing-card.featured .price {
        color: var(--premium);
      }

      .pricing-card-features {
        margin-bottom: 30px;
      }

      .feature-item {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 12px;
        font-size: 0.95rem;
      }

      .feature-item i {
        color: var(--success);
        font-size: 0.9rem;
      }

      .feature-item.disabled {
        color: var(--text-secondary);
      }

      .feature-item.disabled i {
        color: var(--text-secondary);
      }

      .buy-btn {
        width: 100%;
        padding: 16px;
        background: linear-gradient(
          to right,
          var(--accent),
          var(--accent-light)
        );
        border: none;
        border-radius: 10px;
        color: white;
        font-weight: 600;
        font-size: 1.1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
      }

      .buy-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(108, 99, 255, 0.4);
      }

      .pricing-card.featured .buy-btn {
        background: linear-gradient(to right, var(--premium), #ffed4e);
        color: #000;
      }

      .pricing-card.featured .buy-btn:hover {
        box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
      }

      .payment-section {
        background: rgba(19, 24, 45, 0.9);
        border-radius: 15px;
        padding: 30px;
        margin-top: 30px;
        text-align: center;
        display: none;
      }

      .payment-section h3 {
        font-size: 1.8rem;
        margin-bottom: 20px;
        color: var(--accent);
      }

      .selected-plan-info {
        background: rgba(26, 31, 53, 0.8);
        border-radius: 10px;
        padding: 20px;
        margin-bottom: 30px;
        text-align: left;
      }

      .selected-plan-info h4 {
        font-size: 1.4rem;
        margin-bottom: 10px;
        color: var(--accent-light);
      }

      .plan-price {
        font-size: 2rem;
        font-weight: bold;
        color: var(--success);
        margin-bottom: 20px;
      }

      .paystack-btn {
        padding: 18px 40px;
        background: linear-gradient(to right, #00b35f, #00a056);
        border: none;
        border-radius: 10px;
        color: white;
        font-weight: 700;
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 15px;
        text-decoration: none;
      }

      .paystack-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 179, 95, 0.3);
      }

      .paystack-btn i {
        font-size: 1.5rem;
      }

      .back-to-plans {
        margin-top: 20px;
        color: var(--text-secondary);
        cursor: pointer;
        text-decoration: underline;
      }

      /* Services Section */
      .services-section {
        background: rgba(19, 24, 45, 0.8);
        border-radius: 15px;
        padding: 25px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(108, 99, 255, 0.1);
      }

      .section-title {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 25px;
        font-size: 1.5rem;
      }

      .section-title i {
        color: var(--accent);
      }

      .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
      }

      .service-card {
        background: rgba(26, 31, 53, 0.8);
        border-radius: 12px;
        padding: 20px;
        transition: all 0.3s ease;
        border: 1px solid rgba(108, 99, 255, 0.1);
        cursor: pointer;
      }

      .service-card:hover {
        transform: translateY(-5px);
        border-color: var(--accent);
        box-shadow: 0 5px 15px rgba(108, 99, 255, 0.2);
      }

      .service-card.selected {
        border-color: var(--accent);
        background: rgba(108, 99, 255, 0.1);
      }

      .service-icon {
        width: 50px;
        height: 50px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
        font-size: 1.5rem;
      }

      .service-name {
        font-weight: 600;
        margin-bottom: 8px;
        font-size: 1.1rem;
      }

      .service-desc {
        color: var(--text-secondary);
        font-size: 0.9rem;
        margin-bottom: 15px;
        line-height: 1.4;
      }

      .activity-count {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .count {
        font-size: 0.9rem;
        color: var(--text-secondary);
      }

      /* Control Panel */
      .control-panel {
        background: rgba(19, 24, 45, 0.8);
        border-radius: 15px;
        padding: 25px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(108, 99, 255, 0.1);
      }

      .control-title {
        margin-bottom: 25px;
        font-size: 1.5rem;
      }

      .selected-services {
        margin-bottom: 25px;
      }

      .selected-service-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
        background: rgba(26, 31, 53, 0.8);
        border-radius: 8px;
        margin-bottom: 10px;
      }

      .delete-btn {
        width: 100%;
        padding: 16px;
        background: linear-gradient(to right, var(--danger), #ff3838);
        border: none;
        border-radius: 10px;
        color: white;
        font-weight: 600;
        font-size: 1.1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
      }

      .delete-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 71, 87, 0.4);
      }

      .delete-btn:disabled {
        background: #555;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
      }

      .time-range {
        margin: 25px 0;
      }

      .time-range label {
        display: block;
        margin-bottom: 10px;
        font-weight: 600;
      }

      .time-options {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
      }

      .time-option {
        padding: 8px 15px;
        background: rgba(26, 31, 53, 0.8);
        border-radius: 20px;
        cursor: pointer;
        font-size: 0.9rem;
        transition: all 0.2s ease;
      }

      .time-option:hover {
        background: rgba(108, 99, 255, 0.2);
      }

      .time-option.selected {
        background: var(--accent);
      }

      /* Progress Section */
      .progress-section {
        margin-top: 30px;
        display: none;
      }

      .progress-header {
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
      }

      .progress-bar {
        height: 8px;
        background: rgba(26, 31, 53, 0.8);
        border-radius: 4px;
        overflow: hidden;
        margin-bottom: 20px;
      }

      .progress-fill {
        height: 100%;
        background: linear-gradient(to right, var(--accent), var(--success));
        width: 0%;
        transition: width 0.5s ease;
      }

      .progress-item {
        display: flex;
        justify-content: space-between;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      }

      .progress-item:last-child {
        border-bottom: none;
      }

      /* Footer */
      footer {
        text-align: center;
        padding: 30px 0;
        border-top: 1px solid rgba(108, 99, 255, 0.2);
        color: var(--text-secondary);
        font-size: 0.9rem;
      }

      .warning-text {
        color: var(--warning);
        margin-top: 15px;
        font-size: 0.9rem;
        line-height: 1.5;
      }

      /* Access Message */
      .access-message {
        text-align: center;
        padding: 60px 20px;
        background: rgba(19, 24, 45, 0.9);
        border-radius: 15px;
        margin: 40px 0;
        display: none;
      }

      .access-message i {
        font-size: 4rem;
        color: var(--accent);
        margin-bottom: 20px;
      }

      .access-message h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
      }

      .access-message p {
        color: var(--text-secondary);
        max-width: 600px;
        margin: 0 auto 30px;
        font-size: 1.1rem;
        line-height: 1.6;
      }

      /* Responsive adjustments */
      @media (max-width: 768px) {
        header {
          flex-direction: column;
          gap: 20px;
          text-align: center;
        }

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

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

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

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

        .pricing-card.featured:hover {
          transform: translateY(-10px);
        }
      }

      /* ===== MARKETING SECTIONS STYLING ===== */

      /* Hero Section */
      .hero-section {
        text-align: center;
        padding: 100px 20px;
        background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, rgba(76, 200, 255, 0.05) 100%);
        border-radius: 20px;
        margin-bottom: 60px;
        border: 1px solid rgba(108, 99, 255, 0.2);
        animation: fadeInUp 1s ease-out;
      }

      .hero-content {
        max-width: 700px;
        margin: 0 auto;
      }

      .hero-title {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 20px;
        background: linear-gradient(to right, var(--accent), var(--accent-light));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      .hero-subtitle {
        font-size: 1.2rem;
        color: var(--text-secondary);
        margin-bottom: 30px;
        line-height: 1.6;
      }

      .hero-cta {
        display: flex;
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
      }

      .cta-btn {
        padding: 14px 32px;
        border: none;
        border-radius: 10px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
      }

      .cta-btn.primary {
        background: linear-gradient(to right, var(--accent), var(--accent-light));
        color: white;
      }

      .cta-btn.primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(108, 99, 255, 0.3);
      }

      .cta-btn.secondary {
        background: transparent;
        color: var(--accent);
        border: 2px solid var(--accent);
      }

      .cta-btn.secondary:hover {
        background: rgba(108, 99, 255, 0.1);
        transform: translateY(-2px);
      }

      /* Why Choose Section */
      .why-section {
        margin-bottom: 80px;
      }

      .why-section h2,
      .how-works-section h2,
      .privacy-section h2,
      .features-section h2,
      .testimonials-section h2,
      .faq-section h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 50px;
        color: var(--text);
      }

      .why-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
      }

      .why-card {
        background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(76, 200, 255, 0.05));
        border: 1px solid rgba(108, 99, 255, 0.2);
        padding: 30px;
        border-radius: 15px;
        text-align: center;
        transition: all 0.3s ease;
      }

      .why-card:hover {
        transform: translateY(-10px);
        border-color: var(--accent);
        box-shadow: 0 15px 40px rgba(108, 99, 255, 0.15);
      }

      .why-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
      }

      .why-card h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
      }

      .why-card p {
        color: var(--text-secondary);
        line-height: 1.6;
      }

      /* How It Works Section */
      .how-works-section {
        margin-bottom: 80px;
      }

      .steps-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
      }

      .step {
        flex: 1;
        min-width: 200px;
        background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(76, 200, 255, 0.05));
        padding: 30px;
        border-radius: 15px;
        border: 1px solid rgba(108, 99, 255, 0.2);
        text-align: center;
        transition: all 0.3s ease;
      }

      .step:hover {
        transform: translateY(-8px);
        border-color: var(--accent);
      }

      .step-number {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        background: linear-gradient(to right, var(--accent), var(--accent-light));
        border-radius: 50%;
        font-size: 1.5rem;
        font-weight: bold;
        margin-bottom: 15px;
      }

      .step h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
      }

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

      .step-arrow {
        font-size: 1.5rem;
        color: var(--accent);
        display: none;
      }

      @media (min-width: 768px) {
        .step-arrow {
          display: block;
        }
      }

      /* Privacy & Security Section */
      .privacy-section {
        background: linear-gradient(135deg, rgba(76, 200, 255, 0.1), rgba(108, 99, 255, 0.1));
        padding: 60px 30px;
        border-radius: 20px;
        margin-bottom: 80px;
        border: 1px solid rgba(108, 99, 255, 0.2);
      }

      .privacy-content {
        max-width: 1100px;
        margin: 0 auto;
      }

      .privacy-content h2 {
        margin-bottom: 40px;
      }

      .privacy-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
      }

      .privacy-item {
        text-align: center;
      }

      .privacy-item i {
        font-size: 2.5rem;
        color: var(--accent);
        margin-bottom: 15px;
      }

      .privacy-item h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
      }

      .privacy-item p {
        color: var(--text-secondary);
        line-height: 1.6;
      }

      /* Features Section */
      .features-section {
        margin-bottom: 80px;
      }

      .features-intro {
        text-align: center;
        color: var(--text-secondary);
        font-size: 1.1rem;
        margin-bottom: 40px;
      }

      .features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
      }

      .feature-box {
        background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(76, 200, 255, 0.05));
        padding: 25px;
        border-radius: 15px;
        text-align: center;
        border: 1px solid rgba(108, 99, 255, 0.2);
        transition: all 0.3s ease;
      }

      .feature-box:hover {
        transform: translateY(-8px);
        border-color: var(--accent);
        box-shadow: 0 15px 40px rgba(108, 99, 255, 0.15);
      }

      .feature-box i {
        font-size: 2.5rem;
        margin-bottom: 12px;
      }

      .feature-box h4 {
        margin-bottom: 10px;
        font-size: 1.1rem;
      }

      .feature-box p {
        color: var(--text-secondary);
        font-size: 0.9rem;
        line-height: 1.5;
      }

      /* Testimonials Section */
      .testimonials-section {
        margin-bottom: 80px;
      }

      .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
      }

      .testimonial-card {
        background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(76, 200, 255, 0.05));
        padding: 30px;
        border-radius: 15px;
        border: 1px solid rgba(108, 99, 255, 0.2);
        transition: all 0.3s ease;
      }

      .testimonial-card:hover {
        transform: translateY(-8px);
        border-color: var(--accent);
        box-shadow: 0 15px 40px rgba(108, 99, 255, 0.15);
      }

      .stars {
        color: var(--premium);
        font-size: 1.1rem;
        margin-bottom: 15px;
      }

      .testimonial-card p {
        color: var(--text-secondary);
        margin-bottom: 20px;
        line-height: 1.6;
        font-style: italic;
      }

      .testimonial-author {
        display: flex;
        flex-direction: column;
        gap: 5px;
      }

      .testimonial-author strong {
        color: var(--text);
      }

      .testimonial-author span {
        color: var(--accent);
        font-size: 0.85rem;
      }

      /* FAQ Section */
      .faq-section {
        margin-bottom: 60px;
      }

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

      .faq-item {
        background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(76, 200, 255, 0.05));
        border: 1px solid rgba(108, 99, 255, 0.2);
        border-radius: 12px;
        margin-bottom: 15px;
        overflow: hidden;
        transition: all 0.3s ease;
      }

      .faq-item.active {
        border-color: var(--accent);
        box-shadow: 0 10px 30px rgba(108, 99, 255, 0.15);
      }

      .faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        cursor: pointer;
        background: rgba(108, 99, 255, 0.05);
        transition: all 0.3s ease;
      }

      .faq-question:hover {
        background: rgba(108, 99, 255, 0.1);
      }

      .faq-question h4 {
        margin: 0;
        font-size: 1.05rem;
        text-align: left;
        flex: 1;
      }

      .faq-question i {
        color: var(--accent);
        transition: transform 0.3s ease;
      }

      .faq-item.active .faq-question i {
        transform: rotate(180deg);
      }

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

      .faq-item.active .faq-answer {
        max-height: 500px;
        padding: 20px;
      }

      .faq-answer p {
        color: var(--text-secondary);
        line-height: 1.6;
        margin: 0;
      }

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

      .hero-section {
        animation: fadeInUp 0.8s ease-out;
      }

      .why-section,
      .how-works-section,
      .privacy-section,
      .features-section,
      .testimonials-section,
      .faq-section {
        animation: fadeInUp 0.8s ease-out 0.1s both;
      }

      /* Responsive adjustments for marketing sections */
      @media (max-width: 768px) {
        .hero-title {
          font-size: 2rem;
        }

        .hero-subtitle {
          font-size: 1rem;
        }

        .cta-btn {
          padding: 12px 24px;
          font-size: 0.95rem;
        }

        .why-section h2,
        .how-works-section h2,
        .privacy-section h2,
        .features-section h2,
        .testimonials-section h2,
        .faq-section h2 {
          font-size: 2rem;
        }

        .steps-container {
          flex-direction: column;
        }

        .step {
          width: 100%;
        }

        .privacy-section {
          padding: 40px 20px;
        }

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

        .faq-question h4 {
          font-size: 1rem;
        }
      }

      /* ===== BILLING TOGGLE ===== */
      .billing-toggle-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
        margin-top: 28px;
        margin-bottom: 10px;
      }

      .toggle-label {
        font-size: 1rem;
        font-weight: 600;
        color: var(--text-secondary);
        transition: color 0.3s ease;
        cursor: pointer;
        user-select: none;
      }

      .toggle-label.active-label {
        color: var(--text);
      }

      .toggle-switch {
        position: relative;
        width: 56px;
        height: 28px;
        cursor: pointer;
      }

      .toggle-switch input {
        opacity: 0;
        width: 0;
        height: 0;
        position: absolute;
      }

      .toggle-track {
        position: absolute;
        inset: 0;
        background: rgba(108, 99, 255, 0.2);
        border: 1px solid rgba(108, 99, 255, 0.4);
        border-radius: 999px;
        transition: background 0.3s ease;
      }

      .toggle-switch input:checked + .toggle-track {
        background: linear-gradient(to right, var(--accent), var(--accent-light));
        border-color: var(--accent);
      }

      .toggle-thumb {
        position: absolute;
        top: 4px;
        left: 4px;
        width: 18px;
        height: 18px;
        background: white;
        border-radius: 50%;
        transition: transform 0.3s ease;
        box-shadow: 0 2px 6px rgba(0,0,0,0.4);
      }

      .toggle-switch input:checked ~ .toggle-thumb {
        transform: translateX(28px);
      }

      .save-badge {
        display: inline-block;
        background: linear-gradient(to right, var(--success), #1eae5e);
        color: #fff;
        font-size: 0.72rem;
        font-weight: 700;
        padding: 3px 10px;
        border-radius: 999px;
        margin-left: 6px;
        letter-spacing: 0.04em;
        vertical-align: middle;
        box-shadow: 0 2px 8px rgba(46, 213, 115, 0.3);
      }

      /* ===== FOOTER LINKS ===== */
      .footer-links {
        display: flex;
        justify-content: center;
        gap: 24px;
        margin-top: 14px;
        flex-wrap: wrap;
      }

      .footer-links a {
        color: var(--accent-light);
        text-decoration: none;
        font-size: 0.88rem;
        transition: color 0.2s ease;
      }

      .footer-links a:hover {
        color: var(--text);
        text-decoration: underline;
      }

      /* ===== LEGAL PAGES ===== */
      .legal-page {
        padding: 40px 0 60px;
        max-width: 860px;
        margin: 0 auto;
      }

      .legal-page-title {
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 8px;
        background: linear-gradient(to right, var(--accent), var(--accent-light));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
      }

      .legal-page-subtitle {
        color: var(--text-secondary);
        font-size: 0.95rem;
        margin-bottom: 40px;
      }

      .legal-section {
        background: rgba(19, 24, 45, 0.85);
        border: 1px solid rgba(108, 99, 255, 0.15);
        border-radius: 14px;
        padding: 28px 32px;
        margin-bottom: 20px;
        transition: border-color 0.3s ease;
      }

      .legal-section:hover {
        border-color: rgba(108, 99, 255, 0.35);
      }

      .legal-section h3 {
        font-size: 1.2rem;
        margin-bottom: 14px;
        color: var(--accent-light);
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .legal-section h3 i {
        font-size: 1rem;
        color: var(--accent);
      }

      .legal-section p {
        color: var(--text-secondary);
        line-height: 1.75;
        margin-bottom: 10px;
      }

      .legal-section p:last-child {
        margin-bottom: 0;
      }

      .legal-section ul {
        list-style: none;
        padding: 0;
        margin: 0;
      }

      .legal-section ul li {
        color: var(--text-secondary);
        line-height: 1.7;
        padding: 6px 0 6px 22px;
        position: relative;
      }

      .legal-section ul li::before {
        content: "›";
        position: absolute;
        left: 0;
        color: var(--accent);
        font-weight: bold;
        font-size: 1.2rem;
        line-height: 1.4;
      }

      .legal-back-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 22px;
        border-radius: 8px;
        background: rgba(108, 99, 255, 0.15);
        border: 1px solid rgba(108, 99, 255, 0.3);
        color: var(--accent-light);
        text-decoration: none;
        font-weight: 600;
        font-size: 0.95rem;
        margin-bottom: 36px;
        transition: all 0.3s ease;
      }

      .legal-back-btn:hover {
        background: rgba(108, 99, 255, 0.25);
        transform: translateX(-3px);
      }

      @media (max-width: 768px) {
        .legal-page-title {
          font-size: 2rem;
        }
        .legal-section {
          padding: 22px 20px;
        }
        .billing-toggle-wrapper {
          gap: 10px;
        }
      }