/* ============================================================
   CREO — AI Solutions Services Section
   BEM: Prefijo aios- (AI Services)
   ============================================================ */

.aios-services-section {
  background: var(--creo-dark);
  background-color: #08102A;
  color: var(--creo-white);
  position: relative;
  overflow: visible;
  z-index: 10;
  box-sizing: border-box;
}

.aios-services-section *,
.aios-services-section *::before,
.aios-services-section *::after {
  box-sizing: border-box;
}

/* Header */
.aios-header {
  padding: 100px 0 80px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.aios-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 99px;
  padding: 5px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: rgba(239, 229, 207, 0.6);
  margin-bottom: 24px;
}

.aios-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--creo-accent);
  display: inline-block;
}

.aios-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--creo-white);
  max-width: 720px;
  margin-bottom: 24px;
}

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

.aios-desc {
  font-size: 16px;
  line-height: 1.72;
  color: rgba(239, 229, 207, 0.45);
  max-width: 500px;
  margin-bottom: 52px;
}

/* Service nav pills */
.aios-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.aios-nav-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  padding: 8px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.aios-nav-pill:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

.aios-nav-pill--active {
  background: rgba(255, 117, 31, 0.15);
  border-color: rgba(255, 117, 31, 0.35);
  color: var(--creo-accent);
}

.aios-nav-pill-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

/* Divider */
.aios-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin: 0;
}

/* Feature Blocks */
.aios-features {
  padding: 0;
  display: block;
  visibility: visible;
}

.aios-feature-block {
  padding: 100px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: visible;
  display: block;
  visibility: visible;
  min-height: 200px;
  width: 100%;
  box-sizing: border-box;
}

.aios-feature-block::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1s ease;
}

.aios-feature-block--in-view::before {
  opacity: 1;
}

.aios-feature-block:nth-child(odd)::before {
  background: radial-gradient(circle, rgba(255, 117, 31, 0.06) 0%, transparent 70%);
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
}

.aios-feature-block:nth-child(even)::before {
  background: radial-gradient(circle, rgba(255, 117, 31, 0.06) 0%, transparent 70%);
  left: -200px;
  top: 50%;
  transform: translateY(-50%);
}

.aios-feature-inner {
  display: grid;
  display: -ms-grid;
  grid-template-columns: 1fr 1fr;
  -ms-grid-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.aios-feature-text,
.aios-feature-visual {
  width: 100%;
  max-width: 100%;
}

.aios-feature-block:nth-of-type(even) .aios-feature-inner,
.aios-feature-block:nth-child(even) .aios-feature-inner {
  direction: rtl;
}

.aios-feature-block:nth-of-type(even) .aios-feature-inner > *,
.aios-feature-block:nth-child(even) .aios-feature-inner > * {
  direction: ltr;
}

/* Text Side */
.aios-feature-text {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
  max-width: 100%;
}

/* Bloques impares (1,3,5): texto entra desde izquierda */
.aios-feature-block:nth-of-type(odd) .aios-feature-text,
.aios-feature-block:nth-child(odd) .aios-feature-text {
  transform: translateX(-48px);
}

/* Bloques pares (2,4): texto entra desde derecha */
.aios-feature-block:nth-of-type(even) .aios-feature-text,
.aios-feature-block:nth-child(even) .aios-feature-text {
  transform: translateX(48px);
}

/* Cuando entra en vista, vuelve a su posición */
.aios-feature-block--in-view .aios-feature-text {
  opacity: 1;
  transform: none;
}

.aios-feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--creo-accent);
  margin-bottom: 20px;
}

.aios-feature-tag::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--creo-accent);
}

.aios-feature-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--creo-white);
  margin-bottom: 18px;
}

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

.aios-feature-desc {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(239, 229, 207, 0.5);
  margin-bottom: 36px;
}

/* Feature list */
.aios-feature-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 40px;
}

.aios-feature-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: flex-start;
}

.aios-feature-check {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: rgba(255, 117, 31, 0.15);
  border: 1px solid rgba(255, 117, 31, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.aios-feature-check svg {
  width: 10px;
  height: 10px;
  stroke: var(--creo-accent);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.aios-feature-item-text {
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.45;
}

/* CTA row */
.aios-feature-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Buttons */
.aios-btn-orange {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--creo-accent);
  color: var(--creo-white);
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  padding: 13px 26px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(255, 117, 31, 0.3);
  transition: transform 0.22s, box-shadow 0.22s;
  white-space: nowrap;
}

.aios-btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(255, 117, 31, 0.45);
}

.aios-btn-orange svg {
  width: 12px;
  height: 12px;
  stroke: var(--creo-white);
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.aios-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.aios-btn-ghost:hover {
  color: rgba(255, 255, 255, 0.7);
}

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

/* Visual Side */
.aios-feature-visual {
  opacity: 0;
  transform: translateX(48px) scale(0.97);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.1s, transform 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
  width: 100%;
  max-width: 100%;
}

/* Bloques impares (1,3,5): imagen entra desde derecha */
.aios-feature-block:nth-of-type(odd) .aios-feature-visual,
.aios-feature-block:nth-child(odd) .aios-feature-visual {
  transform: translateX(48px) scale(0.97);
}

/* Bloques pares (2,4): imagen entra desde izquierda */
.aios-feature-block:nth-of-type(even) .aios-feature-visual,
.aios-feature-block:nth-child(even) .aios-feature-visual {
  transform: translateX(-48px) scale(0.97);
}

.aios-feature-block--in-view .aios-feature-visual {
  opacity: 1;
  transform: none;
}

/* Mockup */
.aios-mockup {
  width: 100%;
  max-width: 100%;
  min-height: 280px;
  height: auto;
  border-radius: 20px;
  overflow: visible;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
  box-sizing: border-box;
}

.aios-mockup-bar {
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
}

.aios-mockup-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.aios-mockup-dot--red { background: #FF5F57; }
.aios-mockup-dot--yellow { background: #FEBC2E; }
.aios-mockup-dot--green { background: #28C840; }

.aios-mockup-label {
  margin-left: 8px;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.28);
}

.aios-mockup-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 200px;
}

/* Chat mockup */
.aios-bubble {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 12px;
  line-height: 1.5;
  max-width: 82%;
}

.aios-bubble--bot {
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.78);
  border-radius: 4px 12px 12px 12px;
  align-self: flex-start;
}

.aios-bubble--user {
  background: var(--creo-accent);
  color: var(--creo-white);
  border-radius: 12px 4px 12px 12px;
  align-self: flex-end;
}

.aios-bubble--typing {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 14px 16px;
}

.aios-bubble--typing span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  animation: aiosTypingPulse 1.2s ease-in-out infinite;
}

.aios-bubble--typing span:nth-child(2) { animation-delay: 0.2s; }
.aios-bubble--typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes aiosTypingPulse {
  0%, 80%, 100% { transform: scale(1); opacity: 0.5; }
  40% { transform: scale(1.4); opacity: 1; }
}

/* Voice wave */
.aios-voice-bar {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 48px;
  padding: 0 4px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
}

.aios-voice-bar-wave {
  border-radius: 2px;
  background: var(--creo-accent);
  width: 4px;
  animation: aiosVoiceWave 1.4s ease-in-out infinite alternate;
  flex-shrink: 0;
}

.aios-voice-bar-wave:nth-child(even) {
  background: rgba(255, 117, 31, 0.45);
}

@keyframes aiosVoiceWave {
  from { height: 15%; }
  to { height: 90%; }
}

/* Status row */
.aios-status-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 8px 12px;
}

.aios-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: aiosBlink 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes aiosBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.aios-status-txt {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
}

/* Social mockup */
.aios-post-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.aios-post-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
}

.aios-post-img {
  height: 100px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aios-post-img-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 117, 31, 0.2) 0%, rgba(11, 23, 61, 0.6) 100%);
}

.aios-post-img-ico {
  position: relative;
  z-index: 1;
}

.aios-post-img-ico svg {
  width: 28px;
  height: 28px;
  stroke: rgba(255, 255, 255, 0.35);
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
}

.aios-ai-badge {
  position: absolute;
  bottom: 8px;
  right: 10px;
  z-index: 1;
  background: var(--creo-accent);
  color: var(--creo-white);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 99px;
}

.aios-post-info {
  padding: 10px 14px;
}

.aios-post-platform {
  font-size: 9.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.aios-post-copy {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.45;
}

.aios-post-stats {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}

.aios-post-stat {
  font-size: 10.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
}

.aios-post-stat b {
  color: var(--creo-accent);
}

/* Schedule list */
.aios-sched-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.aios-sched-item {
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 7px 11px;
}

.aios-sched-t {
  font-size: 10px;
  font-weight: 700;
  color: var(--creo-accent);
  width: 38px;
  flex-shrink: 0;
}

.aios-sched-b {
  flex: 1;
  height: 4px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.aios-sched-f {
  height: 100%;
  border-radius: 99px;
  background: var(--creo-accent);
  animation: aiosScheduleGrow 2s ease-in-out infinite alternate;
}

@keyframes aiosScheduleGrow {
  from { width: 20%; }
  to { width: 85%; }
}

.aios-sched-p {
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.28);
  font-weight: 600;
  width: 48px;
  text-align: right;
}

/* Dashboard mockup */
.aios-dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.aios-dash-h-title {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
}

.aios-dash-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9.5px;
  font-weight: 700;
  color: #4ade80;
}

.aios-dash-live::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: aiosBlink 2s ease-in-out infinite;
}

.aios-metrics-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 7px;
  margin-bottom: 12px;
}

.aios-metric {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 11px 13px;
}

.aios-metric-lbl {
  font-size: 9px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.aios-metric-val {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.aios-metric-val--orange { color: var(--creo-accent); }
.aios-metric-val--white { color: var(--creo-white); }
.aios-metric-val--green { color: #4ade80; }

.aios-metric-delta {
  font-size: 9px;
  font-weight: 700;
  color: #4ade80;
  margin-top: 2px;
}

.aios-chart-area {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 12px;
}

.aios-chart-lbl {
  font-size: 9px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.28);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.aios-bars-row {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 52px;
}

.aios-bar-c {
  flex: 1;
  border-radius: 4px 4px 0 0;
  animation: aiosBarGrow 2s ease-in-out infinite alternate;
}

.aios-bar-c--accent {
  background: var(--creo-accent);
}

.aios-bar-c--muted {
  background: rgba(255, 117, 31, 0.35);
}

.aios-bar-c:nth-child(1) { animation-delay: 0s; }
.aios-bar-c:nth-child(2) { animation-delay: 0.12s; }
.aios-bar-c:nth-child(3) { animation-delay: 0.24s; }
.aios-bar-c:nth-child(4) { animation-delay: 0.36s; }
.aios-bar-c:nth-child(5) { animation-delay: 0.48s; }
.aios-bar-c:nth-child(6) { animation-delay: 0.6s; }
.aios-bar-c:nth-child(7) { animation-delay: 0.72s; }

@keyframes aiosBarGrow {
  from { height: 30%; }
  to { height: 100%; }
}

/* Video mockup */
.aios-vid-stage {
  height: 130px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.aios-vid-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 117, 31, 0.18) 0%, rgba(5, 10, 25, 0.8) 100%);
}

.aios-vid-play-btn {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 117, 31, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: aiosPlayPulse 2s ease-in-out infinite;
}

@keyframes aiosPlayPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 117, 31, 0.45); }
  50% { box-shadow: 0 0 0 14px rgba(255, 117, 31, 0); }
}

.aios-vid-play-btn svg {
  width: 16px;
  height: 16px;
  fill: var(--creo-white);
  margin-left: 3px;
}

.aios-vid-grid {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}

.aios-vid-thumb {
  flex: 1;
  height: 44px;
  border-radius: 7px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  position: relative;
  cursor: pointer;
}

.aios-vid-thumb--selected::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--creo-accent);
  border-radius: 7px;
}

.aios-vid-progress {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 10px 12px;
}

.aios-vp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.aios-vp-lbl {
  font-size: 9px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.aios-vp-pct {
  font-size: 11px;
  font-weight: 800;
  color: var(--creo-accent);
}

.aios-vp-bar {
  height: 5px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  overflow: hidden;
}

.aios-vp-fill {
  height: 100%;
  border-radius: 99px;
  background: var(--creo-accent);
  animation: aiosVideoProgress 3s ease-in-out infinite;
}

@keyframes aiosVideoProgress {
  0% { width: 5%; }
  75% { width: 82%; }
  100% { width: 82%; }
}

/* Final CTA — Boxed Design */
.aios-final-cta {
  padding: 100px 0 140px;
  position: relative;
  overflow: visible;
}

.aios-final-box {
  background: #08102A;
  background-image: 
    radial-gradient(circle at 100% 0%, rgba(255, 117, 31, 0.08) 0%, transparent 40%),
    radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 100% 100%, 30px 30px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.aios-final-left {
  flex: 1;
  max-width: 680px;
}

.aios-final-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--creo-accent);
}

.aios-final-tag::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--creo-accent);
}

.aios-final-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--creo-white);
  margin-bottom: 24px;
}

.aios-final-accent {
  color: var(--creo-accent);
}

.aios-final-desc {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(239, 229, 207, 0.5);
  margin-bottom: 48px;
  max-width: 540px;
}

.aios-final-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.aios-f-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--creo-white);
  line-height: 1.2;
  margin-bottom: 4px;
}

.aios-f-unit {
  color: var(--creo-accent);
}

.aios-f-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(239, 229, 207, 0.35);
  line-height: 1.4;
  max-width: 140px;
}

/* Actions */
.aios-final-right {
  flex-shrink: 0;
}

.aios-final-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 260px;
}

.aios-btn-cta-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--creo-accent);
  color: var(--creo-white);
  padding: 18px 32px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 117, 31, 0.3);
  white-space: nowrap;
}

.aios-btn-cta-primary:hover {
  transform: translateY(-4px);
  background: #FF853D;
  box-shadow: 0 15px 40px rgba(255, 117, 31, 0.45);
}

.aios-btn-cta-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 32px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.3s ease;
}

.aios-btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--creo-white);
}

/* Specific Responsive for this component */
@media (max-width: 1080px) {
  .aios-final-box {
    padding: 60px;
    gap: 40px;
  }
}

@media (max-width: 920px) {
  .aios-final-box {
    flex-direction: column;
    text-align: left;
    padding: 48px;
  }
  
  .aios-final-actions {
    width: 100%;
    min-width: unset;
  }

  .aios-final-left {
    max-width: 100%;
  }

  .aios-final-stats {
    gap: 32px;
  }
}

@media (max-width: 520px) {
  .aios-final-box {
    padding: 40px 24px;
    border-radius: 20px;
  }
  
  .aios-final-stats {
    flex-direction: column;
    gap: 24px;
  }
  
  .aios-f-num {
    font-size: 28px;
  }
}

/* Responsive */
@media (max-width: 860px) {
  .aios-feature-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .aios-feature-block:nth-child(even) .aios-feature-inner {
    direction: ltr;
  }

  .aios-feature-text,
  .aios-feature-visual {
    transform: none !important;
  }

  .aios-header .container,
  .aios-features .container {
    padding: 0 24px;
  }

  .aios-feature-block {
    padding: 72px 0;
  }

  .aios-nav {
    gap: 6px;
  }

  .aios-metrics-row {
    grid-template-columns: 1fr;
  }

  .aios-cta-buttons {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .aios-header {
    padding: 60px 0 60px;
  }

  .aios-feature-block {
    padding: 48px 0;
  }

  .aios-final-cta {
    padding: 60px 0 80px;
  }
}
