/* Pricing Card Styles */
.pricing-card {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.pricing-header {
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 2rem 1.5rem;
    border: none;
    position: relative;
}

.pricing-icon {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.pricing-name {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.pricing-body {
    padding: 2rem 1.5rem;
}

.pricing-price {
    text-align: center;
    margin-bottom: 2rem;
}

.price-promo {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.price-amount {
    display: inline-flex;
    gap: 0.25rem;
    align-items: baseline;
    white-space: nowrap;
    margin: 1rem 0;
}

.price-value {
    font-size: 3rem;
    font-weight: 700;
    color: #000;
    line-height: 1;
}

.price-currency {
    font-size: 1.2rem;
    color: #000;
    font-weight: 500;
}

.pricing-features {
    margin-bottom: 2.5rem;
}

.features-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--neutral-700);
    text-align: center;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--neutral-200);
    transition: var(--transition-smooth);
    margin-bottom: 0.5rem;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item:hover {
    background: var(--neutral-50);
    border-radius: 8px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.feature-icon {
    width: 20px;
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 0.9rem;
}

.feature-label {
    flex: 1;
    font-weight: 500;
    color: var(--neutral-600);
}

.feature-value {
    font-weight: 700;
    color: var(--primary-color);
}

.speed-highlight {
    color: var(--primary-color);
    font-weight: 700;
}

.pricing-progress {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.modern-progress {
    height: 8px;
    border-radius: 4px;
    background: var(--neutral-200);
    overflow: hidden;
}

.modern-progress .progress-bar {
    border-radius: 4px;
    transition: width 0.6s ease;
    background: var(--primary-gradient);
}

/* Tariff label styling */
.tariff-label-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.tariff-label {
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    padding: .25rem .7rem;
    display: inline-block;
    cursor: help;
    opacity: 0.9;
}

.featured-badge-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 28px;
    margin-bottom: .5rem;
}

.featured-badge {
    display: inline-block;
    padding: .28rem .7rem;
    font-size: .8rem;
    font-weight: 900;
    letter-spacing: .5px;
    color: #3b2f00;
    background: linear-gradient(135deg, #f7c948, #f0b429);
    border: 1px solid #e0a800;
    border-radius: 999px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(240, 180, 41, 0.3);
}

/* Bonus grid */
.bonus-list-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
}

.bonus-option {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: center;
    padding: 0.9rem 1rem;
    background: var(--neutral-50);
    border-radius: 10px;
    border: 1px solid var(--neutral-200);
    color: var(--neutral-800);
    font-weight: 500;
    transition: box-shadow .2s ease, transform .15s ease;
}

.bonus-option:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
    transform: translateY(-2px);
}

.bonus-index {
    background: var(--primary-color);
    color: #fff;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .4px;
    padding: .25rem .5rem;
    border-radius: 999px;
    text-transform: uppercase;
    white-space: nowrap;
}

.bonus-text {
    color: var(--neutral-800);
}

/* Promo banner in card header */
.promo-banner-in-card {
    display: flex;
    justify-content: center;
    width: 100%;
}

.promo-pill {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 0.75rem 1.25rem;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: .5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.promo-pill:hover {
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
    filter: brightness(1.1);
    text-decoration: none;
    transform: translateY(-2px);
}

.promo-pill-symetryk {
    background: linear-gradient(135deg, #0284c7, #0ea5e9, #0284c7);
    border-color: rgba(255,255,255,0.3);
}

.promo-pill-2-0 {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6, #7c3aed);
    border-color: rgba(255,255,255,0.3);
}

.promo-ribbon {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 6px 16px rgba(0,0,0,0.18);
    padding: .35rem .6rem;
    font-weight: 700;
    letter-spacing: .3px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
}

.promo-ribbon .fa-gift {
    opacity: .95;
}

.promo-ribbon-text {
    white-space: nowrap;
    font-size: .75rem;
}

/* Spacing adjustments */
.pricing-price {
    margin-bottom: 2.75rem;
}

.pricing-progress {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.pricing-features {
    margin-top: 4rem;
}

.pricing-features + .pricing-features {
    margin-top: 4rem;
}

/* Hover effects */
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.pricing-card:hover .pricing-header {
    background: var(--primary-dark);
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-header {
        padding: 1.5rem 1rem;
    }
    
    .pricing-body {
        padding: 1.5rem 1rem;
    }
    
    .pricing-name {
        font-size: 2rem;
    }
    
    .price-value {
        font-size: 2.5rem;
    }
    
    .tariff-label {
        font-size: 0.95rem;
    }
    
    .promo-pill {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
        letter-spacing: .4px;
        line-height: 1.3;
    }
}

@media (max-width: 576px) {
    .promo-pill {
        padding: 0.65rem 0.85rem;
        font-size: 0.8rem;
        letter-spacing: .35px;
        line-height: 1.35;
    }
    
    .promo-ribbon {
        padding: .3rem .55rem;
    }
    
    .promo-ribbon-text {
        font-size: .7rem;
    }
}


