/* ============================================
   BASAURI KONEKTA 2026 — Landing Empresas
   ============================================ */

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  overflow: hidden;
  background: var(--color-bg);
}

.hero__title {
  max-width: 18ch;
  margin-bottom: var(--space-lg);
}

.hero__subtitle {
  max-width: 50ch;
  margin-bottom: var(--space-xl);
}

.hero__cta {
  display: inline-flex;
}

/* --- Section copy blocks --- */
.section-copy {
  max-width: 55ch;
}

.section-impact {
  margin-bottom: var(--space-lg);
  max-width: 20ch;
}

#que-pasa .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Noise texture on alt sections */
.section--alt {
  position: relative;
}
.section--alt::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  z-index: 0;
}
.section--alt > .container {
  position: relative;
  z-index: 1;
}

/* --- Datos grid with clip-path --- */
.datos {
  position: relative;
  text-align: center;
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  padding: 100px 0;
  background: var(--color-bg-alt);
}

.datos__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .datos__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.datos__item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.datos__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-2xl);
  color: var(--color-headline);
  line-height: 1.1;
}

.datos__label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-sm);
  color: var(--color-text);
  opacity: 0.6;
}

@media (max-width: 768px) {
  .datos { clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%); padding: 80px 0; }
}

/* --- Motivos (3 reasons) --- */
.motivos {
  position: relative;
}

.motivos__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  max-width: 16ch;
  margin: 0 auto;
}

.motivos__item {
  text-align: center;
}

@media (min-width: 768px) {
  .motivos__list {
    max-width: none;
    gap: var(--space-2xl);
  }

  .motivos__item {
    max-width: 18ch;
    margin: 0 auto;
  }
}

/* --- Scroll reveal targets --- */
.hero__title,
.hero__subtitle,
.hero__cta,
.section-impact,
.section-copy,
.datos__item,
.motivos__item,
.form-section__title {
  opacity: 0;
  will-change: transform, opacity;
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  .hero__title,
  .hero__subtitle,
  .hero__cta,
  .section-impact,
  .section-copy,
  .datos__item,
  .motivos__item,
  .form-section__title {
    opacity: 1;
  }
  .datos { clip-path: none; }
}
