/* ── ZYNIX AI — Clinical Clarity Light Theme ── */
/* Brand: ZynBlue #20449B, ZynOrange #F16529 */
/* Inspired by Navina + Tempus — premium healthcare SaaS */

@import url('https://fonts.googleapis.com/css2?family=Funnel+Sans:wght@300;400;500;600;700;800&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --z-bg: #FFFFFF;
  --z-bg-alt: #F5F7FA;
  --z-bg-warm: #FBF9F7;
  --z-bg-dark: #0F1A2E;
  --z-bg-card: #FFFFFF;
  --z-text: #1A1F2E;
  --z-text-secondary: #5A6478;
  --z-text-muted: #8E95A5;
  --z-accent: #F16529;
  --z-accent-hover: #d9561f;
  --z-accent-light: rgba(241,101,41,0.08);
  --z-blue: #20449B;
  --z-blue-light: #EBF0FA;
  --z-blue-hover: #1a3780;
  --z-border: #E2E6ED;
  --z-border-hover: #CBD1DC;
  --z-purple: #F0EDFF;
  --z-green: #E8F7F0;
  --z-sky: #EAF4FD;
  --z-peach: #FFF3ED;
  --z-yellow: #FFF9E6;
  --z-mint: #E8F7F0;
  --z-success: #0D9B6A;
  --z-radius: 12px;
  --z-radius-lg: 20px;
  --z-shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --z-shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.04);
  --z-shadow-lg: 0 12px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.05);
  --z-shadow-xl: 0 20px 60px rgba(0,0,0,0.12), 0 8px 20px rgba(0,0,0,0.06);
  --z-font: 'Funnel Sans', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── Global Light Background ── */
body {
  background: var(--z-bg);
  color: var(--z-text);
}

/* ── Inner Page Hero ── */
.zynix-inner-hero {
  padding: 160px 0 80px;
  background: var(--z-bg);
  color: var(--z-text);
  position: relative;
  overflow: hidden;
}
.zynix-inner-hero::before {
  content: '';
  position: absolute; top: -50%; right: -20%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(32,68,155,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.zynix-inner-hero::after {
  content: '';
  position: absolute; bottom: -30%; left: -10%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(241,101,41,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.zynix-inner-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative; z-index: 1;
}
.zynix-inner-hero-text .zynix-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--z-blue);
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 6px 16px;
  background: var(--z-blue-light);
  border-radius: 20px;
}
.zynix-inner-hero-text h1 {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: -1.5px;
  color: var(--z-text);
}
.zynix-inner-hero-text p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--z-text-secondary);
  margin: 0 0 32px;
  max-width: 540px;
}
.zynix-hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.zynix-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--z-accent);
  color: #fff !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s;
  border: 1px solid var(--z-accent);
}
.zynix-btn-primary:hover { background: var(--z-accent-hover); border-color: var(--z-accent-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(241,101,41,0.25); }
.zynix-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--z-text) !important;
  border: 1px solid var(--z-border);
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s;
}
.zynix-btn-secondary:hover { border-color: var(--z-blue); color: var(--z-blue) !important; background: var(--z-blue-light); }
.zynix-inner-hero-img img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--z-border);
  box-shadow: var(--z-shadow-xl);
}

/* Container */
.zynix-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Section Basics */
.zynix-inner-page section { padding: 100px 0; }
.zynix-inner-page section:nth-child(even):not(.zynix-cta-section):not(.zynix-footer):not(.zynix-inner-hero) {
  background: var(--z-bg-alt);
}
.zynix-section-sub {
  font-size: 1.0625rem;
  color: var(--z-text-secondary);
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
  line-height: 1.7;
}

/* Section Tags */
.zynix-inner-page .zynix-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--z-blue);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.zynix-inner-page section > .zynix-container > .zynix-tag { display: block; text-align: center; }
.zynix-inner-page section > .zynix-container > h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--z-text);
  text-align: center;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}

/* ── Problem Section ── */
.zynix-problem-section { background: var(--z-bg-alt); }
.zynix-problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.zynix-problem-card {
  background: var(--z-bg-card);
  padding: 36px 28px;
  border-radius: var(--z-radius);
  border: 1px solid var(--z-border);
  transition: all 0.25s;
}
.zynix-problem-card:hover { transform: translateY(-3px); box-shadow: var(--z-shadow-md); border-color: var(--z-blue); }
.zynix-problem-icon { font-size: 28px; margin-bottom: 14px; }
.zynix-problem-card h3 { font-size: 18px; font-weight: 600; color: var(--z-text); margin: 0 0 10px; }
.zynix-problem-card p { font-size: 14px; color: var(--z-text-secondary); line-height: 1.7; margin: 0; }

/* ── Feature Cards Grid ── */
.zynix-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.zynix-feature-card {
  background: var(--z-bg-card);
  padding: 32px 24px;
  border-radius: var(--z-radius);
  border: 1px solid var(--z-border);
  transition: all 0.25s;
}
.zynix-feature-card:hover { transform: translateY(-3px); box-shadow: var(--z-shadow-md); border-color: var(--z-blue); }
.zynix-feature-icon { font-size: 24px; margin-bottom: 12px; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: var(--z-blue-light); border-radius: 10px; }
.zynix-feature-card h3 { font-size: 17px; font-weight: 600; color: var(--z-text); margin: 0 0 8px; }
.zynix-feature-card p { font-size: 14px; color: var(--z-text-secondary); line-height: 1.7; margin: 0; }
.zynix-feature-metric { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--z-border); }
.zynix-feature-metric span { font-size: 24px; font-weight: 700; color: var(--z-blue); }
.zynix-feature-metric small { display: block; font-size: 13px; color: var(--z-text-muted); margin-top: 4px; }

/* ── Metrics Bar ── */
.zynix-metrics-bar {
  display: flex; justify-content: center; gap: 60px;
  padding: 60px 24px;
  background: var(--z-blue);
  border-radius: var(--z-radius-lg);
}
.zynix-metric { text-align: center; }
.zynix-metric-value { display: block; font-size: 36px; font-weight: 700; color: #fff; }
.zynix-metric-label { display: block; font-size: 14px; color: rgba(255,255,255,0.7); margin-top: 6px; }

/* ── Architecture Cards (Zynix OS) ── */
.zynix-arch-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 48px; }
.zynix-arch-card {
  background: var(--z-bg-card);
  padding: 32px 28px;
  border-radius: var(--z-radius);
  border: 1px solid var(--z-border);
  border-left: 4px solid var(--z-blue);
  transition: all 0.25s;
}
.zynix-arch-card:hover { box-shadow: var(--z-shadow-md); border-color: var(--z-blue); }
.zynix-arch-num { font-size: 13px; font-weight: 700; color: var(--z-blue); margin-bottom: 10px; letter-spacing: 1px; }
.zynix-arch-card h3 { font-size: 20px; font-weight: 600; color: var(--z-text); margin: 0 0 8px; }
.zynix-arch-card p { font-size: 14px; color: var(--z-text-secondary); line-height: 1.7; margin: 0; }

/* ── Flywheel (Zynix OS) ── */
.zynix-flywheel-section { background: var(--z-bg-alt); }
.zynix-flywheel-grid { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 48px; flex-wrap: wrap; }
.zynix-flywheel-step {
  background: var(--z-bg-card);
  padding: 24px 20px;
  border-radius: var(--z-radius);
  border: 1px solid var(--z-border);
  text-align: center;
  min-width: 150px;
  box-shadow: var(--z-shadow-sm);
}
.zynix-flywheel-step span {
  display: inline-flex; width: 36px; height: 36px; align-items: center; justify-content: center;
  background: var(--z-blue); color: #fff; border-radius: 50%; font-weight: 600; font-size: 15px; margin-bottom: 10px;
}
.zynix-flywheel-step p { font-size: 14px; color: var(--z-text); font-weight: 600; margin: 0; }
.zynix-flywheel-arrow { font-size: 20px; color: var(--z-text-muted); font-weight: 400; }

/* ── Data Layers (Data Platform) ── */
.zynix-data-layers { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 48px; }
.zynix-data-layer {
  background: var(--z-bg-card);
  padding: 32px 28px;
  border-radius: var(--z-radius);
  border: 1px solid var(--z-border);
  transition: all 0.25s;
}
.zynix-data-layer:hover { box-shadow: var(--z-shadow-md); border-color: var(--z-blue); }
.zynix-data-layer h3 { font-size: 18px; font-weight: 600; color: var(--z-text); margin: 0 0 10px; }
.zynix-data-layer p { font-size: 14px; color: var(--z-text-secondary); line-height: 1.7; margin: 0; }

/* ── Analytics Tracks ── */
.zynix-track {
  background: var(--z-bg-card);
  border-radius: var(--z-radius);
  border: 1px solid var(--z-border);
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.25s;
}
.zynix-track:hover { box-shadow: var(--z-shadow-md); }
.zynix-track-header {
  display: flex; align-items: center; gap: 16px;
  padding: 24px 28px;
  background: var(--z-blue);
  color: #fff;
}
.zynix-track-num {
  display: inline-flex; width: 36px; height: 36px; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.2); border-radius: 8px; font-weight: 700; font-size: 16px; flex-shrink: 0;
}
.zynix-track-header h3 { font-size: 18px; font-weight: 600; margin: 0; color: #fff; }
.zynix-track-body { padding: 24px 28px; }
.zynix-track-body ul { list-style: none; padding: 0; margin: 0; }
.zynix-track-body li {
  padding: 10px 0;
  border-bottom: 1px solid var(--z-border);
  font-size: 14px;
  color: var(--z-text-secondary);
  padding-left: 24px;
  position: relative;
}
.zynix-track-body li::before { content: '\2713'; position: absolute; left: 0; color: var(--z-success); font-weight: 600; }
.zynix-track-body li:last-child { border-bottom: 0; }

/* ── AI Agent Cards ── */
.zynix-agents-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.zynix-agent-card {
  background: var(--z-bg-card);
  padding: 28px 24px;
  border-radius: var(--z-radius);
  border: 1px solid var(--z-border);
  transition: all 0.25s;
}
.zynix-agent-card:hover { transform: translateY(-3px); box-shadow: var(--z-shadow-md); border-color: var(--z-blue); }
.zynix-agent-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.zynix-agent-icon { font-size: 24px; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: var(--z-peach); border-radius: 10px; }
.zynix-agent-header h3 { font-size: 18px; font-weight: 600; color: var(--z-text); margin: 0; }
.zynix-agent-card p { font-size: 14px; color: var(--z-text-secondary); line-height: 1.7; margin: 0 0 14px; }
.zynix-agent-metrics { display: flex; gap: 8px; flex-wrap: wrap; }
.zynix-agent-metrics span {
  font-size: 12px; font-weight: 600; color: var(--z-blue);
  padding: 5px 10px; background: var(--z-blue-light); border-radius: 6px; border: 1px solid rgba(32,68,155,0.12);
}

/* ── Orchestration Flow ── */
.zynix-orchestration-section { background: var(--z-bg-alt); }
.zynix-orch-flow { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 48px; flex-wrap: wrap; }
.zynix-orch-step {
  background: var(--z-bg-card); padding: 24px 20px; border-radius: var(--z-radius); border: 1px solid var(--z-border); text-align: center; min-width: 130px;
  box-shadow: var(--z-shadow-sm);
}
.zynix-orch-step span { display: block; font-size: 24px; margin-bottom: 8px; }
.zynix-orch-step p { font-size: 13px; color: var(--z-text); font-weight: 600; margin: 0; }
.zynix-orch-arrow { font-size: 20px; color: var(--z-text-muted); font-weight: 400; }

/* ── Care Plan Cards ── */
.zynix-careplan-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 48px; }
.zynix-careplan-card {
  background: var(--z-bg-card);
  padding: 24px 20px;
  border-radius: var(--z-radius);
  border: 1px solid var(--z-border);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.25s;
}
.zynix-careplan-card:hover { border-color: var(--z-border-hover); box-shadow: var(--z-shadow-sm); }
.zynix-cp-num {
  display: inline-flex; width: 36px; height: 36px; align-items: center; justify-content: center;
  background: var(--z-blue); color: #fff; border-radius: 8px; font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.zynix-careplan-card h4 { font-size: 16px; font-weight: 600; color: var(--z-text); margin: 0 0 6px; }
.zynix-careplan-card p { font-size: 13px; color: var(--z-text-secondary); line-height: 1.6; margin: 0; }

/* ── Workflow Timeline ── */
.zynix-workflow-timeline { margin-top: 48px; padding-left: 24px; border-left: 2px solid var(--z-border); }
.zynix-wf-step { display: flex; gap: 20px; margin-bottom: 28px; position: relative; }
.zynix-wf-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--z-blue); border: 3px solid var(--z-bg); box-shadow: 0 0 0 2px var(--z-blue);
  position: absolute; left: -32px; top: 4px; flex-shrink: 0;
}
.zynix-wf-content h4 { font-size: 16px; font-weight: 600; color: var(--z-text); margin: 0 0 6px; }
.zynix-wf-content p { font-size: 14px; color: var(--z-text-secondary); line-height: 1.7; margin: 0; }

/* ── Comparison Grid (ZynixLLM) ── */
.zynix-compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.zynix-compare-card {
  padding: 36px 28px;
  border-radius: var(--z-radius);
  background: var(--z-bg-card);
}
.zynix-compare-bad {
  background: #FEF2F2;
  border: 1px solid #FECACA;
}
.zynix-compare-good {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
}
.zynix-compare-card h3 { font-size: 20px; font-weight: 600; margin: 0 0 20px; }
.zynix-compare-bad h3 { color: #DC2626; }
.zynix-compare-good h3 { color: var(--z-success); }
.zynix-compare-card ul { list-style: none; padding: 0; margin: 0; }
.zynix-compare-card li { padding: 10px 0; padding-left: 24px; position: relative; font-size: 14px; border-bottom: 1px solid rgba(0,0,0,0.06); color: var(--z-text-secondary); }
.zynix-compare-bad li::before { content: '\2717'; position: absolute; left: 0; color: #DC2626; font-weight: 600; }
.zynix-compare-good li::before { content: '\2713'; position: absolute; left: 0; color: var(--z-success); font-weight: 600; }
.zynix-compare-card li:last-child { border-bottom: 0; }

/* ── Safety Cards (ZynixLLM) ── */
.zynix-safety-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.zynix-safety-card {
  background: var(--z-bg-card); padding: 28px 20px; border-radius: var(--z-radius); border: 1px solid var(--z-border);
  text-align: center; transition: all 0.25s;
}
.zynix-safety-card:hover { transform: translateY(-3px); box-shadow: var(--z-shadow-md); border-color: var(--z-blue); }
.zynix-safety-num {
  display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center;
  background: var(--z-blue-light); color: var(--z-blue); border-radius: 50%;
  font-weight: 700; font-size: 16px; margin-bottom: 14px;
}
.zynix-safety-card h4 { font-size: 15px; font-weight: 600; color: var(--z-text); margin: 0 0 8px; }
.zynix-safety-card p { font-size: 13px; color: var(--z-text-secondary); line-height: 1.6; margin: 0; }

/* ── CTA Section ── */
.zynix-cta-section {
  padding: 100px 24px;
  background: var(--z-blue);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.zynix-cta-section::before {
  content: '';
  position: absolute; top: -100px; right: -100px; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(241,101,41,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.zynix-cta-section::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.zynix-cta-section h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 600; margin: 0 0 16px; color: #fff; position: relative; }
.zynix-cta-section p { font-size: 17px; color: rgba(255,255,255,0.75); margin: 0 0 32px; position: relative; }
.zynix-cta-section .zynix-btn-primary {
  background: var(--z-accent);
  border-color: var(--z-accent);
}
.zynix-cta-section .zynix-btn-primary:hover {
  background: var(--z-accent-hover);
  border-color: var(--z-accent-hover);
}
.zynix-cta-section .zynix-btn-secondary {
  color: #fff !important;
  border-color: rgba(255,255,255,0.3);
}
.zynix-cta-section .zynix-btn-secondary:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.1);
}

/* ── Footer ── */
.zynix-footer {
  background: var(--z-bg-dark);
  color: rgba(255,255,255,0.6);
  padding: 100px 24px 40px;
  border-top: none;
}
.zynix-footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px;
}
.zynix-footer-brand p { font-size: 14px; line-height: 1.7; margin: 0; color: rgba(255,255,255,0.5); }
.zynix-footer-col h4 { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; color: rgba(255,255,255,0.35); margin: 0 0 16px; text-transform: uppercase; }
.zynix-footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.55); text-decoration: none; padding: 4px 0; transition: color 0.2s; }
.zynix-footer-col a:hover { color: var(--z-accent); }
.zynix-footer-bottom {
  max-width: 1200px; margin: 40px auto 0;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
}
.zynix-footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); margin: 0; }

/* ── Fade-in animations ── */
.fade-in-up { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* ── About Quote ── */
.zynix-about-quote { max-width: 700px; margin: 48px auto 0; text-align: center; }
.zynix-about-quote blockquote {
  font-size: 18px; font-style: italic; color: var(--z-text-secondary); line-height: 1.8;
  border-left: 3px solid var(--z-blue); padding-left: 24px; margin: 0; text-align: left;
}

/* ── Contact Page ── */
.zynix-contact-section { padding: 100px 0; }
.zynix-contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
.zynix-contact-info h3 { font-size: 22px; font-weight: 600; color: var(--z-text); margin: 0 0 24px; }
.zynix-contact-item { margin-bottom: 20px; }
.zynix-contact-item strong { font-size: 13px; color: var(--z-text-muted); text-transform: uppercase; letter-spacing: 1px; }
.zynix-contact-item p { font-size: 16px; color: var(--z-text); margin: 4px 0 0; }
.zynix-contact-divider { height: 1px; background: var(--z-border); margin: 32px 0; }
.zynix-expect-item { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.zynix-expect-item span {
  display: inline-flex; width: 28px; height: 28px; align-items: center; justify-content: center;
  background: var(--z-blue); color: #fff; border-radius: 50%; font-size: 12px; font-weight: 600; flex-shrink: 0;
}
.zynix-expect-item p { font-size: 15px; color: var(--z-text-secondary); margin: 0; }
.zynix-contact-form-wrap {
  background: var(--z-bg-card); padding: 40px; border-radius: var(--z-radius-lg); border: 1px solid var(--z-border);
  box-shadow: var(--z-shadow-md);
}
.zynix-contact-form-wrap h3 { font-size: 22px; font-weight: 600; color: var(--z-text); margin: 0 0 24px; }
.zynix-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.zynix-form-group { margin-bottom: 16px; }
.zynix-form-group label { display: block; font-size: 14px; font-weight: 500; color: var(--z-text); margin-bottom: 6px; }
.zynix-form-group input, .zynix-form-group select, .zynix-form-group textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--z-border); border-radius: 8px;
  font-size: 15px; font-family: var(--z-font); transition: border-color 0.2s;
  box-sizing: border-box; background: var(--z-bg); color: var(--z-text);
}
.zynix-form-group input::placeholder, .zynix-form-group textarea::placeholder {
  color: var(--z-text-muted);
}
.zynix-form-group input:focus, .zynix-form-group select:focus, .zynix-form-group textarea:focus {
  outline: none; border-color: var(--z-blue); box-shadow: 0 0 0 3px rgba(32,68,155,0.1);
}
.zynix-form-group select {
  color: var(--z-text);
  appearance: auto;
}
.zynix-form-group select option {
  background: var(--z-bg);
  color: var(--z-text);
}

/* ── FAQ Accordion ── */
.zynix-faq-section { padding: 100px 0; }
.zynix-faq-list { max-width: 800px; margin: 0 auto; }
.zynix-faq-item {
  border: 1px solid var(--z-border); border-radius: var(--z-radius); margin-bottom: 10px; overflow: hidden;
  transition: all 0.25s; background: var(--z-bg-card);
}
.zynix-faq-item:hover { border-color: var(--z-border-hover); box-shadow: var(--z-shadow-sm); }
.zynix-faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 24px; cursor: pointer; font-size: 15px; font-weight: 600; color: var(--z-text);
}
.zynix-faq-toggle { font-size: 18px; color: var(--z-text-muted); transition: transform 0.25s; }
.zynix-faq-item.open .zynix-faq-toggle { transform: rotate(45deg); color: var(--z-blue); }
.zynix-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.zynix-faq-item.open .zynix-faq-a { max-height: 300px; }
.zynix-faq-a p { padding: 0 24px 20px; font-size: 14px; color: var(--z-text-secondary); line-height: 1.7; margin: 0; }

/* ── Blog Cards ── */
.zynix-blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.zynix-blog-card {
  background: var(--z-bg-card); padding: 28px; border-radius: var(--z-radius); border: 1px solid var(--z-border);
  transition: all 0.25s; cursor: pointer;
}
.zynix-blog-card:hover { transform: translateY(-3px); box-shadow: var(--z-shadow-md); border-color: var(--z-blue); }
.zynix-blog-cat {
  display: inline-block; font-size: 11px; font-weight: 600; color: var(--z-blue);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px;
  padding: 3px 10px; background: var(--z-blue-light); border-radius: 4px;
}
.zynix-blog-card h3 { font-size: 17px; font-weight: 600; color: var(--z-text); margin: 0 0 10px; line-height: 1.4; }
.zynix-blog-date { font-size: 13px; color: var(--z-text-muted); }
.zynix-blog-featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--z-blue-light) 0%, #fff 100%);
  border-color: var(--z-blue);
  border-left: 4px solid var(--z-blue);
}
.zynix-blog-featured h3 { font-size: 22px; }
.zynix-blog-post-section { padding: 60px 0 80px; }
.zynix-blog-post-content p { margin: 0 0 20px; }

/* ── Case Study Cards ── */
.zynix-case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.zynix-case-card {
  background: var(--z-bg-card); padding: 28px; border-radius: var(--z-radius); border: 1px solid var(--z-border);
  transition: all 0.25s;
}
.zynix-case-card:hover { transform: translateY(-3px); box-shadow: var(--z-shadow-md); border-color: var(--z-blue); }
.zynix-case-seg {
  display: inline-block; font-size: 11px; font-weight: 600; color: var(--z-blue);
  text-transform: uppercase; letter-spacing: 1px; padding: 4px 10px;
  background: var(--z-blue-light); border-radius: 6px; margin-bottom: 12px;
}
.zynix-case-card h3 { font-size: 17px; font-weight: 600; color: var(--z-text); margin: 0 0 14px; }
.zynix-case-metric span { font-size: 28px; font-weight: 700; color: var(--z-blue); display: block; }
.zynix-case-metric small { font-size: 13px; color: var(--z-text-secondary); margin-top: 4px; display: block; }

/* ── Legal Pages ── */
.zynix-legal-section { padding: 100px 0; }
.zynix-legal-content { max-width: 800px; margin: 0 auto; }
.zynix-legal-content h2 { font-size: 22px; font-weight: 600; color: var(--z-text); margin: 40px 0 12px; text-align: left; }
.zynix-legal-content h2:first-child { margin-top: 0; }
.zynix-legal-content p { font-size: 15px; color: var(--z-text-secondary); line-height: 1.8; margin: 0 0 16px; }

/* ── Customer Chips (Solution Pages) ── */
.zynix-customers-section { text-align: center; }
.zynix-customer-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 32px; }
.zynix-customer-chip {
  padding: 10px 20px;
  background: var(--z-bg-card);
  border: 1px solid var(--z-border);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--z-text);
  transition: all 0.25s;
}
.zynix-customer-chip:hover { border-color: var(--z-blue); box-shadow: var(--z-shadow-sm); background: var(--z-blue-light); }

/* ── Mega Menu Navigation ── */
.zynix-mega-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 72px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--z-border);
  font-family: var(--z-font);
  transition: box-shadow 0.3s;
}
.zynix-mega-nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.zynix-nav-logo {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.zynix-nav-logo img { height: 170px; width: auto; margin: -44px 0; }
.zynix-nav-logo-text {
  font-size: 24px; font-weight: 700; color: #1A1F2E;
  letter-spacing: -0.5px; white-space: nowrap;
  display: none; /* Logo symbol only — no text */
}
.zynix-nav-logo-text .zynix-logo-dot { color: var(--z-accent); }

/* ── Announcement Banner ── */
.zynix-announcement-bar {
  background: #20449B;
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
}
/* Push nav down when banner is visible */
.zynix-mega-nav.has-banner { top: 40px; }
body.has-announcement-bar { padding-top: 40px; }
.zynix-announcement-bar a {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
  margin-left: 12px;
}
.zynix-announcement-bar a:hover { opacity: 0.85; }
.zynix-announcement-bar .zynix-announce-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
}
.zynix-announcement-bar .zynix-announce-close:hover { color: #fff; }
.zynix-nav-items { display: flex; align-items: center; gap: 4px; }
.zynix-nav-dropdown { position: relative; }
.zynix-nav-trigger {
  background: none; border: none; color: var(--z-text-secondary);
  font-size: 15px; font-weight: 500; padding: 12px 18px; cursor: pointer;
  font-family: inherit; display: flex; align-items: center; gap: 6px;
  transition: color 0.2s;
}
.zynix-nav-trigger:hover, .zynix-nav-dropdown:hover .zynix-nav-trigger { color: var(--z-text); }
.zynix-nav-trigger .chevron {
  font-size: 10px; transition: transform 0.2s; color: var(--z-text-muted);
}
.zynix-nav-dropdown:hover .zynix-nav-trigger .chevron { transform: rotate(180deg); }

/* ── Nav Icon Styles ── */
.zynix-nav-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border-radius: 10px;
  margin-right: 14px;
  flex-shrink: 0;
  color: #fff;
}
/* Color palette for dropdown icons — softer for light theme */
.zynix-mega-col:nth-child(1) .zynix-nav-icon { background: linear-gradient(135deg, #F16529, #e8956e); }
.zynix-mega-col:nth-child(2) .zynix-nav-icon { background: linear-gradient(135deg, #20449B, #5b7dd4); }
.zynix-mega-col:nth-child(3) .zynix-nav-icon { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
.zynix-dropdown-panel-inner .zynix-nav-icon { background: linear-gradient(135deg, #0ea5e9, #67c8ed); }

/* ── Nav Item Descriptions ── */
.zynix-mega-col a small {
  display: block;
  font-size: 13px;
  color: var(--z-text-muted);
  font-weight: 400;
  margin-top: 3px;
  line-height: 1.3;
}

/* ── Mega Panel (Products, Solutions - multi-column) ── */
.zynix-mega-panel, .zynix-dropdown-panel {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateX(-50%) translateY(6px);
  padding-top: 8px;
}
.zynix-nav-dropdown:hover .zynix-mega-panel,
.zynix-nav-dropdown:hover .zynix-dropdown-panel {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.zynix-mega-panel-inner {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--z-border);
  border-radius: var(--z-radius);
  padding: 28px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  display: flex; gap: 36px;
}
.zynix-dropdown-panel-inner {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--z-border);
  border-radius: var(--z-radius);
  padding: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  min-width: 240px;
}
.zynix-mega-col { min-width: 220px; }
.zynix-mega-col h5 {
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  color: var(--z-text-muted); text-transform: uppercase;
  margin: 0 0 12px; padding: 0 10px;
}
.zynix-mega-col h5:not(:first-child) { margin-top: 20px; }
.zynix-mega-col a, .zynix-dropdown-panel-inner a {
  display: flex; align-items: center; padding: 10px 12px; border-radius: 10px;
  color: var(--z-text-secondary); font-size: 14px; font-weight: 500;
  text-decoration: none; transition: all 0.15s;
}
.zynix-mega-col a:hover, .zynix-dropdown-panel-inner a:hover {
  background: var(--z-bg-alt); color: var(--z-text);
}
.zynix-mega-col a div, .zynix-dropdown-panel-inner a div {
  display: flex; flex-direction: column;
}
.zynix-mega-col a strong, .zynix-dropdown-panel-inner a strong {
  font-weight: 600; font-size: 14px; color: var(--z-text);
}
/* Active page in nav */
.zynix-mega-col a.active, .zynix-dropdown-panel-inner a.active {
  color: var(--z-blue); background: var(--z-blue-light);
}

.zynix-nav-actions { display: flex; align-items: center; gap: 16px; }
.zynix-nav-contact {
  color: var(--z-text-secondary); font-size: 15px; font-weight: 500;
  text-decoration: none; transition: color 0.2s;
}
.zynix-nav-contact:hover { color: var(--z-text); }
.zynix-nav-cta {
  display: inline-block; padding: 12px 28px;
  background: var(--z-accent); color: #fff !important;
  border-radius: 8px; font-size: 15px; font-weight: 600;
  text-decoration: none; transition: all 0.2s;
}
.zynix-nav-cta:hover { background: var(--z-accent-hover); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(241,101,41,0.25); }

/* ── Mobile hamburger ── */
.zynix-nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 32px; position: relative;
  flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.zynix-nav-hamburger span {
  display: block; width: 20px; height: 2px; background: var(--z-text);
  transition: all 0.3s;
}
.zynix-nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(3px, 3px); }
.zynix-nav-hamburger.open span:nth-child(2) { opacity: 0; }
.zynix-nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(3px, -3px); }

/* ── Mobile menu overlay ── */
.zynix-mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98); z-index: 9998;
  overflow-y: auto; padding: 24px;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
.zynix-mobile-menu.open { display: block; }
.zynix-mobile-section { margin-bottom: 20px; }
.zynix-mobile-section-trigger {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; background: none; border: none; padding: 12px 0;
  color: var(--z-text); font-size: 16px; font-weight: 600; cursor: pointer;
  border-bottom: 1px solid var(--z-border);
  font-family: inherit;
}
.zynix-mobile-section-links {
  display: none; padding: 8px 0 8px 16px;
}
.zynix-mobile-section-links.open { display: block; }
.zynix-mobile-section-links a {
  display: block; padding: 10px 0; color: var(--z-text-secondary);
  font-size: 14px; text-decoration: none; border-bottom: 1px solid var(--z-border);
}
.zynix-mobile-section-links a:hover { color: var(--z-blue); }
.zynix-mobile-cta {
  display: block; text-align: center; padding: 14px 32px;
  background: var(--z-accent); color: #fff !important; border-radius: 8px;
  font-size: 16px; font-weight: 600; text-decoration: none; margin-top: 24px;
}

/* ── Use Case Page ── */
.zynix-workflow-steps { margin-top: 48px; }
.zynix-wf-step-card {
  background: var(--z-bg-card); padding: 28px; border-radius: var(--z-radius);
  border: 1px solid var(--z-border); margin-bottom: 12px;
  display: flex; gap: 20px; align-items: flex-start;
  transition: all 0.25s;
}
.zynix-wf-step-card:hover { border-color: var(--z-border-hover); box-shadow: var(--z-shadow-sm); }
.zynix-wf-step-num {
  display: inline-flex; width: 40px; height: 40px; min-width: 40px;
  align-items: center; justify-content: center;
  background: var(--z-blue);
  color: #fff; border-radius: 10px; font-weight: 700; font-size: 16px;
}
.zynix-wf-step-card h4 { font-size: 16px; font-weight: 600; color: var(--z-text); margin: 0 0 6px; }
.zynix-wf-step-card p { font-size: 14px; color: var(--z-text-secondary); line-height: 1.7; margin: 0; }
.zynix-wf-step-tag {
  display: inline-block; font-size: 11px; font-weight: 600; color: #fff;
  background: var(--z-blue); padding: 3px 8px; border-radius: 4px; margin-top: 8px;
}

/* ── KPI chips ── */
.zynix-kpi-grid { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; justify-content: center; }
.zynix-kpi-chip {
  background: var(--z-bg-card); border: 1px solid var(--z-border); border-radius: var(--z-radius);
  padding: 18px 24px; text-align: center; min-width: 150px;
  transition: all 0.25s;
}
.zynix-kpi-chip:hover { border-color: var(--z-blue); box-shadow: var(--z-shadow-sm); }
.zynix-kpi-chip strong { display: block; font-size: 14px; font-weight: 700; color: var(--z-blue); }
.zynix-kpi-chip span { font-size: 13px; color: var(--z-text-secondary); }

/* ── Story walkthrough ── */
.zynix-story-block {
  background: var(--z-bg-alt);
  border: 1px solid var(--z-border); border-radius: var(--z-radius-lg);
  padding: 36px; margin-top: 48px;
}
.zynix-story-block h3 { font-size: 18px; font-weight: 600; color: var(--z-text); margin: 0 0 14px; }
.zynix-story-block p { font-size: 15px; color: var(--z-text-secondary); line-height: 1.8; margin: 0; }

/* ── Agent Hub Link Cards ── */
.zynix-agent-link-card {
  background: var(--z-bg-card); padding: 24px; border-radius: var(--z-radius);
  border: 1px solid var(--z-border); transition: all 0.25s;
  text-decoration: none; display: block; color: inherit;
}
.zynix-agent-link-card:hover {
  border-color: var(--z-blue); box-shadow: var(--z-shadow-md);
  transform: translateY(-2px);
}
.zynix-agent-link-card h3 { font-size: 16px; font-weight: 600; color: var(--z-text); margin: 0 0 6px; }
.zynix-agent-link-card p { font-size: 13px; color: var(--z-text-secondary); line-height: 1.6; margin: 0; }
.zynix-agent-link-card .zynix-card-arrow {
  display: inline-block; margin-top: 12px; font-size: 13px; font-weight: 600; color: var(--z-blue);
}

/* ── Comparison Table ── */
.zynix-compare-table { width: 100%; border-collapse: collapse; margin-top: 32px; }
.zynix-compare-table th {
  padding: 14px 20px; font-size: 12px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; border-bottom: 2px solid var(--z-border);
}
.zynix-compare-table th:first-child { text-align: left; color: var(--z-text-muted); }
.zynix-compare-table th:nth-child(2) { text-align: center; color: var(--z-blue); background: var(--z-blue-light); }
.zynix-compare-table th:nth-child(3) { text-align: center; color: var(--z-text-muted); }
.zynix-compare-table td {
  padding: 14px 20px; font-size: 14px; border-bottom: 1px solid var(--z-border); color: var(--z-text-secondary);
}
.zynix-compare-table td:first-child { font-weight: 600; color: var(--z-text); }
.zynix-compare-table td:nth-child(2) { text-align: center; background: var(--z-blue-light); color: var(--z-success); font-weight: 600; }
.zynix-compare-table td:nth-child(3) { text-align: center; color: var(--z-text-secondary); }

/* ── Careers / Placeholder ── */
.zynix-placeholder-section { text-align: center; padding: 120px 24px; }
.zynix-placeholder-section h2 { font-size: 32px; font-weight: 600; color: var(--z-text); margin: 0 0 16px; }
.zynix-placeholder-section p { font-size: 16px; color: var(--z-text-secondary); max-width: 500px; margin: 0 auto 32px; }

/* ── Homepage Hero ── */
.zynix-homepage-hero {
  padding: 140px 0 80px;
  background: var(--z-bg);
  color: var(--z-text);
  position: relative;
  overflow: hidden;
}
.zynix-homepage-hero::before {
  content: '';
  position: absolute; top: -30%; right: -10%; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(32,68,155,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.zynix-homepage-hero::after {
  content: '';
  position: absolute; bottom: -20%; left: -5%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(241,101,41,0.03) 0%, transparent 60%);
  pointer-events: none;
}
.zynix-homepage-hero .zynix-inner-hero-grid { position: relative; z-index: 1; }
.zynix-homepage-hero h1 { font-size: clamp(2.5rem, 5vw, 3.75rem); font-weight: 700; line-height: 1.08; margin: 0 0 20px; letter-spacing: -1.5px; color: var(--z-text); }
.zynix-homepage-hero p { font-size: 1.0625rem; line-height: 1.7; color: var(--z-text-secondary); max-width: 540px; }

/* ── Customer Trust Strip ── */
.zynix-trust-strip {
  background: var(--z-bg-alt);
  border-top: 1px solid var(--z-border);
  border-bottom: 1px solid var(--z-border);
  padding: 28px 0;
  overflow: hidden;
}
.zynix-trust-label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--z-text-muted);
  margin: 0 0 16px;
  text-transform: uppercase;
}
.zynix-trust-marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.zynix-trust-track {
  display: flex;
  gap: 48px;
  animation: marqueeScroll 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.zynix-trust-track span {
  font-size: 14px;
  font-weight: 600;
  color: var(--z-text-muted);
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Crisis Section ── */
.zynix-crisis-section {
  padding: 100px 0;
  background: var(--z-bg);
  text-align: center;
}
.zynix-crisis-section .zynix-metrics-bar {
  margin-top: 48px;
}

/* ── Comparison Section ── */
.zynix-comparison-section {
  padding: 100px 0;
  background: var(--z-bg-alt);
  text-align: center;
}
.zynix-comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
  text-align: left;
}
.zynix-comparison-col {
  background: var(--z-bg-card);
  border-radius: var(--z-radius);
  padding: 32px;
  border: 1px solid var(--z-border);
}
.zynix-comparison-col h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 20px;
}
.zynix-comparison-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.zynix-comparison-col ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--z-border);
  font-size: 14px;
  color: var(--z-text-secondary);
  line-height: 1.5;
}
.zynix-comparison-col ul li:last-child { border-bottom: none; }
.zynix-comparison-before {
  background: #FEF2F2;
  border-color: #FECACA;
}
.zynix-comparison-before h3 { color: #DC2626; }
.zynix-comparison-after {
  background: #F0FDF4;
  border-color: #BBF7D0;
}
.zynix-comparison-after h3 { color: var(--z-success); }

/* ── Results / Flywheel Sections ── */
.zynix-results-section {
  padding: 100px 0;
  background: var(--z-blue);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.zynix-results-section::before {
  content: '';
  position: absolute; top: -50%; right: -20%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(241,101,41,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.zynix-results-section .zynix-tag { color: rgba(255,255,255,0.8); }
.zynix-results-section h2 { color: #fff; }
.zynix-results-section .zynix-metric-value { color: #fff; }
.zynix-results-section .zynix-metric-label { color: rgba(255,255,255,0.65); }

.zynix-flywheel-section {
  padding: 100px 0;
  background: var(--z-bg);
  text-align: center;
}

.zynix-solutions-section {
  padding: 100px 0;
  background: var(--z-bg-alt);
  text-align: center;
}

/* ── Card Links ── */
.zynix-card-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--z-blue);
  text-decoration: none;
}
.zynix-card-link:hover { text-decoration: underline; color: var(--z-accent); }

/* ── Related Content Sections ── */
.zynix-related-section {
  padding: 60px 0;
  border-top: 1px solid var(--z-border);
  background: var(--z-bg-alt);
}
.zynix-related-section .zynix-tag { margin-bottom: 8px; }
.zynix-related-section h2 { font-size: 26px; font-weight: 600; color: var(--z-text); margin: 0 0 28px; }
.zynix-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.zynix-related-card {
  background: var(--z-bg-card);
  border: 1px solid var(--z-border);
  border-radius: var(--z-radius);
  padding: 20px;
  text-decoration: none;
  color: var(--z-text);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}
.zynix-related-card:hover {
  border-color: var(--z-blue);
  transform: translateY(-2px);
  box-shadow: var(--z-shadow-sm);
}
.zynix-related-card .zynix-rc-icon {
  font-size: 20px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--z-peach);
  border-radius: 10px;
}
.zynix-related-card .zynix-rc-text h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 3px;
  color: var(--z-text);
}
.zynix-related-card .zynix-rc-text p {
  font-size: 12px;
  color: var(--z-text-secondary);
  margin: 0;
  line-height: 1.4;
}
.zynix-related-card .zynix-rc-arrow {
  margin-left: auto;
  color: var(--z-text-muted);
  font-size: 16px;
  flex-shrink: 0;
}
.zynix-related-card:hover .zynix-rc-arrow { color: var(--z-blue); }

/* ── Breadcrumb ── */
.zynix-breadcrumb {
  padding: 12px 0;
  font-size: 13px;
  color: var(--z-text-muted);
}
.zynix-breadcrumb a {
  color: var(--z-text-secondary);
  text-decoration: none;
}
.zynix-breadcrumb a:hover { color: var(--z-blue); text-decoration: underline; }
.zynix-breadcrumb .zynix-bc-sep { margin: 0 8px; color: var(--z-text-muted); }
.zynix-breadcrumb .zynix-bc-current { color: var(--z-text); font-weight: 500; }

/* ── Screenshot Gallery ── */
.zynix-screenshot-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.zynix-screenshot-card {
  border-radius: var(--z-radius-lg);
  overflow: hidden;
  border: 1px solid var(--z-border);
  transition: all 0.3s;
  background: var(--z-bg-card);
}
.zynix-screenshot-card:hover {
  border-color: var(--z-blue);
  transform: translateY(-4px);
  box-shadow: var(--z-shadow-lg);
}
.zynix-screenshot-card img {
  width: 100%;
  display: block;
}
.zynix-screenshot-card .caption {
  padding: 16px;
  font-size: 14px;
  color: var(--z-text-secondary);
}

/* ── Gradient Accent Borders ── */
.zynix-gradient-border {
  position: relative;
  border: none;
}
.zynix-gradient-border::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--z-radius);
  padding: 1px;
  background: linear-gradient(135deg, rgba(241,101,41,0.2), rgba(32,68,155,0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ── Glow Effects (subtler for light theme) ── */
.zynix-glow-accent {
  box-shadow: 0 0 40px rgba(241,101,41,0.05), 0 0 80px rgba(241,101,41,0.02);
}
.zynix-glow-blue {
  box-shadow: 0 0 40px rgba(32,68,155,0.06), 0 0 80px rgba(32,68,155,0.03);
}

/* ── Scroll animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes countUp {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .zynix-inner-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .zynix-inner-hero-text h1 { font-size: 36px; }
  .zynix-problem-grid { grid-template-columns: 1fr; }
  .zynix-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .zynix-agents-grid { grid-template-columns: repeat(2, 1fr); }
  .zynix-arch-grid { grid-template-columns: 1fr; }
  .zynix-safety-grid { grid-template-columns: repeat(2, 1fr); }
  .zynix-metrics-bar { gap: 32px; flex-wrap: wrap; }
  .zynix-compare-grid { grid-template-columns: 1fr; }
  .zynix-footer-inner { grid-template-columns: 1fr 1fr; }
  .zynix-contact-grid { grid-template-columns: 1fr; }
  .zynix-blog-grid { grid-template-columns: 1fr; }
  .zynix-case-grid { grid-template-columns: repeat(2, 1fr); }
  .zynix-mega-nav { padding: 0 20px; }
  .zynix-nav-items, .zynix-nav-actions .zynix-nav-contact { display: none; }
  .zynix-nav-hamburger { display: flex; }
  .zynix-wf-step-card { flex-direction: column; }
  .zynix-homepage-hero h1 { font-size: 36px; }
  .zynix-comparison-grid { grid-template-columns: 1fr; }
  .zynix-related-grid { grid-template-columns: repeat(2, 1fr); }
  .zynix-screenshot-gallery { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
}
@media (max-width: 767px) {
  .zynix-inner-hero { padding: 100px 0 60px; }
  .zynix-inner-hero-text h1 { font-size: 30px; }
  .zynix-inner-page section { padding: 70px 0; }
  .zynix-inner-page section > .zynix-container > h2 { font-size: 26px; }
  .zynix-feature-grid { grid-template-columns: 1fr; }
  .zynix-agents-grid { grid-template-columns: 1fr; }
  .zynix-careplan-grid { grid-template-columns: 1fr; }
  .zynix-safety-grid { grid-template-columns: 1fr; }
  .zynix-hero-btns { flex-direction: column; }
  .zynix-flywheel-arrow, .zynix-orch-arrow { display: none; }
  .zynix-flywheel-grid, .zynix-orch-flow { flex-direction: column; }
  .zynix-metrics-bar { flex-direction: column; gap: 24px; padding: 40px 24px; }
  .zynix-footer-inner { grid-template-columns: 1fr; }
  .zynix-cta-section h2 { font-size: 26px; }
  .zynix-contact-grid { grid-template-columns: 1fr; }
  .zynix-form-row { grid-template-columns: 1fr; }
  .zynix-case-grid { grid-template-columns: 1fr; }
  .zynix-blog-grid { grid-template-columns: 1fr; }
  .zynix-kpi-grid { flex-direction: column; align-items: center; }
  .zynix-homepage-hero { padding: 100px 0 60px; }
  .zynix-homepage-hero h1 { font-size: 30px; }
  .zynix-trust-track { gap: 32px; }
  .zynix-comparison-col { padding: 24px; }
  .zynix-compare-table { font-size: 12px; }
  .zynix-compare-table th, .zynix-compare-table td { padding: 10px 12px; }
  .zynix-related-grid { grid-template-columns: 1fr; }
  .zynix-screenshot-gallery { grid-template-columns: 1fr; gap: 16px; }
}

/* ── Hide Webflow Template Default Content ── */
body > .w-nav,
body > .navbar,
body > [data-collapse="medium"],
body > header:not(.zynix-mega-nav),
body > footer:not(.zynix-footer),
body > .footer,
body > .w-footer,
body > section:not(.zynix-inner-page *):not(.zynix-homepage-hero):not(.zynix-inner-hero):not(.zynix-cta-section):not(.zynix-footer):not([class*="zynix"]),
.w-container:not([class*="zynix"]),
.hero-section:not([class*="zynix"]),
[data-wf-page] > div:not(.zynix-inner-page):not(.zynix-mega-nav):not(.zynix-mobile-menu) {
  display: none !important;
}

/* ── Image Quality Improvements ── */
.zynix-inner-page img,
.zynix-homepage-hero img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: bicubic;
}
.zynix-inner-hero-img img {
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: 20px;
  border: 1px solid var(--z-border);
  box-shadow: var(--z-shadow-xl);
  object-fit: cover;
}
.zynix-feature-icon img,
.zynix-agent-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ── AI Chat Widget ── */
@keyframes zynixPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(32,68,155,0.3); }
  50% { box-shadow: 0 4px 30px rgba(241,101,41,0.4), 0 0 0 8px rgba(32,68,155,0.08); }
}
#zynix-chat-widget {
  font-family: 'Funnel Sans', Helvetica, Arial, sans-serif;
}
#zynix-chat-panel {
  animation: zynixSlideUp 0.3s ease;
}
@keyframes zynixSlideUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 480px) {
  #zynix-chat-panel {
    width: calc(100vw - 32px) !important;
    right: -8px !important;
    bottom: 68px !important;
    max-height: 70vh !important;
  }
}
