.ca-banner-hero {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.ca-banner-hero * {
  box-sizing: border-box;
}

.ca-banner-hero__glow {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -90px;
  bottom: -150px;
  border-radius: 50%;
  opacity: 0.34;
  filter: blur(2px);
  pointer-events: none;
}

.ca-banner-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--ca-gap, 80px);
}

.ca-banner-hero.image-left .ca-banner-hero__visual {
  order: 1;
}

.ca-banner-hero.image-left .ca-banner-hero__content {
  order: 2;
}

.ca-banner-hero__content,
.ca-banner-hero__visual {
  flex: 1 1 0;
  min-width: 0;
}

.ca-banner-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 17px;
  border: 1px solid;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.ca-banner-hero__badge span {
  line-height: 1;
}

.ca-banner-hero__title {
  font-size: var(--ca-title-size, 72px);
  line-height: 1.04;
  letter-spacing: -0.055em;
  font-weight: 600;
  margin: 0 0 26px;
}

.ca-banner-hero__description {
  line-height: 1.65;
  font-weight: 600;
}

.ca-banner-hero__description p {
  margin: 0 0 12px;
}

.ca-banner-hero__description p:last-child {
  margin-bottom: 0;
}

.ca-banner-hero__buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.ca-banner-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 26px;
  border: 1px solid;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none !important;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.ca-banner-hero__btn:hover {
  transform: translateY(-2px);
  opacity: .94;
  box-shadow: 0 18px 35px rgba(0,0,0,.20);
}

.ca-banner-hero__btn--primary {
  box-shadow: 0 18px 38px rgba(255,152,0,.28);
}

.ca-banner-hero__visual {
  position: relative;
}

.ca-banner-hero__image-box {
  position: relative;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 70px rgba(0,0,0,.32);
}

.ca-banner-hero__image-box img {
  width: 100%;
  height: 100%;
  display: block;
}

.ca-banner-hero__floating-card {
  position: absolute;
  width: min(260px, 46%);
  padding: 22px 20px;
  border-radius: 20px;
  box-shadow: 0 22px 45px rgba(0,0,0,.18);
  z-index: 5;
}

.ca-banner-hero__floating-card.position-left-bottom {
  left: -20px;
  bottom: 46px;
}

.ca-banner-hero__floating-card.position-right-bottom {
  right: -20px;
  bottom: 46px;
}

.ca-banner-hero__floating-card.position-left-top {
  left: -20px;
  top: 46px;
}

.ca-banner-hero__floating-card.position-right-top {
  right: -20px;
  top: 46px;
}

.ca-banner-hero__floating-card h3 {
  font-size: 22px;
  line-height: 1.15;
  font-weight: 600;
  margin: 0 0 10px;
}

.ca-banner-hero__floating-card p {
  font-size: 18px;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 1100px) {
  .ca-banner-hero__inner {
    gap: 42px;
  }

  .ca-banner-hero__title {
    font-size: calc(var(--ca-title-size, 72px) * .78);
  }
}

@media (max-width: 900px) {
  .ca-banner-hero {
    padding-top: var(--ca-mobile-pt, 42px) !important;
    padding-bottom: var(--ca-mobile-pb, 42px) !important;
  }

  .ca-banner-hero__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .ca-banner-hero.mobile-image-top .ca-banner-hero__visual {
    order: 1;
  }

  .ca-banner-hero.mobile-image-top .ca-banner-hero__content {
    order: 2;
  }

  .ca-banner-hero.mobile-image-bottom .ca-banner-hero__content {
    order: 1;
  }

  .ca-banner-hero.mobile-image-bottom .ca-banner-hero__visual {
    order: 2;
  }

  .ca-banner-hero.mobile-align-center .ca-banner-hero__content {
    text-align: center;
  }

  .ca-banner-hero.mobile-align-center .ca-banner-hero__buttons {
    justify-content: center;
  }

  .ca-banner-hero__title {
    font-size: var(--ca-title-mobile-size, 42px);
    letter-spacing: -0.04em;
  }

  .ca-banner-hero__description {
    font-size: 17px !important;
  }

  .ca-banner-hero__image-box {
    height: 390px !important;
  }

  .ca-banner-hero__floating-card {
    width: auto;
    left: 18px !important;
    right: 18px !important;
    bottom: 18px !important;
    top: auto !important;
  }
}

@media (max-width: 560px) {
  .ca-banner-hero {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .ca-banner-hero__badge {
    font-size: 13px;
    padding: 10px 14px;
    margin-bottom: 22px;
  }

  .ca-banner-hero__title {
    font-size: var(--ca-title-mobile-size, 42px);
  }

  .ca-banner-hero__buttons {
    gap: 12px;
  }

  .ca-banner-hero.mobile-stack-yes .ca-banner-hero__btn {
    width: 100%;
  }

  .ca-banner-hero__btn {
    min-height: 50px;
    padding: 14px 22px;
  }

  .ca-banner-hero__image-box {
    height: 320px !important;
    border-width: 6px !important;
  }

  .ca-banner-hero__floating-card h3 {
    font-size: 19px;
  }

  .ca-banner-hero__floating-card p {
    font-size: 15px;
  }
}


.ca-banner-hero__features{
    display:flex;
    flex-direction:column;
    gap:18px;
    margin-top:34px;
}

.ca-banner-hero__feature{
    display:flex;
    align-items:flex-start;
    gap:14px;
}

.ca-banner-hero__feature-icon{
    width:22px;
    height:22px;
    min-width:22px;
    border-radius:50%;
    background:#ff4b3a;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
    font-weight: 600;
    margin-top:2px;
}

.ca-banner-hero__feature-text{
    font-size:20px;
    line-height:1.5;
    font-weight: 600;
    color:#1d2433;
}

@media(max-width:767px){

    .ca-banner-hero__features{
        gap:14px;
        margin-top:28px;
    }

    .ca-banner-hero__feature-text{
        font-size:17px;
    }
}