*{
    font-family: "Montserrat", sans-serif;
}
.ai{
        display: flex;
    align-items: center;
}
.ae{
        display: flex;
    justify-content: end;
}
.mb60{
    margin-bottom: 60px;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to right, #2d2d2d 0%, #5178ea 100%);
}
::-webkit-scrollbar-track {
    background-color: rgba(16,16,16,.05);
}
::selection {
    color: #fff;
    background-color: #101010;
}

.main-head .logo img{
    height: 45px;
    object-fit: contain;
}
.main-head{
    padding: 20px 0;
}
.main-head .btn-block a{
   background: #c6f56f;
    padding: 12px 24px;
    border-radius: 12px;
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    border: 2px solid transparent;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

/* hover / focus */
.main-head .btn-block a:hover,
.main-head .btn-block a:focus{
    background: #fff;
    color: #000;
    border-color: #000;
    transform: translateY(-1px);
    outline: none;
}
.main-head .head-menu ul{
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 0;
    justify-content: center;
}
.main-head .head-menu ul li{
    list-style: none;
}
.main-head .head-menu ul li a{
    color: #022d3b;
    text-decoration: none;
    font-weight: 500;
}
.main-head .menu-left{
        margin-left: 24px;
    font-size: 22px;
    align-items: center;
    justify-content: center;
    display: flex;
    font-weight: 600;
}

/* panel */
.bs-offcanvas{
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: min(33.333vw, 420px); /* 1/3 экрана, но не больше 420 */
  min-width: 280px;           /* чтобы не было слишком узко */
  background: #eef1f1;
  color: #fff;
  z-index: 9999;

  transform: translateX(-105%);
  transition: transform .28s ease;
  border-right: 1px solid rgba(255,255,255,.08);
}

.bs-offcanvas.is-open{
  transform: translateX(0);
}

.bs-offcanvas-inner{
  padding: 22px 18px;
}

.bs-offcanvas-title{
      font-size: 16px;
    font-weight: 700;
    margin-bottom: 14px;
    color: rgb(0 0 0 / 92%);
    margin-top: 24px;
}

.bs-offcanvas-nav a{
      display: block;
    padding: 8px 0px;
    border-radius: 12px;
    text-decoration: none;
    color: rgb(0 0 0);
    transition: .2s ease;
}
.bs-offcanvas-nav a:hover{
  color: #3F51B5;
  transform: translateX(2px);
}

/* close btn */
.bs-offcanvas-close{
     position: absolute;
    top: 5px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
    color: #3F51B5;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    transition: .2s ease;
    font-size: 40px;
    font-weight: 900;
}


/* overlay */
.bs-offcanvas-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 9998;
  opacity: 0;
  transition: opacity .28s ease;
}

.bs-offcanvas-overlay.is-open{
  opacity: 1;
}









/*HOME PAGE                                                                 */
.hero-bg{
    --bg: #eef1f1;
    --line: rgba(2, 45, 59, .10); /* цвет линий (можно сделать слабее .06) */
    --container: 1200px;          /* ширина контента */
    --radius: 48px;

    background: var(--bg);
    border-radius: var(--radius);
    margin: 24px auto;
    max-width: 1440px;
    position: relative;
    overflow: hidden;
}

/* Контент по центру */
.hero-bg .container{
    max-width: var(--container);
    margin: 0 auto;
    padding: 120px 0px;
}

/* Линии/гайдлайны */
.hero-bg::before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;

    background:
        /* левая граница контейнера */
        linear-gradient(to right,
            transparent calc(50% - (var(--container) / 2)),
            var(--line) 0,
            var(--line) calc(50% - (var(--container) / 2) + 1px),
            transparent 0
        ),
        /* правая граница контейнера */
        linear-gradient(to right,
            transparent calc(50% + (var(--container) / 2)),
            var(--line) 0,
            var(--line) calc(50% + (var(--container) / 2) + 1px),
            transparent 0
        ),
        /* центральная линия (если не нужна — удалите этот градиент) */
        linear-gradient(to right,
            transparent 50%,
            var(--line) 0,
            var(--line) calc(50% + 1px),
            transparent 0
        );
    opacity: 1;
}

/* Если нужен тонкий горизонтальный разделитель между секциями */
.hero-bg + .section-next{
    border-top: 1px solid rgba(2, 45, 59, .10);
}
.hero-bg .banner-content h1{
        color: black;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 36px;
    margin-bottom: 24px;
}
.hero-bg .banner-content p{
        color: black;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.hero-bg .banner-content{
    text-align: center;
}
.hero-bg .banner-content .btn-block a{
       background: #3F51B5;
    padding: 12px 24px;
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid transparent;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
    display: block;
    width: fit-content;
    margin: 40px auto 0;
    z-index: 79;
    position: relative;
}

/* hover / focus */
.hero-bg .banner-content .btn-block a:hover,
.hero-bg .banner-content .btn-block a:focus{
    background: #fff;
    color: #000;
    border-color: #000;
    transform: translateY(-1px);
    outline: none;
}




.logo-marquee{
    position: relative;
    overflow: hidden;
    background: var(--marquee-bg, #fff);
    padding: 18px 0;
    max-width: 1440px;
    margin: 0 auto;
}

/* fade по краям */
.logo-marquee::before,
.logo-marquee::after{
    content:"";
    position:absolute;
    top:0; bottom:0;
    width: var(--fade, 160px);
    pointer-events:none;
    z-index: 2;
}
.logo-marquee::before{
    left:0;
    background: linear-gradient(to right, var(--marquee-bg, #fff) 0%, rgba(255,255,255,0) 100%);
}
.logo-marquee::after{
    right:0;
    background: linear-gradient(to left, var(--marquee-bg, #fff) 0%, rgba(255,255,255,0) 100%);
}

.logo-marquee__track{
    display: flex;
    width: max-content;
    will-change: transform;
    animation: logoScroll var(--speed, 2s) linear infinite;
}

/* группа логотипов */
.logo-marquee__group{
    display:flex;
    align-items:center;
    gap: 56px;
    padding: 0 28px;
}

.logo-marquee__group img{
    height: 34px;
    width: auto;
    display:block;
    opacity: .35;
    filter: grayscale(100%);
}

/* двигаем на точную ширину 1-й группы (JS выставит --move) */
@keyframes logoScroll{
    0%   { transform: translateX(0); }
    100% { transform: translateX(calc(var(--move, 1200px) * -1)); }
}

@media (prefers-reduced-motion: reduce){
    .logo-marquee__track{ animation: none; }
}
.logo-marquee__group img:hover{
        opacity: 1;
    filter: grayscale(0%);
}

.howit-section{
        padding: 80px 0;
    background: #fff
}

/* small pill */
.howit-pill{
    display:inline-block;
    padding:8px 14px;
    border-radius:999px;
    background:#f1f2f3;
    color:#2b2b2b;
    font-size:14px;
    line-height:1;
}

/* title + subtitle */
.howit-title{
       font-size: 32px;
    line-height: 1.05;
    letter-spacing: -0.02em;
    font-weight: 700;
    color: #0b0f14;
        margin-bottom: 24px !important;
}
.howit-subtitle{
    max-width:720px;
    margin:0 auto;
    font-size:16px;
    color:#6b7280;
}

/* cards */
.howit-card{
    border-radius:22px;
    padding:34px 28px;
    min-height:260px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    border:1px solid rgba(15,23,42,.06);
        height: 100%;
}

.howit-card--lime{
    background:#c9f46a; /* похожий лайм */
    border-color: rgba(15,23,42,.08);
}

.howit-card--light{
    background:#f4f5f7;
}

.howit-icon{
    width:64px;
    height:64px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:18px;
    color:#111827;
    background: rgba(255,255,255,.35);
    border: 1px solid rgba(15,23,42,.08);
}
.howit-card--light .howit-icon{
    background:#fff;
}

.howit-card__title{
    font-size:22px;
    font-weight:700;
    color:#0b0f14;
    margin:0 0 16px;
}
.howit-card__text{
   font-size: 15px;
    color: rgb(0 0 0 / 65%);
    max-width: 320px;
    font-weight: 500;
}

/* button */
.howit-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:14px 26px;
    border-radius:999px;
    background:#0b0f14;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition: .2s ease;
}
.howit-btn:hover{
    transform: translateY(-1px);
    color:#fff;
    opacity:.92;
}

/* responsive */
@media (max-width: 992px){
    .howit-title{ font-size:44px; }
}
@media (max-width: 576px){
    .howit-title{ font-size:24px; }
    .howit-card{ min-height:220px; padding:26px 20px; }
}
.howit-cards a{
    text-decoration: none;
}

/* =========================
   Smooth hover animations
   ========================= */

/* плавные переходы для всех изменяемых элементов */
.howit-card{
  transition: background-color .28s ease, transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.howit-card__title,
.howit-card__text{
  transition: color .28s ease, transform .28s ease;
}
.howit-icon{
  transition: background-color .28s ease, border-color .28s ease, transform .28s ease;
}
.howit-icon svg{
  transition: transform .28s ease, color .28s ease;
}

/* чуть более "живой" ховер */
.howit-cards a:hover .howit-card{
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(11, 15, 20, .12);
  border-color: rgba(15,23,42,.14);
}

/* единая логика: любая карточка при hover становится синей */
.howit-cards a:hover .howit-card{
  background: #3f51b5;
}

/* текст */
.howit-cards a:hover .howit-card__title{
  color: #fff;
  transform: translateY(-1px);
}
.howit-cards a:hover .howit-card__text{
  color: rgb(255 255 255 / 65%);
}

/* иконка */
.howit-cards a:hover .howit-icon{
  background: rgb(201 244 106);
  transform: scale(1.06);
}
.howit-cards a:hover .howit-icon svg{
  transform: scale(1.04);
}

/* чтобы отключать анимации, если у пользователя так в системе */
@media (prefers-reduced-motion: reduce){
  .howit-card,
  .howit-card__title,
  .howit-card__text,
  .howit-icon,
  .howit-icon svg{
    transition: none !important;
  }
}



.bs-faq-section{
     max-width: 1440px;
    background: #eef0ed;
    margin: 0 auto;
    background: #eef1f1;
    border-radius: 48px;
}

.bs-faq-surface{
  background: #eef0ed;
  border-radius: 28px;
  padding: 80px 0px;
}

.bs-faq-head{ margin-bottom: 42px; }

.bs-faq-pill{
  display:inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background:#fff;
  color:#2b2b2b;
  font-size: 13px;
  line-height: 1;
  border: 1px solid rgba(15,23,42,.08);
  margin-bottom: 18px;
}

.bs-faq-title{
      font-size: 32px;
    line-height: 1.05;
    letter-spacing: -0.02em;
    font-weight: 700;
    color: #0b0f14;
    margin-bottom: 24px !important;
}

.bs-faq-subtitle{
      max-width: 720px;
    margin: 0 auto;
    font-size: 16px;
    color: #6b7280;
}

/* Accordion reset */
.bs-faq-acc .accordion-item{
  background: transparent;
  border: 0;
}

.bs-faq-item{
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  margin: 14px auto;
  box-shadow: 0 10px 30px rgba(11,15,20,.06);
}

.bs-faq-btn{
  background: #fff !important;
    box-shadow: none !important;
    padding: 22px 24px;
    font-size: 18px;
    font-weight: 600;
    color: #0b0f14;
    border: 0;
    font-family: 'Montserrat';
    color: black !important;
    font-size: 18px;
}

/* убираем стандартную стрелку bootstrap */
.bs-faq-acc .accordion-button::after{
  display:none !important;
}

/* кастомная стрелка */
.bs-faq-icon{
  margin-left: auto;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.10);
  background: #fff;
  position: relative;
  flex: 0 0 auto;
  transition: transform .25s ease, background-color .25s ease;
}
.bs-faq-icon::before{
  content:"";
  position:absolute;
  inset: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid #3F51B5;
  border-bottom: 2px solid #3F51B5;
  transform: rotate(45deg);
  top: -2px;
}

/* rotate on open */
.bs-faq-acc .accordion-button:not(.collapsed) .bs-faq-icon{
  transform: rotate(180deg);
}

.bs-faq-body{
  padding: 0 24px 22px;
  color: rgba(11,15,20,.65);
  font-size: 15px;
  line-height: 1.6;
  background: white;
      border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
}

.bs-faq-body p{ margin: 0; }
.bs-faq-body a{ color: #3f51b5; text-decoration: none; }
.bs-faq-body a:hover{ text-decoration: underline; }

@media (max-width: 992px){
  .bs-faq-surface{ padding: 0px 2px; }
  .bs-faq-title{ font-size: 40px; }
}
@media (max-width: 576px){
  .bs-faq-section{ padding: 40px 0; margin: 0 12px; }
  .bs-faq-title{ font-size: 24px; }
  .bs-faq-btn{ font-size: 16px; padding: 18px 18px; }
  .bs-faq-body{ padding: 0 18px 18px; }
  .bs-faq-item{ border-radius: 18px; }
}
.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
}
.accordion-item:last-of-type .accordion-button.collapsed{
     border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
}


.bs-proof-box{
  color: #fff;
  box-shadow: 0 20px 45px rgba(0,0,0,.18);
}

.bs-proof-title{
font-size: 26px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
    margin-bottom: 24px !important;
    display: block;
}

.bs-proof-text{
  color: rgba(255,255,255,.65);
  font-size: 14px;
  line-height: 1.6;
  max-width: 380px;
}
.bs-proof .align-items-center {
    align-items: end !important;
}

.bs-proof-item{
  text-align: center;
}

.bs-proof-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  min-width: 78px;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 700;
  color: #0b0f14;
  margin-bottom: 10px;
}

.bs-badge-lime{ background: #c9f46a; }
.bs-badge-peach{ background: #ffbba6; }
.bs-badge-cyan{ background: #86e7f1; }

.bs-stars{
  font-size: 16px;
  letter-spacing: 2px;
  color: #ffcc21;
  margin-bottom: 8px;
  line-height: 1;
}

.bs-proof-caption{
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.92);
}

/* responsive */
@media (max-width: 992px){
  .bs-proof-title{ font-size: 24px; }
  .bs-proof-text{ max-width: none; }
}
@media (max-width: 576px){
  .bs-proof-box{ padding: 22px 18px; border-radius: 18px; }
}
.bs-proof{
    background: #121416;
    border-radius: 22px;
    padding: 28px 28px;
    max-width: 1440px;
    margin: 0 auto;
      box-shadow: 0 20px 45px rgba(0,0,0,.18);
}

.home-text-block .hidden-content{
        max-height: none;
    height: 430px;
    overflow: auto;
}
.home-text-block{
        padding: 120px 0;
    max-width: 1420px;
    margin: 0 auto;
}
.home-text-block .hidden-content p {
   line-height: 24px;
    margin-bottom: 10px;
    padding-right: 25px;
    font-size: 15px;
    color: black;
}

.home-text-block .hidden-content li {
    margin-bottom: 5px !important;
    list-style: inside !important;
    padding-left: 10px;
    padding-top: 5px;
    line-height: 24px;
    color: #5e5e5e;
        font-size: 15px;
    color: black;
}
.home-text-block .hidden-content ul {
    padding: 0px;
    margin: 20px 0px;
    display: block;
}
.home-text-block .hidden-content  h2 {
   font-size: 22px;
    margin-bottom: 15px;
    border-left: 5px solid #3F51B5;
    padding-left: 20px;
    color: black;
    font-weight: 600;
}
.home-text-block .hidden-content  a {
    color: black;
    text-decoration: underline;
    font-weight: 500;
}
.bs-blog{
  padding: 90px 0;
}

.bs-blog-head{
  max-width: 820px;
  margin: 0 auto;
}

.bs-blog-title{
      font-size: 32px;
    line-height: 1.05;
    letter-spacing: -0.02em;
    font-weight: 700;
    color: #0b0f14;
    margin-bottom: 24px !important;
}
.bs-blog-title span{
  color: #3F51B5; /* акцент как "news & insights" */
}

.bs-blog-subtitle{
  margin: 0 auto;
  font-size: 15px;
  color: rgba(11,15,20,.55);
  max-width: 760px;
}

.bs-post-card{
  height: 100%;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: 0 18px 40px rgba(11,15,20,.06);
  display: flex;
  flex-direction: column;
}

.bs-post-thumb{
  display: block;
  border-radius: 22px;
  overflow: hidden;
  margin: 18px;
}
.bs-post-thumb img{
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px;
  transition: transform .35s ease;
}
.bs-post-card:hover .bs-post-thumb img{
  transform: scale(1.03);
}

.bs-post-body{
  padding: 6px 22px 22px;
  display: flex;
  flex-direction: column;

}

.bs-post-tag{
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(134,231,241,.35); /* нежный голубой */
  color: rgba(11,15,20,.85);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}



/* LEFT FIXED BAR — DESKTOP ONLY */
@media (min-width: 992px) {
  :root{
    --bs-leftbar-w: 84px;
    --bs-leftbar-bg: #ffffff;
    --bs-leftbar-border: rgba(0,0,0,.08);
    --bs-leftbar-text: #0b0f14;
  }

  body{
    padding-left: var(--bs-leftbar-w);
  }

  .bs-leftbar{
    position: fixed;
    top: 0; left: 0;
    width: var(--bs-leftbar-w);
    height: 100vh;
    background: var(--bs-leftbar-bg);
    border-right: 1px solid var(--bs-leftbar-border);
    z-index: 9999;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;

    padding: 28px 10px;
  }

  .bs-leftbar__top,
  .bs-leftbar__bottom{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .bs-leftbar__mid{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .bs-leftbar__iconbtn{
           width: 46px;
        height: 46px;
        border-radius: 999px;
        border: 1px solid var(--bs-leftbar-border);
        background: #3F51B5;
        color: #ffffff;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  }
  .bs-leftbar__iconbtn:hover{
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0,0,0,.10);
    border-color: rgba(0,0,0,.14);
  }

  .bs-leftbar__brand{
    position: relative;
    text-decoration: none;
    color: var(--bs-leftbar-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 6px 0;
  }

  .bs-leftbar__brandText{
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.05;
    transform: rotate(-90deg);
    transform-origin: center;
    display: inline-block;
    font-size: 18px;
  }

  .bs-leftbar__badge{
    position: absolute;
    right: 10px;
    top: 0px;
    font-size: 11px;
    line-height: 1;
    padding: 4px 7px;
    border-radius: 999px;
    border: 1px solid var(--bs-leftbar-border);
    background: #fff;
    color: rgba(11,15,20,.75);
  }

  .bs-leftbar__social{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
  }

  .bs-leftbar__soc{
    font-size: 13px;
    color: rgba(11,15,20,.70);
    text-decoration: none;
    transition: color .15s ease;
  }
  .bs-leftbar__soc:hover{
    color: rgba(11,15,20,1);
  }

  .bs-leftbar__subscribe{
    width: 46px;
    height: 110px;
    border-radius: 10px;
    border: 1px solid var(--bs-leftbar-border);
    background: #0b0f14;
    color: #fff;
    text-decoration: none;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: transform .15s ease, box-shadow .15s ease;
  }
  .bs-leftbar__subscribe:hover{
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(0,0,0,.18);
  }

  .bs-leftbar__subscribeText{
    display: inline-block;
    transform: rotate(-90deg);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .04em;
  }
}

/* Mobile: hide and remove padding */
@media (max-width: 991px) {
  .bs-leftbar{ display: none !important; }
  body{ padding-left: 0 !important; }
}





.bs-post-meta{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(11,15,20,.55);
  margin-bottom: 14px;
}
.bs-meta-item{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.bs-meta-item i{
  color: rgba(11,15,20,.45);
}

.bs-post-title{
  font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 24px;
}
.bs-post-title a{
  text-decoration: none;
  color: #0b0f14;
}
.bs-post-title a:hover{
  text-decoration: underline;
}

.bs-post-btn{
      margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, .12);
    color: #0b0f14;
    text-decoration: none;
    font-weight: 600;
    width: fit-content;
    transition: .25s ease;
    background: #fff;
    font-size: 14px;
}
.bs-post-btn:hover{
  transform: translateY(-1px);
      background: #3F51B5;
    color: white;
}
.bs-post-btn:hover .bs-post-btn-dot{
    border: 2px dotted rgb(255 255 255 / 35%);
}
.faq-single{
        background: #3F51B5;
    max-width: 1440px;
    margin-bottom: 40px;
    margin: 0 auto;
    /* background: #eef1f1; */
    border-radius: 48px;
        padding: 40px;
}
.home-text-block h3{
        font-size: 18px;
    margin-bottom: 15px;
    color: black;
    font-weight: 600;
        border-left: 5px solid #3F51B5;
    padding-left: 20px;
}

.faq-single h2{
    font-size: 24px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0;
    margin-bottom: 24px !important;
    display: block;
    color: white;
}
.faq-single p{
        color: rgba(255, 255, 255, .65);
    font-size: 14px;
    line-height: 1.6;
}
.cases-block.home-page{
    padding: 80px 0;
    max-width: 1440px;
    margin: 0 auto;
}

.bs-post-btn-dot{
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px dotted rgba(11,15,20,.35);
  display: inline-block;
}
.bs-blog .bs-post-card h3 a{
        font-size: 18px;
    font-weight: 600;
    line-height: 1.25;
    margin: 0 0 18px;
}

@media (max-width: 992px){
  .bs-blog{ padding: 70px 0; }
  .bs-blog-title{ font-size: 36px; }
  .bs-post-thumb img{ height: 220px; }
}
@media (max-width: 576px){
  .bs-blog-title{ font-size: 24px; }
  .bs-post-thumb{ margin: 14px; }
  .bs-post-thumb img{ height: 200px; }
  .bs-post-body{ padding: 4px 18px 18px; }
}
















/* =========================
   FOOTER (byShep) — full CSS
   ========================= */

.bs-footer{
  background: #0b0f14;
  padding: 70px 0 40px;
  color: #fff;
}

.bs-footer{
  position: relative;
  border-radius: 22px;
  padding: 56px 44px 26px;
  overflow: hidden;
  background: #0f1216;
  box-shadow: 0 20px 45px rgba(0,0,0,.35);
      position: relative;
    overflow: hidden;
}

/* glow image layer (ставь <figure class="bs-footer-glow">...</figure> первым внутри .bs-footer-box) */
.bs-footer-glow{
     pointer-events: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1635px;
    height: 1635px;
    z-index: 0;
    opacity: .95;
    filter: blur(0px);
    z-index: 1;
    width: 1635px;
    height: 1635px;
    top: -1320px;      /* сделай 8-18px если хочешь мягче */
}
.bs-footer-glow img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  mix-blend-mode: screen;  /* эффект свечения на темном */
  opacity: .9;
}

/* ensure content above glow */
.bs-footer-box > *:not(.bs-footer-glow){
  position: relative;
  z-index: 1;
}

/* brand + text */
.bs-footer-logo{
  display: inline-flex;
  margin-bottom: 16px;
}
.bs-footer-logo img{
  display: block;
  height: auto;
  max-width: 100%;
}

.bs-footer-text{
  color: rgba(255,255,255,.60);
  font-size: 14px;
  line-height: 1.7;
  max-width: 420px;
  margin: 0 0 18px;
}

/* titles + lists */
.bs-footer-title{
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
  color: rgba(255,255,255,.92);
}

.bs-footer-list{
  list-style: none;
  padding: 0;
  margin: 0;
}
.bs-footer-list li{
  padding: 7px 0;
}

.bs-footer-list a{
  color: rgba(255,255,255,.66);
  text-decoration: none;
  transition: color .2s ease, transform .2s ease, opacity .2s ease;
  display: inline-block;
  font-size: 14px;
}
.bs-footer-list a:hover{
  color: #fff;
  transform: translateX(2px);
  opacity: 1;
}

/* social */
.bs-footer-social{
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 8px;
}
.bs-footer-social a{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.75);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color .2s ease, transform .2s ease, border-color .2s ease, color .2s ease;
}
.bs-footer-social a:hover{
  color: #0b0f14;
  background: #c9f46a;
  border-color: rgba(201,244,106,.55);
  transform: translateY(-1px);
}

/* divider + bottom */
.bs-footer-divider{
  height: 1px;
  background: rgba(255,255,255,.10);
  margin: 38px 0 20px;
}

.bs-footer-copy{
  color: rgba(255,255,255,.62);
  font-size: 13px;
  line-height: 1.6;
}

.bs-footer-copy--right{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.bs-footer-ua{
  display: inline-block;
  border-radius: 6px;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* optional: tighter spacing between columns on large screens */
@media (min-width: 992px){
  .bs-footer .row > [class*="col-"]{
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* responsive */
@media (max-width: 992px){
  .bs-footer{ padding: 50px 0 30px; }
  .bs-footer-box{ padding: 40px 18px 22px; border-radius: 18px; }
  .bs-footer-copy--right{ justify-content: flex-start; }

  .bs-footer-glow{
    top: -460px;
    width: 1200px;
    height: 1200px;
    opacity: .85;
  }
}

@media (max-width: 576px){
  .bs-footer{ padding: 40px 0 24px; }
  .bs-footer-box{ padding: 34px 16px 20px; }
  .bs-footer-text{ max-width: none; }

  .bs-footer-glow{
    top: -760px;
        width: 980px;
        height: 980px;
        opacity: .8;
  }
}

/* reduce motion */
@media (prefers-reduced-motion: reduce){
  .bs-footer-list a,
  .bs-footer-social a{
    transition: none !important;
  }
}

.bs-footer-box .logo img{
    height: 70px;
    margin-bottom: 20px;
}







  /* =========================
   Single Post (Article) UI
   ========================= */

.bs-article{
  padding: 60px 0 60px;
}

.bs-article-wrap{
  margin: 0 auto;
}

/* Hero */
.bs-article-hero{
  padding: 10px 0 24px;
}

.bs-article-title{
 font-size: 32px;
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-weight: 600;
    color: #0b0f14;
    margin: 0 0 30px;
}

.bs-article-meta{
  display: flex;
  align-items: center;
  gap: 14px;
}

.bs-article-author{
  display: flex;
  align-items: center;
  gap: 12px;
}

.bs-avatar{
  border-radius: 999px;
  display: block;
}

.bs-author-info{
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bs-author-name{
  font-size: 14px;
  font-weight: 700;
  color: #0b0f14;
}

.bs-author-line{
  font-size: 13px;
  color: rgba(11,15,20,.55);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bs-meta-dot{
  opacity: .55;
}

/* Cover */
.bs-article-cover{
  margin: 22px 0 34px;
  border-radius: 26px;
  overflow: hidden;
  background: #e9ecef;
  box-shadow: 0 18px 40px rgba(11,15,20,.08);
}

.bs-article-cover-img{
  width: 100%;
  height: auto;
  display: block;
}

/* Content typography */
.bs-article-content{
      background: transparent;
    color: rgba(11, 15, 20, .78);
    font-size: 16px;
    line-height: 1.85;
    max-width: 1040px;
    margin: 0 auto;
}

.bs-article-content p{
  margin: 0 0 18px;
}

.bs-article-content h2,
.bs-article-content h3{
  color: #0b0f14;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 34px 0 14px;
  line-height: 1.2;
}

.bs-article-content h2{ font-size: 24px; }
.bs-article-content h3{ font-size: 20px; }

.bs-article-content ul,
.bs-article-content ol{
  margin: 0 0 18px 20px;
  padding: 0;
}

.bs-article-content li{
  margin: 8px 0;
}

.bs-article-content a{
  color: #3f51b5;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bs-article-content blockquote{
  margin: 26px 0;
  padding: 16px 18px;
  border-left: 3px solid rgba(63,81,181,.6);
  background: rgba(255,255,255,.75);
  border-radius: 16px;
  color: rgba(11,15,20,.75);
}

.bs-article-content img{
  max-width: 100%;
  height: auto;
  border-radius: 18px;
}

/* Responsive */
@media (max-width: 992px){
  .bs-article-title{ font-size: 44px; }
}

@media (max-width: 576px){
  .bs-article{ padding: 44px 0 70px; }
  .bs-article-title{ font-size: 34px; }
  .bs-article-cover{ border-radius: 18px; }
}
.bs-author-name a{
  color: #0b0f14;
  text-decoration: none;
}
.bs-author-name a:hover{
  text-decoration: underline;
}


.links-block .title h2{
    font-weight: 600;
    color: #000000;
    font-size: 32px;
    margin-bottom: 42px;
}

.links-block a.single-link{
        background: #f3f5f7;
    padding: 20px;
    width: 100%;
    display: block;
    border-radius: 28px;
    color: black;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
}
.links-block{
    padding: 40px 0 0
}


.bs-pagination .pagination{
  display:flex;
  gap:10px;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  margin:0;
}
.bs-pagination .page-numbers{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:44px;
  height:44px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.12);
  background:#fff;
  color:#0b0f14;
  text-decoration:none;
  font-weight:600;
  transition:.25s ease;
}
.bs-pagination .page-numbers:hover{
  background:#3F51B5;
  color:#fff;
  transform:translateY(-1px);
}
.bs-pagination .page-numbers.current{
  background:#0b0f14;
  color:#fff;
  border-color:#0b0f14;
}
.bs-pagination .page-numbers.dots{
  border:none;
  background:transparent;
  min-width:auto;
  padding:0 6px;
}

/* =========================
   Author Page
   ========================= */
.bs-author-page{
  padding: 64px 0 90px;
}

.bs-author-hero{
  margin: 0 auto 26px;
}

.bs-author-card{
  background: #fff;
  border-radius: 22px;
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: 0 18px 40px rgba(11,15,20,.06);
  padding: 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.bs-author-avatar-img{
  border-radius: 999px;
  display: block;
}

.bs-author-title{
  margin: 0 0 8px;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #0b0f14;
}

.bs-author-bio{
  color: rgba(11,15,20,.70);
  font-size: 15px;
  line-height: 1.75;
}

.bs-author-bio p{ margin: 0 0 10px; }

.bs-author-meta{
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 13px;
  color: rgba(11,15,20,.55);
}
.bs-author-link{
  color: #3f51b5;
  text-decoration: none;
}
.bs-author-link:hover{ text-decoration: underline; }

.bs-author-posts{
  margin: 0 auto;
}
.bs-author-posts-title{
  font-size: 22px;
  font-weight: 700;
  color: #0b0f14;
     margin: 32px 0 16px;
}

.bs-author-post-card{
  height: 100%;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: 0 18px 40px rgba(11,15,20,.06);
  display: flex;
  flex-direction: column;
}

.bs-author-post-thumb{
  display: block;
  margin: 16px;
  border-radius: 18px;
  overflow: hidden;
}
.bs-author-post-thumb img{
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.bs-author-post-card:hover .bs-author-post-thumb img{
  transform: scale(1.03);
}

.bs-author-post-body{
  padding: 2px 18px 18px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.bs-author-post-meta{
  font-size: 13px;
  color: rgba(11,15,20,.55);
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.bs-author-dot{ opacity: .6; }

.bs-author-post-title{
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 14px;
}
.bs-author-post-title a{
  color: #0b0f14;
  text-decoration: none;
}
.bs-author-post-title a:hover{ text-decoration: underline; }

.bs-author-post-btn{
  margin-top: auto;
  display: inline-flex;
  width: fit-content;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.12);
  text-decoration: none;
  color: #0b0f14;
  font-weight: 600;
  transition: .25s ease;
}
.bs-author-post-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(11,15,20,.10);
}

.bs-author-pagination{
  margin-top: 26px;
}
.bs-author-pagination .page-numbers{
  display: inline-flex;
  padding: 10px 14px;
  margin-right: 8px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  text-decoration: none;
  color: rgba(11,15,20,.75);
}
.bs-author-pagination .page-numbers.current{
  background: #0b0f14;
  color: #fff;
  border-color: rgba(11,15,20,.35);
}

@media (max-width: 768px){
  .bs-author-card{
    flex-direction: column;
    align-items: flex-start;
  }
  .bs-author-title{ font-size: 28px; }
}

















.cases-block{
       background: white;
    padding: 60px 0 60px;
}
.cases-block h2{
       font-weight: 600;
    color: #000000;
    font-size: 32px;
    margin-bottom: 42px;
}

.cases-block .single-case{
        background: #000000;
    padding: 20px;
    border-radius: 25px;
        min-height: 290px;
            margin-bottom: 35px;
}
.cases-block .single-case img{
    width: 50%;
    margin: 0 auto 30px;
    display: block;
    height: 180px;
    object-fit: contain;

}
.cases-block .single-case span{
    color: white;
    font-size: 20px;
        font-weight: 600;
    display: block;
}
.cases-block .single-case:hover{
        box-shadow: 0px 5px 23px 4px #0000001c;
    background: #3350b9 !important;
}

.cases-block .single-case:hover span{
    color: white;
}

.cases-block .single-case i{
  padding: 15px;
    display: block;
    width: fit-content;
    border-radius: 50%;
    text-decoration: none;
    color: #bff747;
    font-size: 28px;
}
.cases-block .single-case a{
        text-decoration: none;
}

.cases-block .single-case .case-name span{
    width: 75%;
}
.cases-block .single-case .case-name{
   display: flex
;
    align-items: center;
    justify-content: space-between;
}




/* =========================
   Contact section (byShep style)
   ========================= */

.contact-form{
  position: relative;
    padding: 90px 0;
    color: #fff;
    overflow: hidden;
    background: #121416;
    border-radius: 28px;
    padding: 60px;
}

/* лёгкое "свечение" сзади как в примере */
.contact-form:before{
  content:'';
  position:absolute;
  inset: -140px -140px -140px -140px;
  background:
    radial-gradient(600px 400px at 70% 30%, rgb(201 244 106 / 0%), transparent 60%), radial-gradient(700px 500px at 20% 70%, rgba(63, 81, 181, .20), transparent 60%), radial-gradient(600px 500px at 85% 85%, rgba(0, 255, 208, .10), transparent 60%);
  filter: blur(22px);
  opacity: .9;
  pointer-events:none;
  z-index: 0;
}
.contact-form-block .right-block p{
    margin-bottom: 0;
}

.contact-form .container-fluid,
.contact-form .row,
.contact-form .col-lg-6,
.contact-form .col-lg-5,
.contact-form .col-lg-1{
  position: relative;
  z-index: 1;
}

/* LEFT */
.contact-form .left-block .title span{
     font-size: 24px;
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: -0.03em;
    display: block;
    margin: 0 0 14px;
}
.footer-star{
    padding: 60px 0;
}
.footer__holder .footer__col a{
      font-size: 15px;
    font-weight: 600;
    margin-bottom: 14px;
    display: block;
    color: rgb(0 0 0 / 92%);
    text-decoration: none;
    margin-bottom: 5px;
}
.footer__col.footer__col--city{
     font-size: 15px;
    font-weight: 600;
    margin-bottom: 14px;
    display: block;
    color: rgb(0 0 0 / 92%);
    text-decoration: none;
    margin-bottom: 5px;
}
.byshep-rating{

}

.contact-form .left-block > p{
  max-width: 520px;
  color: rgba(255,255,255,.72);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 26px;
}
.right-block form input {
    background: no-repeat;
    border: 1px solid #ffffff1a;
    padding: 15px;
    width: 100%;
}
.wpcf7-form-control-wrap {
    position: relative;
}
.right-block form textarea {
    height: 200px;
    background: no-repeat;
    border: 1px solid #ffffff1a;
    padding: 15px;
    width: 100%;
}
.right-block form .wpcf7-form-control.wpcf7-submit {
    background: #c6f56f;
    color: #000000;
    font-weight: 500;
    margin-top: 32px;
    border-radius: 12px;
    width: 100%;
}
.contact-page{
    padding: 60px 0 0;
}
.contact-page h1{
        font-weight: 600;
    color: #000000;
    font-size: 32px;
    margin-bottom: 42px;
    margin-top: 0;
}

.footer__holder p ,.footer__holder  address{
    margin-bottom: 0;
}
.bread-block #breadcrumbs{
    background: #f3f5f7;
    border-radius: 48px;
    padding: 16px;
    margin: 20px 0 0;
}
.bread-block #breadcrumbs a{
        color: #3350b9;
    text-decoration: none;
     font-size: 14px;
}
.bread-block #breadcrumbs span{
    font-size: 14px;
}

/* cards grid */
.contact-form .contact-block{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

/* small cards */
.contact-form .single-block{
  border-radius: 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
  padding: 26px 22px;
  text-align: center;
  transition: .25s ease;
}

.contact-form .single-block:hover{
  transform: translateY(-2px);
  border-color: rgba(201,244,106,.28);
  box-shadow: 0 26px 70px rgba(0,0,0,.55);
}

.contact-form .single-block i{
  font-size: 34px;
  color: #c9f46a;
  display: inline-block;
  margin-bottom: 14px;
  filter: drop-shadow(0 10px 22px rgba(201,244,106,.20));
}

.contact-form .single-block p{
  margin: 0 0 10px;
  font-size: 14px;
  color: rgba(255,255,255,.60);
}

.contact-form .single-block a{
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}
.contact-form .single-block a:hover{
  color: #c9f46a;
}

/* address wide card */
.contact-form .single-map-block{
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
  padding: 22px 22px;
  transition: .25s ease;
}
.contact-form .single-map-block:hover{
  transform: translateY(-2px);
  border-color: rgba(201,244,106,.28);
  box-shadow: 0 26px 70px rgba(0,0,0,.55);
}

.contact-form .single-map-block .img-block{
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,244,106,.08);
  border: 1px solid rgba(201,244,106,.18);
}

.contact-form .single-map-block .img-block i{
  font-size: 24px;
  color: #c9f46a;
}

.contact-form .single-map-block .info-block p{
  margin: 0 0 6px;
  color: rgba(255,255,255,.60);
  font-size: 14px;
}

.contact-form .single-map-block .info-block span{
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

/* RIGHT (CF7 wrapper) */
.contact-form .right-block{
  border-radius: 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
 padding: 28px;
 }






.contact-form-block.gray-form .contact-form {
    position: relative;
    padding: 90px 0;
    color: #fff;
    overflow: hidden;
    background: #f3f5f7;
    border-radius: 28px;
    padding: 60px;
}
.contact-form-block.gray-form .contact-form .right-block{
        background: rgb(255 255 255);
    border: 1px solid rgba(255, 255, 255, .10);
}
.contact-form-block.gray-form .contact-form .single-block i{
        color: #3350b9;
}
.contact-form-block.gray-form .contact-form .single-block p{
    color: rgb(0 0 0 / 60%);
}
.contact-form-block.gray-form .contact-form .single-block a{
    color: #000000;
}
.contact-form-block.gray-form .contact-form:before{
        background: inherit;
}
.contact-form-block.gray-form .right-block form input {
    background: no-repeat;
    border: 1px solid #0000001a;
    padding: 15px;
    width: 100%;
        font-family: "Montserrat", sans-serif;
}

.contact-form-block.gray-form .contact-form .single-map-block .info-block span {
    display: block;
    color: #000000;
    font-size: 16px;
    font-weight: 600;
}
.contact-form-block.gray-form .contact-form .single-map-block .info-block p {
    margin: 0 0 6px;
    color: rgb(0 0 0 / 60%);
    font-size: 14px;
}
.contact-form-block.gray-form .contact-form .single-map-block .img-block {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3350b914;
    border: 1px solid #3350b9;
}
.contact-form-block.gray-form .contact-form .single-map-block .img-block i {
    font-size: 24px;
    color: #3350b9;
}
.contact-form-block.gray-form .contact-form .single-block {
    border-radius: 20px;
    background: rgb(255 255 255 / 4%);
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 18px 50px rgb(201 201 201 / 45%);
    padding: 26px 22px;
    text-align: center;
    transition: .25s ease;
    border: 1px solid rgba(15, 23, 42, .06);
    box-shadow: 0 18px 40px rgba(11, 15, 20, .06);
}
.contact-form-block.gray-form .contact-form .single-map-block {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .04);

    padding: 22px 22px;
    transition: .25s ease;
    border: 1px solid rgba(15, 23, 42, .06);
    box-shadow: 0 18px 40px rgba(11, 15, 20, .06);
}
.contact-form-block.gray-form .contact-form .left-block .title span {
    font-size: 24px;
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: -0.03em;
    display: block;
    margin: 0 0 14px;
    color: black;
}
.contact-form-block.gray-form .contact-form .left-block > p {
    max-width: 520px;
    color: rgb(0 0 0 / 72%);
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 26px;
}
.contact-form-block.gray-form .right-block form .wpcf7-form-control.wpcf7-submit{
        background: #3350b9;
        color: white;
}





@media (max-width: 991.98px){

  /* 1) игнорируем колонку с меню */
  .main-head .row.ai > .col-lg-6{
    display: none !important;
  }

  /* 2) скрываем кнопку справа */
  .main-head .btn-block{
    display: none !important;
  }

  /* 3) правую колонку выравниваем вправо, оставляем бургер */
  .main-head .col-lg-3.col-6.ae{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
  }

  .main-head .menu-left{
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    cursor: pointer;
  }
}

/* Desktop: бургер можно скрыть */
@media (min-width: 992px){

}

@media (max-width: 768px){
  .bs-offcanvas{
    width: 86vw;
    max-width: 420px;
  }
  .hero-bg{
          margin: 24px 12px;
  }
  .hero-bg .banner-content h1{
          font-size: 24px;
  }
  .hero-bg .container{
      padding: 80px 0;
  }
    .howit-card__title{
            font-size: 20px;
    }
    .cases-block{
        padding: 60px 12px;
    }
    .cases-block .single-case img{
        height: 135px;
            margin: 0 auto 12px;
    }
    .cases-block .single-case{
        min-height: 250px;
    }
    .cases-block .single-case span{
            font-size: 18px;
    }

}












/* =========================
   Services block (Bootstrap container)
   ========================= */
.bs-services{
  padding: 60px 0 80px;
}

.bs-services-pill{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:#f1f2f3;
  color:#2b2b2b;
  font-size:14px;
  line-height:1;
  font-weight:600;
}

.bs-services-head{
  max-width: 860px;
  margin: 0 auto;
}

.bs-services-title{
  font-size: 54px;
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: #0b0f14;
  margin: 0;
}

.bs-services-subtitle{
  margin: 14px auto 0;
  max-width: 760px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(11,15,20,.55);
}

/* card */
.bs-service-card{
  background:#fff;
  border-radius: 22px;
  padding: 26px 26px 24px;
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: 0 18px 50px rgba(11,15,20,.06);
  transition: .25s ease;
  height: 100%;

  position: relative;
  height: 100%;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, .06);
    box-shadow: 0 18px 40px rgba(11, 15, 20, .06);
    display: flex;
    flex-direction: column;
}

.bs-service-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 28px 70px rgba(11,15,20,.10);
  border-color: rgba(63,81,181,.20);
}

.bs-service-tags{
  display:flex;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.bs-service-tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f2f4f7;
  color: rgba(11,15,20,.55);
  font-size: 13px;
  line-height: 1;
  border: 1px solid rgba(15,23,42,.06);
}

.bs-service-title{
  font-size: 20px;
    line-height: 1.15;
    font-weight: 600;
    color: #0b0f14;
    margin: 0 0 10px;
}


.bs-service-text{
  font-size: 15px;
    line-height: 1.7;
    color: rgba(11, 15, 20, .55);
    margin: 0 0 18px;
    min-height: 130px;
}

/* button like screenshot */
.bs-service-btn{


  margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, .12);
    color: #0b0f14;
    text-decoration: none;
    font-weight: 600;
    width: fit-content;
    transition: .25s ease;
    background: #fff;
    font-size: 14px;
}

.bs-services .bs-service-cta-ic{
        display: flex;
    align-items: baseline;
    color: #ffffff;
    margin-top: 30px;
    background: #3350b9;
    padding: 8px 16px;
    border-radius: 16px;
    width: fit-content;
    font-weight: 600;
    border: 2px solid #3350b9;
        font-size: 14px;
}
.bs-services .bs-service-cta-ic:hover{
         background: #c6f56f;
    color: #000000;
    border: 2px solid #c6f56f;
}


.bs-service-card .title-service{
    display: flex;
    margin-bottom: 24px;
    gap: 24px;
    justify-content: space-between;
}
.bs-service-card .title-service i{
        color: #c6f56f;
    font-size: 40px;
}

.bs-service-btn:hover{
  transform: translateY(-1px);
  border-color: rgba(63,81,181,.28);
  box-shadow: 0 12px 30px rgba(11,15,20,.08);
}
.bs-services .bs-service-cta-ic i{
        padding: 15px;
    display: block;
    width: fit-content;
    border-radius: 50%;
    text-decoration: none;
    color: #3350b9;
    font-size: 28px;
}
.bs-services  a{
    text-decoration: none;
}

.bs-service-btn-arrow{
  display:inline-block;
  transition: transform .2s ease;
}

.bs-service-btn:hover .bs-service-btn-arrow{
  transform: translateX(2px);
}

/* bottom cases link */
.bs-services-cases-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #0b0f14;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: .2s ease;
}

.bs-services h1{
        font-weight: 600;
    color: #000000;
    font-size: 30px;
    margin-bottom: 42px;
}

.bs-services-cases-link:hover{
  opacity: .92;
  transform: translateY(-1px);
  color:#fff;
}

/* responsive */
@media (max-width: 992px){
  .bs-services{ padding: 70px 0; }
  .bs-services-title{ font-size: 40px; }
}

@media (max-width: 576px){
  .bs-services-title{ font-size: 32px; }
  .bs-service-card{ padding: 22px 20px; }
}


.single-service-block{
    padding: 60px 0;
}

.single-service-block h1{
          font-weight: 600;
    color: #000000;
    font-size: 30px;
    margin-bottom: 42px;
    line-height: 1.02;
    letter-spacing: -0.03em;
}
.single-service-block p{
    font-size: 15px;
    line-height: 1.7;
    color: rgb(11 15 20);
    margin: 0 0 18px;
}
.single-service-block .img-block img{
        border-radius: 36px;
    height: 400px;
    width: 85%;
    object-fit: cover;
    object-position: top;
    float: inline-end;
}




.contact-form-block.gray-form .wpcf7-response-output{
        color: black;
    font-size: 14px;
        margin-top: 0;
}
.wpcf7-not-valid-tip{
    font-size: 14px;
    margin-top: 5px;
}





.bs-pricing-table{
  padding: 70px 0;
}

.bs-pricing-table__title{
       text-align: center;
    font-size: 24px;
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: -0.03em;
    display: block;
    margin: 0 auto 32px;
    color: black;
    max-width: 720px;
}

@media (max-width: 576px){
  .bs-pricing-table__title{ font-size: 26px; }
}

/* карточка как на скрине (градиентная рамка) */
.bs-pricing-table__card{
  border-radius: 28px;
  padding: 14px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    radial-gradient(140% 120% at 10% 110%, rgba(168,85,247,.55) 0%, rgba(34,211,238,.35) 35%, rgba(99,102,241,.30) 70%, rgba(255,255,255,0) 100%) border-box;
  border: 2px solid transparent;
  box-shadow: 0 22px 55px rgba(11,15,20,.10);
  max-width: 920px;
    margin: 0 auto;
}

/* горизонтальный скролл на мобиле */
.bs-pricing-table__scroll{
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* таблица */
.bs-table{
  width: 100%;
  min-width: 760px; /* чтобы на мобиле был скролл */
  border-collapse: separate;
  border-spacing: 0 12px; /* "строки-карточки" */
}

.bs-table thead th{
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  color: rgba(11,15,20,.55);
  padding: 0 12px 6px;
}

/* строка как отдельная мини-карточка */
.bs-table tbody tr{
  background: #fff;
  box-shadow: 0 14px 34px rgba(11,15,20,.06);
}

.bs-table tbody td{
  padding: 16px 12px;
  vertical-align: middle;
  font-size: 14px;
  color: rgba(11,15,20,.78);
  border-top: 1px solid rgba(15,23,42,.06);
  border-bottom: 1px solid rgba(15,23,42,.06);
}

.bs-table tbody tr td:first-child{
  border-left: 1px solid rgba(15,23,42,.06);
  border-top-left-radius: 18px;
  border-bottom-left-radius: 18px;
      font-weight: 600;
    color: black;
}

.bs-table tbody tr td:last-child{
  border-right: 1px solid rgba(15,23,42,.06);
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
}

/* ссылки */
.bs-table__link{
  color: #0b0f14;
  text-decoration: none;
  font-weight: 600;
}

.bs-table__link:hover{
  text-decoration: underline;
}

/* цена жирнее */
.bs-table__price{
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #0b0f14;
}

/* CTA как на скрине */
.bs-table__cta-cell{
  width: 1%;
  white-space: nowrap;
  text-align: right;
}

.bs-table__cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: #0b0f14;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .01em;
  transition: transform .18s ease, opacity .18s ease;
}

.bs-table__cta:hover{
  opacity: .92;
  transform: translateY(-1px);
  color: #fff;
}

/* мобильная версия: превращаем строки в "карточки" без горизонтального скролла */
@media (max-width: 768px){
  .bs-table{ min-width: 0; border-spacing: 0; }
  .bs-table thead{ display: none; }

  .bs-table tbody tr{
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
    margin-bottom: 14px;
    border-radius: 22px;
    border: 1px solid rgba(15,23,42,.06);
  }

  .bs-table tbody td{
    border: none;
    padding: 0;
  }

  .bs-table tbody tr td:first-child,
  .bs-table tbody tr td:last-child{
    border-radius: 0;
    border: none;
  }

  .bs-table tbody td:before{
    content: attr(data-label);
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: rgba(11,15,20,.55);
    margin-bottom: 4px;
  }

  .bs-table__cta-cell{
    text-align: left;
    width: auto;
  }
}
