a {
  text-decoration: none;
}

/* =========================
   HERO
========================= */
main {
  width: var(--nav-container-width);
  margin: 0 auto;
}


.hero {
  margin: var(--space-13) 0;
}

.hero__container {
  max-width: var(--nav-container-width);
  margin: 0 auto;

  padding: 0 var(--space-4);

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

/* =========================
   LEFT COLUMN
========================= */
.hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.hero__title {
  max-width: 520px;
}

.hero__description {
  max-width: 480px;
  color: var(--color-text-secondary);
}

/* =========================
   BUTTONS
========================= */
.hero__actions {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-2);
}

/* =========================
   RIGHT COLUMN
========================= */
.hero__media {
  display: flex;
  justify-content: center;
}

.hero__image {
  width: 100%;
  max-width: 400px;
  height: 320px;

  background: #e5e5e5;
  /* placeholder */
  border-radius: var(--radius-4);
}

/* =========================
   ABOUT PROCESS
========================= */
.about-process__left {
  position: sticky;
  top: 120px;
  /* 🔥 controla dónde se detiene */
  align-self: start;
}

.about-process__right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Líneas de separación sutiles y elegantes entre bloques */
.about-process__right > * {
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--color-border-subtle);
}

.about-process__right > *:first-child {
  padding-top: 0;
}

.about-process__right > *:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Estilo de la lista interior */
.about-process__list {
  padding-left: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none; /* Quitamos los bullets para un look más limpio si fuera necesario, pero la lista actual no tiene bullets explícitos por el reset */
}

.about-process__list li {
  padding: var(--space-4) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05); /* Línea interna casi imperceptible */
  position: relative;
}

/* Micro-viñeta elegante */
.about-process__list li::before {
  content: "";
  position: absolute;
  left: calc(-1 * var(--space-4));
  top: calc(var(--space-4) + 10px);
  width: 4px;
  height: 4px;
  background-color: var(--color-action-primary);
  border-radius: 50%;
}

.about-process__list li:last-child {
  border-bottom: none;
}

/* link/CTA final */
.about-process__link {
  margin-top: var(--space-4);
  font-weight: var(--font-medium);
  color: var(--color-text-secondary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.4s ease-out, color 0.4s ease-out;
}

.about-process__link:hover {
  transform: translateX(8px);
  color: var(--color-text-primary);
}

.about-process__arrow {
  display: inline-block;
  transition: transform 0.4s ease-out;
}

.about-process__link:hover .about-process__arrow {
  transform: translateX(4px);
}

/* =========================
   ANIMATIONS / REVEAL
========================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__content {
    align-items: center;
  }

  .hero__actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .about-process__left {
    position: static;
    /* 🔥 desactiva sticky en mobile */
  }

  .footer__container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__nav {
    justify-content: center;
    flex-wrap: wrap;
  }
}