/* HitPro Topup - White/Blue FinTech UI
   Loaded globally, WPBakery friendly. */

:root{
  --hp-bg: #F6F9FF;
  --hp-surface: #FFFFFF;
  --hp-text: #0B1220;
  --hp-muted: rgba(11,18,32,.68);
  --hp-border: rgba(11,18,32,.10);
  --hp-shadow: 0 18px 40px rgba(11,18,32,.08);
  --hp-shadow-sm: 0 10px 25px rgba(11,18,32,.06);
  --hp-primary: #1E66FF;
  --hp-accent: #00B7FF;
  --hp-radius: 16px;
  --hp-container: 1200px;
  --hp-font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{ box-sizing:border-box; }
html, body{ height:100%; }
body{
  margin:0;
  font-family: var(--hp-font);
  color: var(--hp-text);
  background: radial-gradient(1200px 600px at 10% 0%, rgba(30,102,255,.10), transparent 60%),
              radial-gradient(900px 500px at 90% 10%, rgba(0,183,255,.10), transparent 55%),
              var(--hp-bg);
  line-height:1.55;
}

a{ color: var(--hp-primary); text-decoration:none; }
a:hover{ text-decoration:underline; }
img{ max-width:100%; height:auto; }

.hp-container{
  width: min(var(--hp-container), calc(100% - 32px));
  margin: 0 auto;
}

.hp-shell{ min-height: calc(100vh - 240px); }

.hp-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hp-border);
}

.hp-header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 14px;
}

.hp-brand__text{
  font-weight: 800;
  letter-spacing: .2px;
  color: var(--hp-text);
  font-size: 18px;
}

.custom-logo{ max-height: 40px; width:auto; }

.hp-menu__list{
  list-style:none;
  display:flex;
  gap: 18px;
  padding:0;
  margin:0;
  align-items:center;
}
.hp-menu__list a{
  color: var(--hp-text);
  font-weight: 600;
  opacity: .88;
}
.hp-menu__list a:hover{ opacity: 1; text-decoration:none; }

.hp-header__actions{
  display:flex;
  align-items:center;
  gap: 10px;
}

.hp-burger{
  display:none;
  border: 1px solid var(--hp-border);
  background: var(--hp-surface);
  border-radius: 12px;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor:pointer;
  box-shadow: var(--hp-shadow-sm);
}
.hp-burger span{
  display:block;
  height:2px;
  background: var(--hp-text);
  margin: 5px 0;
  border-radius: 999px;
  opacity: .85;
}

.hp-mobile{
  display:none;
  border-top: 1px solid var(--hp-border);
  background: rgba(255,255,255,.92);
}
.hp-mobile.is-open{ display:block; }
.hp-mobile__list{
  list-style:none;
  padding: 14px 0 0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.hp-mobile__list a{
  display:block;
  padding: 10px 12px;
  border: 1px solid var(--hp-border);
  border-radius: 12px;
  color: var(--hp-text);
  font-weight: 650;
}
.hp-mobile__cta{ padding: 14px 0 18px; }

.hp-main{ padding: 26px 0 56px; }
.hp-section{ padding: 26px 0; }

/* Typography */
.hp-h1{ font-size: clamp(28px, 3vw, 42px); line-height:1.1; margin: 0 0 10px; }
.hp-h2{ font-size: 22px; margin: 0 0 10px; }
.hp-h3{ font-size: 18px; margin: 0 0 8px; }
.hp-lead{ font-size: 16px; color: var(--hp-muted); margin: 0; max-width: 66ch; }
.hp-muted{ color: var(--hp-muted); }
.hp-smallcaps{ font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--hp-muted); font-weight: 750; }

.hp-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(30,102,255,.18);
  background: rgba(30,102,255,.08);
  color: var(--hp-primary);
  font-weight: 750;
  font-size: 12px;
  margin-bottom: 10px;
}

/* Layout helpers for WPBakery */
.hp-grid{ display:grid; gap: 16px; }
.hp-grid--2{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
.hp-grid--gap-lg{ gap: 22px; }
.hp-stack{ display:flex; flex-direction:column; gap: 16px; }

/* Components */
.hp-card{
  background: var(--hp-surface);
  border: 1px solid var(--hp-border);
  border-radius: var(--hp-radius);
  box-shadow: var(--hp-shadow);
  overflow:hidden;
}
.hp-card__body{ padding: 18px; }
.hp-card--gradient{
  background: linear-gradient(135deg, rgba(30,102,255,.10), rgba(0,183,255,.10));
}

.hp-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: calc(var(--hp-radius) - 6px);
  border: 1px solid transparent;
  font-weight: 750;
  cursor:pointer;
  text-decoration:none !important;
  transition: transform .08s ease, box-shadow .12s ease, opacity .12s ease;
  user-select:none;
}
.hp-btn:active{ transform: translateY(1px); }
.hp-btn--primary{
  background: linear-gradient(135deg, var(--hp-primary), var(--hp-accent));
  color: #fff;
  box-shadow: 0 14px 28px rgba(30,102,255,.20);
}
.hp-btn--ghost{
  background: rgba(255,255,255,.9);
  color: var(--hp-text);
  border-color: var(--hp-border);
  box-shadow: var(--hp-shadow-sm);
}
.hp-btn--block{ width:100%; }

.hp-badges{ display:flex; gap: 8px; flex-wrap:wrap; margin-top: 10px; }
.hp-badge{
  font-size: 12px;
  font-weight: 750;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--hp-border);
  background: rgba(255,255,255,.9);
}

.hp-alert{
  padding: 12px 14px;
  border-radius: var(--hp-radius);
  border: 1px solid var(--hp-border);
  background: rgba(255,255,255,.85);
}
.hp-alert--warn{ border-color: rgba(255, 179, 0, .35); }
.hp-alert--info{ border-color: rgba(30,102,255,.25); }

.hp-list{ margin: 10px 0 0; padding-left: 18px; color: var(--hp-muted); }
.hp-kv{
  display:grid;
  grid-template-columns: 140px 1fr;
  gap: 10px 14px;
}
.hp-kv__k{ color: var(--hp-muted); font-weight: 750; }
.hp-kv__v{ color: var(--hp-text); font-weight: 650; }

/* Dashboard */
.hp-dashboard{
  display:grid;
  grid-template-columns: 320px 1fr;
  gap: 18px;
  align-items:start;
}
.hp-dashboard__sidebar{
  background: rgba(255,255,255,.92);
  border: 1px solid var(--hp-border);
  border-radius: var(--hp-radius);
  box-shadow: var(--hp-shadow-sm);
  padding: 14px;
  position: sticky;
  top: 92px;
}
.hp-dashboard__profile{
  display:flex;
  gap: 12px;
  align-items:center;
  padding: 8px 6px 14px;
  border-bottom: 1px solid var(--hp-border);
  margin-bottom: 12px;
}
.hp-avatar{
  width: 42px; height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(30,102,255,.15), rgba(0,183,255,.15));
  border: 1px solid rgba(30,102,255,.18);
  display:flex; align-items:center; justify-content:center;
  font-weight: 900;
  color: var(--hp-primary);
}
.hp-profile__name{ font-weight: 850; }
.hp-profile__email{ font-size: 12px; color: var(--hp-muted); }

.hp-nav{ display:flex; flex-direction:column; gap: 8px; }
.hp-nav__item{
  display:block;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--hp-border);
  background: rgba(255,255,255,.9);
  color: var(--hp-text);
  font-weight: 750;
  text-decoration:none !important;
}
.hp-nav__item.is-active{
  border-color: rgba(30,102,255,.35);
  background: rgba(30,102,255,.08);
  color: var(--hp-primary);
}

.hp-dashboard__content{
  background: rgba(255,255,255,.9);
  border: 1px solid var(--hp-border);
  border-radius: var(--hp-radius);
  box-shadow: var(--hp-shadow-sm);
  padding: 18px;
}

/* Footer */
.hp-footer{
  border-top: 1px solid var(--hp-border);
  background: rgba(255,255,255,.85);
}
.hp-footer__grid{
  padding: 26px 0;
  display:grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 18px;
}
.hp-footer__brand{ font-weight: 900; font-size: 16px; margin-bottom: 6px; }
.hp-footer__title{ font-weight: 850; margin-bottom: 10px; }
.hp-footer__list{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap: 8px; }
.hp-footer__list a{ color: var(--hp-text); opacity:.84; font-weight:650; }
.hp-footer__list a:hover{ opacity:1; text-decoration:none; }
.hp-footer__bottom{
  display:flex;
  justify-content:space-between;
  gap: 10px;
  padding: 14px 0 18px;
  border-top: 1px solid var(--hp-border);
}

/* WPBakery: improve default spacing inside content */
.hp-content .vc_row{ margin-left: 0 !important; margin-right: 0 !important; }
.hp-content .wpb_row, .hp-content .wpb_content_element{ margin-bottom: 0; }

/* Responsive */
@media (max-width: 980px){
  .hp-menu{ display:none; }
  .hp-burger{ display:inline-block; }
  .hp-dashboard{ grid-template-columns: 1fr; }
  .hp-dashboard__sidebar{ position: relative; top:auto; }
  .hp-grid--2{ grid-template-columns: 1fr; }
  .hp-footer__grid{ grid-template-columns: 1fr; }
}


/* v1.5 Header Builder */
.hp-topbar{background:rgba(30,102,255,.06);border-bottom:1px solid rgba(11,18,32,.08);font-weight:700;font-size:13px;}
.hp-topbar__inner{padding:8px 0;display:flex;justify-content:center;}
.hp-noticebar{background:rgba(0,183,255,.08);border-bottom:1px solid rgba(11,18,32,.08);font-weight:700;font-size:13px;}
.hp-noticebar__inner{padding:8px 0;display:flex;justify-content:center;}
.hp-header--sticky{position:sticky;top:0;z-index:999;}

/* Ultra pro polish for HitPro TopUp Core form */
.hptc-ui{max-width:1100px;margin:0 auto;padding:40px 15px;}
.hptc-ui__card{border-radius:24px;box-shadow:0 18px 60px rgba(11,18,32,.12);}
.hptc-ui__kicker{letter-spacing:.08em;text-transform:uppercase;}
.hptc-ui__title{letter-spacing:-.02em;}
.hptc-ui__sub{opacity:.82;}
.hptc-ui__grid{gap:18px;}
.hptc-field__input,.hptc-field__select{height:52px;border-radius:14px;}
.hptc-pills{gap:10px;}
.hptc-pill{border-radius:999px;}
.hptc-ui__cta{border-radius:14px;min-height:52px;box-shadow:0 12px 30px rgba(30,102,255,.22);}
.hptc-ui__meta{opacity:.7;}
