/* ============================================================
   ZEKAH GROWTH — SHARED DESIGN SYSTEM
   ============================================================ */

:root {
  --zg-black: #080A0C;
  --zg-charcoal: #111418;
  --zg-soft-black: #171A1F;
  --zg-white: #FFFFFF;
  --zg-offwhite: #F5F3EE;
  --zg-gold: #C99732;
  --zg-gold-light: #E1B85A;
  --zg-gray: #A4A7AD;

  --zg-text-body: #C9CBCF;
  --zg-text-muted: #8A8D93;
  --zg-border: rgba(255,255,255,0.09);
  --zg-border-gold: rgba(201,151,50,0.35);

  --zg-font-heading: 'Montserrat', Arial, Helvetica, sans-serif;
  --zg-font-body: 'Inter', Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  min-height: 100%;
  font-family: var(--zg-font-body);
  background: var(--zg-black);
  color: var(--zg-white);
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.sr-only:focus {
  position: fixed; top: 12px; left: 12px;
  width: auto; height: auto; clip: auto;
  padding: 10px 18px;
  background: var(--zg-gold);
  color: var(--zg-black);
  font-weight: 700;
  border-radius: 8px;
  z-index: 9999;
}

.zg-page {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: var(--zg-black);
  color: var(--zg-white);
}

.zg-container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.zg-container-narrow {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */

.zg-header {
  background: rgba(8,10,12,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--zg-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.zg-nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.zg-logo-link { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.zg-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}

.zg-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.zg-links a {
  color: var(--zg-gray);
  font-size: 14.5px;
  font-weight: 600;
  font-family: var(--zg-font-heading);
  letter-spacing: 0.2px;
  transition: 0.2s ease;
  white-space: nowrap;
}

.zg-links a:hover,
.zg-links a.active {
  color: var(--zg-gold-light);
}

.zg-links a:focus-visible {
  outline: 2px solid var(--zg-gold);
  border-radius: 4px;
}

.zg-nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.zg-burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--zg-border);
  background: var(--zg-soft-black);
  color: var(--zg-white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.zg-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px 0 22px;
  border-top: 1px solid var(--zg-border);
}

.zg-mobile-menu.is-open { display: flex; }

.zg-mobile-menu a {
  color: var(--zg-gray);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--zg-font-heading);
  padding: 13px 4px;
  border-bottom: 1px solid var(--zg-border);
}

.zg-mobile-menu a:last-of-type { border-bottom: none; }

.zg-mobile-menu .zg-btn { margin-top: 14px; width: 100%; }

/* ============================================================
   BUTTONS
   ============================================================ */

.zg-btn {
  min-height: 52px;
  padding: 0 26px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 700;
  font-family: var(--zg-font-heading);
  letter-spacing: 0.2px;
  border: 1px solid transparent;
  transition: 0.25s ease;
  white-space: nowrap;
  cursor: pointer;
}

.zg-btn:focus-visible {
  outline: 2px solid var(--zg-gold);
  outline-offset: 3px;
}

.zg-btn-primary {
  background: linear-gradient(135deg, var(--zg-gold-light), var(--zg-gold));
  color: var(--zg-black);
  box-shadow: 0 14px 34px rgba(201,151,50,0.25);
}

.zg-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(201,151,50,0.38);
}

.zg-btn-outline {
  background: transparent;
  color: var(--zg-white);
  border-color: rgba(255,255,255,0.20);
}

.zg-btn-outline:hover {
  border-color: var(--zg-gold);
  background: rgba(201,151,50,0.08);
  transform: translateY(-2px);
}

.zg-btn-dark {
  background: var(--zg-soft-black);
  color: var(--zg-white);
  border-color: var(--zg-border);
}

.zg-btn-dark:hover {
  border-color: var(--zg-gold);
  transform: translateY(-2px);
}

.zg-btn-block { width: 100%; }

/* ============================================================
   HERO
   ============================================================ */

.zg-hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(8,10,12,0.55), rgba(8,10,12,0.94)),
    var(--zg-hero-img, none);
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--zg-border);
  position: relative;
  overflow: hidden;
}

.zg-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(201,151,50,0.14), transparent 26%),
    radial-gradient(circle at 85% 10%, rgba(201,151,50,0.08), transparent 30%);
  pointer-events: none;
}

.zg-hero-content {
  position: relative;
  z-index: 2;
  max-width: 740px;
  padding: 84px 0;
}

.zg-pill {
  display: inline-flex;
  align-items: center;
  color: var(--zg-gold-light);
  border: 1px solid var(--zg-border-gold);
  background: rgba(201,151,50,0.10);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 11.5px;
  font-weight: 700;
  font-family: var(--zg-font-heading);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: 24px;
}

.zg-hero h1,
.zg-page-hero h1 {
  font-family: var(--zg-font-heading);
  font-size: clamp(38px, 5.6vw, 66px);
  line-height: 1.08;
  letter-spacing: -1.6px;
  font-weight: 800;
  margin-bottom: 22px;
}

.zg-gold-text { color: var(--zg-gold-light); }

.zg-hero p {
  color: var(--zg-text-body);
  font-size: 18px;
  line-height: 1.65;
  max-width: 640px;
  margin-bottom: 30px;
}

.zg-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.zg-trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.zg-trust-point {
  color: var(--zg-gray);
  border: 1px solid var(--zg-border);
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(255,255,255,0.03);
}

.zg-trust-point .dot {
  color: var(--zg-gold);
  margin-right: 6px;
}

/* Simple page hero (non-image) for subpages */
.zg-page-hero {
  padding: 76px 0 56px;
  background: var(--zg-charcoal);
  border-bottom: 1px solid var(--zg-border);
  text-align: left;
}

.zg-page-hero p {
  color: var(--zg-text-body);
  font-size: 17px;
  line-height: 1.65;
  max-width: 680px;
  margin-top: 16px;
}

/* ============================================================
   SECTIONS
   ============================================================ */

.zg-section {
  padding: 82px 0;
  border-bottom: 1px solid var(--zg-border);
  background: var(--zg-black);
}

.zg-section.alt { background: var(--zg-charcoal); }

.zg-section.light {
  background: var(--zg-offwhite);
  color: var(--zg-black);
}

.zg-section.light p { color: #4a4a45; }
.zg-section.light .zg-label { color: #8a6a1f; }

.zg-section-center { text-align: center; }

.zg-label {
  color: var(--zg-gold-light);
  font-family: var(--zg-font-heading);
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  margin-bottom: 14px;
}

.zg-section h2 {
  font-family: var(--zg-font-heading);
  font-size: clamp(30px, 4.4vw, 48px);
  line-height: 1.12;
  letter-spacing: -1.2px;
  font-weight: 800;
  margin-bottom: 16px;
}

.zg-section h3 {
  font-family: var(--zg-font-heading);
  font-weight: 700;
}

.zg-section p { color: var(--zg-text-body); font-size: 16.5px; line-height: 1.7; }

.zg-intro { max-width: 720px; margin: 0 auto 44px; }

/* Grids */
.zg-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.zg-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.zg-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.zg-grid-5 { display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; }
.zg-mt-40 { margin-top: 40px; }
.zg-mt-48 { margin-top: 48px; }

/* Cards */
.zg-card {
  background: var(--zg-soft-black);
  border: 1px solid var(--zg-border);
  border-radius: 18px;
  padding: 30px;
  transition: 0.25s ease;
}

.zg-card:hover {
  border-color: var(--zg-border-gold);
  box-shadow: 0 0 30px rgba(201,151,50,0.08);
  transform: translateY(-4px);
}

.zg-card-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(201,151,50,0.12);
  color: var(--zg-gold-light);
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.zg-card h3 { font-size: 20px; margin-bottom: 10px; }
.zg-card p { font-size: 15px; }

/* Numbered point cards (Why Zekah Growth, checklists) */
.zg-point-card {
  background: var(--zg-soft-black);
  border: 1px solid var(--zg-border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.zg-point-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(201,151,50,0.14);
  color: var(--zg-gold-light);
  display: grid;
  place-items: center;
  font-weight: 800;
  flex-shrink: 0;
  font-family: var(--zg-font-heading);
}

.zg-point-card h3 { font-size: 16px; margin-bottom: 4px; }
.zg-point-card p { font-size: 13.5px; }

/* Checklist columns (What We Manage) */
.zg-check-col {
  background: var(--zg-soft-black);
  border: 1px solid var(--zg-border);
  border-top: 3px solid var(--zg-gold);
  border-radius: 16px;
  padding: 28px;
}

.zg-check-col h3 {
  font-size: 17px;
  margin-bottom: 18px;
  color: var(--zg-gold-light);
}

.zg-check-col ul { display: grid; gap: 11px; }

.zg-check-col li {
  font-size: 14.5px;
  color: var(--zg-text-body);
  line-height: 1.4;
  padding-left: 24px;
  position: relative;
}

.zg-check-col li::before {
  content: "✓";
  color: var(--zg-gold);
  font-weight: 800;
  position: absolute;
  left: 0;
}

/* Process steps */
.zg-steps { display: grid; gap: 18px; margin-top: 44px; }

.zg-step {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: var(--zg-soft-black);
  border: 1px solid var(--zg-border);
  border-radius: 16px;
  padding: 26px 28px;
}

.zg-step-num {
  font-family: var(--zg-font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--zg-gold);
  min-width: 46px;
}

.zg-step h3 { font-size: 18px; margin-bottom: 6px; }
.zg-step p { font-size: 14.5px; }

/* Team cards */
.zg-team-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 28px;
  margin-top: 40px;
}

.zg-team-card {
  background: var(--zg-soft-black);
  border: 1px solid var(--zg-border);
  border-radius: 20px;
  padding: 28px;
  text-align: center;
}

.zg-team-photo {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 18px;
  border: 3px solid var(--zg-gold);
}

.zg-team-card h3 { font-size: 19px; margin-bottom: 4px; }
.zg-team-role {
  color: var(--zg-gold-light);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
}
.zg-team-card p { font-size: 14.5px; }

/* Fit section (two columns) */
.zg-fit-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 24px;
  margin-top: 42px;
}

.zg-fit-col {
  border-radius: 18px;
  padding: 30px;
}

.zg-fit-col.yes {
  background: rgba(201,151,50,0.08);
  border: 1px solid var(--zg-border-gold);
}

.zg-fit-col.no {
  background: var(--zg-soft-black);
  border: 1px solid var(--zg-border);
}

.zg-fit-col h3 { font-size: 18px; margin-bottom: 18px; }
.zg-fit-col.yes h3 { color: var(--zg-gold-light); }

.zg-fit-col ul { display: grid; gap: 12px; }

.zg-fit-col li {
  font-size: 14.5px;
  color: var(--zg-text-body);
  padding-left: 24px;
  position: relative;
  line-height: 1.45;
}

.zg-fit-col.yes li::before { content: "✓"; color: var(--zg-gold); font-weight: 800; position: absolute; left: 0; }
.zg-fit-col.no li::before { content: "×"; color: #83858a; font-weight: 800; position: absolute; left: 0; }

/* Placeholder result cards */
.zg-placeholder-card {
  background: var(--zg-soft-black);
  border: 1px dashed rgba(255,255,255,0.18);
  border-radius: 18px;
  padding: 30px;
  text-align: center;
}

.zg-placeholder-card .tag {
  display: inline-block;
  color: var(--zg-gold-light);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 1px solid var(--zg-border-gold);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 14px;
}

.zg-placeholder-card h3 { font-size: 17px; margin-bottom: 8px; }
.zg-placeholder-card p { font-size: 14px; color: var(--zg-text-muted); }

.zg-disclaimer {
  margin-top: 36px;
  color: var(--zg-text-muted);
  font-size: 13px;
  line-height: 1.6;
  max-width: 760px;
}

/* Case-study table style block */
.zg-cs-fields {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 10px 30px;
  margin-top: 18px;
}

.zg-cs-fields div {
  border-bottom: 1px solid var(--zg-border);
  padding: 10px 0;
  font-size: 14px;
  color: var(--zg-text-muted);
}

.zg-cs-fields strong { color: var(--zg-white); font-weight: 700; }

/* "Not included" list */
.zg-not-included {
  margin-top: 20px;
  display: grid;
  gap: 10px;
}

.zg-not-included li {
  font-size: 14.5px;
  color: var(--zg-text-muted);
  padding-left: 24px;
  position: relative;
}

.zg-not-included li::before {
  content: "×";
  color: #83858a;
  font-weight: 800;
  position: absolute;
  left: 0;
}

/* Future services note */
.zg-note-box {
  margin-top: 30px;
  background: rgba(201,151,50,0.06);
  border: 1px solid var(--zg-border-gold);
  border-radius: 14px;
  padding: 20px 24px;
  font-size: 14.5px;
  color: var(--zg-text-body);
  line-height: 1.6;
}

/* FAQ accordion */
.zg-faq-list { margin-top: 42px; display: grid; gap: 12px; }

.zg-faq-item {
  background: var(--zg-soft-black);
  border: 1px solid var(--zg-border);
  border-radius: 14px;
  overflow: hidden;
}

.zg-faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--zg-white);
  font-family: var(--zg-font-heading);
  font-size: 15.5px;
  font-weight: 700;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.zg-faq-q .icon {
  color: var(--zg-gold);
  font-size: 20px;
  flex-shrink: 0;
  transition: 0.2s ease;
}

.zg-faq-item.is-open .zg-faq-q .icon { transform: rotate(45deg); }

.zg-faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: 0.25s ease;
  color: var(--zg-text-body);
  font-size: 14.5px;
  line-height: 1.65;
}

.zg-faq-item.is-open .zg-faq-a {
  padding: 0 24px 22px;
  max-height: 600px;
}

/* Final CTA */
.zg-cta-box {
  background: linear-gradient(135deg, var(--zg-charcoal), var(--zg-black));
  border: 1px solid var(--zg-border-gold);
  border-radius: 24px;
  padding: 64px 40px;
  text-align: center;
}

.zg-cta-box h1,
.zg-cta-box h2 {
  font-family: var(--zg-font-heading);
  font-size: clamp(30px, 4.4vw, 48px);
  line-height: 1.12;
  letter-spacing: -1.2px;
  font-weight: 800;
  margin-bottom: 14px;
}
.zg-cta-box p { max-width: 560px; margin: 0 auto 30px; }

/* ============================================================
   FORMS
   ============================================================ */

.zg-form { display: grid; gap: 18px; }

.zg-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.zg-field { display: grid; gap: 7px; }

.zg-field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--zg-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.zg-field input,
.zg-field select,
.zg-field textarea {
  background: var(--zg-soft-black);
  border: 1px solid var(--zg-border);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--zg-white);
  font-family: var(--zg-font-body);
  font-size: 15px;
  outline: none;
  transition: 0.2s ease;
}

.zg-field input:focus,
.zg-field select:focus,
.zg-field textarea:focus {
  border-color: var(--zg-gold);
  box-shadow: 0 0 0 3px rgba(201,151,50,0.15);
}

.zg-field textarea { resize: vertical; min-height: 100px; }

.zg-form-note {
  color: var(--zg-text-muted);
  font-size: 13px;
  line-height: 1.6;
  margin-top: 4px;
}

/* honeypot field - hidden from real users */
.zg-hp { position: absolute; left: -9999px; opacity: 0; height: 0; }

/* ============================================================
   LEGAL PAGE PROSE
   ============================================================ */

.zg-prose { max-width: 780px; }
.zg-prose h2 {
  font-family: var(--zg-font-heading);
  font-size: 24px;
  font-weight: 700;
  margin: 38px 0 12px;
}
.zg-prose h2:first-child { margin-top: 0; }
.zg-prose p, .zg-prose li {
  color: var(--zg-text-body);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 12px;
}
.zg-prose ul { padding-left: 20px; list-style: disc; }
.zg-prose a { color: var(--zg-gold-light); text-decoration: underline; }
.zg-prose .updated { color: var(--zg-text-muted); font-size: 13px; margin-bottom: 30px; }

/* ============================================================
   FOOTER
   ============================================================ */

.zg-footer {
  background: var(--zg-black);
  border-top: 1px solid var(--zg-border);
  padding: 56px 0 26px;
}

.zg-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}

.zg-footer-logo { height: 42px; margin-bottom: 18px; }

.zg-footer p { color: var(--zg-text-muted); font-size: 14.5px; line-height: 1.6; max-width: 320px; }

.zg-footer h3 {
  color: var(--zg-white);
  font-family: var(--zg-font-heading);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.zg-footer ul { display: grid; gap: 10px; }

.zg-footer a { color: var(--zg-gray); font-size: 14.5px; transition: 0.2s ease; }
.zg-footer a:hover { color: var(--zg-gold-light); }

.zg-socials { display: flex; gap: 10px; margin-top: 20px; }

.zg-socials a {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--zg-soft-black);
  border: 1px solid var(--zg-border);
  color: var(--zg-white);
  transition: 0.2s ease;
}

.zg-socials a:hover { border-color: var(--zg-gold); color: var(--zg-gold-light); }

.zg-footer-bottom {
  border-top: 1px solid var(--zg-border);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--zg-text-muted);
  font-size: 13px;
}

.zg-footer-bottom a { color: var(--zg-text-muted); }
.zg-footer-bottom a:hover { color: var(--zg-gold-light); }

/* ============================================================
   FLOATING WHATSAPP WIDGET
   ============================================================ */

#zg-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  font-family: var(--zg-font-body);
}

.zg-wa-popup {
  background: var(--zg-soft-black);
  border: 1px solid var(--zg-border);
  border-radius: 18px;
  padding: 22px;
  width: 280px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(201,151,50,0.12);
  position: relative;
  animation: zg-wa-in 0.3s cubic-bezier(0.34,1.56,0.64,1);
  transform-origin: bottom right;
}

@keyframes zg-wa-in {
  from { opacity: 0; transform: scale(0.88) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.zg-wa-popup[hidden] { display: none; }

.zg-wa-x {
  position: absolute; top: 12px; right: 12px;
  background: none; border: none;
  color: var(--zg-text-muted);
  font-size: 20px; line-height: 1;
  cursor: pointer; padding: 3px 6px;
  border-radius: 6px; transition: 0.18s;
}
.zg-wa-x:hover { color: #fff; background: rgba(255,255,255,0.10); }

.zg-wa-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }

.zg-wa-avatar {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: grid; place-items: center;
  flex-shrink: 0;
}

.zg-wa-from { font-size: 14px; font-weight: 700; color: #fff; }
.zg-wa-status { font-size: 12px; color: #22cc55; display: flex; align-items: center; gap: 5px; margin-top: 3px; }
.zg-wa-status::before { content: ''; width: 7px; height: 7px; background: #22cc55; border-radius: 50%; flex-shrink: 0; }

.zg-wa-body { color: #c8c8c8; font-size: 14px; line-height: 1.6; margin-bottom: 16px; }

.zg-wa-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 12px 18px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff; font-size: 14px; font-weight: 700;
  border-radius: 10px; transition: 0.22s ease;
}
.zg-wa-cta:hover { transform: translateY(-2px); }

.zg-wa-btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border: none; cursor: pointer;
  display: grid; place-items: center;
  box-shadow: 0 8px 26px rgba(37,211,102,0.42);
  transition: 0.25s ease;
  position: relative;
  flex-shrink: 0;
}
.zg-wa-btn:hover { transform: scale(1.08); }

.zg-wa-btn::before {
  content: '';
  position: absolute; inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.42);
  animation: zg-wa-pulse 2.6s ease-out infinite;
}

@keyframes zg-wa-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

.zg-wa-dot {
  position: absolute; top: 2px; right: 2px;
  width: 13px; height: 13px;
  background: #22cc55; border-radius: 50%;
  border: 2.5px solid var(--zg-black);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 980px) {
  .zg-links { display: none; }
  .zg-burger { display: flex; }
  .zg-team-grid,
  .zg-fit-grid,
  .zg-cs-fields { grid-template-columns: 1fr; }
  .zg-grid-3,
  .zg-grid-4,
  .zg-grid-5 { grid-template-columns: repeat(2,1fr); }
  .zg-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .zg-hero { min-height: auto; }
  .zg-hero-content { padding: 60px 0 56px; }
  .zg-grid-2,
  .zg-grid-3,
  .zg-grid-4,
  .zg-grid-5,
  .zg-form-row { grid-template-columns: 1fr; }
  .zg-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .zg-cta-box { padding: 46px 24px; }
}

@media (max-width: 560px) {
  .zg-container,
  .zg-container-narrow { width: min(100% - 28px, 1140px); }
  .zg-nav { min-height: 70px; }
  .zg-logo { height: 36px; }
  .zg-actions { flex-direction: column; }
  .zg-actions .zg-btn { width: 100%; }
  .zg-section { padding: 58px 0; }
  .zg-page-hero { padding: 50px 0 40px; }
  #zg-wa { bottom: 18px; right: 18px; }
}
