/* ==========================================================================
   SHARED HOSTING PRICING CARDS & BILLING SWITCHER
   ========================================================================== */

.modern-pricing-section {
    background: #f8fafc !important;
    padding-top: 100px !important;
    padding-bottom: 90px !important;
}

.modern-pricing-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 35px 28px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.modern-pricing-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(7, 26, 82, 0.08); }
.modern-pricing-card.featured-plan { border: 2px solid #ff7b2c; box-shadow: 0 15px 35px rgba(255, 123, 44, 0.15); }

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff7b2c;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: 999px;
}

.pricing-plan-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(255, 123, 44, 0.1);
    color: #ff7b2c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 15px;
}

.pricing-top h4 { font-size: 22px; font-weight: 800; color: #071a52; margin-bottom: 6px; }
.pricing-top p { font-size: 13.5px; color: #64748b; margin-bottom: 20px; }
.pricing-price h2 { font-size: 42px; font-weight: 800; color: #071a52; margin-bottom: 0; }
.pricing-price h2 span { font-size: 16px; color: #64748b; font-weight: 600; }

.save-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.12);
    color: #10b981;
    font-size: 11px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 6px;
    margin-top: 4px;
}

.modern-pricing-features {
    list-style: none;
    padding: 0;
    margin: 25px 0 auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px dashed #e2e8f0;
    padding-top: 20px;
}

.modern-pricing-features li { font-size: 14px; color: #334155; display: flex; align-items: center; gap: 10px; }
.feature-icon { color: #64748b; font-size: 14px; width: 18px; text-align: center; flex-shrink: 0; }

/* Huduly Feature Highlight Box */
.huduly-highlight-item {
    background: #fff7ed;
    border: 1px solid #ffedd5;
    padding: 10px 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.huduly-text-wrap { display: flex; flex-direction: column; line-height: 1.25; }
.huduly-text-wrap strong { color: #071a52; font-size: 13.5px; font-weight: 700; }
.huduly-value-tag { color: #c2410c; font-size: 11px; font-weight: 700; }

/* Huduly Highlight Item Layout */
.huduly-highlight-item {
    background: #fff7ed;
    border: 1px solid #ffedd5;
    padding: 10px 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.huduly-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.huduly-text-wrap strong {
    color: #071a52;
    font-size: 13.5px;
    font-weight: 700;
}

.huduly-value-tag {
    color: #c2410c;
    font-size: 11px;
    font-weight: 700;
}

/* Action Container (Badge + Info Icon) */
.huduly-action-wrap {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

/* Badge Style */
.huduly-badge-link {
    background: #ff7b2c;
    color: #ffffff !important;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 6px;
    text-decoration: none !important;
    white-space: nowrap;
}

/* Info Icon Tooltip Trigger */
.huduly-info-icon {
    color: #94a3b8;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}

.huduly-info-icon:hover {
    color: #071a52;
}

/* Billing Switcher */
.billing-toggle-wrap { display: flex; align-items: center; justify-content: center; }
.billing-label { font-size: 15px; font-weight: 700; color: #94a3b8; }
.billing-label.active { color: #071a52; }

.billing-switch { position: relative; display: inline-block; width: 52px; height: 28px; margin: 0; }
.billing-switch input { opacity: 0; width: 0; height: 0; }
.billing-slider { position: absolute; cursor: pointer; inset: 0; background-color: #cbd5e1; transition: .3s; border-radius: 999px; }
.billing-slider:before { position: absolute; content: ""; height: 20px; width: 20px; left: 4px; bottom: 4px; background-color: white; transition: .3s; border-radius: 50%; }

input:checked + .billing-slider { background-color: #ff7b2c; }
input:checked + .billing-slider:before { transform: translateX(24px); }

/* Buttons */
.modern-pricing-card .btn-outline-brand-01,
.modern-pricing-card .btn-brand-03 {
    background: linear-gradient(135deg, #ff7b2c, #ff5e00) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 123, 44, 0.35);
}