:root{
  --bg:#ffffff;
  --text:#111827;
  --muted:#6b7280;
  --border:#e5e7eb;
  --brand:#0b63ce;
  --brand2:#094ea3;
  --soft:#f3f4f6;
  --shadow: 0 10px 30px rgba(0,0,0,.06);
  --orange:#ff6a2b;
}

*{ box-sizing:border-box; margin:0; padding:0; }
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height:1.5;
}
a{ text-decoration:none; color:inherit; }
.container{ width:min(1180px, 92%); margin:0 auto; }

/* Topbar */
.topbar{
  background:#0b0f19;
  color:#cbd5e1;
  font-size:13px;
}
.topbar-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 0;
}
.topbar a{ color:#cbd5e1; }
.topbar a:hover{ color:#fff; }
.dot{ margin:0 10px; opacity:.7; }

/* Header */
.header{
  position:sticky;
  top:0;
  background:rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
  z-index:50;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:20px;
}
.brand{ display:flex; align-items:center; gap:10px; }
.brand-logo{
  width:36px; height:36px;
  border-radius:999px;
  display:grid; place-items:center;
  background:var(--brand);
  color:#fff;
  font-weight:900;
}
.brand-name{ font-weight:900; letter-spacing:.2px; }

.nav{ display:flex; gap:18px; }
.nav a{
  font-size:14px;
  color:#111827;
  padding:8px 10px;
  border-radius:10px;
}
.nav a:hover{ background:var(--soft); }

.header-actions{ display:flex; gap:10px; }

.btn{
  border:1px solid var(--border);
  padding:10px 14px;
  border-radius:12px;
  background:#fff;
  cursor:pointer;
  font-weight:700;
  font-size:14px;
}
.btn-ghost:hover{ background:var(--soft); }
.btn-primary{
  background:var(--brand);
  color:#fff;
  border:1px solid var(--brand);
}
.btn-primary:hover{ background:var(--brand2); }

/* Submenu */
.header-submenu{
  background:#f8fafc;
  border-top: 1px solid var(--border);
}
.header-submenu-inner{
  display:flex;
  gap:10px;
  padding:10px 0;
  overflow-x:auto;
}
.submenu-link{
  font-size:14px;
  font-weight:800;
  padding:10px 12px;
  border-radius:12px;
  white-space:nowrap;
}
.submenu-link:hover{ background:#fff; border:1px solid var(--border); }
.submenu-link.active{
  background:var(--brand);
  color:#fff;
}

/* Hero */
.hero{
  background: linear-gradient(180deg, #eef6ff 0%, #ffffff 60%);
  padding:56px 0 30px;
}
.hero-inner{ text-align:center; }
.hero h1{ font-size:38px; letter-spacing:-.5px; }
.hero-sub{ margin-top:10px; color:var(--muted); }

.search{
  margin:22px auto 16px;
  width:min(780px, 100%);
  display:flex;
  gap:10px;
  padding:10px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  box-shadow: var(--shadow);
}
.search input{
  width:100%;
  border:none;
  outline:none;
  font-size:15px;
  padding:10px 12px;
}

.quick-links{
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
}
.pill{
  border:1px solid var(--border);
  background:#fff;
  padding:10px 12px;
  border-radius:999px;
  font-size:13px;
}
.pill:hover{ background:var(--soft); }

/* Sections */
.section{ padding:42px 0; }
.section-muted{
  background: #fafafa;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.section-title{ font-size:22px; margin-bottom:18px; }

/* Grid */
.grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:16px;
}
.grid-2{
  grid-template-columns: repeat(2, 1fr);
}
.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
  box-shadow: 0 8px 25px rgba(0,0,0,.04);
  transition:.15s ease;
}
.card:hover{
  transform: translateY(-2px);
  border-color:#c7dbff;
  box-shadow: 0 12px 36px rgba(0,0,0,.08);
}
.icon{ font-size:26px; }
.card-title{ font-weight:900; margin-top:10px; }
.card-sub{ color:var(--muted); margin-top:6px; font-size:14px; }

.info-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:20px;
}
.info-card h3{ font-size:18px; }
.info-card p{ color:var(--muted); margin-top:8px; }
.link{
  display:inline-block;
  margin-top:12px;
  color:var(--brand);
  font-weight:800;
}
.link:hover{ text-decoration:underline; }

/* Footer */
.footer{
  background:#0b0f19;
  color:#e2e8f0;
  padding:34px 0 18px;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:30px;
}
.footer-title{ font-weight:900; font-size:18px; }
.footer-sub{ color:#94a3b8; margin-top:8px; max-width:420px; }
.footer-links{
  display:flex;
  gap:40px;
  flex-wrap:wrap;
}
.footer-head{ font-weight:900; margin-bottom:10px; }
.footer-links a{
  display:block;
  color:#cbd5e1;
  font-size:14px;
  margin:6px 0;
}
.footer-links a:hover{ color:#fff; }

.copyright{
  border-top:1px solid rgba(255,255,255,.12);
  margin-top:22px;
  padding-top:14px;
  color:#94a3b8;
  font-size:13px;
}

/* Responsive */
@media (max-width: 900px){
  .nav{ display:none; }
  .grid{ grid-template-columns: repeat(2, 1fr); }
  .grid-2{ grid-template-columns: 1fr; }
  .footer-inner{ flex-direction:column; }
}
@media (max-width: 520px){
  .grid{ grid-template-columns: 1fr; }
  .hero h1{ font-size:30px; }
  .search{ flex-direction:column; }
}

/* ==========================================
   SUPPORT POPUP - FRESH CLEAN
   ========================================== */

.supportpop-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  padding: 18px;
}

.supportpop-box{
  width: min(820px, 100%);
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 25px 90px rgba(0,0,0,.35);
  position: relative;
}

.supportpop-close{
  position: absolute;
  right: 12px;
  top: 12px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #ffffff;
  cursor: pointer;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  display: grid;
  place-items: center;
  z-index: 20;
}
.supportpop-close:hover{ background: var(--soft); }

.supportpop-header{
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.supportpop-header-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
}

.supportpop-logo{
  max-height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
}

.supportpop-badge{
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #0f172a;
  background: #f8fafc;
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.supportpop-menu{
  display: flex;
  gap: 8px;
  padding: 10px 14px;
  border-top: 1px solid var(--border);
  background: #f8fafc;
  overflow-x: auto;
}

.supportpop-menu-link{
  font-size: 14px;
  font-weight: 800;
  color: #111827;
  padding: 10px 12px;
  border-radius: 12px;
  white-space: nowrap;
  text-decoration: none;
  border: 1px solid transparent;
  transition: .15s ease;
}

.supportpop-menu-link:hover{
  background: #ffffff;
  border: 1px solid var(--border);
}

.supportpop-menu-link.active{
  background: var(--brand);
  color: #ffffff;
}

.supportpop-body{
  background: #f8fafc;
  padding: 34px 26px 30px;
  text-align: center;
}

.supportpop-title{
  font-size: clamp(24px, 3vw, 44px);
  font-weight: 900;
  line-height: 1.12;
  margin: 0 0 18px;
  color: #0f172a;
}

.supportpop-line{
  height: 2px;
  width: min(600px, 94%);
  background: var(--orange);
  margin: 18px auto;
}

.supportpop-subtitle{
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #111827;
}

.supportpop-icon{
  font-size: 40px;
  margin: 18px 0 14px;
}

.supportpop-callbtn{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: min(560px, 100%);
  padding: 18px 18px;
  border-radius: 16px;
  background: var(--orange);
  color: #ffffff;
  font-size: clamp(22px, 3vw, 44px);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 55px rgba(255,106,43,.28);
  transition: .15s ease;
}
.supportpop-callbtn:hover{
  transform: translateY(-2px);
  filter: brightness(.96);
}

.supportpop-or{
  margin: 18px 0 12px;
  font-weight: 900;
  color: #374151;
}

.supportpop-secondarybtn{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: min(560px, 100%);
  padding: 16px 18px;
  border-radius: 16px;
  border: 2px solid var(--orange);
  background: #ffffff;
  font-weight: 900;
  color: #111827;
  text-decoration: none;
  font-size: clamp(16px, 2vw, 24px);
  transition: .15s ease;
}
.supportpop-secondarybtn:hover{
  transform: translateY(-2px);
  background: #fff7f2;
}

.supportpop-note{
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
}

.supportpop-sections{
  margin-top: 26px;
  display: grid;
  gap: 12px;
  text-align: left;
  width: min(560px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.supportpop-section{
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
}

.supportpop-section-title{
  font-weight: 900;
  color: #111827;
  margin-bottom: 6px;
}

.supportpop-section-text{
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 520px){
  .supportpop-body{ padding: 24px 16px 22px; }
  .supportpop-badge{ display:none; }
}

/* Website banner (non-sticky) */
.site-banner{
  width: 100%;
  background: #f8fafc;
  border-bottom: 1px solid #e5e7eb;
}

.site-banner img{
  width: 100%;
  height: 340px;      /* you can change */
  object-fit: cover;
  display: block;
}
