/* ????????????????????????????????????????????????????
   hosting.css  —  Styles for Home/Hosting page
   PDPortal / PublicDial Services
???????????????????????????????????????????????????? */

/* ?? Urgency bar ?? */
.h_urgency { background: linear-gradient(90deg,#e65100,#ff6d00); color: #fff; text-align: center; padding: 9px 44px; font-size: 13px; font-weight: 600; position: relative; }
.h_urgency .ud { display: inline-block; width: 8px; height: 8px; background: #fff; border-radius: 50%; margin-right: 6px; vertical-align: middle; animation: udp 1.3s infinite; }
@keyframes udp { 0%,100% { opacity: 1; } 50% { opacity: .2; } }
.h_urgency a { color: #fff; font-weight: 800; text-decoration: underline !important; }
.h_urgency .uc { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); background: none; border: none; color: #fff; font-size: 18px; cursor: pointer; }

/* ?? Stats bar ?? */
.h_stats { background: linear-gradient(90deg,#1a237e,#283593); border-radius: 10px; padding: 22px 30px; display: flex; flex-wrap: wrap; margin: 22px 0 6px; }
.hstat { flex: 1; min-width: 110px; text-align: center; border-right: 1px solid rgba(255,255,255,.14); padding: 4px 14px; }
.hstat:last-child { border-right: none; }
.hstat h3 { font-size: 24px; font-weight: 800; color: #ffb300; margin: 0; }
.hstat p { font-size: 10px; color: rgba(255,255,255,.72); margin: 3px 0 0; text-transform: uppercase; letter-spacing: .7px; }

/* ?? Trust strip ?? */
.h_trust { background: #fff; border: 1px solid #e0e3f0; border-radius: 8px; padding: 13px 20px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-around; gap: 12px; margin: 12px 0 4px; }
.h_trust_item { display: flex; align-items: center; gap: 8px; }
.h_trust_item i { font-size: 18px; color: #1a237e; }
.hti-val { font-size: 14px; font-weight: 800; color: #1a237e; line-height: 1.1; }
.hti-lbl { font-size: 10px; color: #999; text-transform: uppercase; letter-spacing: .4px; }

/* ?? Scrollspy nav tabs ?? */
.h_nav { display: flex; flex-wrap: wrap; gap: 6px; padding: 16px 0 4px; justify-content: center; }
.h_tab { display: inline-flex; align-items: center; gap: 6px; background: #fff; border: 1.5px solid #d0d4e8; color: #555; font-size: 11px; font-weight: 700; padding: 7px 14px; border-radius: 30px; text-decoration: none; transition: all .2s; white-space: nowrap; }
.h_tab i { font-size: 12px; color: #1a237e; }
.h_tab:hover, .h_tab.active { background: #1a237e; color: #fff; border-color: #1a237e; }
.h_tab:hover i, .h_tab.active i { color: #ffb300; }

/* ?? Section divider label ?? */
.h_grp { display: flex; align-items: center; gap: 12px; margin: 34px 0 0; font-size: 11px; font-weight: 700; color: #aaa; text-transform: uppercase; letter-spacing: 2px; }
.h_grp::before, .h_grp::after { content: ""; flex: 1; height: 1px; background: #e0e3f0; }

/* ?? Category header ?? */
.h_cat_hdr { background: linear-gradient(90deg,#1a237e,#283593); color: #fff; padding: 12px 18px; border-radius: 8px 8px 0 0; font-size: 14px; font-weight: 700; border-left: 5px solid #e65100; margin-top: 24px; display: flex; align-items: center; gap: 10px; }
.h_cat_count { margin-left: auto; background: rgba(255,255,255,.18); font-size: 10px; padding: 2px 10px; border-radius: 20px; }

/* ?? Feature cards grid ?? */
.h_cards_wrap { border: 1px solid #d0d4e8; border-top: none; border-radius: 0 0 10px 10px; padding: 20px; background: #fff; display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 6px; }
.h_card { background: #f8f9fc; border: 1px solid #e0e3f0; border-radius: 10px; padding: 22px 18px; display: flex; flex-direction: column; gap: 10px; transition: all .22s; position: relative; overflow: hidden; }
.h_card::before { content: ""; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: linear-gradient(180deg,#1a237e,#e65100); border-radius: 10px 0 0 10px; opacity: 0; transition: opacity .22s; }
.h_card:hover { background: #fff; box-shadow: 0 6px 24px rgba(26,35,126,.10); transform: translateY(-2px); }
.h_card:hover::before { opacity: 1; }
.h_card_icon { width: 46px; height: 46px; border-radius: 10px; background: linear-gradient(135deg,#e8eaf6,#c5cae9); display: flex; align-items: center; justify-content: center; transition: background .22s; }
.h_card_icon i { font-size: 20px; color: #1a237e; }
.h_card:hover .h_card_icon { background: linear-gradient(135deg,#1a237e,#283593); }
.h_card:hover .h_card_icon i { color: #ffb300; }
.h_card h5 { font-size: 14px; font-weight: 800; color: #1a237e; margin: 0; }
.h_card p { font-size: 12.5px; color: #666; margin: 0; line-height: 1.6; flex: 1; }

/* ?? Tags ?? */
.h_tags { display: flex; flex-wrap: wrap; gap: 4px; }
.h_tag { background: #e8eaf6; color: #1a237e; font-size: 10px; font-weight: 600; padding: 2px 8px; border-radius: 20px; white-space: nowrap; }
.h_tag.orange { background: #fff3e0; color: #e65100; }
.h_tag.green  { background: #e8f5e9; color: #2e7d32; }

/* ?? Card footer ?? */
.h_card_footer { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; padding-top: 10px; border-top: 1px solid #e0e3f0; }
.h_price { font-size: 11.5px; font-weight: 700; color: #e65100; }
.h_price span { font-size: 10px; color: #aaa; font-weight: 400; }

/* ?? Quote / CTA button ?? */
.h_quote_btn { display: inline-flex; align-items: center; gap: 5px; background: #1a237e; color: #fff !important; font-size: 10.5px; font-weight: 700; padding: 5px 12px; border-radius: 20px; white-space: nowrap; cursor: pointer; border: none; transition: background .2s, transform .15s; }
.h_quote_btn:hover { background: #e65100; transform: scale(1.05); }

/* ?? Badges ?? */
.h_badge { display: inline-block; background: #e65100; color: #fff; font-size: 9px; font-weight: 700; padding: 2px 7px; border-radius: 10px; margin-left: 5px; vertical-align: middle; text-transform: uppercase; }
.h_badge.blue  { background: #1a237e; }
.h_badge.green { background: #2e7d32; }

/* ?? Lead strip ?? */
.h_lead_strip { background: linear-gradient(90deg,#1a237e,#283593 65%,#e65100); border-radius: 10px; padding: 22px 30px; display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin: 26px 0; }
.h_lead_text { flex: 1; min-width: 200px; }
.h_lead_text h4 { font-size: 16px; font-weight: 800; color: #fff; margin: 0 0 4px; }
.h_lead_text p  { font-size: 12px; color: rgba(255,255,255,.82); margin: 0; }
.h_lead_form { display: flex; gap: 8px; flex-wrap: wrap; }
.h_lead_form input  { padding: 9px 13px; border-radius: 6px; border: none; font-size: 13px; width: 185px; outline: none; }
.h_lead_form button { background: #e65100; color: #fff; border: none; border-radius: 6px; padding: 9px 18px; font-size: 12px; font-weight: 700; cursor: pointer; white-space: nowrap; }

/* ?? Pricing plan cards ?? */
.h_plans_wrap { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 6px; padding: 20px; background: #fff; border: 1px solid #d0d4e8; border-top: none; border-radius: 0 0 10px 10px; }
.h_plan { flex: 1; min-width: 200px; background: #f8f9fc; border: 1.5px solid #e0e3f0; border-radius: 12px; padding: 24px 20px 20px; position: relative; display: flex; flex-direction: column; gap: 12px; transition: box-shadow .2s; }
.h_plan:hover { box-shadow: 0 6px 24px rgba(26,35,126,.10); }
.h_plan_featured { background: #fff; border-color: #1a237e; box-shadow: 0 8px 32px rgba(26,35,126,.14); }
.h_plan_ribbon { position: absolute; top: -1px; right: 16px; background: #e65100; color: #fff; font-size: 10px; font-weight: 700; padding: 4px 12px; border-radius: 0 0 8px 8px; text-transform: uppercase; }
.h_plan_name  { font-size: 16px; font-weight: 800; color: #1a237e; }
.h_plan_badge { display: inline-block; background: #e8eaf6; color: #1a237e; font-size: 9px; font-weight: 700; padding: 2px 7px; border-radius: 10px; margin-left: 6px; vertical-align: middle; text-transform: uppercase; }
.h_plan_price { font-size: 26px; font-weight: 800; color: #e65100; line-height: 1; }
.h_plan_price span { font-size: 12px; color: #aaa; font-weight: 400; display: block; margin-top: 2px; }
.h_plan_feats { list-style: none; margin: 0; padding: 0; flex: 1; }
.h_plan_feats li { font-size: 12.5px; color: #555; padding: 5px 0; border-bottom: 1px solid #f0f1f8; display: flex; align-items: flex-start; gap: 7px; }
.h_plan_feats li:last-child { border-bottom: none; }
.h_plan_feats li i { color: #2e7d32; font-size: 13px; margin-top: 2px; flex-shrink: 0; }
.h_plan_btn { display: flex; align-items: center; justify-content: center; gap: 7px; background: linear-gradient(90deg,#1a237e,#283593); color: #fff !important; font-size: 12px; font-weight: 700; padding: 10px 0; border-radius: 8px; border: none; cursor: pointer; transition: background .2s; }
.h_plan_btn:hover { background: linear-gradient(90deg,#e65100,#ff6d00); }

/* ?? Comparison table ?? */
.h_compare_wrap { overflow-x: auto; margin-bottom: 6px; }
.h_compare { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid #d0d4e8; font-size: 12.5px; }
.h_compare th { background: #1a237e; color: #fff; padding: 12px 14px; text-align: center; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.h_compare th:first-child { text-align: left; background: #0d1757; }
.h_compare td { padding: 11px 14px; text-align: center; border-bottom: 1px solid #f0f1f8; color: #444; }
.spec_lbl { text-align: left !important; font-weight: 700; color: #1a237e !important; background: #f8f9fc !important; }
.h_compare tr:last-child td { border-bottom: none; }
.h_compare tr:hover td { background: #f4f5fb; }
.yes { color: #2e7d32; font-size: 15px; }
.no  { color: #aaa;    font-size: 15px; }

/* ?? Process steps ?? */
.h_process_strip { background: #fff; padding: 48px 0 38px; }
.h_proc_step { text-align: center; padding: 0 8px; }
.h_proc_num { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg,#1a237e,#283593); color: #fff; font-size: 16px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; }
.h_proc_num.orange { background: linear-gradient(135deg,#e65100,#ff6d00); }
.h_proc_step h6 { font-size: 12px; font-weight: 700; color: #1a237e; margin: 0 0 4px; }
.h_proc_step p  { font-size: 11px; color: #888; margin: 0; line-height: 1.5; }

/* ?? Sticky CTA button ?? */
.h_sticky_btn { position: fixed; bottom: 86px; right: 18px; background: linear-gradient(135deg,#1a237e,#283593); color: #fff; border-radius: 50px; padding: 10px 17px; font-size: 12px; font-weight: 700; z-index: 1000; box-shadow: 0 5px 20px rgba(26,35,126,.35); display: flex; align-items: center; gap: 7px; text-decoration: none !important; transition: all .25s; }
.h_sticky_btn:hover { background: linear-gradient(135deg,#e65100,#ff6d00); transform: scale(1.05); color: #fff !important; }

/* ?? Responsive ?? */
@media (max-width: 992px) {
    .h_cards_wrap { grid-template-columns: repeat(2,1fr); }
    .h_plan { min-width: 180px; }
}

@media (max-width: 600px) {
    .h_cards_wrap { grid-template-columns: 1fr; }
    .h_stats { flex-direction: column; padding: 16px; }
    .hstat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); padding: 9px 0; }
  .hstat:last-child { border-bottom: none; }
    .h_lead_strip { flex-direction: column; padding: 18px 14px; }
    .h_lead_form input, .h_lead_form button { width: 100%; }
    .h_plan { min-width: 100%; }
    .h_sticky_btn .sq-txt { display: none; }
    .h_sticky_btn { border-radius: 50%; width: 48px; height: 48px; padding: 0; justify-content: center; }
}
