/* Pricing Section */
.pricing-section {
    padding: 8rem 2rem;
    background: rgb(25, 24, 26);
    min-height: calc(100vh - 80px);
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.6s ease-out;
}

.pricing-title {
    font-size: 3.5rem;
    font-weight: 400;
    color: rgb(255, 234, 223);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.pricing-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 234, 223, 0.7);
    font-weight: 400;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 6rem;
}

.pricing-card {
    background: rgba(255, 234, 223, 0.03);
    border: 1px solid rgba(255, 234, 223, 0.08);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: backwards;
}

.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.2s; }

.pricing-card:hover {
    border-color: rgba(120, 220, 240, 0.3);
    transform: translateY(-4px);
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(120, 220, 240, 0.08) 0%, rgba(255, 234, 223, 0.03) 100%);
    border-color: rgba(120, 220, 240, 0.3);
    border-width: 2px;
}

/* Plan Badges */
.plan-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.4rem 0.8rem;
    background: rgba(120, 220, 240, 0.15);
    color: rgb(120, 220, 240);
    border: 1px solid rgba(120, 220, 240, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-badge.featured-badge {
    background: rgba(120, 220, 240, 0.2);
    border-color: rgba(120, 220, 240, 0.4);
}

.plan-badge.current-plan {
    background: rgba(120, 220, 180, 0.15);
    color: rgb(120, 220, 180);
    border-color: rgba(120, 220, 180, 0.3);
}

/* Plan Header */
.plan-header {
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.75rem;
    font-weight: 400;
    color: rgb(255, 234, 223);
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 300;
    color: rgb(255, 234, 223);
    letter-spacing: -1px;
}

.price-period {
    font-size: 1rem;
    color: rgba(255, 234, 223, 0.5);
}

.plan-description {
    font-size: 1rem;
    color: rgba(255, 234, 223, 0.6);
    margin: 0;
}

/* Plan Features */
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: rgb(255, 234, 223);
    font-size: 1rem;
}

.plan-features li svg {
    flex-shrink: 0;
    color: rgb(120, 220, 240);
}

/* Plan Button */
.plan-button {
    width: 100%;
    padding: 1rem 2rem;
    background: rgba(255, 234, 223, 0.05);
    color: rgb(255, 234, 223);
    border: 1px solid rgba(255, 234, 223, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    font-family: inherit;
}

.plan-button:hover:not(:disabled) {
    background: rgba(255, 234, 223, 0.1);
    border-color: rgba(255, 234, 223, 0.3);
    transform: translateY(-2px);
}

.plan-button.primary {
    background: rgba(120, 220, 240, 0.15);
    color: rgb(120, 220, 240);
    border-color: rgba(120, 220, 240, 0.3);
}

.plan-button.primary:hover:not(:disabled) {
    background: rgba(120, 220, 240, 0.25);
    border-color: rgba(120, 220, 240, 0.5);
}

.plan-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Alert Messages */
.alert {
    max-width: 600px;
    margin: 0 auto 3rem;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    animation: fadeInUp 0.6s ease-out;
}

.alert-success {
    background: rgba(120, 220, 180, 0.1);
    border: 1px solid rgba(120, 220, 180, 0.3);
}

.alert-info {
    background: rgba(120, 220, 240, 0.1);
    border: 1px solid rgba(120, 220, 240, 0.3);
}

.alert-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.alert-success .alert-icon {
    color: rgb(120, 220, 180);
}

.alert-info .alert-icon {
    color: rgb(120, 220, 240);
}

.alert-content h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgb(255, 234, 223);
    margin: 0 0 0.5rem 0;
}

.alert-content p {
    font-size: 0.95rem;
    color: rgba(255, 234, 223, 0.7);
    margin: 0;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease-out;
    animation-delay: 0.3s;
    animation-fill-mode: backwards;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: rgb(255, 234, 223);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.5px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    background: rgba(255, 234, 223, 0.03);
    border: 1px solid rgba(255, 234, 223, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgb(255, 234, 223);
    margin-bottom: 0.75rem;
}

.faq-answer {
    font-size: 0.95rem;
    color: rgba(255, 234, 223, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-section {
        padding: 4rem 1rem;
    }
    
    .pricing-title {
        font-size: 2.5rem;
    }
    
    .pricing-subtitle {
        font-size: 1.1rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-title {
        font-size: 2rem;
    }
}
