/* Premium Pricing Cards */
.modern-package-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 25px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.02);
    border: 1px solid rgba(0, 120, 212, 0.1);
    overflow: hidden;
}
.modern-package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #0078d4, #00b4db);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.modern-package-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.08), 0 2px 10px rgba(0,120,212,0.05);
    transform: translateY(-8px);
    border-color: rgba(0, 120, 212, 0.2);
}
.modern-package-card:hover::before {
    opacity: 1;
}
.modern-package-title {
    font-size: 22px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    text-align: center;
}
.modern-campaign-badge {
    background: linear-gradient(135deg, #ff9900, #ffcc00);
    color: #000;
    font-weight: 800;
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(255, 153, 0, 0.2);
    margin-bottom: 20px;
    display: inline-block;
    width: 100%;
    text-align: center;
}
.modern-price-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}
.modern-price-old {
    color: #94a3b8;
    font-size: 16px;
    text-decoration: line-through;
    font-weight: 600;
}
.modern-price-new {
    font-size: 36px;
    font-weight: 800;
    color: #0078d4;
    letter-spacing: -1px;
}
.modern-price-period {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}
.modern-saving-badge {
    background: rgba(16, 185, 129, 0.08);
    color: #059669;
    padding: 10px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    text-align: center;
    border: 1px dashed rgba(16, 185, 129, 0.3);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.modern-annual-box {
    background: #f8fafc;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
}
.modern-annual-box .annual-text {
    color: #334155;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}
.modern-annual-box .annual-price {
    color: #059669;
    font-size: 22px;
    font-weight: 800;
}
.modern-annual-box .annual-note {
    font-size: 11px;
    color: #94a3b8;
    margin-top: 4px;
}
.modern-tax-note {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 20px;
}
.modern-btn-buy {
    background: linear-gradient(135deg, #0078d4, #0284c7);
    color: #fff !important;
    border: none;
    padding: 14px;
    font-weight: 700;
    font-size: 15px;
    border-radius: 10px;
    text-align: center;
    display: block;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 120, 212, 0.25);
    margin-bottom: 15px;
}
.modern-btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 120, 212, 0.35);
}
.modern-btn-more {
    color: #0078d4;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: color 0.2s;
}
.modern-btn-more:hover {
    color: #005a9e;
}
.modern-btn-more i {
    margin-left: 6px;
    font-size: 11px;
    transition: transform 0.2s;
}
.modern-btn-more:hover i {
    transform: translateX(4px);
}
.modern-btn-calc {
    background: #ffffff;
    color: #475569 !important;
    border: 1px solid #cbd5e1;
    padding: 12px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 10px;
    text-align: center;
    display: block;
    width: 100%;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 20px;
}
.modern-btn-calc:hover {
    background: #f8fafc;
    border-color: #94a3b8;
    color: #1e293b !important;
}
.modern-features {
    margin-top: 10px;
    flex-grow: 1;
}
.modern-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.modern-features li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 14px;
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
    font-weight: 500;
}
.modern-features li i {
    position: absolute;
    left: 0;
    top: 2px;
    color: #10b981;
    font-size: 12px;
    background: rgba(16, 185, 129, 0.1);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.modern-calc-box {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
}
.modern-calc-box label {
    font-weight: 600;
    color: #334155;
    font-size: 13px;
    margin-bottom: 8px;
    display: block;
}
.modern-calc-box input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 15px;
    color: #0f172a;
    transition: border-color 0.2s;
}
.modern-calc-box input:focus {
    outline: none;
    border-color: #0078d4;
}
.modern-calc-box .calc-row {
    margin-bottom: 8px;
    font-size: 14px;
    color: #475569;
}
.modern-calc-box .calc-val {
    font-weight: 700;
    color: #0f172a;
}
.modern-calc-note {
    font-size: 11px;
    color: #64748b;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #e2e8f0;
    line-height: 1.5;
}
