/* ZOYO FRESH v2 — premium UI layer (loaded after main.css) */

:root { --zf-radius-lg: 22px; }

/* ---------- Header extras ---------- */
.zf-coin-pill {
  display: inline-flex; align-items: center; gap: .35rem; font-weight: 800; font-size: .82rem;
  background: linear-gradient(135deg, #fff3c4, #ffe08a); color: #6b4f00; border: 1px solid #f2d47a;
  border-radius: 999px; padding: .35rem .75rem;
}
.zf-coin-pill:hover { color: #6b4f00; transform: translateY(-1px); }

/* ---------- Hero ---------- */
.zf-hero2 {
  position: relative; overflow: hidden; padding: 54px 0 44px;
  background:
    radial-gradient(900px 380px at 88% -20%, #d3f7e4 0%, transparent 62%),
    radial-gradient(700px 420px at 5% 110%, #f2ffd9 0%, transparent 60%),
    linear-gradient(180deg, var(--zf-green-soft), #fff);
}
.zf-hero2 h1 { font-size: clamp(2rem, 4.4vw, 3.3rem); line-height: 1.04; }
.zf-hero-badges { display: flex; flex-wrap: wrap; gap: .5rem; }
.zf-badge-pill {
  display: inline-flex; align-items: center; gap: .4rem; background: #fff; border: 1px solid var(--zf-line);
  border-radius: 999px; padding: .4rem .85rem; font-size: .78rem; font-weight: 800; box-shadow: var(--zf-shadow);
}
.zf-hero-search { position: relative; max-width: 520px; }
.zf-hero-search input {
  width: 100%; border: 1.5px solid var(--zf-line); background: #fff; border-radius: 999px;
  padding: .85rem 8.2rem .85rem 2.6rem; font-size: .95rem; outline: 0; box-shadow: var(--zf-shadow);
}
.zf-hero-search input:focus { border-color: var(--zf-green); }
.zf-hero-search .ico { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); }
.zf-hero-search button { position: absolute; right: 5px; top: 5px; bottom: 5px; }

/* Animated hero scene */
.zf-scene {
  position: relative; border-radius: 28px; min-height: 380px; overflow: hidden; color: #fff;
  background: linear-gradient(150deg, #0e8f5a 0%, #14a86a 52%, #9fd93c 130%);
  box-shadow: var(--zf-shadow-lift);
}
.zf-scene-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .34; }
.zf-scene::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,52,34,.15), rgba(6,52,34,.72)); }
.zf-scene-inner { position: relative; z-index: 2; padding: 24px; height: 100%; display: flex; flex-direction: column; justify-content: space-between; min-height: 380px; }
.zf-scene-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; }
.zf-scene-stats .zf-stat { background: rgba(255,255,255,.18); backdrop-filter: blur(6px); }
.zf-float {
  position: absolute; z-index: 2; font-size: 2.2rem; filter: drop-shadow(0 8px 16px rgba(0,0,0,.28));
  animation: zf-float 6s ease-in-out infinite;
}
.zf-float.f1 { top: 12%; left: 8%; animation-delay: .0s; }
.zf-float.f2 { top: 26%; right: 12%; animation-delay: .8s; }
.zf-float.f3 { bottom: 30%; left: 16%; animation-delay: 1.6s; }
.zf-float.f4 { top: 8%; right: 32%; animation-delay: 2.2s; }
.zf-float.f5 { bottom: 22%; right: 8%; animation-delay: 1.1s; }
.zf-rider {
  position: absolute; z-index: 3; bottom: 14px; left: 0; font-size: 2.8rem;
  animation: zf-ride 9s linear infinite; filter: drop-shadow(0 10px 18px rgba(0,0,0,.3));
}
@keyframes zf-float {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-3deg); }
  50% { transform: translate3d(0, -16px, 0) rotate(4deg); }
}
@keyframes zf-ride {
  0% { transform: translate3d(-14%, 0, 0); }
  100% { transform: translate3d(112%, 0, 0); }
}

/* ---------- Promotional slider ---------- */
.zf-slider { position: relative; border-radius: var(--zf-radius-lg); overflow: hidden; box-shadow: var(--zf-shadow-lift); }
.zf-slides { position: relative; aspect-ratio: 21 / 9; min-height: 240px; background: var(--zf-ink); }
.zf-slide {
  position: absolute; inset: 0; opacity: 0; transform: scale(1.04) translate3d(24px, 0, 0);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22,.75,.3,1); pointer-events: none;
}
.zf-slide.active { opacity: 1; transform: none; pointer-events: auto; }
.zf-slide-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.zf-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(6,32,22,.88) 8%, rgba(6,32,22,.45) 52%, rgba(6,32,22,.12) 100%); }
.zf-slide-body { position: relative; z-index: 2; max-width: 620px; padding: clamp(18px, 4vw, 46px); color: #fff; }
.zf-slide-badge { display: inline-block; background: var(--zf-lime); color: var(--zf-ink); font-weight: 800; font-size: .72rem; border-radius: 999px; padding: .25rem .7rem; }
.zf-slide-eyebrow { display: block; margin-top: .6rem; text-transform: uppercase; letter-spacing: .16em; font-size: .7rem; font-weight: 800; color: #cdeedd; }
.zf-slide-title { font-size: clamp(1.25rem, 3vw, 2.35rem); margin: .35rem 0 .4rem; }
.zf-slide-text { color: #dfeee7; font-size: .95rem; max-width: 46ch; margin-bottom: 1rem; }
.zf-slider-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4; width: 42px; height: 42px;
  border: 0; border-radius: 50%; background: rgba(255,255,255,.9); color: var(--zf-ink); font-size: 1.5rem; line-height: 1;
  display: grid; place-items: center; cursor: pointer; box-shadow: var(--zf-shadow);
}
.zf-slider-nav:hover { background: #fff; }
.zf-slider-nav.prev { left: 12px; } .zf-slider-nav.next { right: 12px; }
.zf-slider-dots { position: absolute; z-index: 4; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: .4rem; }
.zf-slider-dots button { width: 9px; height: 9px; border-radius: 999px; border: 0; background: rgba(255,255,255,.5); cursor: pointer; transition: width .3s ease, background .3s ease; }
.zf-slider-dots button.on { width: 26px; background: var(--zf-lime); }
@media (max-width: 767.98px) { .zf-slides { aspect-ratio: 4 / 3; } .zf-slider-nav { width: 34px; height: 34px; } }

/* ---------- Category cards v2 ---------- */
.cat-card {
  display: flex; flex-direction: column; align-items: center; gap: .5rem; text-align: center;
  background: #fff; border: 1px solid var(--zf-line); border-radius: 20px; padding: 14px 10px 12px; height: 100%;
  position: relative; overflow: hidden;
  transition: transform .28s cubic-bezier(.2,.7,.3,1), box-shadow .28s ease, border-color .28s ease;
}
.cat-card::before {
  content: ""; position: absolute; inset: auto 0 0 0; height: 4px;
  background: linear-gradient(90deg, var(--cat-hue, var(--zf-green)), var(--zf-lime));
  opacity: 0; transition: opacity .28s ease;
}
.cat-card:hover { transform: translateY(-7px); box-shadow: var(--zf-shadow-lift); border-color: transparent; }
.cat-card:hover::before { opacity: 1; }
.cat-thumb {
  width: 100%; aspect-ratio: 1 / 1; border-radius: 16px; overflow: hidden; display: block;
  background: color-mix(in oklab, var(--cat-hue, #0e8f5a) 12%, #fff);
}
.cat-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.7,.3,1); }
.cat-card:hover .cat-thumb img { transform: scale(1.09); }
.cat-name { font-size: .84rem; font-weight: 800; color: var(--zf-ink); line-height: 1.25; }
.cat-cta { font-size: .7rem; font-weight: 800; color: var(--zf-green); opacity: 0; transform: translateY(4px); transition: .25s ease; }
.cat-card:hover .cat-cta { opacity: 1; transform: none; }

/* ---------- Product cards v2 ---------- */
.product-card { border-radius: 18px; padding: 10px 10px 12px; }
.product-media { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 1 / 1; background: var(--zf-surface); margin-bottom: 10px; }
.product-img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.3,1); }
.product-card:hover .product-img { transform: scale(1.08); }
.product-card:hover .product-thumb { animation: none; }
.zf-wish {
  position: absolute; top: 8px; right: 8px; width: 30px; height: 30px; border-radius: 50%; border: 0;
  background: rgba(255,255,255,.92); color: #b9c4be; font-size: .95rem; line-height: 1; cursor: pointer;
  display: grid; place-items: center; transition: transform .2s ease, color .2s ease;
}
.zf-wish:hover { transform: scale(1.12); }
.zf-wish.on { color: var(--zf-danger); }
.zf-quick {
  position: absolute; left: 8px; right: 8px; bottom: 8px; border: 0; border-radius: 10px; cursor: pointer;
  background: rgba(16,38,28,.86); color: #fff; font-size: .72rem; font-weight: 800; padding: .32rem;
  opacity: 0; transform: translateY(8px); transition: .25s ease;
}
.product-card:hover .zf-quick, .product-card:focus-within .zf-quick { opacity: 1; transform: none; }
.zf-tag { display: inline-block; background: var(--zf-green-soft); color: var(--zf-green-dark); border-radius: 999px; padding: .1rem .5rem; font-size: .64rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .3rem; }
.product-sub { display: flex; align-items: center; gap: .4rem; margin-bottom: .45rem; flex-wrap: wrap; }
.zf-rating { font-size: .72rem; font-weight: 800; color: #1c7a4d; background: var(--zf-green-soft); border-radius: 6px; padding: .1rem .35rem; }
.zf-eta-chip { font-size: .68rem; font-weight: 700; color: var(--zf-body); }
.zf-stepper {
  display: grid; grid-template-columns: 32px 1fr 32px; align-items: center; border: 1.6px solid var(--zf-green);
  border-radius: 10px; overflow: hidden; background: var(--zf-green); color: #fff; font-weight: 800;
}
.zf-stepper button { border: 0; background: transparent; color: #fff; font-size: 1rem; padding: .28rem 0; cursor: pointer; }
.zf-stepper span { text-align: center; font-size: .85rem; }
.zf-quick-modal { border-radius: 22px; border: 0; }
.zf-quick-img { width: 100%; border-radius: 18px; aspect-ratio: 1/1; object-fit: cover; }

/* ---------- Combos ---------- */
.zf-combo { background: #fff; border: 1px solid var(--zf-line); border-radius: 20px; overflow: hidden; height: 100%; display: flex; flex-direction: column; transition: transform .28s ease, box-shadow .28s ease; }
.zf-combo:hover { transform: translateY(-6px); box-shadow: var(--zf-shadow-lift); }
.zf-combo-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.zf-combo-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.zf-combo:hover .zf-combo-media img { transform: scale(1.06); }
.zf-combo-off { position: absolute; top: 12px; left: 12px; background: var(--zf-lime); color: var(--zf-ink); font-weight: 800; font-size: .72rem; border-radius: 999px; padding: .2rem .6rem; }
.zf-combo-body { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.zf-combo-items { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .3rem; }
.zf-combo-items li { font-size: .7rem; font-weight: 700; background: var(--zf-surface); border: 1px solid var(--zf-line); border-radius: 999px; padding: .15rem .55rem; color: var(--zf-body); }
.zf-combo-body .btn { margin-top: auto; }

/* ---------- Enquiry ---------- */
.zf-enquiry { background: linear-gradient(140deg, #f2fbf6, #ffffff 60%); border: 1px solid var(--zf-line); border-radius: var(--zf-radius-lg); padding: clamp(18px, 3vw, 34px); box-shadow: var(--zf-shadow); }
.zf-quick-contact { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.zf-contact-chip { display: inline-flex; align-items: center; gap: .45rem; background: #fff; border: 1px solid var(--zf-line); border-radius: 999px; padding: .5rem .9rem; font-weight: 700; font-size: .84rem; color: var(--zf-ink); box-shadow: var(--zf-shadow); transition: transform .2s ease, border-color .2s ease; }
.zf-contact-chip:hover { transform: translateY(-2px); border-color: var(--zf-green); color: var(--zf-green-dark); }

/* ---------- Social ---------- */
.zf-social-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.zf-social { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.1); font-size: 1.05rem; transition: transform .2s ease, background .2s ease; }
.zf-social:hover { transform: translateY(-3px) scale(1.05); background: var(--zf-lime); }
.zf-social-float { position: fixed; right: 14px; bottom: 84px; z-index: 1035; display: flex; flex-direction: column; gap: .5rem; }
.zf-social-float .zf-social { background: #fff; border: 1px solid var(--zf-line); box-shadow: var(--zf-shadow-lift); }
.zf-footer-logo, .zf-footer-logo:hover { color: #fff; }
.zf-footer-note { color: #a9c4b7; max-width: 36ch; font-size: .9rem; }
@media (max-width: 575.98px) { .zf-social-float { bottom: 74px; right: 10px; } .zf-social-float .zf-social { width: 34px; height: 34px; } }

/* ---------- ZTS / Travel helpers ---------- */
.zf-service-card { background: #fff; border: 1px solid var(--zf-line); border-radius: 18px; padding: 18px; height: 100%; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.zf-service-card:hover { transform: translateY(-6px); box-shadow: var(--zf-shadow-lift); border-color: #cfe8dc; }
.zf-service-ico { width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; font-size: 1.3rem; background: var(--zf-green-soft); margin-bottom: .7rem; }
.zf-counter { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; letter-spacing: -.03em; color: var(--zf-green-dark); }
.zf-price-card { background: #fff; border: 1.5px solid var(--zf-line); border-radius: 20px; padding: 22px; height: 100%; }
.zf-price-card.best { border-color: var(--zf-green); box-shadow: var(--zf-shadow-lift); }
.zf-timeline-h { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.zf-step-card { background: var(--zf-surface); border: 1px solid var(--zf-line); border-radius: 16px; padding: 16px; }
.zf-step-card b { display: block; color: var(--zf-green); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.zf-pack { background: #fff; border: 1px solid var(--zf-line); border-radius: 20px; overflow: hidden; height: 100%; display: flex; flex-direction: column; transition: transform .28s ease, box-shadow .28s ease; }
.zf-pack:hover { transform: translateY(-6px); box-shadow: var(--zf-shadow-lift); }
.zf-pack-media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.zf-pack-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.zf-pack:hover .zf-pack-media img { transform: scale(1.07); }
.zf-pack-tag { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,.92); color: var(--zf-ink); font-weight: 800; font-size: .7rem; border-radius: 999px; padding: .2rem .6rem; }
.zf-pack-body { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.zf-pack-body ul { list-style: none; padding: 0; margin: .4rem 0 1rem; font-size: .82rem; color: var(--zf-body); }
.zf-pack-body ul li::before { content: "✔ "; color: var(--zf-green); font-weight: 800; }
.zf-pack-body .btn { margin-top: auto; }

/* ---------- Rewards ---------- */
.zf-coin-hero { background: linear-gradient(140deg, #10261c, #0e8f5a 130%); color: #fff; border-radius: var(--zf-radius-lg); padding: clamp(20px, 4vw, 40px); box-shadow: var(--zf-shadow-lift); }
.zf-coin-balance { font-size: clamp(2.2rem, 6vw, 3.6rem); font-weight: 900; letter-spacing: -.03em; }
.zf-coin-hero p { color: #cfe7dc; }

/* ---------- Menu tabs ---------- */
.zf-menu-tabs { display: flex; gap: .5rem; overflow-x: auto; padding-bottom: .4rem; }
.zf-menu-tabs button { white-space: nowrap; }

/* ---- Admin media library (v4) ---- */
.zf-media-thumb{width:100%;aspect-ratio:16/10;object-fit:cover;border-radius:12px;background:#eef4ef}
.zf-mini-img{width:70px;height:42px;object-fit:cover;border-radius:8px}

/* ===================== Hero v3 — premium brand hero ===================== */
.zf-hero3 {
  position: relative; isolation: isolate; overflow: hidden;
  padding: clamp(48px, 8vw, 110px) 0 clamp(40px, 6vw, 90px);
  background: #06180f;
}
.zf-hero3-photo {
  position: absolute; inset: 0; z-index: -3;
  background-size: cover; background-position: center;
  transform: scale(1.06);
  animation: zf-hero-pan 26s ease-in-out infinite alternate;
}
.zf-hero3-veil {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(120% 90% at 12% 30%, rgba(4, 22, 14, .88), rgba(4, 22, 14, .55) 45%, rgba(4, 22, 14, .18) 70%),
    linear-gradient(180deg, rgba(4, 22, 14, .35), rgba(4, 22, 14, .82));
}
.zf-hero3-glow {
  position: absolute; z-index: -1; border-radius: 50%; filter: blur(70px); opacity: .55;
  pointer-events: none; animation: zf-hero-glow 9s ease-in-out infinite alternate;
}
.zf-hero3-glow.g1 { width: 380px; height: 380px; top: -90px; left: -60px; background: rgba(124, 214, 62, .55); }
.zf-hero3-glow.g2 { width: 320px; height: 320px; bottom: -110px; right: -40px; background: rgba(255, 138, 20, .5); animation-delay: 1.4s; }
.zf-hero3-inner { position: relative; }
.zf-hero3-card {
  max-width: 720px; padding: clamp(20px, 3.4vw, 38px);
  border-radius: 26px; border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(9, 32, 21, .42);
  backdrop-filter: blur(18px) saturate(150%);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, .75);
  color: #fff; animation: zf-fade-up .7s cubic-bezier(.22,.75,.3,1) both;
}
.zf-hero3-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .38rem .85rem; border-radius: 999px; font-size: .78rem; font-weight: 700;
  background: rgba(255, 255, 255, .16); border: 1px solid rgba(255, 255, 255, .28); color: #eafff2;
}
.zf-hero3-card h1 {
  margin: 1rem 0 0; font-weight: 800; line-height: 1.06;
  font-size: clamp(2rem, 5.2vw, 3.5rem); color: #fff; letter-spacing: -.02em;
}
.zf-hero3-card h1 span { display: block; color: #9fe870; }
.zf-hero3-card > p { margin-top: 1rem; color: #d8ece1; max-width: 58ch; }
.zf-hero3-search { margin-top: 1.4rem; background: rgba(255,255,255,.95); }
.zf-hero3-pills { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.4rem; }
.zf-hero3-pills .zf-badge-pill {
  background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .24); color: #eafff2;
}
.zf-hero3-stats {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .75rem; margin-top: 1.6rem;
  padding-top: 1.2rem; border-top: 1px solid rgba(255, 255, 255, .18);
}
.zf-hero3-stats .zf-stat b { display: block; font-size: 1.4rem; color: #fff; }
.zf-hero3-stats .zf-stat small { color: #bcd9c9; }
.btn-glass {
  border-radius: 999px; padding: .68rem 1.4rem; font-weight: 700; color: #fff;
  background: rgba(255, 255, 255, .16); border: 1px solid rgba(255, 255, 255, .32);
  backdrop-filter: blur(10px); transition: transform .2s ease, background .2s ease;
}
.btn-glass:hover { color: #fff; background: rgba(255, 255, 255, .26); transform: translateY(-2px); }
.zf-cta-glow { box-shadow: 0 12px 30px -10px rgba(124, 214, 62, .8); }
.zf-hero3-float {
  position: absolute; z-index: -1; font-size: clamp(1.6rem, 3vw, 2.6rem); opacity: .9;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .45)); animation: zf-hero-float 7s ease-in-out infinite;
}
.zf-hero3-float.f1 { top: 14%; right: 12%; }
.zf-hero3-float.f2 { top: 42%; right: 26%; animation-delay: .9s; }
.zf-hero3-float.f3 { bottom: 18%; right: 8%; animation-delay: 1.8s; }
.zf-hero3-float.f4 { bottom: 8%; right: 34%; animation-delay: 2.6s; font-size: clamp(1.8rem, 3.4vw, 3rem); }
@keyframes zf-hero-pan { from { transform: scale(1.06) translate3d(0, 0, 0); } to { transform: scale(1.14) translate3d(-1.5%, -1.5%, 0); } }
@keyframes zf-hero-glow { from { opacity: .35; transform: translate3d(0, 0, 0); } to { opacity: .65; transform: translate3d(0, 18px, 0); } }
@keyframes zf-hero-float { 0%, 100% { transform: translate3d(0, 0, 0) rotate(-3deg); } 50% { transform: translate3d(0, -16px, 0) rotate(4deg); } }
@media (max-width: 767.98px) {
  .zf-hero3-float { display: none; }
  .zf-hero3-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .4rem; }
  .zf-hero3-stats .zf-stat b { font-size: 1.1rem; }
}
@media (prefers-reduced-motion: reduce) {
  .zf-hero3-photo, .zf-hero3-glow, .zf-hero3-float { animation: none; }
}

/* Media manager preview tiles */
.zf-media-preview { width: 100%; max-height: 180px; object-fit: cover; border-radius: 14px; border: 1px solid rgba(0,0,0,.08); }

/* ==================================================================
   Hero v4 — premium split stage (glass copy card + floating tiles)
   GPU-only transforms/opacity so it holds 60 FPS on mid-range phones.
================================================================== */
.zf-hero4{position:relative;isolation:isolate;overflow:hidden;padding:0 0 0;background:#06180f}
.zf-hero4-photo{position:absolute;inset:0;background-image:var(--zf-hero-img,url("../img/zoyo-hero.jpg"));background-size:cover;background-position:center;transform:scale(1.08);animation:zfHero4Pan 26s ease-in-out infinite alternate;will-change:transform}
.zf-hero4-veil{position:absolute;inset:0;background:
  radial-gradient(120% 90% at 12% 20%,rgba(4,26,15,.92) 0%,rgba(4,26,15,.66) 42%,rgba(4,26,15,.28) 70%),
  linear-gradient(180deg,rgba(3,20,12,.55) 0%,rgba(3,20,12,.35) 45%,rgba(3,20,12,.92) 100%)}
.zf-hero4-aurora{position:absolute;border-radius:50%;filter:blur(90px);opacity:.55;will-change:transform}
.zf-hero4-aurora.a1{width:38rem;height:38rem;left:-10rem;top:-12rem;background:rgba(124,212,88,.55);animation:zfHero4Drift 18s ease-in-out infinite alternate}
.zf-hero4-aurora.a2{width:30rem;height:30rem;right:-8rem;top:4rem;background:rgba(255,214,102,.38);animation:zfHero4Drift 22s ease-in-out infinite alternate-reverse}
.zf-hero4-aurora.a3{width:26rem;height:26rem;left:38%;bottom:-14rem;background:rgba(34,197,94,.42);animation:zfHero4Drift 26s ease-in-out infinite alternate}

.zf-hero4-inner{position:relative;z-index:2;display:grid;grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);gap:2.5rem;align-items:center;padding:5.5rem 0 5rem}

.zf-hero4-copy{color:#fff;max-width:38rem}
.zf-hero4-eyebrow{display:inline-flex;align-items:center;gap:.55rem;padding:.45rem 1rem;border-radius:999px;font-size:.82rem;font-weight:700;letter-spacing:.02em;color:#eafce0;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.24);backdrop-filter:blur(14px) saturate(150%)}
.zf-hero4-eyebrow i{width:.5rem;height:.5rem;border-radius:50%;background:#8ef07a;box-shadow:0 0 0 0 rgba(142,240,122,.7);animation:zfHero4Ping 2.2s ease-out infinite}
.zf-hero4-copy h1{margin:1.15rem 0 0;font-weight:800;line-height:1.02;letter-spacing:-.03em;font-size:clamp(2.4rem,5.2vw,4.15rem);text-shadow:0 12px 40px rgba(0,0,0,.45)}
.zf-hero4-copy h1 span{display:block;background:linear-gradient(100deg,#c8f57f 0%,#8ef07a 45%,#ffe58a 100%);-webkit-background-clip:text;background-clip:text;color:transparent}
.zf-hero4-copy p{margin:1.1rem 0 0;max-width:34rem;font-size:1.03rem;line-height:1.7;color:rgba(255,255,255,.82)}

.zf-hero4-search{position:relative;display:flex;align-items:center;gap:.5rem;margin-top:1.9rem;padding:.45rem .45rem .45rem 1rem;border-radius:999px;background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.28);backdrop-filter:blur(18px) saturate(160%);box-shadow:0 22px 48px rgba(0,0,0,.32);transition:border-color .25s ease,box-shadow .25s ease}
.zf-hero4-search:focus-within{border-color:rgba(200,245,127,.75);box-shadow:0 22px 56px rgba(0,0,0,.4),0 0 0 4px rgba(142,240,122,.18)}
.zf-hero4-search .ico{font-size:1.05rem;opacity:.9}
.zf-hero4-search input{flex:1;min-width:0;border:0;background:transparent;color:#fff;font-size:1rem;padding:.7rem .25rem;outline:none}
.zf-hero4-search input::placeholder{color:rgba(255,255,255,.62)}
.zf-hero4-search .btn{border-radius:999px;padding-inline:1.5rem;white-space:nowrap}

.zf-hero4-cta{display:flex;flex-wrap:wrap;gap:.75rem;margin-top:1.4rem}
.zf-hero4-pills{display:flex;flex-wrap:wrap;gap:.5rem;list-style:none;padding:0;margin:1.6rem 0 0}
.zf-hero4-pills li{padding:.42rem .9rem;border-radius:999px;font-size:.82rem;font-weight:600;color:rgba(255,255,255,.92);background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.2);backdrop-filter:blur(10px)}

/* ---- floating tile stage ---- */
.zf-hero4-stage{position:relative;min-height:26rem}
.zf-hero4-orb{position:absolute;inset:12% 8%;border-radius:50%;background:radial-gradient(circle at 32% 28%,rgba(255,255,255,.3),rgba(124,212,88,.12) 55%,transparent 72%);border:1px solid rgba(255,255,255,.16);animation:zfHero4Breathe 9s ease-in-out infinite}
.zf-hero4-tile{position:absolute;display:grid;gap:.1rem;min-width:11.5rem;padding:1rem 1.15rem;border-radius:1.15rem;color:#fff;background:rgba(255,255,255,.13);border:1px solid rgba(255,255,255,.26);backdrop-filter:blur(20px) saturate(170%);box-shadow:0 20px 44px rgba(0,0,0,.34);will-change:transform}
.zf-hero4-tile span{font-size:1.5rem;line-height:1}
.zf-hero4-tile b{font-size:.95rem;font-weight:700}
.zf-hero4-tile small{font-size:.76rem;color:rgba(255,255,255,.74)}
.zf-hero4-tile.t1{top:2%;left:2%;animation:zfHero4Float 7s ease-in-out infinite}
.zf-hero4-tile.t2{top:26%;right:0;animation:zfHero4Float 8.5s ease-in-out .6s infinite}
.zf-hero4-tile.t3{bottom:14%;left:8%;animation:zfHero4Float 9.5s ease-in-out 1.1s infinite}
.zf-hero4-tile.t4{bottom:0;right:12%;animation:zfHero4Float 7.8s ease-in-out 1.7s infinite}

/* ---- trust strip ---- */
.zf-hero4-strip{position:relative;z-index:2;border-top:1px solid rgba(255,255,255,.14);background:rgba(3,18,11,.55);backdrop-filter:blur(16px)}
.zf-hero4-stats{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;padding:1.25rem 0;text-align:center;color:#fff}
.zf-hero4-stats b{display:block;font-size:1.5rem;font-weight:800;letter-spacing:-.02em}
.zf-hero4-stats small{font-size:.78rem;color:rgba(255,255,255,.68)}

@keyframes zfHero4Pan{from{transform:scale(1.08) translate3d(0,0,0)}to{transform:scale(1.16) translate3d(-2.5%,-1.5%,0)}}
@keyframes zfHero4Drift{from{transform:translate3d(0,0,0)}to{transform:translate3d(3rem,2rem,0)}}
@keyframes zfHero4Float{0%,100%{transform:translate3d(0,0,0)}50%{transform:translate3d(0,-14px,0)}}
@keyframes zfHero4Breathe{0%,100%{transform:scale(1);opacity:.85}50%{transform:scale(1.05);opacity:1}}
@keyframes zfHero4Ping{0%{box-shadow:0 0 0 0 rgba(142,240,122,.7)}70%{box-shadow:0 0 0 .6rem rgba(142,240,122,0)}100%{box-shadow:0 0 0 0 rgba(142,240,122,0)}}

@media (max-width:991.98px){
  .zf-hero4-inner{grid-template-columns:1fr;padding:3.5rem 0 3rem;gap:2rem}
  .zf-hero4-stage{min-height:20rem;order:2}
  .zf-hero4-tile{min-width:9.5rem;padding:.8rem .95rem}
  .zf-hero4-stats{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:575.98px){
  .zf-hero4-inner{padding:2.75rem 0 2.25rem}
  .zf-hero4-stage{display:none}
  .zf-hero4-search{flex-wrap:wrap;border-radius:1.35rem;padding:.75rem}
  .zf-hero4-search input{flex:1 1 8rem}
  .zf-hero4-search .btn{flex:1 1 100%}
  .zf-hero4-copy p{font-size:.96rem}
}
@media (prefers-reduced-motion:reduce){
  .zf-hero4-photo,.zf-hero4-aurora,.zf-hero4-tile,.zf-hero4-orb,.zf-hero4-eyebrow i{animation:none!important}
}

/* Admin tab rail — plain list markup, pill presentation. */
.zf-admin-tabs{list-style:none;display:flex;flex-wrap:wrap;gap:.5rem;padding:0;margin:0 0 1.25rem}
