 
    /* Hero Section with Floating Elements */
.hero-section {
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #F9FAFB 0%, #EDE9FE 100%);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, rgba(124, 58, 237, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, rgba(124, 58, 237, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.hero-title {
    font-weight: 700;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-10deg);
    transition: all 0.5s;
    z-index: 2;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.meta-item {
    display: flex;
    align-items: center;
    color: var(--gray);
}

.meta-item i {
    margin-right: 0.5rem;
    color: var(--primary);
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.product-tag {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 0;
    background-color: white;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 1rem;
}

.pricing-tab {
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    font-weight: 500;
    color: var(--gray);
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.pricing-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.plan-card {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.plan-card.popular {
    border: 1px solid var(--primary);
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    transition: all 0.4s;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.plan-card:hover::before {
    height: 8px;
}

.plan-name {
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.plan-price {
    font-size: 2.0rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.plan-period {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 400;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.plan-features li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.75rem;
}

.plan-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--success);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Payment Section */
.payment-section {
    padding: 4rem 0;
    background-color: var(--light);
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-method {
    flex: 1;
    min-width: 120px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-method:hover{
    border-color: var(--primary);
}

.payment-method.active{
    border-color: var(--primary);
    background-color: var(--primary-light);
}
.payment-method i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.payment-method.active i {
    color: var(--primary-dark);
}

.payment-method .name {
    font-weight: 500;
}

#selected-plan {
    font-weight: 600;
    font-size: 1.40rem;
    color: var(--dark);
}

#selected-plan span{
    font-weight: 700;
    font-size: 1.70rem;
    color: var(--primary);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
    outline: none;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background-color: white;
    position: relative;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s;
    border-radius: 12px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--primary);
    transition: all 0.3s;
}

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

.feature-card:hover .feature-icon {
    background-color: var(--primary);
    color: white;
    transform: rotateY(180deg);
}

.feature-title {
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-text {
    color: var(--gray);
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.75rem;
}

.feature-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--success);
}

/* Testimonials with Floating Cards */
.testimonial-section {
    padding: 6rem 0;
    background-color: var(--light);
    position: relative;
}

.testimonial-card {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    color: var(--primary-light);
    opacity: 0.5;
    z-index: 0;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 3px solid var(--primary-light);
}

.testimonial-author {
    font-weight: 600;
}

.testimonial-role {
    color: var(--gray);
    font-size: 0.9rem;
}

.testimonial-rating {
    color: var(--warning);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.testimonial-text {
    position: relative;
    z-index: 1;
}

/* Ratings Section */
.ratings-section {
    padding: 4rem 0;
    background-color: var(--light);
}

.rating-card {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.rating-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.rating-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 2px solid var(--primary-light);
}

.rating-author {
    font-weight: 600;
}

.rating-date {
    color: var(--gray);
    font-size: 0.8rem;
}

.rating-stars {
    color: var(--warning);
    margin-bottom: 1rem;
}

.rating-text {
    color: var(--gray);
    font-size: 0.95rem;
}

/* FAQ Section with Animated Accordion */
.faq-section {
    padding: 6rem 0;
    background-color: white;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-header {
    background-color: var(--light);
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-header:hover {
    background-color: var(--primary-light);
}

.faq-question {
    font-weight: 600;
    margin: 0;
    color: var(--dark);
}

.faq-toggle {
    width: 24px;
    height: 24px;
    position: relative;
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    background-color: var(--primary);
    transition: all 0.3s;
}

.faq-toggle::before {
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    transform: translateY(-50%);
}

.faq-toggle::after {
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
}

.faq-header[aria-expanded="true"] .faq-toggle::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-body {
    padding: 1.5rem;
    background-color: white;
}

/* CTA Section with Gradient Background */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
}

.cta-title {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
}

/* License Modal */
.license-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.license-modal.show {
    opacity: 1;
    visibility: visible;
}

.license-modal-content {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: translateY(20px);
    transition: all 0.3s;
}

.license-modal.show .license-modal-content {
    transform: translateY(0);
}

.license-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-section {
        padding: 8rem 0 4rem;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .product-hero {
        padding: 7rem 0 3rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 7rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-image {
        margin-top: 2rem;
        transform: perspective(1000px) rotateY(0deg);
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .product-hero {
        text-align: center;
    }
    
    .product-meta {
        justify-content: center;
    }
    
    .product-tags {
        justify-content: center;
    }
    
    .pricing-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .payment-methods {
        flex-direction: column;
    }
    
    .payment-method {
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-badge {
        font-size: 0.9rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .pricing-price {
        font-size: 2rem;
    }
    
    .product-title {
        font-size: 1.8rem;
    }
    
    .plan-card {
        padding: 1.5rem;
    }
    
    .plan-price {
        font-size: 2rem;
    }
}
    .button-content {
      transition: all 0.3s ease;
    }


    .loading-animation {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: inherit;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .wave-loader {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .wave-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background-color: white;
      margin: 0 5px;
      animation: wave 1.5s infinite ease-in-out;
    }

    .wave-dot:nth-child(1) { animation-delay: 0.1s; }
    .wave-dot:nth-child(2) { animation-delay: 0.2s; }
    .wave-dot:nth-child(3) { animation-delay: 0.3s; }
    .wave-dot:nth-child(4) { animation-delay: 0.4s; }
    .wave-dot:nth-child(5) { animation-delay: 0.5s; }

    @keyframes wave {
      0%, 60%, 100% { transform: translateY(0); opacity: 0.6; }
      30% { transform: translateY(-10px); opacity: 1; }
    }

    .payment-button.loading .button-content {
      opacity: 0;
      transform: translateY(10px);
    }

    .payment-button.loading .loading-animation {
      opacity: 1;
    }