/* ==========================================================================
   BIOZIA — Design System (bold modern: navy + green, molecular motif)
   ========================================================================== */

:root {
  /* Brand */
  --navy:        #0B2545;
  --navy-800:    #0E2E54;
  --navy-700:    #13335f;
  --green:       #16A34A;
  --green-600:   #15803D;
  --teal:        #0EA5A5;

  /* Neutrals */
  --ink:         #0B1B2B;
  --body:        #41566b;
  --muted:       #6b7f94;
  --line:        #e6ecf2;
  --bg:          #ffffff;
  --bg-soft:     #f5f8fb;
  --bg-mint:     #eefcf3;
  --bg-pearl:    #eef6f1;
  --dot:         rgba(11,37,69,.06);

  /* Gradients */
  --grad-hero:   linear-gradient(135deg, #0B2545 0%, #103a5e 55%, #137a44 100%);
  --grad-accent: linear-gradient(135deg, #16A34A 0%, #0EA5A5 100%);
  --grad-soft:   linear-gradient(135deg, #eefcf3 0%, #e8f4ff 100%);

  /* System */
  --radius:      18px;
  --radius-sm:   12px;
  --radius-pill: 999px;
  --shadow:      0 10px 30px rgba(11,37,69,.08);
  --shadow-lg:   0 24px 60px rgba(11,37,69,.16);
  --shadow-green:0 12px 30px rgba(22,163,74,.28);
  --container:   1200px;
  --font-body:   'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-head:   'Space Grotesk', var(--font-body);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body);
  background: var(--bg);
  font-size: 18px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-600); text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.16; margin: 0 0 .5em; font-weight: 700; letter-spacing: -.02em; }
h1 { font-size: clamp(2.6rem, 5.2vw, 4.1rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2.1vw, 1.7rem); }
p  { margin: 0 0 1.1rem; }

.bz-container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.bz-section   { padding: 84px 0; }
/* alternating section tone — cool mint, ties to the green brand accent */
.bz-section--soft  { background: var(--bg-pearl); }
.bz-section--pearl { background: var(--bg-pearl); }
/* Subtle molecular dot texture to fill empty space */
.bz-section--dots { position: relative; }
.bz-section--dots::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(var(--dot) 1.5px, transparent 1.6px);
  background-size: 26px 26px;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 70%);
  mask-image: linear-gradient(180deg, #000, transparent 70%);
}
.bz-section--dots > .bz-container { position: relative; z-index: 1; }
.bz-center { text-align: center; }
.bz-eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 600;
  font-size: .9rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--green-600); background: var(--bg-mint);
  padding: 7px 16px; border-radius: var(--radius-pill); margin-bottom: 18px;
}
.bz-lead { font-size: 1.28rem; line-height: 1.65; color: var(--muted); max-width: 660px; }
.bz-center .bz-lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.bz-btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: 1.06rem;
  padding: 16px 32px; border-radius: var(--radius-pill);
  border: none; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s;
  line-height: 1; white-space: nowrap;
}
.bz-btn svg { width: 18px; height: 18px; }
.bz-btn--primary { background: var(--grad-accent); color: #fff; box-shadow: var(--shadow-green); }
.bz-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(22,163,74,.36); color: #fff; }
.bz-btn--dark { background: var(--navy); color: #fff; }
.bz-btn--dark:hover { transform: translateY(-2px); background: var(--navy-700); color: #fff; }
.bz-btn--ghost { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.bz-btn--ghost:hover { background: rgba(255,255,255,.2); color: #fff; }
.bz-btn--outline { background: #fff; color: var(--navy); border: 1.5px solid var(--line); }
.bz-btn--outline:hover { border-color: var(--green); color: var(--green-600); transform: translateY(-2px); }
.bz-btn--wa { background: #25D366; color: #fff; }
.bz-btn--wa:hover { background: #1eb959; color: #fff; transform: translateY(-2px); }

/* ---------- Topbar ---------- */
.bz-topbar { background: var(--navy); color: #cdd9e6; font-size: .85rem; }
.bz-topbar-inner { max-width: var(--container); margin: 0 auto; padding: 8px 24px; display: flex; gap: 18px; align-items: center; justify-content: flex-end; }
.bz-topbar a { color: #cdd9e6; display: inline-flex; align-items: center; gap: 6px; }
.bz-topbar a:hover { color: #fff; }
.bz-topbar-div { width: 1px; height: 14px; background: rgba(255,255,255,.2); }
@media (max-width: 760px) { .bz-topbar-inner { justify-content: center; gap: 12px; } .bz-topbar .bz-hide-sm { display: none; } }

/* ---------- Nav ---------- */
.bz-nav { position: sticky; top: 0; z-index: 900; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); transition: box-shadow .2s; }
.bz-nav.bz-scrolled { box-shadow: 0 6px 24px rgba(11,37,69,.08); }
.bz-nav-inner { max-width: var(--container); margin: 0 auto; padding: 12px 24px; display: flex; align-items: center; gap: 24px; }
.bz-logo img { height: 60px; width: auto; }
.bz-navmenu { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0 auto 0 12px; padding: 0; }
.bz-navitem { position: relative; }
.bz-navitem > a { display: flex; align-items: center; gap: 5px; padding: 11px 16px; color: var(--navy); font-weight: 500; font-size: 1.06rem; border-radius: 10px; transition: background .15s, color .15s; }
.bz-navitem > a:hover, .bz-navitem.bz-active > a { background: var(--bg-mint); color: var(--green-600); }
.bz-nav-arrow { width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin-top: -3px; opacity: .6; }
.bz-dropdown { position: absolute; top: calc(100% + 8px); left: 0; min-width: 260px; z-index: 60; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .18s ease; }
.bz-navitem:hover .bz-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.bz-dropdown a { display: block; padding: 11px 14px; border-radius: 8px; color: var(--body); font-size: 1rem; white-space: nowrap; }
.bz-dropdown a:hover { background: var(--bg-soft); color: var(--green-600); }
.bz-nav-right { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.bz-nav-right .bz-search-toggle {
  display: flex !important; align-items: center; justify-content: center;
  width: 44px !important; height: 44px !important; min-width: 44px !important; max-width: 44px;
  padding: 0 !important; margin: 0; flex: 0 0 44px;
  border: 1.5px solid var(--line); background: #fff !important; color: var(--navy) !important;
  border-radius: 50% !important; cursor: pointer; box-shadow: none !important;
  transition: background .15s, color .15s, border-color .15s;
}
.bz-nav-right .bz-search-toggle svg { width: 21px !important; height: 21px !important; stroke: var(--navy) !important; fill: none !important; display: block; opacity: 1 !important; }
.bz-nav-right .bz-search-toggle:hover { background: var(--bg-mint) !important; color: var(--green-600) !important; border-color: #bfe8cd; }
.bz-nav-right .bz-search-toggle:hover svg { stroke: var(--green-600) !important; }
.bz-nav-cta { display: inline-flex; }
.bz-hamburger { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px; align-items: center; justify-content: center; background: var(--bg-soft); border: none; border-radius: 12px; cursor: pointer; }
.bz-hamburger span { width: 20px; height: 2px; background: var(--navy); border-radius: 2px; transition: .25s; }
.bz-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.bz-hamburger.open span:nth-child(2) { opacity: 0; }
.bz-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .bz-navmenu, .bz-nav-cta { display: none; }
  .bz-hamburger { display: flex; }
  .bz-nav-right { margin-left: auto; }
}

/* Mobile drawer */
.bz-mob-overlay { position: fixed; inset: 0; background: rgba(11,27,43,.5); z-index: 990; opacity: 0; visibility: hidden; transition: .25s; }
.bz-mob-overlay.open { opacity: 1; visibility: visible; }
.bz-mob-nav { position: fixed; top: 0; right: 0; width: 84%; max-width: 360px; height: 100%; background: #fff; z-index: 995; padding: 78px 22px 30px; transform: translateX(100%); transition: transform .28s ease; overflow-y: auto; }
.bz-mob-nav.open { transform: translateX(0); }
.bz-mob-close { position: absolute; top: 18px; right: 18px; width: 40px; height: 40px; border: none; background: var(--bg-soft); border-radius: 50%; font-size: 20px; cursor: pointer; color: var(--navy); }
.bz-mob-item { border-bottom: 1px solid var(--line); }
.bz-mob-item > a { display: flex; justify-content: space-between; align-items: center; padding: 15px 4px; color: var(--navy); font-weight: 600; font-family: var(--font-head); }
.bz-mob-sub { display: none; padding: 0 0 10px 12px; }
.bz-mob-item.bz-mob-open .bz-mob-sub { display: block; }
.bz-mob-sub a { display: block; padding: 9px 4px; color: var(--body); font-size: .95rem; }
.bz-mob-arr { width: 8px; height: 8px; border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted); transform: rotate(45deg); }
.bz-mob-cta { margin-top: 20px; width: 100%; justify-content: center; }

/* ---------- Hero ---------- */
.bz-hero { position: relative; color: #fff; overflow: hidden; padding: 110px 0 116px;
  background:
    linear-gradient(95deg, rgba(8,26,50,.95) 0%, rgba(8,26,50,.88) 32%, rgba(9,30,56,.55) 60%, rgba(9,30,56,.30) 100%),
    var(--navy) url('images/hero.jpg') center right / cover no-repeat;
}
.bz-hero-inner { position: relative; z-index: 2; }
.bz-hero-text { max-width: 640px; }
.bz-hero h1 { color: #fff; }

/* Hero visual panel (no photo needed) */
.bz-hero-visual { position: relative; min-height: 380px; }
.bz-hv-card { position: relative; z-index: 3; background: rgba(255,255,255,.97); border-radius: 20px; box-shadow: 0 30px 70px rgba(0,0,0,.32); padding: 18px; max-width: 420px; margin-left: auto; }
.bz-hv-head { display: flex; align-items: center; gap: 7px; padding: 4px 6px 14px; border-bottom: 1px solid var(--line); margin-bottom: 12px; }
.bz-hv-head .bz-hv-d { width: 9px; height: 9px; border-radius: 50%; }
.bz-hv-d:nth-child(1){ background:#ff5f56;} .bz-hv-d:nth-child(2){ background:#ffbd2e;} .bz-hv-d:nth-child(3){ background:#27c93f;}
.bz-hv-title { margin-left: 8px; font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--navy); }
.bz-hv-row { display: flex; align-items: center; gap: 12px; padding: 11px 8px; border-radius: 12px; transition: background .15s; }
.bz-hv-row + .bz-hv-row { border-top: 1px solid #f0f3f7; }
.bz-hv-ico { width: 42px; height: 42px; border-radius: 11px; background: var(--grad-soft); color: var(--green-600); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bz-hv-ico svg { width: 22px; height: 22px; }
.bz-hv-row b { display: block; color: var(--ink); font-size: .96rem; font-weight: 700; }
.bz-hv-row small { color: var(--muted); font-size: .82rem; }
.bz-hv-info { flex: 1; min-width: 0; }
.bz-hv-tag { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--green-600); background: var(--bg-mint); padding: 4px 9px; border-radius: var(--radius-pill); }
.bz-hv-badge { position: absolute; z-index: 4; background: #fff; border-radius: 14px; box-shadow: 0 14px 34px rgba(0,0,0,.22); padding: 12px 16px; display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: .92rem; }
.bz-hv-badge svg { width: 22px; height: 22px; color: var(--green); flex-shrink: 0; }
.bz-hv-badge .bz-hv-num { font-size: 1.3rem; color: var(--green-600); }
.bz-hv-badge--1 { top: -22px; left: -18px; }
.bz-hv-badge--2 { bottom: -20px; left: 8px; }
.bz-hv-glow { position: absolute; z-index: 1; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(22,163,74,.45), transparent 70%); top: 20px; right: -40px; filter: blur(6px); }
@media (max-width: 940px) {
  .bz-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .bz-hero-text { max-width: 640px; }
  .bz-hv-card { margin: 0 auto; }
  .bz-hero-visual { min-height: 0; }
}
.bz-hero h1 .bz-hl { background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.bz-hero p { color: #d7e3f0; font-size: 1.34rem; line-height: 1.6; max-width: 660px; }
.bz-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.bz-hero-badges { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 40px; }
.bz-hero-badge { display: flex; align-items: center; gap: 9px; color: #cfe0ee; font-size: 1.04rem; font-weight: 500; }
.bz-hero-badge svg { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; }

/* Molecule decoration */
.bz-molecule { position: absolute; z-index: 1; opacity: .9; }
.bz-dot { position: absolute; border-radius: 50%; }

/* ---------- Trust / stats bar ---------- */
.bz-trust { background: linear-gradient(120deg, #0a2342 0%, #103a5c 58%, #14653e 100%); border: none; position: relative; overflow: hidden; }
.bz-trust::after { content:""; position:absolute; inset:0; pointer-events:none; background-image: radial-gradient(rgba(255,255,255,.06) 1.5px, transparent 1.6px); background-size: 28px 28px; }
.bz-trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; padding: 46px 0; position: relative; z-index: 1; }
.bz-stat { text-align: center; position: relative; }
.bz-trust-grid .bz-stat:not(:last-child)::before { content:""; position:absolute; right:-12px; top:50%; transform:translateY(-50%); width:1px; height:42px; background:rgba(255,255,255,.14); }
.bz-stat-num { font-family: var(--font-head); font-size: 2.8rem; font-weight: 700; color: #fff; line-height: 1; }
.bz-stat-num span { color: #4ade80; }
.bz-stat-label { font-size: 1.02rem; color: #b9cde0; margin-top: 8px; }
@media (max-width: 760px) { .bz-trust-grid { grid-template-columns: repeat(2,1fr); gap: 28px 16px; } }

/* ---------- Section heading ---------- */
.bz-head { max-width: 720px; margin: 0 auto 62px; text-align: center; }
.bz-head p { color: var(--muted); font-size: 1.22rem; line-height: 1.6; }

/* ---------- Dosage form grid ---------- */
.bz-forms-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px,1fr)); gap: 18px; }
.bz-form-card { position: relative; display: block; padding: 26px 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: transform .2s, box-shadow .2s, border-color .2s; overflow: hidden; }
.bz-form-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.bz-form-card::after { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--grad-accent); opacity: 0; transition: opacity .2s; }
.bz-form-card:hover::after { opacity: 1; }
.bz-form-ico { width: 52px; height: 52px; border-radius: 14px; background: var(--grad-soft); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--green-600); }
.bz-form-ico svg { width: 26px; height: 26px; }
.bz-form-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.bz-form-count { font-size: .88rem; color: var(--muted); }
.bz-form-card .bz-form-go { margin-top: 14px; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--green-600); display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Product cards ---------- */
.bz-prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px,1fr)); gap: 22px; }
.bz-prod-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column; }
.bz-prod-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.bz-prod-media { aspect-ratio: 4/3; background: radial-gradient(circle at 50% 40%, #fdfdfe 0%, #eef1f5 100%); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.bz-prod-card .bz-prod-media { border-bottom: 1px solid var(--line); }
/* Single product: no box — the product floats on the page with its own soft shadow */
.bz-prod-media--lead { background: transparent !important; box-shadow: none !important; border: none !important; }
.bz-prod-media--lead img { filter: drop-shadow(0 22px 26px rgba(11,37,69,.18)); }
.bz-prod-card .bz-prod-media img { filter: drop-shadow(0 7px 10px rgba(11,37,69,.16)); }
.bz-prod-media img { width: 100%; height: 100%; object-fit: cover; }
.bz-prod-media-ph { color: var(--green); opacity: .35; }
.bz-prod-body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.bz-prod-tag { font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--green-600); background: var(--bg-mint); padding: 4px 10px; border-radius: var(--radius-pill); align-self: flex-start; margin-bottom: 12px; }
.bz-prod-card h3 { font-size: 1.22rem; margin-bottom: 8px; }
.bz-prod-comp { font-size: .98rem; color: var(--muted); line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.bz-prod-meta { margin-top: auto; padding-top: 16px; display: flex; justify-content: space-between; align-items: center; }
.bz-prod-pack { font-size: .9rem; color: var(--muted); }
.bz-prod-link { font-family: var(--font-head); font-weight: 600; font-size: .96rem; color: var(--green-600); display: inline-flex; align-items: center; gap: 5px; }

/* ---------- Feature / why cards ---------- */
.bz-why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 22px; }
/* exactly 3 columns → 6 cards land as a symmetric 3 + 3 */
.bz-why-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) { .bz-why-grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .bz-why-grid--3 { grid-template-columns: 1fr; } }
.bz-why-card { position: relative; padding: 34px 30px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .2s, box-shadow .2s, border-color .2s; }
.bz-why-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad-accent); transform: scaleX(0); transform-origin: left; transition: transform .25s; }
.bz-why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.bz-why-card:hover::before { transform: scaleX(1); }
.bz-why-num { position: absolute; top: 22px; right: 26px; font-family: var(--font-head); font-weight: 700; font-size: 2.4rem; color: var(--bg-mint); line-height: 1; letter-spacing: -.03em; }
.bz-why-ico { position: relative; width: 60px; height: 60px; border-radius: 15px; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: background .2s; }
.bz-why-card:hover .bz-why-ico { background: var(--grad-accent); }
.bz-why-ico svg { width: 28px; height: 28px; }
.bz-why-card h3 { font-size: 1.3rem; margin-bottom: 4px; }
.bz-why-sub { display: block; font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--green-600); margin-bottom: 12px; }
.bz-why-card p { color: var(--muted); font-size: 1.04rem; line-height: 1.6; margin: 0; }

/* ---------- Split / CTA band ---------- */
.bz-cta-band { background: var(--grad-hero); border-radius: 26px; padding: 56px 48px; color: #fff; position: relative; overflow: hidden; }
.bz-cta-band::before { content: ""; position: absolute; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(22,163,74,.5), transparent 70%); top: -100px; right: -60px; }
.bz-cta-band h2 { color: #fff; position: relative; }
.bz-cta-band p { color: #d7e3f0; position: relative; max-width: 560px; }
.bz-cta-band .bz-hero-cta { position: relative; margin-top: 26px; }

/* Two-up split */
.bz-split { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.bz-split-card { padding: 40px 36px; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; overflow: hidden; transition: transform .2s, box-shadow .2s, border-color .2s, background .2s; }
.bz-split-card:hover { background: var(--bg-mint); border-color: #9fdcb5; box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.bz-split-card:hover h3 { color: var(--green-600); }
.bz-split-card--accent { background: var(--bg-mint); border-color: #cdeed8; }
.bz-split-media { margin: -40px -36px 28px; aspect-ratio: 16 / 8; overflow: hidden; position: relative; }
.bz-split-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.bz-split-card:hover .bz-split-media img { transform: scale(1.05); }
.bz-split-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(11,37,69,.18)); }
.bz-split-card h3 { font-size: 1.7rem; }
.bz-split-card ul { list-style: none; padding: 0; margin: 20px 0 26px; }
.bz-split-card li { display: flex; gap: 11px; padding: 8px 0; color: var(--body); font-size: 1.06rem; }
.bz-split-card li svg { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
@media (max-width: 820px) { .bz-split { grid-template-columns: 1fr; } }

/* ---------- Image frame (reusable) ---------- */
.bz-img-frame { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.bz-img-frame img { display: block; width: 100%; height: 100%; object-fit: cover; }
.bz-img-frame--tall { aspect-ratio: 4 / 3.4; }
.bz-float-badge { position: absolute; bottom: 18px; left: 18px; z-index: 2; background: rgba(255,255,255,.96); backdrop-filter: blur(4px); border-radius: 14px; box-shadow: 0 12px 30px rgba(0,0,0,.2); padding: 12px 16px; display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: .95rem; }
.bz-float-badge svg { width: 22px; height: 22px; color: var(--green); flex-shrink: 0; }
/* inline stat row (About) */
.bz-inline-stats { display: flex; flex-wrap: wrap; gap: 14px 30px; margin: 26px 0 30px; }
.bz-inline-stat { }
.bz-inline-stat b { display: block; font-family: var(--font-head); font-size: 1.7rem; color: var(--navy); line-height: 1; }
.bz-inline-stat b span { color: var(--green); }
.bz-inline-stat small { color: var(--muted); font-size: .92rem; }

/* ---------- Product page layout (single centered column, big lead image) ---------- */
.bz-prod-single { max-width: 880px; margin: 0 auto; }
.bz-prod-single .bz-prose { max-width: none; }
.bz-prod-media--lead { width: 100%; }

/* ---------- Product content (rich) ---------- */
.bz-class-badge { display: inline-flex; align-items: center; gap: 7px; background: var(--navy); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: .85rem; padding: 6px 14px; border-radius: var(--radius-pill); margin-bottom: 14px; }
.bz-check-list { list-style: none; padding: 0; margin: 14px 0 8px; }
.bz-check-list li { display: flex; gap: 11px; padding: 8px 0; color: var(--body); font-size: 1.04rem; }
.bz-check-list svg { width: 22px; height: 22px; color: var(--green); flex-shrink: 0; margin-top: 3px; }
.bz-callout { background: var(--bg-mint); border: 1px solid #cdeed8; border-left: 4px solid var(--green); border-radius: 14px; padding: 22px 26px; margin: 30px 0; display: flex; gap: 16px; }
.bz-callout svg { width: 30px; height: 30px; color: var(--green-600); flex-shrink: 0; }
.bz-callout h4 { font-family: var(--font-head); color: var(--navy); margin: 0 0 6px; font-size: 1.15rem; }
.bz-callout p { margin: 0; color: var(--body); }
.bz-myth-grid { display: grid; gap: 16px; margin: 22px 0 8px; }
.bz-myth-card { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.bz-myth-row { display: flex; gap: 14px; padding: 18px 22px; }
.bz-myth-row--myth { background: #fff6f4; }
.bz-myth-row--fact { background: var(--bg-mint); border-top: 1px solid #e0ece5; }
.bz-myth-row svg { width: 24px; height: 24px; flex-shrink: 0; margin-top: 2px; }
.bz-myth-row--myth svg { color: #df6a52; }
.bz-myth-row--fact svg { color: var(--green-600); }
.bz-myth-row b { display: block; font-family: var(--font-head); margin-bottom: 3px; color: var(--navy); }
.bz-myth-row p { margin: 0; color: var(--body); }
.bz-disclaimer { background: #f6f9fb; border: 1px solid var(--line); border-radius: 14px; padding: 20px 24px; margin-top: 38px; font-size: .92rem; line-height: 1.6; color: var(--muted); display: flex; gap: 14px; }
.bz-disclaimer svg { width: 22px; height: 22px; color: var(--muted); flex-shrink: 0; margin-top: 2px; }
.bz-toc { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 16px; padding: 22px 26px; margin-bottom: 40px; }
.bz-toc-title { font-family: var(--font-head); font-weight: 600; color: var(--navy); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.bz-toc ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.bz-toc a { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--navy); font-weight: 600; font-size: .94rem; padding: 9px 16px; border-radius: var(--radius-pill); border: 1px solid var(--line); transition: background .15s, color .15s, border-color .15s; }
.bz-toc a::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.bz-toc a:hover { background: var(--green-600); color: #fff; border-color: var(--green-600); }
.bz-toc a:hover::before { background: #fff; }

/* ---------- Chairman / about ---------- */
.bz-chairman-media { position: relative; display: flex; flex-direction: column; align-items: center; }
.bz-chairman-media::before { content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(22,163,74,.26), transparent 70%); top: 44%; left: 50%; transform: translate(-50%,-50%); }
.bz-chairman-media img { position: relative; width: 100%; max-width: 400px; height: auto; }
.bz-chairman-cap { position: relative; text-align: center; margin-top: 6px; }
.bz-chairman-cap b { display: block; font-family: var(--font-head); color: var(--navy); font-size: 1.25rem; }
.bz-chairman-cap span { color: var(--green-600); font-weight: 600; }
.bz-pullquote { border-left: 4px solid var(--green); padding: 4px 0 4px 22px; margin: 28px 0; font-family: var(--font-head); font-size: 1.4rem; line-height: 1.45; color: var(--navy); font-weight: 500; }
.bz-signature { margin-top: 22px; font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 1.1rem; }
.bz-signature span { display: block; font-weight: 400; font-size: .95rem; color: var(--muted); }

/* ---------- Quality band ---------- */
.bz-qband-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.bz-qband-list { list-style: none; padding: 0; margin: 26px 0 0; }
.bz-qband-list li { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.bz-qband-list li:last-child { border-bottom: none; }
.bz-qband-list svg { width: 26px; height: 26px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.bz-qband-list b { display: block; color: var(--ink); font-family: var(--font-head); font-size: 1.1rem; }
.bz-qband-list span { color: var(--muted); font-size: 1rem; }
@media (max-width: 860px) { .bz-qband-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- Reviews / testimonials carousel ---------- */
.bz-reviews { position: relative; }
.bz-reviews-track { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 6px 2px 8px; scrollbar-width: none; -ms-overflow-style: none; }
.bz-reviews-track::-webkit-scrollbar { display: none; }
.bz-review-card { scroll-snap-align: start; flex: 0 0 calc((100% - 44px) / 3); background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; display: flex; flex-direction: column; box-shadow: var(--shadow); }
@media (max-width: 900px) { .bz-review-card { flex-basis: calc((100% - 22px) / 2); } }
@media (max-width: 600px) { .bz-review-card { flex-basis: 100%; } }
.bz-stars { display: inline-flex; gap: 3px; margin-bottom: 16px; color: #f5a623; }
.bz-stars svg { width: 20px; height: 20px; fill: #f5a623 !important; }
.bz-rating-badge .bz-stars svg { width: 18px; height: 18px; fill: #f5a623 !important; }
.bz-quote { color: var(--green); opacity: .18; margin-bottom: -10px; }
.bz-quote svg { width: 40px; height: 40px; }
.bz-review-text { color: var(--ink); font-size: 1.05rem; line-height: 1.62; margin-bottom: 22px; flex: 1; }
.bz-review-author { display: flex; align-items: center; gap: 13px; }
.bz-review-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--grad-accent); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; flex-shrink: 0; }
.bz-review-name { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 1rem; }
.bz-review-loc { font-size: .9rem; color: var(--muted); display: flex; align-items: center; gap: 5px; }
.bz-review-loc svg { width: 13px; height: 13px; color: var(--green); }
.bz-reviews-nav { display: flex; gap: 12px; justify-content: center; margin-top: 28px; }
.bz-reviews-nav .bz-reviews-btn {
  display: flex !important; align-items: center; justify-content: center;
  width: 52px !important; height: 52px !important; min-width: 52px !important; max-width: 52px;
  padding: 0 !important; margin: 0; flex: 0 0 52px;
  border: 1.5px solid var(--line) !important; background: #fff !important; color: var(--navy) !important;
  border-radius: 50% !important; cursor: pointer; box-shadow: none !important;
  transition: background .15s, color .15s, border-color .15s;
}
.bz-reviews-nav .bz-reviews-btn svg { width: 22px !important; height: 22px !important; stroke: var(--navy) !important; fill: none !important; display: block; opacity: 1 !important; }
.bz-reviews-nav .bz-reviews-btn:hover { background: var(--navy) !important; color: #fff !important; border-color: var(--navy) !important; }
.bz-reviews-nav .bz-reviews-btn:hover svg { stroke: #fff !important; }
.bz-rating-badge { display: inline-flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 10px 20px; box-shadow: var(--shadow); margin-top: 6px; }
.bz-rating-badge .bz-stars { margin: 0; }
.bz-rating-badge b { font-family: var(--font-head); color: var(--navy); font-size: 1.05rem; }
.bz-rating-badge span { color: var(--muted); font-size: .92rem; }

/* ---------- Enquiry form ---------- */
.bz-form-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 38px; }
.bz-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bz-field { margin-bottom: 16px; }
.bz-field label { display: block; font-size: .96rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.bz-field input, .bz-field textarea, .bz-field select {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: inherit; font-size: 1.05rem; color: var(--ink); background: var(--bg-soft); transition: border-color .15s, background .15s;
}
.bz-field input:focus, .bz-field textarea:focus, .bz-field select:focus { outline: none; border-color: var(--green); background: #fff; }
.bz-field textarea { resize: vertical; min-height: 110px; }
.bz-hp { position: absolute; left: -9999px; }
.bz-form-note { font-size: .82rem; color: var(--muted); margin-top: 8px; }
@media (max-width: 620px) { .bz-form-row { grid-template-columns: 1fr; } .bz-form-wrap { padding: 26px 22px; } }

.bz-alert { padding: 14px 18px; border-radius: 12px; margin-bottom: 20px; font-size: .95rem; }
.bz-alert--ok { background: var(--bg-mint); color: var(--green-600); border: 1px solid #bfe8cd; }
.bz-alert--err { background: #fff1f1; color: #c0392b; border: 1px solid #f5c6c6; }

/* ---------- FAQ ---------- */
.bz-faq { max-width: 820px; margin: 0 auto; }
.bz-faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; background: #fff; }
.bz-faq-q { width: 100%; text-align: left; padding: 23px 26px; font-family: var(--font-head); font-weight: 600; font-size: 1.18rem; color: var(--navy); background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; gap: 14px; }
.bz-faq-q span.bz-faq-ico { width: 22px; height: 22px; flex-shrink: 0; position: relative; }
.bz-faq-q span.bz-faq-ico::before, .bz-faq-q span.bz-faq-ico::after { content: ""; position: absolute; background: var(--green); border-radius: 2px; transition: transform .2s; }
.bz-faq-q span.bz-faq-ico::before { width: 14px; height: 2px; top: 10px; left: 4px; }
.bz-faq-q span.bz-faq-ico::after { width: 2px; height: 14px; top: 4px; left: 10px; }
.bz-faq-item.open .bz-faq-q span.bz-faq-ico::after { transform: scaleY(0); }
.bz-faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.bz-faq-a-inner { padding: 0 26px 22px; color: var(--muted); font-size: 1.08rem; line-height: 1.65; }
.bz-faq-item.open .bz-faq-a { max-height: 400px; }

/* ---------- Breadcrumb ---------- */
.bz-crumb { font-size: .85rem; color: var(--muted); padding: 18px 0; }
.bz-crumb a { color: var(--muted); }
.bz-crumb a:hover { color: var(--green-600); }
.bz-crumb span { color: var(--navy); }

/* ---------- Page hero (interior) ---------- */
.bz-page-hero { background: var(--grad-hero); color: #fff; padding: 78px 0 86px; position: relative; overflow: hidden; }
.bz-page-hero::after { content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(22,163,74,.4), transparent 70%); top: -120px; right: -40px; }
/* page hero with background photo — set --hero-img inline per page */
.bz-page-hero.bz-hero-img {
  background-color: var(--navy);
  background-image:
    linear-gradient(95deg, rgba(8,26,50,.82) 0%, rgba(8,26,50,.5) 42%, rgba(8,26,50,.16) 74%, rgba(8,26,50,0) 100%),
    var(--hero-img);
  background-size: cover, cover;
  background-position: center, center right;
  background-repeat: no-repeat, no-repeat;
}
.bz-page-hero h1 { color: #fff; position: relative; }
.bz-page-hero p { color: #d7e3f0; max-width: 680px; position: relative; font-size: 1.24rem; line-height: 1.6; }

/* ---------- Prose (SEO content) ---------- */
.bz-prose { max-width: 760px; }
.bz-prose h2 { margin-top: 1.6em; }
.bz-prose h3 { margin-top: 1.4em; }
.bz-prose ul { padding-left: 22px; }
.bz-prose li { margin-bottom: 8px; }

/* ---------- Footer ---------- */
.bz-footer { background: var(--navy); color: #aebfd0; padding: 70px 0 0; }
.bz-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 50px; }
.bz-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; font-family: var(--font-head); }
.bz-footer ul { list-style: none; padding: 0; margin: 0; }
.bz-footer li { margin-bottom: 10px; }
.bz-footer a { color: #aebfd0; font-size: .94rem; }
.bz-footer a:hover { color: #fff; }
.bz-footer-logo img { height: 80px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.bz-footer-about { font-size: .94rem; line-height: 1.7; max-width: 320px; }
.bz-footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.bz-footer-contact svg { width: 17px; height: 17px; color: var(--green); flex-shrink: 0; margin-top: 3px; }
.bz-footer-certs { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.bz-cert-badge { font-size: .72rem; font-weight: 600; color: #cfe0ee; border: 1px solid rgba(255,255,255,.2); padding: 5px 11px; border-radius: var(--radius-pill); }
.bz-footer .bz-btn--wa, .bz-footer a.bz-btn--wa { color: #fff; font-weight: 700; background: #25D366; }
.bz-footer .bz-btn--wa:hover { color: #fff; background: #1eb959; }
.bz-footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .92rem; }
@media (max-width: 860px) { .bz-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .bz-footer-grid { grid-template-columns: 1fr; } }

/* ---------- Search overlay ---------- */
.bz-search-overlay { position: fixed; inset: 0; z-index: 9999; background: rgba(11,27,43,.55); display: flex; align-items: flex-start; justify-content: center; padding: 80px 20px 0; opacity: 0; visibility: hidden; transition: opacity .22s, visibility .22s; }
.bz-search-overlay.open { opacity: 1; visibility: visible; }
.bz-search-box { background: #fff; border-radius: var(--radius); width: 100%; max-width: 640px; box-shadow: var(--shadow-lg); overflow: hidden; max-height: calc(100vh - 130px); display: flex; flex-direction: column; transform: translateY(-14px); transition: transform .22s; }
.bz-search-overlay.open .bz-search-box { transform: translateY(0); }
.bz-search-header { display: flex; align-items: center; gap: 10px; padding: 15px 18px; border-bottom: 1px solid var(--line); }
.bz-search-header svg { width: 20px; height: 20px; color: var(--muted); flex-shrink: 0; }
.bz-search-input { flex: 1; border: none; font-size: 1rem; font-family: inherit; color: var(--ink); outline: none; background: none; }
.bz-search-close { border: none; background: var(--bg-soft); width: 32px; height: 32px; border-radius: 50%; cursor: pointer; color: var(--muted); font-size: 16px; }
.bz-search-body { overflow-y: auto; }
.bz-search-result { display: flex; align-items: center; gap: 14px; padding: 13px 20px; cursor: pointer; }
.bz-search-result:hover, .bz-search-result:focus { background: var(--bg-soft); outline: none; }
.bz-search-result-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--grad-soft); display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; color: var(--green); }
.bz-search-result-icon img { width: 100%; height: 100%; object-fit: cover; }
.bz-search-result-name { font-weight: 700; font-size: .95rem; color: var(--ink); }
.bz-search-result-name mark, .bz-search-result-comp mark { background: #fff3cd; border-radius: 2px; }
.bz-search-result-comp { font-size: .82rem; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bz-search-result-count { font-size: .78rem; color: var(--muted); padding: 10px 20px 6px; }
.bz-search-state { text-align: center; padding: 46px 24px; color: var(--muted); }
.bz-search-state p { font-weight: 600; color: var(--ink); margin: 8px 0 2px; }

/* ---------- Pagination ---------- */
.bz-pagination { display: flex; gap: 8px; justify-content: center; margin-top: 48px; flex-wrap: wrap; }
.bz-pagination a, .bz-pagination span { padding: 10px 16px; border-radius: 10px; border: 1px solid var(--line); color: var(--navy); font-weight: 600; font-size: .92rem; }
.bz-pagination .current { background: var(--navy); color: #fff; border-color: var(--navy); }
.bz-pagination a:hover { border-color: var(--green); color: var(--green-600); }

/* ---------- Filter chips ---------- */
.bz-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.bz-chip { padding: 9px 18px; border-radius: var(--radius-pill); border: 1.5px solid var(--line); background: #fff; color: var(--navy); font-weight: 600; font-size: .9rem; font-family: var(--font-head); transition: all .15s; }
.bz-chip:hover { border-color: var(--green); color: var(--green-600); }
.bz-chip.active { background: var(--grad-accent); color: #fff; border-color: transparent; }

/* ---------- Utilities ---------- */
.bz-mt-0 { margin-top: 0; }
.bz-grid-2 { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
@media (max-width: 860px) { .bz-grid-2 { grid-template-columns: 1fr; gap: 32px; } .bz-section { padding: 60px 0; } h1 { font-size: clamp(2.3rem, 8vw, 2.8rem); } }
.bz-floating-wa { position: fixed; bottom: 22px; right: 22px; z-index: 800; width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(37,211,102,.4); }
.bz-floating-wa svg { width: 30px; height: 30px; }
