@charset "UTF-8";
/*
 * ZLHOST — Light Blue Theme v4
 * Premium hosting & web design agency · White/Blue system · Cairo font
 * RTL-first, fully responsive
 */

/* ============================================================
   Keyframes
   ============================================================ */
@keyframes zlFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes zlPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.65; transform: scale(0.88); }
}
@keyframes zlFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes zlSpin {
  to { transform: rotate(360deg); }
}
@keyframes zlShine {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ============================================================
   1. Design Tokens — Light / Blue
   ============================================================ */
:root {
  /* Backgrounds */
  --zl-bg:              #F4F7FF;
  --zl-surface:         #FFFFFF;
  --zl-surface-2:       #EEF3FF;
  --zl-dark-bg:         #0F1E3D;
  --zl-dark-surface:    #172442;

  /* Brand Colors */
  --zl-primary:         #1B5EF0;
  --zl-primary-dark:    #1444CC;
  --zl-primary-soft:    #EEF3FF;
  --zl-secondary:       #38BDF8;
  --zl-gradient:        linear-gradient(135deg, #1B5EF0 0%, #38BDF8 100%);
  --zl-gradient-soft:   linear-gradient(135deg, rgba(27,94,240,0.08) 0%, rgba(56,189,248,0.08) 100%);

  /* Text */
  --zl-text:            #0F172A;
  --zl-body:            #334155;
  --zl-body-dim:        #64748B;
  --zl-on-dark:         #F8FAFC;
  --zl-on-dark-muted:   #94A3B8;

  /* UI */
  --zl-line:            #E2E8F0;
  --zl-line-2:          #CBD5E1;
  --zl-shadow:          0 4px 20px rgba(15,23,42,0.07);
  --zl-shadow-md:       0 8px 36px rgba(15,23,42,0.12);
  --zl-shadow-lg:       0 16px 48px rgba(27,94,240,0.14);

  /* Radius */
  --zl-radius:          16px;
  --zl-radius-sm:       10px;
  --zl-radius-lg:       24px;
  --zl-radius-xl:       32px;

  /* Status */
  --zl-success:         #10B981;
  --zl-danger:          #EF4444;
  --zl-warn:            #F59E0B;
  --zl-whatsapp:        #25D366;
  --zl-whatsapp-dark:   #1DA851;

  /* Layout */
  --zl-container:       1160px;
  --zl-header-h:        72px;
  --zl-font:            "Cairo", system-ui, -apple-system, sans-serif;
  --zl-space:           clamp(3rem, 6vw, 5rem);
  --zl-ease:            cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   1b. Legacy variable aliases (old zh- vars → new zl- values)
   ============================================================ */
:root {
  --zh-bg:          var(--zl-bg);
  --zh-surface:     var(--zl-surface);
  --zh-primary:     var(--zl-primary);
  --zh-secondary:   var(--zl-secondary);
  --zh-text:        var(--zl-text);
  --zh-body:        var(--zl-body);
  --zh-body-dim:    var(--zl-body-dim);
  --zh-line:        var(--zl-line);
  --zh-shadow:      var(--zl-shadow);
  --zh-shadow-md:   var(--zl-shadow-md);
  --zh-radius:      var(--zl-radius);
  --zh-radius-sm:   var(--zl-radius-sm);
  --zh-whatsapp:    var(--zl-whatsapp);
  --zh-success:     var(--zl-success);
  --zh-danger:      var(--zl-danger);
  --zh-warn:        var(--zl-warn);
  --zh-font:        var(--zl-font);
  --zh-container:   var(--zl-container);
  --zh-header-h:    var(--zl-header-h);
  --zh-space:       var(--zl-space);
  --zh-gradient:    var(--zl-gradient);
  --zh-on-dark:     var(--zl-on-dark);
}

/* ============================================================
   2. Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--zl-font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--zl-body);
  background: var(--zl-bg);
  direction: rtl;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.zl-ltr { direction: ltr; }

a { color: var(--zl-primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--zl-primary-dark); }

img { max-width: 100%; height: auto; display: block; }

ul, ol { list-style: none; }

button { cursor: pointer; font-family: var(--zl-font); }

h1, h2, h3, h4, h5, h6 {
  color: var(--zl-text);
  font-weight: 800;
  line-height: 1.25;
}

/* ============================================================
   3. Layout
   ============================================================ */
.zl-container {
  width: 100%;
  max-width: var(--zl-container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.zl-section {
  padding: var(--zl-space) 0;
}

.zl-section--light { background: var(--zl-surface); }
.zl-section--soft  { background: var(--zl-bg); }
.zl-section--dark  {
  background: var(--zl-dark-bg);
  color: var(--zl-on-dark);
}

/* Section header */
.zl-sec-head {
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.zl-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--zl-primary);
  background: var(--zl-primary-soft);
  padding: 0.28rem 0.8rem;
  border-radius: 99px;
  margin-bottom: 0.75rem;
}

.zl-sec-head h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--zl-text);
  margin-bottom: 0.65rem;
  line-height: 1.25;
}

.zl-sec-head p {
  color: var(--zl-body-dim);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Grid spacer */
.zl-center { text-align: center; margin-top: 1.75rem; }

/* ============================================================
   4. Header
   ============================================================ */
#zl-shell {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 900;
  background: #ffffff;
  border-bottom: 1px solid var(--zl-line);
  transition: box-shadow 0.25s var(--zl-ease);
}

#zl-shell.zl-scrolled {
  box-shadow: 0 2px 20px rgba(15,23,42,0.10);
}

.zl-header-inner {
  display: flex;
  align-items: center;
  gap: 0;
  height: var(--zl-header-h);
}

/* Brand */
.zl-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}

.zl-brand img {
  height: 44px;
  width: auto;
  display: block;
}

.zl-brand__name {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--zl-primary);
  letter-spacing: -0.01em;
  line-height: 1;
}

.zl-brand__tagline {
  font-size: 0.68rem;
  color: var(--zl-body-dim);
  font-weight: 600;
  display: block;
}

/* Desktop nav */
.zl-nav {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  flex: 1;
  justify-content: center;
}

.zl-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.45rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--zl-body);
  border-radius: 8px;
  white-space: nowrap;
  transition: color 0.18s, background 0.18s;
  text-decoration: none;
}

.zl-nav__link:hover,
.zl-nav__link.active {
  color: var(--zl-primary);
  background: var(--zl-primary-soft);
}

/* Dropdown */
.zl-dd {
  position: relative;
}

.zl-dd__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.45rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--zl-body);
  border: none;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.18s, background 0.18s;
}

.zl-dd__btn:hover {
  color: var(--zl-primary);
  background: var(--zl-primary-soft);
}

.zl-dd__btn i.bi-chevron-down {
  font-size: 0.6rem;
  opacity: 0.6;
  transition: transform 0.2s;
}

.zl-dd__panel {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid var(--zl-line);
  border-radius: var(--zl-radius);
  box-shadow: var(--zl-shadow-md);
  padding: 0.4rem;
  display: none;
  z-index: 100;
}

.zl-dd:hover .zl-dd__panel,
.zl-dd:focus-within .zl-dd__panel {
  display: block;
}

.zl-dd__panel a {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--zl-body);
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}

.zl-dd__panel a:hover {
  background: var(--zl-primary-soft);
  color: var(--zl-primary);
}

.zl-dd__panel a.zl-dd__all {
  font-size: 0.8rem;
  color: var(--zl-primary);
  border-bottom: 1px solid var(--zl-line);
  border-radius: 0;
  margin-bottom: 0.3rem;
  padding-bottom: 0.55rem;
}

/* Header actions */
.zl-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* Language switch */
.zl-lang {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  border: 1.5px solid var(--zl-line);
  color: var(--zl-body-dim);
  background: transparent;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.15s, color 0.15s;
}

.zl-lang:hover {
  border-color: var(--zl-primary);
  color: var(--zl-primary);
}

/* Mobile burger */
.zl-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--zl-line);
  border-radius: 8px;
  background: transparent;
  color: var(--zl-text);
  font-size: 1.25rem;
  transition: border-color 0.15s, background 0.15s;
}

.zl-burger:hover {
  border-color: var(--zl-primary);
  background: var(--zl-primary-soft);
}

/* Header spacer */
.zl-spacer {
  height: var(--zl-header-h);
}

/* Flash messages */
.zl-flash-wrap {
  max-width: var(--zl-container);
  margin-inline: auto;
  padding: 0.5rem 1.25rem 0;
}

/* ============================================================
   5. Buttons
   ============================================================ */
.zl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.4rem;
  font-family: var(--zl-font);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--zl-radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s var(--zl-ease);
  position: relative;
  overflow: hidden;
}

/* Primary (blue gradient) */
.zl-btn--primary {
  background: var(--zl-gradient);
  color: #fff;
  box-shadow: 0 4px 16px rgba(27,94,240,0.3);
}

.zl-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(27,94,240,0.4);
  color: #fff;
}

/* Outline blue */
.zl-btn--outline {
  background: transparent;
  color: var(--zl-primary);
  border: 2px solid var(--zl-primary);
}

.zl-btn--outline:hover {
  background: var(--zl-primary-soft);
  color: var(--zl-primary-dark);
}

/* Ghost (light gray) */
.zl-btn--ghost {
  background: var(--zl-surface);
  color: var(--zl-body);
  border: 1.5px solid var(--zl-line);
}

.zl-btn--ghost:hover {
  border-color: var(--zl-primary);
  color: var(--zl-primary);
}

/* WhatsApp */
.zl-btn--wa {
  background: var(--zl-whatsapp);
  color: #fff;
}

.zl-btn--wa:hover {
  background: var(--zl-whatsapp-dark);
  color: #fff;
  transform: translateY(-1px);
}

/* On dark sections */
.zl-btn--light {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}

.zl-btn--light:hover {
  background: rgba(255,255,255,0.22);
  color: #fff;
}

/* Sizes */
.zl-btn--sm { padding: 0.45rem 1rem; font-size: 0.82rem; }
.zl-btn--lg { padding: 0.82rem 1.8rem; font-size: 0.96rem; }
.zl-btn--xl { padding: 1rem 2.2rem; font-size: 1rem; }
.zl-btn--block { width: 100%; }

/* Client area button (blue solid) */
.zl-btn--client {
  background: var(--zl-primary);
  color: #fff;
  border: none;
  font-size: 0.82rem;
}

.zl-btn--client:hover {
  background: var(--zl-primary-dark);
  color: #fff;
  transform: translateY(-1px);
}

/* ============================================================
   6. Badges + Alerts
   ============================================================ */
.zl-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.22rem 0.6rem;
  border-radius: 99px;
}

.zl-badge--blue { background: var(--zl-primary-soft); color: var(--zl-primary); }
.zl-badge--green { background: #ECFDF5; color: #059669; }
.zl-badge--orange { background: #FFF7ED; color: #D97706; }
.zl-badge--red { background: #FEF2F2; color: #DC2626; }

.zl-alert {
  padding: 0.85rem 1.2rem;
  border-radius: var(--zl-radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.zl-alert--ok  { background: #ECFDF5; color: #065F46; border: 1px solid #A7F3D0; }
.zl-alert--err { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }

/* ============================================================
   7. Hero Section
   ============================================================ */
.zl-hero {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  background: linear-gradient(160deg, #F0F5FF 0%, #FAFCFF 60%, #EEF6FF 100%);
  overflow: hidden;
  position: relative;
}

.zl-hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -5%;
  width: 40%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(27,94,240,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.zl-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* Text side */
.zl-hero__text {}

.zl-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--zl-primary);
  background: var(--zl-primary-soft);
  border: 1px solid rgba(27,94,240,0.15);
  padding: 0.35rem 0.9rem;
  border-radius: 99px;
  margin-bottom: 1.2rem;
  letter-spacing: 0.04em;
}

.zl-hero__h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 900;
  color: var(--zl-text);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.zl-hero__hl {
  display: block;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 800;
  background: var(--zl-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.1rem;
  line-height: 1.3;
}

.zl-hero__desc {
  color: var(--zl-body);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 1.75rem;
  max-width: 32rem;
}

.zl-hero__btns {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

/* Trust badges */
.zl-hero__trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.zl-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--zl-body-dim);
  background: var(--zl-surface);
  border: 1px solid var(--zl-line);
  padding: 0.35rem 0.8rem;
  border-radius: 8px;
  box-shadow: var(--zl-shadow);
}

.zl-trust-badge i {
  color: var(--zl-primary);
}

/* ============================================================
   Hero Visual — pure HTML/CSS composition (no SVG file)
   Built with Bootstrap Icons + gradients to match reference design.
   ============================================================ */
.zl-hero__vis {
  position: relative;
  width: 100%;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zl-hero__vis::before,
.zl-hero__vis::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.zl-hero__vis::before {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(56,189,248,0.18) 0%, transparent 65%);
  top: 15%; right: 5%;
}
.zl-hero__vis::after {
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(27,94,240,0.18) 0%, transparent 60%);
  bottom: 8%; left: 6%;
}

.zl-hero__photo {
  position: relative;
  z-index: 2;
  width: min(92%, 520px);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  border-radius: 28px;
  border: 1px solid rgba(191,219,254,0.95);
  box-shadow: 0 28px 70px rgba(27,94,240,0.22);
  background: #fff;
  animation: zlFloat 5.5s ease-in-out infinite;
}

/* Central laptop mockup */
.zl-hero-laptop {
  position: relative;
  width: clamp(280px, 80%, 460px);
  z-index: 2;
  animation: zlFloat 5.5s ease-in-out infinite;
}
.zl-hero-laptop__screen {
  background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
  border-radius: 14px 14px 0 0;
  padding: 14px;
  box-shadow: 0 20px 50px rgba(15,23,42,0.25);
  position: relative;
  border: 6px solid #0F172A;
  border-bottom: 0;
}
.zl-hero-laptop__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}
.zl-hero-laptop__bar i {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: inline-block;
}
.zl-hero-laptop__bar i:nth-child(1) { background: #F87171; }
.zl-hero-laptop__bar i:nth-child(2) { background: #FBBF24; }
.zl-hero-laptop__bar i:nth-child(3) { background: #34D399; }
.zl-hero-laptop__bar-url {
  flex: 1;
  background: rgba(255,255,255,0.08);
  height: 18px;
  border-radius: 4px;
  font-size: 0.62rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  padding: 0 8px;
  margin-inline-start: 6px;
  direction: ltr;
}
.zl-hero-laptop__page {
  background: #fff;
  border-radius: 6px;
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  min-height: 150px;
}
.zl-hero-laptop__tile {
  background: linear-gradient(135deg, #EEF3FF 0%, #DBE9FF 100%);
  border-radius: 6px;
  padding: 8px;
  font-size: 0.6rem;
  font-weight: 800;
  color: var(--zl-primary);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 44px;
}
.zl-hero-laptop__tile i { font-size: 1.1rem; }
.zl-hero-laptop__tile--green { background: linear-gradient(135deg, #ECFDF5 0%, #BBF7D0 100%); color: #059669; }
.zl-hero-laptop__tile--orange { background: linear-gradient(135deg, #FFF7ED 0%, #FED7AA 100%); color: #C2410C; }
.zl-hero-laptop__tile--purple { background: linear-gradient(135deg, #F5F3FF 0%, #DDD6FE 100%); color: #6D28D9; }
.zl-hero-laptop__tile-num { font-size: 0.85rem; font-weight: 900; }

.zl-hero-laptop__base {
  height: 14px;
  background: linear-gradient(180deg, #1E293B 0%, #0F172A 100%);
  border-radius: 0 0 18px 18px;
  position: relative;
}
.zl-hero-laptop__base::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 5px;
  border-radius: 0 0 12px 12px;
  background: #334155;
}

/* Floating chips around hero */
.zl-vis-chip {
  position: absolute;
  background: #fff;
  border: 1px solid var(--zl-line);
  border-radius: 14px;
  padding: 0.6rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 12px 28px rgba(15,23,42,0.12);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--zl-text);
  white-space: nowrap;
  z-index: 3;
}
.zl-vis-chip i {
  width: 30px; height: 30px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.zl-vis-chip__sub {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--zl-body-dim);
}

/* Each chip variant: positioning + icon color */
.zl-vis-chip--cloud {
  top: 4%; right: 4%;
  animation: zlFloat 4.2s ease-in-out infinite;
}
.zl-vis-chip--cloud i { background: #EEF3FF; color: var(--zl-primary); }

.zl-vis-chip--shield {
  top: 4%; left: 6%;
  animation: zlFloat 4.6s ease-in-out infinite 0.4s;
}
.zl-vis-chip--shield i { background: #ECFDF5; color: #10B981; }

.zl-vis-chip--server {
  top: 38%; right: -2%;
  animation: zlFloat 5s ease-in-out infinite 0.7s;
}
.zl-vis-chip--server i { background: #F5F3FF; color: #8B5CF6; }

.zl-vis-chip--wa {
  bottom: 22%; right: 2%;
  animation: zlFloat 3.8s ease-in-out infinite 0.9s;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  border-color: transparent;
}
.zl-vis-chip--wa i { background: rgba(255,255,255,0.18); color: #fff; }
.zl-vis-chip--wa .zl-vis-chip__sub { color: rgba(255,255,255,0.85); }

.zl-vis-chip--ai {
  bottom: 22%; left: 0;
  animation: zlFloat 4.4s ease-in-out infinite 0.2s;
  background: linear-gradient(135deg, #1B5EF0 0%, #38BDF8 100%);
  color: #fff;
  border-color: transparent;
}
.zl-vis-chip--ai i { background: rgba(255,255,255,0.18); color: #fff; }
.zl-vis-chip--ai .zl-vis-chip__sub { color: rgba(255,255,255,0.85); }

.zl-vis-chip--domain {
  bottom: 4%; left: 50%;
  transform: translateX(-50%);
  animation: zlFloat 4.8s ease-in-out infinite 1.1s;
  padding: 0.5rem 0.75rem;
}
.zl-vis-chip--domain i { background: var(--zl-dark-bg); color: #fff; }
.zl-vis-chip__tags {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.zl-vis-chip__tag {
  background: var(--zl-primary-soft);
  color: var(--zl-primary);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.18rem 0.5rem;
  border-radius: 6px;
  font-family: 'Cairo', sans-serif;
  direction: ltr;
}
.zl-vis-chip__tag--green { background: #ECFDF5; color: #059669; }

/* Decorative orbit ring around laptop */
.zl-hero__vis-ring {
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px dashed rgba(27,94,240,0.18);
  z-index: 1;
  animation: zlSpin 30s linear infinite;
}

/* ============================================================
   8. Service Category Cards (4 big cards)
   ============================================================ */
.zl-svc-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.zl-svc-cat {
  background: var(--zl-surface);
  border: 1px solid var(--zl-line);
  border-radius: var(--zl-radius);
  padding: 0 0 1.75rem;
  transition: transform 0.25s var(--zl-ease), box-shadow 0.25s var(--zl-ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Image area on service cards (icon-based illustration, no SVG file) */
.zl-svc-cat__img {
  width: 100%;
  height: 130px;
  border-radius: var(--zl-radius) var(--zl-radius) 0 0;
  background: linear-gradient(135deg, #EEF3FF 0%, #DBE9FF 60%, #F0F7FF 100%);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.zl-svc-cat__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  inset: 0;
  z-index: 0;
}
.zl-svc-cat__img::before,
.zl-svc-cat__img::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  z-index: 1;
}
.zl-svc-cat__img::before { width: 110px; height: 110px; top: -40px; right: -40px; }
.zl-svc-cat__img::after  { width: 70px;  height: 70px;  bottom: -28px; left: -28px; background: rgba(56,189,248,0.18); }

.zl-svc-cat__hero {
  position: relative;
  width: 84px;
  height: 84px;
  border-radius: 22px;
  background: var(--zl-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.4rem;
  box-shadow: 0 16px 30px rgba(27,94,240,0.32);
  z-index: 1;
  transition: transform 0.4s var(--zl-ease);
}
.zl-svc-cat__hero--green  { background: linear-gradient(135deg, #10B981 0%, #6EE7B7 100%); box-shadow: 0 16px 30px rgba(16,185,129,0.32); }
.zl-svc-cat__hero--orange { background: linear-gradient(135deg, #F59E0B 0%, #FCD34D 100%); box-shadow: 0 16px 30px rgba(245,158,11,0.32); }
.zl-svc-cat__hero--purple { background: linear-gradient(135deg, #8B5CF6 0%, #C4B5FD 100%); box-shadow: 0 16px 30px rgba(139,92,246,0.32); }
.zl-svc-cat:hover .zl-svc-cat__hero { transform: translateY(-3px) scale(1.04) rotate(-2deg); }

.zl-svc-cat__chip {
  position: absolute;
  background: #fff;
  color: var(--zl-primary);
  border-radius: 999px;
  padding: 0.3rem 0.6rem;
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: 0 6px 16px rgba(15,23,42,0.08);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  z-index: 2;
}
.zl-svc-cat__chip i { font-size: 0.85rem; }
.zl-svc-cat__chip--tl { top: 14px; right: 14px; }
.zl-svc-cat__chip--bl { bottom: 14px; left: 14px; color: #10B981; }

.zl-svc-cat__ic,
.zl-svc-cat h3,
.zl-svc-cat__list {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.zl-svc-cat > div:last-child {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.zl-svc-cat::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--zl-gradient);
  opacity: 0;
  transition: opacity 0.25s;
}

.zl-svc-cat:hover {
  transform: translateY(-4px);
  box-shadow: var(--zl-shadow-md);
}

.zl-svc-cat:hover::before { opacity: 1; }

.zl-svc-cat__ic {
  width: 52px;
  height: 52px;
  background: var(--zl-primary-soft);
  border-radius: var(--zl-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--zl-primary);
  margin-bottom: 1rem;
}

.zl-svc-cat__ic--green { background: #ECFDF5; color: #059669; }
.zl-svc-cat__ic--purple { background: #F5F3FF; color: #7C3AED; }
.zl-svc-cat__ic--orange { background: #FFF7ED; color: #D97706; }

.zl-svc-cat h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--zl-text);
  margin-bottom: 0.85rem;
  line-height: 1.3;
}

.zl-svc-cat__list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.zl-svc-cat__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: var(--zl-body-dim);
  line-height: 1.4;
}

.zl-svc-cat__list li::before {
  content: '\F26E';
  font-family: "bootstrap-icons";
  color: var(--zl-primary);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* ============================================================
   9. Stats Strip (Blue Gradient)
   ============================================================ */
.zl-stats {
  background: var(--zl-gradient);
  padding: 1.75rem 0;
  position: relative;
  overflow: hidden;
}

.zl-stats::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  right: -5%;
  width: 50%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.zl-stats__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.zl-stat-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.5rem 2rem;
  color: #fff;
  border-left: 1px solid rgba(255,255,255,0.2);
  text-align: start;
}

.zl-stat-item:first-child { border-left: none; }

[dir="rtl"] .zl-stat-item { border-left: none; border-right: 1px solid rgba(255,255,255,0.2); }
[dir="rtl"] .zl-stat-item:first-child { border-right: none; }

.zl-stat-item__ic {
  font-size: 1.75rem;
  opacity: 0.9;
  flex-shrink: 0;
}

.zl-stat-item__num {
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
  display: block;
}

.zl-stat-item__lbl {
  font-size: 0.78rem;
  opacity: 0.85;
  display: block;
  margin-top: 0.1rem;
}

/* ============================================================
   10. Why ZLHOST (4 feature cards)
   ============================================================ */
.zl-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.zl-why-card {
  background: var(--zl-surface);
  border: 1px solid var(--zl-line);
  border-radius: var(--zl-radius);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  transition: transform 0.22s var(--zl-ease), box-shadow 0.22s var(--zl-ease);
}

.zl-why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--zl-shadow-md);
}

.zl-why-card__ic {
  width: 48px;
  height: 48px;
  border-radius: var(--zl-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.zl-why-card__ic--blue   { background: var(--zl-primary-soft); color: var(--zl-primary); }
.zl-why-card__ic--green  { background: #ECFDF5; color: #059669; }
.zl-why-card__ic--purple { background: #F5F3FF; color: #7C3AED; }
.zl-why-card__ic--orange { background: #FFF7ED; color: #D97706; }

.zl-why-card__body {}
.zl-why-card__body h4 { font-size: 0.97rem; font-weight: 800; color: var(--zl-text); margin-bottom: 0.3rem; }
.zl-why-card__body p  { font-size: 0.85rem; color: var(--zl-body-dim); line-height: 1.6; margin: 0; }

/* ============================================================
   11. Hosting Packages (3 pricing cards)
   ============================================================ */
.zl-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.zl-price-card {
  background: var(--zl-surface);
  border: 2px solid var(--zl-line);
  border-radius: var(--zl-radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
  transition: transform 0.22s, box-shadow 0.22s;
}

.zl-price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--zl-shadow-md);
}

.zl-price-card--featured {
  border-color: var(--zl-primary);
  transform: translateY(-8px);
  box-shadow: var(--zl-shadow-lg);
}

.zl-price-card--featured:hover {
  transform: translateY(-12px);
}

.zl-price-badge {
  position: absolute;
  top: -1px;
  right: 50%;
  transform: translateX(50%);
  background: var(--zl-gradient);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.3rem 1rem;
  border-radius: 0 0 var(--zl-radius-sm) var(--zl-radius-sm);
}

.zl-price-card__ic {
  width: 52px;
  height: 52px;
  background: var(--zl-primary-soft);
  border-radius: var(--zl-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--zl-primary);
  margin-bottom: 1rem;
}

.zl-price-card--featured .zl-price-card__ic {
  background: var(--zl-gradient);
  color: #fff;
}

.zl-price-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--zl-text);
  margin-bottom: 0.25rem;
}

.zl-price-card__sub {
  font-size: 0.83rem;
  color: var(--zl-body-dim);
  margin-bottom: 1rem;
}

.zl-price-card__price {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--zl-primary);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.zl-price-card__price small {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--zl-body-dim);
}

.zl-price-card__features {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.zl-price-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.84rem;
  color: var(--zl-body);
  line-height: 1.45;
}

.zl-price-card__features li::before {
  content: '\F26E';
  font-family: "bootstrap-icons";
  color: var(--zl-success);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* ============================================================
   12. Solutions Sections (WordPress + AI)
   ============================================================ */
.zl-solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.zl-solution-card {
  background: var(--zl-surface);
  border: 1px solid var(--zl-line);
  border-radius: var(--zl-radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  position: relative;
  transition: transform 0.22s, box-shadow 0.22s;
}

.zl-solution-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--zl-shadow-md);
}

.zl-solution-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: var(--zl-gradient-soft);
  border-radius: 50%;
  transform: translate(30%, 30%);
  pointer-events: none;
}

/* Solution card icon-based banner (no SVG file) */
.zl-solution-card__img {
  width: calc(100% + 4rem);
  margin: -2rem -2rem 1.5rem;
  height: 180px;
  overflow: hidden;
  border-radius: var(--zl-radius-lg) var(--zl-radius-lg) 0 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #EEF3FF 0%, #DBE9FF 50%, #F0F7FF 100%);
}
.zl-solution-card__img::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255,255,255,0.85), transparent 38%),
    radial-gradient(circle at 80% 78%, rgba(56,189,248,0.22), transparent 42%);
}
.zl-solution-card__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.zl-solution-card__visual {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zl-solution-card__visual-main {
  position: relative;
  width: 110px;
  height: 110px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.2rem;
  color: #fff;
  background: var(--zl-gradient);
  box-shadow: 0 18px 36px rgba(27,94,240,0.34);
  z-index: 2;
}
.zl-solution-card__visual-main--ai { background: linear-gradient(135deg, #8B5CF6 0%, #C4B5FD 100%); box-shadow: 0 18px 36px rgba(139,92,246,0.32); }

.zl-solution-card__visual-chip {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 0.55rem 0.85rem;
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--zl-text);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 10px 22px rgba(15,23,42,0.1);
  z-index: 3;
  white-space: nowrap;
}
.zl-solution-card__visual-chip i { font-size: 1rem; color: var(--zl-primary); }
.zl-solution-card__visual-chip.green i { color: #10B981; }
.zl-solution-card__visual-chip.wa i { color: var(--zl-whatsapp); }
.zl-solution-card__visual-chip.purple i { color: #8B5CF6; }
.zl-solution-card__visual-chip--tl { top: 14px; right: 18px; animation: zlFloat 4s ease-in-out infinite; }
.zl-solution-card__visual-chip--tr { top: 14px; left: 18px; animation: zlFloat 4.4s ease-in-out infinite 0.6s; }
.zl-solution-card__visual-chip--bl { bottom: 14px; right: 18px; animation: zlFloat 3.8s ease-in-out infinite 0.3s; }
.zl-solution-card__visual-chip--br { bottom: 14px; left: 18px; animation: zlFloat 4.2s ease-in-out infinite 0.9s; }

.zl-solution-card__head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.zl-solution-card__ic {
  width: 52px;
  height: 52px;
  border-radius: var(--zl-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.zl-solution-card__ic--wp { background: #F0F4FF; color: #2563EB; }
.zl-solution-card__ic--ai { background: #F5F3FF; color: #7C3AED; }
.zl-solution-card__ic--wa { background: #ECFDF5; color: var(--zl-whatsapp); }

.zl-solution-card__head h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--zl-text);
  line-height: 1.3;
}

.zl-solution-card__head p {
  font-size: 0.82rem;
  color: var(--zl-body-dim);
  margin: 0;
}

.zl-solution-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
  flex: 1;
}

.zl-solution-card__features li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.83rem;
  color: var(--zl-body);
}

.zl-solution-card__features li i {
  color: var(--zl-primary);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ============================================================
   13. Feature Strip
   ============================================================ */
.zl-feat-strip {
  background: var(--zl-surface-2);
  padding: 1.25rem 0;
  border-top: 1px solid var(--zl-line);
  border-bottom: 1px solid var(--zl-line);
}

.zl-feat-strip__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.zl-feat-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--zl-body);
  padding: 0.35rem 1rem;
}

.zl-feat-item i {
  color: var(--zl-primary);
  font-size: 1rem;
}

.zl-feat-sep {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--zl-line-2);
  flex-shrink: 0;
}

/* ============================================================
   14. Portfolio Grid
   ============================================================ */
.zl-port-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.zl-port-card {
  background: var(--zl-surface);
  border: 1px solid var(--zl-line);
  border-radius: var(--zl-radius);
  overflow: hidden;
  transition: transform 0.22s, box-shadow 0.22s;
}

.zl-port-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--zl-shadow-md);
}

.zl-port-card__img {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #EEF3FF 0%, #DBE9FF 60%, #F0F7FF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.zl-port-card__img::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 18%, rgba(56,189,248,0.18), transparent 40%),
    radial-gradient(circle at 18% 82%, rgba(255,255,255,0.7), transparent 45%);
}

.zl-port-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--zl-ease);
  position: relative;
  z-index: 1;
}

.zl-port-card:hover .zl-port-card__img img {
  transform: scale(1.06);
}

/* Mock device "browser" frame for portfolio cards without an uploaded image */
.zl-port-card__img-mock {
  position: relative;
  width: 78%;
  height: 70%;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--zl-line);
  box-shadow: 0 14px 28px rgba(15,23,42,0.12);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1;
}
.zl-port-card__img-mock::before {
  content: '';
  display: block;
  height: 22px;
  background: #F1F5F9;
  border-bottom: 1px solid var(--zl-line);
  background-image:
    radial-gradient(circle 4px at 12px 11px, #F87171 50%, transparent 51%),
    radial-gradient(circle 4px at 26px 11px, #FBBF24 50%, transparent 51%),
    radial-gradient(circle 4px at 40px 11px, #34D399 50%, transparent 51%);
}
.zl-port-card__img-mock-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.4rem;
  color: var(--zl-primary);
  background: linear-gradient(135deg, #F8FAFF 0%, #EEF3FF 100%);
  padding: 0.6rem;
  text-align: center;
}
.zl-port-card__img-mock-body i { font-size: 2.2rem; }
.zl-port-card__img-mock-body span {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--zl-text);
}

.zl-port-card__body {
  padding: 1rem 1.1rem;
}

.zl-port-card__cat {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--zl-primary);
  background: var(--zl-primary-soft);
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}

.zl-port-card h3 {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--zl-text);
  margin-bottom: 0.35rem;
  line-height: 1.35;
}

.zl-port-card p {
  font-size: 0.8rem;
  color: var(--zl-body-dim);
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

.zl-port-card__ft {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

/* ============================================================
   15. Testimonials
   ============================================================ */
.zl-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.zl-testi-card {
  background: var(--zl-surface);
  border: 1px solid var(--zl-line);
  border-radius: var(--zl-radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow 0.22s;
}

.zl-testi-card:hover { box-shadow: var(--zl-shadow-md); }

.zl-testi-card__stars {
  color: #F59E0B;
  font-size: 0.85rem;
  margin-bottom: 0.85rem;
  display: flex;
  gap: 0.1rem;
}

.zl-testi-card__quote {
  font-size: 0.88rem;
  color: var(--zl-body);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.1rem;
}

.zl-testi-card__who {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.zl-testi-card__av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--zl-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.zl-testi-card__name {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--zl-text);
  display: block;
}

.zl-testi-card__role {
  font-size: 0.75rem;
  color: var(--zl-body-dim);
  display: block;
  margin-top: 0.1rem;
}

/* ============================================================
   16. FAQ
   ============================================================ */
.zl-faq {
  max-width: 52rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.zl-faq details {
  background: var(--zl-surface);
  border: 1px solid var(--zl-line);
  border-radius: var(--zl-radius);
  overflow: hidden;
}

.zl-faq details[open] {
  border-color: var(--zl-primary);
  box-shadow: 0 0 0 3px var(--zl-primary-soft);
}

.zl-faq details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--zl-text);
  cursor: pointer;
  list-style: none;
  user-select: none;
  gap: 0.5rem;
}

.zl-faq details summary::-webkit-details-marker { display: none; }

.zl-faq details summary::after {
  content: '\F282';
  font-family: "bootstrap-icons";
  font-size: 0.8rem;
  color: var(--zl-primary);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.zl-faq details[open] summary::after {
  content: '\F286';
}

.zl-faq__body {
  padding: 0 1.5rem 1.1rem;
  font-size: 0.88rem;
  color: var(--zl-body-dim);
  line-height: 1.7;
}

/* ============================================================
   17. CTA Blue Gradient
   ============================================================ */
.zl-cta-blue {
  background: var(--zl-gradient);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

.zl-cta-blue::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.zl-cta-blue__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.zl-cta-blue h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.5rem;
}

.zl-cta-blue p {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  margin: 0;
}

.zl-cta-blue__contacts {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.zl-cta-blue__contacts a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 600;
}

.zl-cta-blue__contacts a:hover { color: #fff; }

.zl-cta-blue__btns {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-width: 180px;
}

/* ============================================================
   18. Footer
   ============================================================ */
.zl-foot {
  background: var(--zl-dark-bg);
  color: var(--zl-on-dark-muted);
  padding: 3.5rem 0 0;
}

.zl-foot__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.zl-foot__brand img {
  height: 44px;
  width: auto;
  margin-bottom: 0.85rem;
}

.zl-foot__brand-name {
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.2rem;
}

.zl-foot__brand-tagline {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.85rem;
}

.zl-foot__brand p {
  font-size: 0.85rem;
  color: var(--zl-on-dark-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
  max-width: 22rem;
}

.zl-foot__soc {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.zl-foot__soc a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--zl-on-dark-muted);
  font-size: 0.9rem;
  transition: background 0.18s, color 0.18s;
}

.zl-foot__soc a:hover {
  background: var(--zl-primary);
  color: #fff;
  border-color: var(--zl-primary);
}

.zl-foot h5 {
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.zl-foot ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.zl-foot ul li a {
  font-size: 0.85rem;
  color: var(--zl-on-dark-muted);
  transition: color 0.15s;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.zl-foot ul li a:hover { color: var(--zl-secondary); }

.zl-foot__contact p {
  font-size: 0.82rem;
  color: var(--zl-on-dark-muted);
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.zl-foot__contact a {
  color: var(--zl-on-dark-muted);
}

.zl-foot__contact a:hover { color: var(--zl-secondary); }

.zl-foot__copy {
  padding: 1.25rem 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.zl-foot__copy a {
  color: rgba(255,255,255,0.35);
}

.zl-foot__copy a:hover { color: var(--zl-secondary); }

/* ============================================================
   19. WhatsApp FAB + Mobile CTA
   ============================================================ */
.zl-fab {
  position: fixed;
  bottom: 1.5rem;
  left: 1.25rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--zl-whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 800;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.zl-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
  color: #fff;
}

[dir="rtl"] .zl-fab { left: auto; right: 1.25rem; }

.zl-mobile-cta {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  background: #fff;
  border-top: 1px solid var(--zl-line);
  padding: 0.7rem 1rem;
  display: flex;
  gap: 0.5rem;
  z-index: 780;
  transform: translateY(100%);
  transition: transform 0.3s var(--zl-ease);
  box-shadow: 0 -4px 20px rgba(15,23,42,0.08);
}

.zl-mobile-cta--show { transform: translateY(0); }
.zl-mobile-cta .zl-btn { flex: 1; }

/* ============================================================
   20. Inner Page Hero
   ============================================================ */
.zl-page-hero {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(1.5rem, 3vw, 2.5rem);
  background: linear-gradient(160deg, #F0F5FF 0%, #FAFCFF 100%);
  border-bottom: 1px solid var(--zl-line);
  text-align: center;
}

.zl-page-hero--sm {
  padding: clamp(1.5rem, 3vw, 2rem) 0 1rem;
}

.zl-page-hero__kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--zl-primary);
  background: var(--zl-primary-soft);
  padding: 0.28rem 0.8rem;
  border-radius: 99px;
  margin-bottom: 0.75rem;
}

.zl-page-hero h1 {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--zl-text);
  margin-bottom: 0.65rem;
  line-height: 1.25;
}

.zl-page-hero p {
  color: var(--zl-body-dim);
  max-width: 40rem;
  margin-inline: auto;
  font-size: 1.02rem;
  line-height: 1.7;
}

/* Breadcrumb */
.zl-crumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.3rem;
  font-size: 0.83rem;
  color: var(--zl-body-dim);
  margin-top: 0.75rem;
}

.zl-crumb a {
  color: var(--zl-primary);
  font-weight: 600;
}

.zl-crumb a:hover { color: var(--zl-primary-dark); }
.zl-crumb i { font-size: 0.65rem; color: var(--zl-line-2); }

/* ============================================================
   21. Services Page (zl-svc-grid — dynamic cards from DB)
   ============================================================ */
.zl-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.zl-svc-card {
  background: var(--zl-surface);
  border: 1px solid var(--zl-line);
  border-radius: var(--zl-radius);
  padding: 1.5rem;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.zl-svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--zl-shadow-md);
  border-color: rgba(27,94,240,0.2);
}

.zl-svc-card__ic {
  width: 48px;
  height: 48px;
  background: var(--zl-primary-soft);
  border-radius: var(--zl-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--zl-primary);
  margin-bottom: 0.85rem;
}

.zl-svc-card h3 {
  font-size: 0.97rem;
  font-weight: 800;
  color: var(--zl-text);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.zl-svc-card p {
  font-size: 0.83rem;
  color: var(--zl-body-dim);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}

.zl-svc-card__act {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--zl-line);
}

.zl-svc-card__act a {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--zl-primary);
}

.zl-svc-card__act a:hover { color: var(--zl-primary-dark); }

/* ============================================================
   22. Service Detail Page
   ============================================================ */
.zl-svc-detail {
  max-width: 820px;
  margin-inline: auto;
}

.zl-svc-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.zl-svc-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: var(--zl-surface);
  border: 1px solid var(--zl-line);
  border-radius: var(--zl-radius-sm);
  padding: 0.85rem 1rem;
}

.zl-svc-feature i {
  font-size: 1rem;
  color: var(--zl-success);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.zl-svc-feature span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--zl-body);
  line-height: 1.5;
}

/* Steps (process) */
.zl-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.zl-step {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.25rem 0;
  position: relative;
}

.zl-step:not(:last-child) {
  border-bottom: 1px dashed var(--zl-line);
}

.zl-step__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--zl-gradient);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.zl-step h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--zl-text);
  margin-bottom: 0.25rem;
}

.zl-step p {
  font-size: 0.85rem;
  color: var(--zl-body-dim);
  margin: 0;
  line-height: 1.6;
}

/* ============================================================
   23. Packages Page (full pricing)
   ============================================================ */
.zl-pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* Reuses .zl-price-card */

.zl-pkg-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.25rem 0;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--zl-line);
}

.zl-pkg-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--zl-body-dim);
}

.zl-pkg-trust-item i { color: var(--zl-success); }

/* ============================================================
   24. Portfolio Page
   ============================================================ */
.zl-filter-tabs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}

.zl-filter-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.45rem 1.1rem;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--zl-body-dim);
  background: var(--zl-surface);
  border: 1.5px solid var(--zl-line);
  border-radius: 99px;
  cursor: pointer;
  transition: all 0.18s;
}

.zl-filter-tab:hover,
.zl-filter-tab--active {
  background: var(--zl-primary);
  border-color: var(--zl-primary);
  color: #fff;
}

/* ============================================================
   25. Blog Page
   ============================================================ */
.zl-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.zl-blog-card {
  background: var(--zl-surface);
  border: 1px solid var(--zl-line);
  border-radius: var(--zl-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s, box-shadow 0.22s;
}

.zl-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--zl-shadow-md);
}

.zl-blog-card__img {
  width: 100%;
  height: 190px;
  background: var(--zl-primary-soft);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zl-blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zl-blog-card__img i {
  font-size: 3rem;
  color: var(--zl-primary);
  opacity: 0.4;
}

.zl-blog-card__body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.zl-blog-card__cat {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--zl-primary);
  background: var(--zl-primary-soft);
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  margin-bottom: 0.65rem;
}

.zl-blog-card h3 {
  font-size: 0.97rem;
  font-weight: 800;
  color: var(--zl-text);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.zl-blog-card p {
  font-size: 0.82rem;
  color: var(--zl-body-dim);
  flex: 1;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.zl-blog-card__ft {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--zl-body-dim);
  border-top: 1px solid var(--zl-line);
  padding-top: 0.65rem;
  margin-top: auto;
}

/* Article layout */
.zl-article {
  max-width: 780px;
  margin-inline: auto;
}

.zl-article__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--zl-body-dim);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.zl-article__img {
  width: 100%;
  border-radius: var(--zl-radius);
  overflow: hidden;
  margin-bottom: 2rem;
  max-height: 420px;
}

.zl-article__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zl-article__content {
  font-size: 1rem;
  color: var(--zl-body);
  line-height: 1.85;
}

.zl-article__content h2, .zl-article__content h3 {
  color: var(--zl-text);
  margin: 1.75rem 0 0.75rem;
}

.zl-article__content p { margin-bottom: 1.1rem; }
.zl-article__content ul, .zl-article__content ol {
  padding-right: 1.5rem;
  margin-bottom: 1rem;
}

.zl-article__content li { margin-bottom: 0.4rem; }

/* ============================================================
   26. Contact Page
   ============================================================ */
.zl-contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: start;
}

.zl-contact-form-card {
  background: var(--zl-surface);
  border: 1px solid var(--zl-line);
  border-radius: var(--zl-radius-lg);
  padding: 2rem;
}

.zl-contact-form-card h2 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.zl-contact-form-card p {
  font-size: 0.85rem;
  color: var(--zl-body-dim);
  margin-bottom: 1.5rem;
}

/* Form fields */
.zl-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.zl-field label {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--zl-text);
}

.zl-field input,
.zl-field select,
.zl-field textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  font-family: var(--zl-font);
  font-size: 0.9rem;
  color: var(--zl-text);
  background: var(--zl-bg);
  border: 1.5px solid var(--zl-line);
  border-radius: var(--zl-radius-sm);
  transition: border-color 0.18s, box-shadow 0.18s;
  outline: none;
  direction: rtl;
}

.zl-field input:focus,
.zl-field select:focus,
.zl-field textarea:focus {
  border-color: var(--zl-primary);
  box-shadow: 0 0 0 3px var(--zl-primary-soft);
}

.zl-field textarea {
  resize: vertical;
  min-height: 110px;
}

.zl-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

/* WA card */
.zl-wa-card {
  background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
  border: 1px solid #A7F3D0;
  border-radius: var(--zl-radius-lg);
  padding: 1.75rem;
  text-align: center;
  margin-bottom: 1.25rem;
}

.zl-wa-card__ic {
  font-size: 3rem;
  color: var(--zl-whatsapp);
  margin-bottom: 0.5rem;
}

.zl-wa-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--zl-text);
  margin-bottom: 0.35rem;
}

.zl-wa-card p {
  font-size: 0.83rem;
  color: var(--zl-body-dim);
  margin-bottom: 1rem;
}

/* Contact info card */
.zl-contact-info-card {
  background: var(--zl-surface);
  border: 1px solid var(--zl-line);
  border-radius: var(--zl-radius-lg);
  padding: 1.5rem;
}

.zl-contact-info-card h3 {
  font-size: 0.97rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.zl-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--zl-line);
}

.zl-contact-info-item:last-child { border-bottom: none; }

.zl-contact-info-item i {
  font-size: 1.1rem;
  color: var(--zl-primary);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.zl-contact-info-item strong {
  display: block;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--zl-text);
  margin-bottom: 0.15rem;
}

.zl-contact-info-item span {
  font-size: 0.8rem;
  color: var(--zl-body-dim);
}

/* ============================================================
   27. About Page
   ============================================================ */
.zl-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.zl-about-vis {
  background: var(--zl-primary-soft);
  border-radius: var(--zl-radius-xl);
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.zl-about-vis::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--zl-gradient-soft);
}

.zl-about-vis i {
  font-size: 8rem;
  color: var(--zl-primary);
  opacity: 0.2;
}

.zl-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.zl-value-card {
  background: var(--zl-surface);
  border: 1px solid var(--zl-line);
  border-radius: var(--zl-radius);
  padding: 1.1rem;
  text-align: center;
  transition: box-shadow 0.22s;
}

.zl-value-card:hover { box-shadow: var(--zl-shadow-md); }

.zl-value-card i {
  font-size: 1.75rem;
  color: var(--zl-primary);
  margin-bottom: 0.5rem;
}

.zl-value-card h4 {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--zl-text);
  margin-bottom: 0.2rem;
}

.zl-value-card p {
  font-size: 0.78rem;
  color: var(--zl-body-dim);
  margin: 0;
}

/* ============================================================
   28. Legal Pages
   ============================================================ */
.zl-legal {
  max-width: 760px;
  margin-inline: auto;
  background: var(--zl-surface);
  border: 1px solid var(--zl-line);
  border-radius: var(--zl-radius-lg);
  padding: 2.5rem;
}

.zl-legal h2 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--zl-text);
  margin: 1.75rem 0 0.5rem;
}

.zl-legal p, .zl-legal li {
  font-size: 0.9rem;
  color: var(--zl-body);
  line-height: 1.8;
}

.zl-legal ul, .zl-legal ol {
  padding-right: 1.5rem;
  margin: 0.5rem 0 1rem;
}

/* ============================================================
   29. Reveal Animation
   ============================================================ */
.zl-reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s var(--zl-ease), transform 0.55s var(--zl-ease);
}

.zl-reveal--pending {
  opacity: 0;
  transform: translateY(22px);
}

.zl-reveal--in {
  opacity: 1;
  transform: none;
}

/* ============================================================
   30. Misc Helpers
   ============================================================ */
.zl-show-md  { display: none; }
.zl-hide-sm  { }

.zl-text-center { text-align: center; }
.zl-mute { color: var(--zl-body-dim); }

/* Process steps (homepage) */
.zl-process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
}

.zl-process-grid::before {
  content: '';
  position: absolute;
  top: 22px;
  right: 10%;
  left: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--zl-primary) 0%, var(--zl-secondary) 100%);
  opacity: 0.25;
}

.zl-proc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.zl-proc-step__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--zl-gradient);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 14px rgba(27,94,240,0.3);
}

.zl-proc-step h4 {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--zl-text);
  line-height: 1.35;
}

.zl-proc-step p {
  font-size: 0.78rem;
  color: var(--zl-body-dim);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   31. Legacy / Compatibility aliases (zh- classes → zl styles)
   These allow inner pages that still use zh- classes to render
   correctly without full PHP rewrite.
   ============================================================ */
.zh-body { /* body styles handled by body tag */ }

/* Redirect old section classes to new look */
.zh-section { padding: var(--zl-space) 0; background: var(--zl-bg); }
.zh-section--soft { background: var(--zl-surface); }
.zh-section--dark { background: var(--zl-dark-bg); color: var(--zl-on-dark); }

.zh-container {
  width: 100%;
  max-width: var(--zl-container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.zh-section-head {
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.zh-section-head h2 {
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  font-weight: 800;
  color: var(--zl-text);
  margin-bottom: 0.6rem;
}

.zh-section--dark .zh-section-head h2 { color: var(--zl-on-dark); }
.zh-section--dark .zh-section-head p  { color: var(--zl-on-dark-muted); }

.zh-section-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--zl-primary);
  background: var(--zl-primary-soft);
  padding: 0.28rem 0.8rem;
  border-radius: 99px;
  margin-bottom: 0.65rem;
}

.zh-section-title { font-size: clamp(1.4rem, 2.8vw, 2.1rem); font-weight: 800; color: var(--zl-text); margin-bottom: 0.6rem; }
.zh-section--dark .zh-section-title { color: var(--zl-on-dark); }

.zh-on-light { color: var(--zl-text) !important; }

/* Old svc-card → new look */
.zh-svc-card {
  background: var(--zl-surface);
  border: 1px solid var(--zl-line);
  border-radius: var(--zl-radius);
  padding: 0 0 1.25rem;
  transition: transform 0.22s, box-shadow 0.22s;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.zh-svc-card__thumb {
  width: 100%;
  height: 140px;
  overflow: hidden;
  border-radius: var(--zl-radius) var(--zl-radius) 0 0;
  background: var(--zl-surface-2);
  margin-bottom: 1.25rem;
}

.zh-svc-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--zl-ease);
}

.zh-svc-card:hover .zh-svc-card__thumb img { transform: scale(1.05); }

.zh-svc-card:hover { transform: translateY(-4px); box-shadow: var(--zl-shadow-md); }

.zh-svc-card__ic {
  width: 48px; height: 48px;
  background: var(--zl-primary-soft);
  border-radius: var(--zl-radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--zl-primary);
  margin: 0 1.25rem 0.85rem;
}

.zh-svc-card h3 { font-size: 0.97rem; font-weight: 800; color: var(--zl-text); margin-bottom: 0.5rem; padding: 0 1.25rem; }
.zh-svc-card p  { font-size: 0.83rem; color: var(--zl-body-dim); flex: 1; margin-bottom: 1rem; line-height: 1.6; padding: 0 1.25rem; }

.zh-svc-card__act {
  display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;
  padding: 0.75rem 1.25rem 0; border-top: 1px solid var(--zl-line); margin-top: auto;
}

.zh-svc-card__act a { font-size: 0.82rem; font-weight: 700; color: var(--zl-primary); }

.zh-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.zh-svc-center { text-align: center; margin-top: 1.75rem; }

/* Old pack → new pricing cards */
.zh-pack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.zh-pack {
  background: var(--zl-surface);
  border: 2px solid var(--zl-line);
  border-radius: var(--zl-radius-lg);
  padding: 0 1.75rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s, box-shadow 0.22s;
  overflow: hidden;
}

.zh-pack:hover { transform: translateY(-4px); box-shadow: var(--zl-shadow-md); }
.zh-pack--feat { border-color: var(--zl-primary); transform: translateY(-8px); box-shadow: var(--zl-shadow-lg); }
.zh-pack--feat:hover { transform: translateY(-12px); }

.zh-pack__badge {
  position: absolute; top: -1px; right: 50%; transform: translateX(50%);
  background: var(--zl-gradient); color: #fff;
  font-size: 0.72rem; font-weight: 800;
  padding: 0.3rem 1rem; border-radius: 0 0 var(--zl-radius-sm) var(--zl-radius-sm);
}

.zh-pack__visual {
  height: 126px;
  margin: 0 -1.75rem 1.4rem;
  overflow: hidden;
  background: linear-gradient(135deg, #EEF3FF 0%, #DBE9FF 100%);
  border-bottom: 1px solid var(--zl-line);
}
.zh-pack__visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.zh-pack__ic {
  width: 52px; height: 52px;
  background: var(--zl-primary-soft); border-radius: var(--zl-radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--zl-primary); margin-bottom: 1rem;
}

.zh-pack--feat .zh-pack__ic { background: var(--zl-gradient); color: #fff; }

.zh-pack h3 { font-size: 1.1rem; font-weight: 800; color: var(--zl-text); margin-bottom: 0.25rem; }
.zh-pack__sub { font-size: 0.83rem; color: var(--zl-body-dim); margin-bottom: 1rem; }
.zh-pack__price { font-size: 1.6rem; font-weight: 900; color: var(--zl-primary); margin-bottom: 1.25rem; }
.zh-pack ul { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; flex: 1; }
.zh-pack ul li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.84rem; color: var(--zl-body); }
.zh-pack ul li::before { content: '\F26E'; font-family: "bootstrap-icons"; color: var(--zl-success); font-size: 0.75rem; flex-shrink: 0; margin-top: 0.2rem; }

/* Old port → new portfolio look */
.zh-port-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.zh-port {
  background: var(--zl-surface);
  border: 1px solid var(--zl-line);
  border-radius: var(--zl-radius);
  overflow: hidden;
  transition: transform 0.22s, box-shadow 0.22s;
}

.zh-port:hover { transform: translateY(-4px); box-shadow: var(--zl-shadow-md); }

.zh-port__frame {
  height: 180px;
  background: var(--zl-primary-soft);
  overflow: hidden;
}

.zh-port__frame img { width: 100%; height: 100%; object-fit: cover; }

.zh-port__frame--mock {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  height: 100%; gap: 0.4rem; color: var(--zl-primary); font-size: 2.5rem;
}

.zh-port__body { padding: 1rem 1.1rem; }
.zh-port__cat {
  display: inline-block; font-size: 0.7rem; font-weight: 800;
  color: var(--zl-primary); background: var(--zl-primary-soft);
  padding: 0.2rem 0.55rem; border-radius: 6px; margin-bottom: 0.5rem;
}

.zh-port__body h3 { font-size: 0.92rem; font-weight: 800; color: var(--zl-text); margin-bottom: 0.35rem; }
.zh-port__body p  { font-size: 0.8rem; color: var(--zl-body-dim); margin-bottom: 0.75rem; line-height: 1.55; }

.zh-port__ft { display: flex; gap: 0.4rem; flex-wrap: wrap; }

/* Old testimonial */
.zh-tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.zh-tcard {
  background: var(--zl-surface);
  border: 1px solid var(--zl-line);
  border-radius: var(--zl-radius);
  padding: 1.5rem;
  transition: box-shadow 0.22s;
}

.zh-tcard:hover { box-shadow: var(--zl-shadow-md); }

.zh-tcard__stars { color: #F59E0B; font-size: 0.85rem; margin-bottom: 0.85rem; }
.zh-tcard p { font-size: 0.88rem; color: var(--zl-body); line-height: 1.7; margin-bottom: 1rem; }
.zh-tcard__who { display: flex; align-items: center; gap: 0.75rem; }
.zh-tcard__av { width: 42px; height: 42px; border-radius: 50%; background: var(--zl-gradient); display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 800; color: #fff; flex-shrink: 0; }
.zh-tcard__who strong { display: block; font-size: 0.88rem; font-weight: 800; color: var(--zl-text); }
.zh-tcard__who small  { font-size: 0.75rem; color: var(--zl-body-dim); }

/* Old faq */
.zh-faq { max-width: 52rem; margin-inline: auto; display: flex; flex-direction: column; gap: 0.65rem; }
.zh-faq__item { background: var(--zl-surface); border: 1px solid var(--zl-line); border-radius: var(--zl-radius); overflow: hidden; }
.zh-faq__item[open] { border-color: var(--zl-primary); box-shadow: 0 0 0 3px var(--zl-primary-soft); }
.zh-faq__item summary { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 1.5rem; font-size: 0.95rem; font-weight: 700; color: var(--zl-text); cursor: pointer; list-style: none; user-select: none; }
.zh-faq__item summary::-webkit-details-marker { display: none; }
.zh-faq__item summary::after { content: '\F282'; font-family: "bootstrap-icons"; font-size: 0.8rem; color: var(--zl-primary); flex-shrink: 0; }
.zh-faq__item[open] summary::after { content: '\F286'; }
.zh-faq__body { padding: 0 1.5rem 1.1rem; font-size: 0.88rem; color: var(--zl-body-dim); line-height: 1.7; }

/* Old CTA → new light */
.zh-cta {
  background: var(--zl-gradient);
  border-radius: var(--zl-radius-xl);
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.zh-cta h2 { font-size: clamp(1.3rem, 2.5vw, 1.85rem); font-weight: 900; color: #fff; margin-bottom: 0.5rem; }
.zh-cta p  { color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; }
.zh-cta__act { display: flex; align-items: center; justify-content: center; gap: 0.75rem; flex-wrap: wrap; }

/* Old strip → new */
.zh-strip {
  background: var(--zl-gradient);
  padding: 0.75rem 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  text-align: center;
  font-weight: 600;
}

/* Old why → new */
.zh-why {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.zh-why__item {
  background: var(--zl-surface);
  border: 1px solid var(--zl-line);
  border-radius: var(--zl-radius);
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  transition: box-shadow 0.22s;
}

.zh-why__item:hover { box-shadow: var(--zl-shadow-md); }

.zh-why__ic {
  width: 44px; height: 44px;
  background: var(--zl-primary-soft);
  border-radius: var(--zl-radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--zl-primary); flex-shrink: 0;
}

.zh-why__item h4 { font-size: 0.92rem; font-weight: 800; color: var(--zl-text); margin-bottom: 0.2rem; }
.zh-why__item p  { font-size: 0.82rem; color: var(--zl-body-dim); margin: 0; line-height: 1.6; }

/* Old process steps */
.zh-proc {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
}

.zh-proc::before {
  content: '';
  position: absolute;
  top: 22px;
  right: 10%; left: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--zl-primary) 0%, var(--zl-secondary) 100%);
  opacity: 0.2;
}

.zh-proc__item {
  display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: 0.75rem;
}

.zh-proc__num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--zl-gradient); color: #fff;
  font-size: 0.9rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  box-shadow: 0 4px 14px rgba(27,94,240,0.3);
}

.zh-proc__item h4 { font-size: 0.88rem; font-weight: 800; color: var(--zl-text); }
.zh-proc__item p  { font-size: 0.78rem; color: var(--zl-body-dim); margin: 0; line-height: 1.55; }

/* Old hv panels → new */
.zh-hv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.zh-hv {
  background: var(--zl-surface);
  border: 1px solid var(--zl-line);
  border-radius: var(--zl-radius);
  padding: 1.5rem;
  transition: transform 0.22s, box-shadow 0.22s;
}

.zh-hv:hover { transform: translateY(-3px); box-shadow: var(--zl-shadow-md); }

.zh-hv__label {
  display: inline-block; font-size: 0.7rem; font-weight: 800;
  color: var(--zl-primary); background: var(--zl-primary-soft);
  padding: 0.2rem 0.55rem; border-radius: 6px; margin-bottom: 0.6rem;
}

.zh-hv h3 { font-size: 1rem; font-weight: 800; color: var(--zl-text); margin-bottom: 0.5rem; }
.zh-hv p  { font-size: 0.85rem; color: var(--zl-body-dim); margin-bottom: 1rem; line-height: 1.6; }
.zh-hv__act { display: flex; gap: 0.5rem; flex-wrap: wrap; }

/* Old page-hero → new */
.zh-page { background: linear-gradient(160deg, #F0F5FF 0%, #FAFCFF 100%); border-bottom: 1px solid var(--zl-line); padding: clamp(2.5rem,5vw,4rem) 0 clamp(1.5rem,3vw,2.5rem); text-align: center; }
.zh-page h1 { font-size: clamp(1.5rem,3.5vw,2.4rem); font-weight: 800; color: var(--zl-text); margin-bottom: 0.65rem; }
.zh-page p  { color: var(--zl-body-dim); max-width: 40rem; margin-inline: auto; }

/* Old crumb */
.zh-crumb {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 0.3rem; font-size: 0.83rem; color: var(--zl-body-dim); margin-top: 0.75rem;
}
.zh-crumb a { color: var(--zl-primary); font-weight: 600; }
.zh-crumb i { font-size: 0.65rem; }

/* Old eyebrow + lead */
.zh-eyebrow { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.78rem; font-weight: 800; color: var(--zl-primary); background: var(--zl-primary-soft); border: 1px solid rgba(27,94,240,0.15); padding: 0.32rem 0.85rem; border-radius: 99px; margin-bottom: 1rem; }
.zh-lead { font-size: 1.02rem; color: var(--zl-body); line-height: 1.75; margin-bottom: 1.5rem; }

/* Old trust chips */
.zh-trust { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1.25rem; }
.zh-trust__chip { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.78rem; font-weight: 700; color: var(--zl-body-dim); background: var(--zl-surface); border: 1px solid var(--zl-line); padding: 0.32rem 0.75rem; border-radius: 8px; }
.zh-trust__chip i { color: var(--zl-primary); }

/* Old hero grid */
.zh-hero { background: linear-gradient(160deg,#F0F5FF 0%,#FAFCFF 60%,#EEF6FF 100%); padding: clamp(3rem,7vw,5rem) 0 clamp(2rem,4vw,3rem); }
.zh-hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.zh-hero__grid h1 { font-size: clamp(1.6rem,3vw,2.5rem); font-weight: 900; color: var(--zl-text); margin-bottom: 0.5rem; }
.zh-hero__ctas { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1.25rem; }

/* Old mock cards → dashboard style */
.zh-mock { background: var(--zl-surface); border: 1px solid var(--zl-line); border-radius: var(--zl-radius); padding: 1.25rem; box-shadow: var(--zl-shadow); margin-bottom: 1rem; }
.zh-mock__bar { display: flex; align-items: center; gap: 0.5rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--zl-line); margin-bottom: 0.75rem; font-size: 0.85rem; font-weight: 700; color: var(--zl-text); }
.zh-mock__grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-bottom: 0.6rem; }
.zh-mock__cell { background: var(--zl-bg); border-radius: 8px; padding: 0.5rem 0.6rem; }
.zh-mock__l { font-size: 0.68rem; color: var(--zl-body-dim); }
.zh-mock__v { font-size: 1.05rem; font-weight: 800; }
.zh-mock__v--g { color: var(--zl-success); }
.zh-mock__v--b { color: var(--zl-primary); }
.zh-mock__row { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: var(--zl-body-dim); padding: 0.3rem 0; border-bottom: 1px solid var(--zl-line); }
.zh-mock__row:last-of-type { border-bottom: none; }
.zh-mock__live { color: var(--zl-success); font-weight: 700; }
.zh-mock__mini { font-size: 0.72rem; color: var(--zl-body-dim); margin-top: 0.5rem; }
.zh-mock__dot span { display: inline-block; width: 8px; height: 8px; border-radius: 50%; }
.zh-mock__dot span:nth-child(1) { background: #EF4444; }
.zh-mock__dot span:nth-child(2) { background: #F59E0B; }
.zh-mock__dot span:nth-child(3) { background: var(--zl-success); }
.zh-mute { color: var(--zl-body-dim); }

/* Sectors */
.zh-sector-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 0.75rem; }
.zh-sector { background: var(--zl-surface); border: 1px solid var(--zl-line); border-radius: var(--zl-radius-sm); padding: 0.75rem 1rem; display: flex; align-items: flex-start; gap: 0.5rem; }
.zh-sector i { color: var(--zl-primary); font-size: 1.1rem; flex-shrink: 0; }
.zh-sector h3 { color: var(--zl-text); font-size: 0.92rem; margin: 0 0 0.1rem; font-weight: 800; }
.zh-sector p  { margin: 0; font-size: 0.82rem; color: var(--zl-body-dim); }

/* Page-specific section styles */
.zh-sec { padding: clamp(2.5rem,5vw,4rem) 0; background: var(--zl-bg); }
.zh-sec--light { background: var(--zl-surface); }
.zh-sec--dark {
  background: linear-gradient(135deg, var(--zl-primary) 0%, var(--zl-primary-2, #0F46C4) 50%, #082A8C 100%);
  position: relative;
  overflow: hidden;
}
.zh-sec--dark::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255,255,255,0.16) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.zh-sec--dark > * { position: relative; z-index: 1; }
.zh-sec--dark .zh-sec-head h2,
.zh-sec--dark h2,
.zh-sec--dark h3,
.zh-sec--dark h4 { color: #fff !important; }
.zh-sec--dark .zh-sec-head p,
.zh-sec--dark p { color: rgba(255,255,255,0.85); }
.zh-sec--dark .zh-eyebrow,
.zh-sec--dark .zh-badge,
.zh-sec--dark .zh-eyebrow-label {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border-color: rgba(255,255,255,0.22);
}

/* Legal pages (privacy / terms) */
.zh-legal-body {
  max-width: 56rem;
  margin: 0 auto;
  background: var(--zl-surface);
  border: 1px solid var(--zl-line);
  border-radius: var(--zl-radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--zl-shadow);
  line-height: 1.9;
}
.zh-legal-body h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--zl-text);
  margin: 1.4rem 0 0.55rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--zl-primary-soft, rgba(27,94,240,0.12));
}
.zh-legal-body h2:first-child { margin-top: 0; }
.zh-legal-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--zl-text);
  margin: 1.1rem 0 0.4rem;
}
.zh-legal-body p,
.zh-legal-body li {
  color: var(--zl-body);
  font-size: 0.95rem;
}
.zh-legal-body ul,
.zh-legal-body ol {
  margin: 0.5rem 0 1rem;
  padding-inline-start: 1.5rem;
}
.zh-legal-body li { margin-bottom: 0.35rem; }
.zh-legal-body a {
  color: var(--zl-primary);
  font-weight: 700;
}
.zh-legal-body strong { color: var(--zl-text); }
.zh-sec-head { text-align: center; max-width: 40rem; margin-inline: auto; margin-bottom: 2rem; }
.zh-eyebrow-label { display: inline-block; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--zl-primary); }
.zh-sec-head h2 { font-size: clamp(1.35rem,2.8vw,2rem); font-weight: 800; color: var(--zl-text); margin-bottom: 0.6rem; }
.zh-sec-head p   { color: var(--zl-body-dim); line-height: 1.7; }

/* Old pkg-trust strip (packages page) */
.zh-trust-strip { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: center; margin-bottom: 1.5rem; }
.zh-trust-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; font-weight: 700; color: var(--zl-body-dim); }
.zh-trust-item i { color: var(--zl-success); }

/* portfolio-view and article shared */
.zh-port-case, .zh-article { max-width: 820px; margin-inline: auto; }

/* Old buttons */
.zh-btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem; padding: 0.65rem 1.4rem; font-family: var(--zl-font); font-size: 0.9rem; font-weight: 700; border-radius: var(--zl-radius-sm); border: none; cursor: pointer; text-decoration: none; white-space: nowrap; transition: all 0.2s; }

.zh-btn--primary { background: var(--zl-gradient); color: #fff; box-shadow: 0 4px 16px rgba(27,94,240,0.3); }
.zh-btn--primary:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(27,94,240,0.4); color: #fff; }

.zh-btn--wa { background: var(--zl-whatsapp); color: #fff; }
.zh-btn--wa:hover { background: var(--zl-whatsapp-dark); color: #fff; transform: translateY(-1px); }

.zh-btn--ghost { background: var(--zl-surface); color: var(--zl-body); border: 1.5px solid var(--zl-line); }
.zh-btn--ghost:hover { border-color: var(--zl-primary); color: var(--zl-primary); }

.zh-btn--ghost-dark { background: var(--zl-surface); color: var(--zl-body); border: 1.5px solid var(--zl-line); }
.zh-btn--ghost-dark:hover { border-color: var(--zl-primary); color: var(--zl-primary); }

.zh-btn--outline-light { background: transparent; color: var(--zl-primary); border: 2px solid var(--zl-primary); }
.zh-btn--outline-light:hover { background: var(--zl-primary-soft); }

.zh-btn--sm { padding: 0.45rem 1rem; font-size: 0.82rem; }
.zh-btn--lg { padding: 0.82rem 1.8rem; font-size: 0.96rem; }

/* Old lang switch */
.zh-lang-switch { display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.75rem; font-weight: 800; padding: 0.3rem 0.6rem; border-radius: 6px; border: 1.5px solid var(--zl-line); color: var(--zl-body-dim); background: transparent; text-decoration: none; }
.zh-lang-switch:hover { border-color: var(--zl-primary); color: var(--zl-primary); }

/* Old footer */
.zh-foot { background: var(--zl-dark-bg); color: var(--zl-on-dark-muted); padding: 3rem 0 0; }
.zh-foot__grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.zh-foot h5 { font-size: 0.85rem; font-weight: 800; color: #fff; margin-bottom: 1rem; }
.zh-foot ul { display: flex; flex-direction: column; gap: 0.5rem; }
.zh-foot ul li a { font-size: 0.85rem; color: var(--zl-on-dark-muted); }
.zh-foot ul li a:hover { color: var(--zl-secondary); }
.zh-foot__brand img { height: 44px; width: auto; margin-bottom: 0.75rem; }
.zh-foot__brand p { font-size: 0.85rem; color: var(--zl-on-dark-muted); line-height: 1.7; margin-bottom: 1rem; max-width: 22rem; }
.zh-foot__soc { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.zh-foot__soc a { width: 34px; height: 34px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: var(--zl-on-dark-muted); font-size: 0.9rem; transition: background 0.18s, color 0.18s; }
.zh-foot__soc a:hover { background: var(--zl-primary); color: #fff; }
.zh-foot__copy { padding: 1.25rem 0; font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* Old FAB */
.zh-fab { position: fixed; bottom: 1.5rem; left: 1.25rem; width: 52px; height: 52px; border-radius: 50%; background: var(--zl-whatsapp); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; box-shadow: 0 4px 20px rgba(37,211,102,0.4); z-index: 800; text-decoration: none; transition: transform 0.2s; }
.zh-fab:hover { transform: scale(1.08); color: #fff; }
[dir="rtl"] .zh-fab { left: auto; right: 1.25rem; }

/* Old mobile CTA */
.zh-mobile-cta { position: fixed; bottom: 0; right: 0; left: 0; background: #fff; border-top: 1px solid var(--zl-line); padding: 0.7rem 1rem; display: flex; gap: 0.5rem; z-index: 780; transform: translateY(100%); transition: transform 0.3s; }
.zh-mobile-cta--show { transform: translateY(0); }
.zh-mobile-cta .zh-btn { flex: 1; }

/* Old flash */
.zh-flash-wrap { max-width: var(--zl-container); margin-inline: auto; padding: 0.5rem 1.25rem 0; }
.zh-alert--ok  { background: #ECFDF5; color: #065F46; border: 1px solid #A7F3D0; padding: 0.85rem 1.2rem; border-radius: var(--zl-radius-sm); }
.zh-alert--err { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; padding: 0.85rem 1.2rem; border-radius: var(--zl-radius-sm); }

/* Old blog card */
.zh-blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.zh-blog-card { background: var(--zl-surface); border: 1px solid var(--zl-line); border-radius: var(--zl-radius); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.22s, box-shadow 0.22s; }
.zh-blog-card:hover { transform: translateY(-4px); box-shadow: var(--zl-shadow-md); }
.zh-blog-card__img { height: 190px; background: var(--zl-primary-soft); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.zh-blog-card__img img { width: 100%; height: 100%; object-fit: cover; }
.zh-blog-card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.zh-blog-card__cat { display: inline-block; font-size: 0.7rem; font-weight: 800; color: var(--zl-primary); background: var(--zl-primary-soft); padding: 0.2rem 0.55rem; border-radius: 6px; margin-bottom: 0.65rem; }
.zh-blog-card h3 { font-size: 0.97rem; font-weight: 800; color: var(--zl-text); margin-bottom: 0.5rem; line-height: 1.4; }
.zh-blog-card p  { font-size: 0.82rem; color: var(--zl-body-dim); flex: 1; margin-bottom: 1rem; }
.zh-blog-card__ft { display: flex; align-items: center; justify-content: space-between; font-size: 0.75rem; color: var(--zl-body-dim); border-top: 1px solid var(--zl-line); padding-top: 0.65rem; }

/* Page builder sections */
.zh-builder-section { padding: 2rem 0; }

/* ── Filter tabs (services, portfolio) ── */
.zh-filters {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.zh-filter-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.42rem 1.05rem;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--zl-body-dim);
  background: var(--zl-surface);
  border: 1.5px solid var(--zl-line);
  border-radius: 99px;
  cursor: pointer;
  transition: all 0.18s;
  font-family: var(--zl-font);
}

.zh-filter-tab:hover,
.zh-filter-tab--active,
.zh-filter-tab.active {
  background: var(--zl-primary);
  border-color: var(--zl-primary);
  color: #fff;
}

/* Service intro text */
.zh-sintro {
  margin-bottom: 1.5rem;
}

.zh-sintro h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--zl-text);
  margin-bottom: 0.4rem;
}

.zh-sintro p {
  font-size: 0.95rem;
  color: var(--zl-body-dim);
  line-height: 1.7;
}

/* Stats row */
.zh-sstats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding: 1rem 1.25rem;
  background: var(--zl-primary-soft);
  border-radius: var(--zl-radius);
}

.zh-sstats div {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.zh-sstats strong {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--zl-primary);
}

.zh-sstats span {
  font-size: 0.82rem;
  color: var(--zl-body-dim);
  font-weight: 600;
}

/* Page hero – text inline with content */
.zh-page-hero { padding: clamp(2.5rem,5vw,4rem) 0 clamp(1.5rem,3vw,2.5rem); background: linear-gradient(160deg,#F0F5FF 0%,#FAFCFF 100%); border-bottom: 1px solid var(--zl-line); text-align: center; }
.zh-page-hero h1 { font-size: clamp(1.5rem,3.5vw,2.4rem); font-weight: 800; color: var(--zl-text); margin-bottom: 0.65rem; }
.zh-page-hero p  { color: var(--zl-body-dim); max-width: 40rem; margin-inline: auto; }

/* Old zh-reveal classes */
.zh-reveal { opacity: 1; transform: none; transition: opacity 0.55s var(--zl-ease), transform 0.55s var(--zl-ease); }
.zh-reveal--pending { opacity: 0; transform: translateY(22px); }
.zh-reveal--in { opacity: 1; transform: none; }

/* ── Contact / Form page helpers ── */
.zh-2col {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 820px) { .zh-2col { grid-template-columns: 1fr; } }

.zh-form-card {
  background: var(--zl-surface);
  border: 1px solid var(--zl-line);
  border-radius: var(--zl-radius-lg);
  padding: 2rem;
  box-shadow: var(--zl-shadow);
}

.zh-wa-card {
  background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
  border: 1px solid #A7F3D0;
  border-radius: var(--zl-radius-lg);
  padding: 1.75rem;
  text-align: center;
  margin-bottom: 1.25rem;
}

.zh-wa-card__ic { font-size: 2.5rem; color: var(--zl-whatsapp); margin-bottom: 0.5rem; }
.zh-wa-card h3  { font-size: 1rem; font-weight: 800; color: var(--zl-text); margin-bottom: 0.3rem; }
.zh-wa-card p   { font-size: 0.83rem; color: var(--zl-body-dim); margin-bottom: 1rem; }

.zh-info-card {
  background: var(--zl-surface);
  border: 1px solid var(--zl-line);
  border-radius: var(--zl-radius-lg);
  padding: 1.5rem;
  box-shadow: var(--zl-shadow);
}

.zh-info-card h3 { font-size: 0.97rem; font-weight: 800; color: var(--zl-text); margin-bottom: 1rem; }

.zh-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--zl-line);
}

.zh-info-item:last-child { border-bottom: none; }
.zh-info-item i { font-size: 1.1rem; color: var(--zl-primary); flex-shrink: 0; margin-top: 0.1rem; }
.zh-info-item strong { display: block; font-size: 0.83rem; font-weight: 700; color: var(--zl-text); margin-bottom: 0.1rem; }
.zh-info-item span, .zh-info-item a { font-size: 0.8rem; color: var(--zl-body-dim); }
.zh-info-item a:hover { color: var(--zl-primary); }

.zh-form { }

.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (max-width: 480px) { .row-2 { grid-template-columns: 1fr; } }

.zh-form-group { margin-bottom: 1rem; }
.zh-label {
  display: block;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--zl-text);
  margin-bottom: 0.35rem;
}

.zh-input,
.zh-select,
.zh-textarea {
  width: 100%;
  padding: 0.68rem 1rem;
  font-family: var(--zl-font);
  font-size: 0.9rem;
  color: var(--zl-text);
  background: var(--zl-bg);
  border: 1.5px solid var(--zl-line);
  border-radius: var(--zl-radius-sm);
  transition: border-color 0.18s, box-shadow 0.18s;
  outline: none;
  direction: rtl;
}

.zh-input:focus,
.zh-select:focus,
.zh-textarea:focus {
  border-color: var(--zl-primary);
  box-shadow: 0 0 0 3px var(--zl-primary-soft);
  background: var(--zl-surface);
}

.zh-textarea { resize: vertical; min-height: 110px; }

/* Sidebar contact helpers */
.zh-contact-box {
  background: var(--zl-surface);
  border: 1px solid var(--zl-line);
  border-radius: var(--zl-radius-lg);
  padding: 1.25rem;
  margin-bottom: 1rem;
}

/* About page */
.zh-values-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; margin-top: 1.25rem; }
.zh-value-card { background: var(--zl-surface); border: 1px solid var(--zl-line); border-radius: var(--zl-radius); padding: 1.1rem; text-align: center; }
.zh-value-card i { font-size: 1.75rem; color: var(--zl-primary); margin-bottom: 0.5rem; }
.zh-value-card h4 { font-size: 0.88rem; font-weight: 800; color: var(--zl-text); margin-bottom: 0.2rem; }
.zh-value-card p  { font-size: 0.78rem; color: var(--zl-body-dim); margin: 0; }

.zh-about-section { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.zh-about-section p { font-size: 0.97rem; color: var(--zl-body); line-height: 1.8; margin-bottom: 1rem; }

.zh-about-img {
  border-radius: var(--zl-radius-xl);
  background: var(--zl-primary-soft);
  height: 320px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}

.zh-about-img i { font-size: 7rem; color: var(--zl-primary); opacity: 0.15; }

/* Numbers grid */
.zh-nums-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.zh-num-card { background: var(--zl-surface); border: 1px solid var(--zl-line); border-radius: var(--zl-radius); padding: 1.25rem; text-align: center; }
.zh-num-card strong { display: block; font-size: 1.75rem; font-weight: 900; color: var(--zl-primary); }
.zh-num-card span   { font-size: 0.82rem; color: var(--zl-body-dim); font-weight: 600; }

/* Team grid */
.zh-team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.zh-team-card { background: var(--zl-surface); border: 1px solid var(--zl-line); border-radius: var(--zl-radius); padding: 1.5rem; text-align: center; }
.zh-team-card__av { width: 72px; height: 72px; border-radius: 50%; background: var(--zl-gradient); margin: 0 auto 0.75rem; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.75rem; font-weight: 900; overflow: hidden; }
.zh-team-card h4 { font-size: 1rem; font-weight: 800; color: var(--zl-text); margin-bottom: 0.2rem; }
.zh-team-card p  { font-size: 0.82rem; color: var(--zl-body-dim); margin: 0; }

/* Blog sidebar */
.zh-blog-layout { display: grid; grid-template-columns: 1fr 280px; gap: 2rem; align-items: start; }
@media (max-width: 900px) { .zh-blog-layout { grid-template-columns: 1fr; } }
.zh-sidebar { }
.zh-sidebar-card { background: var(--zl-surface); border: 1px solid var(--zl-line); border-radius: var(--zl-radius); padding: 1.25rem; margin-bottom: 1rem; }
.zh-sidebar-card h4 { font-size: 0.88rem; font-weight: 800; color: var(--zl-text); margin-bottom: 0.75rem; }

/* Tags */
.zh-tag { display: inline-block; font-size: 0.72rem; font-weight: 700; color: var(--zl-primary); background: var(--zl-primary-soft); padding: 0.2rem 0.55rem; border-radius: 6px; margin: 0.15rem; }
.zh-tag-row { display: flex; flex-wrap: wrap; gap: 0.25rem; }

/* Portfolio View page */
.zh-page-hero--sm { padding: clamp(1.5rem,3vw,2.5rem) 0 1.25rem; }
.zh-pv-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
@media (max-width: 820px) { .zh-pv-hero { grid-template-columns: 1fr; } }
.zh-pv-hero__title { font-size: clamp(1.4rem,3vw,2.1rem); font-weight: 900; color: var(--zl-text); margin: 0.5rem 0 0.65rem; }
.zh-pv-hero__sub { font-size: 0.92rem; color: var(--zl-body-dim); line-height: 1.75; margin-bottom: 1rem; }
.zh-pv-hero__client { font-size: 0.88rem; color: var(--zl-body-dim); margin-bottom: 0.5rem; }
.zh-pv-hero__client i { color: var(--zl-primary); }
.zh-pv-hero__techs { margin-top: 1rem; }
.zh-pv-hero__techs strong { display: block; font-size: 0.78rem; font-weight: 700; color: var(--zl-body-dim); margin-bottom: 0.35rem; }
.zh-pv-img { border-radius: var(--zl-radius); overflow: hidden; background: var(--zl-primary-soft); }
.zh-pv-img img { width: 100%; height: auto; display: block; }
.zh-pv-img__ph { height: 240px; display: flex; align-items: center; justify-content: center; }
.zh-pv-img__ph i { font-size: 5rem; color: var(--zl-primary); opacity: 0.25; }
.zh-pv-body { max-width: 820px; margin-inline: auto; }
.zh-pv-body h2 { font-size: 1.1rem; font-weight: 800; color: var(--zl-text); margin: 1.5rem 0 0.65rem; }
.zh-pv-body p  { font-size: 0.92rem; color: var(--zl-body); line-height: 1.8; margin-bottom: 1rem; }
.zh-pv-body ul { padding-right: 1.5rem; margin-bottom: 1rem; }
.zh-pv-body ul li { font-size: 0.9rem; color: var(--zl-body); margin-bottom: 0.4rem; }

/* Portfolio case study */
.zh-case-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 2.5rem; align-items: start; }
@media (max-width: 820px) { .zh-case-grid { grid-template-columns: 1fr; } }

.zh-case-meta { background: var(--zl-surface); border: 1px solid var(--zl-line); border-radius: var(--zl-radius); padding: 1.5rem; }
.zh-case-meta h4 { font-size: 0.85rem; font-weight: 800; color: var(--zl-text); margin-bottom: 0.75rem; }
.zh-case-meta-item { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0; border-bottom: 1px solid var(--zl-line); font-size: 0.83rem; }
.zh-case-meta-item:last-child { border-bottom: none; }
.zh-case-meta-item dt { color: var(--zl-body-dim); font-weight: 600; }
.zh-case-meta-item dd { color: var(--zl-text); font-weight: 700; }

/* Terms/Privacy */
.zh-legal-card { background: var(--zl-surface); border: 1px solid var(--zl-line); border-radius: var(--zl-radius-lg); padding: 2.5rem; max-width: 760px; margin-inline: auto; }
.zh-legal-card h2 { font-size: 1.1rem; font-weight: 800; color: var(--zl-text); margin: 1.75rem 0 0.5rem; }
.zh-legal-card p, .zh-legal-card li { font-size: 0.9rem; color: var(--zl-body); line-height: 1.8; }
.zh-legal-card ul, .zh-legal-card ol { padding-right: 1.5rem; margin: 0.5rem 0 1rem; }
.zh-legal-card li { margin-bottom: 0.4rem; }

/* visually hidden (honeypot) */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ──────────────────────────────────────────────────────────────────
   Service detail page specific classes
   ────────────────────────────────────────────────────────────────── */
.zh-lp-grid { display: grid; grid-template-columns: 1fr 340px; gap: 2.5rem; align-items: start; }
@media (max-width: 900px) { .zh-lp-grid { grid-template-columns: 1fr; } }

.zh-lp-grid h1 { font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 900; color: var(--zl-text); margin-bottom: 0.75rem; }

.zh-svc-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; margin: 1.25rem 0; }
.zh-svc-feat  { display: flex; align-items: flex-start; gap: 0.5rem; background: var(--zl-surface); border: 1px solid var(--zl-line); border-radius: var(--zl-radius-sm); padding: 0.75rem 1rem; }
.zh-svc-feat i { color: var(--zl-success); font-size: 0.9rem; flex-shrink: 0; margin-top: 0.15rem; }
.zh-svc-feat span { font-size: 0.85rem; font-weight: 600; color: var(--zl-body); }

.zh-ps { display: flex; gap: 0.5rem; margin-bottom: 0.75rem; }
.zh-ps__box { background: var(--zl-primary-soft); border-radius: 8px; padding: 0.5rem 0.75rem; text-align: center; flex: 1; font-size: 0.78rem; color: var(--zl-body-dim); }
.zh-ps__box strong { display: block; font-size: 1.1rem; font-weight: 900; color: var(--zl-primary); }

.zh-prob { display: flex; flex-direction: column; gap: 1rem; margin: 1.25rem 0; }
.zh-box-d { background: var(--zl-surface); border: 1px solid var(--zl-line); border-radius: var(--zl-radius); padding: 1.25rem; }
.zh-box-d--dang { border-color: #FECACA; background: #FEF2F2; }
.zh-box-d h3 { font-size: 0.95rem; font-weight: 800; color: var(--zl-text); margin-bottom: 0.4rem; }
.zh-box-d p  { font-size: 0.85rem; color: var(--zl-body-dim); margin: 0; line-height: 1.65; }
.zh-box-d ul { padding-right: 1rem; }
.zh-box-d ul li { font-size: 0.85rem; color: var(--zl-body-dim); margin-bottom: 0.3rem; }

.zh-steps { display: flex; flex-direction: column; gap: 0; }
.zh-step  { display: flex; align-items: flex-start; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px dashed var(--zl-line); }
.zh-step:last-child { border-bottom: none; }
.zh-step__num { width: 38px; height: 38px; border-radius: 50%; background: var(--zl-gradient); color: #fff; font-weight: 900; font-size: 0.88rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 4px 12px rgba(27,94,240,0.3); }
.zh-step h4 { font-size: 0.92rem; font-weight: 800; color: var(--zl-text); margin-bottom: 0.2rem; }
.zh-step p  { font-size: 0.83rem; color: var(--zl-body-dim); margin: 0; line-height: 1.6; }

/* Sticky sidebar */
.zh-sticky { position: sticky; top: calc(var(--zl-header-h) + 1rem); }

/* Related services */
.zh-related { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
@media (max-width: 768px) { .zh-related { grid-template-columns: 1fr; } }

/* ──────────────────────────────────────────────────────────────────
   About page specific classes
   ────────────────────────────────────────────────────────────────── */
.zh-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--zl-primary);
  background: var(--zl-primary-soft);
  padding: 0.28rem 0.8rem;
  border-radius: 99px;
  margin-bottom: 0.75rem;
}

.zh-page-hero__title { font-size: clamp(1.5rem,3.5vw,2.4rem); font-weight: 800; color: var(--zl-text); margin-bottom: 0.65rem; }
.zh-page-hero__sub   { color: var(--zl-body-dim); max-width: 40rem; margin-inline: auto; }

.zh-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-bottom: 0; }
.zh-about-text h2 { font-size: clamp(1.3rem,2.5vw,1.85rem); font-weight: 800; color: var(--zl-text); margin-bottom: 0.65rem; }
.zh-about-text p  { font-size: 0.95rem; color: var(--zl-body); line-height: 1.8; margin-bottom: 1rem; }

.zh-stat-row { display: flex; gap: 1.25rem; flex-wrap: wrap; margin-top: 1.25rem; }
.zh-stat-item { text-align: center; }
.zh-stat-item__n { font-size: 1.75rem; font-weight: 900; color: var(--zl-primary); line-height: 1; }
.zh-stat-item__l { font-size: 0.75rem; color: var(--zl-body-dim); font-weight: 600; margin-top: 0.15rem; }

.zh-about-visual { background: var(--zl-primary-soft); border-radius: var(--zl-radius-xl); height: 320px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.zh-about-brand-card { background: var(--zl-surface); border-radius: var(--zl-radius-lg); padding: 1.5rem; width: 180px; text-align: center; box-shadow: var(--zl-shadow-md); }
.zh-about-brand-card__dots { display: flex; gap: 0.3rem; justify-content: center; margin-bottom: 0.75rem; }
.zh-about-brand-card__dots span { width: 8px; height: 8px; border-radius: 50%; background: var(--zl-primary); opacity: 0.4; }
.zh-about-brand-card__dots span:nth-child(2) { opacity: 0.7; }
.zh-about-brand-card__dots span:nth-child(3) { opacity: 1; }

/* VMV (Vision/Mission/Values) */
.zh-vmv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.zh-vmv-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--zl-radius); padding: 1.5rem; }
.zh-vmv-card__ic { font-size: 2rem; margin-bottom: 0.75rem; }
.zh-vmv-card h3 { font-size: 1rem; font-weight: 800; color: #fff; margin-bottom: 0.4rem; }
.zh-vmv-card p  { font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.65; margin: 0; }

/* How-we-work section */
.zh-about-how-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.zh-how-card { background: var(--zl-surface); border: 1px solid var(--zl-line); border-radius: var(--zl-radius); padding: 1.5rem; text-align: center; transition: box-shadow 0.22s; }
.zh-how-card:hover { box-shadow: var(--zl-shadow-md); }
.zh-how-card__ic { width: 52px; height: 52px; background: var(--zl-gradient); border-radius: var(--zl-radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: #fff; margin: 0 auto 0.85rem; }
.zh-how-card h4 { font-size: 0.92rem; font-weight: 800; color: var(--zl-text); margin-bottom: 0.35rem; }
.zh-how-card p  { font-size: 0.82rem; color: var(--zl-body-dim); margin: 0; line-height: 1.6; }

/* CTA panel */
.zh-cta-panel { background: var(--zl-gradient); border-radius: var(--zl-radius-xl); padding: clamp(2rem,4vw,3rem); text-align: center; position: relative; overflow: hidden; }
.zh-cta-panel h2 { font-size: clamp(1.3rem,2.5vw,1.85rem); font-weight: 900; color: #fff; margin-bottom: 0.5rem; }
.zh-cta-panel p  { color: rgba(255,255,255,0.85); margin-bottom: 0; font-size: 0.95rem; }
.zh-cta-panel__glow { position: absolute; top: -30%; right: -10%; width: 60%; height: 150%; background: radial-gradient(ellipse,rgba(255,255,255,0.12) 0%,transparent 70%); pointer-events: none; }
.zh-cta-panel__btns { display: flex; align-items: center; justify-content: center; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.5rem; }

@media (max-width: 820px) {
  .zh-about-grid { grid-template-columns: 1fr; }
  .zh-vmv-grid { grid-template-columns: 1fr; }
  .zh-about-how-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 480px) {
  .zh-about-how-grid { grid-template-columns: 1fr; }
}

/* About */
.zh-about-head, .zh-about-body { max-width: 680px; margin-inline: auto; }
.zh-about-head h1 { font-size: clamp(1.4rem,3vw,2.2rem); font-weight: 900; color: var(--zl-text); margin-bottom: 0.5rem; }
.zh-about-head p  { color: var(--zl-body-dim); margin-bottom: 1.5rem; }

/* ============================================================
   32. Responsive
   ============================================================ */
@media (max-width: 1200px) {
  :root { --zl-container: 960px; }
  .zl-svc-cats { grid-template-columns: repeat(2, 1fr); }
  .zl-port-grid { grid-template-columns: repeat(3, 1fr); }
  .zh-pack-grid, .zl-pkg-grid, .zl-pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .zh-proc, .zl-process-grid { grid-template-columns: repeat(3, 1fr); }
  .zh-proc::before, .zl-process-grid::before { display: none; }
}

@media (max-width: 992px) {
  .zl-hero__grid { grid-template-columns: 1fr; }
  .zl-hero__vis { display: none; }
  .zl-hero__vis-img { display: none; }
  .zl-solutions-grid { grid-template-columns: 1fr; }
  .zl-why-grid { grid-template-columns: repeat(2, 1fr); }
  .zl-testi-grid, .zh-tgrid { grid-template-columns: repeat(2, 1fr); }
  .zh-port-grid, .zl-port-grid { grid-template-columns: repeat(2, 1fr); }
  .zh-svc-grid, .zl-svc-grid { grid-template-columns: repeat(2, 1fr); }
  .zh-hv-grid { grid-template-columns: 1fr; }
  .zh-why  { grid-template-columns: repeat(2, 1fr); }
  .zl-contact-grid { grid-template-columns: 1fr; }
  .zl-about-grid  { grid-template-columns: 1fr; }
  .zl-cta-blue__inner { grid-template-columns: 1fr; }
  .zl-foot__grid, .zh-foot__grid { grid-template-columns: 1fr 1fr; }

  /* Mobile nav */
  .zl-nav {
    position: fixed;
    top: var(--zl-header-h);
    right: 0;
    left: 0;
    max-height: calc(100dvh - var(--zl-header-h));
    overflow-y: auto;
    background: #fff;
    border-bottom: 1px solid var(--zl-line);
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 0.75rem 1rem;
    gap: 0.1rem;
    display: none;
    z-index: 850;
    box-shadow: 0 8px 32px rgba(15,23,42,0.12);
  }

  .zl-nav--open { display: flex; }

  .zl-nav__link { padding: 0.7rem 0.75rem; border-bottom: 1px solid #f1f5f9; }
  .zl-nav__link.active { border-radius: var(--zl-radius-sm); }

  .zl-dd__btn { width: 100%; text-align: right; justify-content: space-between; padding: 0.7rem 0.75rem; }
  .zl-dd__panel { position: static; display: none; box-shadow: none; border: 0; margin-top: 0.25rem; background: var(--zl-bg); }
  .zl-dd--open .zl-dd__panel { display: block; }
  .zl-dd:hover .zl-dd__panel { display: none; }
  .zl-dd--open .zl-dd__panel { display: block; }

  .zl-burger { display: flex; }

  .zl-show-md { display: none; }

  .zh-proc, .zl-process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .zh-about-section { grid-template-columns: 1fr; }
  .zh-values-grid { grid-template-columns: 1fr; }
  .zh-nums-grid { grid-template-columns: repeat(2,1fr); }
  .zh-team-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .zl-svc-cats { grid-template-columns: 1fr; }
  .zh-svc-grid, .zl-svc-grid { grid-template-columns: 1fr; }
  .zh-pack-grid, .zl-pkg-grid, .zl-pricing-grid { grid-template-columns: 1fr; }
  .zh-pack--feat, .zl-price-card--featured { transform: none; }
  .zh-tgrid, .zl-testi-grid { grid-template-columns: 1fr; }
  .zh-port-grid, .zl-port-grid { grid-template-columns: 1fr; }
  .zl-why-grid { grid-template-columns: 1fr; }
  .zh-why { grid-template-columns: 1fr; }
  .zh-proc, .zl-process-grid { grid-template-columns: 1fr; }
  .zh-proc::before, .zl-process-grid::before { display: none; }
  .zl-stat-item { padding: 0.5rem 1rem; }
  .zl-stats__row { gap: 0; }
  .zl-hero__btns { flex-direction: column; }
  .zl-hero__btns .zl-btn { width: 100%; }
  .zl-blog-grid, .zh-blog-grid { grid-template-columns: 1fr; }
  .zl-svc-features { grid-template-columns: 1fr; }
  .zl-field-row { grid-template-columns: 1fr; }
  .zl-values-grid { grid-template-columns: 1fr; }
  .zl-solutions-grid { grid-template-columns: 1fr; }
  .zl-foot__grid, .zh-foot__grid { grid-template-columns: 1fr; }

  /* Hide some header items on small screens */
  .zl-header-actions .zl-btn--client { display: none; }
  .zl-show-md { display: inline-flex !important; }
}

@media (max-width: 480px) {
  .zl-container, .zh-container { padding-inline: 0.9rem; }
  .zh-hero__ctas { flex-direction: column; }
  .zh-hero__ctas .zh-btn { width: 100%; }
  .zl-feat-strip__row { gap: 0; }
  .zl-feat-item { padding: 0.3rem 0.5rem; font-size: 0.78rem; }
  .zl-sector-grid { grid-template-columns: 1fr; }
  .zh-sector-grid { grid-template-columns: 1fr; }
  .zl-pricing-grid { grid-template-columns: 1fr; }
  .zl-cta-blue__btns { flex-direction: row; flex-wrap: wrap; }
}

/* ============================================================
   Icon-Based Mock Visuals (replacing all SVG demo files)
   ============================================================ */

/* Service card mock thumbnail (services.php list) */
.zh-svc-card__thumb {
  position: relative;
}
.zh-svc-card__thumb-mock {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #EEF3FF 0%, #DBE9FF 60%, #F0F7FF 100%);
  position: relative;
  overflow: hidden;
}
.zh-svc-card__thumb-mock::before,
.zh-svc-card__thumb-mock::after {
  content: '';
  position: absolute;
  border-radius: 50%;
}
.zh-svc-card__thumb-mock::before { width: 90px; height: 90px; top: -28px; right: -28px; background: rgba(255,255,255,0.55); }
.zh-svc-card__thumb-mock::after  { width: 60px; height: 60px; bottom: -22px; left: -22px; background: rgba(56,189,248,0.18); }
.zh-svc-card__thumb-mock i {
  font-size: 3rem;
  background: var(--zl-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: 1;
  filter: drop-shadow(0 6px 12px rgba(27,94,240,0.25));
}

/* Variants — different gradient backgrounds per service category */
.zh-svc-card__thumb--hosting   .zh-svc-card__thumb-mock { background: linear-gradient(135deg, #ECFDF5 0%, #BBF7D0 60%, #F0FDF4 100%); }
.zh-svc-card__thumb--hosting   .zh-svc-card__thumb-mock i { background: linear-gradient(135deg, #10B981, #34D399); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.zh-svc-card__thumb--wa        .zh-svc-card__thumb-mock { background: linear-gradient(135deg, #DCFCE7 0%, #86EFAC 60%, #F0FDF4 100%); }
.zh-svc-card__thumb--wa        .zh-svc-card__thumb-mock i { background: linear-gradient(135deg, #25D366, #128C7E); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.zh-svc-card__thumb--wp        .zh-svc-card__thumb-mock { background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 60%, #EFF6FF 100%); }
.zh-svc-card__thumb--wp        .zh-svc-card__thumb-mock i { background: linear-gradient(135deg, #2563EB, #1E40AF); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.zh-svc-card__thumb--security  .zh-svc-card__thumb-mock { background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 60%, #FEF2F2 100%); }
.zh-svc-card__thumb--security  .zh-svc-card__thumb-mock i { background: linear-gradient(135deg, #DC2626, #EF4444); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.zh-svc-card__thumb--email     .zh-svc-card__thumb-mock { background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 60%, #FEFCE8 100%); }
.zh-svc-card__thumb--email     .zh-svc-card__thumb-mock i { background: linear-gradient(135deg, #D97706, #F59E0B); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.zh-svc-card__thumb--server    .zh-svc-card__thumb-mock { background: linear-gradient(135deg, #F5F3FF 0%, #DDD6FE 60%, #FAF5FF 100%); }
.zh-svc-card__thumb--server    .zh-svc-card__thumb-mock i { background: linear-gradient(135deg, #7C3AED, #A78BFA); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.zh-svc-card__thumb--speed     .zh-svc-card__thumb-mock { background: linear-gradient(135deg, #FFEDD5 0%, #FED7AA 60%, #FFF7ED 100%); }
.zh-svc-card__thumb--speed     .zh-svc-card__thumb-mock i { background: linear-gradient(135deg, #EA580C, #FB923C); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.zh-svc-card__thumb--ecommerce .zh-svc-card__thumb-mock { background: linear-gradient(135deg, #FCE7F3 0%, #FBCFE8 60%, #FDF2F8 100%); }
.zh-svc-card__thumb--ecommerce .zh-svc-card__thumb-mock i { background: linear-gradient(135deg, #DB2777, #EC4899); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.zh-svc-card__thumb--code      .zh-svc-card__thumb-mock { background: linear-gradient(135deg, #CFFAFE 0%, #A5F3FC 60%, #ECFEFF 100%); }
.zh-svc-card__thumb--code      .zh-svc-card__thumb-mock i { background: linear-gradient(135deg, #0891B2, #06B6D4); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.zh-svc-card__thumb--design    .zh-svc-card__thumb-mock { background: linear-gradient(135deg, #EEF3FF 0%, #DBE9FF 60%, #F0F7FF 100%); }
.zh-svc-card__thumb--design    .zh-svc-card__thumb-mock i { background: linear-gradient(135deg, #1B5EF0, #38BDF8); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.zh-svc-card:hover .zh-svc-card__thumb-mock i { transform: scale(1.08); transition: transform 0.4s var(--zl-ease); }

/* Service detail page hero mockup (service.php) */
.zh-svc-hero-mock {
  height: 14rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #EEF3FF 0%, #DBE9FF 60%, #F0F7FF 100%);
  position: relative;
  overflow: hidden;
}
.zh-svc-hero-mock::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 18%, rgba(56,189,248,0.18), transparent 40%),
    radial-gradient(circle at 18% 82%, rgba(255,255,255,0.7), transparent 45%);
}
.zh-svc-hero-mock__ic {
  width: 88px; height: 88px;
  border-radius: 22px;
  background: var(--zl-gradient);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.6rem;
  box-shadow: 0 14px 32px rgba(27,94,240,0.32);
  z-index: 1;
}
.zh-svc-hero-mock__title {
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--zl-text);
  text-align: center;
  padding: 0 1rem;
}
.zh-svc-hero-mock__chip {
  position: absolute;
  top: 14px; right: 14px;
  background: #fff;
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--zl-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  box-shadow: 0 6px 14px rgba(15,23,42,0.08);
  z-index: 2;
}
.zh-svc-hero-mock__chip i { font-size: 0.85rem; }
.zh-svc-hero-mock__chip--bl {
  top: auto; right: auto;
  bottom: 14px; left: 14px;
  color: #10B981;
}

/* Variant gradients matching service slug */
.zh-svc-hero-mock--hosting    { background: linear-gradient(135deg, #ECFDF5 0%, #BBF7D0 60%, #F0FDF4 100%); }
.zh-svc-hero-mock--hosting    .zh-svc-hero-mock__ic { background: linear-gradient(135deg, #10B981, #34D399); }
.zh-svc-hero-mock--wa         { background: linear-gradient(135deg, #DCFCE7 0%, #86EFAC 60%, #F0FDF4 100%); }
.zh-svc-hero-mock--wa         .zh-svc-hero-mock__ic { background: linear-gradient(135deg, #25D366, #128C7E); }
.zh-svc-hero-mock--wp         { background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 60%, #EFF6FF 100%); }
.zh-svc-hero-mock--security   { background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 60%, #FEF2F2 100%); }
.zh-svc-hero-mock--security   .zh-svc-hero-mock__ic { background: linear-gradient(135deg, #DC2626, #EF4444); }
.zh-svc-hero-mock--email      { background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 60%, #FEFCE8 100%); }
.zh-svc-hero-mock--email      .zh-svc-hero-mock__ic { background: linear-gradient(135deg, #D97706, #F59E0B); }
.zh-svc-hero-mock--server     { background: linear-gradient(135deg, #F5F3FF 0%, #DDD6FE 60%, #FAF5FF 100%); }
.zh-svc-hero-mock--server     .zh-svc-hero-mock__ic { background: linear-gradient(135deg, #7C3AED, #A78BFA); }
.zh-svc-hero-mock--speed      { background: linear-gradient(135deg, #FFEDD5 0%, #FED7AA 60%, #FFF7ED 100%); }
.zh-svc-hero-mock--speed      .zh-svc-hero-mock__ic { background: linear-gradient(135deg, #EA580C, #FB923C); }
.zh-svc-hero-mock--ecommerce  { background: linear-gradient(135deg, #FCE7F3 0%, #FBCFE8 60%, #FDF2F8 100%); }
.zh-svc-hero-mock--ecommerce  .zh-svc-hero-mock__ic { background: linear-gradient(135deg, #DB2777, #EC4899); }
.zh-svc-hero-mock--code       { background: linear-gradient(135deg, #CFFAFE 0%, #A5F3FC 60%, #ECFEFF 100%); }
.zh-svc-hero-mock--code       .zh-svc-hero-mock__ic { background: linear-gradient(135deg, #0891B2, #06B6D4); }

/* Portfolio (zh-) thumbnail mock */
.zh-port-card__thumb-mock {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #EEF3FF 0%, #DBE9FF 60%, #F0F7FF 100%);
  position: relative;
  overflow: hidden;
}
.zh-port-card__thumb-mock::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 18%, rgba(56,189,248,0.18), transparent 40%),
    radial-gradient(circle at 18% 82%, rgba(255,255,255,0.7), transparent 45%);
}
.zh-port-card__thumb-mock-body {
  position: relative;
  width: 80%;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--zl-line);
  box-shadow: 0 14px 28px rgba(15,23,42,0.12);
  padding: 1.2rem 0.6rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.zh-port-card__thumb-mock-body::before {
  content: '';
  position: absolute;
  top: 6px; left: 8px;
  width: 50px; height: 7px;
  background-image:
    radial-gradient(circle 3.5px at 4px 3.5px, #F87171 50%, transparent 51%),
    radial-gradient(circle 3.5px at 16px 3.5px, #FBBF24 50%, transparent 51%),
    radial-gradient(circle 3.5px at 28px 3.5px, #34D399 50%, transparent 51%);
}
.zh-port-card__thumb-mock-body i {
  font-size: 2.4rem;
  color: var(--zl-primary);
}
.zh-port-card__thumb-mock-body span {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--zl-text);
}

/* Article cover mock */
.zh-article-cover-mock {
  width: 100%;
  height: 280px;
  border-radius: 18px;
  background: linear-gradient(135deg, #EEF3FF 0%, #DBE9FF 60%, #F0F7FF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.zh-article-cover-mock::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 18%, rgba(56,189,248,0.18), transparent 40%),
    radial-gradient(circle at 18% 82%, rgba(255,255,255,0.7), transparent 45%);
}
.zh-article-cover-mock i {
  font-size: 5rem;
  background: var(--zl-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: 1;
  filter: drop-shadow(0 8px 16px rgba(27,94,240,0.25));
}

/* Blog card thumb mock */
.zh-blog-card__thumb-mock,
.zh-blog-card__thumb-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #EEF3FF 0%, #DBE9FF 60%, #F0F7FF 100%);
  position: relative;
  overflow: hidden;
}
.zh-blog-card__thumb-mock::before,
.zh-blog-card__thumb-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 18%, rgba(56,189,248,0.18), transparent 40%),
    radial-gradient(circle at 18% 82%, rgba(255,255,255,0.7), transparent 45%);
}
.zh-blog-card__thumb-mock i,
.zh-blog-card__thumb-icon i {
  font-size: 3rem;
  background: var(--zl-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: 1;
}

/* Portfolio view hero mock (portfolio-view.php) */
.zh-pv-hero__visual-mock {
  width: 100%;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--zl-line);
  box-shadow: 0 18px 40px rgba(15,23,42,0.1);
  overflow: hidden;
  max-height: 380px;
  display: flex;
  flex-direction: column;
}
.zh-pv-hero__visual-mock-bar {
  background: #F1F5F9;
  border-bottom: 1px solid var(--zl-line);
  padding: 12px 14px;
  display: flex;
  gap: 6px;
}
.zh-pv-hero__visual-mock-bar i {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: #CBD5E1;
}
.zh-pv-hero__visual-mock-bar i:nth-child(1) { background: #F87171; }
.zh-pv-hero__visual-mock-bar i:nth-child(2) { background: #FBBF24; }
.zh-pv-hero__visual-mock-bar i:nth-child(3) { background: #34D399; }
.zh-pv-hero__visual-mock-body {
  background: linear-gradient(135deg, #F8FAFF 0%, #EEF3FF 100%);
  flex: 1;
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  min-height: 240px;
}
.zh-pv-hero__visual-mock-ic {
  width: 86px; height: 86px;
  border-radius: 22px;
  background: var(--zl-gradient);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.6rem;
  box-shadow: 0 14px 30px rgba(27,94,240,0.32);
}
.zh-pv-hero__visual-mock-label {
  font-size: 1rem;
  font-weight: 800;
  color: var(--zl-text);
}
.zh-pv-hero__visual-mock-rows {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.4rem;
}
.zh-pv-hero__visual-mock-rows span {
  height: 10px;
  background: #E2E8F0;
  border-radius: 5px;
  width: 100%;
}
.zh-pv-hero__visual-mock-rows span:nth-child(2) { width: 80%; align-self: center; }
.zh-pv-hero__visual-mock-rows span:nth-child(3) { width: 60%; align-self: center; }
.zh-pv-hero__visual-mock-rows span:nth-child(4) { width: 40%; align-self: center; background: var(--zl-primary-soft); }

/* ════════════════════════════════════════════════════════════════
   PREMIUM OVERHAUL — Reference-image-matching visual system
   Final overrides; loaded last so they win over earlier rules.
   ════════════════════════════════════════════════════════════════ */

/* ─── Hero polish ─────────────────────────────────────────────── */
.zl-hero { padding: clamp(4rem, 9vw, 7rem) 0 clamp(3rem, 6vw, 5rem); }
.zl-hero__grid { gap: clamp(2rem, 5vw, 4rem); }
.zl-hero__vis { height: clamp(420px, 50vw, 540px); }

/* Hide any stray broken hero photo if a page still has it */
.zl-hero__photo { display: none !important; }

/* Beefier laptop look */
.zl-hero-laptop {
  width: clamp(300px, 78%, 440px);
  margin-inline: auto;
}
.zl-hero-laptop__screen {
  background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
  border-radius: 18px 18px 0 0;
  padding: 18px;
  box-shadow: 0 26px 60px rgba(15,23,42,0.32);
  border: 8px solid #0F172A;
  border-bottom: 0;
}
.zl-hero-laptop__bar i { width: 10px; height: 10px; }
.zl-hero-laptop__bar-url {
  height: 22px;
  font-size: 0.68rem;
  background: rgba(255,255,255,0.1);
}
.zl-hero-laptop__brand {
  background: linear-gradient(135deg, #1B5EF0 0%, #38BDF8 100%);
  border-radius: 8px;
  padding: 0.7rem 0.85rem;
  margin: 0.55rem 0 0.55rem;
  color: #fff;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}
.zl-hero-laptop__brand-name {
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.zl-hero-laptop__brand-sub {
  font-size: 0.62rem;
  font-weight: 700;
  opacity: 0.9;
}
.zl-hero-laptop__page {
  min-height: 130px;
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  gap: 8px;
}
.zl-hero-laptop__tile {
  background: linear-gradient(135deg, #EEF3FF 0%, #DBE9FF 100%);
  border-radius: 8px;
  padding: 9px;
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--zl-primary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  min-height: 50px;
}
.zl-hero-laptop__tile i { font-size: 1.05rem; }
.zl-hero-laptop__tile span:not(.zl-hero-laptop__tile-num) { line-height: 1; }
.zl-hero-laptop__tile-num {
  margin-inline-start: auto;
  font-weight: 900;
  font-size: 0.74rem;
}
.zl-hero-laptop__base {
  height: 16px;
  background: linear-gradient(180deg, #1E293B 0%, #0F172A 100%);
  border-radius: 0 0 22px 22px;
  width: 110%;
  margin-inline-start: -5%;
}

/* Floating chips: nicer drop shadow + soft borders */
.zl-vis-chip {
  background: #fff;
  border: 1px solid rgba(226,232,240,0.95);
  border-radius: 16px;
  padding: 0.62rem 0.95rem;
  box-shadow:
    0 4px 8px rgba(15,23,42,0.04),
    0 14px 32px rgba(15,23,42,0.13);
}
.zl-vis-chip i { width: 32px; height: 32px; border-radius: 10px; font-size: 1.05rem; }

/* Reposition chips so they don't overlap the laptop */
.zl-vis-chip--cloud   { top: 6%;   right: 0; }
.zl-vis-chip--shield  { top: 10%;  left: 0; }
.zl-vis-chip--server  { top: 44%;  right: -4%; }
.zl-vis-chip--wa      { bottom: 18%; right: -2%; }
.zl-vis-chip--ai      { bottom: 18%; left: -2%; }
.zl-vis-chip--domain  { bottom: 2%; left: 50%; transform: translateX(-50%); }

/* ─── Service category hero icon panel (4 cards) ──────────────── */
.zl-svc-cat__img {
  height: 150px;
  background: linear-gradient(135deg, #EEF3FF 0%, #DBE9FF 60%, #F0F7FF 100%);
}
.zl-svc-cat--design  .zl-svc-cat__img { background: linear-gradient(135deg, #EEF3FF 0%, #C7D9FF 100%); }
.zl-svc-cat--hosting .zl-svc-cat__img { background: linear-gradient(135deg, #ECFDF5 0%, #BBF7D0 100%); }
.zl-svc-cat--support .zl-svc-cat__img { background: linear-gradient(135deg, #FFF7ED 0%, #FED7AA 100%); }
.zl-svc-cat--ai      .zl-svc-cat__img { background: linear-gradient(135deg, #F5F3FF 0%, #DDD6FE 100%); }

.zl-svc-cat__hero {
  width: 90px; height: 90px;
  border-radius: 24px;
  font-size: 2.6rem;
  z-index: 2;
  position: relative;
}
.zl-svc-cat__chip { z-index: 3; }
.zl-svc-cat__chip--wa {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
}
.zl-svc-cat__chip--wa i { color: #fff; }

/* ─── Package visual block ─────────────────────────────────────── */
.zh-pack { position: relative; }
.zh-pack__visual {
  width: calc(100% + 2.4rem);
  margin: -1.4rem -1.2rem 1.2rem;
  height: 130px;
  border-radius: 20px 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.zh-pack__visual img { display: none !important; }
.zh-pack__visual--design  { background: linear-gradient(135deg, #EEF3FF 0%, #C7D9FF 100%); }
.zh-pack__visual--hosting { background: linear-gradient(135deg, #ECFDF5 0%, #BBF7D0 100%); }
.zh-pack__visual--support { background: linear-gradient(135deg, #FFF7ED 0%, #FED7AA 100%); }
.zh-pack__visual--ai      { background: linear-gradient(135deg, #F5F3FF 0%, #DDD6FE 100%); }
.zh-pack__visual::before,
.zh-pack__visual::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.zh-pack__visual::before {
  width: 90px; height: 90px;
  top: -28px; right: -28px;
  background: rgba(255,255,255,0.55);
}
.zh-pack__visual::after {
  width: 60px; height: 60px;
  bottom: -22px; left: -22px;
  background: rgba(56,189,248,0.18);
}
.zh-pack__visual-hero {
  width: 78px; height: 78px;
  border-radius: 22px;
  background: var(--zl-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 14px 30px rgba(27,94,240,0.32);
  z-index: 1;
}
.zh-pack__visual--hosting .zh-pack__visual-hero { background: linear-gradient(135deg, #10B981, #34D399); box-shadow: 0 14px 30px rgba(16,185,129,0.32); }
.zh-pack__visual--support .zh-pack__visual-hero { background: linear-gradient(135deg, #F59E0B, #FCD34D); box-shadow: 0 14px 30px rgba(245,158,11,0.32); }
.zh-pack__visual--ai      .zh-pack__visual-hero { background: linear-gradient(135deg, #8B5CF6, #C4B5FD); box-shadow: 0 14px 30px rgba(139,92,246,0.32); }
.zh-pack__visual-tag {
  position: absolute;
  bottom: 12px;
  right: 14px;
  background: #fff;
  color: var(--zl-primary);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(15,23,42,0.08);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  z-index: 2;
}
.zh-pack__visual--hosting .zh-pack__visual-tag { color: #059669; }
.zh-pack__visual--support .zh-pack__visual-tag { color: #C2410C; }
.zh-pack__visual--ai      .zh-pack__visual-tag { color: #7C3AED; }

/* ─── Solution card visual: hide stray photo, polish chips ─────── */
.zl-solution-card__photo { display: none !important; }
.zl-solution-card__img--wp { background: linear-gradient(135deg, #EEF3FF 0%, #C7D9FF 100%); }
.zl-solution-card__img--ai { background: linear-gradient(135deg, #F5F3FF 0%, #DDD6FE 100%); }

/* Make the chips well-distributed, no overlap with central icon */
.zl-solution-card__visual { padding: 1rem; }
.zl-solution-card__visual-main { width: 92px; height: 92px; font-size: 2.6rem; }
.zl-solution-card__visual-chip { font-size: 0.74rem; padding: 0.42rem 0.7rem; }
.zl-solution-card__visual-chip--tl { top: 14px;    right: 14px; }
.zl-solution-card__visual-chip--tr { top: 14px;    left: 14px; }
.zl-solution-card__visual-chip--bl { bottom: 14px; right: 14px; }
.zl-solution-card__visual-chip--br { bottom: 14px; left: 14px; }

/* ─── Portfolio card device-frame mockups ──────────────────────── */
.zl-port-card__img { height: 200px; position: relative; overflow: hidden; }
.zl-port-card__img-mock {
  width: 100%; height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #EEF3FF 0%, #DBE9FF 60%, #F0F7FF 100%);
  overflow: hidden;
}
.zl-port-card__img-mock::before,
.zl-port-card__img-mock::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.zl-port-card__img-mock::before {
  width: 90px; height: 90px;
  top: -28px; right: -28px;
  background: rgba(255,255,255,0.6);
}
.zl-port-card__img-mock::after {
  width: 60px; height: 60px;
  bottom: -22px; left: -22px;
  background: rgba(56,189,248,0.18);
}
.zl-port-card__img-mock-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.2rem;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--zl-line);
  box-shadow: 0 14px 32px rgba(15,23,42,0.1);
  min-width: 60%;
}
.zl-port-card__img-mock-body i {
  font-size: 2.4rem;
  background: var(--zl-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 8px rgba(27,94,240,0.25));
}
.zl-port-card__img-mock-body span {
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--zl-text);
  letter-spacing: 0.04em;
}

/* Variant gradients per category */
.zl-port-card[data-cat="ecommerce"]  .zl-port-card__img-mock { background: linear-gradient(135deg, #FCE7F3 0%, #FBCFE8 100%); }
.zl-port-card[data-cat="ecommerce"]  .zl-port-card__img-mock-body i { background: linear-gradient(135deg, #DB2777, #EC4899); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.zl-port-card[data-cat="corporate"]  .zl-port-card__img-mock { background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%); }
.zl-port-card[data-cat="landing"]    .zl-port-card__img-mock { background: linear-gradient(135deg, #ECFDF5 0%, #BBF7D0 100%); }
.zl-port-card[data-cat="landing"]    .zl-port-card__img-mock-body i { background: linear-gradient(135deg, #10B981, #34D399); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.zl-port-card[data-cat="dashboard"]  .zl-port-card__img-mock { background: linear-gradient(135deg, #F5F3FF 0%, #DDD6FE 100%); }
.zl-port-card[data-cat="dashboard"]  .zl-port-card__img-mock-body i { background: linear-gradient(135deg, #7C3AED, #A78BFA); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.zl-port-card[data-cat="bot"]        .zl-port-card__img-mock { background: linear-gradient(135deg, #DCFCE7 0%, #86EFAC 100%); }
.zl-port-card[data-cat="bot"]        .zl-port-card__img-mock-body i { background: linear-gradient(135deg, #25D366, #128C7E); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.zl-port-card[data-cat="wordpress"]  .zl-port-card__img-mock { background: linear-gradient(135deg, #DBEAFE 0%, #93C5FD 100%); }
.zl-port-card[data-cat="wordpress"]  .zl-port-card__img-mock-body i { background: linear-gradient(135deg, #2563EB, #1E40AF); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.zl-port-card[data-cat="speed"]      .zl-port-card__img-mock { background: linear-gradient(135deg, #FFEDD5 0%, #FED7AA 100%); }
.zl-port-card[data-cat="speed"]      .zl-port-card__img-mock-body i { background: linear-gradient(135deg, #EA580C, #FB923C); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.zl-port-card[data-cat="repair"]     .zl-port-card__img-mock { background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%); }
.zl-port-card[data-cat="repair"]     .zl-port-card__img-mock-body i { background: linear-gradient(135deg, #DC2626, #EF4444); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* Same for inner portfolio.php cards (zh- prefix) */
.zh-port-card__thumb { height: 200px; position: relative; overflow: hidden; }
.zh-port-card__thumb-mock {
  width: 100%; height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #EEF3FF 0%, #DBE9FF 60%, #F0F7FF 100%);
  overflow: hidden;
}
.zh-port-card__thumb-mock::before,
.zh-port-card__thumb-mock::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.zh-port-card__thumb-mock::before {
  width: 100px; height: 100px;
  top: -32px; right: -32px;
  background: rgba(255,255,255,0.6);
}
.zh-port-card__thumb-mock::after {
  width: 70px; height: 70px;
  bottom: -26px; left: -26px;
  background: rgba(56,189,248,0.2);
}
.zh-port-card__thumb-mock-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.4rem;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--zl-line);
  box-shadow: 0 14px 32px rgba(15,23,42,0.1);
}
.zh-port-card__thumb-mock-body i {
  font-size: 2.4rem;
  background: var(--zl-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 8px rgba(27,94,240,0.25));
}
.zh-port-card__thumb-mock-body span {
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--zl-text);
}

/* ─── Pricing card improvements ─────────────────────────────────── */
.zl-price-card { padding: 2.5rem 1.75rem 2rem; }
.zl-price-card--featured { border-color: var(--zl-primary); }
.zl-price-card--featured::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--zl-radius-lg);
  background: linear-gradient(135deg, rgba(27,94,240,0.18), rgba(56,189,248,0.18));
  z-index: -1;
  filter: blur(18px);
}

/* Featured price card: blue gradient header inside card */
.zl-price-card--featured::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 110px;
  background: var(--zl-gradient);
  border-radius: var(--zl-radius-lg) var(--zl-radius-lg) 0 0;
  opacity: 0.06;
  pointer-events: none;
}

/* Make featured icon pop */
.zl-price-card--featured .zl-price-card__ic {
  width: 60px; height: 60px;
  font-size: 1.7rem;
  box-shadow: 0 12px 24px rgba(27,94,240,0.32);
}

/* Bigger price */
.zl-price-card__price { font-size: 1.75rem; }

/* ─── Why-us cards: vertical look ──────────────────────────────── */
.zl-why-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.zl-why-card {
  flex-direction: column;
  text-align: center;
  align-items: center;
  padding: 1.75rem 1.25rem;
  gap: 0.85rem;
}
.zl-why-card__ic {
  width: 64px; height: 64px;
  border-radius: 18px;
  font-size: 1.65rem;
}

/* ─── Stats strip polish ──────────────────────────────────────── */
.zl-stats { padding: 2.25rem 0; }
.zl-stats__row { gap: 0; }
.zl-stat-item { padding: 0.5rem 1.5rem; }
.zl-stat-item__num { font-size: 1.75rem; }
.zl-stat-item__lbl { font-size: 0.82rem; }

/* ─── Trust strip / feat strip: rounder + contrasted ──────────── */
.zl-feat-strip {
  background: linear-gradient(180deg, var(--zl-surface) 0%, var(--zl-surface-2) 100%);
  border: none;
  padding: 1.5rem 0;
}
.zl-feat-strip__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.zl-feat-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--zl-body);
  padding: 0.5rem 0.9rem;
  background: #fff;
  border-radius: 999px;
  border: 1px solid var(--zl-line);
  box-shadow: 0 4px 10px rgba(15,23,42,0.04);
}
.zl-feat-item i {
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--zl-primary-soft);
  color: var(--zl-primary);
  font-size: 0.95rem;
}
.zl-feat-sep { display: none; }

/* ─── Testimonial cards: avatars with gradient ring ────────────── */
.zl-testi-card { padding: 1.75rem; }
.zl-testi-card__av,
.zl-testi-card__av-img {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  background: var(--zl-gradient);
  color: #fff;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--zl-primary-soft);
}
.zl-testi-card__av-img { object-fit: cover; }

/* ─── CTA blue bottom panel polish ─────────────────────────────── */
.zl-cta-blue { padding: 4rem 0; }
.zl-cta-blue__inner {
  background: var(--zl-gradient);
  border-radius: 28px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.zl-cta-blue__inner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.18) 0%, transparent 60%);
  pointer-events: none;
}

/* ─── Inner page hero polish ───────────────────────────────────── */
.zh-page {
  padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
  background: linear-gradient(180deg, #F4F7FF 0%, #FFFFFF 100%);
  border-bottom: 1px solid var(--zl-line);
  text-align: center;
}
.zh-page .zh-container { max-width: 760px; margin-inline: auto; }
.zh-page .zh-eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--zl-primary);
  background: var(--zl-primary-soft);
  padding: 0.32rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}
.zh-page h1 {
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-weight: 900;
  color: var(--zl-text);
  margin-bottom: 0.85rem;
  line-height: 1.25;
}
.zh-page p {
  color: var(--zl-body);
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 1.7;
  margin-bottom: 1rem;
  max-width: 600px;
  margin-inline: auto;
}
.zh-crumb {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--zl-body-dim);
  background: #fff;
  border: 1px solid var(--zl-line);
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
}
.zh-crumb a { color: var(--zl-primary); font-weight: 700; }

/* ─── Page hero (portfolio uses zh-page-hero) ──────────────────── */
.zh-page-hero {
  padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
  background: linear-gradient(180deg, #F4F7FF 0%, #FFFFFF 100%);
  border-bottom: 1px solid var(--zl-line);
  text-align: center;
}
.zh-page-hero .zh-container { max-width: 760px; margin-inline: auto; }
.zh-page-hero .zh-badge,
.zh-page-hero .zh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--zl-primary);
  background: var(--zl-primary-soft);
  border: 1px solid rgba(27,94,240,0.15);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}
.zh-page-hero__title {
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-weight: 900;
  color: var(--zl-text);
  margin-bottom: 0.85rem;
  line-height: 1.25;
}
.zh-page-hero__sub {
  color: var(--zl-body);
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 1.7;
  margin-bottom: 1rem;
  max-width: 600px;
  margin-inline: auto;
}

/* ─── Filters polish (services / portfolio) ───────────────────── */
.zh-filters,
.zh-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  margin: 0 auto 2rem;
  padding: 0.5rem;
  background: #fff;
  border: 1px solid var(--zl-line);
  border-radius: 999px;
  width: fit-content;
  box-shadow: 0 6px 18px rgba(15,23,42,0.05);
}
.zh-filter-tab,
.zh-filters button {
  background: transparent;
  border: 0;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--zl-body-dim);
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.zh-filter-tab:hover,
.zh-filters button:hover {
  color: var(--zl-primary);
  background: var(--zl-primary-soft);
}
.zh-filter-tab.zh-filter-tab--active,
.zh-filter-tab.active,
.zh-filters button.zh-filter-tab--active {
  background: var(--zl-gradient);
  color: #fff;
  box-shadow: 0 6px 14px rgba(27,94,240,0.32);
}

/* ─── Services list page card thumbnail ───────────────────────── */
.zh-svc-grid { gap: 1.5rem; }
.zh-svc-card {
  background: #fff;
  border: 1px solid var(--zl-line);
  border-radius: var(--zl-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s, box-shadow 0.22s;
}
.zh-svc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--zl-shadow-md);
}
.zh-svc-card__thumb { height: 150px; }
.zh-svc-card > .zh-svc-card__ic,
.zh-svc-card > h3,
.zh-svc-card > p,
.zh-svc-card > .zh-svc-card__act {
  padding-inline: 1.4rem;
}
.zh-svc-card > .zh-svc-card__ic {
  width: 50px; height: 50px;
  margin: 1rem 1.4rem 0.75rem;
  background: var(--zl-primary-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--zl-primary);
  font-size: 1.4rem;
  padding: 0;
}
.zh-svc-card > h3 {
  font-size: 1rem;
  font-weight: 800;
  margin: 0 1.4rem 0.4rem;
  color: var(--zl-text);
}
.zh-svc-card > p {
  font-size: 0.86rem;
  color: var(--zl-body-dim);
  margin: 0 1.4rem 1rem;
  line-height: 1.6;
}
.zh-svc-card__act {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0 1.4rem 1.2rem;
  margin-top: auto;
}
.zh-svc-card__act > a:first-child {
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--zl-primary);
}
.zh-svc-card__act > a:first-child::after {
  content: ' \F284';
  font-family: bootstrap-icons;
  font-size: 0.85rem;
  margin-inline-start: 0.25rem;
}

/* ─── Sectors grid (services page bottom) ─────────────────────── */
.zh-sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.zh-sector {
  background: #fff;
  border: 1px solid var(--zl-line);
  border-radius: var(--zl-radius);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.22s, box-shadow 0.22s;
}
.zh-sector:hover { transform: translateY(-3px); box-shadow: var(--zl-shadow-md); }
.zh-sector > i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--zl-primary-soft);
  color: var(--zl-primary);
  font-size: 1.6rem;
  margin-bottom: 0.85rem;
}
.zh-sector h3 { font-size: 0.95rem; font-weight: 800; color: var(--zl-text); margin-bottom: 0.4rem; }
.zh-sector p  { font-size: 0.82rem; color: var(--zl-body-dim); line-height: 1.55; margin: 0; }

/* ─── 2-column form layout (contact) ──────────────────────────── */
.zh-2col {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: flex-start;
}
.zh-form-card {
  background: #fff;
  border: 1px solid var(--zl-line);
  border-radius: var(--zl-radius-lg);
  padding: 1.75rem;
  box-shadow: 0 8px 32px rgba(15,23,42,0.05);
}
.zh-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.zh-card-aside {
  background: #fff;
  border: 1px solid var(--zl-line);
  border-radius: var(--zl-radius);
  padding: 1.25rem;
  transition: transform 0.22s, box-shadow 0.22s;
}
.zh-card-aside:hover { transform: translateY(-2px); box-shadow: var(--zl-shadow-md); }
.zh-card-aside h3 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  color: var(--zl-text);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.zh-card-aside p {
  font-size: 0.82rem;
  color: var(--zl-body-dim);
  margin-bottom: 0.85rem;
  line-height: 1.55;
}
.zh-form .row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}
.zh-label {
  display: block;
  font-weight: 800;
  font-size: 0.84rem;
  color: var(--zl-text);
  margin-bottom: 0.3rem;
}
.zh-input,
.zh-select,
.zh-textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--zl-text);
  background: #fff;
  border: 1.5px solid var(--zl-line);
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.zh-textarea { min-height: 110px; resize: vertical; }
.zh-input:focus,
.zh-select:focus,
.zh-textarea:focus {
  outline: 0;
  border-color: var(--zl-primary);
  box-shadow: 0 0 0 4px rgba(27,94,240,0.12);
}

/* ─── Mobile responsive overrides for new structures ──────────── */
@media (max-width: 992px) {
  .zl-svc-cats { grid-template-columns: repeat(2, 1fr); }
  .zl-why-grid { grid-template-columns: repeat(2, 1fr); }
  .zh-2col { grid-template-columns: 1fr; }
  .zh-sector-grid { grid-template-columns: repeat(2, 1fr); }
  .zl-vis-chip--cloud,
  .zl-vis-chip--shield,
  .zl-vis-chip--server,
  .zl-vis-chip--wa,
  .zl-vis-chip--ai { font-size: 0.7rem; padding: 0.45rem 0.6rem; }
  .zl-vis-chip i { width: 26px; height: 26px; font-size: 0.85rem; }
}
@media (max-width: 768px) {
  .zh-pack__visual { width: calc(100% + 2rem); margin: -1.2rem -1rem 1.2rem; height: 110px; }
  .zh-svc-card__thumb { height: 130px; }
  .zh-form .row-2 { grid-template-columns: 1fr; }
  .zh-page h1, .zh-page-hero__title { font-size: 1.45rem; }
  .zl-feat-strip__row { gap: 0.4rem; }
  .zl-feat-item { font-size: 0.76rem; padding: 0.4rem 0.7rem; }
  .zl-feat-item i { width: 22px; height: 22px; font-size: 0.8rem; }
}
@media (max-width: 540px) {
  .zl-svc-cats { grid-template-columns: 1fr; }
  .zl-why-grid { grid-template-columns: 1fr; }
  .zh-sector-grid { grid-template-columns: 1fr; }
  .zl-stats__row { flex-direction: column; align-items: stretch; }
  .zl-stat-item { padding: 0.65rem 1rem; border-right: 0; border-top: 1px solid rgba(255,255,255,0.18); }
  .zl-stat-item:first-child { border-top: 0; }
}

/* =============================================================
   FINAL PREMIUM POLISH LAYER (added 2026-04-26)
   Goal: bring every visual element to a “world-class agency” level
   matching the reference image (rich 3D feel, soft halos, depth).
   ============================================================= */

/* Service category cards: deeper image panel with multi-layer halo */
.zl-svc-cat__img {
  height: 160px !important;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.85) 0%, transparent 55%),
    radial-gradient(circle at 75% 80%, rgba(56,189,248,0.18) 0%, transparent 55%),
    linear-gradient(135deg, #EEF3FF 0%, #DBE9FF 60%, #F0F7FF 100%) !important;
}
.zl-svc-cat--hosting .zl-svc-cat__img {
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.85) 0%, transparent 55%),
    radial-gradient(circle at 75% 80%, rgba(110,231,183,0.25) 0%, transparent 55%),
    linear-gradient(135deg, #ECFDF5 0%, #BBF7D0 100%) !important;
}
.zl-svc-cat--support .zl-svc-cat__img {
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.85) 0%, transparent 55%),
    radial-gradient(circle at 75% 80%, rgba(252,211,77,0.30) 0%, transparent 55%),
    linear-gradient(135deg, #FFF7ED 0%, #FED7AA 100%) !important;
}
.zl-svc-cat--ai .zl-svc-cat__img {
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.85) 0%, transparent 55%),
    radial-gradient(circle at 75% 80%, rgba(196,181,253,0.32) 0%, transparent 55%),
    linear-gradient(135deg, #F5F3FF 0%, #DDD6FE 100%) !important;
}

/* Add a glowing halo behind each hero icon for 3D depth */
.zl-svc-cat__hero { width: 96px !important; height: 96px !important; font-size: 2.7rem !important; border-radius: 26px !important; }
.zl-svc-cat__hero::before {
  content: '';
  position: absolute;
  inset: -22px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.55) 0%, transparent 65%);
  pointer-events: none;
  z-index: -1;
}
.zl-svc-cat__hero::after {
  content: '';
  position: absolute;
  inset: 6px 6px auto auto;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,0.65);
  filter: blur(2px);
  pointer-events: none;
}

/* Solution card hero icons: richer halo + secondary chip */
.zl-solution-card__visual-main { width: 110px !important; height: 110px !important; font-size: 3rem !important; border-radius: 28px !important; }
.zl-solution-card__visual-main::before {
  content: '';
  position: absolute;
  inset: -28px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.55) 0%, transparent 65%);
  pointer-events: none;
  z-index: -1;
}
.zl-solution-card__visual-main::after {
  content: '';
  position: absolute;
  inset: 8px 8px auto auto;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.65);
  filter: blur(3px);
  pointer-events: none;
}

/* Pack visual: enhanced background with floating dots */
.zh-pack__visual { height: 150px !important; }
.zh-pack__visual-hero { width: 76px !important; height: 76px !important; font-size: 2.1rem !important; border-radius: 22px !important; }
.zh-pack__visual-hero::after {
  content: '';
  position: absolute;
  inset: 7px 7px auto auto;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  filter: blur(2px);
}

/* Hero laptop: subtle floating motion */
@keyframes zlLaptopFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.zl-hero-laptop { animation: zlLaptopFloat 6s ease-in-out infinite; }

/* Floating chip: gentle hover lift */
.zl-vis-chip { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.zl-vis-chip:hover { transform: translateY(-3px) scale(1.05); }

/* Why-us card: better hover lift */
.zl-why-card { transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
.zl-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(15,23,42,0.10);
  border-color: rgba(27,94,240,0.30);
}
.zl-why-card__ic {
  background: var(--zl-primary-soft);
  color: var(--zl-primary);
  position: relative;
  overflow: hidden;
}
.zl-why-card__ic::before {
  content: '';
  position: absolute;
  inset: -10px auto auto -10px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
}
.zl-why-card__ic--blue   { background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%); color: #1d4ed8; }
.zl-why-card__ic--green  { background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%); color: #047857; }
.zl-why-card__ic--purple { background: linear-gradient(135deg, #EDE9FE 0%, #DDD6FE 100%); color: #6d28d9; }
.zl-why-card__ic--orange { background: linear-gradient(135deg, #FFEDD5 0%, #FED7AA 100%); color: #c2410c; }

/* Stats strip: blue gradient + dotted pattern background */
.zl-stats {
  background:
    radial-gradient(circle at 12% 30%, rgba(255,255,255,0.10) 0%, transparent 24%),
    radial-gradient(circle at 88% 70%, rgba(255,255,255,0.08) 0%, transparent 28%),
    linear-gradient(135deg, #1B5EF0 0%, #2486F0 50%, #38BDF8 100%);
  position: relative;
  overflow: hidden;
}
.zl-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.10) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
  opacity: 0.4;
}
.zl-stats__row { position: relative; }

/* Hero text trust badges: rounded chips */
.zl-trust-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #fff;
  border: 1px solid var(--zl-line);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--zl-text);
  box-shadow: 0 4px 12px rgba(15,23,42,0.05);
}
.zl-trust-badge i { color: var(--zl-primary); font-size: 0.95rem; }

/* CTA blue panel: better contrast + cleaner button */
.zl-cta-blue h2  { color: #fff; font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 900; margin-bottom: 0.35rem; }
.zl-cta-blue p   { color: rgba(255,255,255,0.92); font-size: 0.98rem; line-height: 1.7; }
.zl-cta-blue__inner {
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  flex-wrap: wrap;
}
.zl-cta-blue__btns { display: flex; flex-wrap: wrap; gap: 0.6rem; }
@media (max-width: 768px) {
  .zl-cta-blue__inner { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
  .zl-cta-blue__btns  { width: 100%; justify-content: center; }
}

/* Smoother scroll-reveal for any element using zl-reveal/zh-reveal classes */
.zl-reveal, .zh-reveal { transition: opacity 0.6s ease, transform 0.6s ease; }
.zl-reveal:not(.zl-revealed):not(.zh-revealed),
.zh-reveal:not(.zl-revealed):not(.zh-revealed) {
  /* Keep visible by default for SEO/no-JS — JS will fade-in on scroll if implemented */
}

/* Body anti-jitter: prevent horizontal scroll from absolute decorations */
body { overflow-x: hidden; }

/* Service cat hover: lift + shadow */
.zl-svc-cat { transition: transform 0.28s var(--zl-ease), box-shadow 0.28s var(--zl-ease), border-color 0.28s var(--zl-ease); }
.zl-svc-cat:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -10px rgba(15,23,42,0.15);
  border-color: rgba(27,94,240,0.30);
}

/* Pack card: featured highlight halo */
.zh-pack--feat { position: relative; box-shadow: 0 24px 60px -20px rgba(27,94,240,0.30); }
.zh-pack--feat::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(27,94,240,0.20), rgba(56,189,248,0.20));
  z-index: -1;
  filter: blur(20px);
}

/* Inner-page hero: stronger gradient floor + subtle pattern */
.zh-page,
.zh-page-hero {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(27,94,240,0.10) 0%, transparent 50%),
    linear-gradient(180deg, #F4F7FF 0%, #FFFFFF 100%);
}

/* Faq item: nicer hover */
.zh-faq__item { transition: border-color 0.2s, box-shadow 0.2s; }
.zh-faq__item:hover { border-color: rgba(27,94,240,0.25); box-shadow: 0 6px 18px rgba(15,23,42,0.05); }

/* Universal text-image alignment fixes for RTL */
[dir="rtl"] .zh-crumb i.bi-chevron-left { transform: scaleX(-1); }

