/* Marketing home — SupercomputadoraIA.com */

:root {
  --home-bg: #06080f;
  --home-green: #76b900;
  --home-green-bright: #8fd400;
  --home-cyan: #00d4ff;
  --home-magenta: #ff2d9a;
  --home-text: #f1f5f9;
  --home-muted: rgba(241, 245, 249, 0.72);
  --home-border: rgba(118, 185, 0, 0.28);
  --home-glow: rgba(118, 185, 0, 0.35);
}

html:has(body.home-page),
body.home-page {
  background: var(--home-bg);
  margin: 0;
}

body.home-page {
  padding-top: var(--site-header-height);
  color: var(--home-text);
  font-family: "Plus Jakarta Sans", var(--site-nav-font, system-ui, sans-serif);
  overflow-x: clip;
}

.home-main {
  min-height: calc(100vh - var(--site-header-height));
}

/* Hero */
.home-hero {
  position: relative;
  min-height: min(92vh, 880px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.home-hero__slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.home-hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.home-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.home-hero__slide--fallback {
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(118, 185, 0, 0.22), transparent),
    linear-gradient(160deg, #0a0f1a 0%, #06080f 55%, #120a18 100%);
}

.home-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(105deg, rgba(6, 8, 15, 0.62) 0%, rgba(6, 8, 15, 0.22) 48%, rgba(6, 8, 15, 0.4) 100%),
    linear-gradient(to top, rgba(6, 8, 15, 0.55) 0%, transparent 48%);
  pointer-events: none;
}

.home-hero__content {
  position: relative;
  z-index: 3;
  width: min(1120px, 100%);
  padding: 48px 24px 64px;
  text-align: left;
}

.home-hero__eyebrow {
  margin: 0 0 16px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--home-cyan);
}

.home-hero__title {
  margin: 0 0 20px;
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.home-hero__title-line {
  display: block;
}

.home-hero__title-line--accent {
  background: linear-gradient(90deg, var(--home-green-bright), var(--home-cyan) 55%, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home-hero__lead {
  margin: 0 0 16px;
  max-width: 640px;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  line-height: 1.65;
  color: var(--home-muted);
}

.home-hero__support {
  margin: 0 0 28px;
  max-width: 560px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.home-hero__lead strong {
  color: #fff;
  font-weight: 600;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.home-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.82);
}

.home-hero__stats strong {
  color: var(--home-green-bright);
  font-size: 1.125rem;
  font-weight: 800;
  margin-right: 4px;
}

.home-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-hero__badge {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 212, 255, 0.28);
  background: rgba(0, 212, 255, 0.06);
}

/* Buttons */
.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.home-btn--primary {
  color: #06080f;
  background: linear-gradient(135deg, var(--home-green-bright), var(--home-green));
  box-shadow: 0 0 32px rgba(118, 185, 0, 0.45);
}

.home-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(118, 185, 0, 0.6);
}

.home-btn--ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.home-btn--ghost:hover {
  border-color: var(--home-cyan);
  background: rgba(0, 212, 255, 0.08);
}

.home-btn--lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.home-link-arrow {
  color: var(--home-cyan);
  font-weight: 700;
  text-decoration: none;
}

.home-link-arrow:hover {
  color: var(--home-green-bright);
}

.home-link-arrow::after {
  content: " →";
}

/* Trust bar */
.home-trust {
  border-block: 1px solid var(--home-border);
  background: rgba(118, 185, 0, 0.04);
}

.home-trust__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 24px;
  text-align: center;
}

.home-trust__chip {
  display: inline-block;
  margin: 0 0 16px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--home-green-bright);
  border: 1px solid var(--home-border);
  background: rgba(118, 185, 0, 0.1);
}

.home-trust__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.92);
}

.home-trust__list li::before {
  content: "◆ ";
  color: var(--home-green-bright);
  font-size: 0.75rem;
  vertical-align: middle;
  margin-right: 2px;
}

/* Sections */
.home-section {
  padding: 72px 24px;
}

.home-section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.home-section__head {
  max-width: 680px;
  margin-bottom: 40px;
}

.home-section__eyebrow {
  margin: 0 0 10px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--home-magenta);
}

.home-section__head h2 {
  margin: 0 0 14px;
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  font-weight: 800;
  line-height: 1.15;
}

.home-section__lead {
  margin: 0;
  color: var(--home-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.home-section.home-models {
  overflow: visible;
}

.home-section.home-models .home-section__inner {
  overflow: visible;
}

.home-models-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35em 0.55em;
  line-height: 1.2;
}

.home-models-title__text {
  flex-shrink: 0;
}

.home-models-title__nvidia-logo {
  display: block;
  height: clamp(22px, 3.2vw, 38px);
  width: auto;
  flex-shrink: 0;
}

.home-models-title__chip {
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--home-green-bright);
}

.home-section__cta {
  margin: 40px 0 0;
  text-align: center;
}

.home-section__cta--dual {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.home-models__help {
  margin: 16px 0 0;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

/* Intro — No todo tiene que ir a la nube */
.home-intro {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0, 212, 255, 0.08), transparent 60%),
    var(--home-bg);
}

.home-intro__head {
  max-width: none;
  margin-bottom: 28px;
}

.home-intro__copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 32px;
  margin-bottom: 48px;
  align-items: start;
}

.home-intro__copy .home-section__lead {
  margin: 0;
}

.home-intro__highlight {
  margin: 0;
  padding: 16px 20px;
  border-radius: 12px;
  border-left: 3px solid var(--home-cyan);
  background: rgba(0, 212, 255, 0.06);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.55;
  color: #fff;
}

.home-intro__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}

@media (max-width: 900px) {
  .home-intro__copy {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .home-intro__grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 601px) and (max-width: 900px) {
  .home-intro__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-intro__grid .home-intro__card:last-child {
    grid-column: 1 / -1;
  }
}

.home-intro__card {
  padding: 28px 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(6, 8, 15, 0.75));
  border-top: 3px solid var(--home-intro-accent, var(--home-cyan));
}

.home-intro__card--privacidad { --home-intro-accent: var(--home-magenta); }
.home-intro__card--velocidad { --home-intro-accent: var(--home-cyan); }
.home-intro__card--inversion { --home-intro-accent: var(--home-green-bright); }

.home-intro__card h3 {
  margin: 0 0 10px;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--home-intro-accent, var(--home-cyan));
}

.home-intro__card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--home-muted);
}

/* Cloud vs local compare */
.home-compare {
  background: rgba(255, 255, 255, 0.02);
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.home-compare__head {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.home-compare__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}

@media (max-width: 720px) {
  .home-compare__grid {
    grid-template-columns: 1fr;
  }
}

.home-compare__col {
  padding: 28px 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 8, 15, 0.6);
}

.home-compare__col--cloud {
  border-top: 3px solid rgba(255, 255, 255, 0.35);
}

.home-compare__col--local {
  border-top: 3px solid var(--home-green-bright);
  box-shadow: 0 0 40px rgba(118, 185, 0, 0.08);
}

.home-compare__col h3 {
  margin: 0 0 16px;
  font-size: 1.2rem;
  font-weight: 800;
}

.home-compare__col--local h3 {
  color: var(--home-green-bright);
}

.home-compare__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-compare__col li {
  position: relative;
  margin: 0 0 12px;
  padding-left: 1.25em;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--home-muted);
}

.home-compare__col li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--home-cyan);
  font-weight: 700;
}

.home-compare__col--local li::before {
  color: var(--home-green-bright);
}

.home-compare__note {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

/* Advisor section */
.home-advisor__inner {
  padding: 48px 40px;
  border-radius: 20px;
  border: 1px solid var(--home-border);
  background:
    linear-gradient(135deg, rgba(118, 185, 0, 0.1), rgba(0, 212, 255, 0.06)),
    rgba(255, 255, 255, 0.02);
}

.home-advisor__content {
  max-width: 720px;
}

.home-advisor__lead {
  margin: 0 0 20px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--home-muted);
}

.home-advisor__list {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.home-advisor__item {
  position: relative;
  margin: 0 0 12px;
  padding-left: 1.35em;
  font-size: 0.98rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

.home-advisor__item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--home-green-bright);
  font-weight: 800;
}

/* Pain / solution */
.home-pain__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

@media (max-width: 720px) {
  .home-pain__grid {
    grid-template-columns: 1fr;
  }
}

.home-pain__card {
  display: flex;
  flex-direction: column;
  padding: 28px 24px 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(6, 8, 15, 0.75));
  border-top: 3px solid var(--home-pain-accent, var(--home-magenta));
}

.home-pain__card--emprendedor {
  --home-pain-accent: var(--home-magenta);
}

.home-pain__card--pyme {
  --home-pain-accent: #ffb020;
}

.home-pain__card--creativos {
  --home-pain-accent: var(--home-magenta);
}

.home-pain__card--desarrollador {
  --home-pain-accent: var(--home-cyan);
}

.home-pain__card--educacion {
  --home-pain-accent: var(--home-green-bright);
}

.home-pain__label {
  margin: 0 0 12px;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--home-pain-accent, var(--home-magenta));
}

.home-pain__card h3 {
  margin: 0 0 16px;
  font-size: clamp(1.35rem, 2.4vw, 1.55rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}

.home-pain__bullets {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  flex: 1;
}

.home-pain__bullets li {
  position: relative;
  margin: 0 0 10px;
  padding-left: 1.15em;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
  font-size: 0.98rem;
}

.home-pain__bullets li:last-child {
  margin-bottom: 0;
}

.home-pain__bullets li::before {
  content: "×";
  position: absolute;
  left: 0;
  top: 0.05em;
  color: var(--home-pain-accent, var(--home-magenta));
  font-weight: 700;
  font-size: 1.05em;
  line-height: 1;
}

.home-pain__detail {
  margin: 0 0 16px;
  color: var(--home-muted);
  line-height: 1.55;
  font-size: 0.98rem;
}

.home-pain__solution {
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(118, 185, 0, 0.28);
  color: var(--home-green-bright);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.45;
}

.home-pain__solution::before {
  content: "→ ";
  font-weight: 800;
}

/* Audiences */
.home-audiences__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-audience {
  padding: 24px 20px;
  border-radius: 14px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  background: rgba(0, 212, 255, 0.04);
}

.home-audience h3 {
  margin: 0 0 8px;
  font-size: 1.0625rem;
  color: var(--home-cyan);
}

.home-audience p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--home-muted);
}

/* Model carousel */
.home-models-carousel {
  position: relative;
  padding-inline: 44px;
  padding-block: 8px 4px;
  overflow: visible;
}

.home-models-carousel__viewport {
  width: 100%;
  overflow: hidden;
  touch-action: pan-y;
  /* Expande zona de pintura arriba/abajo para que no se corte el borde de las cards */
  clip-path: inset(-28px 0 -28px 0);
  -webkit-clip-path: inset(-28px 0 -28px 0);
  padding-block: 6px;
}

.home-models-carousel__track {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 8px 2px 10px;
  list-style: none;
  will-change: transform;
}

.home-models-carousel__item {
  flex-shrink: 0;
  min-width: 0;
  padding-block: 4px;
  box-sizing: border-box;
}

.home-models-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--home-border);
  border-radius: 50%;
  background: rgba(6, 8, 15, 0.85);
  color: var(--home-green-bright);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.home-models-carousel__arrow:hover {
  border-color: var(--home-green);
  background: rgba(118, 185, 0, 0.12);
  transform: translateY(-50%) scale(1.06);
}

.home-models-carousel__arrow--prev {
  left: 0;
}

.home-models-carousel__arrow--next {
  right: 0;
}

.home-models-carousel__dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.home-models-carousel__dots > li {
  display: flex;
}

.home-models-carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.home-models-carousel__dot.is-active {
  background: var(--home-green-bright);
  transform: scale(1.25);
}

.home-models-carousel__dot:hover {
  background: rgba(118, 185, 0, 0.65);
}

.home-models__card {
  display: block;
  height: 100%;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--home-border);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.home-models-carousel .home-models__card {
  border: none;
  /* Borde interior: no lo recorta overflow:hidden del carrusel */
  box-shadow: inset 0 0 0 1px rgba(118, 185, 0, 0.45);
}

.home-models__card:hover {
  transform: translateY(-4px);
  border-color: var(--home-green);
  box-shadow: 0 12px 40px rgba(118, 185, 0, 0.18);
}

.home-models-carousel .home-models__card:hover {
  box-shadow:
    inset 0 0 0 1px var(--home-green-bright),
    0 10px 36px rgba(118, 185, 0, 0.2);
}

.home-models__visual {
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  background: #0c1018;
  margin-bottom: 14px;
}

.home-models__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.home-models__name {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 700;
}

.home-models__cta {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--home-green-bright);
}

/* Use cases */
.home-casos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-casos__grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 960px) {
  .home-casos__grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .home-casos__grid--six {
    grid-template-columns: 1fr;
  }
}

.home-casos__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-casos__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.home-casos__card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.home-casos__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.home-casos__body h3 {
  margin: 0 0 8px;
  font-size: 1.0625rem;
}

.home-casos__body p {
  margin: 0 0 12px;
  flex: 1;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--home-muted);
}

.home-casos__link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--home-cyan);
}

/* Benefits */
.home-section.home-benefits {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(118, 185, 0, 0.12), transparent 65%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(0, 212, 255, 0.06), transparent 55%),
    var(--home-bg);
}

.home-section.home-benefits::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(6, 8, 15, 0.4) 100%);
  pointer-events: none;
}

.home-section.home-benefits .home-section__inner {
  position: relative;
  z-index: 1;
}

.home-benefits__head {
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 48px;
  text-align: center;
}

.home-benefits__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-benefit {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 26px 24px 24px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 3px solid var(--benefit-accent, var(--home-green-bright));
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(6, 8, 15, 0.88) 48%
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.home-benefit:nth-child(4) {
  grid-column: 3 / span 4;
}

.home-benefit:nth-child(5) {
  grid-column: 7 / span 4;
}

.home-benefit:hover {
  transform: translateY(-5px);
  border-color: rgba(118, 185, 0, 0.42);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(118, 185, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.home-benefit--control { --benefit-accent: var(--home-magenta); }
.home-benefit--costo { --benefit-accent: var(--home-green-bright); }
.home-benefit--latencia { --benefit-accent: var(--home-cyan); }
.home-benefit--libertad { --benefit-accent: #c084fc; }
.home-benefit--infra { --benefit-accent: #ffb020; }

.home-benefit__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.home-benefit__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  height: 2.75rem;
  padding: 0 0.35rem;
  border-radius: 12px;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--benefit-accent, var(--home-green-bright));
  background: color-mix(in srgb, var(--benefit-accent, var(--home-green)) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--benefit-accent, var(--home-green)) 38%, transparent);
}

.home-benefit__glyph {
  font-size: 1.35rem;
  line-height: 1;
  color: color-mix(in srgb, var(--benefit-accent, var(--home-green-bright)) 75%, #fff);
  opacity: 0.9;
}

.home-benefit h3 {
  margin: 0 0 10px;
  font-size: clamp(1.1rem, 1.8vw, 1.25rem);
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
}

.home-benefit p {
  margin: 0;
  flex: 1;
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 960px) {
  .home-benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-benefit,
  .home-benefit:nth-child(4),
  .home-benefit:nth-child(5) {
    grid-column: auto;
  }

  .home-benefit:nth-child(5):nth-last-child(1) {
    grid-column: 1 / -1;
    max-width: 420px;
    justify-self: center;
    width: 100%;
  }
}

@media (max-width: 560px) {
  .home-benefits__grid {
    grid-template-columns: 1fr;
  }

  .home-benefit:nth-child(5):nth-last-child(1) {
    max-width: none;
  }
}

/* Final CTA */
.home-final-cta {
  position: relative;
  margin: 0 24px 64px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--home-border);
  background: linear-gradient(135deg, rgba(118, 185, 0, 0.14), rgba(0, 212, 255, 0.08));
}

.home-final-cta__glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 50%, var(--home-glow), transparent 55%);
  pointer-events: none;
}

.home-final-cta__inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 32px;
  text-align: center;
}

.home-final-cta__inner h2 {
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
}

.home-final-cta__inner p {
  margin: 0 0 28px;
  color: var(--home-muted);
  line-height: 1.65;
}

.home-final-cta__secondary {
  margin: 0 0 28px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.home-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

@media (max-width: 640px) {
  .home-models-carousel {
    padding-inline: 36px;
  }

  .home-models-carousel__arrow {
    width: 34px;
    height: 34px;
    font-size: 1.25rem;
  }

  .home-hero__content {
    padding-top: 32px;
    text-align: center;
  }

  .home-hero__lead,
  .home-hero__support {
    margin-inline: auto;
  }

  .home-hero__badges {
    justify-content: center;
  }

  .home-hero__actions,
  .home-hero__stats {
    justify-content: center;
  }

  .home-section {
    padding: 56px 20px;
  }

  .home-final-cta {
    margin-inline: 16px;
  }

  .home-final-cta__inner {
    padding: 40px 20px;
  }
}
