/* Pricing Page Styles */

.pricing-main {
    padding: 40px 80px 120px;
    max-width: 1600px;
    margin: 0 auto;
}

.pricing-hero {
    text-align: center;
    margin-bottom: 80px;
}

.pricing-hero-title {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 8px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.red-text {
    color: #8B5CF6;
}

.pricing-hero-subtitle {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 8px;
    margin-bottom: 30px;
}

.pricing-hero-description {
    font-size: 24px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
    border: none;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.starter-card {
    background: #0f1727;
}

.all-access-card {
    background: linear-gradient(35deg, rgba(9, 30, 59, 1) 0%, rgba(7, 19, 41, 1) 67%, rgb(178, 6, 226) 100%);
}

.infinite-card {
    background: #0f1727;
}

.most-popular-badge {
    position: absolute;
    top: 30px;
    right: -40px;
    background: linear-gradient(135deg, #5a7bc4 0%, #3d5a9e 100%);
    color: #ffffff;
    padding: 8px 50px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: lowercase;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transform: rotate(45deg);
}

.pricing-card-title {
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 40px;
    color: #ffffff;
}

.pricing-price {
    margin-bottom: 50px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 28px;
    color: #8B5CF6;
    font-weight: 300;
    margin-top: 8px;
}

.amount {
    font-size: 80px;
    color: #8B5CF6;
    font-weight: 300;
    line-height: 0.9;
}

.period {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    align-self: flex-end;
    margin-bottom: 12px;
    margin-left: 5px;
    font-weight: 300;
}

.pricing-features {
    margin-bottom: 40px;
    text-align: left;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.feature-icon {
    color: #ffffff;
    font-size: 20px;
    font-weight: 300;
    flex-shrink: 0;
}

.feature-text {
    font-weight: 300;
    line-height: 1.5;
}

.feature-text strong {
    font-weight: 500;
}

.pricing-btn {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
    border: 2px solid #8B5CF6;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 25px;
    font-family: 'Jost', sans-serif;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.pricing-btn:hover {
    background: linear-gradient(135deg, #7C3AED 0%, #5B21B6 100%);
    border-color: #7C3AED;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
    box-shadow: 0 5px 15px rgba(0, 137, 249, 0.4);
}

.pricing-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 500px;
    }

    .pricing-main {
        padding: 60px 40px 80px;
    }

    .pricing-hero-title,
    .pricing-hero-subtitle {
        font-size: 36px;
        letter-spacing: 5px;
    }
}

@media (max-width: 768px) {
    .pricing-main {
        padding: 40px 20px 60px;
    }

    .pricing-hero {
        margin-bottom: 50px;
    }

    .pricing-hero-title,
    .pricing-hero-subtitle {
        font-size: 28px;
        letter-spacing: 3px;
    }

    .pricing-hero-description {
        font-size: 14px;
    }

    .pricing-card {
        padding: 40px 30px;
    }

    .amount {
        font-size: 60px;
    }

    .currency {
        font-size: 28px;
    }

    .pricing-feature {
        font-size: 14px;
    }

    .pricing-btn {
        font-size: 16px;
        padding: 12px 24px;
    }
}

/* FAQ Section */
.faq-section {
    max-width: 1200px;
    margin: 80px auto 0;
    padding-bottom: 40px;
}

.faq-title {
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 4px;
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: linear-gradient(135deg, rgba(20, 30, 50, 0.5), rgba(10, 20, 40, 0.5));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-item.active {
    background: linear-gradient(135deg, rgba(30, 40, 60, 0.6), rgba(15, 25, 45, 0.6));
    border-color: rgba(218, 7, 47, 0.3);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    text-align: left;
    font-family: 'Jost', sans-serif;
    transition: all 0.3s;
}

.faq-question:hover {
    color: #8B5CF6;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: #8B5CF6;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 25px 25px 25px;
}

.faq-answer p {
    font-size: 24px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 15px;
    font-weight: 300;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.faq-answer li {
    font-size: 24px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    font-weight: 300;
}

.faq-answer li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #8B5CF6;
    font-weight: bold;
}

.faq-answer strong {
    color: #ffffff;
    font-weight: 500;
}

@media (max-width: 768px) {
    .faq-section {
        margin: 50px auto 0;
    }

    .faq-title {
        font-size: 28px;
        letter-spacing: 3px;
        margin-bottom: 30px;
    }

    .faq-question {
        font-size: 16px;
        padding: 18px 20px;
    }

    .faq-answer p,
    .faq-answer li {
        font-size: 14px;
    }

    .faq-icon {
        font-size: 20px;
    }
}
