/* ============================================================
   WEBIAPRO · Layout de páginas interiores
   ============================================================ */

/* Hero páginas interiores */
.page-hero {
  padding: calc(80px + var(--s12)) 0 var(--s12);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { margin-bottom: var(--s4); }
.page-hero p { font-size: var(--text-lg); max-width: 640px; }

/* Página: Servicios */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
}
.price-tag {
  font-size: var(--text-2xl); font-weight: 700;
  color: var(--accent-light); margin: var(--s3) 0;
}
.modules-table { width: 100%; border-collapse: collapse; }
.modules-table tr { border-bottom: 1px solid var(--border); }
.modules-table td { padding: var(--s4) var(--s3); font-size: var(--text-sm); }
.modules-table td:first-child { color: var(--text); font-weight: 500; }
.modules-table td:nth-child(2) { color: var(--accent-light); font-weight: 600; text-align: right; }
.modules-table td:last-child { color: var(--text-secondary); }
.project-type-card {
  background: var(--bg-surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--s6);
}
.project-type-card .total {
  font-size: var(--text-3xl); font-weight: 700; color: var(--accent-light);
}
.project-type-card .market {
  font-size: var(--text-sm); color: var(--text-muted); text-decoration: line-through;
}

/* Página: Cómo trabajo */
.tech-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s6);
}
.tech-item {
  background: var(--bg-surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--s6);
}
.tech-item h3 { color: var(--accent-light); margin-bottom: var(--s3); }

/* Página: Contacto */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--s12); align-items: start;
}
.contact-step {
  display: flex; gap: var(--s4); align-items: flex-start;
  margin-bottom: var(--s4);
}
.contact-step-number {
  width: 32px; height: 32px;
  background: var(--accent-glow); border: 1px solid var(--border-accent);
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-sm); font-weight: 700; color: var(--accent-light);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
