/* ============================================================
   ZOLOGIC — SOLUTIONS PAGE
   Dark/Futuristic · Infrastructure Layer Aesthetic
   v2.0 · Split from template · No Customizer overrides needed
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&family=Lato:wght@300;400;700;900&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --cyan:        #00e5ff;
  --cyan-dim:    rgba(0, 229, 255, 0.15);
  --cyan-glow:   rgba(0, 229, 255, 0.35);
  --navy:        #060d1f;
  --navy-2:      #0b1629;
  --navy-3:      #0f1e35;
  --navy-card:   #0d1a2e;
  --border:      rgba(0, 229, 255, 0.12);
  --border-soft: rgba(255, 255, 255, 0.06);
  --text:        #e2eaf5;
  --text-muted:  #6b8aab;
  --text-dim:    #3d5a78;
  --white:       #ffffff;
  --red:           #dc2626;
  --red-light:     #fca5a5;
  --red-dim:       rgba(220, 38, 38, 0.12);
  --red-glow:      rgba(220, 38, 38, 0.35);
  --font-display: 'Lato', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'Space Mono', monospace;
}

/* ============================================================
   ASTRA FULL-WIDTH OVERRIDES
   ============================================================ */
body.page-template-zologic-landing,
body.page-template-zologic-landing * {
  box-sizing: border-box;
}

body.page-template-zologic-landing {
  background: var(--navy);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* Prevent horizontal overflow on mobile */
body.page-template-zologic-landing #page,
body.page-template-zologic-landing .site-main,
body.page-template-zologic-landing .zl-page {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* Kill Astra's container constraints */
body.page-template-zologic-landing #primary,
body.page-template-zologic-landing .ast-container,
body.page-template-zologic-landing .entry-content,
body.page-template-zologic-landing #content > .ast-container {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}

body.page-template-zologic-landing .entry-content > * {
  margin: 0;
}

/* ============================================================
   GRID TEXTURE UTILITY
   ============================================================ */
.zl-grid-bg {
  position: relative;
}

.zl-grid-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,229,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.zl-grid-bg > * {
  position: relative;
  z-index: 1;
}

/* ============================================================
   HERO
   ============================================================ */
.zl-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}

.zl-hero-img {
  position: absolute;
  inset: 0;
  background: var(--navy) url('https://zologic.nl/wp-content/uploads/2026/01/zologic-hero-1.png') center / cover no-repeat;
  opacity: 0.18;
}

.zl-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6,13,31,0.3) 0%,
    rgba(6,13,31,0.6) 60%,
    var(--navy) 100%
  );
}

.zl-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 40px;
  max-width: 860px;
  margin: 0 auto;
}

.zl-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--cyan);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--cyan-dim);
}

.zl-hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: zl-pulse 2s ease-in-out infinite;
}

@keyframes zl-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.zl-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}

.zl-hero-title span {
  color: var(--cyan);
  position: relative;
}

.zl-hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 44px;
  font-weight: 300;
}

.zl-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--red);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
  box-shadow: 0 0 30px var(--red-glow);
  animation: zl-btn-pulse 3s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.zl-hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  pointer-events: none;
}

.zl-hero-cta > *,
.zl-hero-cta svg {
  position: relative;
  z-index: 1;
}

.zl-hero-cta:hover::before {
  transform: translateX(100%);
}

.zl-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px var(--red-glow), 0 10px 30px rgba(220,38,38,0.3);
  color: #ffffff;
  text-decoration: none;
  animation: none;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.zl-trust {
  background: var(--navy-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.zl-trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.zl-trust-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 28px 40px;
  border-right: 1px solid var(--border-soft);
  transition: background 0.2s;
}

.zl-trust-badge:last-child {
  border-right: none;
}

.zl-trust-badge:hover {
  background: rgba(0,229,255,0.03);
}

.zl-trust-badge a {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.zl-trust-badge img {
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 0.2s;
  height: 28px !important;
  width: auto !important;
}

.zl-trust-badge:hover img {
  opacity: 1;
}

.zl-badge-label {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.zl-badge-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}

.zl-badge-sub {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  white-space: nowrap;
}

/* ============================================================
   SECTION WRAPPER
   ============================================================ */
.zl-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
}

.zl-section-full {
  padding: 100px 40px;
}

.zl-section-full .zl-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.zl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--cyan);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.zl-eyebrow::before {
  content: '//';
  opacity: 0.5;
}

.zl-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.zl-title span {
  color: var(--cyan);
}

.zl-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
  font-weight: 300;
}

.zl-title-block {
  margin-bottom: 64px;
}

.zl-title-block.center {
  text-align: center;
}

.zl-title-block.center .zl-subtitle {
  margin: 0 auto;
}

/* ============================================================
   PRODUCT HERO — UCPReady
   ============================================================ */
.zl-product-section {
  background: var(--navy-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.zl-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.zl-product-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--cyan);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--cyan-dim);
}

.zl-product-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.zl-product-title span {
  color: var(--cyan);
}

.zl-product-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 36px;
}

.zl-product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.zl-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--cyan);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--cyan-dim);
}

.zl-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  background: var(--red);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 0 24px var(--red-glow);
  animation: zl-btn-pulse 3s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.zl-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  pointer-events: none;
}

/* All direct children sit above the shimmer */
.zl-btn-primary > *,
.zl-btn-primary svg {
  position: relative;
  z-index: 1;
}

.zl-btn-primary:hover::before {
  transform: translateX(100%);
}

.zl-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 48px var(--red-glow), 0 8px 24px rgba(220,38,38,0.3);
  color: #ffffff;
  text-decoration: none;
  animation: none;
}

@keyframes zl-btn-pulse {
  0%, 100% { box-shadow: 0 0 24px var(--red-glow); }
  50%       { box-shadow: 0 0 44px var(--red-glow), 0 0 60px rgba(220,38,38,0.2); }
}

.zl-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  background: transparent;
  color: var(--red-light);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid var(--red);
  border-radius: 6px;
  text-decoration: none;
  transition: color 0.25s, box-shadow 0.25s, background 0.3s ease;
}

.zl-btn-ghost:hover {
  background: var(--red);
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 0 24px var(--red-glow);
}

.zl-btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Product panel (right side) */
.zl-product-panel {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.zl-panel-header {
  background: var(--navy-3);
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.zl-panel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-soft);
}

.zl-panel-dot:first-child { background: #ff5f57; }
.zl-panel-dot:nth-child(2) { background: #ffbd2e; }
.zl-panel-dot:nth-child(3) { background: var(--cyan); }

.zl-panel-title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-left: 8px;
  letter-spacing: 1px;
}

.zl-panel-body {
  padding: 28px;
}

.zl-code-line {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  line-height: 2;
  color: var(--text-muted);
}

.zl-code-line .key   { color: #79c0ff; }
.zl-code-line .val   { color: #a5d6a7; }
.zl-code-line .cyan  { color: var(--cyan); }
.zl-code-line .dim   { color: var(--text-dim); }
.zl-code-line .ok    { color: #a5d6a7; }
.zl-code-line .warn  { color: #ffbd2e; }

.zl-panel-divider {
  height: 1px;
  background: var(--border-soft);
  margin: 16px 0;
}

.zl-panel-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-soft);
}

.zl-panel-stat:last-child {
  border-bottom: none;
}

.zl-stat-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.zl-stat-value {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--cyan);
  font-weight: 700;
}

.zl-stat-value.ok   { color: #a5d6a7; }
.zl-stat-value.warn { color: #ffbd2e; }

/* ============================================================
   SECOND SERVICE — Infrastructure
   ============================================================ */
.zl-infra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.zl-infra-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.zl-metric-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s;
}

.zl-metric-card:hover {
  border-color: var(--cyan);
  transform: translateY(-4px);
}

.zl-metric-card.span-2 {
  grid-column: span 2;
}

.zl-metric-num {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 8px;
}

.zl-metric-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   HOW IT WORKS — TIMELINE
   ============================================================ */
.zl-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.zl-timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
}

.zl-step {
  display: flex;
  gap: 32px;
  padding: 32px 0 32px 0;
  border-bottom: 1px solid var(--border-soft);
}

.zl-step:last-child {
  border-bottom: none;
}

.zl-step-num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--navy-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--cyan);
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.zl-step-body h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 8px;
}

.zl-step-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
  font-weight: 300;
}

/* ============================================================
   PORTFOLIO GRID
   ============================================================ */
.zl-portfolio-bg {
  background: var(--navy-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.zl-port-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  overflow: hidden;
}

.zl-port-card {
  background: var(--navy-card);
  padding: 36px 32px;
  transition: background 0.25s;
  text-decoration: none;
}

.zl-port-card:hover {
  background: var(--navy-3);
  text-decoration: none;
}

.zl-port-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(0,229,255,0.06) 0%, var(--navy-card) 60%);
  border-top: 2px solid var(--cyan);
}

.zl-port-category {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.zl-port-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 12px;
}

.zl-port-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 20px;
  font-weight: 300;
}

.zl-port-link {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-dim);
  transition: color 0.2s;
}

.zl-port-card:hover .zl-port-link {
  color: var(--cyan);
}

/* ============================================================
   EXPERTISE
   ============================================================ */
.zl-expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.zl-expertise-card {
  background: var(--navy-card);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 36px 28px;
  transition: border-color 0.25s, transform 0.25s;
}

.zl-expertise-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}

.zl-expertise-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.2rem;
  background: var(--cyan-dim);
}

.zl-expertise-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 10px;
}

.zl-expertise-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
  font-weight: 300;
}

/* ============================================================
   RECOGNITION
   ============================================================ */
.zl-recognition-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
}

.zl-recognition-item {
  background: var(--navy-card);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-decoration: none;
  transition: background 0.2s;
}

.zl-recognition-item:hover {
  background: var(--navy-3);
  text-decoration: none;
}

.zl-recognition-source {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 2px;
  flex-shrink: 0;
  min-width: 100px;
}

.zl-recognition-title {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  flex: 1;
}

.zl-recognition-arrow {
  color: var(--text-dim);
  transition: color 0.2s, transform 0.2s;
  font-size: 1.1rem;
}

.zl-recognition-item:hover .zl-recognition-arrow {
  color: var(--cyan);
  transform: translateX(4px);
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.zl-newsletter-bg {
  background: linear-gradient(to bottom, var(--navy-2), var(--navy));
  border-top: 1px solid var(--border);
}

/* ============================================================
   QUOTE CALLOUT
   ============================================================ */
.zl-quote-section {
  background: var(--navy);
  padding: 0 40px;
}

.zl-quote-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 72px 64px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0,229,255,0.04) 0%, var(--navy-card) 60%);
  position: relative;
  overflow: hidden;
}

/* Glow behind quote mark */
.zl-quote-inner::before {
  content: '';
  position: absolute;
  top: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0,229,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Top cyan accent line */
.zl-quote-inner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.zl-quote-mark {
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 0.6;
  color: var(--cyan);
  opacity: 0.4;
  margin-bottom: 24px;
  display: block;
}

.zl-quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin: 0 0 36px;
  letter-spacing: -0.01em;
  border: none;
  padding: 0;
}

.zl-quote-attribution {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.zl-quote-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.zl-quote-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.zl-quote-role {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.zl-quote-source-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--red-light);
  text-decoration: none;
  border: 1px solid var(--red);
  padding: 10px 18px;
  border-radius: 6px;
  background: var(--red-dim);
  letter-spacing: 0.5px;
  transition: all 0.2s;
  white-space: nowrap;
}

.zl-quote-source-link:hover {
  background: var(--red);
  border-color: var(--red);
  text-decoration: none;
  color: #ffffff;
  transform: translateX(3px);
}

/* Featured recognition item */
.zl-recognition-featured {
  border-left: 2px solid var(--cyan) !important;
  background: linear-gradient(90deg, rgba(0,229,255,0.04) 0%, var(--navy-card) 40%) !important;
}

.zl-recognition-featured .zl-recognition-source {
  color: var(--cyan);
}

.zl-recognition-featured .zl-recognition-title {
  color: var(--white);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .zl-product-grid,
  .zl-infra-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .zl-expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .zl-port-grid {
    grid-template-columns: 1fr 1fr;
  }

  .zl-port-card.featured {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .zl-section,
  .zl-section-full {
    padding: 64px 24px;
  }

  .zl-hero-content {
    padding: 60px 24px;
  }

  .zl-trust-inner {
    flex-direction: column;
    padding: 0;
  }

  .zl-trust-badge {
    border-right: none;
    border-bottom: 1px solid var(--border-soft);
    padding: 20px 24px;
    justify-content: center;
  }

  .zl-trust-badge:last-child {
    border-bottom: none;
  }

  .zl-port-grid {
    grid-template-columns: 1fr;
  }

  .zl-port-card.featured {
    grid-column: span 1;
  }

  .zl-expertise-grid {
    grid-template-columns: 1fr;
  }

  .zl-infra-visual {
    grid-template-columns: repeat(2, 1fr);
  }

  .zl-timeline::before {
    display: none;
  }

  /* Quote section */
  .zl-quote-section {
    padding: 0 24px;
  }

  .zl-quote-inner {
    padding: 40px 28px;
  }

  .zl-quote-mark {
    font-size: 4rem;
  }

  .zl-quote-attribution {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  /* How It Works two-col inline grid */
  .zl-section > div[style*="grid-template-columns:1fr 1fr"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 48px !important;
  }

  /* Product grid */
  .zl-product-grid {
    grid-template-columns: 1fr;
  }

  /* Infra grid */
  .zl-infra-grid {
    grid-template-columns: 1fr;
  }

  /* Recognition list */
  .zl-recognition-item {
    flex-direction: column;
    gap: 6px;
  }

  .zl-recognition-source {
    min-width: unset;
  }

  /* Code panel — prevent overflow */
  .zl-product-panel {
    overflow-x: auto;
  }

  .zl-panel-body {
    min-width: 0;
  }

  .zl-code-line {
    white-space: nowrap;
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .zl-hero-title {
    font-size: 2rem;
  }

  .zl-btn-row {
    flex-direction: column;
  }

  .zl-btn-primary,
  .zl-btn-ghost {
    text-align: center;
    justify-content: center;
  }

  .zl-infra-visual {
    grid-template-columns: 1fr 1fr;
  }
}
/* ============================================================
   UCPReady page — feature grid, checklist, FAQ
   ============================================================ */

.zl-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  overflow: hidden;
}

.zl-feature-card {
  background: #0f1e35;
  padding: 36px 32px;
  transition: background 0.25s;
}

.zl-feature-card:hover {
  background: #152540;
}

.zl-feature-icon {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--cyan);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  background: var(--cyan-dim);
  letter-spacing: 0;
}

.zl-feature-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 10px;
}

.zl-feature-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
  font-weight: 300;
}

.zl-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  overflow: hidden;
}

.zl-checklist li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #0f1e35;
  font-size: 0.9rem;
  color: var(--text);
  transition: background 0.2s;
}

.zl-checklist li:hover {
  background: #152540;
}

.zl-checklist li::before {
  content: '✓';
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--cyan);
  flex-shrink: 0;
}

.zl-faq-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  overflow: hidden;
}

.zl-faq-item {
  background: #0f1e35;
}

.zl-faq-item[open] {
  background: #152540;
}

.zl-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  gap: 16px;
}

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

.zl-faq-q::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--cyan);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.zl-faq-item[open] .zl-faq-q::after {
  transform: rotate(45deg);
}

.zl-faq-a {
  padding: 0 28px 22px;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-muted);
  font-weight: 300;
}

@media (max-width: 1024px) {
  .zl-feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .zl-feature-grid { grid-template-columns: 1fr; }
}

#rank-math-rich-snippet-wrapper { display: none !important; }
