.pricing-container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.pricing-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.plans-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.plan-item {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 24px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.plan-item:hover {
    background: var(--card-bg-hover);
    border-color: var(--border-color-stronger);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-elevation-2);
}

.plan-item.selected {
    border-color: var(--color-primary);
    background: var(--accent-alpha-05);
    box-shadow: 0 8px 25px var(--shadow-primary);
}

.plan-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.plan-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.plan-radio {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
}

.plan-item:hover .plan-radio {
    border-color: var(--color-primary);
}

.plan-item.selected .plan-radio {
    border-color: var(--color-primary);
}

.plan-item.selected .plan-radio::after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--color-primary);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.plan-conferences {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
}

.plan-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.plan-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.plan-price .currency {
    font-size: 1.25rem;
}

.plan-savings {
    font-size: 0.85rem;
    color: var(--color-success);
    font-weight: 500;
}

.plan-per-conference {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.purchase-section {
    margin-top: 2rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.selected-plan-info {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.purchase-button {
    background: var(--color-primary);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
    opacity: 0.6;
    pointer-events: none;
}

.purchase-button.active {
    opacity: 1;
    pointer-events: auto;
}

.purchase-button.active:hover {
    background: var(--link-hover-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-primary);
}

@media (max-width: 768px) {
    .pricing-container {
        width: 95%;
        padding: 1rem 0;
    }
    
    .pricing-header h1 {
        font-size: 2rem;
    }
    
    .plan-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .plan-right {
        align-items: flex-start;
        text-align: left;
        width: 100%;
    }
    
    .plan-item {
        padding: 1.25rem;
        border-radius: 20px;
    }
    
    .purchase-button {
        width: 100%;
        max-width: 300px;
    }
} 