/* ============================================================
   AIMOQ — Section-Specific Styles
   ============================================================ */

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  padding-bottom: var(--sp-20);
  background: linear-gradient(170deg, #EBF0FF 0%, #F4F6FF 35%, #FFFFFF 70%);
  overflow: hidden;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  margin-inline: auto;
  text-align: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.35rem 1rem;
  background: rgba(77, 95, 187, 0.08);
  border: 1px solid rgba(77, 95, 187, 0.22);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--clr-brand);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-6);
  animation: fade-up 0.6s var(--ease-out) both;
}

.hero__eyebrow-icon {
  font-size: 0.85rem;
}

.hero__title {
  font-size: var(--fs-7xl);
  font-weight: var(--fw-extrabold);
  line-height: 1.05;
  margin-bottom: var(--sp-6);
  animation: fade-up 0.6s var(--ease-out) 0.1s both;
}

.hero__subtitle {
  font-size: var(--fs-xl);
  color: var(--clr-text-2);
  line-height: var(--lh-relaxed);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-inline: auto;
  margin-bottom: var(--sp-10);
  animation: fade-up 0.6s var(--ease-out) 0.2s both;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-16);
  animation: fade-up 0.6s var(--ease-out) 0.3s both;
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
  flex-wrap: wrap;
  animation: fade-up 0.6s var(--ease-out) 0.4s both;
}

.hero__stat {
  text-align: center;
}

.hero__stat-number {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-extrabold);
  color: var(--clr-text-1);
  line-height: 1;
}

.hero__stat-label {
  font-size: var(--fs-xs);
  color: var(--clr-text-3);
  margin-top: 4px;
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: var(--clr-border);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  animation: fade-up 0.6s var(--ease-out) 0.8s both;
  z-index: 2;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--clr-brand), transparent);
  animation: float 2s ease-in-out infinite;
}

.hero__scroll-text {
  font-size: var(--fs-xs);
  color: var(--clr-text-3);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

/* ============================================================
   SERVICES SHOWCASE
   ============================================================ */

.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  margin-top: var(--sp-12);
}

.svc-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  min-height: 340px;
  transition: transform var(--tr-base), box-shadow var(--tr-base);
}
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(77,95,187,0.15); }

.svc-card--dark { background: #0F1535; }
.svc-card--light { background: #fff; border: 1px solid var(--clr-border); box-shadow: var(--shadow-xs); }
.svc-card--pale  { background: var(--clr-brand-pale); }
.svc-card--custom {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--clr-brand) 0%, var(--clr-accent-2) 100%);
  min-height: auto;
  padding: var(--sp-8) var(--sp-10);
  align-items: center;
  gap: var(--sp-8);
  flex-wrap: wrap;
}

.svc-card__body {
  padding: var(--sp-8);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.svc-card__visual {
  width: 250px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-6);
}

.svc-tag {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
}
.svc-card--dark .svc-tag    { color: rgba(255,255,255,0.50); }
.svc-card--light .svc-tag   { color: var(--clr-text-3); }
.svc-card--pale .svc-tag    { color: var(--clr-brand); }

.svc-card__title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  margin-bottom: var(--sp-3);
}
.svc-card--dark .svc-card__title  { color: #fff; }
.svc-card--light .svc-card__title { color: var(--clr-text-1); }
.svc-card--pale .svc-card__title  { color: var(--clr-text-1); }

.svc-card__desc {
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-5);
}
.svc-card--dark .svc-card__desc  { color: rgba(255,255,255,0.65); }
.svc-card--light .svc-card__desc { color: var(--clr-text-2); }
.svc-card--pale .svc-card__desc  { color: var(--clr-text-2); }

/* Platform badges */
.svc-platforms {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-top: auto;
}
.svc-platform {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: rgba(255,255,255,0.90);
}
.svc-platform img { width: 13px; height: 13px; object-fit: contain; }

/* Feature chips (light cards) */
.svc-chips {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-top: auto;
}
.svc-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(77,95,187,0.07);
  border: 1px solid rgba(77,95,187,0.18);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--clr-brand);
}
.svc-card--pale .svc-chip { background: rgba(77,95,187,0.10); border-color: rgba(77,95,187,0.25); }

/* Dark chips (for dark cards like App Móviles) */
.svc-chips--dark { margin-top: 0; }
.svc-chip-dark {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: rgba(255,255,255,0.75);
}

/* Custom card */
.svc-custom-icon {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.svc-custom-icon svg { width: 30px; height: 30px; stroke: #fff; }
.svc-custom-body { flex: 1; min-width: 200px; }
.svc-custom-body h3 { font-size: var(--fs-2xl); font-weight: var(--fw-bold); color: #fff; margin-bottom: var(--sp-2); }
.svc-custom-body p  { color: rgba(255,255,255,0.80); font-size: var(--fs-base); }

/* ── Phone mockups ── */
.mock-phones { position: relative; width: 190px; height: 260px; }
.mock-phone {
  position: absolute;
  width: 100px; height: 210px;
  border-radius: 22px;
  background: #080e28;
  border: 2.5px solid rgba(255,255,255,0.12);
  overflow: hidden;
}
.mock-phone--left  { left: 0; top: 50px; transform: rotate(-8deg); opacity: 0.55; z-index: 1; }
.mock-phone--center {
  left: 50%; top: 0; transform: translateX(-50%);
  z-index: 3; border-color: rgba(255,255,255,0.28);
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
}
.mock-phone--right { right: 0; top: 35px; transform: rotate(7deg); opacity: 0.55; z-index: 2; }
.mock-phone__notch {
  width: 32px; height: 5px; border-radius: 99px;
  background: rgba(255,255,255,0.18); margin: 8px auto;
}
.mock-phone__screen { margin: 0 5px 5px; border-radius: 16px; height: calc(100% - 14px); }
.mock-phone__ui { padding: 10px 8px; }
.mock-ui-bar {
  width: 65%; height: 6px; border-radius: 3px;
  background: rgba(255,255,255,0.45); margin: 0 auto 5px;
}
.mock-ui-bar--short { width: 45%; background: rgba(255,255,255,0.28); }
.mock-ui-row { display: flex; gap: 5px; margin: 8px 0 5px; }
.mock-ui-tile { flex: 1; height: 30px; border-radius: 7px; background: rgba(255,255,255,0.20); }
.mock-ui-tile--wide { flex: 2; }

/* ── Browser mockup ── */
.mock-browser {
  width: 100%; max-width: 240px;
  border-radius: 10px; overflow: hidden;
  border: 1px solid rgba(77,95,187,0.15);
  box-shadow: 0 8px 32px rgba(77,95,187,0.12);
  background: #fff;
}
.mock-browser__bar {
  height: 28px; background: #F0F2FF;
  border-bottom: 1px solid rgba(77,95,187,0.10);
  display: flex; align-items: center; gap: 5px; padding: 0 10px;
}
.mock-dot { width: 7px; height: 7px; border-radius: 50%; }
.mock-dot--red    { background: #FC5353; }
.mock-dot--yellow { background: #FBBD2D; }
.mock-dot--green  { background: #2BCB64; }
.mock-browser__url { flex: 1; height: 12px; border-radius: 99px; background: rgba(77,95,187,0.10); }
.mock-browser__body { display: flex; height: 150px; }
.mock-sidebar {
  width: 48px; background: #F4F6FF;
  border-right: 1px solid rgba(77,95,187,0.08);
  padding: 10px 8px; display: flex; flex-direction: column; gap: 6px;
}
.mock-nav-item { height: 7px; border-radius: 4px; background: rgba(77,95,187,0.15); }
.mock-nav-item--active { background: var(--clr-brand); height: 8px; }
.mock-content { flex: 1; padding: 10px; display: flex; flex-direction: column; gap: 6px; }
.mock-stats-row { display: flex; gap: 5px; }
.mock-stat { flex: 1; height: 38px; border-radius: 6px; }
.mock-stat--blue   { background: rgba(77,95,187,0.12); }
.mock-stat--purple { background: rgba(167,139,250,0.15); }
.mock-stat--teal   { background: rgba(16,185,129,0.12); }
.mock-chart {
  flex: 1; border-radius: 6px;
  background: linear-gradient(135deg, rgba(77,95,187,0.06), rgba(126,184,247,0.12));
  position: relative; overflow: hidden;
}
.mock-chart::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 55%;
  background: linear-gradient(to top, rgba(77,95,187,0.08), transparent);
}

/* ── Website mockup ── */
.mock-site {
  width: 100%; max-width: 240px;
  border-radius: 10px; overflow: hidden;
  background: #fff; border: 1px solid rgba(77,95,187,0.12);
  box-shadow: 0 6px 24px rgba(77,95,187,0.10);
}
.mock-site__nav { height: 22px; background: var(--clr-brand); }
.mock-site__hero {
  height: 85px; background: linear-gradient(135deg, #EEF0FB, #F4F6FF);
  display: flex; align-items: center; padding: 12px; gap: 10px;
}
.mock-site__copy { flex: 1; }
.mock-line { height: 5px; border-radius: 3px; background: rgba(77,95,187,0.20); margin-bottom: 4px; }
.mock-line--title { width: 80%; height: 8px; background: rgba(77,95,187,0.35); }
.mock-line--short { width: 55%; }
.mock-site__btn { width: 48px; height: 13px; border-radius: 99px; background: var(--clr-brand); margin-top: 6px; }
.mock-site__img { width: 48px; height: 58px; border-radius: 8px; background: linear-gradient(135deg, rgba(77,95,187,0.18), rgba(126,184,247,0.28)); }
.mock-site__cards { display: flex; gap: 8px; padding: 8px 12px; }
.mock-site__card { flex: 1; height: 32px; border-radius: 6px; background: rgba(77,95,187,0.07); border: 1px solid rgba(77,95,187,0.10); }

/* ── Flow mockup ── */
.mock-flow { display: flex; flex-direction: column; align-items: center; gap: var(--sp-2); }
.mock-flow__node {
  display: flex; align-items: center; gap: 7px;
  padding: 0.48rem 1.2rem; border-radius: var(--radius-full);
  font-size: var(--fs-xs); font-weight: var(--fw-semibold);
  min-width: 155px; justify-content: center;
}
.mock-flow__node--in  { background: rgba(255,255,255,0.10); border: 1.5px solid rgba(255,255,255,0.22); color: rgba(255,255,255,0.82); }
.mock-flow__node--process {
  background: var(--clr-brand); color: #fff;
  padding: 0.62rem 1.4rem; font-size: var(--fs-sm);
  box-shadow: 0 0 24px rgba(77,95,187,0.55);
}
.mock-flow__node--out { background: rgba(16,185,129,0.18); border: 1.5px solid rgba(16,185,129,0.35); color: #34D399; }
.mock-flow__arrow {
  width: 2px; height: 18px; background: rgba(255,255,255,0.18); position: relative;
}
.mock-flow__arrow::after {
  content: ''; position: absolute; bottom: -4px; left: -3px;
  border: 4px solid transparent; border-top-color: rgba(255,255,255,0.18);
}

/* ── Audit mockup ── */
.mock-audit {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(77,95,187,0.14);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  box-shadow: 0 6px 24px rgba(77,95,187,0.10);
  min-width: 200px;
  max-width: 270px;
}
.mock-audit__header {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #4D5FBB;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(77,95,187,0.10);
}
.mock-audit__items { display: flex; flex-direction: column; gap: 6px; }
.mock-audit__row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 500;
  padding: 6px 9px;
  border-radius: 7px;
}
.mock-audit__row--ok   { background: rgba(16,185,129,0.09);  color: #065F46; }
.mock-audit__row--ok svg  { stroke: #10B981; flex-shrink: 0; }
.mock-audit__row--warn { background: rgba(245,158,11,0.10); color: #92400E; }
.mock-audit__row--warn svg { stroke: #F59E0B; flex-shrink: 0; }
.mock-audit__score {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(77,95,187,0.09);
  font-size: 0.65rem;
  color: #9CA3AF;
}
.mock-audit__bar {
  flex: 1;
  height: 5px;
  background: rgba(77,95,187,0.12);
  border-radius: 99px;
  overflow: hidden;
}
.mock-audit__fill {
  height: 100%;
  background: linear-gradient(90deg, #4D5FBB, #7EB8F7);
  border-radius: 99px;
}
.mock-audit__pct { font-weight: 700; color: #4D5FBB; font-size: 0.7rem; flex-shrink: 0; }

/* ── Chat mockup (Asesorías) ── */
.mock-chat {
  background: #F3F5FF;
  border-radius: 14px;
  border: 1px solid rgba(77,95,187,0.14);
  overflow: hidden;
  min-width: 200px;
  max-width: 260px;
  box-shadow: 0 6px 24px rgba(77,95,187,0.09);
}
.mock-chat__header {
  background: #fff;
  border-bottom: 1px solid rgba(77,95,187,0.10);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.mock-chat__avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4D5FBB, #7EB8F7);
  flex-shrink: 0;
}
.mock-chat__info { display: flex; flex-direction: column; gap: 2px; }
.mock-chat__name   { font-size: 0.68rem; font-weight: 600; color: #1F2937; }
.mock-chat__status { font-size: 0.6rem; color: #10B981; font-weight: 500; }
.mock-chat__messages {
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mock-chat__bubble {
  padding: 7px 11px;
  font-size: 0.65rem;
  line-height: 1.45;
  max-width: 88%;
}
.mock-chat__bubble--user {
  background: #4D5FBB;
  color: #fff;
  align-self: flex-end;
  border-radius: 12px 12px 3px 12px;
}
.mock-chat__bubble--reply {
  background: #fff;
  color: #374151;
  border: 1px solid rgba(77,95,187,0.13);
  align-self: flex-start;
  border-radius: 12px 12px 12px 3px;
}

/* ============================================================
   STATS BAND
   ============================================================ */

.stats-band {
  padding-top: var(--sp-16);
  padding-bottom: var(--sp-16);
  padding-block: var(--sp-16);
  background: linear-gradient(135deg, var(--clr-brand-darker) 0%, var(--clr-brand-dark) 50%, var(--clr-brand) 100%);
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  position: relative;
}

.stats-band__item {
  text-align: center;
  padding: var(--sp-6);
  border-right: 1px solid rgba(255,255,255,0.12);
}

.stats-band__item:last-child { border-right: none; }

.stats-band__number {
  font-family: var(--font-display);
  font-size: var(--fs-6xl);
  font-weight: var(--fw-extrabold);
  color: var(--clr-white);
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.stats-band__label {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.7);
  font-weight: var(--fw-medium);
}

/* ============================================================
   JOURNEY — Tu proyecto de inicio a siempre
   ============================================================ */

.journey-section {
  background: #080C2A;
  position: relative;
  overflow: hidden;
}

.journey-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(130px);
}
.journey-glow--1 {
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(77,95,187,0.20) 0%, transparent 70%);
  top: -200px; right: -120px;
}
.journey-glow--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(126,184,247,0.12) 0%, transparent 70%);
  bottom: -120px; left: -80px;
}

.journey-container { position: relative; z-index: 1; }

/* Section header overrides for dark bg */
.journey-section .section-tag {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.78);
}
.journey-section .section-tag__dot { background: var(--clr-brand-lighter); }
.journey-section .section-title    { color: #fff; }
.journey-section .section-subtitle { color: rgba(255,255,255,0.54); }

/* Journey grid — 3 cols, 2 rows */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-12);
}

/* Base card */
.journey-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-top-width: 3px;
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition: transform var(--tr-base), border-color var(--tr-base), background var(--tr-base);
}
.journey-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.065);
  border-color: rgba(255,255,255,0.16);
}

/* Phase number watermark */
.journey-num {
  position: absolute;
  top: -0.6rem;
  right: 0.8rem;
  font-family: var(--font-display);
  font-size: 6.5rem;
  font-weight: var(--fw-extrabold);
  line-height: 1;
  color: rgba(255,255,255,0.05);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

/* Phase icon */
.journey-card__icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.journey-card__icon svg { width: 20px; height: 20px; }

/* Typography */
.journey-card h3 {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: #fff;
  line-height: var(--lh-snug);
}
.journey-card p {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.56);
  line-height: var(--lh-relaxed);
}

/* Colored top borders per phase */
.journey-card--idea   { border-top-color: #4D6BF5; }
.journey-card--design { border-top-color: #8B5CF6; }
.journey-card--dev    { border-top-color: #10B981; }
.journey-card--launch { border-top-color: #F59E0B; }
.journey-card--grow   { border-top-color: #7EB8F7; }

/* Icon tints per phase */
.journey-card--idea   .journey-card__icon { background: rgba(77,107,245,0.18);  color: #7B9DF8; }
.journey-card--design .journey-card__icon { background: rgba(139,92,246,0.18);  color: #C4B5FD; }
.journey-card--dev    .journey-card__icon { background: rgba(16,185,129,0.18);  color: #6EE7B7; }
.journey-card--launch .journey-card__icon { background: rgba(245,158,11,0.18);  color: #FCD34D; }
.journey-card--grow   .journey-card__icon { background: rgba(77,95,187,0.22);   color: #93C5FD; }

/* Featured card — wide (spans 2 cols, second row) */
.journey-card--featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(77,95,187,0.13) 0%, rgba(126,184,247,0.07) 100%);
  border-color: rgba(77,95,187,0.32);
}
.journey-card--featured:hover {
  background: linear-gradient(135deg, rgba(77,95,187,0.20) 0%, rgba(126,184,247,0.12) 100%);
  border-color: rgba(126,184,247,0.40);
}
.journey-card--featured h3 { font-size: var(--fs-xl); }
.journey-card--featured p  { max-width: 480px; }

.journey-featured-body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  flex: 1;
}

/* Promise badges inside featured card */
.journey-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.journey-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.45rem 1.1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: rgba(255,255,255,0.82);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: background var(--tr-base), border-color var(--tr-base);
}
.journey-badge:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.28);
}
.journey-badge svg { width: 12px; height: 12px; opacity: 0.72; flex-shrink: 0; }

/* Bottom promise bar */
.journey-promise {
  margin-top: var(--sp-10);
  padding: var(--sp-5) var(--sp-8);
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  text-align: center;
}
.journey-promise__icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--clr-brand-lighter);
  opacity: 0.75;
}
.journey-promise p {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.52);
  line-height: var(--lh-relaxed);
  max-width: 600px;
}

.tech-category:last-child { margin-bottom: 0; }

.tech-category__label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--clr-text-3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--sp-4);
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

/* ============================================================
   STARTUPS — Redesigned
   ============================================================ */

.startup-section {
  background: #04060F;
  position: relative;
  overflow: hidden;
  padding-top: var(--sp-24);
  padding-bottom: var(--sp-24);
  padding-block: var(--sp-24);
}

.startup-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(130px);
}
.startup-glow--1 {
  width: 700px; height: 600px;
  background: radial-gradient(ellipse, rgba(56,189,248,0.20) 0%, transparent 70%);
  top: -200px; right: -100px;
}
.startup-glow--2 {
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(167,139,250,0.15) 0%, transparent 70%);
  bottom: -120px; left: -60px;
}
.startup-glow--3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(52,211,153,0.10) 0%, transparent 70%);
  top: 55%; left: 42%;
  transform: translate(-50%, -50%);
}

.startup-container { position: relative; z-index: 1; }

/* ── Hero 2-col ── */
.startup-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-20);
  align-items: center;
  margin-bottom: var(--sp-20);
}

.startup-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.38rem 1.1rem;
  background: rgba(56,189,248,0.10);
  border: 1px solid rgba(56,189,248,0.30);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: #38BDF8;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--sp-6);
}
.startup-eyebrow svg { stroke: #38BDF8; flex-shrink: 0; }

.startup-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 4.5rem);
  font-weight: var(--fw-extrabold);
  color: rgba(255,255,255,0.92);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-6);
}
.startup-title__accent {
  background: linear-gradient(100deg, #38BDF8 0%, #A78BFA 55%, #34D399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.startup-subtitle {
  font-size: var(--fs-base);
  color: rgba(255,255,255,0.50);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-8);
  max-width: 420px;
}

.startup-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, #38BDF8, #818CF8);
  color: #fff;
  font-weight: var(--fw-semibold);
  font-size: var(--fs-base);
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 0 50px rgba(56,189,248,0.35), 0 4px 20px rgba(0,0,0,0.30);
  transition: transform var(--tr-base), box-shadow var(--tr-base);
}
.startup-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 70px rgba(56,189,248,0.50), 0 8px 30px rgba(0,0,0,0.40);
}
.startup-cta svg { flex-shrink: 0; }

/* ── Right visual: floating cards ── */
.startup-hero__visual {
  position: relative;
  height: 400px;
}

.startup-hero__ring {
  position: absolute;
  width: 290px; height: 290px;
  border-radius: 50%;
  border: 1px solid rgba(56,189,248,0.14);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: ring-spin 18s linear infinite;
}
.startup-hero__ring::before {
  content: '';
  position: absolute;
  top: 18px; right: 18px; bottom: 18px; left: 18px;
  inset: 18px;
  border-radius: 50%;
  border: 1px solid rgba(167,139,250,0.10);
}
.startup-hero__ring::after {
  content: '';
  position: absolute;
  top: -22px; right: -22px; bottom: -22px; left: -22px;
  inset: -22px;
  border-radius: 50%;
  border: 1px dashed rgba(56,189,248,0.06);
  animation: ring-spin 30s linear infinite reverse;
}
@keyframes ring-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.startup-float-card {
  position: absolute;
  background: rgba(10,12,30,0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: var(--sp-4) var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  min-width: 155px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.40), inset 0 1px 0 rgba(255,255,255,0.06);
}

.startup-float-card--1 {
  top: 10px; right: 10px;
  transform: rotate(-5deg);
  animation: float 7s ease-in-out infinite;
  border-top: 2px solid #38BDF8;
}
.startup-float-card--2 {
  top: 140px; left: 0;
  transform: rotate(3.5deg);
  animation: float 9s ease-in-out infinite;
  animation-delay: -3s;
  border-top: 2px solid #A78BFA;
}
.startup-float-card--3 {
  bottom: 30px; right: 40px;
  transform: rotate(-2deg);
  animation: float 8s ease-in-out infinite;
  animation-delay: -5.5s;
  border-top: 2px solid #34D399;
}

.startup-float-card__icon {
  width: 30px; height: 30px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.startup-float-card--1 .startup-float-card__icon { background: rgba(56,189,248,0.16);  color: #38BDF8; }
.startup-float-card--2 .startup-float-card__icon { background: rgba(167,139,250,0.16); color: #A78BFA; }
.startup-float-card--3 .startup-float-card__icon { background: rgba(52,211,153,0.16);  color: #34D399; }

.startup-float-card__metric {
  display: flex;
  align-items: baseline;
  gap: 5px;
}
.startup-float-card__val {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: var(--fw-extrabold);
  color: #fff;
  line-height: 1;
}
.startup-float-card__unit {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.48);
  font-weight: var(--fw-semibold);
}
.startup-float-card__label {
  font-size: 0.66rem;
  color: rgba(255,255,255,0.42);
  font-weight: var(--fw-medium);
}

/* ── Feature bento ── */
.startup-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.startup-bento-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  position: relative;
  overflow: hidden;
  transition: transform var(--tr-base), background var(--tr-base), border-color var(--tr-base);
}
.startup-bento-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #38BDF8, #818CF8);
  background: var(--card-g);
}
.startup-bento-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  background: linear-gradient(90deg, #38BDF8, #818CF8);
  background: var(--card-g);
  opacity: 0;
  transition: opacity var(--tr-base);
  border-radius: inherit;
}
.startup-bento-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.14);
}
.startup-bento-card:hover::after { opacity: 0.04; }

.startup-bento-num {
  position: absolute;
  top: -14px; right: 10px;
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: var(--fw-extrabold);
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
  z-index: 0;
}

.startup-bento-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-5);
  position: relative; z-index: 1;
}

.startup-bento-card h4 {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: #fff;
  line-height: var(--lh-snug);
  margin-bottom: var(--sp-3);
  position: relative; z-index: 1;
}
.startup-bento-card p {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.50);
  line-height: var(--lh-relaxed);
  position: relative; z-index: 1;
}

/* ============================================================
   PROCESS
   ============================================================ */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 26px;
  left: calc(12.5% + 26px);
  right: calc(12.5% + 26px);
  height: 2px;
  background: linear-gradient(90deg, var(--clr-brand), var(--clr-accent));
  opacity: 0.3;
  z-index: 0;
}

/* ============================================================
   WHY US
   ============================================================ */

.why-us__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.why-us__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-us__card-mock {
  background: #FFFFFF;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  width: 100%;
  max-width: 400px;
  box-shadow: 0 8px 40px rgba(77,95,187,0.12), 0 2px 8px rgba(0,0,0,0.05);
}

.why-us__features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}

.why-us__features .feature-item {
  padding: var(--sp-6);
  background: #FFFFFF;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  transition: all var(--tr-base);
  box-shadow: var(--shadow-xs);
}

.why-us__features .feature-item:hover {
  border-color: var(--clr-border-h);
  transform: translateX(4px);
}

/* ============================================================
   CTA SECTION
   ============================================================ */

.cta-section {
  background: linear-gradient(135deg, #2E3B82 0%, #3A4A9B 40%, #4D5FBB 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-top: var(--sp-32);
  padding-bottom: var(--sp-32);
  padding-block: var(--sp-32);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.cta-section__title {
  font-size: var(--fs-6xl);
  font-weight: var(--fw-extrabold);
  margin-bottom: var(--sp-5);
  position: relative;
  color: #FFFFFF;
}

.cta-section__subtitle {
  font-size: var(--fs-xl);
  color: rgba(255, 255, 255, 0.80);
  margin-bottom: var(--sp-10);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  margin-inline: auto;
  line-height: var(--lh-relaxed);
}

.cta-section__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  position: relative;
}

/* Override section-tag & dots inside CTA for white text on blue bg */
.cta-section .section-tag {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.30);
  color: rgba(255, 255, 255, 0.90);
}

.cta-section .section-tag__dot {
  background: rgba(255, 255, 255, 0.80);
}

/* btn-outline inside CTA → white outlined */
.cta-section .btn-outline {
  color: rgba(255, 255, 255, 0.90);
  border-color: rgba(255, 255, 255, 0.40);
}

.cta-section .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.70);
  color: #FFFFFF;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: #0D1130;
  border-top: 1px solid rgba(77, 95, 187, 0.15);
  padding-top: var(--sp-20);
  /* Override light-theme vars back to dark inside footer */
  --clr-text-1: #EEF0FF;
  --clr-text-2: #9099C8;
  --clr-text-3: #5C6499;
  --clr-border: rgba(77, 95, 187, 0.18);
  --clr-bg-card: #161B35;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-10);
  margin-bottom: var(--sp-16);
}

.footer__brand img {
  height: 32px;
  filter: brightness(0) invert(1);
  margin-bottom: var(--sp-4);
}

.footer__brand-desc {
  font-size: var(--fs-sm);
  color: var(--clr-text-3);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-6);
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: var(--sp-3);
}

.footer__social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-3);
  font-size: 1rem;
  transition: all var(--tr-fast);
}

.footer__social-link:hover {
  background: var(--clr-brand);
  border-color: var(--clr-brand);
  color: var(--clr-white);
  transform: translateY(-2px);
}

.footer__col-title {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-text-1);
  margin-bottom: var(--sp-5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer__col-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer__col-link {
  font-size: var(--fs-sm);
  color: var(--clr-text-3);
  transition: color var(--tr-fast);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.footer__col-link:hover { color: var(--clr-brand-lighter); }

.footer__bottom {
  border-top: 1px solid var(--clr-border);
  padding-top: var(--sp-6);
  padding-bottom: var(--sp-6);
  padding-block: var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.footer__copy {
  font-size: var(--fs-xs);
  color: var(--clr-text-3);
}

.footer__bottom-links {
  display: flex;
  gap: var(--sp-5);
}

.footer__bottom-link {
  font-size: var(--fs-xs);
  color: var(--clr-text-3);
  transition: color var(--tr-fast);
}

.footer__bottom-link:hover { color: var(--clr-brand-lighter); }

/* ── Location chip ── */
.location-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  color: var(--clr-text-3);
  padding: var(--sp-2) var(--sp-3);
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-full);
  margin-top: var(--sp-3);
}

.location-chip svg {
  width: 12px;
  height: 12px;
  color: var(--clr-brand-lighter);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */

.page-hero {
  background: var(--clr-bg-primary);
  padding-top: 130px;
  padding-bottom: var(--sp-20);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero__title {
  font-size: var(--fs-6xl);
  font-weight: var(--fw-extrabold);
  margin-bottom: var(--sp-4);
}

.page-hero__subtitle {
  font-size: var(--fs-xl);
  color: var(--clr-text-2);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  margin-inline: auto;
  line-height: var(--lh-relaxed);
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  color: var(--clr-text-3);
  margin-bottom: var(--sp-6);
}

.page-hero__breadcrumb a {
  color: var(--clr-brand-lighter);
  transition: color var(--tr-fast);
}

.page-hero__breadcrumb a:hover { color: var(--clr-white); }

/* ============================================================
   NEURAL CANVAS
   ============================================================ */

.neural-canvas {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 1;
  transform: translateZ(0);
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  background: radial-gradient(ellipse 80% 65% at 50% 42%,
    rgba(245,247,255,0.92) 0%,
    rgba(235,240,255,0.60) 42%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
}

/* ============================================================
   SERVICES BACKGROUND BLOBS (glassmorphism backdrop)
   ============================================================ */

#servicios { position: relative; }

.services-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
}

.services-blob--1 {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(77,95,187,0.10) 0%, transparent 60%);
  top: -180px;
  right: -120px;
}

.services-blob--2 {
  width: 430px;
  height: 430px;
  background: radial-gradient(circle, rgba(167,139,250,0.09) 0%, transparent 60%);
  bottom: -120px;
  left: -80px;
}

/* (tech-cards replaced by cap-bento above) */

/* ============================================================
   AI CLOUD — multi-row marquee
   ============================================================ */

.ai-cloud-section {
  padding-top: var(--sp-8);
  padding-bottom: var(--sp-10);
  padding-block: var(--sp-8) var(--sp-10);
  background: var(--clr-bg-secondary);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.ai-cloud-section::before,
.ai-cloud-section::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}
.ai-cloud-section::before {
  left: 0;
  background: linear-gradient(to right, var(--clr-bg-secondary) 30%, transparent);
}
.ai-cloud-section::after {
  right: 0;
  background: linear-gradient(to left, var(--clr-bg-secondary) 30%, transparent);
}

.ai-cloud-label {
  text-align: center;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--clr-text-3);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
  position: relative;
  z-index: 3;
}

/* Track wrapper — clips overflow per row */
.ai-cloud-track-wrap {
  overflow: hidden;
}

/* The animated flex container (width = 2 × content) */
.ai-cloud-track {
  display: flex;
  width: max-content;
}

.ai-cloud-track--1 { animation: marquee-slide     30s linear infinite; }
.ai-cloud-track--2 { animation: marquee-slide-rev 42s linear infinite; }
.ai-cloud-track--3 { animation: marquee-slide     56s linear infinite; }


/* One duplicated set of pills */
.ai-cloud-set {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding-right: var(--sp-3);
  white-space: nowrap;
}

/* ── Pills ── */
.ai-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  font-family: var(--font-display);
  white-space: nowrap;
  background: #fff;
  border: 1.5px solid rgba(77,95,187,0.18);
  color: var(--clr-text-1);
  box-shadow: 0 1px 6px rgba(77,95,187,0.08);
  transition: transform var(--tr-fast), box-shadow var(--tr-fast);
  cursor: default;
}
.ai-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(77,95,187,0.15);
}

.ai-pill--lg {
  font-size: var(--fs-base);
  padding: 0.45rem 1.1rem;
}
.ai-pill--sm {
  font-size: var(--fs-xs);
  padding: 0.28rem 0.75rem;
}

/* solid brand blue */
.ai-pill--blue {
  background: var(--clr-brand);
  border-color: var(--clr-brand);
  color: #fff;
  box-shadow: 0 2px 12px rgba(77,95,187,0.28);
}

/* light brand tint */
.ai-pill--soft {
  background: rgba(77,95,187,0.07);
  border-color: rgba(77,95,187,0.22);
  color: var(--clr-brand-dark);
}

/* purple accent */
.ai-pill--purple {
  background: rgba(167,139,250,0.10);
  border-color: rgba(167,139,250,0.35);
  color: #5B21B6;
}

/* teal / success */
.ai-pill--teal {
  background: rgba(16,185,129,0.08);
  border-color: rgba(16,185,129,0.28);
  color: #047857;
}

/* gradient brand */
.ai-pill--gradient {
  background: linear-gradient(135deg, var(--clr-brand), var(--clr-accent-2));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 2px 14px rgba(77,95,187,0.30);
}

/* ============================================================
   AI CASES SECTION
   ============================================================ */

.ai-cases-section {
  background: #07091F;
  position: relative;
  overflow: hidden;
}

.ai-cases-section .section-tag {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.72);
}

.ai-cases-section .section-tag__dot { background: var(--clr-accent); }
.ai-cases-section .section-title    { color: #FFFFFF; }
.ai-cases-section .section-subtitle { color: rgba(255,255,255,0.52); }

.ai-cases-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
}

.ai-cases-glow--1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(77,95,187,0.22) 0%, transparent 60%);
  top: -280px;
  left: -180px;
}

.ai-cases-glow--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(167,139,250,0.18) 0%, transparent 60%);
  bottom: -200px;
  right: -130px;
}

.ai-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  position: relative;
  z-index: 1;
}

.ai-case-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  transition: all var(--tr-base);
  position: relative;
  overflow: hidden;
}

.ai-case-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 55%);
  pointer-events: none;
}

.ai-case-card:hover {
  border-color: rgba(77,95,187,0.45);
  background: rgba(77,95,187,0.09);
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.35), 0 0 40px rgba(77,95,187,0.15);
}

.ai-case-badge {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: rgba(255,255,255,0.42);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-4);
}

.ai-case-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-6);
  animation: ai-icon-pulse 4s ease-in-out infinite;
}

.ai-case-icon-wrap svg {
  width: 32px;
  height: 32px;
  color: #fff;
}

.ai-case-icon--chat  { background: linear-gradient(135deg, #4D5FBB, #7EB8F7); box-shadow: 0 8px 32px rgba(77,95,187,0.45); }
.ai-case-icon--chart { background: linear-gradient(135deg, #7C3AED, #A78BFA); box-shadow: 0 8px 32px rgba(124,58,237,0.45); }
.ai-case-icon--auto  { background: linear-gradient(135deg, #059669, #34D399); box-shadow: 0 8px 32px rgba(5,150,105,0.45); }

.ai-case-card h3 {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: #FFFFFF;
  margin-bottom: var(--sp-3);
  line-height: var(--lh-snug);
}

.ai-case-card p {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.50);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-6);
}

.ai-case-metrics {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
}

.ai-case-metric {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem var(--sp-3);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.70);
}

.ai-case-metric--green  { background: rgba(16,185,129,0.15);  border-color: rgba(16,185,129,0.28);  color: #34D399; }
.ai-case-metric--blue   { background: rgba(126,184,247,0.15); border-color: rgba(126,184,247,0.28); color: #7EB8F7; }
.ai-case-metric--purple { background: rgba(167,139,250,0.15); border-color: rgba(167,139,250,0.28); color: #C4B5FD; }

/* ============================================================
   CTA FLOATING PARTICLES
   ============================================================ */

.cta-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation-name: cta-float;
  animation-duration: var(--p-dur, 7s);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-delay: var(--p-delay, 0s);
  animation-fill-mode: both;
  opacity: 0;
}
