/**
 * Secciones compartidas — landings Series Lab, TextLab, GameLab
 * Sincronizado a public/labs/*/css/lab-unified.css
 */

/* —— Hero outcomes —— */
.hero-outcomes {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-outcomes li {
  font-size: 13px;
  color: hsl(var(--muted-foreground));
  padding-left: 1.25rem;
  position: relative;
}

.hero-outcomes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: hsl(var(--success));
  font-weight: 700;
}

/* —— Trust strip —— */
.lab-trust-strip {
  padding: 0 0 2rem;
}

.lab-trust-inner {
  text-align: center;
}

.lab-trust-label {
  font-size: 13px;
  color: hsl(var(--muted-foreground));
  margin: 0 0 12px;
  line-height: 1.5;
}

.lab-trust-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.lab-trust-tags span {
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid hsl(var(--border) / 0.45);
  background: hsl(var(--surface) / 0.35);
  color: hsl(var(--foreground));
}

/* Aliases legacy */
.tl-trust-strip,
.gl-trust-strip { padding: 0 0 2rem; }
.tl-trust-inner,
.gl-trust-inner { text-align: center; }
.tl-trust-label,
.gl-trust-label { font-size: 13px; color: hsl(var(--muted-foreground)); margin: 0 0 12px; }
.tl-trust-tags,
.gl-trust-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.tl-trust-tags span,
.gl-trust-tags span {
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid hsl(var(--border) / 0.45);
  background: hsl(var(--surface) / 0.35);
  color: hsl(var(--foreground));
}

/* —— Casos de uso —— */
.lab-use-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.lab-use-cases-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.lab-use-case {
  padding: 1.35rem 1.25rem;
}

.lab-use-case-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 10px;
}

.lab-use-case h3 {
  font-size: 1rem;
  margin: 0 0 8px;
  font-family: var(--font-display);
  position: relative;
  z-index: 1;
}

.lab-use-case p {
  font-size: 13px;
  color: hsl(var(--muted-foreground));
  margin: 0;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

.tl-use-cases-grid,
.gl-use-cases-grid { display: grid; gap: 1rem; }
.tl-use-cases-grid { grid-template-columns: repeat(2, 1fr); }
.gl-use-cases-grid { grid-template-columns: repeat(3, 1fr); }
.gl-use-case { padding: 1.35rem 1.25rem; }
.gl-use-case-icon { font-size: 1.5rem; display: block; margin-bottom: 10px; }
.gl-use-case h3 { font-size: 1rem; margin: 0 0 8px; font-family: var(--font-display); }
.gl-use-case p { font-size: 13px; color: hsl(var(--muted-foreground)); margin: 0; line-height: 1.55; }

/* —— Métodos (sección vendedora) —— */
.lab-methods-section {
  position: relative;
  overflow: hidden;
}

.lab-methods-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 10% 20%, hsl(var(--primary) / 0.06), transparent 55%),
    radial-gradient(ellipse 50% 40% at 95% 75%, hsl(var(--primary) / 0.05), transparent 50%);
  pointer-events: none;
}

.lab-methods-section > .container {
  position: relative;
  z-index: 1;
}

.lab-methods-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: -0.5rem 0 1.75rem;
}

.lab-methods-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid hsl(var(--border) / 0.45);
  background: hsl(var(--surface) / 0.45);
  font-size: 12px;
  color: hsl(var(--muted-foreground));
}

.lab-methods-stat strong {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  color: var(--brand-blue);
}

.lab-methods-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 1.75rem;
}

.lab-plan-pill {
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.03em;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid hsl(var(--border) / 0.4);
}

.lab-plan-pill--demo {
  background: hsl(var(--muted) / 0.15);
  color: hsl(var(--muted-foreground));
}

.lab-plan-pill--plus {
  background: hsl(var(--primary) / 0.1);
  border-color: hsl(var(--primary) / 0.35);
  color: var(--brand-blue);
}

.lab-plan-pill--pro {
  background: rgba(245, 200, 66, 0.1);
  border-color: rgba(245, 200, 66, 0.35);
  color: #e8c547;
}

html.light .lab-plan-pill--pro {
  color: #a67c00;
}

.lab-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.lab-method-card {
  padding: 1.35rem 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.lab-method-card:hover {
  transform: translateY(-4px);
  border-color: hsl(var(--primary) / 0.4);
  box-shadow: 0 14px 44px hsl(var(--primary) / 0.1);
}

.lab-method-card--pro {
  border-color: rgba(212, 160, 23, 0.35);
  background:
    linear-gradient(165deg, rgba(245, 200, 66, 0.07) 0%, transparent 48%),
    hsl(var(--card) / 0.85);
}

.lab-method-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.lab-method-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: hsl(var(--primary) / 0.12);
  border: 1px solid hsl(var(--primary) / 0.22);
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
}

.lab-method-card--pro .lab-method-icon {
  background: rgba(245, 200, 66, 0.12);
  border-color: rgba(245, 200, 66, 0.28);
}

.lab-method-tag {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 8px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}

.lab-method-tag--plus {
  background: hsl(var(--primary) / 0.12);
  color: var(--brand-blue);
  border: 1px solid hsl(var(--primary) / 0.25);
}

.lab-method-tag--pro {
  background: rgba(245, 200, 66, 0.14);
  color: #e8c547;
  border: 1px solid rgba(245, 200, 66, 0.35);
}

html.light .lab-method-tag--pro {
  color: #a67c00;
}

.lab-method-tag--demo {
  background: hsl(var(--muted) / 0.2);
  color: hsl(var(--muted-foreground));
  border: 1px solid hsl(var(--border) / 0.4);
}

.lab-method-card h3 {
  font-size: 1.05rem;
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.25;
  position: relative;
  z-index: 1;
}

.lab-method-benefit {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 600;
  color: hsl(var(--foreground));
  line-height: 1.45;
  position: relative;
  z-index: 1;
}

.lab-method-desc {
  margin: 0 0 10px;
  font-size: 13px;
  color: hsl(var(--muted-foreground));
  line-height: 1.55;
  flex: 1;
  position: relative;
  z-index: 1;
}

.lab-method-for {
  margin: 0 0 12px;
  font-size: 11px;
  font-style: italic;
  color: hsl(var(--muted-foreground));
  line-height: 1.45;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.lab-method-terms {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.lab-method-terms li {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  background: hsl(var(--muted) / 0.22);
  color: hsl(var(--muted-foreground));
  letter-spacing: 0.02em;
}

.lab-methods-subhead {
  margin: 2.5rem 0 1.25rem;
  text-align: center;
}

.lab-methods-subhead h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 6px;
}

.lab-methods-subhead p {
  margin: 0 auto;
  max-width: 32rem;
  font-size: 13px;
  color: hsl(var(--muted-foreground));
  line-height: 1.55;
}

.lab-methods-footer {
  margin-top: 2.25rem;
  padding: 1.35rem 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid hsl(var(--border) / 0.45);
  background: hsl(var(--surface) / 0.45);
}

.lab-methods-footer p {
  margin: 0;
  font-size: 14px;
  color: hsl(var(--muted-foreground));
  line-height: 1.55;
  max-width: 38rem;
}

.lab-methods-footer p strong {
  color: hsl(var(--foreground));
  font-weight: 600;
}

.lab-methods-footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

.lab-methods-catalog {
  margin-top: 0.5rem;
}

/* Legacy aliases */
.lab-method-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; margin-bottom: 8px; }
.lab-method-head strong { font-size: 0.95rem; font-family: var(--font-display); }
.lab-method-card > p { margin: 0 0 10px; font-size: 13px; color: hsl(var(--muted-foreground)); line-height: 1.5; }

/* —— Visualizaciones —— */
.lab-viz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 0;
}

.lab-viz-card {
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid hsl(var(--border) / 0.45);
  background: hsl(var(--surface) / 0.35);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.lab-viz-card:hover {
  border-color: hsl(var(--primary) / 0.45);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px hsl(var(--primary) / 0.08);
}

.lab-viz-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.lab-viz-card span.lab-viz-icon {
  font-size: 1.35rem;
  display: block;
  line-height: 1;
}

.lab-viz-card strong {
  display: block;
  font-size: 0.95rem;
  font-family: var(--font-display);
  margin-bottom: 6px;
}

.lab-viz-card p {
  font-size: 12px;
  color: hsl(var(--muted-foreground));
  margin: 0;
  line-height: 1.5;
  flex: 1;
}

.gl-viz-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.gl-viz-card { padding: 1rem 1.1rem; border-radius: var(--radius-lg); border: 1px solid hsl(var(--border) / 0.45); background: hsl(var(--surface) / 0.3); transition: border-color 0.15s, transform 0.15s; }
.gl-viz-card:hover { border-color: hsl(var(--primary) / 0.4); transform: translateY(-2px); }
.gl-viz-card span { font-size: 1.25rem; display: block; margin-bottom: 6px; }
.gl-viz-card strong { display: block; font-size: 13px; font-family: var(--font-display); margin-bottom: 4px; }
.gl-viz-card p { font-size: 12px; color: hsl(var(--muted-foreground)); margin: 0; line-height: 1.45; }

/* —— Mock UI producto (Series / TextLab) —— */
.lab-ui-mock {
  padding: 1.25rem 1.5rem 1.5rem;
  margin-bottom: 2rem;
}

.lab-ui-mock-head {
  display: grid;
  grid-template-columns: 220px 1fr 240px;
  gap: 1rem;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: hsl(var(--muted-foreground));
}

.lab-ui-mock-head span:nth-child(2) { text-align: center; }
.lab-ui-mock-head span:nth-child(3) { text-align: right; }

.lab-ui-mock-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 240px;
  gap: 1rem;
  align-items: stretch;
}

.lab-ui-mock-col {
  border-radius: var(--radius-lg);
  border: 1px solid hsl(var(--border) / 0.45);
  background: hsl(var(--surface) / 0.35);
  padding: 1rem;
  min-height: 200px;
}

.lab-ui-mock-col-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-display);
  margin-bottom: 10px;
}

.lab-ui-mock-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--brand-blue);
  color: var(--brand-black);
  font-size: 11px;
  font-weight: 800;
}

.lab-ui-mock-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lab-ui-mock-list span {
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid hsl(var(--border) / 0.4);
  color: hsl(var(--muted-foreground));
}

.lab-ui-mock-list span.is-active {
  background: hsl(var(--primary) / 0.12);
  border-color: hsl(var(--primary) / 0.35);
  color: var(--brand-blue);
  font-weight: 600;
}

.lab-ui-mock-chart {
  height: 120px;
  border-radius: 10px;
  border: 1px dashed hsl(var(--border) / 0.5);
  background: linear-gradient(135deg, hsl(var(--primary) / 0.06), transparent 60%);
  display: grid;
  place-items: center;
  font-size: 11px;
  color: hsl(var(--muted-foreground));
  margin-bottom: 10px;
}

.lab-ui-mock-note {
  font-size: 11px;
  color: hsl(var(--muted-foreground));
  line-height: 1.5;
  margin: 0;
}

.lab-ui-mock-field {
  font-size: 11px;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid hsl(var(--border) / 0.4);
  margin-bottom: 6px;
  color: hsl(var(--muted-foreground));
}

.lab-ui-mock-btn {
  margin-top: 8px;
  width: 100%;
  font-size: 11px;
  padding: 8px;
  border-radius: 8px;
  border: none;
  background: hsl(var(--success));
  color: #fff;
  font-weight: 700;
  font-family: var(--font-display);
}

/* —— Plan compare —— */
.plan-compare {
  border-radius: var(--radius-xl);
  border: 1px solid hsl(var(--border) / 0.5);
}

.plan-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.plan-compare-col h4 {
  font-family: var(--font-display);
  margin: 0 0 10px;
  font-size: 1rem;
}

.plan-compare-lead {
  font-size: 13px;
  color: hsl(var(--muted-foreground));
  line-height: 1.55;
  margin: 0 0 10px;
}

.plan-compare-col ul {
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.7;
  color: hsl(var(--muted-foreground));
}

.plan-compare-col li.plan-compare-no {
  list-style: none;
  margin-left: -18px;
  opacity: 0.85;
}

.plan-compare-pro {
  border-left: 1px solid hsl(var(--border) / 0.4);
  padding-left: 1.5rem;
}

.lab-taxonomy-cta {
  text-align: center;
  margin-top: 1.75rem;
}

.lab-taxonomy-cta p {
  margin: 10px 0 0;
  font-size: 13px;
  color: hsl(var(--muted-foreground));
}

.gl-taxonomy-cta { text-align: center; margin-top: 1.75rem; }
.gl-taxonomy-cta p { margin: 10px 0 0; font-size: 13px; color: hsl(var(--muted-foreground)); }

/* —— Footer landing unificado —— */
.landing-footer {
  background: #000;
  color: #94a3b8;
  margin-top: 0;
}

.landing-footer .container {
  width: min(80rem, calc(100% - 2rem));
}

.landing-footer__cta-wrap {
  padding: 2.5rem 0 2rem;
}

.landing-footer__cta {
  text-align: center;
  padding: 3.25rem 2rem;
  border-radius: 20px;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-footer__cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}

.landing-footer__cta p {
  max-width: 34rem;
  margin: 0 auto 1.75rem;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.58);
}

.landing-footer__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.landing-footer__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--brand-blue);
  color: #0a0a0a;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.landing-footer__cta-btn:hover {
  background: var(--brand-blue-light);
  transform: translateY(-1px);
}

.landing-footer__cta-btn--outline {
  background: transparent;
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.landing-footer__cta-btn--outline:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.landing-footer .site-footer-links {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem 3rem;
  padding: 2rem 0 2.5rem;
  align-items: start;
  border-top: none;
}

.landing-footer .footer-col { min-width: 0; }

.landing-footer .logo-box.landing-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.landing-footer .logo-white-bg img { height: 28px; }

.landing-footer__product-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #e2e8f0;
}

.landing-footer__product-line {
  font-size: 10px;
  color: #94a3b8;
  margin-top: 2px;
}

.landing-footer .footer-col__desc {
  margin: 0;
  max-width: 22rem;
  font-size: 14px;
  line-height: 1.65;
  color: #94a3b8;
}

.landing-footer .footer-col h4 {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 14px;
  color: #cbd5e1;
}

.landing-footer .footer-col--lines p,
.landing-footer .footer-col--product p {
  margin: 0 0 10px;
  line-height: 1.5;
}

.landing-footer .footer-col a {
  color: #e2e8f0;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.landing-footer .footer-col a:hover { color: var(--brand-blue-light); }

.landing-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #000;
  padding: 20px 0;
}

.landing-footer__bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.landing-footer__bar-inner p {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.42);
}

.landing-footer__tagline { font-style: italic; }

/* —— Cómo funciona (flujo enriquecido) —— */
.lab-workflow-section {
  position: relative;
  overflow: hidden;
}

.lab-workflow-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, hsl(var(--primary) / 0.07), transparent 65%),
    radial-gradient(ellipse 40% 30% at 90% 80%, hsl(var(--primary) / 0.04), transparent 60%);
  pointer-events: none;
}

.lab-workflow-section .container {
  position: relative;
  z-index: 1;
}

.lab-workflow {
  position: relative;
}

.lab-workflow-rail {
  position: absolute;
  top: 2.65rem;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    hsl(var(--primary) / 0.15) 8%,
    var(--brand-blue) 50%,
    hsl(var(--primary) / 0.15) 92%,
    transparent 100%
  );
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}

.lab-workflow-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: lab-step;
  position: relative;
  z-index: 1;
}

.lab-step-card {
  position: relative;
  padding: 1.5rem 1.35rem 1.65rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.lab-step-card:not(:last-child)::after {
  display: none;
}

.lab-step-card:hover {
  transform: translateY(-4px);
  border-color: hsl(var(--primary) / 0.45);
  box-shadow: 0 12px 40px hsl(var(--primary) / 0.1);
}

.lab-step-marker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.1rem;
  position: relative;
  z-index: 1;
}

.lab-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--brand-blue), hsl(var(--primary) / 0.85));
  color: var(--brand-black);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  box-shadow:
    0 0 0 3px hsl(var(--background)),
    0 0 0 4px hsl(var(--primary) / 0.25),
    0 4px 14px hsl(var(--primary) / 0.25);
  flex-shrink: 0;
}

.lab-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: hsl(var(--primary) / 0.1);
  border: 1px solid hsl(var(--primary) / 0.2);
  font-size: 1.1rem;
  line-height: 1;
}

.lab-step-label {
  margin: 0 0 6px;
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-blue);
  position: relative;
  z-index: 1;
}

.lab-step-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.lab-step-card h3 {
  font-size: 1.05rem;
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.25;
  position: relative;
  z-index: 1;
}

.lab-step-card p {
  color: hsl(var(--muted-foreground));
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
  flex: 1;
  position: relative;
  z-index: 1;
}

.lab-step-card--finale {
  border-color: hsl(var(--primary) / 0.35);
  background:
    linear-gradient(160deg, hsl(var(--primary) / 0.06) 0%, transparent 55%),
    hsl(var(--card) / 0.85);
}

.lab-step-card--finale .lab-step-num {
  background: linear-gradient(145deg, #f5c842, var(--brand-blue));
}

.lab-step-card .btn {
  margin-top: 14px;
  align-self: flex-start;
  position: relative;
  z-index: 1;
}

.lab-workflow-footer {
  margin-top: 2.25rem;
  padding: 1.35rem 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid hsl(var(--border) / 0.45);
  background: hsl(var(--surface) / 0.4);
}

.lab-workflow-footer p {
  margin: 0;
  font-size: 14px;
  color: hsl(var(--muted-foreground));
  line-height: 1.55;
  max-width: 36rem;
}

.lab-workflow-footer p strong {
  color: hsl(var(--foreground));
  font-weight: 600;
}

.lab-workflow-footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

/* —— Responsive —— */
@media (max-width: 1024px) {
  .lab-methods-grid,
  .lab-viz-grid,
  .lab-use-cases-grid--three,
  .gl-use-cases-grid,
  .gl-viz-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lab-ui-mock-head,
  .lab-ui-mock-grid {
    grid-template-columns: 1fr;
  }

  .lab-ui-mock-head span:nth-child(2),
  .lab-ui-mock-head span:nth-child(3) {
    text-align: left;
  }

  .lab-workflow-steps {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .lab-workflow-rail {
    display: none;
  }
}

@media (max-width: 720px) {
  .lab-methods-grid,
  .lab-viz-grid,
  .lab-use-cases-grid,
  .lab-use-cases-grid--three,
  .gl-use-cases-grid,
  .gl-viz-grid,
  .plan-compare-grid,
  .landing-footer .site-footer-links {
    grid-template-columns: 1fr;
  }

  .plan-compare-pro {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid hsl(var(--border) / 0.4);
    padding-top: 1.25rem;
  }

  .landing-footer__cta { padding: 2.5rem 1.25rem; }

  .landing-footer__bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .lab-workflow-steps {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 1.25rem;
    border-left: 2px solid hsl(var(--primary) / 0.2);
  }

  .lab-step-card {
    padding-left: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .lab-step-card:last-child {
    margin-bottom: 0;
  }

  .lab-workflow-footer {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .lab-methods-footer {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .lab-methods-stats {
    justify-content: flex-start;
  }
}
