/* =====================================================================
   Solución · Gestión Digital — CSS scoped al wrapper `.gd-page`
   Réplica EXACTA del preview /preview-gestion-digital
   Estrategia: CSS del preview tal cual, solo se prefija con `.gd-page`
   para no colisionar con los globales del sitio. Mismas clases.
   ===================================================================== */

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

/* Variables locales del módulo + body-equivalente */
.gd-page {
  --bg: #FAFAFA;
  --bg-2: #F4F4F4;
  --bg-3: #EBEBEB;
  --ink: #0A0A0A;
  --ink-2: #525252;
  --ink-3: #A1A1A1;
  --ink-4: #D4D4D4;
  --line: #E5E5E5;
  --line-2: #EDEDED;
  --accent: #0066FF;
  --green: #00B866;
  --sans: 'Geist', -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
  --mono: 'Geist Mono', 'SF Mono', ui-monospace, monospace;

  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
  position: relative;
  isolation: isolate;
  overflow-x: clip;
  display: block;
}

/* Reset duro dentro del módulo (preview hace * { margin:0; padding:0; box-sizing:border-box; }) */
.gd-page,
.gd-page *,
.gd-page *::before,
.gd-page *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.gd-page ::selection { background: var(--ink); color: var(--bg); }

/* Reset de alineación: el preview es 100% left-aligned. Globales del sitio
   (.section-title { text-align: center; margin: 0 auto; }) colisionan con
   las mismas clases del preview, así que las anulamos aquí. */
.gd-page,
.gd-page h1, .gd-page h2, .gd-page h3, .gd-page h4, .gd-page h5, .gd-page h6,
.gd-page p,
.gd-page .section-title,
.gd-page .section-intro,
.gd-page .section-head {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

/* ═══ AURORA MESH ═════════════════════════════════════════════════ */
.gd-page .aurora-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 50% 30% at 15% 8%,  #0066FF 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 85% 18%, #7C3AED 0%, transparent 55%),
    radial-gradient(ellipse 55% 35% at 25% 32%, #EC4899 0%, transparent 55%),
    radial-gradient(ellipse 50% 30% at 80% 45%, #F59E0B 0%, transparent 60%),
    radial-gradient(ellipse 60% 35% at 20% 58%, #06B6D4 0%, transparent 55%),
    radial-gradient(ellipse 55% 30% at 75% 70%, #00B866 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 30% 84%, #8B5CF6 0%, transparent 55%),
    radial-gradient(ellipse 50% 35% at 80% 95%, #F43F5E 0%, transparent 55%);
  filter: blur(60px) saturate(150%);
  opacity: 0.55;
  mix-blend-mode: multiply;
  will-change: transform, filter;
  animation: gdMeshShift 40s ease-in-out infinite alternate;
}

@supports (animation-timeline: scroll()) {
  .gd-page .aurora-mesh {
    animation: gdMeshShift linear both;
    animation-timeline: scroll(root);
  }
}

@keyframes gdMeshShift {
  0%   { transform: rotate(0deg)  scale(1);    filter: blur(60px) saturate(150%); }
  25%  { transform: rotate(4deg)  scale(1.05); filter: blur(65px) saturate(155%); }
  50%  { transform: rotate(-3deg) scale(1.08); filter: blur(70px) saturate(160%); }
  75%  { transform: rotate(5deg)  scale(1.04); filter: blur(67px) saturate(157%); }
  100% { transform: rotate(-2deg) scale(1.06); filter: blur(63px) saturate(153%); }
}

@media (prefers-reduced-motion: reduce) {
  .gd-page .aurora-mesh { animation: none; }
}

/* Stacking: contenido por encima del aurora */
.gd-page > section { position: relative; z-index: 1; }

/* ═══ HEADER FORZADO A NEGRO desde el inicio (sin scroll) ════════
   El sitio tiene .header-mega transparente por defecto y solo
   activa fondo negro con .is-scrolled. En esta página queremos
   header sólido siempre. Selector con :has() detecta la página. */
body:has(main.gd-page) .header-mega,
body:has(.gd-page) .header-mega {
  background: rgba(0, 0, 0, 0.92) !important;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}
body:has(main.gd-page) .header-mega__bar,
body:has(.gd-page) .header-mega__bar {
  border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}

/* ═══ HERO ═══════════════════════════════════════════════════════
   100vh — la siguiente sección no debe asomar bajo el fold. */
.gd-page .hero {
  min-height: 100vh;
  padding: 140px 32px 60px;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.gd-page .hero-meta {
  font-size: 12px;
  color: var(--ink-3);
  margin-bottom: 32px;
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: 0.15em;
}
.gd-page .hero h1 {
  font-family: var(--sans);
  font-size: clamp(42px, 5.5vw, 76px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
  max-width: 900px;
  margin-bottom: 24px;
  color: var(--ink);
}
.gd-page .hero-summary {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 720px;
  font-weight: 400;
}

/* ═══ SECTION GENÉRICA ═══════════════════════════════════════════ */
.gd-page > section {
  padding: 80px 32px;
  max-width: 1240px;
  margin: 0 auto;
}
.gd-page .section-head { max-width: 780px; margin-bottom: 56px; }
.gd-page .section-num {
  font-size: 13px;
  color: var(--ink-3);
  font-family: var(--mono);
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}
.gd-page .section-title {
  font-family: var(--sans);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--ink);
}
.gd-page .section-intro {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 680px;
}

/* ═══ ÁREAS DE TRABAJO ════════════════════════════════════════════ */
.gd-page .areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.gd-page .area {
  padding: 40px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
}
.gd-page .area-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-3);
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}
.gd-page .area-title {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
  color: var(--ink);
}
.gd-page .area-desc {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
}

/* ═══ CADENCIA ════════════════════════════════════════════════════ */
.gd-page .cadencia-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
.gd-page .cadencia-block {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 40px;
}
.gd-page .cadencia-label {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-3);
  margin-bottom: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.gd-page .cadencia-title {
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--ink);
}
.gd-page .cadencia-item {
  padding: 14px 0;
  border-top: 1px solid var(--line-2);
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
}
.gd-page .cadencia-item:first-of-type { border-top: none; }

/* ═══ ENTREGABLES ═════════════════════════════════════════════════ */
.gd-page .entregables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}
.gd-page .entregable {
  padding: 28px 0;
  border-bottom: 1px solid var(--line-2);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: baseline;
}
.gd-page .entregable:nth-child(odd) { border-right: 1px solid var(--line-2); padding-right: 32px; }
.gd-page .entregable:nth-child(even) { padding-left: 32px; }
.gd-page .entregable-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.1em;
  min-width: 28px;
}
.gd-page .entregable-text {
  font-size: 15px;
  line-height: 1.55;
}
.gd-page .entregable-text strong {
  font-weight: 500;
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
}
.gd-page .entregable-text span { color: var(--ink-2); }

/* ═══ COMPARE (Modelo A / B) ══════════════════════════════════════ */
.gd-page .compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.gd-page .compare-col {
  padding: 40px;
  background: white;
}
.gd-page .compare-col + .compare-col {
  border-left: 1px solid var(--line);
  background: #FBFBFB;
}
.gd-page .compare-col.is-active { background: var(--ink); color: var(--bg); }
.gd-page .compare-col.is-active .compare-label,
.gd-page .compare-col.is-active .compare-item { color: rgba(255,255,255,0.75); }
.gd-page .compare-col.is-active .compare-title { color: var(--bg); }
.gd-page .compare-col.is-active .compare-item { border-top-color: rgba(255,255,255,0.15); }
.gd-page .compare-label {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-3);
  margin-bottom: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.gd-page .compare-title {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  line-height: 1.2;
  color: var(--ink);
}
.gd-page .compare-item {
  padding: 14px 0;
  border-top: 1px solid var(--line-2);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
}
.gd-page .compare-item:first-of-type { border-top: none; }

/* ═══ ALCANCE ═════════════════════════════════════════════════════ */
.gd-page .alcance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.gd-page .alcance-col h3 {
  font-family: var(--mono);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}
.gd-page .alcance-col.is-positive h3 { color: var(--green); border-bottom-color: var(--green); }
.gd-page .alcance-col.is-negative h3 { color: var(--ink-3); }
.gd-page .alcance-item {
  padding: 14px 0;
  border-top: 1px solid var(--line-2);
  font-size: 14px;
  color: var(--ink);
  line-height: 1.55;
}
.gd-page .alcance-item:first-of-type { border-top: none; }
.gd-page .alcance-col.is-negative .alcance-item { color: var(--ink-3); }

/* ═══ PRICING ═════════════════════════════════════════════════════ */
.gd-page .pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.gd-page .pricing-tier {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
}
.gd-page .pricing-tier.is-recommended { background: var(--ink); color: var(--bg); position: relative; }
.gd-page .pricing-tier.is-recommended .pricing-label,
.gd-page .pricing-tier.is-recommended .pricing-detail { color: rgba(255,255,255,0.7); }
.gd-page .pricing-tier.is-recommended .pricing-tier-name,
.gd-page .pricing-tier.is-recommended .pricing-amount { color: var(--bg); }
.gd-page .pricing-recommended-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--mono);
  font-size: 10px;
  background: var(--green);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.gd-page .pricing-label {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-3);
  margin-bottom: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.gd-page .pricing-tier-name {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
  color: var(--ink);
}
.gd-page .pricing-amount {
  font-family: var(--sans);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
  line-height: 1;
  color: var(--ink);
}
.gd-page .pricing-amount-unit {
  font-size: 14px;
  color: var(--ink-3);
  font-weight: 400;
  margin-left: 4px;
}
.gd-page .pricing-detail {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.55;
  margin-top: 16px;
}

/* ═══ REPORT MOCKUP ══════════════════════════════════════════════ */
.gd-page .report-mockup {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0;
  margin-bottom: 56px;
  overflow: hidden;
  box-shadow: 0 24px 60px -24px rgba(10,10,10,0.08);
}
.gd-page .report-header {
  padding: 20px 28px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.gd-page .report-header-left { display: flex; align-items: center; gap: 12px; }
.gd-page .report-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(0,184,102,0.15); }
.gd-page .report-body { padding: 36px 40px; }
.gd-page .report-title {
  font-size: 14px;
  color: var(--ink-3);
  font-family: var(--mono);
  margin-bottom: 32px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.gd-page .report-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
}
.gd-page .report-kpi-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.gd-page .report-kpi-value {
  font-family: var(--sans);
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}
.gd-page .report-kpi-delta { font-size: 13px; color: var(--green); font-family: var(--mono); margin-top: 6px; }
.gd-page .report-chart { margin-bottom: 32px; }
.gd-page .report-chart-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.gd-page .chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  height: 120px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.gd-page .chart-bar {
  flex: 1;
  background: var(--ink);
  border-radius: 4px 4px 0 0;
  position: relative;
}
.gd-page .chart-bar::after {
  content: attr(data-month);
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.05em;
}
.gd-page .report-footer {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink-2);
  font-family: var(--mono);
  padding-top: 16px;
}
.gd-page .report-footer span { color: var(--ink); font-weight: 500; }

/* ═══ TIMELINE 12 MESES ══════════════════════════════════════════ */
.gd-page .timeline {
  margin-bottom: 56px;
  padding: 32px 0;
  position: relative;
}
.gd-page .timeline-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
}
.gd-page .timeline-track {
  position: relative;
  height: 60px;
}
.gd-page .timeline-line {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 1px;
  background: var(--line);
}
.gd-page .timeline-dots {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  height: 100%;
  align-items: center;
}
.gd-page .timeline-dot {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.gd-page .timeline-dot-circle {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink-3);
  border: 2px solid var(--bg);
  z-index: 1;
}
.gd-page .timeline-dot.is-quarter .timeline-dot-circle {
  width: 16px;
  height: 16px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(0,102,255,0.12);
}
.gd-page .timeline-dot-label {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.05em;
}
.gd-page .timeline-dot.is-quarter .timeline-dot-label {
  color: var(--accent);
  font-weight: 500;
}
.gd-page .timeline-dot-marker {
  position: absolute;
  bottom: calc(100% + 8px);
  font-family: var(--mono);
  font-size: 9px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ═══ COMPARE GRAPH SVG ═══════════════════════════════════════════ */
.gd-page .compare-graph {
  margin-bottom: 32px;
  padding: 20px;
  background: var(--bg-2);
  border-radius: 10px;
}
.gd-page .compare-col.is-active .compare-graph { background: rgba(255,255,255,0.06); }
.gd-page .compare-graph svg { width: 100%; height: 80px; display: block; }
.gd-page .compare-graph-axis {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 9px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
}
.gd-page .compare-col.is-active .compare-graph-axis { color: rgba(255,255,255,0.5); }

/* ═══ RESULTS ═════════════════════════════════════════════════════ */
.gd-page .results-section {
  padding: 100px 32px;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.gd-page .results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}
.gd-page .result {
  padding: 48px 24px;
  border-right: 1px solid var(--line);
  position: relative;
}
.gd-page .result:last-child { border-right: none; }
.gd-page .result-value {
  font-family: var(--sans);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: var(--ink);
}
.gd-page .result-value-unit {
  font-size: 0.4em;
  color: var(--ink-3);
  font-weight: 400;
  letter-spacing: 0;
}
.gd-page .result-value.is-accent { color: var(--accent); }
.gd-page .result-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.gd-page .result-context {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.5;
}
.gd-page .results-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line-2);
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
}

/* ═══ COST COMPARISON ═════════════════════════════════════════════ */
.gd-page .cost-comparison {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 32px;
}
.gd-page .cost-comp-title {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.gd-page .cost-bars {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.gd-page .cost-bar-row {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 24px;
  align-items: center;
}
.gd-page .cost-bar-label {
  font-size: 14px;
  line-height: 1.4;
}
.gd-page .cost-bar-label strong { display: block; margin-bottom: 4px; font-weight: 500; color: var(--ink); }
.gd-page .cost-bar-label span { color: var(--ink-3); font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.gd-page .cost-bar-track {
  height: 28px;
  background: var(--bg-2);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.gd-page .cost-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--ink-4);
}
.gd-page .cost-bar-fill.is-prime { background: linear-gradient(90deg, var(--accent), rgba(0,102,255,0.6)); }
.gd-page .cost-bar-value {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  min-width: 80px;
  text-align: right;
  color: var(--ink);
}

/* ═══ RESPONSIVE ══════════════════════════════════════════════════ */
@media (max-width: 860px) {
  .gd-page .areas-grid { grid-template-columns: 1fr; }
  .gd-page .cadencia-grid,
  .gd-page .compare-grid,
  .gd-page .alcance-grid { grid-template-columns: 1fr; gap: 24px; }
  .gd-page .compare-col + .compare-col { border-left: none; border-top: 1px solid var(--line); }
  .gd-page .pricing-grid { grid-template-columns: 1fr; }
  .gd-page .entregables { grid-template-columns: 1fr; }
  .gd-page .entregable:nth-child(odd),
  .gd-page .entregable:nth-child(even) { border-right: none; padding: 28px 0; }
  .gd-page .results-grid { grid-template-columns: repeat(2, 1fr); }
  .gd-page .result { border-right: none; border-bottom: 1px solid var(--line); }
  .gd-page .result:nth-child(odd) { border-right: 1px solid var(--line); }
  .gd-page .cost-bar-row { grid-template-columns: 1fr; }
}

/* ═══ CTA · contact-wrap (réplica catálogo) ═══════════════════════
   Bloque CTA compartido entre /soluciones/gestion-digital y
   /soluciones/seo-tecnico. h2 + p + 3 rows clicables (Email,
   WhatsApp, Formulario). Visual idéntico al catálogo PDF. */
.gd-page .contact-wrap {
  background: var(--ink);
  border-radius: 24px;
  padding: 64px 56px;
  color: white;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.gd-page .contact-left h2 {
  font-family: var(--sans);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
  color: white;
}
.gd-page .contact-left p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
  max-width: 520px;
}
.gd-page .contact-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 280px;
}
.gd-page .contact-row {
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  transition: all 0.3s;
  text-decoration: none;
  color: white;
  display: block;
}
.gd-page .contact-row:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}
.gd-page .contact-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  font-family: var(--mono);
  margin-bottom: 4px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.gd-page .contact-value {
  font-size: 15px;
  color: white;
  font-weight: 500;
}
@media (max-width: 860px) {
  .gd-page .contact-wrap {
    grid-template-columns: 1fr;
    padding: 40px 28px;
    border-radius: 20px;
  }
  .gd-page .contact-left h2 { font-size: 28px; }
}
