/* ═══════════════════════════════════════════════════════════════════
   iSocialize — Premium SMM Panel CSS
   Design: Deep navy base · Electric indigo accent · Clean whites
   Signature element: Glowing service cards with hover lift
   ═══════════════════════════════════════════════════════════════════ */

/* ── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand:      #6366f1;
  --brand-dark: #4f46e5;
  --brand-lite: #ede9fe;
  --navy:       #0f172a;
  --navy-2:     #1e293b;
  --navy-3:     #334155;
  --slate:      #64748b;
  --muted:      #94a3b8;
  --border:     #e2e8f0;
  --bg:         #f8fafc;
  --white:      #ffffff;
  --success:    #10b981;
  --error:      #ef4444;
  --warn:       #f59e0b;
  --radius:     10px;
  --radius-lg:  14px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.12);
  --font:       -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: #1e293b;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ── Scrollbar ───────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }

/* ── Announcement bar ────────────────────────────────────────── */
.announcement {
  background: linear-gradient(90deg, var(--brand-dark), var(--brand));
  color: #fff;
  text-align: center;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .2px;
}

/* ── Navbar ──────────────────────────────────────────────────── */
.navbar {
  background: var(--navy);
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(255,255,255,.05);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  height: 62px;
}
.nav-logo {
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -.5px;
  white-space: nowrap;
}
.nav-logo span { color: var(--brand); }
.nav-search {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color .2s;
  margin: 0 8px;
}
.nav-search:focus-within { border-color: var(--brand); }
.nav-search-input {
  background: none;
  border: none;
  color: #fff;
  padding: 8px 14px;
  font-size: 13px;
  width: 220px;
  outline: none;
}
.nav-search-input::placeholder { color: var(--muted); }
.nav-search-btn {
  background: none;
  border: none;
  color: var(--muted);
  padding: 8px 12px;
  cursor: pointer;
  font-size: 14px;
  transition: color .15s;
}
.nav-search-btn:hover { color: #fff; }
.nav-links { display: flex; gap: 4px; }
.nav-links a {
  color: var(--muted);
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all .15s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.07); }
.nav-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .15s;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn-primary { background: var(--brand); color: #fff; border-color: var(--brand); }
.btn-primary:hover { background: var(--brand-dark); border-color: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(99,102,241,.3); }
.btn-outline { background: transparent; color: var(--brand); border-color: var(--brand); }
.btn-outline:hover { background: var(--brand-lite); }
.btn-danger { background: var(--error); color: #fff; border-color: var(--error); }
.btn-danger:hover { background: #dc2626; }
.btn-full { width: 100%; }
.btn-lg { padding: 13px 28px; font-size: 15px; }
.btn-sm { padding: 5px 12px; font-size: 12px; }
.btn:disabled { opacity: .6; cursor: not-allowed; transform: none !important; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #0a0f1e 0%, #0f172a 40%, #1a1040 100%);
  padding: 80px 24px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(99,102,241,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(99,102,241,.12);
  color: #a5b4fc;
  border: 1px solid rgba(99,102,241,.25);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 16px;
  margin-bottom: 24px;
  letter-spacing: .3px;
}
.hero h1 {
  color: #fff;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -1px;
}
.hero h1 span {
  background: linear-gradient(135deg, #818cf8, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  color: var(--muted);
  font-size: 17px;
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Trust badges under hero ─────────────────────────────────── */
.trust-strip {
  background: var(--navy-2);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 0;
  display: flex;
  justify-content: center;
}
.trust-strip-inner {
  max-width: 1280px;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 48px;
  border-right: 1px solid rgba(255,255,255,.06);
}
.trust-item:last-child { border-right: none; }
.trust-num { color: #fff; font-size: 26px; font-weight: 800; letter-spacing: -.5px; }
.trust-lbl { color: var(--muted); font-size: 12px; margin-top: 2px; }

/* ── Section wrapper ─────────────────────────────────────────── */
.section { padding: 56px 24px; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { font-size: 28px; font-weight: 700; letter-spacing: -.3px; margin-bottom: 8px; }
.section-header p { color: var(--slate); font-size: 15px; }

/* ── 3-panel service browser ──────────────────────────────────── */
.panel-layout {
  display: grid;
  grid-template-columns: 190px 200px 1fr;
  max-width: 1280px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  min-height: 560px;
}
.platform-tabs { background: var(--navy); padding: 14px 0; }
.platform-tabs-title { color: var(--navy-3); font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; padding: 8px 18px 6px; font-weight: 600; }
.ptab {
  color: var(--muted);
  padding: 11px 18px;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 9px;
  border-left: 3px solid transparent;
  transition: all .15s;
  font-weight: 500;
}
.ptab:hover { color: #fff; background: rgba(255,255,255,.06); }
.ptab.active { color: #fff; background: rgba(99,102,241,.18); border-left-color: var(--brand); }
.subcat-panel { background: #f8fafc; border-right: 1px solid var(--border); padding: 14px 0; overflow-y: auto; }
.subcat-panel-title { color: #9ca3af; font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; padding: 8px 18px 6px; font-weight: 600; }
.subcat-item {
  padding: 10px 18px;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #4b5563;
  border-left: 3px solid transparent;
  transition: all .12s;
  font-weight: 500;
}
.subcat-item:hover { background: #f0f0ff; color: var(--brand); }
.subcat-item.active { background: var(--brand-lite); color: var(--brand); border-left-color: var(--brand); font-weight: 600; }
.subcat-count { background: #e5e7eb; color: #6b7280; border-radius: 20px; font-size: 10px; padding: 1px 8px; font-weight: 600; }
.subcat-item.active .subcat-count { background: #ddd6fe; color: #7c3aed; }
.services-panel { padding: 20px; overflow-y: auto; max-height: 620px; }
.svc-group-title { font-size: 15px; font-weight: 700; color: #111827; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }
/* ── SIGNATURE ELEMENT: glowing service card ─────────────────── */
.service-row {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  margin-bottom: 10px;
  transition: all .2s;
  position: relative;
}
.service-row:hover {
  border-color: #c4b5fd;
  box-shadow: 0 0 0 3px rgba(99,102,241,.08), var(--shadow-md);
  transform: translateY(-1px);
}
.svc-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.svc-name { font-size: 13px; font-weight: 600; color: #111827; line-height: 1.4; }
.svc-meta { font-size: 11px; color: var(--slate); margin-top: 4px; line-height: 1.6; }
.svc-price { font-size: 20px; font-weight: 800; color: var(--brand); white-space: nowrap; flex-shrink: 0; letter-spacing: -.5px; }
.svc-price small { font-size: 11px; font-weight: 400; color: var(--muted); }
.svc-order-inline { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.order-link { flex: 1; min-width: 180px; border: 1px solid var(--border); border-radius: 8px; padding: 8px 12px; font-size: 13px; transition: border-color .15s; }
.order-link:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(99,102,241,.1); }
.order-qty { width: 90px; border: 1px solid var(--border); border-radius: 8px; padding: 8px 12px; font-size: 13px; }
.order-qty:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(99,102,241,.1); }
.order-total { font-size: 14px; font-weight: 700; color: var(--brand); min-width: 60px; }
.btn-order-now { background: var(--brand); color: #fff; border: none; padding: 9px 18px; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; white-space: nowrap; transition: all .15s; }
.btn-order-now:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(99,102,241,.3); }
.btn-cart-sm { background: var(--white); color: var(--brand); border: 1.5px solid var(--brand); padding: 8px 12px; border-radius: 8px; font-size: 12px; font-weight: 600; cursor: pointer; white-space: nowrap; transition: all .15s; }
.btn-cart-sm:hover { background: var(--brand-lite); }

/* ── Badges ──────────────────────────────────────────────────── */
.badge { font-size: 10px; padding: 2px 8px; border-radius: 4px; font-weight: 600; }
.badge-green { background: #d1fae5; color: #065f46; }
.badge-blue  { background: #dbeafe; color: #1e40af; }

/* ── Cart icon in nav ────────────────────────────────────────── */
.cart-icon { color: var(--muted); font-size: 18px; position: relative; padding: 4px 8px; border-radius: 6px; transition: color .15s; }
.cart-icon:hover { color: #fff; }
.cart-badge { background: var(--error); color: #fff; border-radius: 50%; width: 17px; height: 17px; font-size: 9px; display: inline-flex; align-items: center; justify-content: center; position: absolute; top: -2px; right: -2px; font-weight: 700; }

/* ── How it works ────────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; max-width: 900px; margin: 0 auto; }
.step { text-align: center; padding: 28px 20px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); transition: box-shadow .2s; }
.step:hover { box-shadow: var(--shadow-md); }
.step-num { width: 52px; height: 52px; border-radius: 50%; background: var(--brand-lite); color: var(--brand); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 22px; font-weight: 800; }
.step h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--slate); line-height: 1.6; }

/* ── Trust section ───────────────────────────────────────────── */
.trust-section { background: #f1f5f9; }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; max-width: 960px; margin: 0 auto; }
.review-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; position: relative; }
.review-card::before { content: '"'; position: absolute; top: 12px; right: 18px; font-size: 48px; color: var(--brand-lite); font-family: Georgia, serif; line-height: 1; }
.stars { color: #f59e0b; font-size: 13px; margin-bottom: 12px; letter-spacing: 2px; }
.review-card p { font-size: 14px; color: #374151; line-height: 1.7; margin-bottom: 14px; }
.reviewer { font-size: 12px; font-weight: 700; color: #111827; }
.reviewer span { color: var(--slate); font-weight: 400; }

/* ── Why us cards ────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; max-width: 1100px; margin: 0 auto; }
.why-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; transition: all .2s; }
.why-card:hover { border-color: #c4b5fd; box-shadow: var(--shadow-md); transform: translateY(-2px); }
.why-icon { font-size: 30px; margin-bottom: 14px; }
.why-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: 13px; color: var(--slate); line-height: 1.6; }

/* ── Forms ───────────────────────────────────────────────────── */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: #374151; margin-bottom: 6px; }
.form-input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  transition: border-color .15s, box-shadow .15s;
  background: var(--white);
  color: #111827;
  font-family: var(--font);
}
.form-input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(99,102,241,.1); }
select.form-input { cursor: pointer; }

/* ── Auth pages ──────────────────────────────────────────────── */
.auth-section { min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 40px 20px; }
.auth-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; width: 100%; max-width: 420px; box-shadow: var(--shadow-md); }
.auth-card h1 { font-size: 24px; font-weight: 800; margin-bottom: 6px; letter-spacing: -.3px; }
.auth-card > p { color: var(--slate); font-size: 14px; margin-bottom: 28px; }
.auth-footer { text-align: center; font-size: 13px; color: var(--slate); margin-top: 20px; }
.auth-footer a { color: var(--brand); font-weight: 600; }

/* ── Dashboard ───────────────────────────────────────────────── */
.dash-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; }
.dash-top h1 { font-size: 24px; font-weight: 800; letter-spacing: -.3px; }
.dash-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; margin-bottom: 24px; }
.dash-stat { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; text-align: center; }
.dash-stat-val { font-size: 26px; font-weight: 800; color: var(--brand); letter-spacing: -.5px; }
.dash-stat-lbl { font-size: 12px; color: var(--slate); margin-top: 4px; font-weight: 500; }
.dash-tabs { display: flex; gap: 2px; margin-bottom: 20px; border-bottom: 2px solid var(--border); overflow-x: auto; }
.dash-tab { padding: 11px 20px; font-size: 13px; font-weight: 600; color: var(--slate); text-decoration: none; border-bottom: 2px solid transparent; margin-bottom: -2px; white-space: nowrap; transition: all .15s; }
.dash-tab.active { color: var(--brand); border-bottom-color: var(--brand); }
.dash-tab:hover { color: var(--brand); }
.dash-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.dash-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.dash-card-header h2 { font-size: 16px; font-weight: 700; }
.profile-grid { display: flex; flex-direction: column; }
.profile-row { display: flex; align-items: center; gap: 16px; padding: 13px 0; border-bottom: 1px solid #f1f5f9; font-size: 14px; }
.profile-row span { color: var(--muted); min-width: 140px; font-weight: 500; }
.profile-row strong { color: #111827; }
.api-key-row { display: flex; gap: 10px; align-items: center; background: #f8fafc; border: 1px solid var(--border); border-radius: 8px; padding: 12px 16px; margin: 12px 0; }
.api-key-row code { flex: 1; font-size: 12px; word-break: break-all; color: var(--brand); }

/* ── Tables ──────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.data-table th { background: #f8fafc; padding: 10px 14px; text-align: left; font-weight: 700; border-bottom: 2px solid var(--border); color: #374151; white-space: nowrap; }
.data-table td { padding: 11px 14px; border-bottom: 1px solid #f1f5f9; vertical-align: middle; }
.data-table tr:hover td { background: #fafafa; }

/* ── Status badges ───────────────────────────────────────────── */
.status-badge { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; letter-spacing: .2px; }
.status-pending    { background: #fef3c7; color: #92400e; }
.status-processing { background: #dbeafe; color: #1e40af; }
.status-in-progress{ background: #dbeafe; color: #1e40af; }
.status-completed  { background: #d1fae5; color: #065f46; }
.status-partial    { background: var(--brand-lite); color: #5b21b6; }
.status-canceled   { background: #fee2e2; color: #991b1b; }
.status-refunded   { background: #f3f4f6; color: #374151; }
.status-active     { background: #d1fae5; color: #065f46; }
.status-inactive   { background: #fee2e2; color: #991b1b; }

/* ── Alerts ──────────────────────────────────────────────────── */
.alert { padding: 13px 18px; border-radius: 8px; margin-bottom: 16px; font-size: 14px; font-weight: 500; }
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.alert-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ── Cart page ───────────────────────────────────────────────── */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 24px; align-items: start; max-width: 1000px; margin: 0 auto; }
.cart-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 18px; margin-bottom: 10px; display: flex; align-items: center; justify-content: space-between; gap: 16px; transition: box-shadow .15s; }
.cart-item:hover { box-shadow: var(--shadow-sm); }
.ci-name { font-size: 14px; font-weight: 600; color: #111827; }
.ci-meta { font-size: 12px; color: var(--slate); margin-top: 4px; line-height: 1.6; }
.ci-price { font-size: 18px; font-weight: 800; color: var(--brand); white-space: nowrap; }
.btn-remove { background: none; border: none; color: var(--error); font-size: 12px; cursor: pointer; margin-top: 6px; padding: 0; font-weight: 500; }
.btn-remove:hover { text-decoration: underline; }
.summary-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; position: sticky; top: 80px; box-shadow: var(--shadow-sm); }
.summary-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 18px; }
.summary-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid #f1f5f9; font-size: 14px; color: #374151; }
.total-row { font-weight: 800; font-size: 17px; border-bottom: none; color: #111827; padding-top: 14px; }

/* ── Add funds / payment page ────────────────────────────────── */
.fund-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; margin-bottom: 16px; }
.fund-card-title { font-size: 16px; font-weight: 700; margin-bottom: 18px; }
.method-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.method-card { border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 18px; text-align: center; cursor: pointer; transition: all .15s; }
.method-card:hover, .method-card.active { border-color: var(--brand); background: #faf5ff; }
.method-icon { font-size: 30px; margin-bottom: 10px; }
.method-name { font-size: 15px; font-weight: 700; color: #111827; }
.method-sub { font-size: 12px; color: var(--slate); margin-top: 3px; }
.method-badge { display: inline-block; background: #f3f4f6; color: var(--slate); font-size: 10px; padding: 2px 8px; border-radius: 20px; margin-top: 8px; }
.method-card.active .method-badge { background: var(--brand-lite); color: #7c3aed; }
.quick-amounts { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.quick-btn { background: #f8fafc; border: 1.5px solid var(--border); border-radius: 8px; padding: 7px 16px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all .15s; }
.quick-btn:hover { background: var(--brand-lite); border-color: var(--brand); color: var(--brand); }
.balance-card { background: linear-gradient(135deg, var(--brand), var(--brand-dark)); color: #fff; border-radius: var(--radius-lg); padding: 22px 28px; margin-bottom: 24px; display: flex; justify-content: space-between; align-items: center; }
.balance-label { font-size: 13px; opacity: .8; }
.balance-val { font-size: 28px; font-weight: 800; letter-spacing: -.5px; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-lg); margin-bottom: 8px; overflow: hidden; }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 17px 22px; cursor: pointer; font-size: 14px; font-weight: 600; color: #111827; background: var(--white); transition: background .12s; }
.faq-q:hover { background: #fafafa; }
.faq-arrow { color: var(--brand); font-size: 12px; transition: transform .2s; }
.faq-a { display: none; padding: 0 22px 18px; font-size: 14px; color: #4b5563; line-height: 1.75; background: var(--white); }
.faq-a a { color: var(--brand); }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-item.open .faq-a { display: block; }
.faq-section-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--brand); margin: 28px 0 12px; }
.faq-cta { background: var(--brand-lite); border: 1px solid #ddd6fe; border-radius: var(--radius-lg); padding: 36px; text-align: center; }
.faq-cta h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.faq-cta p { color: var(--slate); margin-bottom: 22px; }

/* ── Legal pages ─────────────────────────────────────────────── */
.page-hero { text-align: center; padding: 48px 0 36px; }
.page-hero h1 { font-size: 32px; font-weight: 800; letter-spacing: -.5px; margin-bottom: 8px; }
.page-hero p { color: var(--slate); }
.legal-body h2 { font-size: 17px; font-weight: 700; color: #111827; margin: 32px 0 12px; }
.legal-body p { font-size: 14px; color: #4b5563; line-height: 1.85; margin-bottom: 14px; }
.legal-body ul, .legal-body ol { margin: 8px 0 14px 22px; }
.legal-body li { font-size: 14px; color: #4b5563; line-height: 1.85; margin-bottom: 4px; }
.legal-body a { color: var(--brand); font-weight: 600; }
.policy-highlight { background: #fffbeb; border: 1px solid #fde68a; border-radius: var(--radius); padding: 16px 20px; display: flex; gap: 12px; font-size: 14px; color: #92400e; line-height: 1.7; margin-bottom: 24px; }

/* ── About page ──────────────────────────────────────────────── */
.about-hero { background: linear-gradient(135deg, #0a0f1e 0%, #0f172a 100%); padding: 72px 24px; text-align: center; }
.about-hero-inner { max-width: 700px; margin: 0 auto; }
.about-badge { display: inline-block; background: rgba(99,102,241,.12); color: #a5b4fc; border: 1px solid rgba(99,102,241,.25); border-radius: 20px; font-size: 12px; padding: 5px 16px; margin-bottom: 22px; }
.about-hero h1 { color: #fff; font-size: 36px; font-weight: 800; line-height: 1.25; margin-bottom: 16px; }
.about-hero p { color: var(--muted); font-size: 15px; line-height: 1.75; }
.about-block { display: grid; grid-template-columns: 1fr 280px; gap: 40px; align-items: start; margin-bottom: 56px; }
.about-text h2 { font-size: 22px; font-weight: 700; margin-bottom: 16px; }
.about-text p { color: #4b5563; line-height: 1.85; margin-bottom: 14px; font-size: 15px; }
.about-stats-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.about-stat { text-align: center; }
.about-stat-num { font-size: 26px; font-weight: 800; color: var(--brand); }
.about-stat-lbl { font-size: 12px; color: var(--slate); margin-top: 4px; }
.mission-vision { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 48px; }
.mv-card { background: linear-gradient(135deg, #f5f3ff, #ede9fe); border: 1px solid #ddd6fe; border-radius: var(--radius-lg); padding: 30px; }
.mv-icon { font-size: 32px; margin-bottom: 14px; }
.mv-card h3 { font-size: 17px; font-weight: 700; color: #4c1d95; margin-bottom: 10px; }
.mv-card p { font-size: 14px; color: #5b21b6; line-height: 1.75; }
.offer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 10px; }
.offer-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 18px; font-size: 14px; color: #374151; font-weight: 500; transition: border-color .15s; }
.offer-item:hover { border-color: #c4b5fd; }
.reseller-banner { background: var(--navy); border-radius: var(--radius-lg); padding: 36px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.reseller-text h3 { color: #fff; font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.reseller-text p { color: var(--muted); font-size: 14px; line-height: 1.6; max-width: 560px; }

/* ── Prices page ─────────────────────────────────────────────── */
.prices-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 22px; }
.prices-header h1 { font-size: 26px; font-weight: 800; }
.prices-header p { color: var(--slate); font-size: 14px; margin-top: 4px; }
.search-box-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.prices-table { width: 100%; border-collapse: collapse; font-size: 13px; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.prices-table th { background: #f8fafc; padding: 12px 16px; text-align: left; font-weight: 700; color: #374151; border-bottom: 2px solid var(--border); white-space: nowrap; }
.prices-table td { padding: 11px 16px; border-bottom: 1px solid #f1f5f9; vertical-align: middle; }
.prices-table tr:hover td { background: #fafafa; }
.id-badge { background: #f3f4f6; color: var(--slate); border-radius: 4px; padding: 2px 8px; font-size: 11px; font-family: monospace; font-weight: 600; }
.svc-name-cell { max-width: 320px; font-weight: 600; color: #111827; }
.platform-pill { background: var(--brand-lite); color: #7c3aed; border-radius: 20px; padding: 2px 10px; font-size: 11px; font-weight: 700; }
.rate-cell { font-weight: 800; color: var(--brand); font-size: 15px; }

/* ── Contact page ────────────────────────────────────────────── */
.contact-card { display: flex; align-items: center; gap: 18px; background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 22px; text-decoration: none; transition: border-color .15s, box-shadow .15s; margin-bottom: 12px; }
.contact-card:hover { border-color: var(--brand); box-shadow: var(--shadow-sm); }
.contact-icon { width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.contact-label { font-size: 11px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.contact-value { font-size: 15px; font-weight: 700; color: #111827; margin-top: 2px; }
.contact-note { font-size: 12px; color: var(--slate); margin-top: 2px; }
.contact-arrow { color: var(--brand); font-size: 20px; margin-left: auto; }

/* ── Footer ──────────────────────────────────────────────────── */
.footer { background: var(--navy); padding: 56px 24px 28px; margin-top: 72px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 36px; margin-bottom: 40px; }
.footer-logo { color: #fff; font-size: 20px; font-weight: 800; margin-bottom: 12px; letter-spacing: -.3px; }
.footer-col p, .footer-col a { color: var(--muted); font-size: 13px; line-height: 2.2; display: block; text-decoration: none; transition: color .12s; }
.footer-col a:hover { color: #e2e8f0; }
.footer-col h4 { color: #e2e8f0; font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px; font-weight: 700; }
.footer-bottom { text-align: center; color: #475569; font-size: 12px; border-top: 1px solid rgba(255,255,255,.06); padding-top: 22px; line-height: 2; }
.footer-bottom a { color: var(--muted); }

/* ── WhatsApp float ──────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  padding: 13px 22px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 999;
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.5); }

/* ── Empty state ─────────────────────────────────────────────── */
.empty-state { text-align: center; padding: 72px 20px; }
.empty-icon { font-size: 52px; margin-bottom: 18px; }
.empty-state h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.empty-state p { color: var(--slate); margin-bottom: 28px; font-size: 15px; }
.page-title { font-size: 26px; font-weight: 800; margin-bottom: 28px; letter-spacing: -.3px; }

/* ── SEO structured markup helper ───────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── Mobile ──────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .panel-layout { grid-template-columns: 1fr; }
  .platform-tabs { display: flex; overflow-x: auto; padding: 8px; background: var(--navy); }
  .ptab { white-space: nowrap; border-left: none; border-bottom: 3px solid transparent; padding: 9px 14px; flex-shrink: 0; }
  .ptab.active { border-bottom-color: var(--brand); border-left: none; background: rgba(99,102,241,.15); }
  .subcat-panel { display: flex; overflow-x: auto; border-right: none; border-bottom: 1px solid var(--border); padding: 8px; }
  .subcat-item { white-space: nowrap; border-left: none; flex-shrink: 0; }
  .services-panel { max-height: none; }
  .cart-layout { grid-template-columns: 1fr; }
  .about-block { grid-template-columns: 1fr; }
  .mission-vision { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero h1 { font-size: 30px; }
  .trust-item { padding: 18px 24px; }
  .nav-links { display: none; }
  .nav-search-input { width: 140px; }
  .svc-order-inline { flex-direction: column; align-items: stretch; }
  .order-link, .order-qty { width: 100%; }
  .btn-order-now, .btn-cart-sm { width: 100%; justify-content: center; }
}

/* ── Trust bar (matches header.php HTML) ─────────────────────── */
.trust-bar {
  background: var(--navy-2);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.trust-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 48px;
  border-right: 1px solid rgba(255,255,255,.06);
}
.trust-item:last-child { border-right: none; }
.trust-number { color: #fff; font-size: 22px; font-weight: 800; letter-spacing: -.5px; }
.trust-text { color: var(--muted); font-size: 12px; margin-top: 2px; font-weight: 500; }

/* ── Remove excess section padding causing empty spaces ─────── */
.section { padding: 40px 24px; }
.services-section { padding: 0; }
.how-section { background: #fff; }
.trust-section { background: #f8fafc; }

/* ── Fix hero bottom gap ─────────────────────────────────────── */
.hero { padding: 64px 24px 56px; }
.hero + .trust-bar { margin-top: 0; }
.trust-bar + section { margin-top: 0; }

/* ── Panel compact on scroll ─────────────────────────────────── */
#services { padding: 32px 16px; background: #f1f5f9; }

/* ═══════════════════════════════════════════════════════════
   MOBILE NAV MENU (hamburger) - append to assets/css/style.css
   ═══════════════════════════════════════════════════════════ */
.mobile-menu-btn { display: none; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; padding: 4px 8px; }
.mobile-nav-links { display: none; }

@media (max-width: 640px) {
  .mobile-menu-btn { display: block; }
  .nav-links { display: none !important; }

  .mobile-nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: #0f172a;
    padding: 16px;
    gap: 4px;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
  }
  .mobile-nav-links a {
    color: #cbd5e1;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
  }
  .mobile-nav-links a:hover, .mobile-nav-links a:active { background: rgba(99,102,241,.15); color: #fff; }

  /* Nav actions area - shrink and wrap gracefully */
  .nav-actions { gap: 6px !important; }
  .nav-actions .btn-outline, .nav-actions .btn-primary { font-size: 11px !important; padding: 6px 10px !important; }
  .nav-search-input { display: none; }
}

@media (max-width: 400px) {
  .nav-actions a[href="/add-funds"] { display: none; } /* hide "Add funds" text button on very small screens, keep it accessible via dashboard */
}


