.servicios-page .hero-servicios {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 30%, #334155 60%, #1e293b 80%, #0f172a 100%);
}

.servicios-page .hero-servicios::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 25%, rgba(99, 102, 241, 0.25), transparent 55%),
              radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.22), transparent 55%),
              radial-gradient(circle at 50% 80%, rgba(76, 29, 149, 0.25), transparent 60%);
  opacity: 0.7;
}

.servicios-page .hero-servicios .hero-badge {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.servicios-code-window {
  border-radius: 1.5rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

.servicios-page .hero-code-window .code-line {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: #e2e8f0;
}

.hero-stats-servicios {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
}

.hero-stats-servicios .hero-stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-2xl);
  padding: 1.25rem;
  text-align: left;
}

.hero-stat-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(70, 121, 180, 0.35), rgba(192, 132, 252, 0.35));
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.35);
  margin-bottom: 1rem;
}

.hero-stat-icon svg {
  width: 1.6rem;
  height: 1.6rem;
}

.hero-stat-title {
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  color: var(--primary, #4679b4);
}

.hero-stat-label {
  font-size: 0.9rem;
  color: rgba(226, 232, 240, 0.8);
}


.cta-servicios {
  background: var(--section-light-bg, #f8fafc);
  padding: 5rem 0;
}

.cta-badge {
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: var(--primary, #4679b4);
  font-weight: 600;
}

.cta-title {
  color: #f8fafc;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1.1;
}

.cta-description {
  color: rgba(226, 232, 240, 0.85);
}

.cta-lite {
  display: grid;
  gap: 2rem;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #15253c 100%);
  border-radius: var(--border-radius-2xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3rem;
  box-shadow: 0 45px 90px rgba(15, 23, 42, 0.4);
  color: #e2e8f0;
  transition: transform var(--transition-normal, 250ms ease), box-shadow var(--transition-normal, 250ms ease);
}

@media (min-width: 1024px) {
  .cta-lite {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }
}

.cta-lite-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: #f8fafc;
}

.cta-lite-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.cta-lite-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: rgba(226, 232, 240, 0.85);
  font-size: 1rem;
}

.cta-lite-list svg,
.cta-soft-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  color: #93c5fd;
}

.cta-soft-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.25);
  display: grid;
  place-items: center;
}

.cta-lite-panel {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.cta-lite-metric {
  padding: 1.25rem;
  border-radius: var(--border-radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  text-align: center;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.35);
  color: #f8fafc;
  transition: transform var(--transition-normal, 250ms ease), box-shadow var(--transition-normal, 250ms ease), border-color var(--transition-normal, 250ms ease);
}

.cta-lite-metric-number {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.cta-lite-metric:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.45);
  border-color: rgba(148, 163, 184, 0.35);
}

.cta-lite-panel p {
  margin: 0;
  color: rgba(226, 232, 240, 0.75);
  font-size: 0.95rem;
}

.cta-soft {
  display: grid;
  gap: 2rem;
}

.cta-lite:hover,
.cta-soft:hover {
  transform: translateY(-10px);
  box-shadow: 0 55px 110px rgba(15, 23, 42, 0.5);
}

.cta-soft-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cta-soft-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.cta-soft-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: rgba(226, 232, 240, 0.85);
}

.cta-soft-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(70, 121, 180, 0.15);
  display: grid;
  place-items: center;
}

.cta-soft-metrics {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.cta-soft-metric {
  padding: 1.25rem;
  border-radius: var(--border-radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 23, 42, 0.6);
  text-align: center;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.35);
  color: #f8fafc;
  transition: transform var(--transition-normal, 250ms ease), box-shadow var(--transition-normal, 250ms ease), border-color var(--transition-normal, 250ms ease);
}

.cta-soft-metric .metric-title {
  font-weight: 600;
  color: rgba(226, 232, 240, 0.8);
}

.cta-soft-metric .metric-value {
  display: block;
  font-size: 1.45rem;
  font-weight: 700;
  margin: 0.3rem 0;
  color: #93c5fd;
}

.cta-soft-metric p {
  margin: 0;
  color: rgba(226, 232, 240, 0.75);
  font-size: 0.95rem;
}

.cta-soft-metric:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.45);
  border-color: rgba(147, 197, 253, 0.4);
}

@media (max-width: 640px) {
  .cta-lite,
  .cta-soft {
    padding: 2rem;
  }
}

.cta-actions .cta-secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 1rem 2.2rem;
  border-radius: var(--border-radius-full);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #f8fafc;
  font-weight: 600;
  background: transparent;
}

.cta-actions .cta-secondary-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}


.proceso-servicios .proceso-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.proceso-servicios .step-index {
  font-family: var(--font-mono);
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.25);
}

.cta-servicios .card-premium {
  border-left: 4px solid rgba(255, 255, 255, 0.15);
}

.servicios-page .hero-btn-outline.w-full {
  text-align: center;
}
