/* Zuri Health — main.css — brand_prefix: zh */
/* Palette: Forest Green #1A6B4A, Deep Green #0F4730, Warm Terracotta #E8601C */

/* ===== CSS Custom Properties ===== */
:root {
  --zh-green:          #1A6B4A;
  --zh-green-deep:     #0F4730;
  --zh-green-acc:      #5ECBA1;
  --zh-terracotta:     #E8601C;
  --zh-terracotta-lt:  #F08040;
  --zh-fg-primary:     #1A1A1A;
  --zh-fg-secondary:   #4A5568;
  --zh-fg-dark-p:      #F0F7F3;
  --zh-fg-dark-s:      #A8D5BF;
  --zh-bg-light:       #F5FAF7;
  --zh-bg-white:       #FFFFFF;
  --zh-bg-cream:       #FDF8F2;
  --zh-bg-dark:        #0F4730;
  --zh-bg-dark-alt:    #1A6B4A;
  --zh-border:         #D4E9DC;
  --zh-shadow:         0 2px 16px rgba(26,107,74,0.10);
  --zh-radius:         12px;
  --zh-radius-sm:      8px;
  --zh-max-w:          1200px;
  --zh-nav-h:          68px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 17px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--zh-fg-primary);
  background: var(--zh-bg-white);
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
address { font-style: normal; }

/* ===== Typography ===== */
h1, h2, h3, h4, h5 {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--zh-fg-primary);
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; font-weight: 600; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ===== Layout helpers ===== */
.zh-container {
  max-width: var(--zh-max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.zh-section {
  padding: 80px 0;
}
.zh-section--sm {
  padding: 56px 0;
}

/* ===== Section backgrounds ===== */
.zh-bg-light   { background: var(--zh-bg-light); }
.zh-bg-white   { background: var(--zh-bg-white); }
.zh-bg-cream   { background: var(--zh-bg-cream); }
.zh-bg-dark    { background: var(--zh-bg-dark); }
.zh-bg-dark-alt { background: var(--zh-bg-dark-alt); }

/* ===== Buttons ===== */
.zh-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: background 0.18s, color 0.18s, transform 0.1s, box-shadow 0.18s;
  white-space: nowrap;
  text-align: center;
}
.zh-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.zh-btn:active { transform: none; }

.zh-btn--primary {
  background: var(--zh-green);
  color: #fff;
  border-color: var(--zh-green);
}
.zh-btn--primary:hover { background: var(--zh-green-deep); border-color: var(--zh-green-deep); }

.zh-btn--warm {
  background: var(--zh-terracotta);
  color: #fff;
  border-color: var(--zh-terracotta);
}
.zh-btn--warm:hover { background: #c94d10; border-color: #c94d10; }

.zh-btn--outline-light {
  background: transparent;
  color: var(--zh-green);
  border-color: var(--zh-green);
}
.zh-btn--outline-light:hover { background: var(--zh-green); color: #fff; }

.zh-btn--outline-dark {
  background: transparent;
  color: var(--zh-fg-dark-p);
  border-color: var(--zh-fg-dark-p);
}
.zh-btn--outline-dark:hover { background: rgba(255,255,255,0.15); }

.zh-btn--ghost-dark {
  background: rgba(255,255,255,0.1);
  color: var(--zh-fg-dark-p);
  border-color: rgba(255,255,255,0.3);
}
.zh-btn--ghost-dark:hover { background: rgba(255,255,255,0.2); }

.zh-btn--sm {
  padding: 9px 18px;
  font-size: 0.875rem;
}
.zh-btn--lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* ===== Eyebrow label ===== */
.zh-eyebrow {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.zh-section--dark .zh-eyebrow,
.zh-bg-dark .zh-eyebrow,
.zh-bg-dark-alt .zh-eyebrow,
.zh-hero .zh-eyebrow {
  color: var(--zh-green-acc);
}
.zh-bg-light .zh-eyebrow,
.zh-bg-white .zh-eyebrow,
.zh-bg-cream .zh-eyebrow {
  color: var(--zh-green);
}
/* context-scoped headings */
.zh-bg-dark h1, .zh-bg-dark h2, .zh-bg-dark h3,
.zh-bg-dark-alt h1, .zh-bg-dark-alt h2, .zh-bg-dark-alt h3 {
  color: var(--zh-fg-dark-p);
}
.zh-bg-dark p, .zh-bg-dark li,
.zh-bg-dark-alt p, .zh-bg-dark-alt li {
  color: var(--zh-fg-dark-s);
}

/* ===== NAV ===== */
.zh-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--zh-nav-h);
  z-index: 1000;
  transition: background 0.25s, box-shadow 0.25s;
}
/* dark-top pages: transparent nav at top */
body.zh-page--dark-top .zh-nav {
  background: transparent;
}
/* light-top pages: always solid nav */
body.zh-page--light-top .zh-nav {
  background: var(--zh-bg-dark);
  box-shadow: 0 2px 16px rgba(0,0,0,0.12);
}
/* scrolled state for dark-top pages */
body.zh-page--dark-top .zh-nav.zh-nav--scrolled {
  background: var(--zh-bg-dark);
  box-shadow: 0 2px 16px rgba(0,0,0,0.12);
}
/* light-top body: always dark bg */
body.zh-page--light-top {
  background: var(--zh-bg-white);
}
body.zh-page--dark-top {
  background: var(--zh-bg-dark);
}

.zh-nav__inner {
  max-width: var(--zh-max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.zh-nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.zh-nav__logo img {
  height: 36px;
  width: auto;
  max-width: 180px;
}
.zh-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.zh-nav__link {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--zh-fg-dark-p);
  transition: background 0.15s, color 0.15s;
}
.zh-nav__link:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.zh-nav__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.zh-nav__signin {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--zh-fg-dark-s);
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.zh-nav__signin:hover { color: #fff; background: rgba(255,255,255,0.08); }

/* Hamburger */
.zh-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.zh-nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--zh-fg-dark-p);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.zh-nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.zh-nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.zh-nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.zh-nav__mobile {
  display: none;
  position: fixed;
  top: var(--zh-nav-h);
  left: 0;
  right: 0;
  background: var(--zh-bg-dark);
  padding: 16px 24px 24px;
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.zh-nav__mobile.is-open { display: block; }
.zh-nav__mobile-link {
  display: block;
  padding: 12px 8px;
  color: var(--zh-fg-dark-p);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.15s;
}
.zh-nav__mobile-link:hover { color: var(--zh-green-acc); }
.zh-nav__mobile-cta {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ===== HERO — index dark ===== */
.zh-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--zh-nav-h);
  background: var(--zh-bg-dark);
  position: relative;
  overflow: hidden;
}
.zh-hero__inner {
  max-width: var(--zh-max-w);
  margin: 0 auto;
  padding: 64px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.zh-hero__content h1 {
  color: var(--zh-fg-dark-p);
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4.5vw, 3.25rem);
}
.zh-hero__content p {
  color: var(--zh-fg-dark-s);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 540px;
}
.zh-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.zh-hero__image-panel {
  position: relative;
  border-radius: var(--zh-radius);
  overflow: hidden;
}
.zh-hero__image-panel img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--zh-radius);
}

/* ===== Sub-page hero ===== */
.zh-subhero {
  padding-top: calc(var(--zh-nav-h) + 56px);
  padding-bottom: 56px;
  background: var(--zh-bg-light);
}
.zh-subhero--dark {
  background: var(--zh-bg-dark);
  padding-top: calc(var(--zh-nav-h) + 64px);
  padding-bottom: 64px;
}
.zh-subhero__inner {
  max-width: var(--zh-max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.zh-subhero__content {
  max-width: 720px;
}
.zh-subhero__inner h1 {
  margin-bottom: 16px;
}
.zh-subhero--dark h1,
.zh-subhero--dark h2,
.zh-subhero--dark .zh-subhero__sub {
  color: var(--zh-fg-dark-p);
}
.zh-subhero__sub {
  font-size: 1.1rem;
  color: var(--zh-fg-secondary);
  max-width: 600px;
}
.zh-subhero--dark .zh-subhero__sub {
  color: var(--zh-fg-dark-s);
}

/* Split sub-hero */
.zh-subhero--split .zh-subhero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.zh-subhero--split img {
  width: 100%;
  border-radius: var(--zh-radius);
  object-fit: cover;
  max-height: 380px;
}

/* ===== Access Channels (cream) ===== */
.zh-channels {
  background: var(--zh-bg-cream);
  padding: 80px 0;
}
.zh-channels__inner {
  max-width: var(--zh-max-w);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.zh-channels__headline {
  margin-bottom: 48px;
}
.zh-channels__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.zh-channel-card {
  background: var(--zh-bg-white);
  border-radius: var(--zh-radius);
  padding: 40px 28px;
  border: 1px solid var(--zh-border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.zh-channel-card:hover { box-shadow: var(--zh-shadow); transform: translateY(-4px); }
.zh-channel-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--zh-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.75rem;
  color: var(--zh-green);
}
.zh-channel-card__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--zh-fg-primary);
  margin-bottom: 10px;
}
.zh-channel-card__body {
  color: var(--zh-fg-secondary);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ===== Services grid (light) ===== */
.zh-services-grid__inner {
  max-width: var(--zh-max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.zh-services-grid__header {
  text-align: center;
  margin-bottom: 48px;
}
.zh-services-grid__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.zh-service-card {
  background: var(--zh-bg-white);
  border-radius: var(--zh-radius);
  padding: 32px 20px;
  text-align: center;
  border: 1px solid var(--zh-border);
  transition: box-shadow 0.2s, transform 0.2s;
  display: block;
  color: inherit;
}
.zh-service-card:hover { box-shadow: var(--zh-shadow); transform: translateY(-3px); }
.zh-service-card__icon {
  font-size: 2rem;
  color: var(--zh-green);
  margin-bottom: 14px;
}
.zh-service-card__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--zh-fg-primary);
}

/* ===== How It Works teaser (white) ===== */
.zh-steps__inner {
  max-width: var(--zh-max-w);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.zh-steps__header { margin-bottom: 48px; }
.zh-steps__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.zh-step-item {
  padding: 32px 24px;
  border-radius: var(--zh-radius);
  background: var(--zh-bg-light);
  position: relative;
}
.zh-step-item__num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--zh-green);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 12px;
}
.zh-step-item__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--zh-fg-primary);
  margin-bottom: 8px;
}
.zh-step-item__body {
  color: var(--zh-fg-secondary);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ===== Testimonials (light) ===== */
.zh-testimonials__inner {
  max-width: var(--zh-max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.zh-testimonials__header {
  text-align: center;
  margin-bottom: 48px;
}
.zh-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.zh-testimonial-card {
  background: var(--zh-bg-white);
  border-radius: var(--zh-radius);
  padding: 32px 28px;
  border: 1px solid var(--zh-border);
  position: relative;
}
.zh-testimonial-card::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--zh-green);
  opacity: 0.2;
  line-height: 1;
  position: absolute;
  top: 20px;
  left: 24px;
  font-family: Georgia, serif;
}
.zh-testimonial-card__quote {
  font-size: 0.97rem;
  color: var(--zh-fg-primary);
  line-height: 1.7;
  margin-bottom: 20px;
  margin-top: 16px;
}
.zh-testimonial-card__attr {
  font-size: 0.85rem;
  color: var(--zh-fg-secondary);
  font-weight: 500;
}

/* ===== Platform reach / Metric band (dark) ===== */
.zh-reach {
  background: var(--zh-bg-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.zh-reach__inner {
  max-width: var(--zh-max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.zh-reach__text h2 { color: var(--zh-fg-dark-p); margin-bottom: 40px; }
.zh-reach__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.zh-metric {
  background: rgba(255,255,255,0.06);
  border-radius: var(--zh-radius-sm);
  padding: 24px 20px;
  border: 1px solid rgba(255,255,255,0.1);
}
.zh-metric__value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--zh-green-acc);
  line-height: 1;
  margin-bottom: 8px;
}
.zh-metric__label {
  font-size: 0.85rem;
  color: var(--zh-fg-dark-s);
}
.zh-reach__map {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Africa map SVG */
.zh-africa-map {
  width: 100%;
  max-width: 380px;
  opacity: 0.9;
}

/* ===== CTA band (dark) ===== */
.zh-cta-band {
  background: var(--zh-bg-dark);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.zh-cta-band__inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.zh-cta-band h2 { color: var(--zh-fg-dark-p); margin-bottom: 16px; }
.zh-cta-band p { color: var(--zh-fg-dark-s); font-size: 1.05rem; margin-bottom: 32px; }
.zh-cta-band__ornament {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.12;
}

/* ===== FOOTER ===== */
.zh-footer {
  background: var(--zh-bg-dark);
  color: var(--zh-fg-dark-p);
}
.zh-footer__contact-bar {
  background: var(--zh-terracotta);
  padding: 14px 0;
}
.zh-footer__contact-bar-inner {
  max-width: var(--zh-max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 32px;
}
.zh-footer__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
}
.zh-footer__contact-item a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.5);
}
.zh-footer__contact-item a:hover { text-decoration-color: #fff; }
.zh-footer__main {
  padding: 56px 0 40px;
}
.zh-footer__inner {
  max-width: var(--zh-max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}
.zh-footer__logo-col .zh-footer__logo {
  height: 34px;
  width: auto;
  margin-bottom: 16px;
}
.zh-footer__desc {
  color: var(--zh-fg-dark-s);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.zh-footer__address {
  color: var(--zh-fg-dark-s);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.zh-footer__socials {
  display: flex;
  gap: 12px;
}
.zh-footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--zh-fg-dark-s);
  font-size: 0.95rem;
  transition: background 0.15s, color 0.15s;
}
.zh-footer__social-link:hover { background: var(--zh-green); color: #fff; }
.zh-footer__col-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--zh-fg-dark-p);
  margin-bottom: 16px;
}
.zh-footer__col-link {
  display: block;
  color: var(--zh-fg-dark-s);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color 0.15s;
}
.zh-footer__col-link:hover { color: var(--zh-fg-dark-p); }
.zh-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.zh-footer__bottom-inner {
  max-width: var(--zh-max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.zh-footer__copyright {
  font-size: 0.82rem;
  color: var(--zh-fg-dark-s);
}
.zh-footer__legal-links {
  display: flex;
  gap: 20px;
}
.zh-footer__legal-link {
  font-size: 0.82rem;
  color: var(--zh-fg-dark-s);
  transition: color 0.15s;
}
.zh-footer__legal-link:hover { color: var(--zh-fg-dark-p); }

/* ===== Cookie banner ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--zh-bg-dark);
  border-top: 3px solid var(--zh-green);
}
.cookie-banner__inner {
  max-width: var(--zh-max-w);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  font-size: 0.88rem;
  color: var(--zh-fg-dark-s);
  flex: 1;
  min-width: 200px;
}
.cookie-banner__text a {
  color: var(--zh-green-acc);
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-banner__btn {
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  transition: background 0.15s;
}
.cookie-banner__btn--primary {
  background: var(--zh-green);
  color: #fff;
}
.cookie-banner__btn--primary:hover { background: var(--zh-green-deep); }

/* ===== Fade-in animation ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ===== Section headers ===== */
.zh-section-header {
  text-align: center;
  margin-bottom: 48px;
}
.zh-section-header h2 { margin-bottom: 12px; }
.zh-section-header p {
  color: var(--zh-fg-secondary);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}
.zh-bg-dark .zh-section-header p,
.zh-bg-dark-alt .zh-section-header p {
  color: var(--zh-fg-dark-s);
}

/* ===== Feature list alternating ===== */
.zh-features__grid {
  max-width: var(--zh-max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.zh-feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  border-radius: var(--zh-radius);
  background: var(--zh-bg-white);
  border: 1px solid var(--zh-border);
}
.zh-feature-item__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--zh-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--zh-green);
  flex-shrink: 0;
}
.zh-feature-item__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--zh-fg-primary);
  margin-bottom: 6px;
}
.zh-feature-item__body {
  color: var(--zh-fg-secondary);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ===== Benefit 3-col ===== */
.zh-benefits__grid {
  max-width: var(--zh-max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.zh-benefit-card {
  padding: 32px 24px;
  border-radius: var(--zh-radius);
  background: var(--zh-bg-light);
  border: 1px solid var(--zh-border);
  text-align: center;
}
.zh-benefit-card__icon {
  font-size: 2rem;
  color: var(--zh-green);
  margin-bottom: 16px;
}
.zh-benefit-card__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--zh-fg-primary);
  margin-bottom: 8px;
}
.zh-benefit-card__body {
  color: var(--zh-fg-secondary);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ===== Eligibility checklist (cream) ===== */
.zh-eligibility {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}
.zh-eligibility h2 { margin-bottom: 28px; }
.zh-eligibility__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.zh-eligibility__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--zh-radius-sm);
  background: var(--zh-bg-white);
  border: 1px solid var(--zh-border);
  font-size: 0.95rem;
  color: var(--zh-fg-primary);
}
.zh-eligibility__item i {
  color: var(--zh-green);
  margin-top: 2px;
  flex-shrink: 0;
}

/* ===== Segment cards ===== */
.zh-segments__grid {
  max-width: var(--zh-max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.zh-segment-card {
  padding: 36px 28px;
  border-radius: var(--zh-radius);
  background: var(--zh-bg-light);
  border: 1px solid var(--zh-border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.zh-segment-card:hover { box-shadow: var(--zh-shadow); transform: translateY(-3px); }
.zh-segment-card__icon {
  font-size: 1.75rem;
  color: var(--zh-green);
  margin-bottom: 16px;
}
.zh-segment-card__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--zh-fg-primary);
  margin-bottom: 10px;
}
.zh-segment-card__body {
  color: var(--zh-fg-secondary);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ===== Mission centered ===== */
.zh-mission {
  text-align: center;
  padding: 80px 24px;
  max-width: 760px;
  margin: 0 auto;
}
.zh-mission__text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--zh-green);
  line-height: 1.5;
}

/* ===== Team cards (cream) ===== */
.zh-team__grid {
  max-width: var(--zh-max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.zh-team-card {
  background: var(--zh-bg-white);
  border-radius: var(--zh-radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--zh-border);
}
.zh-team-card__avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--zh-border);
  display: block;
}
.zh-team-card__avatar-letter {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--zh-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 16px;
  border: 3px solid var(--zh-bg-light);
}
.zh-team-card__name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--zh-fg-primary);
  margin-bottom: 4px;
}
.zh-team-card__title {
  font-size: 0.85rem;
  color: var(--zh-green);
  font-weight: 600;
  margin-bottom: 12px;
}
.zh-team-card__bio {
  font-size: 0.875rem;
  color: var(--zh-fg-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ===== Values grid (light) ===== */
.zh-values__grid {
  max-width: var(--zh-max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.zh-value-card {
  display: flex;
  gap: 20px;
  padding: 28px 24px;
  border-radius: var(--zh-radius);
  background: var(--zh-bg-white);
  border: 1px solid var(--zh-border);
}
.zh-value-card__icon {
  font-size: 1.6rem;
  color: var(--zh-green);
  flex-shrink: 0;
  margin-top: 2px;
}
.zh-value-card__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--zh-fg-primary);
  margin-bottom: 6px;
}
.zh-value-card__body {
  color: var(--zh-fg-secondary);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ===== Blog card grid ===== */
.zh-blog-grid__inner {
  max-width: var(--zh-max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.zh-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.zh-blog-card {
  border-radius: var(--zh-radius);
  background: var(--zh-bg-white);
  border: 1px solid var(--zh-border);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.zh-blog-card:hover { box-shadow: var(--zh-shadow); transform: translateY(-4px); }
.zh-blog-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  height: auto;
}
.zh-blog-card__body {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.zh-blog-card__cat {
  display: inline-block;
  padding: 3px 10px;
  background: var(--zh-bg-light);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--zh-green);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.zh-blog-card__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--zh-fg-primary);
  line-height: 1.35;
  margin-bottom: 10px;
}
.zh-blog-card__summary {
  color: var(--zh-fg-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 14px;
}
.zh-blog-card__meta {
  font-size: 0.8rem;
  color: var(--zh-fg-secondary);
  display: flex;
  gap: 10px;
  align-items: center;
}
.zh-blog-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--zh-green);
  margin-top: 12px;
  transition: gap 0.15s;
}
.zh-blog-card__read-more:hover { gap: 10px; }

/* ===== Contact split ===== */
.zh-contact__split {
  max-width: var(--zh-max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
}
.zh-contact__form-panel {
  background: var(--zh-bg-white);
}
.zh-contact__info-card {
  background: var(--zh-bg-light);
  border-radius: var(--zh-radius);
  padding: 36px 28px;
  border: 1px solid var(--zh-border);
}
.zh-contact__info-card h3 {
  margin-bottom: 24px;
  color: var(--zh-fg-primary);
}
.zh-contact__info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.zh-contact__info-item i {
  color: var(--zh-green);
  width: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}
.zh-contact__info-item a {
  color: var(--zh-green);
  text-decoration: underline;
  text-decoration-color: rgba(26,107,74,0.4);
}
.zh-contact__info-item a:hover { text-decoration-color: var(--zh-green); }
.zh-contact__info-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--zh-fg-secondary);
  margin-bottom: 4px;
}
.zh-contact__info-value {
  font-size: 0.95rem;
  color: var(--zh-fg-primary);
}
.zh-contact__hours {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--zh-border);
  font-size: 0.875rem;
  color: var(--zh-fg-secondary);
}

/* ===== Form styles ===== */
.zh-form { width: 100%; }
.zh-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.zh-form__group {
  margin-bottom: 20px;
}
.zh-form__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--zh-fg-primary);
  margin-bottom: 7px;
}
.zh-form__input,
.zh-form__select,
.zh-form__textarea {
  width: 100%;
  max-width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--zh-border);
  border-radius: var(--zh-radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--zh-fg-primary);
  background: var(--zh-bg-white);
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
  -webkit-appearance: none;
}
.zh-form__input:focus,
.zh-form__select:focus,
.zh-form__textarea:focus {
  outline: none;
  border-color: var(--zh-green);
  box-shadow: 0 0 0 3px rgba(26,107,74,0.1);
}
.zh-form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%234A5568' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  background-color: var(--zh-bg-white);
  color: var(--zh-fg-primary);
}
.zh-form__select option {
  background: var(--zh-bg-white);
  color: var(--zh-fg-primary);
}
.zh-form__textarea { resize: vertical; min-height: 120px; }

/* ===== Auth pages ===== */
.zh-auth-wrap {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.zh-auth-form {
  padding: clamp(48px, 6vw, 80px) clamp(32px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--zh-bg-white);
}
.zh-auth-form__logo {
  height: 32px;
  width: auto;
  max-width: 160px;
  margin-bottom: 36px;
}
.zh-auth-form h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--zh-fg-primary);
  margin-bottom: 8px;
}
.zh-auth-form__sub {
  color: var(--zh-fg-secondary);
  margin-bottom: 32px;
}
.zh-auth-form__inner {
  max-width: 420px;
}
.zh-auth-form .zh-btn {
  width: 100%;
  justify-content: center;
}
.zh-auth-form__footer {
  margin-top: 24px;
  font-size: 0.875rem;
  color: var(--zh-fg-secondary);
  text-align: center;
}
.zh-auth-form__footer a {
  color: var(--zh-green);
  font-weight: 600;
  text-decoration: underline;
}
.zh-auth-brand-panel {
  background: var(--zh-bg-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
}
.zh-auth-brand-panel h2 {
  color: var(--zh-fg-dark-p);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 16px;
}
.zh-auth-brand-panel p {
  color: var(--zh-fg-dark-s);
  font-size: 1rem;
  margin-bottom: 32px;
}
.zh-auth-brand-panel .zh-channel-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.zh-auth-brand-panel .zh-channel-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--zh-fg-dark-s);
  font-size: 0.95rem;
}
.zh-auth-brand-panel .zh-channel-list i {
  color: var(--zh-green-acc);
  width: 20px;
  flex-shrink: 0;
}
.zh-auth-brand-panel__ornament {
  position: absolute;
  bottom: -40px;
  right: -40px;
  opacity: 0.07;
  pointer-events: none;
}

/* Auth centered (reset password) */
.zh-auth-centered {
  min-height: 100vh;
  background: var(--zh-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}
.zh-auth-card {
  background: var(--zh-bg-white);
  border-radius: var(--zh-radius);
  padding: clamp(36px, 5vw, 56px);
  width: 100%;
  max-width: 460px;
  box-shadow: var(--zh-shadow);
  border: 1px solid var(--zh-border);
}
.zh-auth-card__logo {
  height: 32px;
  width: auto;
  max-width: 160px;
  margin-bottom: 28px;
}
.zh-auth-card h1 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--zh-fg-primary);
}
.zh-auth-card__sub {
  color: var(--zh-fg-secondary);
  margin-bottom: 28px;
}
.zh-auth-card .zh-btn {
  width: 100%;
  justify-content: center;
}
.zh-auth-card__back {
  display: block;
  text-align: center;
  margin-top: 16px;
  font-size: 0.875rem;
  color: var(--zh-green);
  text-decoration: underline;
}

/* ===== Legal pages ===== */
.zh-legal-wrap {
  padding-top: calc(var(--zh-nav-h) + 48px);
  padding-bottom: 80px;
  background: var(--zh-bg-white);
}
.zh-legal-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}
.legal-article .legal-header { margin-bottom: 40px; }
.legal-article .legal-header h1 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--zh-fg-primary);
  margin-bottom: 8px;
}
.legal-article .legal-meta {
  font-size: 0.85rem;
  color: var(--zh-fg-secondary);
}
.legal-article section { margin-bottom: 36px; }
.legal-article h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--zh-fg-primary);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--zh-border);
}
.legal-article p {
  color: var(--zh-fg-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-article ul {
  list-style: disc;
  padding-left: 24px;
  color: var(--zh-fg-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 14px;
}
.legal-article a { color: var(--zh-green); text-decoration: underline; }
.legal-article address {
  font-style: normal;
  color: var(--zh-fg-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
  padding: 16px 20px;
  background: var(--zh-bg-light);
  border-radius: var(--zh-radius-sm);
  border-left: 3px solid var(--zh-green);
  margin-top: 8px;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  color: var(--zh-fg-secondary);
  margin-bottom: 16px;
}
.legal-table th, .legal-table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--zh-border);
}
.legal-table th {
  background: var(--zh-bg-light);
  font-weight: 700;
  color: var(--zh-fg-primary);
}

/* ===== Service sub-pages ===== */
.zh-service-detail {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}
.zh-service-detail p {
  color: var(--zh-fg-secondary);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.zh-service-detail ul {
  list-style: none;
  margin-bottom: 24px;
}
.zh-service-detail ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--zh-border);
  color: var(--zh-fg-secondary);
  font-size: 0.95rem;
}
.zh-service-detail ul li::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--zh-green);
  flex-shrink: 0;
  margin-top: 7px;
}

/* ===== How it works — channel tabs ===== */
.zh-channels-tabs { max-width: var(--zh-max-w); margin: 0 auto; padding: 0 24px; }
.zh-channels-tabs__nav {
  display: flex;
  border-bottom: 2px solid var(--zh-border);
  margin-bottom: 40px;
  gap: 4px;
}
.zh-channels-tabs__btn {
  padding: 12px 24px;
  background: none;
  border: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--zh-fg-secondary);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color 0.15s, border-color 0.15s;
}
.zh-channels-tabs__btn:hover { color: var(--zh-green); }
.zh-channels-tabs__btn.is-active {
  color: var(--zh-green);
  border-bottom-color: var(--zh-green);
}
.zh-channels-tabs__content { display: none; }
.zh-channels-tabs__content.is-active { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.zh-channels-tabs__text h3 { margin-bottom: 14px; color: var(--zh-fg-primary); }
.zh-channels-tabs__text p { color: var(--zh-fg-secondary); font-size: 0.95rem; margin-bottom: 12px; }
.zh-channels-tabs__text ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.zh-channels-tabs__text li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--zh-fg-secondary);
  font-size: 0.9rem;
}
.zh-channels-tabs__text li i { color: var(--zh-green); margin-top: 2px; flex-shrink: 0; }
.zh-channels-tabs__img img {
  width: 100%;
  border-radius: var(--zh-radius);
  object-fit: cover;
}

/* ===== Numbered steps vertical ===== */
.zh-steps-vertical {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}
.zh-steps-vertical__list { list-style: none; margin: 0; padding: 0; }
.zh-steps-vertical__item {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--zh-border);
}
.zh-steps-vertical__item:last-child { border-bottom: none; }
.zh-steps-vertical__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--zh-green);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.zh-steps-vertical__text {
  padding-top: 8px;
  color: var(--zh-fg-secondary);
  font-size: 0.95rem;
}
.zh-steps-vertical__text strong {
  display: block;
  font-weight: 700;
  color: var(--zh-fg-primary);
  margin-bottom: 4px;
}

/* ===== Trust block (cream) ===== */
.zh-trust {
  background: var(--zh-bg-cream);
  padding: 64px 0;
}
.zh-trust__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.zh-trust__icon {
  font-size: 2rem;
  color: var(--zh-green);
  flex-shrink: 0;
}
.zh-trust__text h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--zh-fg-primary);
  margin-bottom: 10px;
}
.zh-trust__text p {
  color: var(--zh-fg-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 0;
}

/* ===== Services cards large ===== */
.zh-services-large__grid {
  max-width: var(--zh-max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.zh-service-large-card {
  background: var(--zh-bg-light);
  border-radius: var(--zh-radius);
  padding: 36px 28px;
  border: 1px solid var(--zh-border);
  box-shadow: 0 1px 8px rgba(26,107,74,0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}
.zh-service-large-card:hover { box-shadow: var(--zh-shadow); transform: translateY(-3px); }
.zh-service-large-card__icon {
  font-size: 2rem;
  color: var(--zh-green);
  margin-bottom: 16px;
}
.zh-service-large-card__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--zh-fg-primary);
  margin-bottom: 10px;
}
.zh-service-large-card__body {
  color: var(--zh-fg-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 20px;
}
.zh-service-large-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--zh-green);
  transition: gap 0.15s;
}
.zh-service-large-card__link:hover { gap: 10px; }

/* ===== Blog article page ===== */
.zh-blog-article__header {
  padding-top: calc(var(--zh-nav-h) + 48px);
  padding-bottom: 40px;
  background: var(--zh-bg-light);
}
.zh-blog-article__header-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}
.zh-blog-article__cat-date {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: var(--zh-fg-secondary);
}
.zh-blog-article__cat-badge {
  display: inline-block;
  padding: 3px 10px;
  background: var(--zh-bg-white);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--zh-green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid var(--zh-border);
}
.zh-blog-article__header h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--zh-fg-primary);
  margin-bottom: 16px;
}
.zh-blog-article__summary {
  font-size: 1.05rem;
  color: var(--zh-fg-secondary);
  line-height: 1.65;
}
.zh-blog-article__cover-wrap {
  max-width: 860px;
  margin: 0 auto 0;
  padding: 0 24px;
}
.zh-blog-article__cover {
  width: 100%;
  height: auto;
  border-radius: var(--zh-radius);
  margin: 32px 0;
  display: block;
}
.zh-blog-article__body {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 80px;
  font-size: 1rem;
  color: var(--zh-fg-secondary);
  line-height: 1.8;
}
.zh-blog-article__body h2 { color: var(--zh-fg-primary); margin: 32px 0 14px; }
.zh-blog-article__body h3 { color: var(--zh-fg-primary); margin: 24px 0 10px; font-size: 1.15rem; }
.zh-blog-article__body p { margin-bottom: 18px; }
.zh-blog-article__body ul { list-style: disc; padding-left: 24px; margin-bottom: 18px; }
.zh-blog-article__body ul li { margin-bottom: 6px; }
.zh-blog-article__body blockquote {
  border-left: 4px solid var(--zh-green);
  padding: 14px 20px;
  margin: 24px 0;
  background: var(--zh-bg-light);
  border-radius: 0 var(--zh-radius-sm) var(--zh-radius-sm) 0;
  font-style: italic;
  color: var(--zh-fg-primary);
}

/* ===== Blog index related strip ===== */
.zh-blog-related {
  padding: 64px 0;
  background: var(--zh-bg-light);
}
.zh-blog-related__inner {
  max-width: var(--zh-max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.zh-blog-related h2 { margin-bottom: 32px; }

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .zh-services-grid__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .zh-hero__inner { grid-template-columns: 1fr; }
  .zh-hero__image-panel { display: none; }
  .zh-channels__grid { grid-template-columns: 1fr 1fr; }
  .zh-services-grid__grid { grid-template-columns: repeat(2, 1fr); }
  .zh-steps__row { grid-template-columns: 1fr 1fr; }
  .zh-testimonials__grid { grid-template-columns: 1fr; }
  .zh-reach__inner { grid-template-columns: 1fr; }
  .zh-reach__map { order: -1; }
  .zh-features__grid { grid-template-columns: 1fr; }
  .zh-benefits__grid { grid-template-columns: 1fr; }
  .zh-segments__grid { grid-template-columns: 1fr 1fr; }
  .zh-team__grid { grid-template-columns: 1fr 1fr; }
  .zh-values__grid { grid-template-columns: 1fr; }
  .zh-footer__inner { grid-template-columns: 1fr 1fr; }
  .zh-contact__split { grid-template-columns: 1fr; }
  .zh-auth-wrap { grid-template-columns: 1fr; }
  .zh-auth-brand-panel { display: none; }
  .zh-subhero--split .zh-subhero__inner { grid-template-columns: 1fr; }
  .zh-subhero--split img { max-height: 300px; width: 100%; }
  .zh-services-large__grid { grid-template-columns: 1fr 1fr; }
  .zh-blog-grid { grid-template-columns: 1fr 1fr; }
  .zh-channels-tabs__content.is-active { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  html { font-size: 16px; }
  .zh-nav__links, .zh-nav__cta { display: none; }
  .zh-nav__hamburger { display: flex; }
  .zh-hero__inner { padding: 48px 20px; }
  .zh-channels__grid { grid-template-columns: 1fr; }
  .zh-services-grid__grid { grid-template-columns: 1fr 1fr; }
  .zh-steps__row { grid-template-columns: 1fr; }
  .zh-segments__grid { grid-template-columns: 1fr; }
  .zh-team__grid { grid-template-columns: 1fr; }
  .zh-footer__inner { grid-template-columns: 1fr; }
  .zh-reach__metrics { grid-template-columns: 1fr 1fr; }
  .zh-services-large__grid { grid-template-columns: 1fr; }
  .zh-blog-grid { grid-template-columns: 1fr; }
  .zh-form__row { grid-template-columns: 1fr; }
  .zh-footer__contact-bar-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .zh-container, .zh-section { padding-left: 16px; padding-right: 16px; }
}
