/* ── pages.css — Estilos compartidos para páginas interiores ── */

/* ── Utilidades ──────────────────────────────────────────────── */
.container--md { max-width: 760px; margin-inline: auto; }
.text-green    { color: var(--color-accent, #9afebe); }
.font-bold     { font-weight: 700; }

/* ── Page Hero ───────────────────────────────────────────────── */
.page-hero {
  padding: 140px 0 80px;
  background: #000;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(154,254,190,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(154,254,190,0.025) 1px, transparent 1px);
  background-size: 70px 70px;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(154,254,190,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.page-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #fff;
}
.page-hero-content > p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
}
.page-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent, #9afebe);
  border: 1px solid rgba(154,254,190,0.3);
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 20px;
  background: rgba(154,254,190,0.06);
}
.page-hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.hero-badge {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

/* ── Stats bar ───────────────────────────────────────────────── */
.section-stats {
  padding: 56px 0;
  background: var(--color-bg-primary, #111827);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 24px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
}

/* ── Section head ────────────────────────────────────────────── */
.section-head { margin-bottom: 60px; }
.section-head--center { text-align: center; }
.section-head h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 640px;
  margin-inline: auto;
}
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(154,254,190,0.15), transparent);
}

/* ── Servicio detallado ──────────────────────────────────────── */
.section-servicios-detail {
  padding: 80px 0;
  background: #000;
}
.servicio-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 60px 0;
}
.servicio-detail--reverse { direction: rtl; }
.servicio-detail--reverse > * { direction: ltr; }
.servicio-detail-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin: 12px 0 16px;
  color: #fff;
}
.servicio-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 28px;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
}
.feature-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: rgba(154,254,190,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Visual card ─────────────────────────────────────────────── */
.visual-card {
  background: var(--color-bg-primary, #111827);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.visual-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(154,254,190,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.visual-card-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}
.visual-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.visual-dot.green  { background: #22c55e; }
.visual-dot.yellow { background: #f59e0b; }
.visual-dot.red    { background: #ef4444; }
.visual-title {
  margin-left: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* Pipeline */
.visual-pipeline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.pipeline-step {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px 8px;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}
.pipeline-step.active {
  background: rgba(154,254,190,0.06);
  border-color: rgba(154,254,190,0.25);
  color: #9afebe;
}
.pipeline-icon {
  margin-bottom: 6px;
  display: flex;
  justify-content: center;
}
.pipeline-check { display: block; font-size: 0.7rem; margin-top: 4px; }
.pipeline-arrow {
  font-size: 1rem;
  color: rgba(154,254,190,0.4);
  flex-shrink: 0;
}
.visual-stat-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.visual-stat {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
  min-width: 80px;
}

/* Channels */
.channels-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.channel-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 12px 14px;
}
.channel-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.channel-icon.whatsapp { background: rgba(37,211,102,0.12); }
.channel-icon.email    { background: rgba(154,254,190,0.08); }
.channel-icon.phone    { background: rgba(154,254,190,0.08); }
.channel-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.channel-info strong { font-size: 0.875rem; color: #fff; font-weight: 600; }
.channel-info span   { font-size: 0.75rem; color: rgba(255,255,255,0.45); }
.channel-status {
  font-size: 0.7rem;
  font-weight: 600;
  color: #9afebe;
  background: rgba(154,254,190,0.1);
  border: 1px solid rgba(154,254,190,0.2);
  border-radius: 12px;
  padding: 3px 10px;
}

/* Tasks */
.tasks-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.task-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  padding: 9px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.6);
}
.task-item.completed { color: rgba(255,255,255,0.8); }
.task-item.active    { border-color: rgba(154,254,190,0.2); color: #9afebe; }
.task-item.pending   { color: rgba(255,255,255,0.35); }
.task-check   { color: #9afebe; font-weight: 700; font-size: 0.875rem; flex-shrink: 0; }
.task-pending { color: rgba(255,255,255,0.25); flex-shrink: 0; }
.task-spinner {
  width: 12px; height: 12px;
  border: 2px solid rgba(154,254,190,0.3);
  border-top-color: #9afebe;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }
.visual-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ── Por qué diferente ───────────────────────────────────────── */
.section-diferente {
  padding: 100px 0;
  background: var(--color-bg-primary, #111827);
}
.diferente-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.diferente-card {
  background: var(--color-bg-secondary, #1f2937);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s;
}
.diferente-card:hover {
  border-color: rgba(154,254,190,0.2);
  transform: translateY(-4px);
}
.diferente-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 16px 0 10px;
}
.diferente-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin: 0;
}
.card-icon-lg {
  width: 48px; height: 48px;
  background: rgba(154,254,190,0.08);
  border: 1px solid rgba(154,254,190,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── CTA final ───────────────────────────────────────────────── */
.section-cta-final {
  padding: 120px 0;
  background: #000;
  position: relative;
  overflow: hidden;
}
.section-cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(154,254,190,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.cta-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}
.cta-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 36px;
}
.cta-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin-top: 16px;
}

/* ── Página Pegasus — About ──────────────────────────────────── */
.section-about {
  padding: 100px 0;
  background: #000;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}
.about-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-text p:last-child { margin-bottom: 0; }
.founder-card {
  background: var(--color-bg-primary, #111827);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.founder-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(154,254,190,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.founder-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(154,254,190,0.2), rgba(154,254,190,0.05));
  border: 2px solid rgba(154,254,190,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.6rem;
  font-weight: 800;
  color: #9afebe;
}
.founder-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.founder-role {
  font-size: 0.875rem;
  color: #9afebe;
  margin-bottom: 20px;
}
.founder-bio {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.founder-links { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }
.founder-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px 14px;
  transition: all 0.25s;
}
.founder-link:hover {
  border-color: rgba(154,254,190,0.3);
  color: #9afebe;
}

/* Values */
.section-values {
  padding: 100px 0;
  background: var(--color-bg-primary, #111827);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}
.value-card {
  background: var(--color-bg-secondary, #1f2937);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s;
}
.value-card:hover {
  border-color: rgba(154,254,190,0.2);
  transform: translateY(-4px);
}
.value-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(154,254,190,0.08);
  border: 1px solid rgba(154,254,190,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.value-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.value-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin: 0;
}

/* Process timeline */
.section-proceso {
  padding: 100px 0;
  background: #000;
}
.proceso-timeline {
  display: flex;
  flex-direction: column;
  max-width: 720px;
  margin: 0 auto;
}
.proceso-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  position: relative;
  padding-bottom: 44px;
}
.proceso-step:last-child { padding-bottom: 0; }
.proceso-step:last-child .proceso-line { display: none; }
.proceso-num-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.proceso-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(154,254,190,0.08);
  border: 2px solid rgba(154,254,190,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: #9afebe;
  flex-shrink: 0;
  z-index: 1;
}
.proceso-line {
  flex: 1;
  width: 2px;
  background: linear-gradient(to bottom, rgba(154,254,190,0.3), rgba(154,254,190,0.04));
  margin: 6px 0 0;
}
.proceso-content { padding-top: 8px; }
.proceso-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.proceso-content p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin: 0;
}

/* FAQ inner pages */
.section-faq-inner {
  padding: 100px 0;
  background: var(--color-bg-primary, #111827);
}
.faq-inner-grid {
  max-width: 720px;
  margin: 0 auto;
}

/* ── Página Contacto ─────────────────────────────────────────── */
.section-contact-main {
  padding: 80px 0 120px;
  background: #000;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.contact-info > p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 36px;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact-item-icon {
  width: 44px; height: 44px;
  background: rgba(154,254,190,0.07);
  border: 1px solid rgba(154,254,190,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-body { display: flex; flex-direction: column; gap: 2px; }
.contact-item-body strong { font-size: 0.875rem; font-weight: 600; color: #fff; }
.contact-item-body a,
.contact-item-body span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-item-body a:hover { color: #9afebe; }

.contact-session-box {
  background: var(--color-bg-primary, #111827);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px;
}
.contact-session-box h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.contact-session-box p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 20px;
}
.session-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.session-tag {
  font-size: 0.75rem;
  color: #9afebe;
  background: rgba(154,254,190,0.08);
  border: 1px solid rgba(154,254,190,0.2);
  border-radius: 20px;
  padding: 4px 12px;
}

/* Contact form */
.contact-form-card {
  background: var(--color-bg-primary, #111827);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px;
}
.contact-form-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.contact-form-card > p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 0.9375rem;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.25s;
  width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: rgba(154,254,190,0.4); box-shadow: 0 0 0 3px rgba(154,254,190,0.08); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: #111827; color: #fff; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}
.form-check input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: #9afebe;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}
.form-check label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
}
.form-check label a { color: #9afebe; text-decoration: none; }
.form-check label a:hover { text-decoration: underline; }
.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  background: linear-gradient(135deg, #9afebe, #4ade80);
  color: #000;
  border: none;
  transition: opacity 0.2s, transform 0.2s;
  font-family: Inter, sans-serif;
}
.btn-submit:hover { opacity: 0.9; transform: translateY(-1px); }
.form-success {
  display: none;
  text-align: center;
  padding: 40px 0;
}
.success-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(154,254,190,0.1);
  border: 2px solid rgba(154,254,190,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success h4 { font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.form-success p  { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.65; }

/* ── Página Consultoría (multi-step) ─────────────────────────── */
.section-consultoria {
  padding: 60px 0 120px;
  background: #000;
  min-height: 80vh;
}
.consultoria-wrapper {
  max-width: 680px;
  margin-inline: auto;
}
.consultoria-progress {
  display: flex;
  align-items: flex-start;
  margin-bottom: 52px;
}
.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
}
.progress-step::after {
  content: '';
  position: absolute;
  top: 17px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.08);
  z-index: 0;
}
.progress-step:last-child::after { display: none; }
.progress-step.done::after  { background: rgba(154,254,190,0.35); }
.progress-step.active::after { background: rgba(154,254,190,0.15); }
.progress-dot {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.progress-step.done .progress-dot  {
  border-color: #9afebe;
  background: rgba(154,254,190,0.1);
  color: #9afebe;
}
.progress-step.active .progress-dot {
  border-color: #9afebe;
  background: rgba(154,254,190,0.15);
  color: #9afebe;
  box-shadow: 0 0 14px rgba(154,254,190,0.25);
}
.progress-label {
  font-size: 0.625rem;
  color: rgba(255,255,255,0.3);
  margin-top: 7px;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.progress-step.active .progress-label { color: #9afebe; }
.progress-step.done   .progress-label { color: rgba(154,254,190,0.55); }

/* Step panels */
.consultoria-step { display: none; }
.consultoria-step.active { display: block; animation: fadeUp 0.35s ease; }

.step-title {
  font-size: clamp(1.4rem, 3vw, 1.875rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}
.step-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  line-height: 1.6;
}
.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}
.option-grid--3 { grid-template-columns: repeat(3, 1fr); }
.option-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 20px;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.25s;
  user-select: none;
}
.option-card:hover {
  border-color: rgba(154,254,190,0.3);
  background: rgba(154,254,190,0.04);
}
.option-card.selected {
  border-color: rgba(154,254,190,0.5);
  background: rgba(154,254,190,0.07);
}
.option-card input { display: none; }
.option-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(154,254,190,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  flex-shrink: 0;
}
.option-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
}
.option-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.step-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}
.btn-prev {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 13px 22px;
  cursor: pointer;
  font-family: Inter, sans-serif;
  transition: all 0.25s;
}
.btn-prev:hover { border-color: rgba(255,255,255,0.3); color: #fff; }
.btn-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #000;
  background: linear-gradient(135deg, #9afebe, #4ade80);
  border: none;
  border-radius: 10px;
  padding: 13px 28px;
  cursor: pointer;
  font-family: Inter, sans-serif;
  transition: opacity 0.2s, transform 0.2s;
  flex: 1;
  max-width: 240px;
  margin-left: auto;
}
.btn-next:hover { opacity: 0.9; transform: translateY(-1px); }
.step-counter {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
  min-width: 64px;
}

/* Inputs dentro de step */
.step-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.step-form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}
.step-form-group input,
.step-form-group select {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 0.9375rem;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.25s;
  width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
}
.step-form-group input::placeholder { color: rgba(255,255,255,0.25); }
.step-form-group input:focus,
.step-form-group select:focus { border-color: rgba(154,254,190,0.4); box-shadow: 0 0 0 3px rgba(154,254,190,0.08); }
.step-form-group select option { background: #111827; color: #fff; }
.step-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* Resumen / thank you */
.consultoria-thankyou {
  display: none;
  text-align: center;
  padding: 60px 0;
  animation: fadeUp 0.4s ease;
}
.thankyou-icon {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: rgba(154,254,190,0.08);
  border: 2px solid rgba(154,254,190,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}
.consultoria-thankyou h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.consultoria-thankyou p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 36px;
}

/* ── Páginas legales ─────────────────────────────────────────── */
.section-legal {
  padding: 100px 0 120px;
  background: #000;
}
.legal-content {
  max-width: 760px;
  margin-inline: auto;
}
.legal-content h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.legal-date {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 44px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: block;
}
.legal-content h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 44px 0 14px;
}
.legal-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin: 28px 0 10px;
}
.legal-content p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 16px;
}
.legal-content ul,
.legal-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-content li {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 6px;
}
.legal-content a { color: #9afebe; text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }
.legal-content strong { color: rgba(255,255,255,0.85); font-weight: 600; }
.legal-box {
  background: var(--color-bg-primary, #111827);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 24px 28px;
  margin: 8px 0 24px;
}
.legal-box p { margin: 0; }
.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.legal-nav a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  transition: all 0.25s;
}
.legal-nav a:hover {
  color: #9afebe;
  border-color: rgba(154,254,190,0.3);
}

/* Active nav link */
.nav-link--active { color: #9afebe !important; }

/* ── Keyframes ───────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 960px) {
  .about-grid,
  .contact-grid      { grid-template-columns: 1fr; gap: 48px; }
  .diferente-grid    { grid-template-columns: 1fr; }
  .values-grid       { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .servicio-detail,
  .servicio-detail--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 40px;
  }
  .stats-grid        { grid-template-columns: repeat(2, 1fr); }
  .stat-item         { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:last-child,
  .stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
}
@media (max-width: 600px) {
  .page-hero              { padding: 120px 0 60px; }
  .section-stats          { padding: 40px 0; }
  .stats-grid             { grid-template-columns: repeat(2, 1fr); }
  .diferente-grid,
  .values-grid            { grid-template-columns: 1fr; }
  .option-grid,
  .option-grid--3         { grid-template-columns: 1fr; }
  .step-form-row          { grid-template-columns: 1fr; }
  .form-row               { grid-template-columns: 1fr; }
  .contact-form-card      { padding: 24px; }
  .consultoria-progress   { gap: 0; }
  .progress-label         { display: none; }
  .visual-pipeline        { flex-wrap: wrap; }
  .pipeline-arrow         { display: none; }
}
