/* Pricing Page Styles */

/* Hero Section */
.hero-pricing {
    background: linear-gradient(135deg, #48BECE 0%, #36a3b3 100%);
    color: white;
    padding: 150px 20px 100px;
    text-align: center;
}

.hero-pricing h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-pricing p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(72, 190, 206, 0.15);
    border-color: #48BECE;
}

.pricing-card.featured {
    border: 2px solid #48BECE;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, #48BECE, #36a3b3);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.pricing-name {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.pricing-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.pricing-price {
    text-align: center;
    margin-bottom: 30px;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: #48BECE;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
}

.price-currency {
    font-size: 24px;
    margin-top: 8px;
}

.price-period {
    font-size: 16px;
    color: #999;
    margin-top: 5px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #333;
    font-size: 15px;
    line-height: 1.6;
}

.pricing-features li svg {
    width: 20px;
    height: 20px;
    color: #48BECE;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-cta {
    display: block;
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #48BECE, #36a3b3);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(72, 190, 206, 0.4);
}

.pricing-cta.secondary {
    background: white;
    color: #48BECE;
    border: 2px solid #48BECE;
}

.pricing-cta.secondary:hover {
    background: #f8f9fa;
}

/* FAQ Section */
.faq-section {
    background: #f8f9fa;
    padding: 80px 20px;
}

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

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: white;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #48BECE;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer-content {
    padding: 0 30px 25px;
    color: #666;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #48BECE, #36a3b3);
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-button {
    background: white;
    color: #48BECE;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-pricing h1 {
        font-size: 32px;
    }

    .hero-pricing p {
        font-size: 18px;
    }

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

    .pricing-card.featured {
        transform: scale(1);
    }

    .price-amount {
        font-size: 40px;
    }

    .section-title {
        font-size: 28px;
    }

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

    .faq-answer-content {
        padding: 0 20px 20px;
    }
}
