/* Plans/Pricing Section Styles */
.plans-section {
    background: var(--slate-50);
}

.plans-section .section-title {
    color: var(--slate-900);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.plans-section .section-subtitle {
    color: var(--slate-600);
    font-size: 1.125rem;
}

/* Plan Cards */
.plans-section .plan-card {
    background: white;
    border: 1px solid var(--slate-200);
    border-radius: 0.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
}

.plans-section .plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 1.5rem rgba(0, 0, 0, 0.12) !important;
}

/* Plan Card Header */
.plans-section .plan-header {
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--slate-100);
}

.plans-section .plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.5rem;
}

.plans-section .plan-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--slate-900);
    line-height: 1;
}

.plans-section .plan-period {
    font-size: 1rem;
    color: var(--slate-600);
    margin-left: 0.25rem;
}

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

.plans-section .plan-features li {
    padding: 0.75rem 0;
    color: var(--slate-700);
    display: flex;
    align-items: center;
    line-height: 1.5;
}

.plans-section .plan-features li i {
    font-size: 1.25rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
    line-height: 1;
}

.plans-section .plan-features .feature-check {
    color: var(--green-500);
}

/* Coming Soon Overlay */
.plans-section .coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(3px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: not-allowed;
}

.plans-section .coming-soon-badge {
    background: linear-gradient(135deg, var(--slate-700) 0%, var(--slate-900) 100%);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.plans-section .coming-soon-badge i {
    font-size: 1.25rem;
}

.plans-section .coming-soon-text {
    color: var(--slate-600);
    font-size: 0.875rem;
    margin-top: 1rem;
    text-align: center;
}

/* Disabled state for future plans */
.plans-section .plan-card.future-plan {
    opacity: 0.85;
}

.plans-section .plan-card.future-plan:hover {
    transform: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .plans-section .plan-card {
        margin-bottom: 1.5rem;
    }

    .plans-section .section-title {
        font-size: 2rem;
    }

    .plans-section .plan-price {
        font-size: 2.5rem;
    }
}

/* Animation for plan cards */
.plans-section .plan-card {
    animation: fadeIn 0.6s ease-out both;
}

.plans-section .plan-card:nth-child(1) {
    animation-delay: 0.1s;
}

.plans-section .plan-card:nth-child(2) {
    animation-delay: 0.2s;
}

.plans-section .plan-card:nth-child(3) {
    animation-delay: 0.3s;
}
