/* Zackgo Reports — Public pages (Legal, Trust, FAQ, Support, Enterprise) */
@import url('pub-footer.css');

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

:root {
  /* Enterprise Light Theme — Zackgo Design System v2.11 */
  --navy-950: #04140F;
  --navy-900: #06231B;
  --navy-800: #0A3A2C;
  --navy-700: #2C4A40;
  --amber-500: #F97316;
  --amber-400: #FB923C;
  --amber-50: #FFF7ED;
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --grey-50: #F9FAFB;
  --grey-100: #F3F4F6;
  --grey-200: #E5E7EB;
  --grey-300: #D1D5DB;
  --grey-500: #6B7280;
  --grey-700: #374151;
  --text: #111827;
  --text-light: #6B7280;
  --green: #10B981;
  --green-soft: #ECFDF5;
  --orange: #F97316;
  --red: #EF4444;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --shadow-card: 0 1px 3px rgba(15,23,42,.06), 0 1px 2px rgba(15,23,42,.04);
  --shadow-elevated: 0 20px 48px rgba(15,23,42,.12), 0 4px 16px rgba(15,23,42,.07);
  --font-display: 'Sora', 'Inter', system-ui, sans-serif;
  --font-body: 'Manrope', 'Inter', system-ui, sans-serif;
  --ring-focus: 0 0 0 3px rgba(249, 115, 22, 0.25);
  --pub-version: '2.14.0';
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

a:focus-visible, button:focus-visible, input:focus-visible {
  outline: none;
  box-shadow: var(--ring-focus);
  border-radius: var(--r-sm);
}

/* Nav */
.pub-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--grey-100);
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.pub-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.pub-nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--grey-700);
  padding: 8px 12px;
  border-radius: var(--r-sm);
  transition: color 0.15s, background 0.15s;
}
.pub-nav-links a:hover { color: var(--navy-900); background: var(--grey-50); }
.pub-nav-cta {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}
.pub-nav .zg-logo {
  min-width: 0;
  flex-shrink: 1;
  overflow: hidden;
}
.pub-nav .zg-logo__text {
  flex-direction: row;
  align-items: center;
  gap: 5px;
}
.pub-nav .zg-logo__product {
  font-size: 14px;
}
.pub-nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--grey-200);
  background: var(--white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--navy-900);
  flex-shrink: 0;
}
.pub-nav-toggle svg { width: 20px; height: 20px; }
.pub-mobile-sheet {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15, 23, 42, 0);
  visibility: hidden;
  pointer-events: none;
  transition: background 0.28s ease, visibility 0.28s;
}
.pub-mobile-sheet.open {
  visibility: visible;
  pointer-events: auto;
  background: rgba(15, 23, 42, 0.42);
}
.pub-mobile-sheet-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: var(--white);
  padding: 20px;
  box-shadow: -8px 0 32px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
.pub-mobile-sheet.open .pub-mobile-sheet-panel {
  transform: translateX(0);
}
.pub-mobile-sheet-panel .pub-sheet-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pub-mobile-sheet-panel .pub-sheet-links a,
.pub-mobile-sheet-panel > a {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.pub-mobile-sheet-panel .pub-sheet-links a:hover,
.pub-mobile-sheet-panel > a:hover { background: var(--grey-50); }
.pub-mobile-sheet-close {
  align-self: flex-end;
  width: 36px;
  height: 36px;
  border: 1px solid var(--grey-200);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1;
  color: var(--grey-700);
}
.pub-mobile-sheet-panel .pub-sheet-cta {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--grey-100);
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}
.pub-mobile-sheet-panel .pub-sheet-cta a {
  text-align: center;
  font-weight: 700;
}
.pub-mobile-sheet[hidden] {
  display: block !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
.pub-mobile-sheet-panel .pub-sheet-cta .pub-btn-primary {
  display: flex;
  justify-content: center;
  background: linear-gradient(180deg, #FB923C 0%, #F97316 55%, #EA580C 100%) !important;
  color: #FFFFFF !important;
  border-color: rgba(249, 115, 22, 0.4) !important;
}
.pub-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid transparent;
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.pub-btn-primary {
  background: linear-gradient(180deg, #FB923C 0%, #F97316 55%, #EA580C 100%) !important;
  color: #FFFFFF !important;
  border-color: rgba(249, 115, 22, 0.4) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 4px 20px -6px rgba(249, 115, 22, 0.35);
}
.pub-btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 10px 28px -8px rgba(249, 115, 22, 0.45);
}
.pub-btn-ghost {
  background: rgba(255, 255, 255, 0.65);
  color: var(--grey-700);
  border: 1px solid var(--grey-200);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}
.pub-btn-ghost:hover {
  border-color: rgba(249, 115, 22, 0.45);
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-1px);
}
.pub-nav-back {
  font-size: 13px;
  color: var(--grey-500);
  white-space: nowrap;
}
.pub-nav-back:hover { color: var(--navy-900); }

/* Hero — Enterprise light theme */
.pub-hero {
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
  padding: 52px 32px 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pub-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 100% 0%, rgba(249,115,22,.07), transparent 65%),
    radial-gradient(ellipse 40% 60% at 0% 100%, rgba(15,23,42,.04), transparent 65%);
  pointer-events: none;
}
.pub-hero-inner { position: relative; max-width: 800px; margin: 0 auto; }
.pub-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--amber-500);
  background: var(--amber-50);
  border: 1px solid rgba(249,115,22,.2);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.pub-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 14px;
}
.pub-hero p {
  font-size: 15px;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Main layout */
.pub-main { flex: 1; }
.pub-container { max-width: 1100px; margin: 0 auto; padding: 48px 32px 64px; }
.pub-container-narrow { max-width: 760px; margin: 0 auto; padding: 48px 32px 64px; }

/* Legal prose */
.pub-highlight {
  background: var(--amber-50);
  border: 1px solid rgba(249,115,22,0.25);
  border-left: 3px solid var(--amber-500);
  border-radius: var(--r-md);
  padding: 16px 18px;
  margin-bottom: 32px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
}
.pub-highlight.info {
  background: #F0F9FF;
  border-color: #BAE6FD;
  border-left-color: #0EA5E9;
}
.pub-section { margin-bottom: 36px; }
.pub-section h2 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--grey-100);
}
.pub-section h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-900);
  margin: 16px 0 8px;
}
.pub-section p, .pub-section li {
  font-size: 14px;
  color: var(--grey-700);
  line-height: 1.8;
  margin-bottom: 8px;
}
.pub-section ul, .pub-section ol { padding-left: 22px; }
.pub-section a { color: var(--navy-900); text-decoration: underline; text-underline-offset: 2px; }
.pub-toc {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  margin-bottom: 32px;
}
.pub-toc-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--grey-500); margin-bottom: 12px; }
.pub-toc ol { padding-left: 18px; }
.pub-toc a { font-size: 13px; color: var(--navy-900); text-decoration: none; }
.pub-toc a:hover { color: var(--amber-500); }
.pub-meta { font-size: 12px; color: var(--grey-500); margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--grey-100); }

/* Cards grid */
.pub-grid { display: grid; gap: 20px; }
.pub-grid-2 { grid-template-columns: repeat(2, 1fr); }
.pub-grid-3 { grid-template-columns: repeat(3, 1fr); }
.pub-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.pub-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-elevated);
  border-color: var(--grey-200);
}
.pub-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--amber-50);
  color: var(--amber-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.pub-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 8px;
}
.pub-card p { font-size: 13.5px; color: var(--text-light); line-height: 1.6; margin-bottom: 14px; }
.pub-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-900);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.pub-card-link:hover { color: var(--amber-500); }
.pub-badge {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pub-badge-planned { background: var(--grey-100); color: var(--grey-700); }
.pub-badge-active { background: var(--green-soft); color: #15803D; }

/* Section headers */
.pub-section-head { margin-bottom: 32px; }
.pub-section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  border: none;
  padding: 0;
}
.pub-section-head p { font-size: 15px; color: var(--text-light); max-width: 600px; }

/* FAQ */
.pub-faq-search {
  max-width: 480px;
  margin: 0 auto 32px;
  position: relative;
}
.pub-faq-search input {
  width: 100%;
  padding: 14px 18px 14px 44px;
  border: 1px solid var(--grey-200);
  border-radius: var(--r-md);
  font-size: 14px;
  font-family: inherit;
  background: var(--white);
  transition: border-color 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.pub-faq-search input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.14);
  outline: none;
}
.pub-faq-search svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--grey-500);
  pointer-events: none;
  transition: color 0.25s;
}
.pub-faq-search:focus-within svg { color: var(--orange); }
.pub-faq-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  justify-content: center;
}
.pub-faq-cat {
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--grey-200);
  background: var(--white);
  color: var(--grey-700);
  transition: background 0.25s cubic-bezier(0.22, 1, 0.36, 1),
              color 0.25s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.25s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.25s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.pub-faq-cat:hover {
  border-color: rgba(249, 115, 22, 0.35);
  color: var(--navy-900);
  background: rgba(249, 115, 22, 0.06);
}
.pub-faq-cat.is-active {
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
  box-shadow: 0 4px 14px -6px rgba(4, 20, 15, 0.35);
}
.pub-faq-list {
  max-width: 780px;
  margin: 0 auto;
  padding: 8px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--grey-100);
  box-shadow: 0 4px 24px -10px rgba(4, 20, 15, 0.07);
}
.pub-faq-item {
  border-radius: 12px;
  transition: background 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.pub-faq-item + .pub-faq-item { border-top: 1px solid var(--grey-100); }
.pub-faq-item:not(.is-open):hover { background: rgba(4, 20, 15, 0.018); }
.pub-faq-item.is-open { background: rgba(249, 115, 22, 0.08); }
.pub-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 16px;
  background: none;
  border: none;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-900);
  cursor: pointer;
  border-radius: 12px;
  transition: color 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.pub-faq-q:hover { color: var(--orange); }
.pub-faq-q:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: -2px;
}
.pub-faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--grey-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-900);
  transition: transform 0.4s cubic-bezier(0.34, 1.45, 0.64, 1),
              background 0.25s,
              color 0.25s,
              box-shadow 0.25s;
}
.pub-faq-q:hover .pub-faq-icon {
  background: rgba(249, 115, 22, 0.08);
  color: var(--orange);
}
.pub-faq-item.is-open .pub-faq-icon {
  transform: rotate(180deg);
  background: linear-gradient(135deg, #FDBA74 0%, #FB923C 35%, #F97316 65%, #EA580C 100%);
  color: var(--white);
  box-shadow: 0 4px 14px -4px rgba(249, 115, 22, 0.45);
}
.pub-faq-a {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.pub-faq-item.is-open .pub-faq-a { grid-template-rows: 1fr; }
.pub-faq-a-inner {
  min-height: 0;
  overflow: hidden;
  padding: 0 16px 20px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.75;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.32s cubic-bezier(0.22, 1, 0.36, 1) 0.04s,
              transform 0.32s cubic-bezier(0.22, 1, 0.36, 1) 0.04s;
}
.pub-faq-item.is-open .pub-faq-a-inner {
  opacity: 1;
  transform: translateY(0);
}
.pub-faq-item:not(.is-open) .pub-faq-a-inner {
  transition-duration: 0.18s;
  transition-delay: 0s;
}
.pub-faq-a-inner a {
  color: var(--navy-900);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 3px;
}
.pub-faq-empty {
  text-align: center;
  padding: 48px 24px;
  color: var(--grey-500);
  font-size: 14px;
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px dashed var(--grey-200);
}
.pub-faq-cat-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--grey-500);
  margin-bottom: 4px;
  transition: color 0.25s;
}
.pub-faq-item.is-open .pub-faq-cat-label { color: var(--orange); }
.pub-faq-support {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--text-light);
}
.pub-faq-support a {
  color: var(--navy-900);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.pub-faq-support a:hover { color: var(--orange); }
@media (prefers-reduced-motion: reduce) {
  .pub-faq-item,
  .pub-faq-a,
  .pub-faq-a-inner,
  .pub-faq-icon,
  .pub-faq-cat,
  .pub-faq-search input { transition: none !important; }
  .pub-faq-a-inner { opacity: 1; transform: none; }
}

/* Support tickets */
.pub-support-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.pub-ticket {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--r-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pub-ticket h3 { font-size: 15px; font-weight: 700; color: var(--navy-900); }
.pub-ticket p { font-size: 13px; color: var(--text-light); flex: 1; }
.pub-ticket-sla {
  font-size: 11px;
  font-weight: 600;
  color: var(--grey-500);
  padding-top: 10px;
  border-top: 1px solid var(--grey-100);
}
.pub-ticket a.pub-btn { align-self: flex-start; margin-top: 4px; }

/* Enterprise — override for left-aligned hero on light bg */
.pub-enterprise-hero { text-align: left; padding: 60px 32px; }
.pub-enterprise-hero .pub-hero-inner { max-width: 1100px; text-align: left; }
.pub-enterprise-hero h1 { max-width: 640px; }
.pub-enterprise-hero p { margin: 0; max-width: 520px; }
.pub-enterprise-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.pub-feature-list { list-style: none; padding: 0; }
.pub-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-light);
  padding: 7px 0;
}
.pub-feature-list li::before {
  content: '';
  display: inline-flex;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--green-soft);
  border: 1.5px solid rgba(16,185,129,.3);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310B981' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Pricing */
.pub-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pub-price-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--r-xl);
  padding: 28px;
  position: relative;
}
.pub-price-card.popular { border-color: var(--amber-500); box-shadow: 0 0 0 1px rgba(249,115,22,0.2); }
.pub-price-card.enterprise { border-color: var(--navy-900); }
.pub-price-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  background: var(--amber-500);
  color: var(--navy-950);
}
.pub-price-name { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--grey-500); }
.pub-price-amount { font-family: var(--font-display); font-size: 36px; font-weight: 800; color: var(--navy-900); margin: 8px 0; }
.pub-price-amount span { font-size: 14px; font-weight: 500; color: var(--grey-500); }
.pub-price-tagline { font-size: 13px; color: var(--text-light); margin-bottom: 20px; min-height: 40px; }

/* Trust indicators */
.pub-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--r-lg);
  margin-bottom: 32px;
}
.pub-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--grey-700);
}
.pub-trust-item svg { color: var(--green); flex-shrink: 0; }

/* Public pages stay light enterprise — no OS dark invert (Phase 2.14) */

@media (max-width: 900px) {
  .pub-nav-links { display: none; }
  .pub-nav-cta .pub-btn { display: none; }
  .pub-nav-cta { gap: 0; margin-left: auto; }
  .pub-footer-grid { grid-template-columns: 1fr 1fr; }
  .pub-grid-2, .pub-grid-3, .pub-pricing-grid { grid-template-columns: 1fr; }
  .pub-container, .pub-container-narrow { padding: 32px 20px 48px; }
  .pub-nav-toggle { display: inline-flex; }
  .pub-nav .zg-logo__product { color: var(--orange); }
}

@media (max-width: 560px) {
  .pub-footer-grid { grid-template-columns: 1fr; }
  .pub-nav { padding: 0 16px; gap: 10px; }
  .pub-nav .zg-logo__company { font-size: 14px; }
  .pub-nav .zg-logo__product { font-size: 13px; }
}

@media (max-width: 400px) {
  .pub-nav .zg-logo__product { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.001ms !important; }
}
