/* Dedicated Pricing Page Styles */

.pricing-hero {
    text-align: center;
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, #FEF5E7 0%, #FFF5F5 100%);
}

.pricing-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.pricing-hero p {
    font-size: 1.25rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    cursor: pointer;
    user-select: none;
}

.pricing-toggle span {
    transition: color 0.3s ease, font-weight 0.3s ease;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 32px;
    background: #E2E8F0;
    border-radius: 9999px;
    cursor: pointer;
    transition: background 0.25s ease;
}

.toggle-switch.active {
    background: #F56565;
}

.toggle-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    transition: transform 0.25s ease;
}

.toggle-switch.active .toggle-slider {
    transform: translateX(28px);
}

.pricing-cards {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    flex-wrap: wrap;
}

.pricing-card {
    background: white;
    border: 2px solid #E2E8F0;
    border-radius: 1rem;
    padding: 2.5rem;
    position: relative;
    transition: all 0.25s ease;
    flex: 0 0 340px;
    max-width: 340px;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.pricing-card.featured {
    border-color: #F56565;
    border-width: 3px;
    box-shadow: 0 10px 30px rgba(245, 101, 101, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #48BB78 0%, #38A169 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(72, 187, 120, 0.4);
}

.pricing-tier {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1A202C;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.75rem;
    color: #1A202C;
}

.pricing-price small {
    font-size: 1.125rem;
    font-weight: 400;
    color: #718096;
}

.pricing-price .monthly-price,
.pricing-price .yearly-price {
    transition: opacity 0.3s ease;
}

.pricing-period {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    min-height: 1.5rem;
}

.pricing-period .monthly-period,
.pricing-period .yearly-period {
    transition: opacity 0.3s ease;
}

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

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #F7FAFC;
    font-size: 0.95rem;
    line-height: 1.5;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.feature-icon {
    font-size: 1.125rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.feature-icon.check {
    color: #48BB78;
}

.feature-icon.cross {
    color: #CBD5E0;
}

.savings-badge {
    display: inline-block;
    background: linear-gradient(135deg, #48BB78 0%, #38A169 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 3rem 0;
    opacity: 0.7;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #718096;
    text-align: center;
}

.pricing-page .yearly-price,
.pricing-page .yearly-period {
    display: none;
}

.pricing-page.is-yearly .yearly-price,
.pricing-page.is-yearly .yearly-period {
    display: inline;
}

.pricing-page.is-yearly .monthly-price,
.pricing-page.is-yearly .monthly-period {
    display: none;
}

.trust-badge-icon {
    font-size: 2.5rem;
}

.faq-section {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #E2E8F0;
    padding: 1.75rem 0;
}

.faq-question {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #1A202C;
}

.faq-answer {
    color: #718096;
    line-height: 1.7;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .pricing-cards {
        flex-direction: column;
        padding: 1rem;
    }

    .pricing-card {
        flex: 1 1 auto;
        max-width: 100%;
    }

    .pricing-card.featured {
        box-shadow: 0 8px 20px rgba(245, 101, 101, 0.15);
    }

    .pricing-hero {
        padding: 3rem 0 2rem;
    }
}
