.pricing-container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
    text-align: center;
}
.pricing-title {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: var(--text-primary);
}
.pricing-subtitle {
    color: var(--text-secondary);
    margin-bottom: 50px;
    font-size: 1.2em;
}
.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-color);
    border-color: var(--accent-primary);
}
.pricing-card.featured {
    border: 2px solid var(--accent-primary);
    transform: scale(1.05);
}
.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}
.badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent-primary);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8em;
    font-weight: bold;
}
.plan-name {
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}
.plan-price {
    font-size: 3em;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
}
.plan-price span {
    font-size: 0.4em;
    color: var(--text-secondary);
    font-weight: 400;
}
.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}
.plan-features li {
    margin-bottom: 15px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}
.plan-features li i {
    color: #10b981;
}
.plan-btn {
    width: 100%;
    padding: 15px;
    border-radius: 50px;
    border: none;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-primary);
    color: var(--accent-primary);
}
.btn-outline:hover {
    background: var(--accent-primary);
    color: white;
}
.btn-filled {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    color: white;
}
.btn-filled:hover {
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}
