/* ==========================================================================
   KODIA DIGITAL - SERVICIOS CSS (Versión Optimizada y Deduplicada)
   ========================================================================== */

/* ── 1. ETIQUETAS (HERO TAGS) ────────────────────────────────────────────── */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}
.hero-tag {
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
}
.hero-tag-outline {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.75);
}
.hero-tag-teal {
  background: rgba(10, 143, 130, 0.12);
  border: 1px solid rgba(10, 143, 130, 0.25);
  color: var(--teal-lt);
}
.hero-tag-red {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

/* ── 2. LAYOUTS BASE ─────────────────────────────────────────────────────── */
.svc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.svc-layout-center {
  align-items: center;
}
.svc-combo-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.svc-impact-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

/* ── 3. GRIDS & TARJETAS CLARAS ──────────────────────────────────────────── */
/* Tarjetas Planas */
.svc-card-flat {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: transparent;
}
.svc-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(12, 35, 64, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.svc-card-title {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}
.svc-card-desc {
  font-size: 0.82rem;
  color: var(--slate-lt);
}

/* Features Grid (Mantenimiento / Casos de uso) */
.svc-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.svc-feature-card {
  padding: 2rem;
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  box-shadow: var(--sh);
}
.svc-feature-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.svc-feature-icon-teal {
  background: rgba(10, 143, 130, 0.1);
  color: var(--teal);
}
.svc-feature-icon-navy {
  background: rgba(12, 35, 64, 0.07);
  color: var(--navy);
}
.svc-feature-title {
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
}
.svc-feature-desc {
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

/* Target Grid (3 columnas genérico) */
.svc-target-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.svc-target-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  box-shadow: var(--sh);
}
.svc-target-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 8px;
  background: rgba(10, 143, 130, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.svc-target-text {
  font-size: 0.875rem;
  color: var(--slate);
  line-height: 1.55;
}
.svc-target-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.35rem;
  box-shadow: var(--sh);
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.svc-target-box-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 9px;
  background: rgba(10, 143, 130, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.svc-target-box-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.svc-target-box-desc {
  font-size: 0.8rem;
  color: var(--slate);
  margin: 0;
  line-height: 1.55;
}

/* Hub de Servicios (Tarjetas IA) */
.svc-hub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.svc-hub-card {
  padding: 2rem;
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  box-shadow: var(--sh);
  display: flex;
  flex-direction: column;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
  text-decoration: none;
}
.svc-hub-card:hover {
  box-shadow: var(--sh-hover);
  transform: translateY(-3px);
}
.svc-hub-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.svc-hub-title {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  color: var(--navy);
}
.svc-hub-desc {
  font-size: 0.875rem;
  color: var(--slate);
  line-height: 1.65;
  flex: 1;
  margin: 0;
}
.svc-hub-features {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.svc-hub-feat {
  font-size: 0.82rem;
  color: var(--slate);
  display: flex;
  gap: 0.5rem;
}
.svc-hub-link {
  font-size: 0.82rem;
  color: var(--teal);
  font-weight: 600;
  margin-top: 1.25rem;
}

/* Grids Específicos (Precios, Riesgos, Comparativas, Stack) */
.svc-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.svc-tier-card {
  padding: 2rem;
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  position: relative;
}
.svc-tier-card-basic {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.svc-tier-card-pro {
  background: rgba(13, 181, 165, 0.12);
  border: 2px solid var(--teal);
}
.svc-tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  white-space: nowrap;
}
.svc-tier-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #fff;
}
.svc-tier-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}
.svc-tier-list {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
  list-style: none;
  padding: 0;
}
.svc-tier-li {
  display: flex;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}
.svc-tier-li-pro {
  color: rgba(255, 255, 255, 0.65);
}
.svc-tier-chk {
  color: var(--teal-lt);
  flex-shrink: 0;
}

.svc-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.svc-compare-card {
  padding: 2rem;
  border-radius: var(--r-lg);
}
.svc-compare-card.included {
  background: #fff;
  border: 2px solid rgba(10, 143, 130, 0.2);
  box-shadow: var(--sh);
}
.svc-compare-card.excluded {
  background: var(--off);
  border: 2px solid var(--border);
}
.svc-compare-header {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.svc-compare-header.included {
  color: var(--teal);
}
.svc-compare-header.excluded {
  color: var(--slate-lt);
}
.svc-compare-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.svc-compare-li {
  display: flex;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--slate);
}
.svc-compare-icon {
  flex-shrink: 0;
}
.svc-compare-icon.included {
  color: var(--teal);
}
.svc-compare-icon.excluded {
  color: var(--slate-lt);
}

.svc-risk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.svc-risk-card {
  border-radius: var(--r-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.svc-risk-val {
  font-family: var(--fd);
  font-size: 2.2rem;
  margin-bottom: 0.85rem;
  line-height: 1;
}
.svc-risk-desc {
  font-size: 0.875rem;
  color: var(--slate);
  margin: 0;
  line-height: 1.65;
}

.svc-tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.svc-tool-group {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  box-shadow: var(--sh);
}
.svc-tool-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}
.svc-tool-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.svc-tool-group-name {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-lt);
}
.svc-tool-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.svc-tool-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.svc-tool-item-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}
.svc-tool-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.15rem;
}
.svc-tool-desc {
  font-size: 0.78rem;
  color: var(--slate-lt);
  line-height: 1.5;
}

.training-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.training-card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border-radius: var(--r-lg);
  border: 1px solid;
}
.training-level {
  display: inline-block;
  padding: 0.2rem 0.75rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  margin-bottom: 1rem;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.training-title {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}
.training-duration {
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.85rem;
}
.training-desc {
  font-size: 0.875rem;
  margin: 0 0 1.25rem;
  line-height: 1.6;
}
.training-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.training-li {
  display: flex;
  gap: 8px;
  font-size: 0.85rem;
}

/* ── 4. GRIDS & TARJETAS OSCURAS (DARK MODE) ─────────────────────────────── */
.svc-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.svc-stat-card {
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.svc-stat-icon {
  font-size: 1.5rem;
  margin-bottom: 0.85rem;
}
.svc-stat-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal-lt);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}
.svc-stat-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  margin: 0;
}

.svc-stat-box-dark {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  padding: 1.75rem;
}
.svc-stat-box-dark.border-top-teal {
  border-top: 2px solid var(--teal);
}
.svc-stat-box-dark.border-top-orange {
  border-top: 2px solid #f59e0b;
}
.svc-stat-box-dark.border-top-teal-lt {
  border-top: 2px solid var(--teal-lt);
}
.svc-stat-val {
  font-family: var(--fd);
  font-size: 1.65rem;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.svc-stat-desc-dark {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  line-height: 1.65;
}
.svc-stat-alert-dark {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--teal);
}

.svc-features-grid-dark {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.svc-feat-card-dark {
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s;
}
.svc-feat-card-dark:hover {
  background: rgba(255, 255, 255, 0.08);
}
.svc-feat-icon-dark {
  font-size: 1.65rem;
  margin-bottom: 0.85rem;
}
.svc-feat-title-dark {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
  color: #fff;
}
.svc-feat-desc-dark {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  line-height: 1.6;
}

/* Elementos Visuales Oscuros (Simulaciones, Impacto, Cadenas) */
.demo-wrap {
  padding: 1.5rem;
  background: #09151a;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.demo-header {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 1.25rem;
}
.demo-msg-user {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 8px 8px 8px 2px;
  padding: 0.65rem 0.9rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
  max-width: 85%;
}
.demo-msg-bot {
  background: var(--teal);
  border-radius: 8px 8px 2px 8px;
  padding: 0.65rem 0.9rem;
  font-size: 0.82rem;
  color: #fff;
  margin-bottom: 0.25rem;
  max-width: 90%;
}
.demo-msg-source {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.25);
  padding: 0.25rem 0.1rem;
  margin-bottom: 1rem;
}
.demo-footer-note {
  margin-top: 1rem;
  padding: 0.6rem 0.9rem;
  background: rgba(13, 181, 165, 0.07);
  border-radius: 8px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
}

.svc-impact-box {
  text-align: center;
  padding: 1.75rem;
  background: rgba(10, 143, 130, 0.1);
  border-radius: var(--r-xl);
  border: 1.5px solid rgba(10, 143, 130, 0.3);
}
.svc-impact-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--teal-lt);
  font-family: var(--fd);
  line-height: 1;
}
.svc-impact-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.5rem;
  line-height: 1.4;
}

.attack-chain-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.attack-chain-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.attack-chain-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.attack-chain-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  max-width: 72px;
  line-height: 1.3;
}
.attack-chain-line {
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: 1.2rem;
}

/* ── 5. LISTAS Y ELEMENTOS AISLADOS ──────────────────────────────────────── */
.svc-problem-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}
.svc-problem-item:last-child {
  border-bottom: none;
}
.svc-problem-num {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.svc-problem-text {
  font-size: 0.875rem;
  color: var(--slate);
  line-height: 1.55;
}

.svc-usecase-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.svc-usecase-item {
  display: flex;
  gap: 0.85rem;
  font-size: 0.875rem;
  color: var(--slate);
  line-height: 1.6;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
}
.svc-usecase-arrow {
  color: var(--teal);
  flex-shrink: 0;
  font-weight: 700;
  margin-top: 0.05rem;
}

.svc-target-container {
  max-width: 780px;
  margin: 0 auto;
}
.svc-target-list {
  padding-left: 0.5rem;
}
.svc-target-item {
  display: flex;
  gap: 1.25rem;
}
.svc-target-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.svc-target-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 0.25rem;
}
.svc-target-line {
  width: 2px;
  flex: 1;
  background: rgba(10, 143, 130, 0.2);
  margin: 4px 0;
}

.svc-impact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.svc-impact-li {
  display: flex;
  gap: 0.85rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.svc-impact-li:last-child {
  border-bottom: none;
}

.svc-numbers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.svc-number-card {
  padding: 1rem;
  background: #fff;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
}
.svc-number-val {
  font-family: var(--fd);
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.svc-number-label {
  font-size: 0.75rem;
  color: var(--slate-lt);
  line-height: 1.4;
}

/* ── 6. CAJAS ESPECIALES (PROMO, OWASP, ALERTS) ──────────────────────────── */
.svc-promo-box {
  padding: 2.5rem;
  background: var(--off);
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
}
.svc-promo-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 1.25rem;
}
.svc-promo-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
}
.svc-promo-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
}
.svc-promo-item:last-child {
  border-bottom: none;
}
.svc-promo-icon {
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.svc-promo-text {
  font-size: 0.875rem;
  color: var(--slate);
}

.svc-alert {
  margin-top: 1.75rem;
  padding: 1.5rem;
  background: var(--teal-xlt);
  border-radius: var(--r-md);
  border-left: 3px solid var(--teal);
}
.svc-alert-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.4rem;
}
.svc-alert-desc {
  font-size: 0.9rem;
  color: var(--slate);
  margin: 0;
}

.svc-owasp-box {
  background: var(--off);
  border-radius: var(--r-lg);
  padding: 2rem;
  border: 1px solid var(--border);
}
.svc-owasp-header {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-lt);
  margin-bottom: 1.5rem;
}
.svc-owasp-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.svc-owasp-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.svc-owasp-code {
  font-family: var(--fd);
  font-style: italic;
  color: var(--teal);
  min-width: 2.5rem;
  font-size: 0.9rem;
}
.svc-owasp-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}
.svc-owasp-desc {
  font-size: 0.78rem;
  color: var(--slate-lt);
}

.svc-combo-alert {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--teal-xlt);
  border-radius: var(--r-md);
  border-left: 3px solid var(--teal);
}
.svc-combo-alert-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.4rem;
}
.svc-combo-alert-text {
  font-size: 0.875rem;
  color: var(--slate);
  margin: 0;
}
.svc-combo-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.svc-combo-card {
  padding: 1.5rem;
  background: var(--off);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
}
.svc-combo-card-navy {
  background: var(--navy);
  border: 1px solid rgba(10, 143, 130, 0.3);
}
.svc-combo-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--slate-lt);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.svc-combo-eyebrow-navy {
  color: var(--teal-lt);
}
.svc-combo-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.svc-combo-li {
  display: flex;
  gap: 8px;
  font-size: 0.875rem;
}
.svc-combo-li.light {
  color: var(--slate);
}
.svc-combo-li.dark {
  color: rgba(255, 255, 255, 0.8);
}
.svc-combo-li.faded {
  color: #9ca3af;
}

/* ==========================================================================
   PORTAL KODIA & LEGALES
   ========================================================================== */

/* ── Elementos del Portal ── */
.portal-tag-green {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 100px;
  padding: 0.4rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #059669;
  margin-bottom: 1.35rem;
}
.portal-url {
  font-family: monospace;
  font-size: 0.82rem;
  color: var(--slate-lt);
  background: var(--off);
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  margin-bottom: 1.35rem;
}
.portal-quote {
  margin-top: 1.75rem;
  padding: 1.25rem 1.5rem;
  background: var(--off);
  border-radius: var(--r-md);
  border-left: 3px solid #10b981;
}
.portal-quote-text {
  font-size: 0.875rem;
  color: var(--slate);
  margin: 0;
  line-height: 1.65;
  font-style: italic;
}
.portal-quote-author {
  font-size: 0.75rem;
  color: var(--slate-lt);
  margin-top: 0.6rem;
  font-weight: 600;
}

.portal-feat-list {
  display: flex;
  flex-direction: column;
}
.portal-feat-item {
  display: flex;
  gap: 1.1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(12, 35, 64, 0.06);
}
.portal-feat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(12, 35, 64, 0.04);
  border: 1px solid rgba(12, 35, 64, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.portal-feat-title {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}
.portal-feat-desc {
  font-size: 0.82rem;
  color: var(--slate);
  margin: 0;
  line-height: 1.6;
}

/* ── Elementos del Dashboard ── */
.dash-sec {
  background: var(--navy);
  padding: 6rem 0;
}
.dash-module-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.dash-module-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
}
.dash-module-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}
.dash-module-content {
  flex: 1;
  min-width: 0;
}
.dash-module-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
}
.dash-module-desc {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.15rem;
}
.dash-module-price {
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

.dash-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.35rem;
  margin-bottom: 3rem;
}
.dash-pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.85rem;
  box-shadow: var(--sh);
}
.dash-pricing-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}
.dash-pricing-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}
.dash-pricing-badge {
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 100px;
  padding: 0.3rem 0.85rem;
  white-space: nowrap;
}
.dash-pricing-title {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.dash-pricing-desc {
  font-size: 0.855rem;
  color: var(--slate);
  line-height: 1.65;
  margin: 0;
}

.dash-banner {
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: 2.75rem;
  position: relative;
  overflow: hidden;
}
.dash-banner-glow {
  position: absolute;
  top: -100px;
  right: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(10, 143, 130, 0.12) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.dash-banner-content {
  position: relative;
  z-index: 1;
}
.dash-banner-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.dash-banner-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 0.5rem;
}
.dash-banner-title {
  font-family: var(--fd);
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.dash-banner-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  max-width: 420px;
  margin: 0;
}
.dash-banner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.dash-banner-card {
  border-radius: 12px;
  padding: 1.35rem;
  border: 1px solid;
}
.dash-bc-name {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0.5rem;
}
.dash-bc-price {
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
  line-height: 1;
}
.dash-bc-note {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ── Tabla Comparativa ── */
.compare-wrap {
  max-width: 720px;
  margin: 0 auto;
}
.compare-table {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh);
}
.compare-th-empty {
  padding: 0.85rem 1.35rem;
  background: var(--off);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-lt);
  display: flex;
  align-items: center;
}
.compare-th {
  padding: 0.85rem 1rem;
  text-align: center;
  border-left: 1px solid var(--border);
}
.compare-th.portal {
  background: rgba(12, 35, 64, 0.04);
}
.compare-th.dash {
  background: rgba(10, 143, 130, 0.05);
}
.compare-th-title {
  font-size: 0.82rem;
  font-weight: 700;
}
.compare-th-title.portal {
  color: var(--navy);
}
.compare-th-title.dash {
  color: var(--teal);
}
.compare-th-url {
  font-size: 0.68rem;
  color: var(--slate-lt);
  margin-top: 0.15rem;
  font-family: monospace;
}
.compare-td-label {
  padding: 0.85rem 1.35rem;
  border-top: 1px solid rgba(12, 35, 64, 0.06);
  font-size: 0.875rem;
  color: var(--navy);
}
.compare-td-val {
  padding: 0.85rem 1rem;
  border-top: 1px solid rgba(12, 35, 64, 0.06);
  border-left: 1px solid var(--border);
  text-align: center;
  font-size: 0.9rem;
}

/* Colores de celda para el bucle PHP */
.row-bg-white {
  background: #fff;
}
.row-bg-off {
  background: rgba(12, 35, 64, 0.02);
}
.text-green {
  color: #10b981;
}
.text-slate {
  color: #cbd5e1;
}
.text-navy {
  color: var(--navy);
}
.text-teal {
  color: var(--teal);
}
.font-bold {
  font-weight: 600;
}
.font-normal {
  font-weight: 400;
}

/* ==========================================================================
   IA Y AUTOMATIZACIÓN (Componentes específicos)
   ========================================================================== */
/* ── Hero Backgrounds ── */
.hero-bg-ia-main {
  background: linear-gradient(135deg, #0c2340 0%, #163354 60%, #0a3050 100%);
}
.hero-bg-chat {
  background: linear-gradient(135deg, #0c2340 0%, #163354 60%, #0c2340 100%);
}
.hero-bg-auto {
  background: linear-gradient(135deg, #0c2340 0%, #1a1040 60%, #0c2340 100%);
}
.hero-bg-msg {
  background: linear-gradient(135deg, #0c2340 0%, #064020 50%, #0c2340 100%);
}
.hero-bg-agente {
  background: linear-gradient(135deg, #0c2340 0%, #064020 50%, #0c2340 100%);
}

/* ── Utilidades de Texto ── */
.text-white {
  color: #fff;
}
.text-teal {
  color: var(--teal);
}
.text-teal-lt {
  color: var(--teal-lt);
}
.text-red {
  color: #f87171;
}
.text-slate {
  color: var(--slate);
}

/* ── Listas de Características (IA) ── */
.ia-feat-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}
.ia-feat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ia-feat-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(10, 143, 130, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}
.ia-feat-text {
  font-size: 0.9rem;
  color: var(--slate);
}
.ia-feat-text strong {
  color: var(--navy);
  font-weight: 600;
}

/* ── Demos Visuales (Chats) ── */
/* ── Burbujas exclusivas para el Chatbot Web (chatbot-ia.php) ── */
.chat-web-bot {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.85);
  padding: 0.65rem 0.9rem;
  border-radius: 16px 16px 16px 4px; /* Pico abajo a la izquierda */
  font-size: 0.875rem;
  max-width: 90%;
  margin-bottom: 0.75rem;
  line-height: 1.5;
  margin-right: auto; /* Se alinea a la izquierda */
}

.chat-web-user {
  background: var(--teal);
  color: #fff;
  padding: 0.65rem 0.9rem;
  border-radius: 16px 16px 4px 16px; /* Pico abajo a la derecha */
  font-size: 0.875rem;
  max-width: 85%;
  margin-bottom: 0.75rem;
  line-height: 1.5;
  margin-left: auto; /* Se alinea a la derecha */
  display: block;
}

.demo-wrap.ia-demo {
  background: #0d1f0d;
  border-radius: var(--r-xl);
  padding: 2rem;
  box-shadow: var(--sh-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
}
.demo-wrap.sm {
  max-width: 380px;
}
.ia-demo-header {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.ia-demo-wa-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.ia-demo-wa-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ia-demo-wa-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}
.ia-demo-wa-status {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 2px;
}
.ia-demo-channel {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.25);
  margin-top: 1rem;
}
.ia-demo-channel:first-child {
  margin-top: 0;
}

.msg-user-bubble {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.8);
  padding: 0.65rem 0.9rem;
  border-radius: 16px 16px 16px 4px;
  font-size: 0.875rem;
  max-width: 85%;
  margin-bottom: 0.75rem;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.msg-user-bubble.no-icon {
  display: block;
  max-width: 80%;
}
.msg-bot-bubble {
  background: var(--teal);
  color: #fff;
  padding: 0.65rem 0.9rem;
  border-radius: 16px 16px 4px 16px;
  font-size: 0.875rem;
  max-width: 90%;
  margin-bottom: 0.75rem;
  line-height: 1.5;
  margin-left: auto;
}
.msg-wa-bubble {
  background: #25d366;
  color: #fff;
  padding: 0.65rem 0.9rem;
  border-radius: 16px 16px 4px 16px;
  font-size: 0.875rem;
  max-width: 85%;
  margin-left: auto;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.msg-gmail-bubble {
  background: rgba(234, 67, 53, 0.3);
  color: #fff;
  padding: 0.65rem 0.9rem;
  border-radius: 16px 16px 4px 16px;
  font-size: 0.875rem;
  max-width: 85%;
  margin-left: auto;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.ia-demo-input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
}
.demo-footer-note.transparent {
  background: transparent;
  padding-top: 1rem;
  border-top: none;
}

/* ── Flujos de Automatización (n8n) ── */
.flow-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.flow-step {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.6rem 0.9rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 9px;
  border-left: 3px solid;
}
.flow-step.blue {
  border-left-color: #3b82f6;
}
.flow-step.green {
  border-left-color: #10b981;
}
.flow-step.teal {
  border-left-color: #0db5a5;
}
.flow-label {
  font-size: 0.7rem;
  font-weight: 700;
  white-space: nowrap;
  min-width: 70px;
}
.flow-label.blue {
  color: #3b82f6;
}
.flow-label.green {
  color: #10b981;
}
.flow-label.teal {
  color: #0db5a5;
}
.flow-desc {
  font-size: 0.81rem;
  color: rgba(255, 255, 255, 0.65);
}

.flow-stats-box {
  margin-top: 1.25rem;
  border: 1px solid rgba(13, 181, 165, 0.15);
  padding: 1rem;
  border-radius: 8px;
  background: rgba(13, 181, 165, 0.05);
}
.flow-stat-title {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.flow-stats-row {
  display: flex;
  gap: 1.5rem;
}
.flow-stat-val {
  font-size: 1.2rem;
  font-weight: 700;
}
.flow-stat-label {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ── Tarjetas y Comparativas Oscuras ── */
.ia-dark-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.ia-dark-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: background 0.2s;
}
.ia-dark-card:hover {
  background: rgba(255, 255, 255, 0.09);
}
.ia-dark-icon {
  font-size: 1.65rem;
  margin-bottom: 0.85rem;
}
.ia-dark-title {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
  color: #fff;
}
.ia-dark-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  line-height: 1.6;
}

.ia-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.ia-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 900px;
  margin: 0 auto;
  gap: 1.5rem;
}
.ia-compare-card {
  padding: 2rem;
  border-radius: var(--r-xl);
}
.ia-compare-card.bad {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.ia-compare-card.good {
  background: rgba(10, 143, 130, 0.12);
  border: 1px solid rgba(13, 181, 165, 0.2);
}
.ia-compare-header {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.85rem;
}
.ia-compare-header.good {
  color: var(--teal);
}
.ia-compare-header.bad {
  color: rgba(255, 255, 255, 0.35);
}

.ia-list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ia-list-clean li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.875rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  line-height: 1.5;
}
.ia-list-clean li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.ia-list-clean.bad li {
  color: rgba(255, 255, 255, 0.6);
}
.ia-list-clean.good li {
  color: rgba(255, 255, 255, 0.7);
}

/* ── Alertas (Stats) ── */
.ia-alert-flex {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r-md);
  border-left: 3px solid var(--teal);
  margin-bottom: 0.6rem;
}
.ia-alert-num {
  color: var(--teal-lt);
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.ia-alert-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.6;
}

.ia-cta-box {
  display: inline-block;
  padding: 2rem 3rem;
  background: var(--navy);
  border-radius: var(--r-xl);
  text-align: center;
}
.ia-cta-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-lt);
  margin-bottom: 1rem;
}

/* ── FAQ STYLES (ACORDEÓN) ───────────────────────────────────────────────── */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  background: transparent; /* Hereda el color de la sección */
}

.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  padding: 1.5rem 0;
  cursor: pointer;
  text-align: left;
  gap: 1.5rem;
  outline: none;
}

.faq-question {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  transition: color 0.3s ease;
}

.faq-icon-wrap {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: rgba(10, 143, 130, 0.1);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-arrow {
  transition: transform 0.3s ease;
}

.faq-body {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer {
  margin: 0;
  padding-bottom: 1.5rem;
  padding-right: 2.5rem;
  color: var(--slate);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ── ESTADOS ACTIVOS (Cuando el panel está abierto) ── */
.faq-item.open .faq-body {
  max-height: 800px; /* Pon un valor alto que cubra tu respuesta más larga */
}

/* 2. Cambiamos 'is-open' por 'open' para que coincida con el JavaScript */
.faq-item.open .faq-question {
  color: var(--teal);
}

.faq-item.open .faq-icon-wrap {
  background: var(--teal);
  color: #fff;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

/* Adaptación para fondos oscuros (si usas la clase sec-dark) */
.sec-dark .faq-question {
  color: #fff;
}
.sec-dark .faq-answer {
  color: rgba(255, 255, 255, 0.7);
}
.sec-dark .faq-container,
.sec-dark .faq-item {
  border-color: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   NUEVO: ESTRUCTURA PARA AUDITORÍA ÚNICA (SEO, ADS, SEGURIDAD)
   ========================================================================== */

.single-audit-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr; /* Proporción 60/40 */
  gap: 2.5rem;
  align-items: stretch;
  margin-top: 3rem;
}

/* --- Columna Izquierda: Entregables --- */
.audit-deliverables {
  background: #fff;
  padding: 3rem;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  box-shadow: var(--sh-md);
  display: flex;
  flex-direction: column;
}

.audit-deliverables h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 2rem;
  font-weight: 700;
}

.audit-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 auto 0; /* Empuja el precio y botón al final */
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.audit-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.5;
}

.audit-feature-list li svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* Caja de Precio */
.audit-price-tag {
  background: var(--off);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.5rem;
  border-left: 4px solid var(--teal);
}

.audit-price-tag .price-label {
  font-weight: 600;
  color: var(--slate);
  font-size: 1rem;
}

.audit-price-tag .price-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy);
}

/* --- Columna Derecha: Cross-sell Pentest --- */
.audit-cross-sell {
  background: var(--navy-dark);
  padding: 3.5rem 3rem;
  border-radius: var(--r-xl);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Efecto de brillo de fondo para la caja oscura */
.audit-cross-sell::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cross-sell-icon {
  background: rgba(239, 68, 68, 0.15);
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.audit-cross-sell h3 {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.audit-cross-sell p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

.cross-sell-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Estilo específico para los botones dentro de la caja azul */
.audit-cross-sell .btn-outline {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 100%;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
}

.audit-cross-sell .btn-outline:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .single-audit-layout {
    grid-template-columns: 1fr; /* Una columna en tablets y móviles */
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .audit-deliverables, 
  .audit-cross-sell {
    padding: 2rem 1.5rem;
  }
  
  .audit-price-tag {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    padding: 1.5rem;
  }

  .audit-price-tag .price-value {
    font-size: 2rem;
  }
}

.text-white { color: #ffffff; }
.text-white-dim { color: rgba(255, 255, 255, 0.7); }

/* El resto del layout se mantiene igual */
.single-audit-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  margin-top: 3rem;
}

.audit-deliverables {
  background: var(--off);
  padding: 3rem;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
}

.audit-deliverables h3 {
  color: var(--navy);
  margin-bottom: 1.5rem;
}

@media (max-width: 900px) {
  .single-audit-layout { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .svc-layout,
  .svc-stats-grid,
  .svc-tools-grid,
  .svc-features-grid,
  .svc-impact-layout,
  .svc-compare-grid,
  .svc-target-grid,
  .svc-risk-grid,
  .svc-tier-grid,
  .svc-combo-layout,
  .training-grid,
  .dash-pricing-grid,
  .dash-banner-grid,
  .svc-hub-grid,
  .ia-layout,
  .ia-stats-grid,
  .ia-dark-grid,
  .svc-layout {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }

  .svc-target-item {
    margin-bottom: 0.75rem;
  }
}
