/* BigoJordan.com — design system. Layered on top of Bootstrap 5 RTL. */

@font-face {
  font-family: 'Cairo Display';
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  src: url(../fonts/cairo800-arabic.woff2) format('woff2');
  unicode-range: U+0600-06FF, U+0750-077F, U+FB50-FDFF, U+FE70-FEFC, U+200C-200E;
}
@font-face {
  font-family: 'Cairo Display';
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  src: url(../fonts/cairo800-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+2000-206F;
}
@font-face {
  font-family: 'Tajawal Text';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url(../fonts/tajawal400-arabic.woff2) format('woff2');
  unicode-range: U+0600-06FF, U+0750-077F, U+FB50-FDFF, U+FE70-FEFC, U+200C-200E;
}
@font-face {
  font-family: 'Tajawal Text';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url(../fonts/tajawal400-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+2000-206F;
}
@font-face {
  font-family: 'Tajawal Text';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url(../fonts/tajawal700-arabic.woff2) format('woff2');
  unicode-range: U+0600-06FF, U+0750-077F, U+FB50-FDFF, U+FE70-FEFC, U+200C-200E;
}
@font-face {
  font-family: 'Tajawal Text';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url(../fonts/tajawal700-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+2000-206F;
}

:root {
  --paper: #f4f6fb;
  --paper-2: #eaeef7;
  --ink: #0b1b33;
  --ink-dim: #5b6b85;
  --ink-faint: #93a1ba;
  --navy: #0b1730;
  --navy-2: #14295a;
  --navy-3: #1c3670;
  --teal: #14b8a2;
  --teal-deep: #0c8a7a;
  --teal-soft: #e4f7f3;
  --gold: #f0a93b;
  --gold-deep: #c9821e;
  --card: #ffffff;
  --border: #e2e7f2;
  --shadow: 0 20px 45px -25px rgba(11, 27, 51, 0.35);
  --shadow-lg: 0 30px 70px -30px rgba(11, 23, 51, 0.55);
  --radius: 20px;
  --danger: #e5484d;
  --good: #1a9c6b;
  --bs-body-font-family: 'Tajawal Text', 'Segoe UI', Tahoma, sans-serif;
}

:root[data-theme="dark"] {
  --paper: #0a1424;
  --paper-2: #0d1830;
  --ink: #eef2fb;
  --ink-dim: #9fb0cc;
  --ink-faint: #64769c;
  --navy: #060d1e;
  --navy-2: #0f1e40;
  --navy-3: #16305e;
  --teal-soft: rgba(20, 184, 162, 0.14);
  --card: #101e3a;
  --border: #1e2c4d;
  --shadow: 0 20px 45px -25px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 30px 80px -30px rgba(0, 0, 0, 0.75);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --paper: #0a1424;
    --paper-2: #0d1830;
    --ink: #eef2fb;
    --ink-dim: #9fb0cc;
    --ink-faint: #64769c;
    --navy: #060d1e;
    --navy-2: #0f1e40;
    --navy-3: #16305e;
    --teal-soft: rgba(20, 184, 162, 0.14);
    --card: #101e3a;
    --border: #1e2c4d;
    --shadow: 0 20px 45px -25px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 30px 80px -30px rgba(0, 0, 0, 0.75);
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Tajawal Text', 'Segoe UI', Tahoma, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, .display {
  font-family: 'Cairo Display', 'Tajawal Text', sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-wrap: balance;
  margin: 0;
  color: var(--ink);
}
:root[data-theme="dark"] h1, :root[data-theme="dark"] h2, :root[data-theme="dark"] h3 { color: #f5f8ff; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) h1,
  :root:not([data-theme="light"]) h2,
  :root:not([data-theme="light"]) h3 { color: #f5f8ff; }
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img, svg { display: block; max-width: 100%; }
.tnum { font-variant-numeric: tabular-nums; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 640px; margin: 0 auto; padding: 0 24px; }

/* ---------- header ---------- */
header.site {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--navy) 92%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 22px 0; }
.brand { display: flex; align-items: center; gap: 12px; font-family: 'Cairo Display', sans-serif; font-weight: 800; font-size: 1.32rem; color: #fff; }
.brand .mark {
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(155deg, var(--teal), #0c8f80 70%);
  display: grid; place-items: center;
  box-shadow: 0 8px 18px -6px rgba(20,184,162,0.65);
  flex: none;
}
.brand .mark svg { width: 22px; height: 22px; }
.brand small { display: block; font-family: 'Tajawal Text', sans-serif; font-weight: 400; font-size: 0.68rem; color: var(--gold); letter-spacing: 0.04em; }
nav.links { display: flex; gap: 38px; font-size: 0.95rem; color: rgba(255,255,255,0.78); }
nav.links a { position: relative; padding: 8px 0; transition: color 0.2s; }
nav.links a:hover, nav.links a.active { color: #fff; }
nav.links a::after { content: ""; position: absolute; right: 0; bottom: 0; height: 2px; width: 0; background: var(--teal); transition: width 0.25s ease; }
nav.links a:hover::after, nav.links a.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 16px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; border-radius: 12px; padding: 11px 22px;
  font-weight: 700; font-size: 0.95rem; white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn:active { transform: translateY(1px); }
.btn-teal { background: linear-gradient(180deg, #17c9b1, var(--teal-deep)); color: #fff; box-shadow: 0 12px 24px -10px rgba(20,184,162,0.75); }
.btn-teal:hover { box-shadow: 0 16px 30px -10px rgba(20,184,162,0.9); transform: translateY(-1px); color: #fff; }
.btn-ghost-light { background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.22); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.16); color: #fff; }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--teal); color: var(--teal-deep); }
.btn-lg { padding: 15px 30px; font-size: 1.02rem; border-radius: 14px; }
.btn-block { width: 100%; }
.btn:disabled, .btn.disabled { opacity: 0.55; cursor: not-allowed; pointer-events: none; }

.burger { display: none; width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); align-items: center; justify-content: center; }
.burger svg { width: 18px; height: 18px; stroke: #fff; }

/* off-canvas sidebar menu (mobile) */
.sidebar-overlay {
  position: fixed; inset: 0; background: rgba(6,13,30,0.6);
  opacity: 0; pointer-events: none; transition: opacity 0.25s ease; z-index: 90;
}
.sidebar-overlay.open { opacity: 1; pointer-events: auto; }
.sidebar-nav {
  position: fixed; top: 0; left: 0; height: 100vh; height: 100dvh; width: min(300px, 82vw);
  background: var(--navy); z-index: 95; transform: translateX(-100%);
  transition: transform 0.3s ease; display: flex; flex-direction: column;
  box-shadow: 20px 0 60px rgba(0,0,0,0.4);
}
.sidebar-nav.open { transform: translateX(0); }
.sidebar-nav-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px; border-bottom: 1px solid rgba(255,255,255,0.08); flex: none;
}
.sidebar-close {
  width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,0.08);
  border: none; display: grid; place-items: center;
}
.sidebar-close svg { width: 16px; height: 16px; stroke: #fff; }
.sidebar-links { display: flex; flex-direction: column; padding: 10px 12px 24px; overflow-y: auto; gap: 2px; }
.sidebar-links a {
  color: rgba(255,255,255,0.82); padding: 13px 12px; border-radius: 10px;
  font-size: 0.98rem; font-weight: 700; transition: background 0.15s ease, color 0.15s ease;
}
.sidebar-links a:hover, .sidebar-links a.active { background: rgba(255,255,255,0.08); color: #fff; }
.sidebar-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 10px 4px; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(60% 90% at 78% -10%, rgba(20,184,162,0.35), transparent 60%),
    radial-gradient(50% 60% at 8% 110%, rgba(240,169,59,0.18), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 62%, var(--navy-3) 100%);
  overflow: hidden;
  padding: 76px 0 100px;
}
.hero canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.55; pointer-events: none; }
.hero .wrap { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-single { max-width: 720px; margin: 0 auto; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(20,184,162,0.14); border: 1px solid rgba(20,184,162,0.4); color: #6bead9; font-size: 0.82rem; font-weight: 700; padding: 7px 14px; border-radius: 100px; margin-bottom: 22px; }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: #35e0c2; box-shadow: 0 0 0 4px rgba(53,224,194,0.25); }
.hero h1 { color: #fff; font-size: clamp(2.1rem, 4vw, 3.15rem); line-height: 1.22; }
.hero h1 em { font-style: normal; color: var(--teal); }
.hero p.lead { color: rgba(255,255,255,0.72); font-size: 1.08rem; max-width: 46ch; margin-top: 20px; }
.hero-cta { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-chips { display: flex; gap: 22px; margin-top: 40px; flex-wrap: wrap; }
.hero-chip { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,0.85); font-size: 0.88rem; font-weight: 700; }
.hero-chip .ic { width: 30px; height: 30px; border-radius: 9px; background: rgba(255,255,255,0.1); display: grid; place-items: center; flex: none; }
.hero-chip .ic svg { width: 15px; height: 15px; stroke: var(--teal); }

/* small page hero for inner pages */
.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 62%, var(--navy-3) 100%);
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(55% 90% at 85% 0%, rgba(20,184,162,0.3), transparent 60%);
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.page-hero p { color: rgba(255,255,255,0.72); margin-top: 10px; max-width: 60ch; }
.breadcrumb-min { display: flex; gap: 8px; align-items: center; color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-bottom: 14px; }
.breadcrumb-min a:hover { color: #fff; }

/* device card */
.device { position: relative; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: 26px; padding: 26px; backdrop-filter: blur(6px); box-shadow: var(--shadow-lg); }
.device-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.device-top .who { display: flex; align-items: center; gap: 10px; }
.device-top .avatar { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(155deg,#ffd27a,var(--gold)); }
.device-top .who span { display: block; color: #fff; font-weight: 700; font-size: 0.86rem; }
.device-top .who small { color: rgba(255,255,255,0.5); font-size: 0.72rem; }
.live-pill { display: flex; align-items: center; gap: 6px; background: rgba(20,184,162,0.18); color: #6bead9; font-size: 0.72rem; font-weight: 700; padding: 5px 10px; border-radius: 100px; }
.live-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: #35e0c2; animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.35} }
.counter-panel { background: linear-gradient(165deg, rgba(255,255,255,0.09), rgba(255,255,255,0.02)); border: 1px solid rgba(255,255,255,0.12); border-radius: 18px; padding: 26px 22px; text-align: center; margin-bottom: 18px; }
.counter-panel .lbl { color: rgba(255,255,255,0.55); font-size: 0.8rem; font-weight: 700; }
.counter-panel .num { font-family: 'Cairo Display', sans-serif; color: #fff; font-size: clamp(2.4rem, 5vw, 3rem); margin: 8px 0 2px; }
.counter-panel .num .unit { color: var(--gold); font-size: 0.42em; margin-inline-start: 6px; }
.counter-panel .sub { color: rgba(255,255,255,0.45); font-size: 0.78rem; }
.device-row { display: flex; justify-content: space-between; gap: 12px; }
.device-stat { flex: 1; background: rgba(255,255,255,0.05); border-radius: 12px; padding: 12px; text-align: center; }
.device-stat b { display: block; color: #fff; font-family: 'Cairo Display', sans-serif; font-size: 1.15rem; }
.device-stat span { color: rgba(255,255,255,0.5); font-size: 0.7rem; }

/* ---------- sections ---------- */
section.pad { padding: 84px 0; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 48px; }
.section-head .eyebrow-alt { display: inline-block; color: var(--teal-deep); background: var(--teal-soft); font-size: 0.8rem; font-weight: 700; padding: 6px 14px; border-radius: 100px; margin-bottom: 14px; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.15rem); }
.section-head p { color: var(--ink-dim); margin-top: 12px; font-size: 1.02rem; }

/* ---------- packages ---------- */
.pkg-scroller { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.pkg-card { position: relative; background: var(--card); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 26px 20px 22px; text-align: center; box-shadow: var(--shadow); transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease; }
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--teal); }
.pkg-card.best { border-color: var(--teal); box-shadow: 0 24px 55px -25px rgba(20,184,162,0.5); }
.pkg-ribbon { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: linear-gradient(180deg,#17c9b1,var(--teal-deep)); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 6px 16px; border-radius: 100px; box-shadow: 0 8px 16px -6px rgba(20,184,162,0.6); white-space: nowrap; }
.pkg-ribbon.gold { background: linear-gradient(180deg,#ffcf7d,var(--gold-deep)); box-shadow: 0 8px 16px -6px rgba(240,169,59,0.55); }
.pkg-coin { width: 56px; height: 56px; margin: 6px auto 14px; border-radius: 50%; background: radial-gradient(circle at 32% 28%, #fff5da, var(--gold) 60%, var(--gold-deep) 100%); display: grid; place-items: center; box-shadow: inset 0 -4px 8px rgba(0,0,0,0.15), 0 10px 18px -8px rgba(240,169,59,0.6); }
.pkg-coin svg { width: 26px; height: 26px; }
.pkg-card .coins { font-family: 'Cairo Display', sans-serif; font-size: 1.5rem; }
.pkg-card .coins span { color: var(--ink-dim); font-family: 'Tajawal Text',sans-serif; font-weight: 400; font-size: 0.62em; margin-inline-start: 4px; }
.pkg-card .price { margin-top: 14px; font-family: 'Cairo Display', sans-serif; font-size: 1.7rem; color: var(--teal-deep); }
.pkg-card .price span { font-family:'Tajawal Text',sans-serif; font-weight:700; font-size: 0.5em; color: var(--ink-dim); margin-inline-start: 3px;}
.pkg-card .btn { margin-top: 16px; }
.pkg-card.selectable { cursor: pointer; }
.pkg-card.selected { border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-soft), var(--shadow-lg); }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 22px; box-shadow: var(--shadow); }
.step .n { width: 46px; height: 46px; border-radius: 13px; background: linear-gradient(155deg, var(--teal), var(--teal-deep)); color: #fff; font-family: 'Cairo Display', sans-serif; font-size: 1.15rem; display: grid; place-items: center; margin-bottom: 16px; box-shadow: 0 10px 20px -8px rgba(20,184,162,0.6); }
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { color: var(--ink-dim); font-size: 0.92rem; }

/* ---------- payments ---------- */
.pay-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pay-card { background: var(--card); border: 1.5px solid var(--border); border-radius: 16px; padding: 18px; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow); position: relative; }
.pay-card.active { border-color: var(--teal); cursor: pointer; }
.pay-card.selected { box-shadow: 0 0 0 3px var(--teal-soft), var(--shadow); }
.pay-card.soon { opacity: 0.55; filter: grayscale(0.4); }
.pay-badge { width: 46px; height: 46px; border-radius: 12px; flex: none; display: grid; place-items: center; font-family: 'Cairo Display', sans-serif; font-weight: 800; font-size: 0.95rem; color: #fff; }
.pay-card .name { font-weight: 700; font-size: 0.92rem; }
.pay-card .stat { font-size: 0.74rem; margin-top: 2px; }
.pay-card.active .stat { color: var(--good); font-weight: 700; }
.pay-card.soon .stat { color: var(--ink-faint); font-weight: 700; }
.pay-check { position: absolute; top: 10px; left: 10px; width: 18px; height: 18px; }
.pay-check svg { width: 100%; height: 100%; stroke: var(--good); }

/* ---------- stats ---------- */
.stats-band { background: linear-gradient(160deg, var(--navy), var(--navy-2)); border-radius: 28px; padding: 46px 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-item { text-align: center; }
.stat-item b { display: block; font-family: 'Cairo Display', sans-serif; color: #fff; font-size: clamp(1.6rem, 3vw, 2.15rem); }
.stat-item span { color: rgba(255,255,255,0.55); font-size: 0.84rem; }

/* ---------- testimonial ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1080px; margin: 0 auto; }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }
.testi { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); text-align: center; }
.testi .stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 3px; margin-bottom: 16px; }
.testi p.quote { font-size: 0.98rem; color: var(--ink); }
.testi .who { margin-top: 20px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.testi .who .av { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(155deg,var(--teal),var(--teal-deep)); }
.testi .who b { display: block; font-size: 0.9rem; }
.testi .who span { color: var(--ink-dim); font-size: 0.78rem; }

/* ---------- faq ---------- */
.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq details { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 18px 20px; box-shadow: var(--shadow); }
.faq summary { cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 12px; font-weight: 700; font-size: 0.98rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { transition: transform 0.25s ease; flex: none; }
.faq summary .chev svg { width: 18px; height: 18px; stroke: var(--teal-deep); }
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq .a { color: var(--ink-dim); font-size: 0.92rem; margin-top: 12px; line-height: 1.8; }

/* ---------- cta band ---------- */
.cta-band { background: linear-gradient(135deg, var(--teal-deep), var(--teal) 60%, #23d8bd); border-radius: 28px; padding: 52px 40px; text-align: center; color: #fff; position: relative; overflow: hidden; }
.cta-band h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2rem); }
.cta-band p { color: rgba(255,255,255,0.88); margin-top: 10px; }
.cta-band .hero-cta { justify-content: center; margin-top: 26px; }
.cta-band .btn-ghost-light { background: rgba(255,255,255,0.16); }

/* ---------- guest-checkout / guest-login note ---------- */
.guest-note {
  display: flex; gap: 10px; align-items: flex-start; background: var(--teal-soft); border: 1px solid rgba(20,184,162,0.3);
  border-radius: 12px; padding: 12px 14px; margin-bottom: 18px; font-size: 0.86rem; color: var(--teal-deep);
}
.guest-note a { text-decoration: underline; font-weight: 700; }

/* ---------- reusable two-column split (contact, checkout, etc.) ---------- */
.split-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 32px; align-items: start; }
@media (max-width: 900px) {
  .split-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ---------- cards / forms (checkout, auth) ---------- */
.panel { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px; }
.form-label-bj { font-weight: 700; font-size: 0.88rem; margin-bottom: 6px; display: block; }
.form-control-bj {
  width: 100%; border: 1.5px solid var(--border); border-radius: 12px; padding: 12px 14px;
  font-family: inherit; font-size: 0.96rem; background: var(--paper); color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-control-bj:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-soft); }
.field { margin-bottom: 18px; }
.help-text { color: var(--ink-dim); font-size: 0.8rem; margin-top: 6px; }
.alert-bj { border-radius: 12px; padding: 12px 16px; font-size: 0.9rem; font-weight: 700; margin-bottom: 18px; display: none; }
.alert-bj.show { display: block; }
.alert-danger-bj { background: rgba(229,72,77,0.1); color: var(--danger); border: 1px solid rgba(229,72,77,0.25); }
.alert-success-bj { background: rgba(26,156,107,0.1); color: var(--good); border: 1px solid rgba(26,156,107,0.25); }

.status-pill { display: inline-flex; align-items: center; gap: 6px; font-size: 0.78rem; font-weight: 700; padding: 5px 12px; border-radius: 100px; }
.status-pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.status-pending_payment, .status-awaiting_review { background: rgba(240,169,59,0.14); color: var(--gold-deep); }
.status-paid, .status-processing { background: rgba(20,184,162,0.14); color: var(--teal-deep); }
.status-completed { background: rgba(26,156,107,0.14); color: var(--good); }
.status-failed, .status-cancelled, .status-expired { background: rgba(229,72,77,0.12); color: var(--danger); }

/* ---------- footer ---------- */
footer.site { background: var(--navy); color: rgba(255,255,255,0.65); padding: 64px 0 26px; margin-top: 90px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.foot-brand p { margin-top: 14px; font-size: 0.88rem; max-width: 32ch; color: rgba(255,255,255,0.5); }
.foot-social { display: flex; gap: 10px; margin-top: 20px; }
.foot-social a { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,0.08); display: grid; place-items: center; }
.foot-social a svg { width: 16px; height: 16px; stroke: #fff; }
.foot-col h4 { color: #fff; font-size: 0.95rem; margin-bottom: 16px; }
.foot-col a, .foot-col p { display: block; font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-bottom: 10px; }
.foot-col a:hover { color: var(--teal); }
.foot-pay { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.foot-pay span { background: rgba(255,255,255,0.08); border-radius: 8px; padding: 5px 9px; font-size: 0.68rem; font-weight: 700; }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 22px; font-size: 0.8rem; flex-wrap: wrap; gap: 10px; }
.foot-bottom .jo { display:flex; align-items:center; gap:8px; }
.foot-bottom .flag { width: 22px; height: 15px; border-radius: 3px; overflow:hidden; display:flex; flex-direction:column; }
.foot-bottom .flag i { flex:1; display:block; }

/* ---------- whatsapp floating button ---------- */
.wa-float {
  position: fixed; bottom: 22px; left: 22px; z-index: 50;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(155deg,#28d16b,#1fa856);
  display: grid; place-items: center;
  box-shadow: 0 14px 28px -10px rgba(31,168,86,0.6);
}
.wa-float svg { width: 26px; height: 26px; stroke: #fff; }

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  nav.links { display: none; }
  .burger { display: grid; }
  #bj-auth-link { display: none !important; }
  .hero-grid { grid-template-columns: 1fr; }
  .device { max-width: 460px; margin: 0 auto; }
  .pkg-scroller { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .pay-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 18px; }
  .nav-row { gap: 10px; }
  .brand { font-size: 1.05rem; gap: 8px; }
  .brand .mark { width: 32px; height: 32px; }
  .brand small { display: none; }
  .nav-actions .btn { padding: 9px 14px; font-size: 0.86rem; }
  section.pad { padding: 60px 0; }
  .pkg-scroller { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .pay-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr 1fr; padding: 32px 22px; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero-cta .btn { flex: 1; }
  .hero { padding: 56px 0 70px; }
  .panel { padding: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .live-pill .dot { animation: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* =====================================================================
   Admin panel (admin.bigojordan.com)
   ===================================================================== */
.admin-shell { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.admin-sidebar { background: var(--navy); color: rgba(255,255,255,0.72); padding: 22px 16px; display: flex; flex-direction: column; gap: 4px; }
.admin-sidebar .brand { margin-bottom: 26px; padding: 0 6px; }
.admin-nav a { display: flex; align-items: center; gap: 10px; padding: 11px 12px; border-radius: 10px; font-size: 0.92rem; font-weight: 700; color: rgba(255,255,255,0.7); }
.admin-nav a svg { width: 17px; height: 17px; flex: none; }
.admin-nav a:hover { background: rgba(255,255,255,0.06); color: #fff; }
.admin-nav a.active { background: rgba(20,184,162,0.16); color: #6bead9; }
.admin-sidebar .spacer { flex: 1; }
.admin-logout { margin-top: auto; }
.admin-main { background: var(--paper); padding: 26px 32px 60px; }
.admin-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.admin-topbar h1 { font-size: 1.4rem; }
.admin-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 28px; }
.kpi-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 18px 20px; box-shadow: var(--shadow); }
.kpi-card .lbl { color: var(--ink-dim); font-size: 0.8rem; font-weight: 700; }
.kpi-card .val { font-family: 'Cairo Display', sans-serif; font-size: 1.7rem; margin-top: 6px; }
.admin-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow); padding: 22px; margin-bottom: 22px; }
.admin-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; flex-wrap: wrap; gap: 10px; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.admin-table th { text-align: right; color: var(--ink-dim); font-weight: 700; padding: 10px 8px; border-bottom: 1px solid var(--border); white-space: nowrap; }
.admin-table td { padding: 12px 8px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table-wrap { overflow-x: auto; }
.btn-xs { padding: 6px 12px; font-size: 0.78rem; border-radius: 8px; }
.filters-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.filters-row select, .filters-row input { border: 1.5px solid var(--border); border-radius: 10px; padding: 8px 12px; font-family: inherit; font-size: 0.86rem; background: var(--paper); color: var(--ink); }
.admin-login-wrap { min-height: 100vh; display: grid; place-items: center; background: linear-gradient(160deg, var(--navy), var(--navy-2)); padding: 24px; }
.badge-dot { display: inline-flex; align-items: center; gap: 6px; font-size: 0.72rem; font-weight: 700; padding: 3px 10px; border-radius: 100px; }
@media (max-width: 900px) {
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { flex-direction: row; overflow-x: auto; }
  .admin-kpis { grid-template-columns: 1fr 1fr; }
}
