/* ============================================================
   CREO — AI Solutions Enfoque Section
   BEM: Prefijo aio- (AI Enfoque)
   ============================================================ */

.aio-enfoque-section {
  position: relative;
  overflow: hidden;
  background: var(--creo-light);
  transition: background 1s cubic-bezier(0.77, 0, 0.18, 1);
  padding: 80px 0 0; /* Standard padding-top */
}

/* Ensure content children are above absolute background elements 
   without breaking the absolute elements themselves */
.aio-enfoque-section > div:not([class*="aio-grid"]):not([class*="aio-stripes"]):not([class*="aio-glow-blob"]):not([class*="aio-flash"]) {
  position: relative;
  z-index: 1;
}

.aio-enfoque-section--unlocked {
  background: var(--creo-dark-blue);
}

/* Dot grid texture */
.aio-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(circle, rgba(255, 117, 31, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0;
  transition: opacity 1.2s ease 0.4s;
}

.aio-enfoque-section--unlocked .aio-grid {
  opacity: 1;
}

/* Vertical stripe lines */
.aio-stripes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: repeating-linear-gradient(90deg,
      transparent,
      transparent 79px,
      rgba(255, 255, 255, 0.018) 79px,
      rgba(255, 255, 255, 0.018) 80px);
  opacity: 0;
  transition: opacity 1s ease 0.5s;
}

.aio-enfoque-section--unlocked .aio-stripes {
  opacity: 1;
}

/* Orange glow blobs */
.aio-glow-blob {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0;
  transition: opacity 1.4s ease 0.5s;
}

.aio-glow-blob--1 {
  width: 600px;
  height: 600px;
  background: rgba(255, 117, 31, 0.1);
  top: -150px;
  right: -120px;
}

.aio-glow-blob--2 {
  width: 400px;
  height: 400px;
  background: rgba(255, 117, 31, 0.06);
  bottom: -80px;
  left: -100px;
}

.aio-enfoque-section--unlocked .aio-glow-blob {
  opacity: 1;
}

/* Background elements stay absolute */
.aio-enfoque-section .aio-grid,
.aio-enfoque-section .aio-stripes,
.aio-enfoque-section .aio-glow-blob {
  position: absolute;
}

/* Flash overlay */
.aio-flash {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.08s;
}

.aio-flash--pop {
  opacity: 0.55;
}

/* Toast */
.aio-toast {
  position: fixed;
  top: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(-18px);
  z-index: 9997;
  background: var(--creo-dark);
  border: 1.5px solid rgba(255, 117, 31, 0.5);
  border-radius: 12px;
  padding: 14px 26px;
  display: flex;
  align-items: center;
  gap: 13px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.34, 1.5, 0.64, 1);
  box-shadow: 0 8px 40px rgba(255, 117, 31, 0.22);
  white-space: nowrap;
}

.aio-toast--show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.aio-toast-icon {
  font-size: 20px;
  animation: aioSpinIn 0.5s ease;
}

@keyframes aioSpinIn {
  from {
    transform: rotate(-20deg) scale(0.5);
  }

  to {
    transform: none;
  }
}

.aio-toast-line1 {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--creo-accent);
  text-transform: uppercase;
}

.aio-toast-line2 {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 2px;
}

/* Header */
.aio-header {
  padding: 0;
  text-align: center;
}

.aio-header > .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

/* System badge */
.aio-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  padding: 6px 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 32px;
  border: 1px solid rgba(11, 23, 61, 0.14);
  background: rgba(11, 23, 61, 0.06);
  color: rgba(11, 23, 61, 0.5);
  transition: background 0.7s, border-color 0.7s, color 0.7s;
}

.aio-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(11, 23, 61, 0.25);
  transition: background 0.5s, box-shadow 0.5s;
  flex-shrink: 0;
}

.aio-enfoque-section--unlocked .aio-badge {
  background: rgba(255, 117, 31, 0.12);
  border-color: rgba(255, 117, 31, 0.35);
  color: var(--creo-accent);
}

.aio-enfoque-section--unlocked .aio-badge-dot {
  background: var(--creo-accent);
  box-shadow: 0 0 8px var(--creo-accent), 0 0 20px rgba(255, 117, 31, 0.4);
}

/* Main title */
.aio-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.028em;
  max-width: 780px;
  margin: 0 auto 20px;
  color: var(--creo-dark);
  transition: color 0.7s;
}

.aio-title em {
  font-style: normal;
  color: var(--creo-accent);
}

.aio-title--locked {
  display: block;
}

.aio-title--unlocked {
  display: none;
}

.aio-enfoque-section--unlocked .aio-title {
  color: var(--creo-white);
}

.aio-enfoque-section--unlocked .aio-title--locked {
  display: none;
}

.aio-enfoque-section--unlocked .aio-title--unlocked {
  display: block;
}

/* Description */
.aio-desc {
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.75;
  max-width: 500px;
  margin: 0 auto 48px;
  color: rgba(11, 23, 61, 0.52);
  transition: color 0.7s;
}

.aio-enfoque-section--unlocked .aio-desc {
  color: rgba(239, 229, 207, 0.48);
}

/* XP Bar */
.aio-xp-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
}

.aio-xp-labels {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 340px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.6s;
}

.aio-xp-lv {
  color: rgba(11, 23, 61, 0.35);
}

.aio-xp-val {
  color: rgba(11, 23, 61, 0.35);
}

.aio-enfoque-section--unlocked .aio-xp-lv {
  color: rgba(255, 117, 31, 0.65);
}

.aio-enfoque-section--unlocked .aio-xp-val {
  color: rgba(255, 255, 255, 0.4);
}

.aio-xp-track {
  width: 340px;
  height: 6px;
  border-radius: 99px;
  background: rgba(11, 23, 61, 0.1);
  overflow: hidden;
  position: relative;
  transition: background 0.6s;
}

.aio-enfoque-section--unlocked .aio-xp-track {
  background: rgba(255, 255, 255, 0.1);
}

.aio-xp-fill {
  height: 100%;
  width: 0;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--creo-accent), #ff9a50);
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.aio-xp-fill::after {
  content: '';
  position: absolute;
  top: 0;
  right: -30px;
  width: 50px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  animation: aioShine 2.5s ease-in-out infinite;
}

@keyframes aioShine {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

/* Unlock Button */
.aio-unlock-btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  background: var(--creo-dark);
  color: var(--creo-light);
  box-shadow: 0 8px 32px rgba(11, 23, 61, 0.22);
  position: relative;
  overflow: hidden;
  transition: background 0.5s, color 0.5s, box-shadow 0.3s, transform 0.25s;
}

.aio-unlock-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(11, 23, 61, 0.28);
}

.aio-unlock-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}

.aio-unlock-btn--flash::before {
  opacity: 1;
}

.aio-enfoque-section--unlocked .aio-unlock-btn {
  background: transparent;
  border: 1.5px solid rgba(255, 117, 31, 0.3);
  color: rgba(255, 117, 31, 0.55);
  box-shadow: none;
  font-size: 11px;
  padding: 9px 20px;
}

.aio-enfoque-section--unlocked .aio-unlock-btn:hover {
  border-color: rgba(255, 117, 31, 0.6);
  color: var(--creo-accent);
  transform: none;
  box-shadow: 0 0 20px rgba(255, 117, 31, 0.1);
}

/* Scroll hint */
.aio-scroll-hint {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.28;
  transition: opacity 0.5s;
  animation: aioBob 2.2s ease-in-out infinite;
}

.aio-scroll-hint--gone {
  opacity: 0;
  pointer-events: none;
  animation: none;
}

@keyframes aioBob {

  0%,
  100% {
    transform: translateY(0);
  }

  55% {
    transform: translateY(6px);
  }
}

.aio-scroll-hint span {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--creo-dark);
  transition: color 0.6s;
}

.aio-scroll-hint svg {
  width: 15px;
  height: 15px;
  stroke: var(--creo-dark);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.6s;
}

.aio-enfoque-section--unlocked .aio-scroll-hint span {
  color: rgba(255, 255, 255, 0.4);
}

.aio-enfoque-section--unlocked .aio-scroll-hint svg {
  stroke: rgba(255, 255, 255, 0.4);
}

/* Panels */
.aio-panels-wrap {
  padding: 0 0 0;
}

.aio-panels-inner {
  position: relative;
  min-height: 500px;
}

.aio-panel {
  width: 100%;
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.aio-panel--off {
  opacity: 0;
  transform: translateY(-16px);
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
}

.aio-panel--on {
  opacity: 1;
  transform: none;
  pointer-events: all;
  position: relative;
}

/* Panel intros */
.aio-panel-intro {
  text-align: center;
  padding: 0 0 48px;
}

.aio-panel-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 7px;
  padding: 4px 13px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.aio-panel-tag--locked {
  background: rgba(11, 23, 61, 0.07);
  color: rgba(11, 23, 61, 0.4);
  border: 1px solid rgba(11, 23, 61, 0.1);
}

.aio-panel-tag--access {
  background: rgba(255, 117, 31, 0.1);
  border: 1px solid rgba(255, 117, 31, 0.28);
  color: var(--creo-accent);
}

.aio-dot-blink {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--creo-accent);
  animation: aioBlink 1.2s step-start infinite;
}

@keyframes aioBlink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.18;
  }
}

.aio-panel-h {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  max-width: 640px;
  margin: 0 auto 12px;
}

.aio-panel-h--dim {
  opacity: 0.38;
  color: var(--creo-dark);
}

.aio-panel-h--lit {
  color: var(--creo-white);
}

.aio-panel-h em {
  font-style: normal;
  color: var(--creo-accent);
}

.aio-panel-sub {
  font-size: 14.5px;
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.65;
}

.aio-panel-sub--dim {
  color: rgba(11, 23, 61, 0.45);
}

.aio-panel-sub--cream {
  color: rgba(255, 255, 255, 0.42);
}

/* Locked grid */
.aio-lgrid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  filter: blur(2px);
  opacity: 0.45;
  pointer-events: none;
  position: relative;
}

.aio-lgrid::after {
  content: '🔒  Desbloquea para ver el sistema completo';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(11, 23, 61, 0.55);
  background: radial-gradient(ellipse at center, rgba(239, 229, 207, 0.88) 30%, transparent 80%);
  border-radius: 16px;
  z-index: 2;
}

.aio-lc {
  background: rgba(11, 23, 61, 0.055);
  border: 1.5px dashed rgba(11, 23, 61, 0.12);
  border-radius: 16px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.aio-lc:nth-child(1) {
  grid-column: span 5;
}

.aio-lc:nth-child(2) {
  grid-column: span 4;
}

.aio-lc:nth-child(3) {
  grid-column: span 3;
}

.aio-lc:nth-child(4) {
  grid-column: span 3;
}

.aio-lc:nth-child(5) {
  grid-column: span 3;
}

.aio-lc:nth-child(6) {
  grid-column: span 3;
}

.aio-lc:nth-child(7) {
  grid-column: span 3;
}

.aio-lc-bar {
  height: 10px;
  border-radius: 6px;
  background: rgba(11, 23, 61, 0.11);
}

.aio-lc-bar--sm {
  height: 7px;
  margin-top: 3px;
}

.aio-lc-bar--w80 {
  width: 80%;
}

.aio-lc-bar--w70 {
  width: 70%;
}

.aio-lc-bar--w60 {
  width: 60%;
}

.aio-lc-bar--w55 {
  width: 55%;
}

.aio-lc-bar--w45 {
  width: 45%;
}

.aio-lc-bar--w35 {
  width: 35%;
}

/* Bento */
.aio-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.aio-bento-card {
  border-radius: 20px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  cursor: default;
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.aio-bento-card--in {
  opacity: 1;
  transform: none;
}

.aio-bento-card:hover {
  transform: translateY(-5px) !important;
}

/* Bento sizes */
.aio-bento-card--r1big {
  grid-column: span 5;
  min-height: 310px;
}

.aio-bento-card--r1med {
  grid-column: span 4;
  min-height: 310px;
}

.aio-bento-card--r1sm {
  grid-column: span 3;
  min-height: 310px;
}

.aio-bento-card--r2sm {
  grid-column: span 3;
  min-height: 250px;
}

.aio-bento-card--r2med {
  grid-column: span 4;
  min-height: 250px;
}

.aio-bento-card--r2big {
  grid-column: span 5;
  min-height: 250px;
}

/* Bento color themes */
.aio-bento-card--glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.aio-bento-card--glass:hover {
  box-shadow: 0 0 40px rgba(255, 117, 31, 0.12), 0 22px 56px rgba(0, 0, 0, 0.38);
}

.aio-bento-card--orange {
  background: var(--creo-accent);
  border: none;
}

.aio-bento-card--orange:hover {
  box-shadow: 0 0 60px rgba(255, 117, 31, 0.45), 0 22px 56px rgba(0, 0, 0, 0.35);
}

.aio-bento-card--dim {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.aio-bento-card--dim:hover {
  box-shadow: 0 0 28px rgba(255, 117, 31, 0.08), 0 18px 44px rgba(0, 0, 0, 0.32);
}

/* Top accent line */
.aio-bento-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 117, 31, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}

.aio-bento-card--in::after {
  opacity: 1;
}

.aio-bento-card--orange::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
}

/* Background orb */
.aio-bento-card::before {
  content: '';
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  bottom: -60px;
  right: -50px;
}

.aio-bento-card--glass::before {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 117, 31, 0.1) 0%, transparent 70%);
}

.aio-bento-card--orange::before {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.aio-bento-card--dim::before {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(255, 117, 31, 0.07) 0%, transparent 70%);
}

/* Icon */
.aio-bento-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.aio-bento-card--glass .aio-bento-ico {
  background: rgba(255, 117, 31, 0.15);
}

.aio-bento-card--orange .aio-bento-ico {
  background: rgba(11, 23, 61, 0.15);
}

.aio-bento-card--dim .aio-bento-ico {
  background: rgba(255, 255, 255, 0.07);
}

.aio-bento-ico svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.aio-bento-card--glass .aio-bento-ico svg {
  stroke: var(--creo-accent);
}

.aio-bento-card--orange .aio-bento-ico svg {
  stroke: var(--creo-white);
}

.aio-bento-card--dim .aio-bento-ico svg {
  stroke: rgba(255, 117, 31, 0.7);
}

/* Label */
.aio-bento-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.aio-bento-card--glass .aio-bento-label {
  color: rgba(255, 117, 31, 0.45);
}

.aio-bento-card--orange .aio-bento-label {
  color: rgba(255, 255, 255, 0.5);
}

.aio-bento-card--dim .aio-bento-label {
  color: rgba(255, 117, 31, 0.28);
}

/* Title */
.aio-bento-title {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.7vw, 19px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 9px;
}

.aio-bento-card--glass .aio-bento-title,
.aio-bento-card--orange .aio-bento-title {
  color: var(--creo-white);
}

.aio-bento-card--dim .aio-bento-title {
  color: rgba(255, 255, 255, 0.82);
}

/* Description */
.aio-bento-desc {
  font-size: 12.5px;
  line-height: 1.62;
  font-weight: 400;
}

.aio-bento-card--glass .aio-bento-desc {
  color: rgba(255, 255, 255, 0.42);
}

.aio-bento-card--orange .aio-bento-desc {
  color: rgba(255, 255, 255, 0.72);
}

.aio-bento-card--dim .aio-bento-desc {
  color: rgba(255, 255, 255, 0.32);
}

/* Pill tag */
.aio-bento-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 99px;
  padding: 5px 12px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  width: fit-content;
  margin-top: 16px;
}

.aio-bento-pill::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.aio-bento-card--glass .aio-bento-pill {
  background: rgba(255, 117, 31, 0.14);
  color: var(--creo-accent);
  border: 1px solid rgba(255, 117, 31, 0.25);
}

.aio-bento-card--glass .aio-bento-pill::before {
  background: var(--creo-accent);
  box-shadow: 0 0 6px rgba(255, 117, 31, 0.5);
}

.aio-bento-card--orange .aio-bento-pill {
  background: rgba(11, 23, 61, 0.18);
  color: var(--creo-white);
}

.aio-bento-card--orange .aio-bento-pill::before {
  background: var(--creo-white);
}

.aio-bento-card--dim .aio-bento-pill {
  background: rgba(255, 117, 31, 0.08);
  color: rgba(255, 117, 31, 0.6);
  border: 1px solid rgba(255, 117, 31, 0.15);
}

.aio-bento-card--dim .aio-bento-pill::before {
  background: rgba(255, 117, 31, 0.5);
}

/* CTA Section */
.aio-cta-block {
  padding: 80px 0 120px;
  position: relative;
  z-index: 1;
}

.aio-cta-card {
  background: #f7f1e4;
  border: 1.5px solid #d8cfb8;
  border-radius: 24px;
  padding: 60px 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: background 0.7s, border-color 0.7s;
}

.aio-enfoque-section--unlocked .aio-cta-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.aio-cta-card::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  right: -80px;
  top: -80px;
  background: radial-gradient(circle, rgba(255, 117, 31, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.aio-cta-card::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  left: -50px;
  bottom: -60px;
  background: radial-gradient(circle, rgba(11, 23, 61, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.aio-enfoque-section--unlocked .aio-cta-card::after {
  background: radial-gradient(circle, rgba(255, 117, 31, 0.06) 0%, transparent 65%);
}

.aio-cta-left {
  position: relative;
}

.aio-cta-eyebrow {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--creo-accent);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.aio-cta-eyebrow::before {
  content: '';
  width: 18px;
  height: 1.5px;
  background: var(--creo-accent);
}

.aio-cta-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
  color: var(--creo-dark);
  transition: color 0.7s;
}

.aio-cta-title em {
  font-style: normal;
  color: var(--creo-accent);
}

.aio-enfoque-section--unlocked .aio-cta-title {
  color: var(--creo-white);
}

.aio-cta-desc {
  font-size: 14.5px;
  color: rgba(11, 23, 61, 0.54);
  line-height: 1.7;
  max-width: 460px;
  transition: color 0.7s;
}

.aio-cta-desc strong {
  color: var(--creo-dark);
  font-weight: 700;
}

.aio-enfoque-section--unlocked .aio-cta-desc {
  color: rgba(239, 229, 207, 0.5);
}

.aio-enfoque-section--unlocked .aio-cta-desc strong {
  color: rgba(239, 229, 207, 0.85);
}

.aio-cta-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  flex-shrink: 0;
}

.aio-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: var(--creo-accent);
  color: var(--creo-white);
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(255, 117, 31, 0.35);
  transition: transform 0.22s, box-shadow 0.22s, opacity 0.2s;
  white-space: nowrap;
}

.aio-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(255, 117, 31, 0.48);
}

.aio-btn-primary svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.aio-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: transparent;
  color: rgba(11, 23, 61, 0.5);
  border: 1.5px solid #d8cfb8;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.22s, color 0.22s, transform 0.22s;
  white-space: nowrap;
}

.aio-btn-ghost:hover {
  border-color: var(--creo-dark);
  color: var(--creo-dark);
  transform: translateY(-1px);
}

.aio-enfoque-section--unlocked .aio-btn-ghost {
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.5);
}

.aio-enfoque-section--unlocked .aio-btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.85);
}

.aio-btn-ghost svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Stats strip */
.aio-cta-stats {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.aio-cta-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.aio-cta-stat-num {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  color: var(--creo-accent);
  line-height: 1;
  letter-spacing: -0.02em;
}

.aio-cta-stat-lbl {
  font-size: 11px;
  font-weight: 600;
  color: rgba(11, 23, 61, 0.38);
  transition: color 0.7s;
}

.aio-enfoque-section--unlocked .aio-cta-stat-lbl {
  color: rgba(255, 255, 255, 0.3);
}

/* Reveals */
.aio-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.aio-reveal--in {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 900px) {
  .aio-cta-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 32px;
  }

  .aio-bento,
  .aio-lgrid {
    grid-template-columns: 1fr 1fr;
  }

  .aio-bento-card,
  .aio-lc {
    grid-column: span 1 !important;
    min-height: 210px !important;
  }

  .aio-container {
    padding: 0 24px;
  }
}

@media (max-width: 520px) {
  .aio-bento {
    grid-template-columns: 1fr;
  }

  .aio-cta-card {
    padding: 32px 24px;
  }

  .aio-cta-stats {
    gap: 20px;
  }

  .aio-xp-labels,
  .aio-xp-track {
    width: 100%;
    max-width: 300px;
  }
}