/* Pricing Page Styles */
.pricing-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.pricing-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
    color: #fff;
}

.pricing-header p {
    color: #94A3B8;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.offer-banner {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #000;
    border: 1px solid #333;
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 50px;
}

.banner-pill {
    background: #D2F800;
    color: #000;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.banner-text {
    color: #fff;
    font-size: 0.9rem;
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.toggle-label {
    font-size: 0.9rem;
    color: #94A3B8;
}

.toggle-label.active {
    color: #fff;
    font-weight: 600;
}

.switch {
    width: 60px;
    height: 30px;
    background: #2D3748;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s;
}

.switch.active {
    background: #D2F800;
}

.switch .handle {
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: transform 0.3s;
}

.switch.active .handle {
    transform: translateX(30px);
}

.discount-pill {
    background: #FF0080;
    color: #fff;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.pricing-card {
    background: #0F1219;
    border: 1px solid #1E2738;
    border-radius: 24px;
    padding: 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: #2D3748;
}

.pricing-card.featured {
    background: #D2F800;
    color: #000;
    border-radius: 24px;
}

.pricing-card.creator {
    border: 2px solid #FF0080;
}

.card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #000;
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.pricing-card.featured .card-badge {
    background: #000;
    color: #fff;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.card-subtitle {
    font-size: 0.85rem;
    color: #94A3B8;
    margin-bottom: 25px;
    height: 40px;
}

.pricing-card.featured .card-subtitle {
    color: rgba(0, 0, 0, 0.6);
}

.card-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 10px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
}

.price-old {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: #94A3B8;
}

.pricing-card.creator .price-amount {
    color: #FF0080;
}

.pricing-card.featured .price-old {
    color: rgba(0, 0, 0, 0.4);
}

.price-period {
    font-size: 0.9rem;
    color: #94A3B8;
}

.pricing-card.featured .price-period {
    color: rgba(0, 0, 0, 0.6);
}

.billing-info {
    font-size: 0.8rem;
    color: #94A3B8;
    margin-bottom: 25px;
}

.pricing-card.featured .billing-info {
    color: rgba(0, 0, 0, 0.5);
}

.select-plan-btn {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 15px;
    border: none;
    background: #fff;
    color: #000;
}

.pricing-card.featured .select-plan-btn {
    background: #000;
    color: #fff;
}

.pricing-card.creator .select-plan-btn {
    background: #FF0080;
    color: #fff;
}

.save-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    font-size: 0.85rem;
    margin-bottom: 25px;
    color: #D2F800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pricing-card.featured .save-info {
    background: rgba(0, 0, 0, 0.05);
    color: #000;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #E2E8F0;
}

.pricing-card.featured .feature-item {
    color: #000;
}

.feature-check {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.feature-credit-highlight {
    font-weight: 700;
    color: #D2F800;
}

.pricing-card.featured .feature-credit-highlight {
    color: #000;
}

.free-gens-badge {
    background: #D2F800;
    color: #000;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: auto;
}

.pricing-card.featured .free-gens-badge {
    background: #000;
    color: #fff;
}

.creator-pills {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.creator-pill {
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

.creator-pill.pink {
    background: #FF0080;
    color: #fff;
}

.creator-pill.white {
    background: #fff;
    color: #000;
}

/* Responsive */
@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-header h1 {
        font-size: 2.5rem;
    }
}