/* ============================================================
   ZPMOM – Modern Design System  2025
   ============================================================ */

/* ── 1. TOKENS ─────────────────────────────────────────────── */
:root {
  --navy:        #0f1b35;
  --navy-mid:    #1a2d56;
  --navy-light:  #243a6e;
  --gold:        #c9973a;
  --gold-light:  #e8b455;
  --white:       #ffffff;
  --off-white:   #f7f8fb;
  --gray-50:     #f1f3f7;
  --gray-100:    #e5e8ef;
  --gray-400:    #94a3b8;
  --gray-500:    #78889f;
  --gray-600:    #64748b;
  --gray-800:    #1e2d4a;
  --shadow-sm:   0 1px 4px rgba(15,27,53,.07);
  --shadow-md:   0 4px 20px rgba(15,27,53,.10);
  --shadow-lg:   0 8px 40px rgba(15,27,53,.14);
  --shadow-xl:   0 16px 60px rgba(15,27,53,.18);
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --ease:        cubic-bezier(.4,0,.2,1);
  --dur:         .28s;
  --nav-h:       72px;
  --topbar-h:    38px;
}

/* ── 2. RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; transition: color var(--dur) var(--ease); }

/* ── 3. KILL OLD INSUR CHROME ──────────────────────────────── */
body.custom-cursor          { cursor: auto !important; }
.custom-cursor__cursor,
.custom-cursor__cursor-two,
.preloader                  { display: none !important; }
.main-header,
.main-header-two,
.stricky-header             { display: none !important; }
.site-footer                { display: none !important; }
.scroll-to-top              { display: none !important; }
.mobile-nav__wrapper        { display: none !important; }
.search-popup               { display: none !important; }
.page-wrapper               { padding-top: 0 !important; }

/* ── 4. TYPOGRAPHY ─────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
}

.zp-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.zp-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

.zp-title {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 18px;
  line-height: 1.15;
}
.zp-title span { color: var(--gold); }

.zp-subtitle {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.75;
  max-width: 580px;
}

/* ── 5. BUTTONS ────────────────────────────────────────────── */
.zp-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .2px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  line-height: 1;
  font-family: inherit;
}
.zp-btn:hover { transform: translateY(-2px); }

.zp-btn--primary  { background: var(--navy); color: var(--white); }
.zp-btn--primary:hover {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 6px 22px rgba(201,151,58,.38);
}

.zp-btn--gold { background: var(--gold); color: var(--white); }
.zp-btn--gold:hover {
  background: var(--gold-light);
  color: var(--white);
  box-shadow: 0 6px 22px rgba(201,151,58,.4);
}

.zp-btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.zp-btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}

.zp-btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.zp-btn--outline-white:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.zp-btn--lg { padding: 16px 36px; font-size: 15px; border-radius: 12px; }
.zp-btn--sm { padding: 9px 18px;  font-size: 13px; border-radius: 8px; }

/* ── 6. LAYOUT HELPERS ─────────────────────────────────────── */
.zp-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

.zp-sec      { padding: 80px 0; }
.zp-sec--sm  { padding: 52px 0; }
.zp-sec--lg  { padding: 100px 0; }
.zp-sec--dark { background: var(--navy); }
.zp-sec--soft { background: var(--off-white); }

.zp-sec-head         { margin-bottom: 52px; }
.zp-sec-head.center  { text-align: center; }
.zp-sec-head.center .zp-label  { justify-content: center; }
.zp-sec-head.center .zp-label::before { display: none; }
.zp-sec-head.center .zp-subtitle { margin: 0 auto; }

/* ── 7a. TOP BAR ────────────────────────────────────────────── */
.zp-topbar {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #08111f;
  border-bottom: 1px solid rgba(201,151,58,.18);
  height: var(--topbar-h);
  width: 100%;
}
.zp-topbar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.zp-topbar__left {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.58);
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  flex: 1;
}
.zp-topbar__left i { color: var(--gold); font-size: 11px; flex-shrink: 0; }
.zp-topbar__right {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.zp-topbar__item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  border-right: 1px solid rgba(255,255,255,.08);
  white-space: nowrap;
}
.zp-topbar__item i { color: var(--gold); font-size: 11px; }
.zp-topbar__item a {
  font-size: 12px;
  color: rgba(255,255,255,.62);
  transition: color var(--dur);
}
.zp-topbar__item a:hover { color: var(--gold-light); }
.zp-topbar__socials {
  display: flex;
  align-items: center;
  gap: 2px;
  padding-left: 12px;
}
.zp-topbar__socials a {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.45);
  border-radius: 7px;
  font-size: 12px;
  transition: all var(--dur);
}
.zp-topbar__socials a:hover {
  background: rgba(201,151,58,.18);
  color: var(--gold-light);
}
@media (max-width: 991px) {
  .zp-topbar__left { display: none; }
  .zp-topbar__item--hide-md { display: none; }
}
@media (max-width: 575px) { .zp-topbar { display: none; } }

/* ── 7. NAVIGATION ─────────────────────────────────────────── */
.zp-nav {
  position: sticky;
  top: var(--topbar-h);
  z-index: 9998;
  height: var(--nav-h);
  width: 100%;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border-bottom: 1px solid rgba(15,27,53,.07);
  transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.zp-nav::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.zp-nav.scrolled {
  box-shadow: 0 2px 24px rgba(15,27,53,.08), 0 1px 0 rgba(15,27,53,.04);
  border-color: transparent;
}
.zp-nav.scrolled::after { opacity: 1; }

.zp-nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Logo */
.zp-nav__logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  text-decoration: none;
}
.zp-nav__logo img { height: 44px; width: auto; }
.zp-nav__logo-wordmark {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.zp-nav__logo-wordmark strong {
  font-size: 13.5px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -.02em;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.zp-nav__logo-wordmark em {
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .08em;
  text-transform: uppercase;
}
@media (max-width: 1100px) { .zp-nav__logo-wordmark { display: none; } }

/* Desktop links */
.zp-nav__links {
  display: flex;
  list-style: none;
  gap: 2px;
  flex: 1;
  margin: 0;
  padding: 0;
}
@media (max-width: 1023px) { .zp-nav__links { display: none; } }

.zp-nav__links > li { position: relative; }

.zp-nav__links > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 13px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gray-600);
  border-radius: 8px;
  white-space: nowrap;
  letter-spacing: -.01em;
  transition: color var(--dur), background var(--dur);
}
.zp-nav__links > li > a:hover { color: var(--navy); background: var(--gray-50); }
.zp-nav__links > li.active > a { color: var(--navy); font-weight: 700; }
.zp-nav__links > li.active > a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 13px; right: 13px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
}
.zp-nav__links > li > a i { font-size: 9px; opacity: .5; transition: transform var(--dur); }
.zp-nav__links > li:hover > a i { transform: rotate(180deg); opacity: .8; }

/* Dropdown */
.zp-drop {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-100);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(.97);
  transition: all var(--dur) var(--ease);
  z-index: 999;
}
.zp-nav__links > li:hover .zp-drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.zp-drop a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-800);
  border-radius: 8px;
}
.zp-drop a::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  opacity: 0;
  transition: opacity var(--dur);
}
.zp-drop a:hover {
  background: var(--off-white);
  color: var(--navy);
}
.zp-drop a:hover::before { opacity: 1; }

/* Actions */
.zp-nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}

.zp-icon-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-800);
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--dur) var(--ease);
  position: relative;
}
.zp-icon-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.zp-cart-badge {
  position: absolute;
  top: -5px; right: -5px;
  min-width: 18px; height: 18px;
  background: var(--gold);
  color: var(--white);
  font-size: 10px; font-weight: 800;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--white);
}

/* Hamburger */
.zp-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  border-radius: 8px;
}
@media (max-width: 1023px) { .zp-hamburger { display: flex; } }

.zp-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
}
.zp-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.zp-hamburger.open span:nth-child(2) { opacity: 0; }
.zp-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.zp-drawer {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 9997;
  visibility: hidden;
}
.zp-drawer.open { visibility: visible; }

.zp-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,27,53,.55);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.zp-drawer.open .zp-drawer__overlay { opacity: 1; }

.zp-drawer__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 90vw);
  background: var(--white);
  padding: 24px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  box-shadow: var(--shadow-xl);
}
.zp-drawer.open .zp-drawer__panel { transform: none; }

.zp-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.zp-drawer__close {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--gray-50);
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: var(--gray-800);
  display: flex;
  align-items: center;
  justify-content: center;
}

.zp-drawer__list {
  list-style: none;
  margin: 0 0 24px;
}
.zp-drawer__list li { border-bottom: 1px solid var(--gray-100); }
.zp-drawer__list > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-800);
}
.zp-drawer__list > li > a:hover { color: var(--gold); }

.zp-drawer__sub {
  list-style: none;
  padding: 4px 0 12px 16px;
}
.zp-drawer__sub li a {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
}
.zp-drawer__sub li a:hover { color: var(--gold); }

.zp-drawer__social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.zp-drawer__social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--gray-50);
  color: var(--gray-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.zp-drawer__social a:hover {
  background: var(--navy);
  color: var(--white);
}

/* ── 8. PAGE CONTENT OFFSET ────────────────────────────────── */
.zp-page { padding-top: 0; }

/* ── 9. HERO SLIDER ────────────────────────────────────────── */
.zp-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.zp-hero .swiper-wrapper { align-items: stretch; }
.zp-hero__slide {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
}
.zp-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.zp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(15,27,53,.88) 0%,
    rgba(15,27,53,.62) 55%,
    rgba(15,27,53,.28) 100%
  );
}
.zp-hero__body {
  position: relative;
  z-index: 2;
  max-width: 660px;
  padding: 48px 0;
}
.zp-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,151,58,.18);
  border: 1px solid rgba(201,151,58,.35);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 22px;
}
.zp-hero__chip i { font-size: 9px; }
.zp-hero__title {
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.07;
  margin-bottom: 22px;
  letter-spacing: -.5px;
}
.zp-hero__title span { color: var(--gold-light); }
.zp-hero__desc {
  font-size: 17px;
  color: rgba(255,255,255,.78);
  line-height: 1.75;
  margin-bottom: 38px;
  max-width: 500px;
}
.zp-hero__acts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.zp-hero__play {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  transition: color var(--dur) var(--ease);
}
.zp-hero__play:hover { color: var(--gold-light); }
.zp-hero__play-circle {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  padding-left: 3px;
  transition: all var(--dur) var(--ease);
  box-shadow: 0 0 0 10px rgba(255,255,255,.15);
}
.zp-hero__play:hover .zp-hero__play-circle {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 0 0 10px rgba(201,151,58,.2);
}

/* Slider controls */
.zp-hero__ctrl {
  position: absolute;
  bottom: 36px;
  left: 28px;
  display: flex;
  gap: 10px;
  z-index: 10;
}
.zp-hero__ctrl-btn {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all var(--dur) var(--ease);
}
.zp-hero__ctrl-btn:hover { background: var(--gold); border-color: var(--gold); }

.zp-hero .swiper-pagination {
  bottom: 46px !important;
  right: 28px !important;
  left: auto !important;
  width: auto !important;
}
.zp-hero .swiper-pagination-bullet {
  width: 8px; height: 8px;
  background: rgba(255,255,255,.4);
  opacity: 1;
  border-radius: 4px;
  transition: all .3s;
}
.zp-hero .swiper-pagination-bullet-active {
  width: 28px;
  background: var(--gold);
}

/* ── 10. PILLARS (Vision / Mission / Values) ───────────────── */
.zp-pillars {
  background: var(--navy);
  padding: 52px 0;
}
.zp-pillar {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.08);
  height: 100%;
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}
.zp-pillar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,151,58,.06), transparent);
  opacity: 0;
  transition: opacity var(--dur);
}
.zp-pillar:hover { transform: translateY(-5px); border-color: rgba(201,151,58,.25); }
.zp-pillar:hover::before { opacity: 1; }

.zp-pillar__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(201,151,58,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.zp-pillar h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.zp-pillar p {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  margin: 0;
}

/* ── 11. ABOUT ─────────────────────────────────────────────── */
.zp-about__img {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.zp-about__img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}
.zp-about__stat {
  position: absolute;
  bottom: 24px; right: 24px;
  background: var(--white);
  border-radius: 18px;
  padding: 20px 28px;
  box-shadow: var(--shadow-xl);
  text-align: center;
  min-width: 130px;
}
.zp-about__stat-n {
  font-size: 38px;
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1;
  letter-spacing: -1px;
}
.zp-about__stat-l {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 5px;
  display: block;
}

.zp-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-bottom: 28px;
}
.zp-check-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gray-800);
}
.zp-check-item i { color: var(--gold); font-size: 13px; flex-shrink: 0; }

.zp-founder-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 99px;
  padding: 6px 20px 6px 6px;
  margin-top: 12px;
}
.zp-founder-pill img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.zp-founder-pill__name { font-size: 14px; font-weight: 700; color: var(--navy); }
.zp-founder-pill__role { font-size: 11px; color: var(--gray-600); }

/* ── 12. BENEFITS ──────────────────────────────────────────── */
.zp-benefits {
  position: relative;
  overflow: hidden;
}
.zp-benefits__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.zp-benefits__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15,27,53,.95) 0%,
    rgba(15,27,53,.85) 45%,
    rgba(15,27,53,.3) 100%
  );
}
.zp-benefits__content {
  position: relative;
  z-index: 2;
}
.zp-benefits__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.zp-benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  transition: all var(--dur) var(--ease);
}
.zp-benefit-item:hover {
  background: rgba(201,151,58,.15);
  border-color: rgba(201,151,58,.35);
  color: var(--white);
}
.zp-benefit-item i { color: var(--gold-light); font-size: 13px; flex-shrink: 0; }

/* ── 13. MINISTRY EXPRESSIONS ──────────────────────────────── */
.zp-expr-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.zp-expr-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}
.zp-expr-card:hover img { transform: scale(1.06); }
.zp-expr-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,27,53,.92) 0%, transparent 55%);
  transition: all var(--dur) var(--ease);
}
.zp-expr-card:hover .zp-expr-card__overlay {
  background: linear-gradient(to top, rgba(15,27,53,.96) 0%, rgba(15,27,53,.2) 70%);
}
.zp-expr-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 26px;
}
.zp-expr-card__tag {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.zp-expr-card__title {
  font-size: 20px; font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
}
.zp-expr-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px; font-weight: 700;
  color: var(--white);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  padding: 7px 14px;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--dur) var(--ease);
}
.zp-expr-card:hover .zp-expr-card__link {
  opacity: 1;
  transform: none;
}
.zp-expr-card__link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* ── 14. VIDEO CARD ────────────────────────────────────────── */
.zp-vid-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow-md);
  transition: all var(--dur) var(--ease);
}
.zp-vid-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}
.zp-vid-card__thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.zp-vid-card__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.38);
  transition: all .5s;
}
.zp-vid-card:hover .zp-vid-card__thumb img {
  transform: scale(1.05);
  filter: brightness(.28);
}
.zp-vid-card__play-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zp-vid-card__play-btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  padding-left: 3px;
  text-decoration: none;
  box-shadow: 0 0 0 10px rgba(255,255,255,.14);
  transition: all var(--dur) var(--ease);
}
.zp-vid-card:hover .zp-vid-card__play-btn {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 0 0 10px rgba(201,151,58,.18);
}
.zp-vid-card__body { padding: 20px; }
.zp-vid-card__meta {
  display: flex;
  gap: 16px;
  margin-bottom: 8px;
}
.zp-vid-card__meta a {
  font-size: 12px;
  color: rgba(255,255,255,.45);
}
.zp-vid-card__meta a i { color: var(--gold); margin-right: 4px; }
.zp-vid-card__title a {
  font-size: 15px; font-weight: 700;
  color: var(--white);
  line-height: 1.45;
  transition: color var(--dur);
}
.zp-vid-card__title a:hover { color: var(--gold-light); }

/* ── 15. BLOG CARD ─────────────────────────────────────────── */
.zp-blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  height: 100%;
  transition: all var(--dur) var(--ease);
}
.zp-blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.zp-blog-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.zp-blog-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.zp-blog-card:hover .zp-blog-card__img img { transform: scale(1.04); }
.zp-blog-card__body { padding: 24px; }
.zp-blog-card__cat {
  font-size: 10px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.zp-blog-card__title {
  font-size: 17px; font-weight: 800;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 14px;
}
.zp-blog-card__title a { color: inherit; }
.zp-blog-card__title a:hover { color: var(--gold); }
.zp-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
}
.zp-blog-card__author {
  display: flex;
  align-items: center;
  gap: 8px;
}
.zp-blog-card__author img {
  width: 28px; height: 28px;
  border-radius: 50%;
  object-fit: cover;
}
.zp-blog-card__author span { font-size: 12px; font-weight: 600; color: var(--gray-600); }
.zp-blog-card__date {
  font-size: 12px;
  color: var(--gray-400);
  margin-left: auto;
}
.zp-blog-card__date i { color: var(--gold); margin-right: 5px; }

/* ── 16. CTA BAND ──────────────────────────────────────────── */
.zp-cta-band {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 52px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.zp-cta-band::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(201,151,58,.07);
  pointer-events: none;
}
.zp-cta-band__title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--white);
  max-width: 420px;
  line-height: 1.3;
  margin: 0;
}
.zp-cta-band__title span { color: var(--gold-light); }
.zp-cta-band__right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.zp-cta-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.zp-cta-phone__icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 18px;
}
.zp-cta-phone__label strong {
  display: block;
  font-size: 15px; font-weight: 700;
  color: var(--white);
}
.zp-cta-phone__label span {
  font-size: 12px;
  color: rgba(255,255,255,.45);
}

/* ── 17. CONTACT ───────────────────────────────────────────── */
.zp-contact-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px;
  height: 100%;
}
.zp-contact-box h3 { color: var(--white); font-size: 22px; margin-bottom: 28px; }
.zp-ci {
  display: flex;
  gap: 15px;
  margin-bottom: 22px;
}
.zp-ci__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(201,151,58,.13);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 16px;
  flex-shrink: 0;
}
.zp-ci__head {
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,.4);
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 4px;
}
.zp-ci__val a,
.zp-ci__val p {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  margin: 0;
  line-height: 1.65;
}
.zp-ci__val a:hover { color: var(--gold-light); }

/* Form */
.zp-form-group { margin-bottom: 14px; }
.zp-input {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--gray-100);
  background: var(--off-white);
  font-size: 14px;
  color: var(--gray-800);
  font-family: inherit;
  outline: none;
  transition: all var(--dur) var(--ease);
}
.zp-input:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(15,27,53,.07);
}
.zp-input::placeholder { color: var(--gray-400); }
textarea.zp-input { resize: vertical; min-height: 130px; }

/* ── 18. PAGE HEADER ────────────────────────────────────────── */
.zp-ph {
  position: relative;
  padding: 72px 0 56px;
  background: var(--navy);
  overflow: hidden;
}
.zp-ph__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .1;
}
.zp-ph__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--navy) 30%, rgba(15,27,53,.7));
}
.zp-ph__body {
  position: relative;
  z-index: 2;
}
.zp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin-bottom: 14px;
}
.zp-breadcrumb li {
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.zp-breadcrumb a {
  color: rgba(255,255,255,.65);
}
.zp-breadcrumb a:hover { color: var(--gold-light); }
.zp-ph__title {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 900;
  color: var(--white);
  margin: 0;
  line-height: 1.15;
}
.zp-ph__title span { color: var(--gold-light); }

/* ── 19. MAP ────────────────────────────────────────────────── */
.zp-map {
  height: 400px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.zp-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ── 20. FOOTER ─────────────────────────────────────────────── */
.zp-footer {
  background: var(--navy);
}
.zp-footer__top {
  padding: 72px 0 52px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.zp-footer__logo { margin-bottom: 18px; }
.zp-footer__logo img { height: 52px; width: auto; }
.zp-footer__desc {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  margin-bottom: 22px;
  max-width: 280px;
}
.zp-footer__social {
  display: flex;
  gap: 9px;
}
.zp-footer__social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.55);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.zp-footer__social a:hover {
  background: var(--gold);
  color: var(--white);
}

.zp-footer__h {
  font-size: 13.5px; font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(201,151,58,.5);
  display: inline-block;
  letter-spacing: .2px;
}

.zp-footer__links {
  list-style: none;
}
.zp-footer__links li { margin-bottom: 8px; }
.zp-footer__links a {
  font-size: 13.5px;
  color: rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--dur) var(--ease);
}
.zp-footer__links a::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  flex-shrink: 0;
  transition: opacity var(--dur);
}
.zp-footer__links a:hover {
  color: var(--gold-light);
  gap: 12px;
}
.zp-footer__links a:hover::before { opacity: 1; }

.zp-footer__ci {
  display: flex;
  gap: 11px;
  margin-bottom: 14px;
}
.zp-footer__ci i {
  color: var(--gold);
  font-size: 13px;
  margin-top: 3px;
  flex-shrink: 0;
}
.zp-footer__ci-text {
  font-size: 13.5px;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
}
.zp-footer__ci-text a {
  color: rgba(255,255,255,.5);
  display: block;
}
.zp-footer__ci-text a:hover { color: var(--gold-light); }

.zp-nl-form {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  margin-bottom: 22px;
}
.zp-nl-form input {
  flex: 1;
  background: rgba(255,255,255,.06);
  border: none;
  padding: 12px 15px;
  font-size: 13px;
  color: var(--white);
  font-family: inherit;
  outline: none;
}
.zp-nl-form input::placeholder { color: rgba(255,255,255,.3); }
.zp-nl-form button {
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 12px 16px;
  cursor: pointer;
  font-size: 15px;
  transition: background var(--dur);
}
.zp-nl-form button:hover { background: var(--gold-light); }

.zp-footer__bottom {
  padding: 18px 0;
}
.zp-footer__bottom p {
  font-size: 13px;
  color: rgba(255,255,255,.3);
  text-align: center;
  margin: 0;
}
.zp-footer__bottom a {
  color: var(--gold-light);
}

/* ── 21. SCROLL-TO-TOP ──────────────────────────────────────── */
.zp-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(14px);
  transition: all var(--dur) var(--ease);
  z-index: 1000;
}
.zp-top.show { opacity: 1; transform: none; }
.zp-top:hover { background: var(--gold); color: var(--white); }

/* ── 22. LOADER ─────────────────────────────────────────────── */
#pageloader {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,.9);
  z-index: 99999;
  display: none;
  place-items: center;
  align-items: center;
  justify-content: center;
}
.zp-spinner {
  width: 40px; height: 40px;
  border: 3px solid var(--gray-100);
  border-top-color: var(--navy);
  border-radius: 50%;
  animation: zpSpin .75s linear infinite;
}
@keyframes zpSpin { to { transform: rotate(360deg); } }

/* ── 23. BLOG LISTING (inner pages) ─────────────────────────── */
.zp-blog-row {
  border-bottom: 1px solid var(--gray-100);
  padding-bottom: 36px;
  margin-bottom: 36px;
}
.zp-blog-row:last-child { border-bottom: none; }
.zp-blog-row__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.zp-blog-row__img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.zp-blog-row__img:hover img { transform: scale(1.04); }
.zp-blog-row__meta {
  display: flex;
  gap: 16px;
  margin-bottom: 10px;
}
.zp-blog-row__meta a {
  font-size: 12px;
  color: var(--gray-400);
}
.zp-blog-row__meta a i { color: var(--gold); margin-right: 4px; }
.zp-blog-row__title {
  font-size: 21px; font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.35;
}
.zp-blog-row__title a { color: inherit; }
.zp-blog-row__title a:hover { color: var(--gold); }

/* Sidebar */
.zp-sidebar-box {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 28px;
  border: 1px solid var(--gray-100);
}
.zp-sidebar-box h4 {
  font-size: 15px; font-weight: 800;
  color: var(--navy);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.zp-sidebar-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 99px;
  border: 1.5px solid var(--gray-100);
  font-size: 12px; font-weight: 600;
  color: var(--gray-600);
  margin: 4px;
  transition: all var(--dur);
}
.zp-sidebar-tag:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* Pagination */
.zp-pagination {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.zp-pagination a,
.zp-pagination span {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  border: 1.5px solid var(--gray-100);
  color: var(--gray-800);
  transition: all var(--dur);
}
.zp-pagination a:hover,
.zp-pagination span.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ── 24. GALLERY ────────────────────────────────────────────── */
.zp-gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  cursor: pointer;
}
.zp-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease), filter .5s;
}
.zp-gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,27,53,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--dur);
}
.zp-gallery-item__overlay i {
  font-size: 28px;
  color: var(--white);
}
.zp-gallery-item:hover .zp-gallery-item__overlay { opacity: 1; }
.zp-gallery-item:hover img { transform: scale(1.06); filter: brightness(.7); }

/* ── 24b. ANIMATIONS ─────────────────────────────────────────── */
@keyframes zpPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.7); }
}

/* ── 25. AUTH PAGES ─────────────────────────────────────────── */
.zp-auth-wrap {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 16px;
}
.zp-auth-card {
  background: var(--white);
  border-radius: 20px;
  padding: 48px 40px;
  box-shadow: 0 4px 40px rgba(15,27,53,.08);
}
.zp-auth-card__head { text-align: center; margin-bottom: 32px; }
.zp-auth-card__head h2 { font-size: 26px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.zp-auth-card__head p  { font-size: 14px; color: var(--gray-500); margin: 0; }
.zp-auth-links { text-align: center; margin-top: 20px; font-size: 14px; color: var(--gray-500); }
.zp-auth-links a { color: var(--gold); font-weight: 600; }
.zp-auth-links a:hover { color: var(--navy); }

/* ── 26. FAQ ─────────────────────────────────────────────────── */
.zp-faq-item {
  border: 1.5px solid var(--gray-100);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow .2s;
}
.zp-faq-item:hover { box-shadow: 0 4px 20px rgba(15,27,53,.07); }
.zp-faq-item__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  gap: 16px;
}
.zp-faq-item__q {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  flex: 1;
}
.zp-faq-item__icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s, transform .3s;
  font-size: 13px; color: var(--navy);
}
.zp-faq-item.open .zp-faq-item__icon { background: var(--gold); color: var(--white); transform: rotate(180deg); }
.zp-faq-item__body {
  display: none;
  padding: 0 24px 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-600);
}
.zp-faq-item.open .zp-faq-item__body { display: block; }

/* ── 27. PRODUCT CARDS ───────────────────────────────────────── */
.zp-product-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(15,27,53,.06);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.zp-product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(15,27,53,.12); }
.zp-product-card__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.zp-product-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.zp-product-card:hover .zp-product-card__img img { transform: scale(1.05); }
.zp-product-card__overlay {
  position: absolute; inset: 0;
  background: rgba(15,27,53,.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .25s;
}
.zp-product-card:hover .zp-product-card__overlay { opacity: 1; }
.zp-product-card__body {
  padding: 18px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.zp-product-card__title { font-size: 15px; font-weight: 700; color: var(--navy); margin: 0; }
.zp-product-card__title a { color: inherit; }
.zp-product-card__title a:hover { color: var(--gold); }
.zp-product-card__price { font-size: 17px; font-weight: 800; color: var(--gold); margin: 0; }
.zp-shop-sidebar { padding: 0; }
.zp-shop-sidebar .zp-sidebar-box { margin-bottom: 24px; }

/* ── 28. CART & CHECKOUT ────────────────────────────────────── */
.zp-cart-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.zp-cart-table thead tr th {
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 14px 18px;
  text-align: left;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.zp-cart-table thead tr th:first-child { border-radius: 12px 0 0 0; }
.zp-cart-table thead tr th:last-child  { border-radius: 0 12px 0 0; }
.zp-cart-table tbody tr td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--gray-100);
  vertical-align: middle;
  font-size: 15px;
  color: var(--gray-700);
}
.zp-cart-table tbody tr:hover td { background: var(--off-white); }
.zp-cart-product { display: flex; align-items: center; gap: 14px; }
.zp-cart-product img { width: 64px; height: 64px; object-fit: cover; border-radius: 10px; }
.zp-cart-product__name { font-size: 14px; font-weight: 700; color: var(--navy); }
.zp-cart-product__name a { color: inherit; }
.zp-cart-product__name a:hover { color: var(--gold); }
.zp-qty-box { display: flex; align-items: center; gap: 0; border: 1.5px solid var(--gray-100); border-radius: 8px; overflow: hidden; }
.zp-qty-box button { background: var(--off-white); border: none; width: 32px; height: 36px; cursor: pointer; font-size: 13px; transition: background .2s; }
.zp-qty-box button:hover { background: var(--gold); color: var(--white); }
.zp-qty-box input { width: 44px; text-align: center; border: none; border-left: 1.5px solid var(--gray-100); border-right: 1.5px solid var(--gray-100); height: 36px; font-size: 14px; font-weight: 700; outline: none; }
.zp-cart-del { background: none; border: none; color: #e55; cursor: pointer; font-size: 18px; transition: transform .2s; }
.zp-cart-del:hover { transform: scale(1.2); }
.zp-cart-total { background: var(--white); border-radius: 16px; padding: 28px; box-shadow: 0 2px 20px rgba(15,27,53,.06); }
.zp-cart-total-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--gray-100); font-size: 15px; color: var(--gray-600); }
.zp-cart-total-row:last-child { border-bottom: none; font-size: 17px; font-weight: 800; color: var(--navy); }
.zp-checkout-box { background: var(--white); border-radius: 20px; padding: 36px; box-shadow: 0 2px 24px rgba(15,27,53,.07); }
.zp-checkout-box h3 { font-size: 19px; font-weight: 800; color: var(--navy); margin-bottom: 24px; padding-bottom: 14px; border-bottom: 1.5px solid var(--gray-100); }
.zp-order-summary { background: var(--navy); color: var(--white); border-radius: 16px; padding: 28px; }
.zp-order-summary h4 { font-size: 16px; font-weight: 700; color: var(--gold-light); margin-bottom: 18px; }
.zp-order-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 14px; color: rgba(255,255,255,.8); }
.zp-order-row:last-child { border-bottom: none; font-weight: 800; color: var(--white); font-size: 16px; }
.zp-payment-option { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border: 2px solid var(--gray-100); border-radius: 12px; margin-bottom: 10px; cursor: pointer; transition: border-color .2s; }
.zp-payment-option:hover, .zp-payment-option.selected { border-color: var(--gold); }
.zp-payment-option img { max-height: 28px; width: auto; }

/* ── 29. STATUS PAGES ───────────────────────────────────────── */
.zp-status { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 80px 0; }
.zp-status__inner { text-align: center; max-width: 540px; margin: 0 auto; padding: 0 20px; }
.zp-status__icon {
  width: 96px; height: 96px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 40px;
  margin-bottom: 28px;
}
.zp-status__icon--success { background: rgba(22,163,74,.1); color: #16a34a; }
.zp-status__icon--fail    { background: rgba(220,38,38,.1);  color: #dc2626; }
.zp-status__title { font-size: 32px; font-weight: 900; color: var(--navy); margin-bottom: 12px; }
.zp-status__ref   { font-family: monospace; font-size: 14px; color: var(--gray-500); background: var(--off-white); padding: 8px 16px; border-radius: 8px; display: inline-block; margin: 14px 0; }
.zp-status__msg   { font-size: 15px; color: var(--gray-600); line-height: 1.7; margin-bottom: 28px; }

/* ── 30. USER DASHBOARD ─────────────────────────────────────── */
.zp-dash-layout { display: flex; gap: 32px; align-items: flex-start; }
.zp-user-nav { background: var(--white); border-radius: 20px; padding: 28px 20px; box-shadow: 0 2px 20px rgba(15,27,53,.06); position: sticky; top: 100px; min-width: 220px; }
.zp-user-nav__avatar { text-align: center; margin-bottom: 20px; }
.zp-user-nav__avatar img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; border: 3px solid var(--gold); }
.zp-user-nav__name { text-align: center; font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 20px; }
.zp-user-nav__links { list-style: none; margin: 0; padding: 0; }
.zp-user-nav__links li a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 14px; font-weight: 600; color: var(--gray-600);
  transition: background .2s, color .2s;
  margin-bottom: 4px;
  text-decoration: none;
}
.zp-user-nav__links li a i { width: 18px; color: var(--gold); }
.zp-user-nav__links li a:hover,
.zp-user-nav__links li.active > a { background: var(--navy); color: var(--white); }
.zp-user-nav__links li a:hover i,
.zp-user-nav__links li.active > a i { color: var(--gold-light); }
.zp-dash-main { flex: 1; min-width: 0; }
.zp-dash-box { background: var(--white); border-radius: 20px; padding: 32px; box-shadow: 0 2px 20px rgba(15,27,53,.06); margin-bottom: 24px; }
.zp-dash-box h3 { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 20px; }
.zp-profile-stat { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.zp-profile-stat-item { background: var(--off-white); border-radius: 12px; padding: 16px; }
.zp-profile-stat-item label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-400); display: block; margin-bottom: 4px; }
.zp-profile-stat-item span  { font-size: 15px; font-weight: 700; color: var(--navy); }
.zp-data-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.zp-data-table thead th { background: var(--navy); color: white; padding: 12px 14px; text-align: left; font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .04em; }
.zp-data-table thead th:first-child { border-radius: 10px 0 0 0; }
.zp-data-table thead th:last-child  { border-radius: 0 10px 0 0; }
.zp-data-table tbody tr td { padding: 12px 14px; border-bottom: 1px solid var(--gray-100); color: var(--gray-700); vertical-align: middle; }
.zp-data-table tbody tr:hover td { background: var(--off-white); }
.zp-badge { display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px; border-radius: 20px; font-size: 12px; font-weight: 700; }
.zp-badge--success { background: rgba(22,163,74,.12); color: #16a34a; }
.zp-badge--warn    { background: rgba(234,179,8,.12);  color: #b45309; }
.zp-badge--fail    { background: rgba(220,38,38,.1);   color: #dc2626; }

/* ── 31. FOUNDER / TEAM DETAIL ──────────────────────────────── */
.zp-person-img img { width: 100%; border-radius: 20px; object-fit: cover; max-height: 520px; }
.zp-person-tag { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.zp-person-name { font-size: 32px; font-weight: 900; color: var(--navy); margin-bottom: 14px; }
.zp-person-socials { display: flex; gap: 10px; margin-bottom: 20px; }
.zp-person-socials a { width: 36px; height: 36px; border-radius: 50%; background: var(--navy); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 14px; transition: background .2s; }
.zp-person-socials a:hover { background: var(--gold); }
.zp-person-body { font-size: 15px; line-height: 1.8; color: var(--gray-600); }

/* ── 32. TEAM CARDS ─────────────────────────────────────────── */
.zp-team-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: 0 2px 16px rgba(15,27,53,.06);
  transition: transform .25s, box-shadow .25s;
}
.zp-team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(15,27,53,.13);
}
.zp-team-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/4;
  background: var(--off-white);
}
.zp-team-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s;
}
.zp-team-card:hover .zp-team-card__img { transform: scale(1.05); }
.zp-team-card__img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 56px; color: var(--gray-300);
}
.zp-team-card__socials {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; justify-content: center; gap: 8px;
  padding: 14px 12px;
  background: linear-gradient(to top, rgba(15,27,53,.82) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform .28s;
}
.zp-team-card:hover .zp-team-card__socials { transform: translateY(0); }
.zp-team-card__socials a {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--gold); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; text-decoration: none;
  transition: background .2s, transform .2s;
}
.zp-team-card__socials a:hover { background: var(--white); color: var(--gold); transform: scale(1.15); }
.zp-team-card__body {
  padding: 20px 20px 22px;
  text-align: center;
}
.zp-team-card__name {
  font-size: 17px; font-weight: 800;
  color: var(--navy); margin: 0 0 4px;
  line-height: 1.3;
}
.zp-team-card__position {
  font-size: 13px; font-weight: 600;
  color: var(--gold); margin: 0 0 12px;
  text-transform: uppercase; letter-spacing: .05em;
}
.zp-team-card__link {
  font-size: 13px; font-weight: 700;
  color: var(--navy); text-decoration: none;
  display: inline-flex; align-items: center; gap: 5px;
  transition: color .2s, gap .2s;
}
.zp-team-card__link:hover { color: var(--gold); gap: 8px; }
.zp-empty-state {
  text-align: center; padding: 80px 20px;
  color: var(--gray-400);
}
.zp-empty-state i { font-size: 56px; display: block; margin-bottom: 16px; }
.zp-empty-state p { font-size: 16px; }

/* ── 33. COMMENTS ───────────────────────────────────────────── */
.zp-comments { margin-top: 40px; }
.zp-comments__title { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 24px; }
.zp-comment { display: flex; gap: 16px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--gray-100); }
.zp-comment:last-child { border-bottom: none; }
.zp-comment__avatar { flex-shrink: 0; }
.zp-comment__avatar img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.zp-comment__body { flex: 1; }
.zp-comment__name { font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.zp-comment__text { font-size: 14px; color: var(--gray-600); line-height: 1.7; margin: 0; }
.zp-comment-form { background: var(--off-white); border-radius: 16px; padding: 28px; margin-top: 32px; }
.zp-comment-form h4 { font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 20px; }

/* ── 33. VIDEO DETAIL ───────────────────────────────────────── */
.zp-vid-embed { border-radius: 18px; overflow: hidden; aspect-ratio: 16/9; box-shadow: 0 8px 40px rgba(15,27,53,.15); margin-bottom: 40px; }
.zp-vid-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.zp-vid-meta { background: var(--white); border-radius: 16px; padding: 24px; box-shadow: 0 2px 16px rgba(15,27,53,.06); }
.zp-vid-meta p  { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-400); margin-bottom: 3px; }
.zp-vid-meta h4 { font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 0; }
.zp-vid-meta .divider { height: 1px; background: var(--gray-100); margin: 14px 0; }

/* ── 34. GIVE / DONATION ────────────────────────────────────── */
.zp-bank-box { background: var(--navy); border-radius: 20px; padding: 28px; color: var(--white); }
.zp-bank-box h4 { font-size: 16px; font-weight: 800; color: var(--gold-light); margin-bottom: 20px; }
.zp-bank-item { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.zp-bank-item:last-of-type { border-bottom: none; }
.zp-bank-item__name  { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.5); margin-bottom: 4px; }
.zp-bank-item__acct  { font-size: 20px; font-weight: 900; color: var(--white); letter-spacing: .06em; }
.zp-bank-item__holder{ font-size: 13px; color: rgba(255,255,255,.7); }

/* ── 35. RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 991px) {
  .zp-sec, .zp-sec--lg { padding: 60px 0; }
  .zp-cta-band { flex-direction: column; align-items: flex-start; padding: 36px; }
  .zp-about__img img { height: 380px; }
}
@media (max-width: 767px) {
  .zp-wrap { padding: 0 18px; }
  .zp-sec, .zp-sec--lg { padding: 48px 0; }
  .zp-hero__slide { min-height: 90vh; }
  .zp-hero__ctrl { bottom: 20px; left: 18px; }
  .zp-check-grid { grid-template-columns: 1fr; }
  .zp-benefits__grid { grid-template-columns: 1fr; }
  .zp-contact-box { padding: 28px; }
  .zp-cta-band { padding: 28px; }
  .zp-about__stat { position: static; margin-top: 16px; display: inline-flex; align-items: center; gap: 12px; }
  .zp-about__stat-n { font-size: 30px; }
}
@media (max-width: 480px) {
  .zp-hero__acts { flex-direction: column; align-items: flex-start; }
  .zp-nav__actions .zp-btn { display: none; }
  .zp-auth-card { padding: 28px 20px; }
  .zp-dash-layout { flex-direction: column; }
  .zp-user-nav { position: static; min-width: unset; width: 100%; }
  .zp-profile-stat { grid-template-columns: 1fr; }
  .zp-checkout-box { padding: 20px; }
  .zp-bank-box { padding: 20px; }
}
@media (max-width: 767px) {
  .zp-dash-layout { flex-direction: column; }
  .zp-profile-stat { grid-template-columns: 1fr 1fr; }
}
