/*
 * Ostoja — Hero section.
 * Two-column layout: copy on the left, benefits panel on the right.
 * Block prefix: .ost-hero
 */

/* Default background as a class so the Elementor "Tło" control can override it. */
.ost-hero { overflow: hidden; background: var(--ost-gradient-hero); }

.ost-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .ost-hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.ost-hero__col { position: relative; }

/* Badge */
.ost-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border-radius: 9999px;
  background: color-mix(in oklab, var(--ost-secondary) 70%, transparent);
  border: 1px solid var(--ost-border);
  padding: .375rem .75rem;
  font-size: .75rem;
  color: var(--ost-secondary-foreground);
  margin-bottom: 2rem;
}

.ost-hero__badge-icon {
  width: .875rem;
  height: .875rem;
  color: var(--ost-primary);
}

/* Title */
.ost-hero__title {
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.02;
  color: var(--ost-foreground);
  margin: 0;
}

/* Lead */
.ost-hero__lead {
  margin: 1.5rem 0 0;
  font-size: 1.125rem;
  color: var(--ost-muted-foreground);
  line-height: 1.7;
  max-width: 36rem;
}

/* Actions */
.ost-hero__actions {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

@media (min-width: 640px) {
  .ost-hero__actions { flex-direction: row; }
}

/* Trust pills */
.ost-hero__pills {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  font-size: .75rem;
  color: var(--ost-muted-foreground);
}

.ost-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.ost-hero__dot {
  height: .375rem;
  width: .375rem;
  border-radius: 9999px;
  background: var(--ost-primary);
}

/* Panel column */
.ost-hero__col--panel { z-index: 1; }
