

/* Start:/local/components/bonusplus.integrations/hero/templates/.default/style.css?178695703218735*/
/* =========================================================================
   BonusPlus Detail Integration Component Styles
   Strictly unified borders (1px solid var(--border-subtle)), 
   border-radius (16px / 12px), backgrounds, and hover lift effects.
   ========================================================================= */

.bp-integration-page {
  position: relative;
  overflow-x: hidden;
  padding-bottom: 0;
}

.highlight-cyan {
  color: var(--secondary-default, #4ECCCD);
}

/* Eyebrow badge */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 14px;
  border: 1px solid rgba(78, 204, 205, .48);
  background: rgba(78, 204, 205, .08);
  color: var(--secondary-hover, #5DF1F3);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  align-self: flex-start;
}

.eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--secondary-default, #4ECCCD);
  box-shadow: 0 0 12px rgba(78, 204, 205, .65);
}

/* =========================================================================
   Hero Section
   ========================================================================= */
.hero.bp-int-hero {
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 76px 50px 90px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.hero.bp-int-hero::before {
  content: '';
  position: absolute;
  width: 650px;
  height: 650px;
  right: -250px;
  top: -300px;
  border: 1px solid rgba(255, 212, 0, .25);
  border-radius: 50%;
  box-shadow: 0 0 70px rgba(255, 212, 0, .06);
  pointer-events: none;
}

.hero.bp-int-hero::after {
  content: '';
  position: absolute;
  width: 580px;
  height: 250px;
  right: 4%;
  top: 34%;
  background: radial-gradient(ellipse, rgba(78, 204, 205, .15), transparent 66%);
  filter: blur(14px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(460px, .97fr);
  gap: 54px;
  align-items: center;
  width: 100%;
}

.hero-copy {
  position: relative;
  z-index: 2;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.hero-copy .bread-crumbs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
  margin-bottom: 20px;
  padding: 0;
  text-align: left;
}

.hero-copy h1 {
  text-align: left;
  margin-top: 0;
  margin-bottom: 22px;
  font-size: clamp(38px, 4.8vw, 60px);
  line-height: 1.05;
  letter-spacing: -.035em;
  font-weight: 800;
  color: var(--text-primary);
}

.hero-copy .lead {
  text-align: left;
  max-width: 650px;
  margin-top: 0;
  margin-bottom: 30px;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

/* Brand badge in hero */
.integration-visual {
  position: relative;
}

.moysklad-brand {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin: 0 10px 18px 0;
  font-size: 25px;
  font-weight: 800;
  color: #fff;
}

.bp-int-hero-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.12));
  background: rgba(255, 255, 255, 0.05);
  padding: 4px;
}

/* =========================================================================
   Demo Panel (Interactive Mockups)
   ========================================================================= */
.demo-panel {
  position: relative;
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, .16));
  border-radius: 18px;
  padding: 16px;
  background: linear-gradient(150deg, rgba(20, 29, 29, .98), rgba(10, 21, 21, .94));
  box-shadow: 0 22px 70px rgba(0, 0, 0, .34), 0 0 70px rgba(78, 204, 205, .10);
  overflow: hidden;
  box-sizing: border-box;
}

.demo-panel::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  right: -90px;
  bottom: -110px;
  background: radial-gradient(circle, rgba(78, 204, 205, .16), transparent 65%);
  pointer-events: none;
}

.demo-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.demo-tab {
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  background: rgba(255, 255, 255, .035);
  border-radius: 10px;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: all .2s ease;
}

.demo-tab:hover {
  background: rgba(78, 204, 205, 0.08);
  border-color: rgba(78, 204, 205, 0.35);
  color: #fff;
}

.demo-tab.active {
  color: var(--secondary-hover);
  background: rgba(78, 204, 205, .12);
  border-color: rgba(78, 204, 205, .45);
}

.demo-screen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.demo-card {
  min-height: 274px;
  padding: 18px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, .10));
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.demo-card--wallet {
  background: linear-gradient(135deg, #1C2D2D, #0A1717);
  border: 1px solid rgba(78, 204, 205, 0.4);
}

.demo-card h4 {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.demo-muted {
  color: var(--text-disabled, rgba(255, 255, 255, .6));
  font-size: 11px;
}

.demo-customer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 5px 0 15px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.vip {
  padding: 3px 8px;
  color: var(--secondary-hover);
  background: rgba(78, 204, 205, .12);
  border: 1px solid rgba(78, 204, 205, 0.25);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
}

.bonus-widget {
  padding: 14px;
  background: rgba(78, 204, 205, .07);
  border: 1px solid rgba(78, 204, 205, .20);
  border-radius: 12px;
  box-sizing: border-box;
}

.bonus-balance {
  margin: 5px 0 10px;
  color: var(--secondary-hover);
  font-size: 23px;
  font-weight: 800;
}

.demo-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin: 9px 0;
  font-size: 11px;
}

.demo-row strong {
  font-weight: 700;
  white-space: nowrap;
  color: #fff;
}

.demo-row.total {
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
  font-size: 14px;
}

.spendable {
  color: var(--primary-default);
}

.demo-action {
  width: 100%;
  min-height: 38px;
  margin-top: 10px;
  border: 1px solid rgba(78, 204, 205, .55);
  border-radius: 8px;
  background: rgba(78, 204, 205, .1);
  color: white;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  transition: all .2s ease;
}

.demo-action:hover {
  background: rgba(78, 204, 205, .18);
  border-color: var(--secondary-default);
}

.demo-action.applied {
  border-color: rgba(255, 212, 0, .55);
  background: rgba(255, 212, 0, .08);
  color: var(--primary-default);
}

.demo-pay {
  width: 100%;
  min-height: 38px;
  margin-top: auto;
  border: 1px solid rgba(78, 204, 205, .45);
  border-radius: 8px;
  background: rgba(78, 204, 205, .6);
  color: white;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  transition: background .2s ease;
}

.demo-pay:hover {
  background: rgba(78, 204, 205, .8);
}

.demo-save {
  width: 100%;
  min-height: 36px;
  margin-top: 8px;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 11px;
  transition: border-color .2s ease, color .2s ease;
}

.demo-save:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.demo-empty {
  min-height: 274px;
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px dashed rgba(78, 204, 205, .28);
  border-radius: 14px;
  background: rgba(78, 204, 205, .04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-sizing: border-box;
}

.demo-empty strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
  color: #fff;
}

.demo-empty p {
  max-width: 380px;
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 13px;
}

.cash-illustration {
  width: 130px;
  height: 130px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(78, 204, 205, .17), rgba(255, 212, 0, .07));
  border: 1px solid var(--border-subtle);
  flex: 0 0 auto;
}

.cash-illustration svg {
  width: 68px;
  height: 68px;
  color: var(--secondary-hover);
}

/* =========================================================================
   Sections & Cards
   ========================================================================= */
.section {
  position: relative;
  padding: 84px 50px;
  box-sizing: border-box;
}

.section--secondary {
  background: rgba(20, 29, 29, .58);
}

.section-head {
  max-width: 780px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-head h2 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.08;
  letter-spacing: -.025em;
  font-weight: 800;
  color: #fff;
}

.section-head p {
  color: var(--text-secondary);
  margin-bottom: 0;
  font-size: 16px;
}

.cards-3, .cards-6 {
  display: grid;
  gap: 18px;
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.cards-6 {
  grid-template-columns: repeat(3, 1fr);
}

/* Uniform card styling for all cards */
.bp-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.12));
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(20, 29, 29, .98), rgba(12, 22, 22, .94));
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  box-sizing: border-box;
}

.bp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(78, 204, 205, .45);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .25), 0 0 30px rgba(78, 204, 205, .08);
}

.bp-card h3 {
  margin-top: 0;
  margin-bottom: 9px;
  font-size: 19px;
  line-height: 1.25;
  color: #fff;
  font-weight: 700;
}

.bp-card p {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.55;
}

/* Choice cards */
.bp-card--choice {
  cursor: pointer;
}

.bp-card--choice.active {
  border-color: rgba(78, 204, 205, .62);
  box-shadow: 0 0 0 1px rgba(78, 204, 205, .15), 0 0 50px rgba(78, 204, 205, .12);
}

/* Uniform card icons */
.card-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 12px;
  border: 1px solid rgba(78, 204, 205, .35);
  color: var(--secondary-hover);
  background: rgba(78, 204, 205, .08);
}

.card-icon.yellow {
  color: var(--primary-default);
  border-color: rgba(255, 212, 0, .35);
  background: rgba(255, 212, 0, .08);
}

.card-icon svg {
  width: 23px;
  height: 23px;
}

.choice-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--secondary-hover);
  font-size: 13px;
  font-weight: 700;
}

/* Feature cards in 6-grid */
.feature-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px;
}

.feature-card .card-icon {
  margin-bottom: 0;
  width: 44px;
  height: 44px;
}

.feature-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
  margin-top: 0;
}

.feature-card p {
  font-size: 13px;
  line-height: 1.5;
}

/* =========================================================================
   Workflow & Migration
   ========================================================================= */
.workflow {
  display: grid;
  grid-template-columns: 1fr 46px 1fr 46px 1fr;
  gap: 12px;
  align-items: center;
}

.workflow-step {
  min-height: 178px;
  padding: 24px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.12));
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(20, 29, 29, .98), rgba(12, 22, 22, .94));
  box-sizing: border-box;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.workflow-step:hover {
  transform: translateY(-4px);
  border-color: rgba(78, 204, 205, .45);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .25), 0 0 30px rgba(78, 204, 205, .08);
}

.step-num {
  width: 38px;
  height: 38px;
  min-width: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(78, 204, 205, .45);
  background: rgba(78, 204, 205, .08);
  color: var(--secondary-hover);
  font-size: 14px;
  font-weight: 800;
}

.workflow-step h3 {
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 18px;
  color: #fff;
}

.workflow-step p {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.5;
}

.workflow-arrow {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .5);
}

.workflow-arrow svg {
  width: 26px;
  height: 26px;
}

.migration {
  position: relative;
  overflow: hidden;
  margin-top: 28px;
  padding: 30px 34px;
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(255, 212, 0, .35);
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(255, 212, 0, .08), rgba(20, 29, 29, .98) 46%, rgba(78, 204, 205, .04));
  box-shadow: 0 0 50px rgba(255, 212, 0, .08);
  box-sizing: border-box;
}

.migration::after {
  content: '';
  position: absolute;
  right: -90px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 212, 0, .12), transparent 67%);
  pointer-events: none;
}

.migration-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--primary-default);
  background: rgba(255, 212, 0, .08);
  border: 1px solid rgba(255, 212, 0, .35);
  flex: 0 0 auto;
}

.migration-icon svg {
  width: 30px;
  height: 30px;
}

.migration-copy {
  flex: 1;
}

.migration-copy h3 {
  margin-top: 0;
  margin-bottom: 7px;
  font-size: 22px;
  color: #fff;
}

.migration-copy p {
  margin-bottom: 0;
  color: var(--text-secondary);
}

.migration .btn {
  flex-shrink: 0;
}

/* =========================================================================
   Connect Cards
   ========================================================================= */
.connect-card {
  position: relative;
  overflow: hidden;
  min-height: 206px;
}

.connect-card::after {
  content: attr(data-step);
  position: absolute;
  right: 18px;
  top: -12px;
  color: rgba(255, 255, 255, .035);
  font-size: 88px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

/* =========================================================================
   FAQ Section
   ========================================================================= */
.faq-container {
  max-width: 920px;
  margin: 0 auto;
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.12));
  border-radius: 16px;
  overflow: hidden;
  background: rgba(20, 29, 29, .7);
  box-sizing: border-box;
}

.faq-item + .faq-item {
  border-top: 1px solid var(--border-subtle);
}

.faq-question {
  width: 100%;
  min-height: 64px;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border: 0;
  color: white;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 650;
  transition: background .2s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, .025);
}

.faq-chevron {
  flex: 0 0 auto;
  transition: transform .25s ease;
  width: 18px;
  height: 18px;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer-inner p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.65;
}

/* =========================================================================
   CTA Section
   ========================================================================= */
#cta {
  padding-top: 30px;
  padding-bottom: 50px;
}

#faq::after,
#cta::after {
  display: none !important;
}

.cta-wide {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 38px 42px;
  border: 1px solid rgba(78, 204, 205, .34);
  border-radius: 20px;
  background: linear-gradient(100deg, rgba(78, 204, 205, .07), rgba(20, 29, 29, .94) 50%, rgba(255, 212, 0, .04));
  box-shadow: 0 0 70px rgba(78, 204, 205, .10);
  box-sizing: border-box;
}

.cta-wide::after {
  content: '';
  position: absolute;
  right: 120px;
  bottom: -180px;
  width: 450px;
  height: 330px;
  border: 1px solid rgba(78, 204, 205, .15);
  border-radius: 50%;
  transform: rotate(-12deg);
  pointer-events: none;
}

.cta-copy {
  flex: 1;
  position: relative;
  z-index: 1;
}

.cta-copy h2 {
  margin-top: 0;
  margin-bottom: 9px;
  font-size: clamp(28px, 3vw, 38px);
  color: #fff;
  font-weight: 800;
}

.cta-copy p {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 16px;
}

.cta-wide .btn {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

/* =========================================================================
   Responsive Breakpoints
   ========================================================================= */
@media (max-width: 980px) {
  .hero.bp-int-hero { padding: 50px 32px 60px; }
  .section { padding: 70px 32px; }
  #cta { padding: 20px 32px 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .integration-visual { max-width: 680px; }
  .moysklad-brand { justify-content: flex-start; }
  .cards-3, .cards-6 { grid-template-columns: repeat(2, 1fr); }
  .workflow { grid-template-columns: 1fr; }
  .workflow-arrow { transform: rotate(90deg); }
}

@media (max-width: 660px) {
  .section { padding: 62px 20px; }
  #cta { padding: 10px 20px 30px; }
  .hero.bp-int-hero { min-height: unset; padding: 42px 20px 54px; }
  .hero-copy h1 { font-size: 36px; }
  .hero-copy .lead { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .demo-screen { grid-template-columns: 1fr; }
  .demo-card { min-height: unset; }
  .demo-empty { min-height: unset; flex-direction: column; align-items: flex-start; }
  .cash-illustration { width: 100%; height: 110px; }
  .cards-3, .cards-6 { grid-template-columns: 1fr; }
  .migration { align-items: flex-start; flex-direction: column; padding: 24px; }
  .migration .btn { width: 100%; }
  .cta-wide { align-items: flex-start; flex-direction: column; padding: 28px 24px; }
  .cta-wide .btn { width: 100%; }
}

/* End */


/* Start:/local/components/bonusplus.integrations/suitability/templates/.default/style.css?178695703218735*/
/* =========================================================================
   BonusPlus Detail Integration Component Styles
   Strictly unified borders (1px solid var(--border-subtle)), 
   border-radius (16px / 12px), backgrounds, and hover lift effects.
   ========================================================================= */

.bp-integration-page {
  position: relative;
  overflow-x: hidden;
  padding-bottom: 0;
}

.highlight-cyan {
  color: var(--secondary-default, #4ECCCD);
}

/* Eyebrow badge */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 14px;
  border: 1px solid rgba(78, 204, 205, .48);
  background: rgba(78, 204, 205, .08);
  color: var(--secondary-hover, #5DF1F3);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  align-self: flex-start;
}

.eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--secondary-default, #4ECCCD);
  box-shadow: 0 0 12px rgba(78, 204, 205, .65);
}

/* =========================================================================
   Hero Section
   ========================================================================= */
.hero.bp-int-hero {
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 76px 50px 90px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.hero.bp-int-hero::before {
  content: '';
  position: absolute;
  width: 650px;
  height: 650px;
  right: -250px;
  top: -300px;
  border: 1px solid rgba(255, 212, 0, .25);
  border-radius: 50%;
  box-shadow: 0 0 70px rgba(255, 212, 0, .06);
  pointer-events: none;
}

.hero.bp-int-hero::after {
  content: '';
  position: absolute;
  width: 580px;
  height: 250px;
  right: 4%;
  top: 34%;
  background: radial-gradient(ellipse, rgba(78, 204, 205, .15), transparent 66%);
  filter: blur(14px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(460px, .97fr);
  gap: 54px;
  align-items: center;
  width: 100%;
}

.hero-copy {
  position: relative;
  z-index: 2;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.hero-copy .bread-crumbs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
  margin-bottom: 20px;
  padding: 0;
  text-align: left;
}

.hero-copy h1 {
  text-align: left;
  margin-top: 0;
  margin-bottom: 22px;
  font-size: clamp(38px, 4.8vw, 60px);
  line-height: 1.05;
  letter-spacing: -.035em;
  font-weight: 800;
  color: var(--text-primary);
}

.hero-copy .lead {
  text-align: left;
  max-width: 650px;
  margin-top: 0;
  margin-bottom: 30px;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

/* Brand badge in hero */
.integration-visual {
  position: relative;
}

.moysklad-brand {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin: 0 10px 18px 0;
  font-size: 25px;
  font-weight: 800;
  color: #fff;
}

.bp-int-hero-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.12));
  background: rgba(255, 255, 255, 0.05);
  padding: 4px;
}

/* =========================================================================
   Demo Panel (Interactive Mockups)
   ========================================================================= */
.demo-panel {
  position: relative;
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, .16));
  border-radius: 18px;
  padding: 16px;
  background: linear-gradient(150deg, rgba(20, 29, 29, .98), rgba(10, 21, 21, .94));
  box-shadow: 0 22px 70px rgba(0, 0, 0, .34), 0 0 70px rgba(78, 204, 205, .10);
  overflow: hidden;
  box-sizing: border-box;
}

.demo-panel::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  right: -90px;
  bottom: -110px;
  background: radial-gradient(circle, rgba(78, 204, 205, .16), transparent 65%);
  pointer-events: none;
}

.demo-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.demo-tab {
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  background: rgba(255, 255, 255, .035);
  border-radius: 10px;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: all .2s ease;
}

.demo-tab:hover {
  background: rgba(78, 204, 205, 0.08);
  border-color: rgba(78, 204, 205, 0.35);
  color: #fff;
}

.demo-tab.active {
  color: var(--secondary-hover);
  background: rgba(78, 204, 205, .12);
  border-color: rgba(78, 204, 205, .45);
}

.demo-screen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.demo-card {
  min-height: 274px;
  padding: 18px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, .10));
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.demo-card--wallet {
  background: linear-gradient(135deg, #1C2D2D, #0A1717);
  border: 1px solid rgba(78, 204, 205, 0.4);
}

.demo-card h4 {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.demo-muted {
  color: var(--text-disabled, rgba(255, 255, 255, .6));
  font-size: 11px;
}

.demo-customer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 5px 0 15px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.vip {
  padding: 3px 8px;
  color: var(--secondary-hover);
  background: rgba(78, 204, 205, .12);
  border: 1px solid rgba(78, 204, 205, 0.25);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
}

.bonus-widget {
  padding: 14px;
  background: rgba(78, 204, 205, .07);
  border: 1px solid rgba(78, 204, 205, .20);
  border-radius: 12px;
  box-sizing: border-box;
}

.bonus-balance {
  margin: 5px 0 10px;
  color: var(--secondary-hover);
  font-size: 23px;
  font-weight: 800;
}

.demo-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin: 9px 0;
  font-size: 11px;
}

.demo-row strong {
  font-weight: 700;
  white-space: nowrap;
  color: #fff;
}

.demo-row.total {
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
  font-size: 14px;
}

.spendable {
  color: var(--primary-default);
}

.demo-action {
  width: 100%;
  min-height: 38px;
  margin-top: 10px;
  border: 1px solid rgba(78, 204, 205, .55);
  border-radius: 8px;
  background: rgba(78, 204, 205, .1);
  color: white;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  transition: all .2s ease;
}

.demo-action:hover {
  background: rgba(78, 204, 205, .18);
  border-color: var(--secondary-default);
}

.demo-action.applied {
  border-color: rgba(255, 212, 0, .55);
  background: rgba(255, 212, 0, .08);
  color: var(--primary-default);
}

.demo-pay {
  width: 100%;
  min-height: 38px;
  margin-top: auto;
  border: 1px solid rgba(78, 204, 205, .45);
  border-radius: 8px;
  background: rgba(78, 204, 205, .6);
  color: white;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  transition: background .2s ease;
}

.demo-pay:hover {
  background: rgba(78, 204, 205, .8);
}

.demo-save {
  width: 100%;
  min-height: 36px;
  margin-top: 8px;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 11px;
  transition: border-color .2s ease, color .2s ease;
}

.demo-save:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.demo-empty {
  min-height: 274px;
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px dashed rgba(78, 204, 205, .28);
  border-radius: 14px;
  background: rgba(78, 204, 205, .04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-sizing: border-box;
}

.demo-empty strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
  color: #fff;
}

.demo-empty p {
  max-width: 380px;
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 13px;
}

.cash-illustration {
  width: 130px;
  height: 130px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(78, 204, 205, .17), rgba(255, 212, 0, .07));
  border: 1px solid var(--border-subtle);
  flex: 0 0 auto;
}

.cash-illustration svg {
  width: 68px;
  height: 68px;
  color: var(--secondary-hover);
}

/* =========================================================================
   Sections & Cards
   ========================================================================= */
.section {
  position: relative;
  padding: 84px 50px;
  box-sizing: border-box;
}

.section--secondary {
  background: rgba(20, 29, 29, .58);
}

.section-head {
  max-width: 780px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-head h2 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.08;
  letter-spacing: -.025em;
  font-weight: 800;
  color: #fff;
}

.section-head p {
  color: var(--text-secondary);
  margin-bottom: 0;
  font-size: 16px;
}

.cards-3, .cards-6 {
  display: grid;
  gap: 18px;
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.cards-6 {
  grid-template-columns: repeat(3, 1fr);
}

/* Uniform card styling for all cards */
.bp-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.12));
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(20, 29, 29, .98), rgba(12, 22, 22, .94));
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  box-sizing: border-box;
}

.bp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(78, 204, 205, .45);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .25), 0 0 30px rgba(78, 204, 205, .08);
}

.bp-card h3 {
  margin-top: 0;
  margin-bottom: 9px;
  font-size: 19px;
  line-height: 1.25;
  color: #fff;
  font-weight: 700;
}

.bp-card p {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.55;
}

/* Choice cards */
.bp-card--choice {
  cursor: pointer;
}

.bp-card--choice.active {
  border-color: rgba(78, 204, 205, .62);
  box-shadow: 0 0 0 1px rgba(78, 204, 205, .15), 0 0 50px rgba(78, 204, 205, .12);
}

/* Uniform card icons */
.card-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 12px;
  border: 1px solid rgba(78, 204, 205, .35);
  color: var(--secondary-hover);
  background: rgba(78, 204, 205, .08);
}

.card-icon.yellow {
  color: var(--primary-default);
  border-color: rgba(255, 212, 0, .35);
  background: rgba(255, 212, 0, .08);
}

.card-icon svg {
  width: 23px;
  height: 23px;
}

.choice-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--secondary-hover);
  font-size: 13px;
  font-weight: 700;
}

/* Feature cards in 6-grid */
.feature-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px;
}

.feature-card .card-icon {
  margin-bottom: 0;
  width: 44px;
  height: 44px;
}

.feature-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
  margin-top: 0;
}

.feature-card p {
  font-size: 13px;
  line-height: 1.5;
}

/* =========================================================================
   Workflow & Migration
   ========================================================================= */
.workflow {
  display: grid;
  grid-template-columns: 1fr 46px 1fr 46px 1fr;
  gap: 12px;
  align-items: center;
}

.workflow-step {
  min-height: 178px;
  padding: 24px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.12));
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(20, 29, 29, .98), rgba(12, 22, 22, .94));
  box-sizing: border-box;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.workflow-step:hover {
  transform: translateY(-4px);
  border-color: rgba(78, 204, 205, .45);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .25), 0 0 30px rgba(78, 204, 205, .08);
}

.step-num {
  width: 38px;
  height: 38px;
  min-width: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(78, 204, 205, .45);
  background: rgba(78, 204, 205, .08);
  color: var(--secondary-hover);
  font-size: 14px;
  font-weight: 800;
}

.workflow-step h3 {
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 18px;
  color: #fff;
}

.workflow-step p {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.5;
}

.workflow-arrow {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .5);
}

.workflow-arrow svg {
  width: 26px;
  height: 26px;
}

.migration {
  position: relative;
  overflow: hidden;
  margin-top: 28px;
  padding: 30px 34px;
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(255, 212, 0, .35);
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(255, 212, 0, .08), rgba(20, 29, 29, .98) 46%, rgba(78, 204, 205, .04));
  box-shadow: 0 0 50px rgba(255, 212, 0, .08);
  box-sizing: border-box;
}

.migration::after {
  content: '';
  position: absolute;
  right: -90px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 212, 0, .12), transparent 67%);
  pointer-events: none;
}

.migration-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--primary-default);
  background: rgba(255, 212, 0, .08);
  border: 1px solid rgba(255, 212, 0, .35);
  flex: 0 0 auto;
}

.migration-icon svg {
  width: 30px;
  height: 30px;
}

.migration-copy {
  flex: 1;
}

.migration-copy h3 {
  margin-top: 0;
  margin-bottom: 7px;
  font-size: 22px;
  color: #fff;
}

.migration-copy p {
  margin-bottom: 0;
  color: var(--text-secondary);
}

.migration .btn {
  flex-shrink: 0;
}

/* =========================================================================
   Connect Cards
   ========================================================================= */
.connect-card {
  position: relative;
  overflow: hidden;
  min-height: 206px;
}

.connect-card::after {
  content: attr(data-step);
  position: absolute;
  right: 18px;
  top: -12px;
  color: rgba(255, 255, 255, .035);
  font-size: 88px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

/* =========================================================================
   FAQ Section
   ========================================================================= */
.faq-container {
  max-width: 920px;
  margin: 0 auto;
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.12));
  border-radius: 16px;
  overflow: hidden;
  background: rgba(20, 29, 29, .7);
  box-sizing: border-box;
}

.faq-item + .faq-item {
  border-top: 1px solid var(--border-subtle);
}

.faq-question {
  width: 100%;
  min-height: 64px;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border: 0;
  color: white;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 650;
  transition: background .2s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, .025);
}

.faq-chevron {
  flex: 0 0 auto;
  transition: transform .25s ease;
  width: 18px;
  height: 18px;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer-inner p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.65;
}

/* =========================================================================
   CTA Section
   ========================================================================= */
#cta {
  padding-top: 30px;
  padding-bottom: 50px;
}

#faq::after,
#cta::after {
  display: none !important;
}

.cta-wide {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 38px 42px;
  border: 1px solid rgba(78, 204, 205, .34);
  border-radius: 20px;
  background: linear-gradient(100deg, rgba(78, 204, 205, .07), rgba(20, 29, 29, .94) 50%, rgba(255, 212, 0, .04));
  box-shadow: 0 0 70px rgba(78, 204, 205, .10);
  box-sizing: border-box;
}

.cta-wide::after {
  content: '';
  position: absolute;
  right: 120px;
  bottom: -180px;
  width: 450px;
  height: 330px;
  border: 1px solid rgba(78, 204, 205, .15);
  border-radius: 50%;
  transform: rotate(-12deg);
  pointer-events: none;
}

.cta-copy {
  flex: 1;
  position: relative;
  z-index: 1;
}

.cta-copy h2 {
  margin-top: 0;
  margin-bottom: 9px;
  font-size: clamp(28px, 3vw, 38px);
  color: #fff;
  font-weight: 800;
}

.cta-copy p {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 16px;
}

.cta-wide .btn {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

/* =========================================================================
   Responsive Breakpoints
   ========================================================================= */
@media (max-width: 980px) {
  .hero.bp-int-hero { padding: 50px 32px 60px; }
  .section { padding: 70px 32px; }
  #cta { padding: 20px 32px 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .integration-visual { max-width: 680px; }
  .moysklad-brand { justify-content: flex-start; }
  .cards-3, .cards-6 { grid-template-columns: repeat(2, 1fr); }
  .workflow { grid-template-columns: 1fr; }
  .workflow-arrow { transform: rotate(90deg); }
}

@media (max-width: 660px) {
  .section { padding: 62px 20px; }
  #cta { padding: 10px 20px 30px; }
  .hero.bp-int-hero { min-height: unset; padding: 42px 20px 54px; }
  .hero-copy h1 { font-size: 36px; }
  .hero-copy .lead { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .demo-screen { grid-template-columns: 1fr; }
  .demo-card { min-height: unset; }
  .demo-empty { min-height: unset; flex-direction: column; align-items: flex-start; }
  .cash-illustration { width: 100%; height: 110px; }
  .cards-3, .cards-6 { grid-template-columns: 1fr; }
  .migration { align-items: flex-start; flex-direction: column; padding: 24px; }
  .migration .btn { width: 100%; }
  .cta-wide { align-items: flex-start; flex-direction: column; padding: 28px 24px; }
  .cta-wide .btn { width: 100%; }
}

/* End */


/* Start:/local/components/bonusplus.integrations/features/templates/.default/style.css?178695703218735*/
/* =========================================================================
   BonusPlus Detail Integration Component Styles
   Strictly unified borders (1px solid var(--border-subtle)), 
   border-radius (16px / 12px), backgrounds, and hover lift effects.
   ========================================================================= */

.bp-integration-page {
  position: relative;
  overflow-x: hidden;
  padding-bottom: 0;
}

.highlight-cyan {
  color: var(--secondary-default, #4ECCCD);
}

/* Eyebrow badge */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 14px;
  border: 1px solid rgba(78, 204, 205, .48);
  background: rgba(78, 204, 205, .08);
  color: var(--secondary-hover, #5DF1F3);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  align-self: flex-start;
}

.eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--secondary-default, #4ECCCD);
  box-shadow: 0 0 12px rgba(78, 204, 205, .65);
}

/* =========================================================================
   Hero Section
   ========================================================================= */
.hero.bp-int-hero {
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 76px 50px 90px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.hero.bp-int-hero::before {
  content: '';
  position: absolute;
  width: 650px;
  height: 650px;
  right: -250px;
  top: -300px;
  border: 1px solid rgba(255, 212, 0, .25);
  border-radius: 50%;
  box-shadow: 0 0 70px rgba(255, 212, 0, .06);
  pointer-events: none;
}

.hero.bp-int-hero::after {
  content: '';
  position: absolute;
  width: 580px;
  height: 250px;
  right: 4%;
  top: 34%;
  background: radial-gradient(ellipse, rgba(78, 204, 205, .15), transparent 66%);
  filter: blur(14px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(460px, .97fr);
  gap: 54px;
  align-items: center;
  width: 100%;
}

.hero-copy {
  position: relative;
  z-index: 2;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.hero-copy .bread-crumbs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
  margin-bottom: 20px;
  padding: 0;
  text-align: left;
}

.hero-copy h1 {
  text-align: left;
  margin-top: 0;
  margin-bottom: 22px;
  font-size: clamp(38px, 4.8vw, 60px);
  line-height: 1.05;
  letter-spacing: -.035em;
  font-weight: 800;
  color: var(--text-primary);
}

.hero-copy .lead {
  text-align: left;
  max-width: 650px;
  margin-top: 0;
  margin-bottom: 30px;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

/* Brand badge in hero */
.integration-visual {
  position: relative;
}

.moysklad-brand {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin: 0 10px 18px 0;
  font-size: 25px;
  font-weight: 800;
  color: #fff;
}

.bp-int-hero-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.12));
  background: rgba(255, 255, 255, 0.05);
  padding: 4px;
}

/* =========================================================================
   Demo Panel (Interactive Mockups)
   ========================================================================= */
.demo-panel {
  position: relative;
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, .16));
  border-radius: 18px;
  padding: 16px;
  background: linear-gradient(150deg, rgba(20, 29, 29, .98), rgba(10, 21, 21, .94));
  box-shadow: 0 22px 70px rgba(0, 0, 0, .34), 0 0 70px rgba(78, 204, 205, .10);
  overflow: hidden;
  box-sizing: border-box;
}

.demo-panel::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  right: -90px;
  bottom: -110px;
  background: radial-gradient(circle, rgba(78, 204, 205, .16), transparent 65%);
  pointer-events: none;
}

.demo-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.demo-tab {
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  background: rgba(255, 255, 255, .035);
  border-radius: 10px;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: all .2s ease;
}

.demo-tab:hover {
  background: rgba(78, 204, 205, 0.08);
  border-color: rgba(78, 204, 205, 0.35);
  color: #fff;
}

.demo-tab.active {
  color: var(--secondary-hover);
  background: rgba(78, 204, 205, .12);
  border-color: rgba(78, 204, 205, .45);
}

.demo-screen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.demo-card {
  min-height: 274px;
  padding: 18px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, .10));
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.demo-card--wallet {
  background: linear-gradient(135deg, #1C2D2D, #0A1717);
  border: 1px solid rgba(78, 204, 205, 0.4);
}

.demo-card h4 {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.demo-muted {
  color: var(--text-disabled, rgba(255, 255, 255, .6));
  font-size: 11px;
}

.demo-customer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 5px 0 15px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.vip {
  padding: 3px 8px;
  color: var(--secondary-hover);
  background: rgba(78, 204, 205, .12);
  border: 1px solid rgba(78, 204, 205, 0.25);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
}

.bonus-widget {
  padding: 14px;
  background: rgba(78, 204, 205, .07);
  border: 1px solid rgba(78, 204, 205, .20);
  border-radius: 12px;
  box-sizing: border-box;
}

.bonus-balance {
  margin: 5px 0 10px;
  color: var(--secondary-hover);
  font-size: 23px;
  font-weight: 800;
}

.demo-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin: 9px 0;
  font-size: 11px;
}

.demo-row strong {
  font-weight: 700;
  white-space: nowrap;
  color: #fff;
}

.demo-row.total {
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
  font-size: 14px;
}

.spendable {
  color: var(--primary-default);
}

.demo-action {
  width: 100%;
  min-height: 38px;
  margin-top: 10px;
  border: 1px solid rgba(78, 204, 205, .55);
  border-radius: 8px;
  background: rgba(78, 204, 205, .1);
  color: white;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  transition: all .2s ease;
}

.demo-action:hover {
  background: rgba(78, 204, 205, .18);
  border-color: var(--secondary-default);
}

.demo-action.applied {
  border-color: rgba(255, 212, 0, .55);
  background: rgba(255, 212, 0, .08);
  color: var(--primary-default);
}

.demo-pay {
  width: 100%;
  min-height: 38px;
  margin-top: auto;
  border: 1px solid rgba(78, 204, 205, .45);
  border-radius: 8px;
  background: rgba(78, 204, 205, .6);
  color: white;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  transition: background .2s ease;
}

.demo-pay:hover {
  background: rgba(78, 204, 205, .8);
}

.demo-save {
  width: 100%;
  min-height: 36px;
  margin-top: 8px;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 11px;
  transition: border-color .2s ease, color .2s ease;
}

.demo-save:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.demo-empty {
  min-height: 274px;
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px dashed rgba(78, 204, 205, .28);
  border-radius: 14px;
  background: rgba(78, 204, 205, .04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-sizing: border-box;
}

.demo-empty strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
  color: #fff;
}

.demo-empty p {
  max-width: 380px;
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 13px;
}

.cash-illustration {
  width: 130px;
  height: 130px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(78, 204, 205, .17), rgba(255, 212, 0, .07));
  border: 1px solid var(--border-subtle);
  flex: 0 0 auto;
}

.cash-illustration svg {
  width: 68px;
  height: 68px;
  color: var(--secondary-hover);
}

/* =========================================================================
   Sections & Cards
   ========================================================================= */
.section {
  position: relative;
  padding: 84px 50px;
  box-sizing: border-box;
}

.section--secondary {
  background: rgba(20, 29, 29, .58);
}

.section-head {
  max-width: 780px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-head h2 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.08;
  letter-spacing: -.025em;
  font-weight: 800;
  color: #fff;
}

.section-head p {
  color: var(--text-secondary);
  margin-bottom: 0;
  font-size: 16px;
}

.cards-3, .cards-6 {
  display: grid;
  gap: 18px;
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.cards-6 {
  grid-template-columns: repeat(3, 1fr);
}

/* Uniform card styling for all cards */
.bp-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.12));
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(20, 29, 29, .98), rgba(12, 22, 22, .94));
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  box-sizing: border-box;
}

.bp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(78, 204, 205, .45);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .25), 0 0 30px rgba(78, 204, 205, .08);
}

.bp-card h3 {
  margin-top: 0;
  margin-bottom: 9px;
  font-size: 19px;
  line-height: 1.25;
  color: #fff;
  font-weight: 700;
}

.bp-card p {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.55;
}

/* Choice cards */
.bp-card--choice {
  cursor: pointer;
}

.bp-card--choice.active {
  border-color: rgba(78, 204, 205, .62);
  box-shadow: 0 0 0 1px rgba(78, 204, 205, .15), 0 0 50px rgba(78, 204, 205, .12);
}

/* Uniform card icons */
.card-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 12px;
  border: 1px solid rgba(78, 204, 205, .35);
  color: var(--secondary-hover);
  background: rgba(78, 204, 205, .08);
}

.card-icon.yellow {
  color: var(--primary-default);
  border-color: rgba(255, 212, 0, .35);
  background: rgba(255, 212, 0, .08);
}

.card-icon svg {
  width: 23px;
  height: 23px;
}

.choice-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--secondary-hover);
  font-size: 13px;
  font-weight: 700;
}

/* Feature cards in 6-grid */
.feature-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px;
}

.feature-card .card-icon {
  margin-bottom: 0;
  width: 44px;
  height: 44px;
}

.feature-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
  margin-top: 0;
}

.feature-card p {
  font-size: 13px;
  line-height: 1.5;
}

/* =========================================================================
   Workflow & Migration
   ========================================================================= */
.workflow {
  display: grid;
  grid-template-columns: 1fr 46px 1fr 46px 1fr;
  gap: 12px;
  align-items: center;
}

.workflow-step {
  min-height: 178px;
  padding: 24px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.12));
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(20, 29, 29, .98), rgba(12, 22, 22, .94));
  box-sizing: border-box;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.workflow-step:hover {
  transform: translateY(-4px);
  border-color: rgba(78, 204, 205, .45);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .25), 0 0 30px rgba(78, 204, 205, .08);
}

.step-num {
  width: 38px;
  height: 38px;
  min-width: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(78, 204, 205, .45);
  background: rgba(78, 204, 205, .08);
  color: var(--secondary-hover);
  font-size: 14px;
  font-weight: 800;
}

.workflow-step h3 {
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 18px;
  color: #fff;
}

.workflow-step p {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.5;
}

.workflow-arrow {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .5);
}

.workflow-arrow svg {
  width: 26px;
  height: 26px;
}

.migration {
  position: relative;
  overflow: hidden;
  margin-top: 28px;
  padding: 30px 34px;
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(255, 212, 0, .35);
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(255, 212, 0, .08), rgba(20, 29, 29, .98) 46%, rgba(78, 204, 205, .04));
  box-shadow: 0 0 50px rgba(255, 212, 0, .08);
  box-sizing: border-box;
}

.migration::after {
  content: '';
  position: absolute;
  right: -90px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 212, 0, .12), transparent 67%);
  pointer-events: none;
}

.migration-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--primary-default);
  background: rgba(255, 212, 0, .08);
  border: 1px solid rgba(255, 212, 0, .35);
  flex: 0 0 auto;
}

.migration-icon svg {
  width: 30px;
  height: 30px;
}

.migration-copy {
  flex: 1;
}

.migration-copy h3 {
  margin-top: 0;
  margin-bottom: 7px;
  font-size: 22px;
  color: #fff;
}

.migration-copy p {
  margin-bottom: 0;
  color: var(--text-secondary);
}

.migration .btn {
  flex-shrink: 0;
}

/* =========================================================================
   Connect Cards
   ========================================================================= */
.connect-card {
  position: relative;
  overflow: hidden;
  min-height: 206px;
}

.connect-card::after {
  content: attr(data-step);
  position: absolute;
  right: 18px;
  top: -12px;
  color: rgba(255, 255, 255, .035);
  font-size: 88px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

/* =========================================================================
   FAQ Section
   ========================================================================= */
.faq-container {
  max-width: 920px;
  margin: 0 auto;
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.12));
  border-radius: 16px;
  overflow: hidden;
  background: rgba(20, 29, 29, .7);
  box-sizing: border-box;
}

.faq-item + .faq-item {
  border-top: 1px solid var(--border-subtle);
}

.faq-question {
  width: 100%;
  min-height: 64px;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border: 0;
  color: white;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 650;
  transition: background .2s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, .025);
}

.faq-chevron {
  flex: 0 0 auto;
  transition: transform .25s ease;
  width: 18px;
  height: 18px;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer-inner p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.65;
}

/* =========================================================================
   CTA Section
   ========================================================================= */
#cta {
  padding-top: 30px;
  padding-bottom: 50px;
}

#faq::after,
#cta::after {
  display: none !important;
}

.cta-wide {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 38px 42px;
  border: 1px solid rgba(78, 204, 205, .34);
  border-radius: 20px;
  background: linear-gradient(100deg, rgba(78, 204, 205, .07), rgba(20, 29, 29, .94) 50%, rgba(255, 212, 0, .04));
  box-shadow: 0 0 70px rgba(78, 204, 205, .10);
  box-sizing: border-box;
}

.cta-wide::after {
  content: '';
  position: absolute;
  right: 120px;
  bottom: -180px;
  width: 450px;
  height: 330px;
  border: 1px solid rgba(78, 204, 205, .15);
  border-radius: 50%;
  transform: rotate(-12deg);
  pointer-events: none;
}

.cta-copy {
  flex: 1;
  position: relative;
  z-index: 1;
}

.cta-copy h2 {
  margin-top: 0;
  margin-bottom: 9px;
  font-size: clamp(28px, 3vw, 38px);
  color: #fff;
  font-weight: 800;
}

.cta-copy p {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 16px;
}

.cta-wide .btn {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

/* =========================================================================
   Responsive Breakpoints
   ========================================================================= */
@media (max-width: 980px) {
  .hero.bp-int-hero { padding: 50px 32px 60px; }
  .section { padding: 70px 32px; }
  #cta { padding: 20px 32px 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .integration-visual { max-width: 680px; }
  .moysklad-brand { justify-content: flex-start; }
  .cards-3, .cards-6 { grid-template-columns: repeat(2, 1fr); }
  .workflow { grid-template-columns: 1fr; }
  .workflow-arrow { transform: rotate(90deg); }
}

@media (max-width: 660px) {
  .section { padding: 62px 20px; }
  #cta { padding: 10px 20px 30px; }
  .hero.bp-int-hero { min-height: unset; padding: 42px 20px 54px; }
  .hero-copy h1 { font-size: 36px; }
  .hero-copy .lead { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .demo-screen { grid-template-columns: 1fr; }
  .demo-card { min-height: unset; }
  .demo-empty { min-height: unset; flex-direction: column; align-items: flex-start; }
  .cash-illustration { width: 100%; height: 110px; }
  .cards-3, .cards-6 { grid-template-columns: 1fr; }
  .migration { align-items: flex-start; flex-direction: column; padding: 24px; }
  .migration .btn { width: 100%; }
  .cta-wide { align-items: flex-start; flex-direction: column; padding: 28px 24px; }
  .cta-wide .btn { width: 100%; }
}

/* End */


/* Start:/local/components/bonusplus.integrations/workflow/templates/.default/style.css?178695703218735*/
/* =========================================================================
   BonusPlus Detail Integration Component Styles
   Strictly unified borders (1px solid var(--border-subtle)), 
   border-radius (16px / 12px), backgrounds, and hover lift effects.
   ========================================================================= */

.bp-integration-page {
  position: relative;
  overflow-x: hidden;
  padding-bottom: 0;
}

.highlight-cyan {
  color: var(--secondary-default, #4ECCCD);
}

/* Eyebrow badge */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 14px;
  border: 1px solid rgba(78, 204, 205, .48);
  background: rgba(78, 204, 205, .08);
  color: var(--secondary-hover, #5DF1F3);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  align-self: flex-start;
}

.eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--secondary-default, #4ECCCD);
  box-shadow: 0 0 12px rgba(78, 204, 205, .65);
}

/* =========================================================================
   Hero Section
   ========================================================================= */
.hero.bp-int-hero {
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 76px 50px 90px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.hero.bp-int-hero::before {
  content: '';
  position: absolute;
  width: 650px;
  height: 650px;
  right: -250px;
  top: -300px;
  border: 1px solid rgba(255, 212, 0, .25);
  border-radius: 50%;
  box-shadow: 0 0 70px rgba(255, 212, 0, .06);
  pointer-events: none;
}

.hero.bp-int-hero::after {
  content: '';
  position: absolute;
  width: 580px;
  height: 250px;
  right: 4%;
  top: 34%;
  background: radial-gradient(ellipse, rgba(78, 204, 205, .15), transparent 66%);
  filter: blur(14px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(460px, .97fr);
  gap: 54px;
  align-items: center;
  width: 100%;
}

.hero-copy {
  position: relative;
  z-index: 2;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.hero-copy .bread-crumbs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
  margin-bottom: 20px;
  padding: 0;
  text-align: left;
}

.hero-copy h1 {
  text-align: left;
  margin-top: 0;
  margin-bottom: 22px;
  font-size: clamp(38px, 4.8vw, 60px);
  line-height: 1.05;
  letter-spacing: -.035em;
  font-weight: 800;
  color: var(--text-primary);
}

.hero-copy .lead {
  text-align: left;
  max-width: 650px;
  margin-top: 0;
  margin-bottom: 30px;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

/* Brand badge in hero */
.integration-visual {
  position: relative;
}

.moysklad-brand {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin: 0 10px 18px 0;
  font-size: 25px;
  font-weight: 800;
  color: #fff;
}

.bp-int-hero-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.12));
  background: rgba(255, 255, 255, 0.05);
  padding: 4px;
}

/* =========================================================================
   Demo Panel (Interactive Mockups)
   ========================================================================= */
.demo-panel {
  position: relative;
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, .16));
  border-radius: 18px;
  padding: 16px;
  background: linear-gradient(150deg, rgba(20, 29, 29, .98), rgba(10, 21, 21, .94));
  box-shadow: 0 22px 70px rgba(0, 0, 0, .34), 0 0 70px rgba(78, 204, 205, .10);
  overflow: hidden;
  box-sizing: border-box;
}

.demo-panel::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  right: -90px;
  bottom: -110px;
  background: radial-gradient(circle, rgba(78, 204, 205, .16), transparent 65%);
  pointer-events: none;
}

.demo-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.demo-tab {
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  background: rgba(255, 255, 255, .035);
  border-radius: 10px;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: all .2s ease;
}

.demo-tab:hover {
  background: rgba(78, 204, 205, 0.08);
  border-color: rgba(78, 204, 205, 0.35);
  color: #fff;
}

.demo-tab.active {
  color: var(--secondary-hover);
  background: rgba(78, 204, 205, .12);
  border-color: rgba(78, 204, 205, .45);
}

.demo-screen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.demo-card {
  min-height: 274px;
  padding: 18px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, .10));
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.demo-card--wallet {
  background: linear-gradient(135deg, #1C2D2D, #0A1717);
  border: 1px solid rgba(78, 204, 205, 0.4);
}

.demo-card h4 {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.demo-muted {
  color: var(--text-disabled, rgba(255, 255, 255, .6));
  font-size: 11px;
}

.demo-customer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 5px 0 15px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.vip {
  padding: 3px 8px;
  color: var(--secondary-hover);
  background: rgba(78, 204, 205, .12);
  border: 1px solid rgba(78, 204, 205, 0.25);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
}

.bonus-widget {
  padding: 14px;
  background: rgba(78, 204, 205, .07);
  border: 1px solid rgba(78, 204, 205, .20);
  border-radius: 12px;
  box-sizing: border-box;
}

.bonus-balance {
  margin: 5px 0 10px;
  color: var(--secondary-hover);
  font-size: 23px;
  font-weight: 800;
}

.demo-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin: 9px 0;
  font-size: 11px;
}

.demo-row strong {
  font-weight: 700;
  white-space: nowrap;
  color: #fff;
}

.demo-row.total {
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
  font-size: 14px;
}

.spendable {
  color: var(--primary-default);
}

.demo-action {
  width: 100%;
  min-height: 38px;
  margin-top: 10px;
  border: 1px solid rgba(78, 204, 205, .55);
  border-radius: 8px;
  background: rgba(78, 204, 205, .1);
  color: white;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  transition: all .2s ease;
}

.demo-action:hover {
  background: rgba(78, 204, 205, .18);
  border-color: var(--secondary-default);
}

.demo-action.applied {
  border-color: rgba(255, 212, 0, .55);
  background: rgba(255, 212, 0, .08);
  color: var(--primary-default);
}

.demo-pay {
  width: 100%;
  min-height: 38px;
  margin-top: auto;
  border: 1px solid rgba(78, 204, 205, .45);
  border-radius: 8px;
  background: rgba(78, 204, 205, .6);
  color: white;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  transition: background .2s ease;
}

.demo-pay:hover {
  background: rgba(78, 204, 205, .8);
}

.demo-save {
  width: 100%;
  min-height: 36px;
  margin-top: 8px;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 11px;
  transition: border-color .2s ease, color .2s ease;
}

.demo-save:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.demo-empty {
  min-height: 274px;
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px dashed rgba(78, 204, 205, .28);
  border-radius: 14px;
  background: rgba(78, 204, 205, .04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-sizing: border-box;
}

.demo-empty strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
  color: #fff;
}

.demo-empty p {
  max-width: 380px;
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 13px;
}

.cash-illustration {
  width: 130px;
  height: 130px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(78, 204, 205, .17), rgba(255, 212, 0, .07));
  border: 1px solid var(--border-subtle);
  flex: 0 0 auto;
}

.cash-illustration svg {
  width: 68px;
  height: 68px;
  color: var(--secondary-hover);
}

/* =========================================================================
   Sections & Cards
   ========================================================================= */
.section {
  position: relative;
  padding: 84px 50px;
  box-sizing: border-box;
}

.section--secondary {
  background: rgba(20, 29, 29, .58);
}

.section-head {
  max-width: 780px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-head h2 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.08;
  letter-spacing: -.025em;
  font-weight: 800;
  color: #fff;
}

.section-head p {
  color: var(--text-secondary);
  margin-bottom: 0;
  font-size: 16px;
}

.cards-3, .cards-6 {
  display: grid;
  gap: 18px;
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.cards-6 {
  grid-template-columns: repeat(3, 1fr);
}

/* Uniform card styling for all cards */
.bp-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.12));
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(20, 29, 29, .98), rgba(12, 22, 22, .94));
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  box-sizing: border-box;
}

.bp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(78, 204, 205, .45);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .25), 0 0 30px rgba(78, 204, 205, .08);
}

.bp-card h3 {
  margin-top: 0;
  margin-bottom: 9px;
  font-size: 19px;
  line-height: 1.25;
  color: #fff;
  font-weight: 700;
}

.bp-card p {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.55;
}

/* Choice cards */
.bp-card--choice {
  cursor: pointer;
}

.bp-card--choice.active {
  border-color: rgba(78, 204, 205, .62);
  box-shadow: 0 0 0 1px rgba(78, 204, 205, .15), 0 0 50px rgba(78, 204, 205, .12);
}

/* Uniform card icons */
.card-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 12px;
  border: 1px solid rgba(78, 204, 205, .35);
  color: var(--secondary-hover);
  background: rgba(78, 204, 205, .08);
}

.card-icon.yellow {
  color: var(--primary-default);
  border-color: rgba(255, 212, 0, .35);
  background: rgba(255, 212, 0, .08);
}

.card-icon svg {
  width: 23px;
  height: 23px;
}

.choice-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--secondary-hover);
  font-size: 13px;
  font-weight: 700;
}

/* Feature cards in 6-grid */
.feature-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px;
}

.feature-card .card-icon {
  margin-bottom: 0;
  width: 44px;
  height: 44px;
}

.feature-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
  margin-top: 0;
}

.feature-card p {
  font-size: 13px;
  line-height: 1.5;
}

/* =========================================================================
   Workflow & Migration
   ========================================================================= */
.workflow {
  display: grid;
  grid-template-columns: 1fr 46px 1fr 46px 1fr;
  gap: 12px;
  align-items: center;
}

.workflow-step {
  min-height: 178px;
  padding: 24px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.12));
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(20, 29, 29, .98), rgba(12, 22, 22, .94));
  box-sizing: border-box;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.workflow-step:hover {
  transform: translateY(-4px);
  border-color: rgba(78, 204, 205, .45);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .25), 0 0 30px rgba(78, 204, 205, .08);
}

.step-num {
  width: 38px;
  height: 38px;
  min-width: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(78, 204, 205, .45);
  background: rgba(78, 204, 205, .08);
  color: var(--secondary-hover);
  font-size: 14px;
  font-weight: 800;
}

.workflow-step h3 {
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 18px;
  color: #fff;
}

.workflow-step p {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.5;
}

.workflow-arrow {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .5);
}

.workflow-arrow svg {
  width: 26px;
  height: 26px;
}

.migration {
  position: relative;
  overflow: hidden;
  margin-top: 28px;
  padding: 30px 34px;
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(255, 212, 0, .35);
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(255, 212, 0, .08), rgba(20, 29, 29, .98) 46%, rgba(78, 204, 205, .04));
  box-shadow: 0 0 50px rgba(255, 212, 0, .08);
  box-sizing: border-box;
}

.migration::after {
  content: '';
  position: absolute;
  right: -90px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 212, 0, .12), transparent 67%);
  pointer-events: none;
}

.migration-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--primary-default);
  background: rgba(255, 212, 0, .08);
  border: 1px solid rgba(255, 212, 0, .35);
  flex: 0 0 auto;
}

.migration-icon svg {
  width: 30px;
  height: 30px;
}

.migration-copy {
  flex: 1;
}

.migration-copy h3 {
  margin-top: 0;
  margin-bottom: 7px;
  font-size: 22px;
  color: #fff;
}

.migration-copy p {
  margin-bottom: 0;
  color: var(--text-secondary);
}

.migration .btn {
  flex-shrink: 0;
}

/* =========================================================================
   Connect Cards
   ========================================================================= */
.connect-card {
  position: relative;
  overflow: hidden;
  min-height: 206px;
}

.connect-card::after {
  content: attr(data-step);
  position: absolute;
  right: 18px;
  top: -12px;
  color: rgba(255, 255, 255, .035);
  font-size: 88px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

/* =========================================================================
   FAQ Section
   ========================================================================= */
.faq-container {
  max-width: 920px;
  margin: 0 auto;
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.12));
  border-radius: 16px;
  overflow: hidden;
  background: rgba(20, 29, 29, .7);
  box-sizing: border-box;
}

.faq-item + .faq-item {
  border-top: 1px solid var(--border-subtle);
}

.faq-question {
  width: 100%;
  min-height: 64px;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border: 0;
  color: white;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 650;
  transition: background .2s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, .025);
}

.faq-chevron {
  flex: 0 0 auto;
  transition: transform .25s ease;
  width: 18px;
  height: 18px;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer-inner p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.65;
}

/* =========================================================================
   CTA Section
   ========================================================================= */
#cta {
  padding-top: 30px;
  padding-bottom: 50px;
}

#faq::after,
#cta::after {
  display: none !important;
}

.cta-wide {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 38px 42px;
  border: 1px solid rgba(78, 204, 205, .34);
  border-radius: 20px;
  background: linear-gradient(100deg, rgba(78, 204, 205, .07), rgba(20, 29, 29, .94) 50%, rgba(255, 212, 0, .04));
  box-shadow: 0 0 70px rgba(78, 204, 205, .10);
  box-sizing: border-box;
}

.cta-wide::after {
  content: '';
  position: absolute;
  right: 120px;
  bottom: -180px;
  width: 450px;
  height: 330px;
  border: 1px solid rgba(78, 204, 205, .15);
  border-radius: 50%;
  transform: rotate(-12deg);
  pointer-events: none;
}

.cta-copy {
  flex: 1;
  position: relative;
  z-index: 1;
}

.cta-copy h2 {
  margin-top: 0;
  margin-bottom: 9px;
  font-size: clamp(28px, 3vw, 38px);
  color: #fff;
  font-weight: 800;
}

.cta-copy p {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 16px;
}

.cta-wide .btn {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

/* =========================================================================
   Responsive Breakpoints
   ========================================================================= */
@media (max-width: 980px) {
  .hero.bp-int-hero { padding: 50px 32px 60px; }
  .section { padding: 70px 32px; }
  #cta { padding: 20px 32px 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .integration-visual { max-width: 680px; }
  .moysklad-brand { justify-content: flex-start; }
  .cards-3, .cards-6 { grid-template-columns: repeat(2, 1fr); }
  .workflow { grid-template-columns: 1fr; }
  .workflow-arrow { transform: rotate(90deg); }
}

@media (max-width: 660px) {
  .section { padding: 62px 20px; }
  #cta { padding: 10px 20px 30px; }
  .hero.bp-int-hero { min-height: unset; padding: 42px 20px 54px; }
  .hero-copy h1 { font-size: 36px; }
  .hero-copy .lead { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .demo-screen { grid-template-columns: 1fr; }
  .demo-card { min-height: unset; }
  .demo-empty { min-height: unset; flex-direction: column; align-items: flex-start; }
  .cash-illustration { width: 100%; height: 110px; }
  .cards-3, .cards-6 { grid-template-columns: 1fr; }
  .migration { align-items: flex-start; flex-direction: column; padding: 24px; }
  .migration .btn { width: 100%; }
  .cta-wide { align-items: flex-start; flex-direction: column; padding: 28px 24px; }
  .cta-wide .btn { width: 100%; }
}

/* End */


/* Start:/local/components/bonusplus.integrations/connect/templates/.default/style.css?178695703218735*/
/* =========================================================================
   BonusPlus Detail Integration Component Styles
   Strictly unified borders (1px solid var(--border-subtle)), 
   border-radius (16px / 12px), backgrounds, and hover lift effects.
   ========================================================================= */

.bp-integration-page {
  position: relative;
  overflow-x: hidden;
  padding-bottom: 0;
}

.highlight-cyan {
  color: var(--secondary-default, #4ECCCD);
}

/* Eyebrow badge */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 14px;
  border: 1px solid rgba(78, 204, 205, .48);
  background: rgba(78, 204, 205, .08);
  color: var(--secondary-hover, #5DF1F3);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  align-self: flex-start;
}

.eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--secondary-default, #4ECCCD);
  box-shadow: 0 0 12px rgba(78, 204, 205, .65);
}

/* =========================================================================
   Hero Section
   ========================================================================= */
.hero.bp-int-hero {
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 76px 50px 90px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.hero.bp-int-hero::before {
  content: '';
  position: absolute;
  width: 650px;
  height: 650px;
  right: -250px;
  top: -300px;
  border: 1px solid rgba(255, 212, 0, .25);
  border-radius: 50%;
  box-shadow: 0 0 70px rgba(255, 212, 0, .06);
  pointer-events: none;
}

.hero.bp-int-hero::after {
  content: '';
  position: absolute;
  width: 580px;
  height: 250px;
  right: 4%;
  top: 34%;
  background: radial-gradient(ellipse, rgba(78, 204, 205, .15), transparent 66%);
  filter: blur(14px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(460px, .97fr);
  gap: 54px;
  align-items: center;
  width: 100%;
}

.hero-copy {
  position: relative;
  z-index: 2;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.hero-copy .bread-crumbs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
  margin-bottom: 20px;
  padding: 0;
  text-align: left;
}

.hero-copy h1 {
  text-align: left;
  margin-top: 0;
  margin-bottom: 22px;
  font-size: clamp(38px, 4.8vw, 60px);
  line-height: 1.05;
  letter-spacing: -.035em;
  font-weight: 800;
  color: var(--text-primary);
}

.hero-copy .lead {
  text-align: left;
  max-width: 650px;
  margin-top: 0;
  margin-bottom: 30px;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

/* Brand badge in hero */
.integration-visual {
  position: relative;
}

.moysklad-brand {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin: 0 10px 18px 0;
  font-size: 25px;
  font-weight: 800;
  color: #fff;
}

.bp-int-hero-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.12));
  background: rgba(255, 255, 255, 0.05);
  padding: 4px;
}

/* =========================================================================
   Demo Panel (Interactive Mockups)
   ========================================================================= */
.demo-panel {
  position: relative;
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, .16));
  border-radius: 18px;
  padding: 16px;
  background: linear-gradient(150deg, rgba(20, 29, 29, .98), rgba(10, 21, 21, .94));
  box-shadow: 0 22px 70px rgba(0, 0, 0, .34), 0 0 70px rgba(78, 204, 205, .10);
  overflow: hidden;
  box-sizing: border-box;
}

.demo-panel::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  right: -90px;
  bottom: -110px;
  background: radial-gradient(circle, rgba(78, 204, 205, .16), transparent 65%);
  pointer-events: none;
}

.demo-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.demo-tab {
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  background: rgba(255, 255, 255, .035);
  border-radius: 10px;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: all .2s ease;
}

.demo-tab:hover {
  background: rgba(78, 204, 205, 0.08);
  border-color: rgba(78, 204, 205, 0.35);
  color: #fff;
}

.demo-tab.active {
  color: var(--secondary-hover);
  background: rgba(78, 204, 205, .12);
  border-color: rgba(78, 204, 205, .45);
}

.demo-screen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.demo-card {
  min-height: 274px;
  padding: 18px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, .10));
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.demo-card--wallet {
  background: linear-gradient(135deg, #1C2D2D, #0A1717);
  border: 1px solid rgba(78, 204, 205, 0.4);
}

.demo-card h4 {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.demo-muted {
  color: var(--text-disabled, rgba(255, 255, 255, .6));
  font-size: 11px;
}

.demo-customer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 5px 0 15px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.vip {
  padding: 3px 8px;
  color: var(--secondary-hover);
  background: rgba(78, 204, 205, .12);
  border: 1px solid rgba(78, 204, 205, 0.25);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
}

.bonus-widget {
  padding: 14px;
  background: rgba(78, 204, 205, .07);
  border: 1px solid rgba(78, 204, 205, .20);
  border-radius: 12px;
  box-sizing: border-box;
}

.bonus-balance {
  margin: 5px 0 10px;
  color: var(--secondary-hover);
  font-size: 23px;
  font-weight: 800;
}

.demo-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin: 9px 0;
  font-size: 11px;
}

.demo-row strong {
  font-weight: 700;
  white-space: nowrap;
  color: #fff;
}

.demo-row.total {
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
  font-size: 14px;
}

.spendable {
  color: var(--primary-default);
}

.demo-action {
  width: 100%;
  min-height: 38px;
  margin-top: 10px;
  border: 1px solid rgba(78, 204, 205, .55);
  border-radius: 8px;
  background: rgba(78, 204, 205, .1);
  color: white;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  transition: all .2s ease;
}

.demo-action:hover {
  background: rgba(78, 204, 205, .18);
  border-color: var(--secondary-default);
}

.demo-action.applied {
  border-color: rgba(255, 212, 0, .55);
  background: rgba(255, 212, 0, .08);
  color: var(--primary-default);
}

.demo-pay {
  width: 100%;
  min-height: 38px;
  margin-top: auto;
  border: 1px solid rgba(78, 204, 205, .45);
  border-radius: 8px;
  background: rgba(78, 204, 205, .6);
  color: white;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  transition: background .2s ease;
}

.demo-pay:hover {
  background: rgba(78, 204, 205, .8);
}

.demo-save {
  width: 100%;
  min-height: 36px;
  margin-top: 8px;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 11px;
  transition: border-color .2s ease, color .2s ease;
}

.demo-save:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.demo-empty {
  min-height: 274px;
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px dashed rgba(78, 204, 205, .28);
  border-radius: 14px;
  background: rgba(78, 204, 205, .04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-sizing: border-box;
}

.demo-empty strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
  color: #fff;
}

.demo-empty p {
  max-width: 380px;
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 13px;
}

.cash-illustration {
  width: 130px;
  height: 130px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(78, 204, 205, .17), rgba(255, 212, 0, .07));
  border: 1px solid var(--border-subtle);
  flex: 0 0 auto;
}

.cash-illustration svg {
  width: 68px;
  height: 68px;
  color: var(--secondary-hover);
}

/* =========================================================================
   Sections & Cards
   ========================================================================= */
.section {
  position: relative;
  padding: 84px 50px;
  box-sizing: border-box;
}

.section--secondary {
  background: rgba(20, 29, 29, .58);
}

.section-head {
  max-width: 780px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-head h2 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.08;
  letter-spacing: -.025em;
  font-weight: 800;
  color: #fff;
}

.section-head p {
  color: var(--text-secondary);
  margin-bottom: 0;
  font-size: 16px;
}

.cards-3, .cards-6 {
  display: grid;
  gap: 18px;
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.cards-6 {
  grid-template-columns: repeat(3, 1fr);
}

/* Uniform card styling for all cards */
.bp-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.12));
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(20, 29, 29, .98), rgba(12, 22, 22, .94));
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  box-sizing: border-box;
}

.bp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(78, 204, 205, .45);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .25), 0 0 30px rgba(78, 204, 205, .08);
}

.bp-card h3 {
  margin-top: 0;
  margin-bottom: 9px;
  font-size: 19px;
  line-height: 1.25;
  color: #fff;
  font-weight: 700;
}

.bp-card p {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.55;
}

/* Choice cards */
.bp-card--choice {
  cursor: pointer;
}

.bp-card--choice.active {
  border-color: rgba(78, 204, 205, .62);
  box-shadow: 0 0 0 1px rgba(78, 204, 205, .15), 0 0 50px rgba(78, 204, 205, .12);
}

/* Uniform card icons */
.card-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 12px;
  border: 1px solid rgba(78, 204, 205, .35);
  color: var(--secondary-hover);
  background: rgba(78, 204, 205, .08);
}

.card-icon.yellow {
  color: var(--primary-default);
  border-color: rgba(255, 212, 0, .35);
  background: rgba(255, 212, 0, .08);
}

.card-icon svg {
  width: 23px;
  height: 23px;
}

.choice-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--secondary-hover);
  font-size: 13px;
  font-weight: 700;
}

/* Feature cards in 6-grid */
.feature-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px;
}

.feature-card .card-icon {
  margin-bottom: 0;
  width: 44px;
  height: 44px;
}

.feature-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
  margin-top: 0;
}

.feature-card p {
  font-size: 13px;
  line-height: 1.5;
}

/* =========================================================================
   Workflow & Migration
   ========================================================================= */
.workflow {
  display: grid;
  grid-template-columns: 1fr 46px 1fr 46px 1fr;
  gap: 12px;
  align-items: center;
}

.workflow-step {
  min-height: 178px;
  padding: 24px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.12));
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(20, 29, 29, .98), rgba(12, 22, 22, .94));
  box-sizing: border-box;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.workflow-step:hover {
  transform: translateY(-4px);
  border-color: rgba(78, 204, 205, .45);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .25), 0 0 30px rgba(78, 204, 205, .08);
}

.step-num {
  width: 38px;
  height: 38px;
  min-width: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(78, 204, 205, .45);
  background: rgba(78, 204, 205, .08);
  color: var(--secondary-hover);
  font-size: 14px;
  font-weight: 800;
}

.workflow-step h3 {
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 18px;
  color: #fff;
}

.workflow-step p {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.5;
}

.workflow-arrow {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .5);
}

.workflow-arrow svg {
  width: 26px;
  height: 26px;
}

.migration {
  position: relative;
  overflow: hidden;
  margin-top: 28px;
  padding: 30px 34px;
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(255, 212, 0, .35);
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(255, 212, 0, .08), rgba(20, 29, 29, .98) 46%, rgba(78, 204, 205, .04));
  box-shadow: 0 0 50px rgba(255, 212, 0, .08);
  box-sizing: border-box;
}

.migration::after {
  content: '';
  position: absolute;
  right: -90px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 212, 0, .12), transparent 67%);
  pointer-events: none;
}

.migration-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--primary-default);
  background: rgba(255, 212, 0, .08);
  border: 1px solid rgba(255, 212, 0, .35);
  flex: 0 0 auto;
}

.migration-icon svg {
  width: 30px;
  height: 30px;
}

.migration-copy {
  flex: 1;
}

.migration-copy h3 {
  margin-top: 0;
  margin-bottom: 7px;
  font-size: 22px;
  color: #fff;
}

.migration-copy p {
  margin-bottom: 0;
  color: var(--text-secondary);
}

.migration .btn {
  flex-shrink: 0;
}

/* =========================================================================
   Connect Cards
   ========================================================================= */
.connect-card {
  position: relative;
  overflow: hidden;
  min-height: 206px;
}

.connect-card::after {
  content: attr(data-step);
  position: absolute;
  right: 18px;
  top: -12px;
  color: rgba(255, 255, 255, .035);
  font-size: 88px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

/* =========================================================================
   FAQ Section
   ========================================================================= */
.faq-container {
  max-width: 920px;
  margin: 0 auto;
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.12));
  border-radius: 16px;
  overflow: hidden;
  background: rgba(20, 29, 29, .7);
  box-sizing: border-box;
}

.faq-item + .faq-item {
  border-top: 1px solid var(--border-subtle);
}

.faq-question {
  width: 100%;
  min-height: 64px;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border: 0;
  color: white;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 650;
  transition: background .2s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, .025);
}

.faq-chevron {
  flex: 0 0 auto;
  transition: transform .25s ease;
  width: 18px;
  height: 18px;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer-inner p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.65;
}

/* =========================================================================
   CTA Section
   ========================================================================= */
#cta {
  padding-top: 30px;
  padding-bottom: 50px;
}

#faq::after,
#cta::after {
  display: none !important;
}

.cta-wide {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 38px 42px;
  border: 1px solid rgba(78, 204, 205, .34);
  border-radius: 20px;
  background: linear-gradient(100deg, rgba(78, 204, 205, .07), rgba(20, 29, 29, .94) 50%, rgba(255, 212, 0, .04));
  box-shadow: 0 0 70px rgba(78, 204, 205, .10);
  box-sizing: border-box;
}

.cta-wide::after {
  content: '';
  position: absolute;
  right: 120px;
  bottom: -180px;
  width: 450px;
  height: 330px;
  border: 1px solid rgba(78, 204, 205, .15);
  border-radius: 50%;
  transform: rotate(-12deg);
  pointer-events: none;
}

.cta-copy {
  flex: 1;
  position: relative;
  z-index: 1;
}

.cta-copy h2 {
  margin-top: 0;
  margin-bottom: 9px;
  font-size: clamp(28px, 3vw, 38px);
  color: #fff;
  font-weight: 800;
}

.cta-copy p {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 16px;
}

.cta-wide .btn {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

/* =========================================================================
   Responsive Breakpoints
   ========================================================================= */
@media (max-width: 980px) {
  .hero.bp-int-hero { padding: 50px 32px 60px; }
  .section { padding: 70px 32px; }
  #cta { padding: 20px 32px 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .integration-visual { max-width: 680px; }
  .moysklad-brand { justify-content: flex-start; }
  .cards-3, .cards-6 { grid-template-columns: repeat(2, 1fr); }
  .workflow { grid-template-columns: 1fr; }
  .workflow-arrow { transform: rotate(90deg); }
}

@media (max-width: 660px) {
  .section { padding: 62px 20px; }
  #cta { padding: 10px 20px 30px; }
  .hero.bp-int-hero { min-height: unset; padding: 42px 20px 54px; }
  .hero-copy h1 { font-size: 36px; }
  .hero-copy .lead { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .demo-screen { grid-template-columns: 1fr; }
  .demo-card { min-height: unset; }
  .demo-empty { min-height: unset; flex-direction: column; align-items: flex-start; }
  .cash-illustration { width: 100%; height: 110px; }
  .cards-3, .cards-6 { grid-template-columns: 1fr; }
  .migration { align-items: flex-start; flex-direction: column; padding: 24px; }
  .migration .btn { width: 100%; }
  .cta-wide { align-items: flex-start; flex-direction: column; padding: 28px 24px; }
  .cta-wide .btn { width: 100%; }
}

/* End */


/* Start:/local/components/bonusplus.integrations/faq/templates/.default/style.css?178695703218735*/
/* =========================================================================
   BonusPlus Detail Integration Component Styles
   Strictly unified borders (1px solid var(--border-subtle)), 
   border-radius (16px / 12px), backgrounds, and hover lift effects.
   ========================================================================= */

.bp-integration-page {
  position: relative;
  overflow-x: hidden;
  padding-bottom: 0;
}

.highlight-cyan {
  color: var(--secondary-default, #4ECCCD);
}

/* Eyebrow badge */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 14px;
  border: 1px solid rgba(78, 204, 205, .48);
  background: rgba(78, 204, 205, .08);
  color: var(--secondary-hover, #5DF1F3);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  align-self: flex-start;
}

.eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--secondary-default, #4ECCCD);
  box-shadow: 0 0 12px rgba(78, 204, 205, .65);
}

/* =========================================================================
   Hero Section
   ========================================================================= */
.hero.bp-int-hero {
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 76px 50px 90px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.hero.bp-int-hero::before {
  content: '';
  position: absolute;
  width: 650px;
  height: 650px;
  right: -250px;
  top: -300px;
  border: 1px solid rgba(255, 212, 0, .25);
  border-radius: 50%;
  box-shadow: 0 0 70px rgba(255, 212, 0, .06);
  pointer-events: none;
}

.hero.bp-int-hero::after {
  content: '';
  position: absolute;
  width: 580px;
  height: 250px;
  right: 4%;
  top: 34%;
  background: radial-gradient(ellipse, rgba(78, 204, 205, .15), transparent 66%);
  filter: blur(14px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(460px, .97fr);
  gap: 54px;
  align-items: center;
  width: 100%;
}

.hero-copy {
  position: relative;
  z-index: 2;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.hero-copy .bread-crumbs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
  margin-bottom: 20px;
  padding: 0;
  text-align: left;
}

.hero-copy h1 {
  text-align: left;
  margin-top: 0;
  margin-bottom: 22px;
  font-size: clamp(38px, 4.8vw, 60px);
  line-height: 1.05;
  letter-spacing: -.035em;
  font-weight: 800;
  color: var(--text-primary);
}

.hero-copy .lead {
  text-align: left;
  max-width: 650px;
  margin-top: 0;
  margin-bottom: 30px;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

/* Brand badge in hero */
.integration-visual {
  position: relative;
}

.moysklad-brand {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin: 0 10px 18px 0;
  font-size: 25px;
  font-weight: 800;
  color: #fff;
}

.bp-int-hero-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.12));
  background: rgba(255, 255, 255, 0.05);
  padding: 4px;
}

/* =========================================================================
   Demo Panel (Interactive Mockups)
   ========================================================================= */
.demo-panel {
  position: relative;
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, .16));
  border-radius: 18px;
  padding: 16px;
  background: linear-gradient(150deg, rgba(20, 29, 29, .98), rgba(10, 21, 21, .94));
  box-shadow: 0 22px 70px rgba(0, 0, 0, .34), 0 0 70px rgba(78, 204, 205, .10);
  overflow: hidden;
  box-sizing: border-box;
}

.demo-panel::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  right: -90px;
  bottom: -110px;
  background: radial-gradient(circle, rgba(78, 204, 205, .16), transparent 65%);
  pointer-events: none;
}

.demo-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.demo-tab {
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  background: rgba(255, 255, 255, .035);
  border-radius: 10px;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: all .2s ease;
}

.demo-tab:hover {
  background: rgba(78, 204, 205, 0.08);
  border-color: rgba(78, 204, 205, 0.35);
  color: #fff;
}

.demo-tab.active {
  color: var(--secondary-hover);
  background: rgba(78, 204, 205, .12);
  border-color: rgba(78, 204, 205, .45);
}

.demo-screen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.demo-card {
  min-height: 274px;
  padding: 18px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, .10));
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.demo-card--wallet {
  background: linear-gradient(135deg, #1C2D2D, #0A1717);
  border: 1px solid rgba(78, 204, 205, 0.4);
}

.demo-card h4 {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.demo-muted {
  color: var(--text-disabled, rgba(255, 255, 255, .6));
  font-size: 11px;
}

.demo-customer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 5px 0 15px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.vip {
  padding: 3px 8px;
  color: var(--secondary-hover);
  background: rgba(78, 204, 205, .12);
  border: 1px solid rgba(78, 204, 205, 0.25);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
}

.bonus-widget {
  padding: 14px;
  background: rgba(78, 204, 205, .07);
  border: 1px solid rgba(78, 204, 205, .20);
  border-radius: 12px;
  box-sizing: border-box;
}

.bonus-balance {
  margin: 5px 0 10px;
  color: var(--secondary-hover);
  font-size: 23px;
  font-weight: 800;
}

.demo-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin: 9px 0;
  font-size: 11px;
}

.demo-row strong {
  font-weight: 700;
  white-space: nowrap;
  color: #fff;
}

.demo-row.total {
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
  font-size: 14px;
}

.spendable {
  color: var(--primary-default);
}

.demo-action {
  width: 100%;
  min-height: 38px;
  margin-top: 10px;
  border: 1px solid rgba(78, 204, 205, .55);
  border-radius: 8px;
  background: rgba(78, 204, 205, .1);
  color: white;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  transition: all .2s ease;
}

.demo-action:hover {
  background: rgba(78, 204, 205, .18);
  border-color: var(--secondary-default);
}

.demo-action.applied {
  border-color: rgba(255, 212, 0, .55);
  background: rgba(255, 212, 0, .08);
  color: var(--primary-default);
}

.demo-pay {
  width: 100%;
  min-height: 38px;
  margin-top: auto;
  border: 1px solid rgba(78, 204, 205, .45);
  border-radius: 8px;
  background: rgba(78, 204, 205, .6);
  color: white;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  transition: background .2s ease;
}

.demo-pay:hover {
  background: rgba(78, 204, 205, .8);
}

.demo-save {
  width: 100%;
  min-height: 36px;
  margin-top: 8px;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 11px;
  transition: border-color .2s ease, color .2s ease;
}

.demo-save:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.demo-empty {
  min-height: 274px;
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px dashed rgba(78, 204, 205, .28);
  border-radius: 14px;
  background: rgba(78, 204, 205, .04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-sizing: border-box;
}

.demo-empty strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
  color: #fff;
}

.demo-empty p {
  max-width: 380px;
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 13px;
}

.cash-illustration {
  width: 130px;
  height: 130px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(78, 204, 205, .17), rgba(255, 212, 0, .07));
  border: 1px solid var(--border-subtle);
  flex: 0 0 auto;
}

.cash-illustration svg {
  width: 68px;
  height: 68px;
  color: var(--secondary-hover);
}

/* =========================================================================
   Sections & Cards
   ========================================================================= */
.section {
  position: relative;
  padding: 84px 50px;
  box-sizing: border-box;
}

.section--secondary {
  background: rgba(20, 29, 29, .58);
}

.section-head {
  max-width: 780px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-head h2 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.08;
  letter-spacing: -.025em;
  font-weight: 800;
  color: #fff;
}

.section-head p {
  color: var(--text-secondary);
  margin-bottom: 0;
  font-size: 16px;
}

.cards-3, .cards-6 {
  display: grid;
  gap: 18px;
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.cards-6 {
  grid-template-columns: repeat(3, 1fr);
}

/* Uniform card styling for all cards */
.bp-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.12));
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(20, 29, 29, .98), rgba(12, 22, 22, .94));
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  box-sizing: border-box;
}

.bp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(78, 204, 205, .45);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .25), 0 0 30px rgba(78, 204, 205, .08);
}

.bp-card h3 {
  margin-top: 0;
  margin-bottom: 9px;
  font-size: 19px;
  line-height: 1.25;
  color: #fff;
  font-weight: 700;
}

.bp-card p {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.55;
}

/* Choice cards */
.bp-card--choice {
  cursor: pointer;
}

.bp-card--choice.active {
  border-color: rgba(78, 204, 205, .62);
  box-shadow: 0 0 0 1px rgba(78, 204, 205, .15), 0 0 50px rgba(78, 204, 205, .12);
}

/* Uniform card icons */
.card-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 12px;
  border: 1px solid rgba(78, 204, 205, .35);
  color: var(--secondary-hover);
  background: rgba(78, 204, 205, .08);
}

.card-icon.yellow {
  color: var(--primary-default);
  border-color: rgba(255, 212, 0, .35);
  background: rgba(255, 212, 0, .08);
}

.card-icon svg {
  width: 23px;
  height: 23px;
}

.choice-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--secondary-hover);
  font-size: 13px;
  font-weight: 700;
}

/* Feature cards in 6-grid */
.feature-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px;
}

.feature-card .card-icon {
  margin-bottom: 0;
  width: 44px;
  height: 44px;
}

.feature-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
  margin-top: 0;
}

.feature-card p {
  font-size: 13px;
  line-height: 1.5;
}

/* =========================================================================
   Workflow & Migration
   ========================================================================= */
.workflow {
  display: grid;
  grid-template-columns: 1fr 46px 1fr 46px 1fr;
  gap: 12px;
  align-items: center;
}

.workflow-step {
  min-height: 178px;
  padding: 24px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.12));
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(20, 29, 29, .98), rgba(12, 22, 22, .94));
  box-sizing: border-box;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.workflow-step:hover {
  transform: translateY(-4px);
  border-color: rgba(78, 204, 205, .45);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .25), 0 0 30px rgba(78, 204, 205, .08);
}

.step-num {
  width: 38px;
  height: 38px;
  min-width: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(78, 204, 205, .45);
  background: rgba(78, 204, 205, .08);
  color: var(--secondary-hover);
  font-size: 14px;
  font-weight: 800;
}

.workflow-step h3 {
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 18px;
  color: #fff;
}

.workflow-step p {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.5;
}

.workflow-arrow {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .5);
}

.workflow-arrow svg {
  width: 26px;
  height: 26px;
}

.migration {
  position: relative;
  overflow: hidden;
  margin-top: 28px;
  padding: 30px 34px;
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(255, 212, 0, .35);
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(255, 212, 0, .08), rgba(20, 29, 29, .98) 46%, rgba(78, 204, 205, .04));
  box-shadow: 0 0 50px rgba(255, 212, 0, .08);
  box-sizing: border-box;
}

.migration::after {
  content: '';
  position: absolute;
  right: -90px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 212, 0, .12), transparent 67%);
  pointer-events: none;
}

.migration-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--primary-default);
  background: rgba(255, 212, 0, .08);
  border: 1px solid rgba(255, 212, 0, .35);
  flex: 0 0 auto;
}

.migration-icon svg {
  width: 30px;
  height: 30px;
}

.migration-copy {
  flex: 1;
}

.migration-copy h3 {
  margin-top: 0;
  margin-bottom: 7px;
  font-size: 22px;
  color: #fff;
}

.migration-copy p {
  margin-bottom: 0;
  color: var(--text-secondary);
}

.migration .btn {
  flex-shrink: 0;
}

/* =========================================================================
   Connect Cards
   ========================================================================= */
.connect-card {
  position: relative;
  overflow: hidden;
  min-height: 206px;
}

.connect-card::after {
  content: attr(data-step);
  position: absolute;
  right: 18px;
  top: -12px;
  color: rgba(255, 255, 255, .035);
  font-size: 88px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

/* =========================================================================
   FAQ Section
   ========================================================================= */
.faq-container {
  max-width: 920px;
  margin: 0 auto;
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.12));
  border-radius: 16px;
  overflow: hidden;
  background: rgba(20, 29, 29, .7);
  box-sizing: border-box;
}

.faq-item + .faq-item {
  border-top: 1px solid var(--border-subtle);
}

.faq-question {
  width: 100%;
  min-height: 64px;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border: 0;
  color: white;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 650;
  transition: background .2s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, .025);
}

.faq-chevron {
  flex: 0 0 auto;
  transition: transform .25s ease;
  width: 18px;
  height: 18px;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer-inner p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.65;
}

/* =========================================================================
   CTA Section
   ========================================================================= */
#cta {
  padding-top: 30px;
  padding-bottom: 50px;
}

#faq::after,
#cta::after {
  display: none !important;
}

.cta-wide {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 38px 42px;
  border: 1px solid rgba(78, 204, 205, .34);
  border-radius: 20px;
  background: linear-gradient(100deg, rgba(78, 204, 205, .07), rgba(20, 29, 29, .94) 50%, rgba(255, 212, 0, .04));
  box-shadow: 0 0 70px rgba(78, 204, 205, .10);
  box-sizing: border-box;
}

.cta-wide::after {
  content: '';
  position: absolute;
  right: 120px;
  bottom: -180px;
  width: 450px;
  height: 330px;
  border: 1px solid rgba(78, 204, 205, .15);
  border-radius: 50%;
  transform: rotate(-12deg);
  pointer-events: none;
}

.cta-copy {
  flex: 1;
  position: relative;
  z-index: 1;
}

.cta-copy h2 {
  margin-top: 0;
  margin-bottom: 9px;
  font-size: clamp(28px, 3vw, 38px);
  color: #fff;
  font-weight: 800;
}

.cta-copy p {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 16px;
}

.cta-wide .btn {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

/* =========================================================================
   Responsive Breakpoints
   ========================================================================= */
@media (max-width: 980px) {
  .hero.bp-int-hero { padding: 50px 32px 60px; }
  .section { padding: 70px 32px; }
  #cta { padding: 20px 32px 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .integration-visual { max-width: 680px; }
  .moysklad-brand { justify-content: flex-start; }
  .cards-3, .cards-6 { grid-template-columns: repeat(2, 1fr); }
  .workflow { grid-template-columns: 1fr; }
  .workflow-arrow { transform: rotate(90deg); }
}

@media (max-width: 660px) {
  .section { padding: 62px 20px; }
  #cta { padding: 10px 20px 30px; }
  .hero.bp-int-hero { min-height: unset; padding: 42px 20px 54px; }
  .hero-copy h1 { font-size: 36px; }
  .hero-copy .lead { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .demo-screen { grid-template-columns: 1fr; }
  .demo-card { min-height: unset; }
  .demo-empty { min-height: unset; flex-direction: column; align-items: flex-start; }
  .cash-illustration { width: 100%; height: 110px; }
  .cards-3, .cards-6 { grid-template-columns: 1fr; }
  .migration { align-items: flex-start; flex-direction: column; padding: 24px; }
  .migration .btn { width: 100%; }
  .cta-wide { align-items: flex-start; flex-direction: column; padding: 28px 24px; }
  .cta-wide .btn { width: 100%; }
}

/* End */


/* Start:/local/components/bonusplus.integrations/cta/templates/.default/style.css?178695703218735*/
/* =========================================================================
   BonusPlus Detail Integration Component Styles
   Strictly unified borders (1px solid var(--border-subtle)), 
   border-radius (16px / 12px), backgrounds, and hover lift effects.
   ========================================================================= */

.bp-integration-page {
  position: relative;
  overflow-x: hidden;
  padding-bottom: 0;
}

.highlight-cyan {
  color: var(--secondary-default, #4ECCCD);
}

/* Eyebrow badge */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 14px;
  border: 1px solid rgba(78, 204, 205, .48);
  background: rgba(78, 204, 205, .08);
  color: var(--secondary-hover, #5DF1F3);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  align-self: flex-start;
}

.eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--secondary-default, #4ECCCD);
  box-shadow: 0 0 12px rgba(78, 204, 205, .65);
}

/* =========================================================================
   Hero Section
   ========================================================================= */
.hero.bp-int-hero {
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 76px 50px 90px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.hero.bp-int-hero::before {
  content: '';
  position: absolute;
  width: 650px;
  height: 650px;
  right: -250px;
  top: -300px;
  border: 1px solid rgba(255, 212, 0, .25);
  border-radius: 50%;
  box-shadow: 0 0 70px rgba(255, 212, 0, .06);
  pointer-events: none;
}

.hero.bp-int-hero::after {
  content: '';
  position: absolute;
  width: 580px;
  height: 250px;
  right: 4%;
  top: 34%;
  background: radial-gradient(ellipse, rgba(78, 204, 205, .15), transparent 66%);
  filter: blur(14px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(460px, .97fr);
  gap: 54px;
  align-items: center;
  width: 100%;
}

.hero-copy {
  position: relative;
  z-index: 2;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.hero-copy .bread-crumbs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
  margin-bottom: 20px;
  padding: 0;
  text-align: left;
}

.hero-copy h1 {
  text-align: left;
  margin-top: 0;
  margin-bottom: 22px;
  font-size: clamp(38px, 4.8vw, 60px);
  line-height: 1.05;
  letter-spacing: -.035em;
  font-weight: 800;
  color: var(--text-primary);
}

.hero-copy .lead {
  text-align: left;
  max-width: 650px;
  margin-top: 0;
  margin-bottom: 30px;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

/* Brand badge in hero */
.integration-visual {
  position: relative;
}

.moysklad-brand {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin: 0 10px 18px 0;
  font-size: 25px;
  font-weight: 800;
  color: #fff;
}

.bp-int-hero-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.12));
  background: rgba(255, 255, 255, 0.05);
  padding: 4px;
}

/* =========================================================================
   Demo Panel (Interactive Mockups)
   ========================================================================= */
.demo-panel {
  position: relative;
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, .16));
  border-radius: 18px;
  padding: 16px;
  background: linear-gradient(150deg, rgba(20, 29, 29, .98), rgba(10, 21, 21, .94));
  box-shadow: 0 22px 70px rgba(0, 0, 0, .34), 0 0 70px rgba(78, 204, 205, .10);
  overflow: hidden;
  box-sizing: border-box;
}

.demo-panel::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  right: -90px;
  bottom: -110px;
  background: radial-gradient(circle, rgba(78, 204, 205, .16), transparent 65%);
  pointer-events: none;
}

.demo-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.demo-tab {
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  background: rgba(255, 255, 255, .035);
  border-radius: 10px;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: all .2s ease;
}

.demo-tab:hover {
  background: rgba(78, 204, 205, 0.08);
  border-color: rgba(78, 204, 205, 0.35);
  color: #fff;
}

.demo-tab.active {
  color: var(--secondary-hover);
  background: rgba(78, 204, 205, .12);
  border-color: rgba(78, 204, 205, .45);
}

.demo-screen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.demo-card {
  min-height: 274px;
  padding: 18px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, .10));
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.demo-card--wallet {
  background: linear-gradient(135deg, #1C2D2D, #0A1717);
  border: 1px solid rgba(78, 204, 205, 0.4);
}

.demo-card h4 {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.demo-muted {
  color: var(--text-disabled, rgba(255, 255, 255, .6));
  font-size: 11px;
}

.demo-customer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 5px 0 15px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.vip {
  padding: 3px 8px;
  color: var(--secondary-hover);
  background: rgba(78, 204, 205, .12);
  border: 1px solid rgba(78, 204, 205, 0.25);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
}

.bonus-widget {
  padding: 14px;
  background: rgba(78, 204, 205, .07);
  border: 1px solid rgba(78, 204, 205, .20);
  border-radius: 12px;
  box-sizing: border-box;
}

.bonus-balance {
  margin: 5px 0 10px;
  color: var(--secondary-hover);
  font-size: 23px;
  font-weight: 800;
}

.demo-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin: 9px 0;
  font-size: 11px;
}

.demo-row strong {
  font-weight: 700;
  white-space: nowrap;
  color: #fff;
}

.demo-row.total {
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
  font-size: 14px;
}

.spendable {
  color: var(--primary-default);
}

.demo-action {
  width: 100%;
  min-height: 38px;
  margin-top: 10px;
  border: 1px solid rgba(78, 204, 205, .55);
  border-radius: 8px;
  background: rgba(78, 204, 205, .1);
  color: white;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  transition: all .2s ease;
}

.demo-action:hover {
  background: rgba(78, 204, 205, .18);
  border-color: var(--secondary-default);
}

.demo-action.applied {
  border-color: rgba(255, 212, 0, .55);
  background: rgba(255, 212, 0, .08);
  color: var(--primary-default);
}

.demo-pay {
  width: 100%;
  min-height: 38px;
  margin-top: auto;
  border: 1px solid rgba(78, 204, 205, .45);
  border-radius: 8px;
  background: rgba(78, 204, 205, .6);
  color: white;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  transition: background .2s ease;
}

.demo-pay:hover {
  background: rgba(78, 204, 205, .8);
}

.demo-save {
  width: 100%;
  min-height: 36px;
  margin-top: 8px;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 11px;
  transition: border-color .2s ease, color .2s ease;
}

.demo-save:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.demo-empty {
  min-height: 274px;
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px dashed rgba(78, 204, 205, .28);
  border-radius: 14px;
  background: rgba(78, 204, 205, .04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-sizing: border-box;
}

.demo-empty strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
  color: #fff;
}

.demo-empty p {
  max-width: 380px;
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 13px;
}

.cash-illustration {
  width: 130px;
  height: 130px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(78, 204, 205, .17), rgba(255, 212, 0, .07));
  border: 1px solid var(--border-subtle);
  flex: 0 0 auto;
}

.cash-illustration svg {
  width: 68px;
  height: 68px;
  color: var(--secondary-hover);
}

/* =========================================================================
   Sections & Cards
   ========================================================================= */
.section {
  position: relative;
  padding: 84px 50px;
  box-sizing: border-box;
}

.section--secondary {
  background: rgba(20, 29, 29, .58);
}

.section-head {
  max-width: 780px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-head h2 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.08;
  letter-spacing: -.025em;
  font-weight: 800;
  color: #fff;
}

.section-head p {
  color: var(--text-secondary);
  margin-bottom: 0;
  font-size: 16px;
}

.cards-3, .cards-6 {
  display: grid;
  gap: 18px;
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.cards-6 {
  grid-template-columns: repeat(3, 1fr);
}

/* Uniform card styling for all cards */
.bp-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.12));
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(20, 29, 29, .98), rgba(12, 22, 22, .94));
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  box-sizing: border-box;
}

.bp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(78, 204, 205, .45);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .25), 0 0 30px rgba(78, 204, 205, .08);
}

.bp-card h3 {
  margin-top: 0;
  margin-bottom: 9px;
  font-size: 19px;
  line-height: 1.25;
  color: #fff;
  font-weight: 700;
}

.bp-card p {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.55;
}

/* Choice cards */
.bp-card--choice {
  cursor: pointer;
}

.bp-card--choice.active {
  border-color: rgba(78, 204, 205, .62);
  box-shadow: 0 0 0 1px rgba(78, 204, 205, .15), 0 0 50px rgba(78, 204, 205, .12);
}

/* Uniform card icons */
.card-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 12px;
  border: 1px solid rgba(78, 204, 205, .35);
  color: var(--secondary-hover);
  background: rgba(78, 204, 205, .08);
}

.card-icon.yellow {
  color: var(--primary-default);
  border-color: rgba(255, 212, 0, .35);
  background: rgba(255, 212, 0, .08);
}

.card-icon svg {
  width: 23px;
  height: 23px;
}

.choice-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--secondary-hover);
  font-size: 13px;
  font-weight: 700;
}

/* Feature cards in 6-grid */
.feature-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px;
}

.feature-card .card-icon {
  margin-bottom: 0;
  width: 44px;
  height: 44px;
}

.feature-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
  margin-top: 0;
}

.feature-card p {
  font-size: 13px;
  line-height: 1.5;
}

/* =========================================================================
   Workflow & Migration
   ========================================================================= */
.workflow {
  display: grid;
  grid-template-columns: 1fr 46px 1fr 46px 1fr;
  gap: 12px;
  align-items: center;
}

.workflow-step {
  min-height: 178px;
  padding: 24px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.12));
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(20, 29, 29, .98), rgba(12, 22, 22, .94));
  box-sizing: border-box;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.workflow-step:hover {
  transform: translateY(-4px);
  border-color: rgba(78, 204, 205, .45);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .25), 0 0 30px rgba(78, 204, 205, .08);
}

.step-num {
  width: 38px;
  height: 38px;
  min-width: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(78, 204, 205, .45);
  background: rgba(78, 204, 205, .08);
  color: var(--secondary-hover);
  font-size: 14px;
  font-weight: 800;
}

.workflow-step h3 {
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 18px;
  color: #fff;
}

.workflow-step p {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.5;
}

.workflow-arrow {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .5);
}

.workflow-arrow svg {
  width: 26px;
  height: 26px;
}

.migration {
  position: relative;
  overflow: hidden;
  margin-top: 28px;
  padding: 30px 34px;
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(255, 212, 0, .35);
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(255, 212, 0, .08), rgba(20, 29, 29, .98) 46%, rgba(78, 204, 205, .04));
  box-shadow: 0 0 50px rgba(255, 212, 0, .08);
  box-sizing: border-box;
}

.migration::after {
  content: '';
  position: absolute;
  right: -90px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 212, 0, .12), transparent 67%);
  pointer-events: none;
}

.migration-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--primary-default);
  background: rgba(255, 212, 0, .08);
  border: 1px solid rgba(255, 212, 0, .35);
  flex: 0 0 auto;
}

.migration-icon svg {
  width: 30px;
  height: 30px;
}

.migration-copy {
  flex: 1;
}

.migration-copy h3 {
  margin-top: 0;
  margin-bottom: 7px;
  font-size: 22px;
  color: #fff;
}

.migration-copy p {
  margin-bottom: 0;
  color: var(--text-secondary);
}

.migration .btn {
  flex-shrink: 0;
}

/* =========================================================================
   Connect Cards
   ========================================================================= */
.connect-card {
  position: relative;
  overflow: hidden;
  min-height: 206px;
}

.connect-card::after {
  content: attr(data-step);
  position: absolute;
  right: 18px;
  top: -12px;
  color: rgba(255, 255, 255, .035);
  font-size: 88px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

/* =========================================================================
   FAQ Section
   ========================================================================= */
.faq-container {
  max-width: 920px;
  margin: 0 auto;
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.12));
  border-radius: 16px;
  overflow: hidden;
  background: rgba(20, 29, 29, .7);
  box-sizing: border-box;
}

.faq-item + .faq-item {
  border-top: 1px solid var(--border-subtle);
}

.faq-question {
  width: 100%;
  min-height: 64px;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border: 0;
  color: white;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 650;
  transition: background .2s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, .025);
}

.faq-chevron {
  flex: 0 0 auto;
  transition: transform .25s ease;
  width: 18px;
  height: 18px;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer-inner p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.65;
}

/* =========================================================================
   CTA Section
   ========================================================================= */
#cta {
  padding-top: 30px;
  padding-bottom: 50px;
}

#faq::after,
#cta::after {
  display: none !important;
}

.cta-wide {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 38px 42px;
  border: 1px solid rgba(78, 204, 205, .34);
  border-radius: 20px;
  background: linear-gradient(100deg, rgba(78, 204, 205, .07), rgba(20, 29, 29, .94) 50%, rgba(255, 212, 0, .04));
  box-shadow: 0 0 70px rgba(78, 204, 205, .10);
  box-sizing: border-box;
}

.cta-wide::after {
  content: '';
  position: absolute;
  right: 120px;
  bottom: -180px;
  width: 450px;
  height: 330px;
  border: 1px solid rgba(78, 204, 205, .15);
  border-radius: 50%;
  transform: rotate(-12deg);
  pointer-events: none;
}

.cta-copy {
  flex: 1;
  position: relative;
  z-index: 1;
}

.cta-copy h2 {
  margin-top: 0;
  margin-bottom: 9px;
  font-size: clamp(28px, 3vw, 38px);
  color: #fff;
  font-weight: 800;
}

.cta-copy p {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 16px;
}

.cta-wide .btn {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

/* =========================================================================
   Responsive Breakpoints
   ========================================================================= */
@media (max-width: 980px) {
  .hero.bp-int-hero { padding: 50px 32px 60px; }
  .section { padding: 70px 32px; }
  #cta { padding: 20px 32px 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .integration-visual { max-width: 680px; }
  .moysklad-brand { justify-content: flex-start; }
  .cards-3, .cards-6 { grid-template-columns: repeat(2, 1fr); }
  .workflow { grid-template-columns: 1fr; }
  .workflow-arrow { transform: rotate(90deg); }
}

@media (max-width: 660px) {
  .section { padding: 62px 20px; }
  #cta { padding: 10px 20px 30px; }
  .hero.bp-int-hero { min-height: unset; padding: 42px 20px 54px; }
  .hero-copy h1 { font-size: 36px; }
  .hero-copy .lead { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .demo-screen { grid-template-columns: 1fr; }
  .demo-card { min-height: unset; }
  .demo-empty { min-height: unset; flex-direction: column; align-items: flex-start; }
  .cash-illustration { width: 100%; height: 110px; }
  .cards-3, .cards-6 { grid-template-columns: 1fr; }
  .migration { align-items: flex-start; flex-direction: column; padding: 24px; }
  .migration .btn { width: 100%; }
  .cta-wide { align-items: flex-start; flex-direction: column; padding: 28px 24px; }
  .cta-wide .btn { width: 100%; }
}

/* End */
/* /local/components/bonusplus.integrations/hero/templates/.default/style.css?178695703218735 */
/* /local/components/bonusplus.integrations/suitability/templates/.default/style.css?178695703218735 */
/* /local/components/bonusplus.integrations/features/templates/.default/style.css?178695703218735 */
/* /local/components/bonusplus.integrations/workflow/templates/.default/style.css?178695703218735 */
/* /local/components/bonusplus.integrations/connect/templates/.default/style.css?178695703218735 */
/* /local/components/bonusplus.integrations/faq/templates/.default/style.css?178695703218735 */
/* /local/components/bonusplus.integrations/cta/templates/.default/style.css?178695703218735 */
