

/* Start:/local/components/bonusplus.common/hero/templates/.default/style.css?17828079731241*/
.hero-banner-mobile {
    display: none;
    border-radius: 20px;
}

.hero-banner-pc {
    display: block;
    width: 579px;
    border-radius: 20px;
}

.first-block {
    display: flex;
    padding: 6px 12px 6px 12px;
    justify-content: space-between;
}

.title-card {
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: start;
}

@media (max-width: 768px) {
    .first-block {
        display: flex;
        flex-direction: column;
    }

    .hero-banner-pc {
        display: none;
    }

    .hero-banner-mobile {
        margin-top: 18px;
        display: block;
        width: 100%;
        height: auto;
    }

    .hero-dop-download,
    .hero-dop-text {
        align-self: center;
        text-align: center;
    }
}

.hero-dop-download {
    margin-top: 12px;
    font-size: 14px;
    color: var(--secondary-default, #4ECCCD);
    text-decoration: underline;
    transition: color 0.2s ease;
    cursor: pointer;
}

.hero-dop-download:hover {
    color: var(--secondary-hover, #5DF1F3);
}

.hero-dop-text {
    margin: 12px 0 0 0;
    font-size: 14px;
    color: var(--text-secondary, #cacaca);
    line-height: 1.4;
}

/* End */


/* Start:/local/components/bonusplus.main/trust.ticker/templates/.default/style.css?17828079732563*/
.logo-ticker-block {
    padding-right: 8px;
    padding-left: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logo-ticker-block h2 {
    margin-right: 100px;
}

.logo-ticker {
    --ticker-gap: 90px;
    --ticker-logo-height: 40px;
    --ticker-duration: 45s;

    position: relative;
    flex-grow: 1;
    width: 50%;
    overflow: hidden;
    white-space: nowrap;
    padding: 30px 0;
    background-color: #0a1515;
    isolation: isolate;
}

.logo-ticker::before,
.logo-ticker::after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.logo-ticker::before {
    left: 0;
    background: linear-gradient(to right, #0a1515 0%, rgba(10, 21, 21, 0) 100%);
}

.logo-ticker::after {
    right: 0;
    background: linear-gradient(to left, #0a1515 0%, rgba(10, 21, 21, 0) 100%);
}

.ticker-track {
    display: flex;
    width: max-content;
    align-items: center;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    animation: logoTickerReverse var(--ticker-duration) linear infinite;
}

.ticker-group {
    display: flex;
    align-items: center;
    gap: var(--ticker-gap);
    flex: 0 0 auto;
    padding-right: var(--ticker-gap);
}

.ticker-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    line-height: 0;
    filter: grayscale(100%) opacity(60%);
    transition: filter 0.5s ease;
}

.ticker-item:hover {
    filter: grayscale(0%) opacity(100%);
}

.ticker-item svg {
    display: block;
    height: var(--ticker-logo-height);
    width: auto;
    flex: 0 0 auto;
}

/* Новое направление: справа налево. Если нужно вернуть старое направление, поставьте reverse. */
@keyframes logoTickerReverse {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ticker-track {
        animation: none;
    }
}

@media (max-width: 768px) {
    .logo-ticker-block {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo-ticker-block h2 {
        margin-right: 0;
    }

    .logo-ticker {
        width: 100vw;
        margin-left: -16px;
    }

    .logo-ticker::before,
    .logo-ticker::after {
        width: 80px;
    }
}

/* End */


/* Start:/local/components/bonusplus.main/integrations/templates/.default/style.css?17828079731636*/

/* Тело */
.integration-section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 0px 10% 0px 10%;
}

/* Элемент */
.integration-content {
    margin: 40px;
    gap: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.integration-content:hover {
    transform: translateY(-5px); 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.integration-content>img,
.integration-content>svg {
    width: auto;
    height: 94px;
    border-radius: 100px;
}

.swiper-slide-case {
    height: 430px !important;
}

@media (max-width:768px) {

    .swiper-slide-case {
        height: 490px !important;
    }
    /* Тело */
    .integration-section {
        padding: 0 0 0 0;
    }


    /* Элемент */
    .integration-content {
        width: auto;
        height: 52px;
        padding: 0 10px;
        margin: 10px 10px;
        gap: 20px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        border: var(--border-settings);
        border-radius: 60px;
    }

    .integration-content>img,
    .integration-content>svg {
        width: auto;
        height: 36px;
    }
}

.bg-blur {
    position: absolute;
    top: 0;
    height: 100%;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);

    background: #141D1D;
    z-index: -1
}

@media(max-width: 768px) {
    .bg-blur {
        background: none;
    }
}

/* End */


/* Start:/local/components/bonusplus.registration/hero.block/templates/.default/style.css?17828079736459*/
.registration-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    isolation: isolate;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(30px, 4vw, 50px) 24px;
    box-sizing: border-box;
}

.registration-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.registration-hero::after {
    content: "";
    position: absolute;
    inset: -18%;
    z-index: 2;
    pointer-events: none;
}

.registration-hero__header {
    position: relative;
    z-index: 5;
    width: 100%;
    text-align: center;
    max-width: 800px;
    margin: 0 auto clamp(24px, 4vw, 40px);
}

.registration-hero__header h2 {
    margin: 0;
    text-shadow: 0 3px 20px rgba(255, 255, 255, 0.1);
}

.registration-hero__header .body {
    max-width: 680px;
    margin: 18px auto 0;
    color: var(--text-secondary, #efefef);
    font-size: clamp(15px, 1.5vw, 18px);
    line-height: 1.55;
    text-shadow: 0 0 14px rgba(255, 255, 255, 0.06);
}

.registration-hero__header .btn {
    display: inline-flex;
}

/* ===== Layout (Grid) ===== */
.registration-hero__layout {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 560px;
    margin: 0 auto;
}

.registration-hero__center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* ===== Card overrides for wide layout ===== */
.registration-hero__channel-card {
    display: grid !important;
    grid-template-columns: 78px minmax(0, 1fr) !important;
    align-items: center !important;
    width: 320px !important; /* fixed width for floating cards */
    height: auto !important;
    padding: 18px 20px !important;
    border-radius: 26px !important;
    aspect-ratio: unset !important;
    position: absolute !important;
    box-sizing: border-box;
    z-index: 2;
    text-decoration: none !important;

    /* Disable hover transform/color change */
    box-shadow: var(--bp-shadow, 0 8px 32px rgba(0, 0, 0, 0.24)) !important;
    border-color: rgba(93, 241, 243, 0.18) !important;
}

.registration-hero__channel-card::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 76px;
    height: 1px;
}

.registration-hero__channel-card--1::after,
.registration-hero__channel-card--2::after,
.registration-hero__channel-card--3::after {
    right: -77px;
}

.registration-hero__channel-card--4::after,
.registration-hero__channel-card--5::after,
.registration-hero__channel-card--6::after {
    left: -77px;
}

/* Card inner content styling */
.registration-hero__channel-card .bp-card__icon {
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 1px solid rgba(93, 241, 243, 0.15);
    background: radial-gradient(circle at 30% 30%, rgba(93, 241, 243, 0.12), transparent 58%), rgba(10, 21, 21, 0.86);
    box-shadow:
        inset 0 0 28px rgba(93, 241, 243, 0.05),
        0 0 28px rgba(78, 204, 205, 0.06);
    color: var(--secondary-hover, #5df1f3) !important; /* Constant neon cyan color matching the TG path stroke */
    transition: none !important;
}

.registration-hero__channel-card:hover .bp-card__icon {
    color: var(--secondary-hover, #5df1f3) !important; /* Hover does nothing */
}

.registration-hero__channel-card .bp-card__icon svg {
    width: 34px;
    height: 34px;
    display: block;
}

.registration-hero__channel-card .bp-card__title {
    margin: 0 0 8px;
    color: var(--text-primary, #ffffff);
    font-size: clamp(18px, 1.7vw, 21px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.registration-hero__channel-card .bp-card__text {
    margin: 0;
    color: var(--text-muted, rgba(239, 239, 239, 0.76));
    font-size: 14px;
    line-height: 1.45;
}

/* Card positioning */
.registration-hero__channel-card--1 {
    left: 10%;
    top: 6%;
}

.registration-hero__channel-card--2 {
    left: 2%;
    top: 38%;
}

.registration-hero__channel-card--3 {
    left: 10%;
    top: 70%;
}

.registration-hero__channel-card--4 {
    right: 10%;
    left: auto !important;
    top: 6%;
}

.registration-hero__channel-card--5 {
    right: 2%;
    left: auto !important;
    top: 38%;
}

.registration-hero__channel-card--6 {
    right: 10%;
    left: auto !important;
    top: 70%;
}

/* ===== Center Planet Wrapper ===== */
.registration-hero__planet-wrap {
    position: relative;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.registration-hero__planet-img {
    width: 100%;
    height: auto;
    display: block;
}

.registration-hero__planet-logo {
    position: absolute;
    top: 48%;
    left: 53%;
    transform: translate(-50%, -50%);
    width: clamp(200px, 32%, 200px);
    height: auto;
    pointer-events: none;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

/* ===== Responsive Styles ===== */
@media (max-width: 968px) {
    .registration-hero {
        padding: 40px 20px;
    }



    .registration-hero__header .body {
        font-size: 16px;
    }
    .registration-hero__center {
        display: none;
    }
    .registration-hero__layout {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        height: auto;
        justify-items: center;
    }

    .registration-hero__channel-card {
        position: static !important;
        width: 100% !important;
        max-width: 320px;
    }

    .registration-hero__channel-card::after {
        display: none !important;
    }

    .registration-hero__planet-wrap {
        max-width: 280px;
        animation: none !important;
    }
}

@media (max-width: 768px) {
    .registration-hero__header {
        text-align: start;
    }
    .registration-hero__layout {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .registration-hero__channel-card,
    .registration-hero__planet-wrap {
        animation: none !important;
    }
}

/* End */


/* Start:/local/components/bonusplus.crm/hero/templates/.default/style.css?17828079739821*/
.bp-crm-block {
  --bp-crm-surface: rgba(20, 29, 29, .72);

  width: 100%;
  margin-inline: auto;
  padding: clamp(32px, 5vw, 64px) clamp(16px, 3vw, 32px);
  border-radius: clamp(24px, 3vw, 40px);
  overflow: hidden;
  position: relative;
  isolation: isolate;
  color: var(--text-primary);
  font-family: var(--font-family-base);
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 212, 0, .13), transparent 28%),
    radial-gradient(circle at 88% 22%, rgba(78, 204, 205, .18), transparent 30%),
    linear-gradient(135deg, var(--background-primary), var(--background-secondary));
}

.bp-crm-block::before {
  /*
    Из архива: gradient shapes должны быть мягкими фоновыми акцентами,
    без чётких границ и без роли отдельной иллюстрации.
  */
  content: "";
  position: absolute;
  inset: -25%;
  z-index: -2;
  background:
    radial-gradient(circle at 25% 28%, rgba(255, 212, 0, .18), transparent 22%),
    radial-gradient(circle at 76% 18%, rgba(93, 241, 243, .18), transparent 24%),
    radial-gradient(circle at 50% 82%, rgba(78, 204, 205, .2), transparent 28%);
  filter: blur(24px);
  opacity: .9;
  pointer-events: none;
}

.bp-crm-block::after {
  /*
    Тонкая сетка как digital background.
    Основано на правиле архива: dark backgrounds + digital UI depth.
  */
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: clamp(40px, 6vw, 72px) clamp(40px, 6vw, 72px);
  mask-image: radial-gradient(circle at 50% 72%, #000 0%, transparent 66%);
  pointer-events: none;
}

.bp-crm-block__content {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.bp-crm-block__label {
  /*
    Из архива: rubric/service labels = elongated pill/capsule backplates.
  */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin-bottom: clamp(16px, 2vw, 24px);
  padding: 8px 18px;
  border: 2px solid rgba(255, 212, 0, .66);
  border-radius: 999px;
  background: rgba(255, 212, 0, .08);
  color: var(--primary-default);
  font-size: var(--nav-fs, 14px);
  font-weight: var(--nav-fw, 700);
  line-height: var(--nav-lh, 1.1);
  letter-spacing: var(--nav-ls, 0);
}

.bp-crm-block__title {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-primary);
}

.bp-crm-block__text {
  /*
    Из архива: Lead desktop Manrope Medium 18px / 120%.
  */
  max-width: 680px;
  margin: clamp(16px, 2vw, 22px) auto 0;
  color: var(--text-secondary);
  font-size: var(--lead-fs, clamp(16px, 1.6vw, 18px));
  font-weight: var(--lead-fw, 500);
  line-height: var(--lead-lh, 1.2);
  letter-spacing: var(--lead-ls, 0);
}

.bp-crm-block__actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(22px, 3vw, 32px);
}

.bp-crm-block__visual {
  /*
    Визуальный/анимационный блок перемещён под текст.
    На мобильных устройствах остаётся строго по центру под текстовым блоком.
  */
  position: relative;
  width: min(100%, 920px);
  margin: clamp(32px, 5vw, 56px) auto 0;
  aspect-ratio: 1.9;
  min-height: 300px;
}

.bp-crm-block__halo {
  position: absolute;
  inset: 24% 12% 0;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(93, 241, 243, .2), transparent 58%),
    radial-gradient(circle, rgba(255, 212, 0, .08), transparent 64%);
  filter: blur(14px);
  pointer-events: none;
}

.bp-crm-block__orbit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  filter: drop-shadow(0 0 8px rgba(93, 241, 243, .4));
}

.bp-crm-block__orbit path {
  fill: none;
  stroke: rgba(93, 241, 243, .56); /* Secondary / Hover из архива */
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 8 12;
  animation: bp-crm-line-flow 13s linear infinite;
}

.bp-crm-node {
  /*
    Карточки построены как dark translucent surface.
    Основано на палитре Neutral / Background / Secondary и Border / Divider / Subtle.
  */
  position: absolute;
  z-index: 3;
  width: clamp(118px, 15vw, 168px);
  padding: clamp(12px, 1.4vw, 16px);
  border: 1px solid rgba(93, 241, 243, .3);
  border-radius: clamp(16px, 2vw, 22px);
  /* background:
    linear-gradient(180deg, rgba(78, 204, 205, .1), rgba(78, 204, 205, .035)),
    var(--bp-crm-surface); */
  box-shadow: 0 0 28px rgba(78, 204, 205, .16);
  backdrop-filter: blur(10px);
  transform: translate3d(-50%, -50%, 0);
  will-change: transform;
  animation: bp-crm-card-float 3s ease-in-out infinite;
}

.bp-crm-node:nth-of-type(odd) {
  animation-delay: -1.2s;
}

.bp-crm-node:nth-of-type(even) {
  animation-delay: -2.4s;
}

.bp-crm-node--cash { left: 9%; top: 72%; }
.bp-crm-node--purchase { left: 28%; top: 34%; }
.bp-crm-node--segments { left: 50%; top: 20%; }
.bp-crm-node--mail { left: 72%; top: 34%; }
.bp-crm-node--repeat { left: 92%; top: 72%; }

.bp-crm-node__title {
  /*
    Из архива: Body16 / Navigation hierarchy.
  */
  margin: 0 0 8px;
  color: var(--text-primary);
  font-size: var(--body16-fs, clamp(13px, 1.35vw, 16px));
  font-weight: var(--body16-fw, 700);
  line-height: var(--body16-lh, 1.15);
  letter-spacing: var(--body16-ls, 0);
  text-align: center;
}

.bp-crm-node__icon {
  /*
    Из архива: Icons = thin linear icons, turquoise accent.
    Анимация с иконок убрана. Иконки статичные.
  */
  display: block;
  width: clamp(42px, 5.8vw, 68px);
  aspect-ratio: 1;
  margin-inline: auto;
  color: var(--secondary-hover);
  filter: drop-shadow(0 0 8px rgba(93, 241, 243, 0.4));
}

.bp-crm-node__text {
  /*
    Из архива: Body16 16px / 140%.
  */
  margin: 8px 0 0;
  color: var(--text-secondary);
  font-size: var(--body12-fs, clamp(11px, 1.1vw, 13px));
  font-weight: var(--body12-fw, 400);
  line-height: var(--body12-lh, 1.4);
  letter-spacing: var(--body12-ls, 0);
  text-align: center;
}

.bp-crm-center {
  position: absolute;
  left: 50%;
  top: 64%;
  z-index: 4;
  width: clamp(126px, 17vw, 190px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(93, 241, 243, .52);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 38%, rgba(93, 241, 243, .22), transparent 42%),
    rgba(10, 21, 21, .88);
  box-shadow:
    0 0 0 12px rgba(78, 204, 205, .05),
    0 0 36px rgba(78, 204, 205, .32);
  animation: bp-crm-center-pulse 4s ease-in-out infinite;
}

.bp-crm-center__icon {
  /*
    Из архива: thin linear icons, turquoise accent.
    Иконка статичная, анимируется только контейнер/свет.
  */
  width: 54%;
  aspect-ratio: 1;
  color: var(--secondary-hover);
  filter: drop-shadow(0 0 10px rgba(93, 241, 243, .7));
}

.bp-crm-center__label {
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  padding: 8px 20px;
  border: 1px solid rgba(93, 241, 243, .45);
  border-radius: 14px;
  background: rgba(10, 21, 21, .92);
  font-size: var(--h3-fs, clamp(18px, 2.4vw, 28px));
  font-weight: var(--h3-fw, 700);
  line-height: var(--h3-lh, 1);
  letter-spacing: var(--h3-ls, -.02em);
  white-space: nowrap;
}

.bp-crm-node svg [stroke],
.bp-crm-center svg [stroke] {
  vector-effect: non-scaling-stroke;
}

@keyframes bp-crm-line-flow {
  to {
    stroke-dashoffset: -220;
  }
}

@keyframes bp-crm-card-float {
  0%, 100% {
    transform: translate3d(-50%, -50%, 0);
    /* border-color: rgba(93, 241, 243, .3);
    box-shadow: 0 0 28px rgba(78, 204, 205, .16); */
  }

  50% {
    transform: translate3d(-50%, calc(-50% - 9px), 0);
    /* border-color: rgba(93, 241, 243, .58);
    box-shadow: 0 0 38px rgba(78, 204, 205, .28); */
  }
}

/* @keyframes bp-crm-center-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 12px rgba(78, 204, 205, .05),
      0 0 36px rgba(78, 204, 205, .32);
  }

  50% {
    box-shadow:
      0 0 0 18px rgba(78, 204, 205, .07),
      0 0 48px rgba(78, 204, 205, .46);
  }
} */

@media (max-width: 768px) {
  .bp-crm-block {
    padding: clamp(28px, 8vw, 44px) clamp(14px, 4vw, 20px);
    border-radius: 24px;
  }



  .bp-crm-block__text {
    /*
      Из архива: Body16 mobile = 16px / 150% / -2%.
    */
    font-size: var(--body16-fs, 16px);
    line-height: var(--body16-lh, 1.5);
    letter-spacing: var(--body16-ls, -.02em);
  }

  .bp-crm-block__visual {
    display: none;
    width: min(100%, 430px);
    margin-inline: auto;
    aspect-ratio: .78;
    min-height: 520px;
  }

  .bp-crm-block__orbit {
    display: none;
  }

  .bp-crm-center {
    top: 50%;
    width: clamp(126px, 38vw, 160px);
  }

  .bp-crm-node {
    width: clamp(116px, 36vw, 142px);
    padding: 12px;
  }

  .bp-crm-node--cash { left: 5%; top: 55%; }
  .bp-crm-node--purchase { left: 13%; top: 29%; }
  .bp-crm-node--segments { left: 50%; top: 20%; }
  .bp-crm-node--mail { left: 87%; top: 29%; }
  .bp-crm-node--repeat { left: 95%; top: 55%; }

  .bp-crm-node__text {
    display: none;
  }
}

@media (max-width: 420px) {
  .bp-crm-block__visual {
    width: 100%;
    min-height: 500px;
  }

  .bp-crm-node {
    width: clamp(104px, 39vw, 126px);
  }

  .bp-crm-node--cash { left: 23%; }
  .bp-crm-node--repeat { left: 77%; }
}

@media (prefers-reduced-motion: reduce) {
  .bp-crm-block *,
  .bp-crm-block *::before,
  .bp-crm-block *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

/* End */


/* Start:/local/components/bonusplus.analytics/hero/templates/.default/style.css?17828079738195*/
/* 1. Локальные переменные блока берут значения из твоих глобальных классов (variables.css) */
.hero-analytics {
    --cyan: var(--secondary-hover, #5df1f3);
    --yellow: var(--primary-default, #ffd400);
    --text: var(--text-primary, #f7fbfc);
    --panel: rgba(10, 21, 21, 0.78); /* Можно привязать к --background-primary */
    --mx: 0;
    --my: 0;

    min-height: 640px;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(510px, 1fr) 610px;
    align-items: center;
    gap: 36px;
    padding: 50px 60px;
    isolation: isolate;
}

.lead {
    width: min(560px, 100%);
    margin: 0 0 32px;
    color: var(--text);
    font-size: 24px;
    line-height: 1.36;
    font-weight: 500;
}

.arrow {
    width: 22px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.visual-analytic {
    position: relative;
    left: -50px;
    width: 610px;
    height: 540px;
    /* Позиционирование мышью берет координаты из JS */
    transform: translate3d(calc(var(--mx) * 5px), calc(var(--my) * 4px), 0) rotateX(calc(var(--my) * -1.2deg))
        rotateY(calc(var(--mx) * 1.4deg));
    transition: transform 240ms ease-out;
}

/* 2. Используем color-mix для полупрозрачности HEX переменных */
.visual-analytic::before {
    content: "";
    position: absolute;
    inset: 42px 22px;
    border-radius: 50%;
    background: radial-gradient(circle, color-mix(in srgb, var(--cyan) 15%, transparent), transparent 58%);
    filter: blur(28px);
    animation: nebula 5s ease-in-out infinite;
    z-index: 0;
}

.orbit-line {
    position: absolute;
    border: 1px dashed color-mix(in srgb, var(--cyan) 35%, transparent);
    border-radius: 50%;
    z-index: 1;
}

.orbit-line.one {
    left: 16px;
    top: 116px;
    width: 560px;
    height: 188px;
    transform: rotate(-13deg);
}

.orbit-line.two {
    left: 70px;
    top: 84px;
    width: 470px;
    height: 250px;
    border-color: color-mix(in srgb, var(--cyan) 24%, transparent);
    transform: rotate(17deg);
}

.orbit-line.three {
    left: 58px;
    top: 190px;
    width: 480px;
    height: 170px;
    border-color: color-mix(in srgb, var(--cyan) 18%, transparent);
    transform: rotate(6deg);
}

.dot {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: var(--s);
    height: var(--s);
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 15px color-mix(in srgb, var(--cyan) 96%, transparent);
    animation: dot-pulse 2.7s ease-in-out infinite;
    animation-delay: var(--delay);
    z-index: 3;
}

.float-node {
    --x: 10px;
    --y: 10px;
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 1px;
    transform: translate3d(var(--x, 0px), var(--y, 0px), 0);
    transition: transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform;
    z-index: 4;
}

.card,
.dashboard {
    color: var(--cyan);
    background: var(--panel);
    /* border: 1px solid color-mix(in srgb, var(--cyan) 54%, transparent); */
    box-shadow:
        0 0 22px color-mix(in srgb, var(--cyan) 22%, transparent),
        inset 0 0 20px color-mix(in srgb, var(--cyan) 8%, transparent);
    backdrop-filter: blur(6px);
    position: absolute;
    will-change: transform;
}

.card {
    width: var(--w);
    min-height: var(--h);
    display: grid;
    place-items: center;
    gap: 6px;
    padding: 12px 10px 10px;
    border-radius: 16px;
    transform: translate3d(-50%, -50%, 0);
    animation: idle-float 4.8s ease-in-out infinite;
    animation-delay: var(--float-delay, 0s);
}

.card svg {
    width: 36px;
    height: 36px;
    fill: none;
    stroke: currentColor;
    stroke-width: 3.3;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 8px color-mix(in srgb, var(--cyan) 78%, transparent));
}

.card .solid {
    fill: currentColor;
    stroke: none;
}

.card span {
    color: var(--text);
    font-size: 12px;
    line-height: 1.12;
    font-weight: 760;
    text-align: center;
    white-space: nowrap;
}

.dashboard-node {
    z-index: 6;
}

.dashboard {
    width: 310px;
    height: 280px;
    padding: 18px 16px 16px;
    border-radius: 18px;
    transform: translate3d(-50%, -50%, 0);
    animation: dashboard-float 5.2s ease-in-out infinite;
    display: flex;
    flex-direction: column;
}

.dashboard-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}

.dashboard-label {
    font-size: 13px;
    color: var(--text);
    font-weight: 750;
}

.dashboard-value {
    display: flex;
    gap: 8px;
    align-items: baseline;
    color: var(--text);
    font-size: 20px;
    line-height: 1;
    font-weight: 850;
    white-space: nowrap;
}

.dashboard-growth {
    color: var(--cyan);
    font-size: 11px;
    font-weight: 850;
}

.line-chart {
    width: 100%;
    height: 84px;
    margin: 4px 0 12px;
    filter: drop-shadow(0 0 8px color-mix(in srgb, var(--cyan) 80%, transparent));
}

.metric-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    margin-top: auto;
}

.metric {
    height: 96px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 12px 4px 10px;
    border: 1px solid rgba(24, 228, 234, 0.28);
    border-radius: 10px;
    background: rgba(3, 24, 28, 0.58);
    text-align: center;
    color: #edfafa;
    font-size: 10px;
    line-height: 1.15;
    font-weight: 500;
}

.metric svg {
    width: 24px;
    height: 24px;
    margin-bottom: auto;
    color: var(--cyan);
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 7px rgba(24, 228, 234, 0.68));
}

.metric strong {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #f7fbfc;
    white-space: nowrap;
}

.metric small {
    color: var(--cyan);
    font-size: 10px;
    margin-left: 2px;
}

@keyframes idle-float {
    0%,
    100% {
        transform: translate3d(-50%, -50%, 0);
    }
    50% {
        transform: translate3d(-50%, calc(-50% - 9px), 0);
    }
}

@keyframes dashboard-float {
    0%,
    100% {
        transform: translate3d(-50%, -50%, 0);
    }
    50% {
        transform: translate3d(-50%, calc(-50% - 9px), 0);
    }
}

@keyframes dot-pulse {
    0%,
    100% {
        transform: scale(0.78);
        opacity: 0.58;
    }
    50% {
        transform: scale(1.18);
        opacity: 1;
    }
}

@keyframes nebula {
    0%,
    100% {
        opacity: 0.64;
        transform: scale(0.97);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 1ms !important;
    }
}

@media (max-width: 1200px) {
    .hero-analytics {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 44px 0 32px;
    }
    .visual-analytic {
        justify-self: center;
        margin: 0 auto;
        transform: scale(0.9);
        transform-origin: center;
        left: 0;
    }
}

@media (max-width: 980px) {
    .visual-analytic {
        transform: scale(0.78);
        margin-top: -30px;
        margin-bottom: -50px;
    }
}

@media (max-width: 768px) {
    .visual-analytic {
        display: none;
    }
}
/* 
@media (max-width: 420px) {
    .visual-analytic {
        transform: scale(0.55);
        margin-top: -80px;
        margin-bottom: -160px;
    }
} */

/* End */


/* Start:/local/components/bonusplus.marketing_activity/hero.block/templates/.default/style.css?17828079736775*/
.hero {
    --mxMM: 0;
    --myMM: 0;
    display: grid;
    grid-template-columns: minmax(420px, 1fr) minmax(460px, 600px);
    align-items: center;
    gap: 28px;
    padding: 96px 48px 82px 58px;
    background-image:
        radial-gradient(
            circle at 20% -10%,
            color-mix(in srgb, var(--primary-default) 15%, transparent) 0%,
            transparent 40%
        ),
        radial-gradient(
            circle at 100% 5%,
            color-mix(in srgb, var(--secondary-hover) 15%, transparent) 0%,
            transparent 40%
        );
    border-radius: clamp(24px, 3vw, 40px);
}

.hero::before {
    width: 520px;
    height: 210px;
    right: 88px;
    top: 116px;
    background: rgba(14, 230, 239, 0.16);
    transform: rotate(-8deg);
}

.hero::after {
    width: 420px;
    height: 180px;
    right: 16px;
    bottom: 54px;
    background: rgba(2, 28, 34, 0.72);
}

.badge {
    display: inline-grid;
    place-items: center;
    height: 30px;
    min-width: 68px;
    margin-bottom: 22px;
    border: 1px solid var(--primary-default);
    border-radius: 999px;
    color: var(--primary-default);
    font-size: 16px;
    font-weight: 800;
}

.lead {
    max-width: 650px;
    margin: 0 0 22px;
    font-size: clamp(20px, 2.2vw, 26px);
    line-height: 1.18;
    font-weight: 750;
}

.body {
    max-width: 680px;
    margin: 0 0 40px;
    color: var(--text-secondary);
    font-size: clamp(16px, 1.7vw, 20px);
    line-height: 1.5;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.arrow {
    width: 24px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.play {
    width: 26px;
    height: 26px;
    flex: 0 0 auto;
    border: 1.5px solid currentColor;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.play::before {
    content: "";
    width: 0;
    height: 0;
    margin-left: 2px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid currentColor;
}

.visual {
    position: relative;
    width: 600px;
    height: 390px;
    transform: translate3d(calc(var(--mxMM) * 10px), calc(var(--myMM) * 8px), 0) rotateX(calc(var(--myMM) * -3deg))
        rotateY(calc(var(--mxMM) * 4deg));
    transition: transform 240ms ease-out;
}

.orbit {
    position: absolute;
    border: 1px dashed rgba(24, 228, 236, 0.45);
    border-radius: 50%;
    transform-origin: center;
    animation: orbit-spin 18s linear infinite;
    opacity: 0.76;
}

.orbit.one {
    width: 548px;
    height: 178px;
    left: 28px;
    top: 24px;
    transform: rotate(7deg);
}

.orbit.two {
    width: 430px;
    height: 190px;
    left: 88px;
    top: 78px;
    border-color: rgba(24, 228, 236, 0.32);
    animation-duration: 22s;
    animation-direction: reverse;
}

.orbit.three {
    width: 380px;
    height: 168px;
    left: 84px;
    top: 145px;
    border-color: rgba(24, 228, 236, 0.22);
    animation-duration: 26s;
}

.glow-dot {
    position: absolute;
    width: var(--size);
    height: var(--size);
    left: var(--x);
    top: var(--y);
    border-radius: 50%;
    background: var(--secondary-hover);
    box-shadow: 0 0 14px rgba(24, 228, 236, 0.95);
    animation: dot-pulse 2.8s ease-in-out infinite;
    animation-delay: var(--delay);
}

.icon-card {
    position: absolute;
    display: grid;
    place-items: center;
    border: 1px solid rgba(24, 228, 236, 0.58);
    background: radial-gradient(
        circle at 50% 35%,
        rgba(18, 243, 255, 0.28),
        rgba(6, 58, 63, 0.58) 54%,
        rgba(6, 25, 29, 0.9)
    );
    color: var(--secondary-hover);
    box-shadow:
        0 0 24px rgba(17, 241, 250, 0.42),
        inset 0 0 18px rgba(32, 242, 255, 0.22);
    animation:
        float-card 5s ease-in-out infinite,
        glow-pulse 3.2s ease-in-out infinite;
    will-change: transform, filter;
}

.icon-card svg {
    width: 48%;
    height: 48%;
    fill: none;
    stroke: currentColor;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 8px rgba(24, 228, 236, 0.85));
}

.gift {
    width: 142px;
    height: 142px;
    left: 214px;
    top: 32px;
    border-radius: 42px;
    animation-delay: 0s, 0s;
}

.client,
.chat,
.percent {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: rgba(2, 25, 30, 0.74);
    box-shadow: 0 0 20px rgba(24, 228, 236, 0.2);
}

.client {
    width: 110px;
    height: 110px;
    left: 68px;
    top: 187px;
    animation-delay:
        -0.8s,
        -0.2s;
}

.chat {
    left: 424px;
    top: 139px;
    animation-delay:
        -1.6s,
        -0.9s;
}

.percent {
    left: 306px;
    top: 250px;
    animation-delay:
        -2.3s,
        -1.4s;
}

.percent .line {
    stroke-width: 5;
}

@keyframes orbit-spin {
    from {
        transform: rotate(var(--base-rotation, 0deg));
    }
    to {
        transform: rotate(calc(var(--base-rotation, 0deg) + 360deg));
    }
}

@keyframes float-card {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -9px, 0);
    }
}

@keyframes glow-pulse {
    0%,
    100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.18);
    }
}

@keyframes dot-pulse {
    0%,
    100% {
        transform: scale(0.76);
        opacity: 0.58;
    }
    50% {
        transform: scale(1.16);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 1ms !important;
    }
}

@media (max-width: 1200px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 60px 0;
    }

    .visual {
        justify-self: center;
        margin: 0 auto;
        transform: scale(0.9);
        transform-origin: center;
    }
}

@media (max-width: 900px) {
    .hero {
        padding: 40px 0;
    }

    .visual {
        transform: scale(0.78);
        margin-top: -20px;
        margin-bottom: -40px;
    }
}

@media (max-width: 768px) {
    .visual {
        display: none;
    }
}

/* @media (max-width: 420px) {
    .visual {
        transform: scale(0.55);
        margin-top: -80px;
        margin-bottom: -160px;
    }
} */

/* End */


/* Start:/local/components/bonusplus.communications/hero/templates/.default/style.css?178280797311051*/
.bp-comms-hero {
  /*
    BonusPlus / БонусПлюс — неоновый digital style.
    Адаптировано под глобальную дизайн-систему:
  */
  --bp-bg: var(--background-primary, #0a1515);
  --bp-bg-2: var(--background-secondary, #141d1d);
  --bp-cyan: var(--secondary-default, #4ecccd);
  --bp-cyan-2: var(--secondary-hover, #5df1f3);
  --bp-yellow: var(--primary-default, #ffd400);
  --bp-white: var(--text-primary, #ffffff);
  --bp-text: var(--text-secondary, #efefef);
  --bp-muted: var(--text-muted, rgba(239, 239, 239, 0.76));
  --bp-muted-2: rgba(239, 239, 239, 0.58);
  --bp-line: rgba(78, 204, 205, 0.24);
  --bp-line-strong: rgba(78, 204, 205, 0.42);
  --bp-card: rgba(7, 20, 20, 0.72);
  --bp-card-2: rgba(14, 27, 27, 0.82);
  --bp-shadow: 0 0 0 1px rgba(93, 241, 243, 0.06), 0 12px 44px rgba(0, 0, 0, 0.32);

  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px) clamp(18px, 3vw, 34px) clamp(34px, 5vw, 54px);
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(78, 204, 205, 0.14);
  background:
    radial-gradient(circle at 50% 0%, rgba(93, 241, 243, 0.1), transparent 22%),
    radial-gradient(circle at 10% 50%, rgba(78, 204, 205, 0.06), transparent 30%),
    radial-gradient(circle at 90% 50%, rgba(78, 204, 205, 0.06), transparent 30%),
    linear-gradient(180deg, #061011 0%, var(--bp-bg) 48%, #081112 100%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  color: var(--bp-text);
  font-family: "Manrope", "Stem", sans-serif;
}

.bp-comms-hero,
.bp-comms-hero * {
  box-sizing: border-box;
}

.bp-comms-hero::before,
.bp-comms-hero::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  pointer-events: none;
  z-index: -1;
  filter: blur(18px);
}

.bp-comms-hero::before {
  top: -90px;
  left: 50%;
  width: 360px;
  height: 160px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(93, 241, 243, 0.14), transparent 70%);
}

.bp-comms-hero::after {
  bottom: -120px;
  left: 50%;
  width: 720px;
  height: 220px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(78, 204, 205, 0.09), transparent 70%);
}

.bp-comms-hero__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(93, 241, 243, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(93, 241, 243, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 100%);
}

.bp-comms-hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 44px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(78, 204, 205, 0.1), rgba(78, 204, 205, 0.05));
  border: 1px solid rgba(93, 241, 243, 0.15);
  box-shadow:
    inset 0 0 22px rgba(93, 241, 243, 0.04),
    0 0 28px rgba(78, 204, 205, 0.07);
}

.bp-comms-hero__header {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto clamp(34px, 4vw, 44px);
  text-align: center;
}

.bp-comms-hero__title {
  margin: 0;
  color: var(--bp-white);
  text-wrap: balance;
}

.bp-comms-hero__lead {
  margin: 18px auto 0;
  max-width: 840px;
  color: var(--bp-muted);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.55;
  text-wrap: balance;
}

.bp-comms-hero__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(300px, 420px) minmax(220px, 1fr);
  gap: clamp(18px, 2vw, 28px);
  align-items: center;
  min-height: 470px;
}

.bp-comms-hero__col {
  display: grid;
  gap: 18px;
  position: relative;
  z-index: 2;
}

.bp-comms-hero__center {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  z-index: 1;
}

.bp-comms-hero__ring,
.bp-comms-hero__ring::before,
.bp-comms-hero__ring::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.bp-comms-hero__ring {
  width: min(100%, 338px);
  aspect-ratio: 1;
  border: 1px solid rgba(78, 204, 205, 0.2);
  box-shadow: inset 0 0 34px rgba(78, 204, 205, 0.04);
}

.bp-comms-hero__ring::before {
  width: calc(100% - 62px);
  height: calc(100% - 62px);
  border: 1px solid rgba(78, 204, 205, 0.2);
}

.bp-comms-hero__ring::after {
  width: calc(100% + 70px);
  height: calc(100% + 70px);
  border: 1px dashed rgba(78, 204, 205, 0.2);
  /* opacity: 0.7; */
  animation: rotateRing 30s linear infinite;
}
@keyframes rotateRing {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.bp-comms-hero__core {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border-radius: 28px;
  border: 1px solid rgba(93, 241, 243, 0.22);
  background: linear-gradient(180deg, rgba(78, 204, 205, 0.08), rgba(78, 204, 205, 0.03)), rgba(7, 20, 20, 0.85);
  box-shadow:
    inset 0 0 28px rgba(93, 241, 243, 0.08),
    0 0 50px rgba(78, 204, 205, 0.12),
    0 0 0 10px rgba(78, 204, 205, 0.02);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.bp-comms-hero__core svg {
  width: 52px;
  height: 52px;
  color: var(--bp-cyan-2);
  transition: color 0.3s ease;
  display: block;
}

.bp-comms-hero__core:hover {
  transform: translateY(-8px);
  border-color: rgba(93, 241, 243, 0.5);
  box-shadow:
    inset 0 0 32px rgba(93, 241, 243, 0.18),
    0 16px 64px rgba(93, 241, 243, 0.36),
    0 0 0 10px rgba(78, 204, 205, 0.04);
}

.bp-comms-hero__core:hover svg {
  color: var(--bp-yellow);
}

.arrow {
  width: 22px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bp-comms-hero__dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--bp-cyan-2);
  box-shadow:
    0 0 14px rgba(93, 241, 243, 0.95),
    0 0 30px rgba(93, 241, 243, 0.35);
  z-index: 2;
}
.bp-comms-hero__dot--lb {
  left: 38px;
  bottom: 123px;
}
.bp-comms-hero__dot--rt {
  right: 23px;
  top: 50%;
  transform: translateY(-50%);
}
.bp-comms-hero__dot--rb {
  right: 38px;
  bottom: 123px;
}
.bp-comms-hero__dot--lt {
  left: 23px;
  top: 50%;
  transform: translateY(-50%);
}
.bp-comms-hero__dot--mt {
  top: 56px;
  left: 50%;
  transform: translateX(-50%);
}
.bp-comms-hero__dot--ml {
  left: 38px;
  top: 123px;
}
.bp-comms-hero__dot--mr {
  right: 38px;
  top: 123px;
}



.bp-card--dashed-glow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 76px;
  height: 1px;
  border-top: 1px dashed rgba(93, 241, 243, 0.3);
}

.bp-comms-hero__col--left .bp-card--dashed-glow::after {
  right: -77px;
}

.bp-comms-hero__col--right .bp-card--dashed-glow::after {
  left: -77px;
}

.bp-comms-hero__connector-dot {
  position: absolute;
  top: calc(50% - 4px);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(78, 204, 205, 0.48);
  box-shadow: 0 0 10px rgba(93, 241, 243, 0.3);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.bp-comms-hero__col--left .bp-comms-hero__connector-dot {
  right: -11px;
}
.bp-comms-hero__col--right .bp-comms-hero__connector-dot {
  left: -11px;
}

.bp-card--dashed-glow:hover .bp-comms-hero__connector-dot {
  background: var(--bp-yellow);
  box-shadow: 0 0 10px rgba(255, 212, 0, 0.6);
}

.bp-card--dashed-glow .bp-card__icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid rgba(93, 241, 243, 0.15);
  background: radial-gradient(circle at 30% 30%, rgba(93, 241, 243, 0.12), transparent 58%), rgba(10, 21, 21, 0.86);
  box-shadow:
    inset 0 0 28px rgba(93, 241, 243, 0.05),
    0 0 28px rgba(78, 204, 205, 0.06);
  color: var(--bp-cyan-2);
}

.bp-card--dashed-glow:hover .bp-card__icon {
  color: var(--bp-yellow);
}

.bp-card--dashed-glow .bp-card__icon svg {
  width: 34px;
  height: 34px;
  display: block;
}

.bp-card--dashed-glow .bp-card__title {
  margin: 0 0 8px;
  color: var(--bp-white);
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.bp-card--dashed-glow:hover .bp-card__title {
  color: var(--bp-yellow);
}

.bp-card--dashed-glow .bp-card__text {
  margin: 0;
  color: var(--bp-muted);
  font-size: 14px;
  line-height: 1.45;
  max-width: 240px;
}

.bp-comms-hero__wire {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.bp-comms-hero__wire path {
  fill: none;
  stroke: rgba(93, 241, 243, 0.3);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 4 7;
  filter: drop-shadow(0 0 8px rgba(93, 241, 243, 0.2));
}

.bp-comms-hero__footer-note {
  margin-top: 18px;
  text-align: center;
  color: var(--bp-muted-2);
  font-size: 13px;
  line-height: 1.4;
}

@media (max-width: 1080px) {
  .bp-comms-hero__layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    min-height: auto;
  }

  .bp-comms-hero__center {
    display: none;
  }

  .bp-comms-hero__col {
    display: contents;
  }

  .bp-comms-hero__wire,
  .bp-card--dashed-glow::after,
  .bp-comms-hero__connector-dot {
    display: none;
  }
}

@media (max-width: 720px) {
  .bp-comms-hero {
    padding: 24px 16px 28px;
    border-radius: 22px;
  }

  .bp-comms-hero__badge {
    width: 56px;
    height: 40px;
    margin-bottom: 14px;
  }



  .bp-comms-hero__lead {
    font-size: 15px;
  }

  .bp-comms-hero__layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .bp-comms-hero__center {
    display: none;
  }

  .bp-comms-hero__ring {
    width: min(100%, 244px);
  }

  .bp-comms-hero__ring::before {
    width: calc(100% - 44px);
    height: calc(100% - 44px);
  }

  .bp-comms-hero__ring::after {
    width: calc(100% + 44px);
    height: calc(100% + 44px);
  }

  .bp-comms-hero__core {
    width: 92px;
    height: 92px;
    border-radius: 24px;
  }

  .bp-comms-hero__core svg {
    width: 42px;
    height: 42px;
  }

  .bp-comms-hero__dot--mt {
    top: 42px;
  }
  .bp-comms-hero__dot--ml {
    left: 34px;
    top: 74px;
  }
  .bp-comms-hero__dot--mr {
    right: 34px;
    top: 74px;
  }
  .bp-comms-hero__dot--lb {
    left: 34px;
    bottom: 74px;
  }
  .bp-comms-hero__dot--rb {
    right: 34px;
    bottom: 74px;
  }
}

/* End */


/* Start:/local/components/bonusplus.main/cta/templates/.default/style.css?1782807973967*/
.left-fill-section-pc,
.left-fill-section-mobile {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    height: auto;
    overflow: hidden;
}

.left-fill-section-mobile {
    display: none;
}

.cta-text-main {
    margin-left: 50px;
}

.left-fill-section-content-mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    box-sizing: border-box;
    padding: 32px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    text-align: start;
    gap: 10px;
}

@media (max-width: 768px) {
    .left-fill-section-pc {
        display: none;
    }

    .left-fill-section-mobile {
        min-height: 500px;
        display: flex;
    }
}

@media (min-width: 1921px) {
    .left-fill-section-pc {
        width: 100%;
        max-width: 1920px;
        margin-left: auto;
        margin-right: auto;
        border-radius: 24px;
    }
}

/* End */
/* /local/components/bonusplus.common/hero/templates/.default/style.css?17828079731241 */
/* /local/components/bonusplus.main/trust.ticker/templates/.default/style.css?17828079732563 */
/* /local/components/bonusplus.main/integrations/templates/.default/style.css?17828079731636 */
/* /local/components/bonusplus.registration/hero.block/templates/.default/style.css?17828079736459 */
/* /local/components/bonusplus.crm/hero/templates/.default/style.css?17828079739821 */
/* /local/components/bonusplus.analytics/hero/templates/.default/style.css?17828079738195 */
/* /local/components/bonusplus.marketing_activity/hero.block/templates/.default/style.css?17828079736775 */
/* /local/components/bonusplus.communications/hero/templates/.default/style.css?178280797311051 */
/* /local/components/bonusplus.main/cta/templates/.default/style.css?1782807973967 */
