/*
 * ZOVO PAY — Premium Landing v4.1
 * British · Syria · BaaS
 * All text/color explicitly declared — zero inheritance from style.css
 */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ═══ DESIGN TOKENS ═══ */
:root {
  --zp-bg:       #030c1a;
  --zp-bg2:      #060f22;
  --zp-bg3:      #040e1e;
  --zp-glass:    rgba(255,255,255,0.045);
  --zp-glass2:   rgba(255,255,255,0.075);
  --zp-border:   rgba(255,255,255,0.07);
  --zp-border2:  rgba(255,255,255,0.13);
  --zp-white:    #ffffff;
  --zp-text:     #dde8ff;
  --zp-muted:    rgba(170,195,240,0.58);

  --u-c1: #1d4ed8;  --u-c2: #3b82f6;  --u-glow: rgba(29,78,216,0.35);
  --a-c1: #14532d;  --a-c2: #16a34a;  --a-glow: rgba(22,163,74,0.30);
  --m-c1: #6b21a8;  --m-c2: #ad6cef;  --m-glow: rgba(173,108,239,0.30);

  --r: 10px; --r2: 16px; --r3: 24px; --r4: 32px;
  --tr: all 0.3s cubic-bezier(.4,0,.2,1);
  --en: 'Outfit',sans-serif;
  --ar: 'Cairo',sans-serif;
}

/* ═══ BASE ═══ */
.zp-page, .zp-page * { box-sizing: border-box; }
.zp-page { background: var(--zp-bg); color: var(--zp-text); }
body.ltr .zp-page, body.ltr .zp-page *:not(i):not(.fa):not(.fas):not(.far):not(.fab):not(.fal):not(.fad):not([class*="la-"]):not(.la) { font-family: var(--en) !important; }
body.rtl .zp-page, body.rtl .zp-page *:not(i):not(.fa):not(.fas):not(.far):not(.fab):not(.fal):not(.fad):not([class*="la-"]):not(.la) { font-family: var(--ar) !important; }
.zp-page a { text-decoration: none !important; }
.zp-page h1,.zp-page h2,.zp-page h3,.zp-page h4,.zp-page h5 { color: var(--zp-white) !important; }
.zp-page p { color: var(--zp-muted) !important; }

/* ═══ LAYOUT ═══ */
.zp-wrap { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

/* ═══ GRADIENT TEXT ═══ */
.g-blue { background: linear-gradient(130deg,#60a5fa,#a78bfa); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.g-gold { background: linear-gradient(130deg,#fbbf24,#f59e0b); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }

/* ═══ BUTTONS ═══ */
.zp-btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 30px; border-radius: var(--r); font-size: 15px;
  font-weight: 700; transition: var(--tr); cursor: pointer;
  border: none; text-decoration: none; white-space: nowrap;
  color: #fff !important;
}
.zp-btn i { font-size: 15px; }
.zp-btn-primary {
  background: linear-gradient(135deg,var(--u-c1),var(--u-c2));
  box-shadow: 0 8px 32px var(--u-glow);
}
.zp-btn-primary:hover { transform:translateY(-3px); box-shadow:0 14px 40px var(--u-glow); filter:brightness(1.1); color:#fff!important; }
.zp-btn-agent {
  background: linear-gradient(135deg,var(--a-c1),var(--a-c2));
  box-shadow: 0 8px 32px var(--a-glow);
}
.zp-btn-agent:hover { transform:translateY(-3px); filter:brightness(1.1); color:#fff!important; }
.zp-btn-merchant {
  background: linear-gradient(135deg,var(--m-c1),var(--m-c2));
  box-shadow: 0 8px 32px var(--m-glow);
}
.zp-btn-merchant:hover { transform:translateY(-3px); filter:brightness(1.1); color:#fff!important; }
.zp-btn-outline {
  background: var(--zp-glass); border: 1px solid var(--zp-border2);
  color: var(--zp-text) !important;
}
.zp-btn-outline:hover { background:var(--zp-glass2); border-color:rgba(255,255,255,.3); color:#fff!important; transform:translateY(-2px); }

/* ═══ SECTION LABELS ═══ */
.zp-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px; border: 1px solid;
}
.zp-label-blue    { color:#60a5fa; background:rgba(59,130,246,.1); border-color:rgba(59,130,246,.25); }
.zp-label-green   { color:#4ade80; background:rgba(74,222,128,.1); border-color:rgba(74,222,128,.25); }
.zp-label-sky     { color:#38bdf8; background:rgba(56,189,248,.1); border-color:rgba(56,189,248,.25); }
.zp-label-gold    { color:#fbbf24; background:rgba(251,191,36,.1); border-color:rgba(251,191,36,.25); }

.zp-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: #60a5fa;
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.zp-eyebrow::after { content:''; height:1px; width:32px; background:currentColor; border-radius:1px; }
body.rtl .zp-eyebrow { flex-direction: row-reverse; }
body.rtl .zp-eyebrow::after { display:none; }
body.rtl .zp-eyebrow::before { content:''; height:1px; width:32px; background:currentColor; border-radius:1px; }

.zp-title {
  font-size: clamp(28px,4vw,50px); font-weight: 900;
  color: #fff !important; line-height: 1.1; letter-spacing: -1.2px; margin-bottom: 14px;
}
.zp-sub { font-size: 16px; color: var(--zp-muted) !important; line-height: 1.8; }

/* Glow Orbs */
.zp-orb {
  position: absolute; border-radius: 50%;
  filter: blur(100px); pointer-events: none;
  animation: orb 18s ease-in-out infinite alternate;
}
@keyframes orb { 0%{transform:scale(1) translate(0,0)} 100%{transform:scale(1.1) translate(25px,-35px)} }

/* ═══════════════════════════════════════════
   TICKER
═══════════════════════════════════════════ */
.zp-ticker {
  height: 46px; background: rgba(3,12,26,.97); position: relative;
  overflow: hidden; z-index: 1002;
  border-bottom: 1px solid var(--zp-border);
}
.zp-ticker-badge {
  position: absolute; left: 0; top: 0; bottom: 0; z-index: 3;
  display: flex; align-items: center; padding: 0 18px;
  background: linear-gradient(135deg,var(--u-c1),var(--u-c2));
  font-size: 9px; font-weight: 800; letter-spacing: 2px; color: #fff;
  gap: 5px;
}
body.rtl .zp-ticker-badge { left:auto; right:0; }
.zp-ticker-badge .dot-live {
  width: 6px; height: 6px; border-radius: 50%;
  background: #fff; animation: blink 1.5s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }
.zp-ticker-scroll {
  display: flex; align-items: center; height: 100%;
  animation: scroll-lr 55s linear infinite; white-space: nowrap; padding-left: 88px;
}
body.rtl .zp-ticker-scroll { padding-left:0; padding-right:88px; }
.zp-ticker-scroll:hover { animation-play-state:paused; }
@keyframes scroll-lr { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.zp-ti {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0 24px; font-size: 13px; color: var(--zp-text);
  border-right: 1px solid var(--zp-border);
}
.zp-ti .em  { font-size: 16px; }
.zp-ti .cd  { color: var(--zp-muted); font-size: 11px; font-weight: 600; letter-spacing: .5px; }
.zp-ti .pr  { color: #fff; font-weight: 800; font-size: 13.5px; }
.zp-ti .chg { color: #4ade80; font-size: 10px; }

/* ═══════════════════════════════════════════
   HEADER OVERRIDES
═══════════════════════════════════════════ */
.header-section {
  position: sticky !important; top: 0 !important; z-index: 1001 !important;
  background: rgba(3,12,26,0.92) !important;
  backdrop-filter: blur(28px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(28px) saturate(160%) !important;
  border-bottom: 1px solid var(--zp-border) !important;
  box-shadow: none !important;
}
.header-section .header,
.header-section .header-bottom-area { background: transparent !important; }
.header-section .navbar .has-sub,
.header-section .navbar .nav-item > a {
  color: rgba(190,215,255,0.72) !important;
  font-size: 14px !important; font-weight: 500 !important;
}
.header-section .navbar .has-sub:hover,
.header-section .navbar .nav-item > a:hover { color: #fff !important; }
.header-section .btn--base.btn {
  background: var(--zp-glass) !important; border: 1px solid var(--zp-border2) !important;
  color: #fff !important; border-radius: var(--r) !important;
  font-size: 14px !important; padding: 9px 20px !important;
}
.header-section .btn--base.btn:hover { background:var(--zp-glass2)!important; color:#fff!important; }
.header-section .btn--base.btn-auth {
  background: linear-gradient(135deg,var(--u-c1),var(--u-c2)) !important;
  border: none !important; color: #fff !important;
  border-radius: var(--r) !important; font-size: 14px !important;
  padding: 9px 22px !important; box-shadow: 0 4px 18px var(--u-glow) !important;
}
.header-section .btn--base.btn-auth:hover { filter:brightness(1.12)!important; transform:translateY(-1px)!important; }
.header-section .sub-menu {
  background: rgba(4,11,28,.97) !important; backdrop-filter:blur(30px)!important;
  border: 1px solid var(--zp-border2) !important; border-radius: 20px !important;
  box-shadow: 0 24px 80px rgba(0,0,0,.6) !important;
}
.header-section .sub-menu-item {
  background: var(--zp-glass) !important; border: 1px solid var(--zp-border) !important;
  border-radius: 12px !important; transition: var(--tr) !important;
}
.header-section .sub-menu-item:hover { background: var(--zp-glass2)!important; border-color:var(--zp-border2)!important; }
.header-section .sub-menu-item .title, .header-section .sub-menu-item h4 { color:#fff!important; }
.header-section .sub-menu-item p, .header-section .sub-menu-item .menu-item-name p { color:var(--zp-muted)!important; }
.header-section .sub-menu-title h3, .header-section .sub-menu-title .title { color:#fff!important; }
.header-section .sub-menu-item .icon i { color: #60a5fa !important; }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.zp-hero {
  background: var(--zp-bg);
  min-height: calc(100vh - 46px);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
/* Gradient mesh background */
.zp-hero-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(29,78,216,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(20,83,45,0.14) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 70% 80%, rgba(107,33,168,0.13) 0%, transparent 55%),
    radial-gradient(ellipse 100% 100% at 50% 50%, rgba(3,12,26,0.5) 0%, transparent 100%);
  animation: mesh-shift 20s ease-in-out infinite alternate;
}
@keyframes mesh-shift {
  0%   { opacity: 1; }
  100% { opacity: 0.75; }
}
/* Grid dots */
.zp-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 36px 36px; pointer-events: none;
}

.zp-hero-inner {
  flex: 1; display: flex; align-items: center;
  padding: 100px 0 70px; position: relative; z-index: 2;
}

/* ── Left Content ── */
.zp-hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--zp-border2);
  border-radius: 50px; padding: 8px 20px; margin-bottom: 30px;
  font-size: 12.5px; color: var(--zp-muted);
}
.zp-hero-tag .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: #4ade80;
  box-shadow: 0 0 10px #4ade80; animation: blink 2s infinite;
}

.zp-hero-h1 {
  font-size: clamp(42px, 5.5vw, 74px);
  font-weight: 900; color: #fff !important;
  line-height: 1.07; letter-spacing: -2.5px; margin-bottom: 22px;
}
.zp-hero-h1 .gr {
  background: linear-gradient(125deg,#60a5fa 0%,#818cf8 40%,#a78bfa 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.zp-hero-p {
  font-size: 17.5px; color: var(--zp-muted) !important;
  line-height: 1.8; margin-bottom: 38px; max-width: 490px;
}

.zp-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

/* Stats */
.zp-hstats {
  display: grid; grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--zp-border); border-radius: var(--r2);
  overflow: hidden; background: rgba(255,255,255,0.025);
}
.zp-hs {
  padding: 18px 16px; text-align: center;
  border-right: 1px solid var(--zp-border);
}
.zp-hs:last-child { border-right: none; }
.zp-hs-n { font-size: 22px; font-weight: 900; color: #fff !important; }
.zp-hs-l { font-size: 10.5px; color: var(--zp-muted) !important; margin-top: 3px; letter-spacing: .3px; }

/* ── Right: Portal Cards Stack ── */
.zp-hero-right { position: relative; }

/* Floating UI Widgets */
.zp-fw {
  position: absolute; border-radius: var(--r2);
  background: rgba(5,14,35,0.88); border: 1px solid var(--zp-border2);
  backdrop-filter: blur(24px); padding: 14px 18px;
  pointer-events: none; z-index: 5;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}
.zp-fw-1 {
  top: 5%; right: -28px;
  animation: float-up 7s ease-in-out infinite alternate;
  min-width: 210px;
}
.zp-fw-2 {
  bottom: 10%; left: -24px;
  animation: float-up 8s ease-in-out infinite alternate;
  animation-delay: -3.5s; min-width: 220px;
}
body.rtl .zp-fw-1 { right:auto; left:-28px; }
body.rtl .zp-fw-2 { left:auto; right:-24px; }
@keyframes float-up { 0%{transform:translateY(0)} 100%{transform:translateY(-16px)} }

.zp-fw-head { font-size: 10px; color: var(--zp-muted) !important; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }
.zp-fw-row  { display: flex; align-items: center; gap: 11px; }
.zp-fw-ico  { width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.zp-fw-ico.g  { background:rgba(74,222,128,.15); color:#4ade80; }
.zp-fw-ico.b  { background:rgba(96,165,250,.15); color:#60a5fa; }
.zp-fw-ico.o  { background:rgba(251,191,36,.15);  color:#fbbf24; }
.zp-fw-val    { font-size: 16px; font-weight: 800; color: #4ade80 !important; }
.zp-fw-val.b  { color: #60a5fa !important; }
.zp-fw-desc   { font-size: 11px; color: var(--zp-muted) !important; }

/* Virtual mini card */
.zp-mini-card {
  background: linear-gradient(135deg,#1e3a8a 0%,#1d4ed8 55%,#2563eb 100%);
  border-radius: 10px; padding: 12px 14px;
  display: flex; justify-content: space-between; align-items: center;
  box-shadow: 0 8px 24px rgba(29,78,216,.35);
}
.zp-mini-card .num { font-size: 13px; font-weight: 700; color: #fff !important; font-family: 'Courier New',monospace; letter-spacing: .8px; }
.zp-mini-card .logo { font-size: 22px; }

/* Portal Cards */
.zp-portals { display: flex; flex-direction: column; gap: 13px; }

.zp-pc {
  border-radius: var(--r2); padding: 20px 22px;
  border: 1px solid; position: relative; overflow: hidden;
  transition: var(--tr); text-decoration: none !important;
  display: block; backdrop-filter: blur(16px);
}
/* Top shimmer */
.zp-pc::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,0.15),transparent);
}
/* Left accent bar */
.zp-pc::after {
  content: ''; position: absolute; top: 12%; bottom: 12%; left: 0;
  width: 3px; border-radius: 0 3px 3px 0;
  transition: var(--tr);
}
body.rtl .zp-pc::after { left:auto; right:0; border-radius:3px 0 0 3px; }

/* User Card */
.zp-pc-u { background: linear-gradient(135deg,rgba(29,78,216,.1),rgba(29,78,216,.04)); border-color:rgba(59,130,246,.2); }
.zp-pc-u::after { background: linear-gradient(180deg,#60a5fa,#1d4ed8); }
.zp-pc-u:hover  { background:linear-gradient(135deg,rgba(29,78,216,.18),rgba(29,78,216,.08)); border-color:rgba(96,165,250,.5); box-shadow:0 20px 60px rgba(29,78,216,.22); transform:translateX(-5px); }
body.rtl .zp-pc-u:hover { transform:translateX(5px); }

/* Agent Card */
.zp-pc-a { background: linear-gradient(135deg,rgba(20,83,45,.12),rgba(20,83,45,.04)); border-color:rgba(74,222,128,.18); }
.zp-pc-a::after { background: linear-gradient(180deg,#4ade80,#14532d); }
.zp-pc-a:hover  { background:linear-gradient(135deg,rgba(20,83,45,.22),rgba(20,83,45,.08)); border-color:rgba(74,222,128,.45); box-shadow:0 20px 60px var(--a-glow); transform:translateX(-5px); }
body.rtl .zp-pc-a:hover { transform:translateX(5px); }

/* Merchant Card */
.zp-pc-m { background: linear-gradient(135deg,rgba(107,33,168,.12),rgba(107,33,168,.04)); border-color:rgba(173,108,239,.18); }
.zp-pc-m::after { background: linear-gradient(180deg,#ad6cef,#6b21a8); }
.zp-pc-m:hover  { background:linear-gradient(135deg,rgba(107,33,168,.22),rgba(107,33,168,.08)); border-color:rgba(173,108,239,.45); box-shadow:0 20px 60px var(--m-glow); transform:translateX(-5px); }
body.rtl .zp-pc-m:hover { transform:translateX(5px); }

.zp-pc-head { display:flex; align-items:center; gap:14px; margin-bottom:12px; }
.zp-pc-ico  {
  width: 46px; height: 46px; border-radius: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; color: #fff !important;
}
.ico-u { background:linear-gradient(135deg,var(--u-c1),var(--u-c2)); box-shadow:0 6px 20px var(--u-glow); }
.ico-a { background:linear-gradient(135deg,var(--a-c1),var(--a-c2)); box-shadow:0 6px 20px var(--a-glow); }
.ico-m { background:linear-gradient(135deg,var(--m-c1),var(--m-c2)); box-shadow:0 6px 20px var(--m-glow); }

.zp-pc-name  { font-size: 15px; font-weight: 800; color: #fff !important; margin-bottom: 2px; }
.zp-pc-desc  { font-size: 12px; color: var(--zp-muted) !important; }
.zp-pc-badge {
  margin-left: auto; font-size: 10.5px; font-weight: 700;
  padding: 4px 11px; border-radius: 20px; border: 1px solid;
  white-space: nowrap;
}
body.rtl .zp-pc-badge { margin-left:0; margin-right:auto; }
.zp-pc-u .zp-pc-badge { color:#60a5fa; background:rgba(96,165,250,.1); border-color:rgba(96,165,250,.3); }
.zp-pc-a .zp-pc-badge { color:#4ade80; background:rgba(74,222,128,.1); border-color:rgba(74,222,128,.3); }
.zp-pc-m .zp-pc-badge { color:#ad6cef; background:rgba(173,108,239,.1); border-color:rgba(173,108,239,.3); }

.zp-pc-tags  { display:flex; flex-wrap:wrap; gap:7px; }
.zp-pc-tag   {
  font-size: 11.5px; color: var(--zp-muted) !important;
  padding: 3px 11px; border-radius: 20px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--zp-border);
}
.zp-pc-arrow {
  position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,0.18); font-size: 14px; transition: var(--tr);
}
body.rtl .zp-pc-arrow { right:auto; left:20px; }
.zp-pc:hover .zp-pc-arrow { color:rgba(255,255,255,0.7); right:14px; }
body.rtl .zp-pc:hover .zp-pc-arrow { right:auto; left:14px; }

/* ════════════════════════════════════
   TRUST BAR
════════════════════════════════════ */
.zp-trust {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--zp-border); border-bottom: 1px solid var(--zp-border);
  padding: 22px 0;
}
.zp-trust-inner { display:flex; align-items:center; justify-content:center; gap:48px; flex-wrap:wrap; }
.zp-trust-item { display:flex; align-items:center; gap:10px; font-size:13.5px; color:var(--zp-muted)!important; }
.zp-trust-item i { font-size:20px; color:#60a5fa; }
.zp-trust-item strong { color:var(--zp-white)!important; font-weight:700; }

/* ════════════════════════════════════
   LAUNCH — UK × Syria
════════════════════════════════════ */
.zp-launch { padding:100px 0; background:var(--zp-bg); position:relative; overflow:hidden; }
.zp-launch-grid { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center; }
@media(max-width:768px){ .zp-launch-grid{grid-template-columns:1fr;gap:44px;} }

.zp-flags { display:flex; gap:14px; margin-bottom:28px; flex-wrap:wrap; }
.zp-flag-pill {
  display:flex; align-items:center; gap:11px;
  padding:10px 20px; border-radius:var(--r);
  border:1px solid var(--zp-border2); background:var(--zp-glass);
  font-size:13.5px; font-weight:600; color:var(--zp-text)!important;
}
.zp-flag-pill .fl { font-size:22px; }

.zp-lc-list { display:flex; flex-direction:column; gap:14px; }
.zp-lc {
  background:var(--zp-glass); border:1px solid var(--zp-border);
  border-radius:var(--r2); padding:22px 26px;
  display:flex; align-items:flex-start; gap:18px;
  transition:var(--tr); position:relative; overflow:hidden;
}
.zp-lc::before { content:''; position:absolute; left:0; top:0; bottom:0; width:3px; background:linear-gradient(180deg,var(--u-c2),var(--u-c1)); border-radius:0 3px 3px 0; }
body.rtl .zp-lc::before { left:auto; right:0; border-radius:3px 0 0 3px; }
.zp-lc:hover { background:var(--zp-glass2); border-color:var(--zp-border2); }
.zp-lc-ico { width:46px; height:46px; border-radius:14px; flex-shrink:0; display:flex; align-items:center; justify-content:center; font-size:19px; background:rgba(29,78,216,.15); color:#60a5fa; }
.zp-lc h4  { font-size:15px; font-weight:700; color:#fff!important; margin-bottom:4px; }
.zp-lc p   { font-size:13px; color:var(--zp-muted)!important; line-height:1.6; }

/* ════════════════════════════════════
   THREE PORTALS TAB SECTION
════════════════════════════════════ */
.zp-portals-sec { padding:100px 0; background:var(--zp-bg2); position:relative; overflow:hidden; }

.zp-tabs { display:flex; gap:10px; flex-wrap:wrap; }
.zp-tab {
  padding:12px 26px; border-radius:50px; font-size:14.5px; font-weight:700;
  cursor:pointer; border:1px solid var(--zp-border); background:transparent;
  color:var(--zp-muted)!important; transition:var(--tr); display:flex; align-items:center; gap:9px;
}
.zp-tab:hover { border-color:var(--zp-border2); color:var(--zp-text)!important; }
.zp-tab.u.active { background:rgba(29,78,216,.18); border-color:rgba(96,165,250,.5); color:#60a5fa!important; }
.zp-tab.a.active { background:rgba(20,83,45,.18); border-color:rgba(74,222,128,.5); color:#4ade80!important; }
.zp-tab.m.active { background:rgba(107,33,168,.18); border-color:rgba(173,108,239,.5); color:#ad6cef!important; }
.zp-tab .tab-dot { width:8px; height:8px; border-radius:50%; }
.zp-tab.u .tab-dot { background:#60a5fa; }
.zp-tab.a .tab-dot { background:#4ade80; }
.zp-tab.m .tab-dot { background:#ad6cef; }

.zp-panel { display:none; }
.zp-panel.active { display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start; }
@media(max-width:768px){ .zp-panel.active{grid-template-columns:1fr;} }

.zp-feats { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
@media(max-width:480px){ .zp-feats{grid-template-columns:1fr;} }

.zp-feat {
  background:var(--zp-glass); border:1px solid var(--zp-border);
  border-radius:var(--r2); padding:20px; transition:var(--tr);
}
.zp-feat:hover { background:var(--zp-glass2); border-color:var(--zp-border2); }
.zp-feat-ico { width:38px; height:38px; border-radius:11px; display:flex; align-items:center; justify-content:center; font-size:16px; margin-bottom:12px; }
.fi-u { background:rgba(29,78,216,.18); color:#60a5fa; }
.fi-a { background:rgba(20,83,45,.18);  color:#4ade80; }
.fi-m { background:rgba(107,33,168,.18);  color:#ad6cef; }
.zp-feat h4 { font-size:14px; font-weight:700; color:#fff!important; margin-bottom:5px; }
.zp-feat p  { font-size:12.5px; color:var(--zp-muted)!important; line-height:1.6; }

.zp-cta-card {
  background:var(--zp-glass); border:1px solid var(--zp-border);
  border-radius:var(--r3); padding:36px; display:flex; flex-direction:column; gap:24px;
  position:sticky; top:120px;
}
.zp-cta-card-head { display:flex; align-items:center; gap:16px; }
.zp-cta-ico { width:56px; height:56px; border-radius:16px; display:flex; align-items:center; justify-content:center; font-size:24px; color:#fff!important; }
.ci-u { background:linear-gradient(135deg,var(--u-c1),var(--u-c2)); box-shadow:0 8px 28px var(--u-glow); }
.ci-a { background:linear-gradient(135deg,var(--a-c1),var(--a-c2)); box-shadow:0 8px 28px var(--a-glow); }
.ci-m { background:linear-gradient(135deg,var(--m-c1),var(--m-c2)); box-shadow:0 8px 28px var(--m-glow); }
.zp-cta-card-title { font-size:22px; font-weight:900; color:#fff!important; }
.zp-cta-card-sub   { font-size:13px; font-weight:600; margin-top:2px; }
.su { color:#60a5fa!important; }
.sa { color:#4ade80!important; }
.sm { color:#ad6cef!important; }
.zp-cta-card-desc  { font-size:14.5px; color:var(--zp-muted)!important; line-height:1.8; }

/* ════════════════════════════════════
   LIVE RATES
════════════════════════════════════ */
.zp-rates-sec { padding:80px 0; background:var(--zp-bg); border-top:1px solid var(--zp-border); }
.zp-rates-top { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:16px; margin-bottom:36px; }
.zp-rates-title { font-size:26px; font-weight:900; color:#fff!important; }
.zp-live { display:flex; align-items:center; gap:8px; font-size:12px; color:var(--zp-muted)!important; }
.zp-live-dot { width:8px; height:8px; border-radius:50%; background:#4ade80; box-shadow:0 0 8px #4ade80; animation:blink 2s infinite; }
.zp-rates-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(180px,1fr)); gap:12px; }
.zp-rc {
  background:var(--zp-glass); border:1px solid var(--zp-border);
  border-radius:var(--r2); padding:18px 20px; transition:var(--tr);
}
.zp-rc:hover { background:var(--zp-glass2); border-color:var(--zp-border2); transform:translateY(-2px); }
.zp-rc-pair { font-size:11.5px; color:var(--zp-muted)!important; margin-bottom:8px; display:flex; align-items:center; gap:7px; }
.zp-rc-pair .fl { font-size:15px; }
.zp-rc-val  { font-size:21px; font-weight:900; color:#fff!important; }
.zp-rc-bs   { font-size:11px; color:var(--zp-muted)!important; margin-top:4px; }
.zp-rc-buy  { color:#4ade80!important; font-weight:600; }
.zp-rc-sell { color:#f87171!important; font-weight:600; }
.zp-more-link { text-align:center; margin-top:28px; }
.zp-link-blue { display:inline-flex; align-items:center; gap:8px; font-size:14.5px; font-weight:700; color:#60a5fa!important; transition:var(--tr); }
.zp-link-blue:hover { gap:13px; color:#93c5fd!important; }

/* ════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════ */
.zp-how { padding:100px 0; background:var(--zp-bg2); border-top:1px solid var(--zp-border); }
.zp-steps { display:grid; grid-template-columns:repeat(3,1fr); gap:30px; margin-top:60px; }
@media(max-width:768px){ .zp-steps{grid-template-columns:1fr;gap:24px;} }
.zp-step-card {
  background:var(--zp-glass); border:1px solid var(--zp-border);
  border-radius:var(--r2); padding:32px 28px; text-align:center; transition:var(--tr);
  position:relative; overflow:hidden;
}
.zp-step-card:hover { background:var(--zp-glass2); border-color:var(--zp-border2); transform:translateY(-4px); }
.zp-step-card::before { content:''; position:absolute; bottom:0; left:0; right:0; height:2px; background:linear-gradient(90deg,var(--u-c1),var(--u-c2)); opacity:0; transition:var(--tr); }
.zp-step-card:hover::before { opacity:1; }
.zp-step-n {
  width:64px; height:64px; border-radius:50%; margin:0 auto 20px;
  background:rgba(29,78,216,.12); border:2px solid rgba(96,165,250,.3);
  display:flex; align-items:center; justify-content:center;
  font-size:26px; font-weight:900; color:#60a5fa!important;
}
.zp-step-ico { font-size:28px; margin-bottom:20px; }
.zp-step-card h3 { font-size:18px; font-weight:800; color:#fff!important; margin-bottom:10px; }
.zp-step-card p  { font-size:14px; color:var(--zp-muted)!important; line-height:1.75; }

/* ════════════════════════════════════
   SECURITY
════════════════════════════════════ */
.zp-security { padding:100px 0; background:var(--zp-bg); border-top:1px solid var(--zp-border); }
.zp-sec-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(270px,1fr)); gap:20px; margin-top:56px; }
.zp-sc {
  background:var(--zp-glass); border:1px solid var(--zp-border);
  border-radius:var(--r2); padding:30px; transition:var(--tr); position:relative; overflow:hidden;
}
.zp-sc:hover { background:var(--zp-glass2); border-color:var(--zp-border2); transform:translateY(-4px); }
.zp-sc::after { content:''; position:absolute; top:0; left:0; right:0; height:2px; background:linear-gradient(90deg,var(--u-c1),var(--u-c2)); opacity:0; transition:var(--tr); }
.zp-sc:hover::after { opacity:1; }
.zp-sc-ico { width:50px; height:50px; border-radius:15px; display:flex; align-items:center; justify-content:center; font-size:21px; margin-bottom:18px; background:rgba(29,78,216,.15); color:#60a5fa; }
.zp-sc h3 { font-size:16px; font-weight:700; color:#fff!important; margin-bottom:9px; }
.zp-sc p  { font-size:13.5px; color:var(--zp-muted)!important; line-height:1.7; }

/* ════════════════════════════════════
   FINAL CTA
════════════════════════════════════ */
.zp-final-cta { padding:100px 0; background:var(--zp-bg2); border-top:1px solid var(--zp-border); text-align:center; position:relative; overflow:hidden; }
.zp-final-cta-inner { max-width:700px; margin:0 auto; position:relative; z-index:2; }
.zp-final-cta h2 { font-size:clamp(32px,5vw,56px); font-weight:900; color:#fff!important; letter-spacing:-1.5px; line-height:1.1; margin-bottom:18px; }
.zp-final-cta p  { font-size:17px; color:var(--zp-muted)!important; line-height:1.8; margin-bottom:42px; }
.zp-final-btns   { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ════════════════════════════════════
   FOOTER DARK
════════════════════════════════════ */
.footer-section { background:var(--zp-bg3)!important; border-top:1px solid var(--zp-border)!important; }
.footer-section, .footer-section * { color:var(--zp-muted)!important; }
.footer-section a:hover { color:var(--zp-white)!important; }
.footer-section .site-logo img { filter:brightness(1.2)!important; }

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media(max-width:991px) {
  .zp-hero-inner { padding:80px 0 50px; min-height:auto; }
  .zp-fw { display:none; }
  .zp-hero-right { margin-top:44px; }
  .zp-hstats { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:767px) {
  .zp-hero-h1 { letter-spacing:-1px; }
  .zp-hero-btns { flex-direction:column; }
  .zp-btn { justify-content:center; text-align:center; }
  .zp-hstats { grid-template-columns:repeat(2,1fr); }
  .zp-trust-inner { gap:20px; justify-content:flex-start; }
  .zp-tabs { justify-content:center; }
}

/* ════════════════════════════════════
   PARTICLE CANVAS
════════════════════════════════════ */
#zp-ptx {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  width: 100% !important; height: 100% !important;
}

/* ════════════════════════════════════
   CURRENCY CALCULATOR
════════════════════════════════════ */
.zp-calc-sec {
  padding: 90px 0;
  background: var(--zp-bg2);
  border-top: 1px solid var(--zp-border);
  position: relative; overflow: hidden;
}
.zp-calc-sec::before {
  content: "";
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(29,78,216,0.1) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.zp-calc-wrap { max-width: 700px; margin: 0 auto; }
.zp-calc-header { text-align: center; margin-bottom: 48px; }
.zp-calc-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: #60a5fa !important;
  margin-bottom: 16px;
}
.zp-calc-eyebrow::before, .zp-calc-eyebrow::after {
  content: ""; width: 32px; height: 1px; background: rgba(96,165,250,0.4);
}
.zp-calc-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 900; color: #fff !important;
  letter-spacing: -1px; margin-bottom: 12px;
}
.zp-calc-sub {
  font-size: 15px; color: var(--zp-muted) !important; line-height: 1.7;
}
.zp-calc-box {
  background: rgba(255,255,255,0.032);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r3);
  padding: 44px 48px;
  position: relative;
  backdrop-filter: blur(32px);
  box-shadow: 0 50px 120px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.04) inset, 0 1px 0 rgba(255,255,255,0.12) inset;
}
@media(max-width:640px) { .zp-calc-box { padding: 28px 20px; } }
.zp-calc-live-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 700; color: #4ade80 !important;
  background: rgba(74,222,128,0.08); border: 1px solid rgba(74,222,128,0.22);
  padding: 6px 16px; border-radius: 50px; margin-bottom: 32px;
  position: relative; z-index: 1;
}
.zp-calc-live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #4ade80;
  box-shadow: 0 0 8px #4ade80; animation: blink 2s infinite;
}
.zp-calc-fields {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 16px;
  align-items: end; position: relative; z-index: 1;
}
@media(max-width:580px) {
  .zp-calc-fields { grid-template-columns: 1fr; }
}
.zp-calc-field label {
  display: block; font-size: 11px; font-weight: 800;
  color: var(--zp-muted) !important; letter-spacing: 1.2px;
  text-transform: uppercase; margin-bottom: 10px;
}
.zp-calc-input-wrap {
  display: flex; border-radius: var(--r); overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  transition: var(--tr);
}
.zp-calc-input-wrap:focus-within {
  border-color: rgba(96,165,250,0.55);
  box-shadow: 0 0 0 3px rgba(96,165,250,0.12), 0 8px 32px rgba(29,78,216,0.2);
}
.zp-cinput {
  flex: 1; min-width: 0; border: none; outline: none;
  color: #fff !important; font-size: 24px; font-weight: 800;
  padding: 16px 18px; font-family: var(--en);
  -webkit-text-fill-color: #fff;
}
/* Force dark bg — zp-premium-v3.css sets all input types to white */
.zp-calc-sec .zp-cinput,
.zp-calc-box .zp-cinput,
.zp-calc-sec input.zp-cinput {
  background: rgba(6,15,34,0.6) !important;
  background-color: rgba(6,15,34,0.6) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.zp-cinput::placeholder { color: rgba(255,255,255,0.2); font-weight: 400; font-size: 18px; }
.zp-cresult {
  flex: 1; min-width: 0; background: transparent; border: none; outline: none;
  color: #4ade80 !important; font-size: 24px; font-weight: 800;
  padding: 16px 18px; font-family: var(--en); cursor: default;
  -webkit-text-fill-color: #4ade80;
}
.zp-calc-sec .zp-cresult,
.zp-calc-box .zp-cresult {
  background: rgba(6,15,34,0.6) !important;
  background-color: rgba(6,15,34,0.6) !important;
  -webkit-text-fill-color: #4ade80 !important;
}
.zp-cselect {
  background: rgba(255,255,255,0.06) !important; border: none;
  border-left: 1px solid rgba(255,255,255,0.08);
  color: #fff !important; font-size: 13px; font-weight: 700;
  padding: 0 14px; cursor: pointer; outline: none;
  font-family: var(--en); min-width: 76px;
  -webkit-appearance: none; appearance: none;
}
.zp-cselect option { background: #0d1b3e; color: #fff; }
.zp-cbadge {
  display: flex; align-items: center; padding: 0 20px;
  font-size: 14px; font-weight: 800; color: #38bdf8 !important;
  background: rgba(56,189,248,0.08); border-left: 1px solid rgba(56,189,248,0.15);
  white-space: nowrap; letter-spacing: .5px;
}
.zp-calc-swap {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r); width: 52px; height: 58px;
  display: flex; align-items: center; justify-content: center;
  color: var(--zp-muted); cursor: pointer; transition: all 0.4s cubic-bezier(.4,0,.2,1);
  font-size: 16px; align-self: end; flex-shrink: 0;
}
.zp-calc-swap:hover {
  background: rgba(96,165,250,0.12); border-color: rgba(96,165,250,0.45);
  color: #60a5fa; transform: rotate(180deg);
}
.zp-calc-info {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  margin-top: 26px; padding: 16px 22px;
  background: rgba(255,255,255,0.022);
  border-radius: var(--r); border: 1px solid var(--zp-border);
  position: relative; z-index: 1;
}
.zp-calc-rate-row { display: flex; align-items: center; gap: 8px; font-size: 12.5px; }
.zp-calc-rate-lbl  { color: var(--zp-muted) !important; }
.zp-calc-rate-buy  { color: #4ade80 !important; font-weight: 800; }
.zp-calc-rate-sell { color: #f87171 !important; font-weight: 800; }
.zp-calc-divider   { width: 1px; height: 18px; background: var(--zp-border); flex-shrink: 0; }
.zp-calc-updated   { font-size: 11.5px; color: var(--zp-muted) !important; margin-left: auto; }
body.rtl .zp-calc-updated { margin-left: 0; margin-right: auto; }
@media(max-width:580px) {
  .zp-calc-info { flex-direction: column; align-items: flex-start; gap: 10px; }
  .zp-calc-divider { display: none; }
  .zp-calc-updated { margin-left: 0; }
}

/* ════════════════════════════════════
   COUNTER ANIMATION
════════════════════════════════════ */
.zp-counter { transition: color 0.3s; }

/* ════════════════════════════════════
   ENHANCED GLASSMORPHISM SECURITY CARDS
════════════════════════════════════ */
.zp-scard {
  background: rgba(255,255,255,0.035) !important;
  border: 1px solid rgba(255,255,255,0.09) !important;
  border-radius: var(--r2);
  padding: 32px 28px;
  position: relative; overflow: hidden;
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
  backdrop-filter: blur(12px);
}
.zp-scard::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent);
}
.zp-scard::after {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, #1d4ed8, #3b82f6);
  opacity: 0; transition: opacity 0.3s;
}
.zp-scard:hover {
  background: rgba(255,255,255,0.065) !important;
  border-color: rgba(96,165,250,0.28) !important;
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35), 0 0 30px rgba(29,78,216,0.12);
}
.zp-scard:hover::after { opacity: 1; }
.zp-scard-icon {
  width: 52px; height: 52px; border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
  background: rgba(29,78,216,0.15); color: #60a5fa;
  box-shadow: 0 8px 24px rgba(29,78,216,0.2); transition: all 0.3s;
}
.zp-scard:hover .zp-scard-icon {
  background: rgba(29,78,216,0.25);
  box-shadow: 0 12px 32px rgba(29,78,216,0.35);
  transform: scale(1.08);
}
.zp-scard h3 { font-size: 16px; font-weight: 700; color: #fff !important; margin-bottom: 10px; }
.zp-scard p  { font-size: 13.5px; color: var(--zp-muted) !important; line-height: 1.72; }

/* ════════════════════════════════════
   ORB BACKGROUND ELEMENTS
════════════════════════════════════ */
.zp-hero .orb,
.zp-how .orb,
.zp-cta .orb,
.zp-security .orb {
  position: absolute !important;
  border-radius: 50% !important;
  filter: blur(90px) !important;
  opacity: 0.28 !important;
  pointer-events: none !important;
  z-index: 0 !important;
  will-change: filter, transform !important;
  animation: orbPulse var(--animation-duration, 14s) ease-in-out infinite !important;
}
@keyframes orbPulse {
  0%, 100% { transform: scale(1) translate(0,0); opacity: 0.28; }
  33%       { transform: scale(1.08) translate(3%,2%); opacity: 0.22; }
  66%       { transform: scale(0.95) translate(-2%,3%); opacity: 0.32; }
}

/* ════════════════════════════════════
   CLASS ALIASES (HTML uses different names)
════════════════════════════════════ */

/* Portal panels */
.zp-portal-panel { display: none; }
.zp-portal-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media(max-width:768px) { .zp-portal-panel.active { grid-template-columns: 1fr; gap: 32px; } }

.zp-portal-panel-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media(max-width:480px) { .zp-portal-panel-features { grid-template-columns: 1fr; } }

/* How-it-works steps grid */
.zp-how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}
@media(max-width:768px) { .zp-how-steps { grid-template-columns: 1fr; gap: 20px; } }

.zp-step {
  background: var(--zp-glass);
  border: 1px solid var(--zp-border);
  border-radius: var(--r2);
  padding: 32px 28px;
  text-align: center;
  transition: var(--tr);
  position: relative; overflow: hidden;
}
.zp-step:hover {
  background: var(--zp-glass2);
  border-color: var(--zp-border2);
  transform: translateY(-4px);
}
.zp-step::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--u-c1), var(--u-c2));
  opacity: 0; transition: var(--tr);
}
.zp-step:hover::before { opacity: 1; }
.zp-step-num {
  width: 64px; height: 64px; border-radius: 50%;
  margin: 0 auto 20px;
  background: rgba(29,78,216,0.12);
  border: 2px solid rgba(96,165,250,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 900; color: #60a5fa !important;
}
.zp-step h3 { font-size: 18px; font-weight: 800; color: #fff !important; margin-bottom: 10px; }
.zp-step p  { font-size: 14px; color: var(--zp-muted) !important; line-height: 1.75; }

/* Security cards grid */
.zp-sec-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 20px;
  margin-top: 56px;
}

/* Feature items inside portal panels */
.zp-portal-feat {
  background: var(--zp-glass);
  border: 1px solid var(--zp-border);
  border-radius: var(--r2);
  padding: 20px;
  transition: var(--tr);
}
.zp-portal-feat:hover {
  background: var(--zp-glass2);
  border-color: var(--zp-border2);
}
.zp-portal-feat-ico {
  width: 38px; height: 38px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; margin-bottom: 12px;
  background: rgba(29,78,216,0.18); color: #60a5fa;
}
.zp-portal-feat h4 { font-size: 14px; font-weight: 700; color: #fff !important; margin-bottom: 5px; }
.zp-portal-feat p  { font-size: 12.5px; color: var(--zp-muted) !important; line-height: 1.6; }

/* CTA card inside portal panels */
.zp-portal-cta {
  background: var(--zp-glass);
  border: 1px solid var(--zp-border);
  border-radius: var(--r3);
  padding: 36px;
  display: flex; flex-direction: column; gap: 20px;
  position: sticky; top: 120px;
}

/* ════════════════════════════════════
   PORTAL FEATURE CARDS (.zp-pf)
════════════════════════════════════ */
.zp-pf {
  background: var(--zp-glass);
  border: 1px solid var(--zp-border);
  border-radius: var(--r2);
  padding: 20px;
  transition: var(--tr);
}
.zp-pf:hover {
  background: var(--zp-glass2);
  border-color: var(--zp-border2);
  transform: translateY(-2px);
}
.zp-pf-icon {
  width: 38px; height: 38px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; margin-bottom: 12px;
}
.u-ico-bg { background: rgba(29,78,216,0.18); color: #60a5fa; }
.a-ico-bg { background: rgba(20,83,45,0.20);  color: #4ade80; }
.m-ico-bg { background: rgba(107,33,168,0.20);  color: #ad6cef; }
.zp-pf h4 { font-size: 13.5px; font-weight: 700; color: #fff !important; margin-bottom: 5px; }
.zp-pf p  { font-size: 12px; color: var(--zp-muted) !important; line-height: 1.6; margin: 0; }

/* ════════════════════════════════════
   PORTAL CTA BOX (.zp-portal-cta-box)
════════════════════════════════════ */
.zp-portal-cta-box {
  background: var(--zp-glass);
  border: 1px solid var(--zp-border);
  border-radius: var(--r3);
  padding: 36px;
  display: flex; flex-direction: column; gap: 20px;
  position: sticky; top: 120px;
  backdrop-filter: blur(12px);
}
.zp-pcb-header {
  display: flex; align-items: center; gap: 16px;
}
.zp-pcb-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: #fff !important; flex-shrink: 0;
}
.zp-pcb-icon.u { background: linear-gradient(135deg,var(--u-c1),var(--u-c2)); box-shadow: 0 8px 28px var(--u-glow); }
.zp-pcb-icon.a { background: linear-gradient(135deg,var(--a-c1),var(--a-c2)); box-shadow: 0 8px 28px var(--a-glow); }
.zp-pcb-icon.m { background: linear-gradient(135deg,var(--m-c1),var(--m-c2)); box-shadow: 0 8px 28px var(--m-glow); }
.zp-pcb-title {
  font-size: 20px; font-weight: 900; color: #fff !important;
}
.zp-pcb-sub {
  font-size: 12.5px; color: var(--zp-muted) !important; margin-top: 2px;
}
.zp-pcb-desc {
  font-size: 14px; color: var(--zp-muted) !important; line-height: 1.8;
}
.zp-pcb-link {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: var(--r); font-size: 14.5px;
  font-weight: 700; color: #fff !important; transition: var(--tr);
  text-decoration: none !important; border: none; cursor: pointer;
}
.zp-pcb-link.u { background: linear-gradient(135deg,var(--u-c1),var(--u-c2)); box-shadow: 0 8px 24px var(--u-glow); }
.zp-pcb-link.a { background: linear-gradient(135deg,var(--a-c1),var(--a-c2)); box-shadow: 0 8px 24px var(--a-glow); }
.zp-pcb-link.m { background: linear-gradient(135deg,var(--m-c1),var(--m-c2)); box-shadow: 0 8px 24px var(--m-glow); }
.zp-pcb-link:hover { opacity: 0.9; transform: translateY(-2px); }

/* ═══════════════════════════════════════════
   HTML CLASS ALIASES
   (HTML uses these names; CSS uses others —
   these aliases bridge the gap without
   touching every blade line)
═══════════════════════════════════════════ */

/* Layout container */
.zp-container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

/* Section typography */
.zp-sec-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: #60a5fa;
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.zp-sec-eyebrow::after { content:''; height:1px; width:32px; background:currentColor; border-radius:1px; }
body.rtl .zp-sec-eyebrow { flex-direction: row-reverse; }
body.rtl .zp-sec-eyebrow::after { display: none; }
body.rtl .zp-sec-eyebrow::before { content:''; height:1px; width:32px; background:currentColor; border-radius:1px; }
.zp-sec-title {
  font-size: clamp(28px,4vw,50px); font-weight: 900;
  color: #fff !important; line-height: 1.1; letter-spacing: -1.2px; margin-bottom: 14px;
}
.zp-sec-sub { font-size: 16px; color: var(--zp-muted) !important; line-height: 1.8; max-width: 600px; }

/* Hero button group */
.zp-btn-group { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.zp-btn-solid { background: linear-gradient(135deg,var(--u-c1),var(--u-c2)); box-shadow: 0 8px 32px var(--u-glow); }
.zp-btn-solid:hover { transform:translateY(-3px); box-shadow:0 14px 40px var(--u-glow); filter:brightness(1.1); color:#fff!important; }
.zp-btn-ghost { background: var(--zp-glass); border: 1px solid var(--zp-border2); color: var(--zp-text) !important; }
.zp-btn-ghost:hover { background:var(--zp-glass2); border-color:rgba(255,255,255,.3); color:#fff!important; transform:translateY(-2px); }
@media(max-width:767px){ .zp-btn-group { flex-direction:column; } }

/* Hero stats grid */
.zp-hero-stats {
  display: grid; grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--zp-border); border-radius: var(--r2);
  overflow: hidden; background: rgba(255,255,255,0.025);
}
@media(max-width:800px){ .zp-hero-stats { grid-template-columns:repeat(2,1fr); } }

/* Hero portal card stack */
.zp-portal-stack { display: flex; flex-direction: column; gap: 13px; }

/* Three Portals section — overrides the flex-column from .zp-portals */
section.zp-portals {
  display: block;
  padding: 100px 0;
  background: var(--zp-bg2);
  position: relative;
  overflow: hidden;
}

/* Portal tabs container */
.zp-portals-tabs { display: flex; gap: 10px; flex-wrap: wrap; }
@media(max-width:600px){ .zp-portals-tabs { justify-content:center; } }

/* Tab active colours (HTML uses user-tab / agent-tab / merchant-tab) */
.zp-tab.user-tab.active     { background:rgba(29,78,216,.18); border-color:rgba(96,165,250,.5); color:#60a5fa!important; }
.zp-tab.agent-tab.active    { background:rgba(20,83,45,.18);  border-color:rgba(74,222,128,.5); color:#4ade80!important; }
.zp-tab.merchant-tab.active { background:rgba(107,33,168,.18);  border-color:rgba(173,108,239,.5); color:#ad6cef!important; }

/* Live Rates section */
.zp-rates { padding: 80px 0; background: var(--zp-bg); border-top: 1px solid var(--zp-border); }
.zp-rates-head {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; margin-bottom: 36px;
}
.zp-live-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 50px;
  background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.25);
  font-size: 12px; font-weight: 700; color: #4ade80;
}
.zp-live-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80; animation: blink 1.5s infinite;
}
.zp-rc-sub { font-size: 11px; color: var(--zp-muted)!important; margin-top: 4px; }
.zp-rates-all { text-align: center; }

/* Link style */
.zp-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14.5px; font-weight: 700; color: #60a5fa !important; transition: var(--tr);
}
.zp-link:hover { gap: 13px; color: #93c5fd !important; }

/* CTA section */
.zp-cta {
  padding: 100px 0; background: var(--zp-bg2);
  border-top: 1px solid var(--zp-border);
  text-align: center; position: relative; overflow: hidden;
}
.zp-cta-box { max-width: 700px; margin: 0 auto; position: relative; z-index: 2; }
.zp-cta-box h2 {
  font-size: clamp(32px,5vw,56px); font-weight: 900;
  color: #fff !important; letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 18px;
}
.zp-cta-box p { font-size: 17px; color: var(--zp-muted)!important; line-height: 1.8; margin-bottom: 42px; }
.zp-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Gradient text alias used in hero h1 and section headings */
.grad {
  background: linear-gradient(130deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Live dot (hero tag) */
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80; box-shadow: 0 0 10px #4ade80;
  animation: blink 2s infinite; display: inline-block;
}

/* Ticker aliases */
.zp-ticker-live {
  position: absolute; left: 0; top: 0; bottom: 0; z-index: 3;
  display: flex; align-items: center; padding: 0 18px;
  background: linear-gradient(135deg,var(--u-c1),var(--u-c2));
  font-size: 9px; font-weight: 800; letter-spacing: 2px; color: #fff; gap: 5px;
}
body.rtl .zp-ticker-live { left: auto; right: 0; }
.zp-ticker-track {
  display: flex; align-items: center; height: 100%;
  animation: scroll-lr 55s linear infinite; white-space: nowrap; padding-left: 88px;
}
body.rtl .zp-ticker-track { padding-left: 0; padding-right: 88px; }
.zp-ticker-track:hover { animation-play-state: paused; }
.zp-ti .lbl { color: var(--zp-muted); font-size: 11px; font-weight: 600; letter-spacing: .5px; }
.zp-ti .up  { color: #4ade80; font-size: 10px; }

/* Hero floating widgets aliases (HTML: zp-float / CSS: zp-fw) */
.zp-float { position: absolute; background: rgba(4,11,28,.88); border: 1px solid var(--zp-border2); border-radius: var(--r2); padding: 16px 18px; backdrop-filter: blur(28px); z-index: 3; }
.zp-float-1 { top: 30px; left: -24px; min-width: 210px; }
.zp-float-2 { bottom: 28px; right: -18px; min-width: 200px; }
body.rtl .zp-float-1 { left: auto; right: -28px; }
body.rtl .zp-float-2 { right: auto; left: -24px; }
.zp-float-hd  { font-size: 10px; color: var(--zp-muted) !important; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }
.zp-float-row { display: flex; align-items: center; gap: 11px; }
.zp-float-ico { width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.zp-float-ico.g { background:rgba(74,222,128,.15); color:#4ade80; }
.zp-float-ico.b { background:rgba(96,165,250,.15); color:#60a5fa; }
.zp-float-lbl   { font-size: 11px; color: var(--zp-muted) !important; }
.zp-float-val   { font-size: 16px; font-weight: 800; color: #4ade80 !important; }
@media(max-width:767px){ .zp-float { display:none; } }

/* Mini virtual card alias (HTML: zp-mini-virtual / CSS: zp-mini-card) */
.zp-mini-virtual {
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(135deg,rgba(29,78,216,.3),rgba(107,33,168,.25));
  border: 1px solid rgba(96,165,250,.25); border-radius: 10px;
  padding: 12px 16px; font-size: 13px; font-weight: 700;
  color: #fff !important; font-family: 'Courier New',monospace; letter-spacing: .8px;
}

/* Portal card type aliases (HTML: zp-pc-user/agent/merchant, CSS: zp-pc-u/a/m) */
.zp-pc-user     { background: linear-gradient(135deg,rgba(29,78,216,.1),rgba(29,78,216,.04)); border-color:rgba(59,130,246,.2); }
.zp-pc-user::after { background: linear-gradient(180deg,#60a5fa,#1d4ed8); }
.zp-pc-user:hover  { background:linear-gradient(135deg,rgba(29,78,216,.18),rgba(29,78,216,.08)); border-color:rgba(96,165,250,.5); box-shadow:0 20px 60px rgba(29,78,216,.22); transform:translateX(-5px); }
.zp-pc-agent    { background: linear-gradient(135deg,rgba(20,83,45,.12),rgba(20,83,45,.04)); border-color:rgba(74,222,128,.18); }
.zp-pc-agent::after { background: linear-gradient(180deg,#4ade80,#14532d); }
.zp-pc-agent:hover  { background:linear-gradient(135deg,rgba(20,83,45,.22),rgba(20,83,45,.08)); border-color:rgba(74,222,128,.45); box-shadow:0 20px 60px var(--a-glow); transform:translateX(-5px); }
.zp-pc-merchant { background: linear-gradient(135deg,rgba(107,33,168,.12),rgba(107,33,168,.04)); border-color:rgba(173,108,239,.18); }
.zp-pc-merchant::after { background: linear-gradient(180deg,#ad6cef,#6b21a8); }
.zp-pc-merchant:hover  { background:linear-gradient(135deg,rgba(107,33,168,.22),rgba(107,33,168,.08)); border-color:rgba(173,108,239,.45); box-shadow:0 20px 60px var(--m-glow); transform:translateX(-5px); }
body.rtl .zp-pc-user:hover, body.rtl .zp-pc-agent:hover, body.rtl .zp-pc-merchant:hover { transform:translateX(5px); }
.zp-pc-user    .zp-pc-badge { color:#60a5fa; background:rgba(96,165,250,.1); border-color:rgba(96,165,250,.3); }
.zp-pc-agent   .zp-pc-badge { color:#4ade80; background:rgba(74,222,128,.1); border-color:rgba(74,222,128,.3); }
.zp-pc-merchant.zp-pc-badge { color:#ad6cef; background:rgba(173,108,239,.1); border-color:rgba(173,108,239,.3); }

/* Portal card icon aliases (HTML: zp-pc-icon user-ico/agent-ico/merchant-ico) */
.zp-pc-icon {
  width: 46px; height: 46px; border-radius: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; color: #fff !important;
}
.zp-pc-icon.user-ico     { background:linear-gradient(135deg,var(--u-c1),var(--u-c2)); box-shadow:0 6px 20px var(--u-glow); }
.zp-pc-icon.agent-ico    { background:linear-gradient(135deg,var(--a-c1),var(--a-c2)); box-shadow:0 6px 20px var(--a-glow); }
.zp-pc-icon.merchant-ico { background:linear-gradient(135deg,var(--m-c1),var(--m-c2)); box-shadow:0 6px 20px var(--m-glow); }

/* Launch section: flag row & cards list */
.zp-flag-row { display: flex; gap: 14px; margin-bottom: 28px; flex-wrap: wrap; }
.zp-launch-cards { display: flex; flex-direction: column; gap: 14px; }
.zp-lc-icon {
  width: 46px; height: 46px; border-radius: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; background: rgba(29,78,216,.15); color: #60a5fa;
}

/* ═══════════════════════════════════════════
   PATCH v5 — Hero Slider + Logo + Lang + Footer + Inner Pages
═══════════════════════════════════════════ */

/* ── Hero Slider ── */
.zp-hero-slider {
  position: relative;
  min-height: 500px;
}
.zp-hslide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s ease;
}
.zp-hslide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

/* Slider dots */
.zp-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.zp-sdot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.zp-sdot.active {
  width: 28px;
  border-radius: 4px;
  background: #60a5fa;
}

/* ── SLIDE 2: Bank Card Ad ── */
.zp-adv-card-slide {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.zp-adv-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(96,165,250,0.12);
  border: 1px solid rgba(96,165,250,0.3);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 12px;
  font-weight: 700;
  color: #60a5fa;
  letter-spacing: 0.05em;
  width: fit-content;
}
.zp-bank-card {
  background: linear-gradient(135deg, #0d1b3e 0%, #1b2e5f 40%, #2d5299 100%);
  border-radius: 20px;
  padding: 28px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(29,78,216,0.4), 0 0 0 1px rgba(96,165,250,0.2);
  min-height: 180px;
}
.zp-bc-glow {
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(96,165,250,0.25), transparent 70%);
  top: -100px; right: -80px;
  border-radius: 50%;
  pointer-events: none;
}
.zp-bc-circles {
  position: absolute;
  bottom: -40px; right: -20px;
  width: 200px; height: 200px;
  border: 40px solid rgba(255,255,255,0.05);
  border-radius: 50%;
}
.zp-bc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.zp-bc-chip {
  width: 42px; height: 32px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zp-chip-inner {
  width: 28px; height: 20px;
  border: 2px solid rgba(0,0,0,0.2);
  border-radius: 3px;
}
.zp-bc-num {
  font-size: 20px;
  font-family: 'Courier New', monospace;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  font-weight: 600;
}
.zp-bc-bottom {
  display: flex;
  align-items: flex-end;
  gap: 28px;
  position: relative;
  z-index: 1;
}
.zp-bc-lbl {
  font-size: 9px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.zp-bc-val {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}
.zp-bc-network {
  font-size: 22px;
  font-weight: 900;
  color: rgba(255,255,255,0.9);
  font-style: italic;
  letter-spacing: -1px;
  margin-left: auto;
}
.zp-adv-card-text h3 {
  font-size: 26px;
  font-weight: 800;
  color: #fff !important;
  line-height: 1.2;
  margin-bottom: 8px;
}
.zp-adv-card-text h3 span {
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.zp-adv-card-text p { font-size: 14px; color: var(--zp-muted) !important; margin-bottom: 16px; }
.zp-adv-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #2d5299, #3b6fd4);
  color: #fff !important;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(59,111,212,0.4);
}
.zp-adv-cta:hover { transform: translateY(-2px); filter: brightness(1.1); color: #fff !important; }
.zp-adv-stats {
  display: flex;
  gap: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px;
  margin-top: 4px;
}
.zp-adv-stat { display: flex; flex-direction: column; }
.zp-adv-stat .n { font-size: 22px; font-weight: 800; color: #60a5fa !important; }
.zp-adv-stat .l { font-size: 11px; color: var(--zp-muted) !important; }

/* ── SLIDE 3: Professional Ad ── */
.zp-adv-pro-slide {
  display: flex;
  gap: 24px;
  align-items: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 32px;
  min-height: 480px;
}
.zp-pro-portrait {
  flex: 0 0 160px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.zp-pro-silhouette {
  width: 140px;
  height: 280px;
  position: relative;
}
.zp-pro-head {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #94a3b8, #cbd5e1);
  border-radius: 50%;
  margin: 0 auto 8px;
  position: relative;
}
.zp-pro-body {
  width: 80px; height: 90px;
  background: linear-gradient(135deg, #1e3a8a, #1d4ed8);
  border-radius: 40px 40px 0 0;
  margin: 0 auto;
  position: relative;
}
.zp-pro-suit-left {
  position: absolute;
  bottom: 0; left: 0;
  width: 55px; height: 130px;
  background: linear-gradient(135deg, #1e3a8a, #1e40af);
  border-radius: 0 0 0 20px;
  clip-path: polygon(0 0, 100% 30%, 80% 100%, 0 100%);
}
.zp-pro-suit-right {
  position: absolute;
  bottom: 0; right: 0;
  width: 55px; height: 130px;
  background: linear-gradient(135deg, #1e40af, #2563eb);
  border-radius: 0 0 20px 0;
  clip-path: polygon(0 30%, 100% 0, 100% 100%, 20% 100%);
}
.zp-pro-badge-float {
  position: absolute;
  top: 10px; right: -15px;
  background: linear-gradient(135deg, #166534, #16a34a);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(22,163,74,0.4);
}
.zp-pro-content { flex: 1; }
.zp-pro-label {
  display: inline-block;
  background: rgba(96,165,250,0.12);
  border: 1px solid rgba(96,165,250,0.3);
  color: #60a5fa;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.zp-pro-content h3 {
  font-size: 26px;
  font-weight: 800;
  color: #fff !important;
  line-height: 1.2;
  margin-bottom: 10px;
}
.zp-pro-content h3 span { color: #60a5fa !important; }
.zp-pro-content p { font-size: 13px; color: var(--zp-muted) !important; line-height: 1.7; margin-bottom: 18px; }
.zp-pro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.zp-pro-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(190,215,255,0.8) !important;
  font-weight: 500;
}
.zp-pro-feat i { color: #60a5fa; font-size: 14px; }

/* ── Logo: silver/white on dark header ── */
.header-section .site-logo img {
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(148,180,255,0.35)) !important;
  height: 40px !important;
  width: auto !important;
}

/* ── Language Dropdown ── */
.lang-select {
  position: relative;
  z-index: 1100;
}
.lang-select select.form--control {
  display: none !important;
}
.lang-select .nice-select {
  background: rgba(255,255,255,0.07) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  border-radius: 10px !important;
  color: rgba(190,215,255,0.85) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  padding: 0 36px 0 14px !important;
  height: 38px !important;
  line-height: 36px !important;
  min-width: 90px;
}
.lang-select .nice-select::after {
  border-color: rgba(190,215,255,0.6) !important;
  right: 12px !important;
}
.lang-select .nice-select.open {
  border-color: rgba(96,165,250,0.5) !important;
}
.lang-select .nice-select .list {
  background: rgba(4,11,28,0.97) !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: 14px !important;
  box-shadow: 0 16px 50px rgba(0,0,0,0.6) !important;
  z-index: 9999 !important;
  overflow: hidden;
  min-width: 140px;
  margin-top: 6px !important;
}
.lang-select .nice-select .option {
  color: rgba(190,215,255,0.85) !important;
  font-size: 13px !important;
  padding: 10px 16px !important;
  background: transparent !important;
}
.lang-select .nice-select .option:hover,
.lang-select .nice-select .option.selected {
  background: rgba(96,165,250,0.15) !important;
  color: #fff !important;
}

/* ── FOOTER Complete Redesign ── */
.footer-section {
  background: #030c1a !important;
  border-top: 1px solid rgba(255,255,255,0.07) !important;
  padding-top: 80px !important;
}
.footer-section * { color: rgba(148,180,220,0.8) !important; }
.footer-section a { text-decoration: none !important; transition: color 0.2s !important; }
.footer-section a:hover { color: #fff !important; }

.footer-section .footer-logo { margin-bottom: 20px; }
.footer-section .footer-content p {
  font-size: 14px !important;
  line-height: 1.8 !important;
  color: rgba(148,180,220,0.65) !important;
  margin-bottom: 20px !important;
}
.footer-section .footer-list.logo li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px !important;
  margin-bottom: 10px;
}
.footer-section .footer-list.logo li i { color: #60a5fa !important; font-size: 15px !important; }

.footer-section .widget-title {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #fff !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  margin-bottom: 20px !important;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-section .footer-list li {
  margin-bottom: 10px !important;
  font-size: 13.5px !important;
}
.footer-section .footer-list li a {
  color: rgba(148,180,220,0.7) !important;
  position: relative;
  padding-left: 14px;
}
.footer-section .footer-list li a::before {
  content: '›';
  position: absolute;
  left: 0;
  color: #60a5fa;
  font-size: 16px;
  line-height: 1;
  top: 0;
}
.footer-section .footer-list li a:hover { color: #fff !important; }

.footer-section .footer-list.two .app-img img {
  filter: brightness(0.85) !important;
  border-radius: 10px;
  transition: filter 0.2s;
}
.footer-section .footer-list.two .app-img:hover img { filter: brightness(1) !important; }

/* Newsletter in footer */
.footer-section .form--control {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 10px !important;
  color: #fff !important;
  padding: 11px 14px !important;
  font-size: 13px !important;
  margin-bottom: 12px;
}
.footer-section .form--control::placeholder { color: rgba(148,180,220,0.5) !important; }
.footer-section .sub-btn {
  background: linear-gradient(135deg, #1b2e5f, #3b6fd4) !important;
  border: none !important;
  border-radius: 10px !important;
  color: #fff !important;
  padding: 12px !important;
  font-weight: 700 !important;
}
.footer-section .sub-btn:hover { filter: brightness(1.12) !important; transform: translateY(-1px) !important; }
.footer-section .input-icon { display: none !important; }

/* Copyright bar */
.copyright-area {
  background: #020810 !important;
  border-top: 1px solid rgba(255,255,255,0.06) !important;
  padding: 18px 0 !important;
  margin-top: 0 !important;
}
.copyright-area * { color: rgba(100,140,180,0.7) !important; font-size: 13px !important; }
.copyright-area a { color: #60a5fa !important; font-weight: 600 !important; }
.copyright-area .copyright-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-social { display: flex; gap: 10px; list-style: none; padding: 0; margin: 0; }
.footer-social li a {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(148,180,220,0.7) !important;
  font-size: 14px !important;
  transition: all 0.2s;
}
.footer-social li a:hover {
  background: rgba(96,165,250,0.15) !important;
  color: #60a5fa !important;
  border-color: rgba(96,165,250,0.4) !important;
}

/* ── Inner Pages Fix (header-section.blade.php) ── */
.details-page-banner {
  background: linear-gradient(135deg, #030c1a 0%, #0d1b3e 60%, #061228 100%) !important;
  padding: 100px 0 80px !important;
  position: relative;
  overflow: hidden;
}
.details-page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(59,111,212,0.15) 0%, transparent 50%),
                    radial-gradient(circle at 80% 50%, rgba(29,78,216,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.details-page-banner .banner-element { display: none; }
.details-banner-wrapper .section-sub-titel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(96,165,250,0.12);
  border: 1px solid rgba(96,165,250,0.3);
  color: #60a5fa !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.details-banner-wrapper .title {
  font-size: clamp(28px, 4vw, 48px) !important;
  font-weight: 800 !important;
  color: #fff !important;
  line-height: 1.2 !important;
  margin-bottom: 16px !important;
}
.details-banner-wrapper .sub-title {
  font-size: 16px !important;
  color: rgba(148,180,220,0.8) !important;
  line-height: 1.7 !important;
  margin-bottom: 24px !important;
}
.details-banner-wrapper .process-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.details-banner-wrapper .process-steps h3.title { font-size: 15px !important; color: rgba(148,180,220,0.7) !important; margin-bottom: 12px !important; font-weight: 600 !important; }
.details-banner-wrapper .process-steps li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(190,215,255,0.85) !important;
  font-size: 14px;
}
.details-banner-wrapper .process-steps li span { color: #60a5fa !important; font-weight: 700; min-width: 24px; }
.details-banner-wrapper .view-page-btn .btn--base {
  background: linear-gradient(135deg, #2d5299, #3b6fd4) !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 13px 28px !important;
  font-weight: 700 !important;
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(59,111,212,0.4) !important;
}

/* Inner page step section */
.view-demo {
  background: #040e20 !important;
  padding: 80px 0 !important;
}
.view-demo .banner-title .title,
.view-demo .sub-title h4 {
  color: #fff !important;
}
.view-demo .sub-title h4 { color: rgba(148,180,220,0.8) !important; font-size: 16px !important; font-weight: 400 !important; }

/* Inner page FAQ */
.faq-section {
  background: #030c1a !important;
}
.faq-section .section-title { color: #fff !important; }
.faq-section .section-header p { color: rgba(148,180,220,0.8) !important; }
.faq-item {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 14px !important;
  margin-bottom: 12px !important;
  overflow: hidden;
}
.faq-title {
  padding: 18px 22px !important;
  cursor: pointer;
}
.faq-title .title { color: #fff !important; font-size: 15px !important; font-weight: 600 !important; }
.faq-content { padding: 0 22px 18px !important; }
.faq-content p { color: rgba(148,180,220,0.8) !important; font-size: 14px !important; line-height: 1.7 !important; }
.faq-element { display: none !important; }

@media (max-width: 768px) {
  .zp-hero-slider { min-height: 400px; }
  .zp-adv-pro-slide { flex-direction: column; padding: 24px; }
  .zp-pro-portrait { flex: none; }
}
