.iaLayer-herobasicv1 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  min-height: 100vh;
  overflow: hidden;
  background-color: var(--hero-bg, var(--ia-color-dark, #0a0a0a));
  box-sizing: border-box;
}

.iaLayer-herobasicv1 .hbv1-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.iaLayer-herobasicv1 .hbv1-media .hbv1-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.iaLayer-herobasicv1 .hbv1-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.iaLayer-herobasicv1 .hbv1-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, var(--overlay-opacity, 0.45));
  z-index: 1;
}

.iaLayer-herobasicv1 .hbv1-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  width: 90%;
  margin: 0 auto;
  padding: 120px 24px 80px;
  text-align: var(--content-align, center);
  display: flex;
  flex-direction: column;
  align-items: var(--content-align, center);
  gap: 20px;
}

.iaLayer-herobasicv1 .hbv1-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--subtitle-color, rgba(255,255,255,0.7));
  margin: 0;
}

.iaLayer-herobasicv1 .hbv1-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--title-color, var(--ia-color-text-inverted, #ffffff));
  margin: 0;
}

.iaLayer-herobasicv1 .hbv1-subtitle {
  font-size: clamp(1.0625rem, 2vw, 1.3125rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--subtitle-color, rgba(255,255,255,0.75));
  margin: 0;
  max-width: 620px;
}

.iaLayer-herobasicv1 .hbv1-cta-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
  justify-content: var(--content-align, center);
  align-items: center;
}

.iaLayer-herobasicv1 .hbv1-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 980px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  background: var(--cta-bg, var(--ia-color-primary, #0071e3));
  color: var(--cta-color, var(--ia-color-text-inverted, #ffffff));
  transition: opacity 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.iaLayer-herobasicv1 .hbv1-cta:hover {
  opacity: 0.85;
  transform: scale(1.02);
}

.iaLayer-herobasicv1 .hbv1-cta--ghost {
  background: transparent;
  border: 1.5px solid var(--cta-color, var(--ia-color-text-inverted, #ffffff));
  color: var(--cta-color, var(--ia-color-text-inverted, #ffffff));
}

.iaLayer-herobasicv1 .hbv1-cta--ghost:hover {
  background: rgba(255,255,255,0.1);
  opacity: 1;
}

.iaLayer-herobasicv1 .hbv1-cta-ic {
  font-size: 0.875em;
  transition: transform 0.2s ease;
}

.iaLayer-herobasicv1 .hbv1-cta:hover .hbv1-cta-ic {
  transform: translateX(3px);
}

@media (max-width: 767px) {
  .iaLayer-herobasicv1 .hbv1-inner {
    padding: 100px 20px 60px;
    align-items: center;
    text-align: center;
  }
  .iaLayer-herobasicv1 .hbv1-cta-wrap {
    justify-content: center;
    flex-direction: column;
    width: 100%;
  }
  .iaLayer-herobasicv1 .hbv1-cta {
    width: 100%;
    justify-content: center;
  }
}