:root{
  --bg: #071a33;
  --bg-2: #0a2142;
  --accent: #2f6bff;
  --accent-2: #4f8cff;
  --text: #ffffff;
  --muted: rgba(255,255,255,.78);
  --line: rgba(255,255,255,.12);
  --card: rgba(255,255,255,.08);
  --shadow: 0 18px 60px rgba(0,0,0,.25);
  --radius: 18px;
  --container: 1300px;
}

*{ box-sizing: border-box; }
html, body{
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: #f5f7fb;
  color: #111;
  /*font-size: 17px;
  line-height: 1.6;*/

}
a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display: block; }

.container{
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.top-hero{
  position: relative;
  overflow: hidden;
  background:
	radial-gradient(circle at top right, rgba(79,140,255,.22), transparent 35%),
	radial-gradient(circle at left center, rgba(47,107,255,.20), transparent 30%),
	linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  color: var(--text);
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
  /*box-shadow: var(--shadow);*/
}

.top-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(135deg, rgba(255,255,255,.04), transparent 35%);
  pointer-events:none;
}

/* ===== DESKTOP HEADER ===== */
.header{
  position: relative;
  z-index: 20;
  padding: 18px 0 10px;
}

.header__row{
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 56px;
}

.logo{
  justify-self: start;
}

.nav{
  justify-self: center;
}

.logo img{
  width: 180px;
  height: 39px;
  object-fit: contain;
}

.nav{
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.nav__item{
  position: relative;
}

.nav__link,
.nav__toggle{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  color: rgba(255,255,255,.95);
  font-weight: 600;
  font-size: 15px;
  transition: .2s ease;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}

.nav__link:hover,
.nav__toggle:hover,
.nav__item.active > .nav__toggle{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.10);
}

.nav__caret{
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255,255,255,.8);
  border-bottom: 2px solid rgba(255,255,255,.8);
  transform: rotate(45deg);
  margin-top: -4px;
}

.dropdown{
  position: absolute;
  top: calc(100% + 0px);
  left: 50%;
  transform: translateX(-50%);
  width: min(860px, calc(100vw - 32px));
  background: rgba(9, 24, 48, .96);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  /*box-shadow: 0 30px 80px rgba(0,0,0,.35);*/
  padding: 20px;
  display: none;
  z-index: 999;
  backdrop-filter: blur(16px);
}

.nav__item:hover .dropdown,
.nav__item:focus-within .dropdown,
.nav__item.active .dropdown{
  display: block;
}

.dropdown::before{
  content:"";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.dropdown__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.dropdown__col{
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
}

.dropdown__title{
  font-size: 14px;
  font-weight: 700;
  color: #b9d1ff;
  margin-bottom: 12px;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.dropdown__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.dropdown__list a{
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(255,255,255,.92);
  transition: .2s ease;
  border: 1px solid transparent;
}

.dropdown__list a:hover{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.08);
  transform: translateX(3px);
}

/* ===== HERO ===== */
.hero{
  position: relative;
  z-index: 2;
  padding: 34px 0 70px;
}

.hero__grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 48px;
  min-height: 520px;
}

.hero__eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d7e4ff;
  font-size: 17px;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 700;
}

.hero__eyebrow::before{
  content:"";
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-2), transparent);
  border-radius: 999px;
}

.hero h1{
  margin: 0 0 18px;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.42;
  letter-spacing: -.03em;
  width: 100%;
}

.hero__text{
  max-width: 620px;
  font-size: 20px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 28px;
}
.hero__text_description{

  font-size: 20px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 28px;
}
.hero__content p {

  font-size: 20px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 28px;	
}

.hero__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  transition: .2s ease;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary{
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 10px 24px rgba(47,107,255,.35);
}

.btn--primary:hover{
  transform: translateY(-2px);
}

.btn--ghost{
  background: rgba(255,255,255,.07);
  color: #fff;
  border-color: rgba(255,255,255,.12);
}

.btn--ghost:hover{
  background: rgba(255,255,255,.11);
  transform: translateY(-2px);
}

.hero__media{
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__image-wrap{
  width: min(450px, 100%);
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 20px 60px rgba(0,0,0,.22);
  overflow: hidden;
  position: relative;
}

.hero__image-wrap::after{
  content:"";
  position:absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.12));
  pointer-events:none;
}

.hero__image{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== MOBILE ===== */
.mobile-header{
  display: none;
  position: relative;
  z-index: 5;
  padding: 16px 0 8px;
}

.mobile-header__row{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
}

.burger{
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
}

.burger svg{
  width: 24px;
  height: 24px;
}

.mobile-panel{
  position: fixed;
  top: 0;
  left: 0;
  width: min(86vw, 340px);
  height: 100vh;
  background: rgba(8, 20, 39, .98);
  border-right: 1px solid rgba(255,255,255,.10);
  transform: translateX(-105%);
  transition: transform .25s ease;
  z-index: 999;
  padding: 18px;
  box-shadow: 20px 0 50px rgba(0,0,0,.35);
  backdrop-filter: blur(14px);
  overflow-y: auto;
}

.mobile-panel.open{
  transform: translateX(0);
}

.mobile-panel__top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.mobile-close{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
}

.mobile-nav{
  display: grid;
  gap: 8px;
}

.mobile-nav a,
.mobile-nav button{
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  color: #fff;
  display:flex;
  align-items:center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
}

.mobile-submenu{
  display: none;
  padding-left: 12px;
  margin-top: 8px;
  gap: 8px;
}

.mobile-submenu.open{
  display: grid;
}

.mobile-submenu a{
  background: rgba(255,255,255,.03);
  min-height: 46px;
  font-weight: 500;
}

.overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.42);
  opacity: 0;
  pointer-events: none;
  transition: .2s ease;
  z-index: 998;
}

.overlay.show{
  opacity: 1;
  pointer-events: auto;
}

.teasers{
  padding: 100px 0 50px;
}
.static {
  padding: 50px 0 50px;
}

.teasers__grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.teaser-card{
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(15, 35, 80, 0.08);
  min-height: 165px;
}

.teaser-card__icon{
  flex: 0 0 45px;
  width: 45px;
  height: 45px;
}

.teaser-card__icon img{
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.teaser-card__content{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.teaser-card__content h3{
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: #10203a;
}

.teaser-card__content p{
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: #5c6b84;
}

.pain{
  padding: 80px 0;
  background: #f6f8fc;
}

.pain__grid{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: start;
}

.pain__eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.pain__eyebrow span{
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #ef3b3b;
}

.pain__arrow{
  width: 39px;
  height: 12px;
  object-fit: contain;
}

.pain h2{
  margin: 0 0 16px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: -.03em;
  color: #10203a;
  max-width: 100%;
}

.pain__subtitle{
  margin: 0 0 28px;
  font-size: 17px;
  line-height: 1.65;
  color: #5b6780;
  max-width: 720px;
}

.pain__list{
  display: grid;
  gap: 16px;
}

.pain-item{
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border-radius: 22px;
  padding: 22px 22px 22px 24px;
  box-shadow: 0 10px 28px rgba(16, 32, 58, 0.08);
}
.pain-item__text{
  flex: 1 1 auto;
}

.pain-item__text{
  flex: 1 1 auto;
}

.pain-item__text h3{
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.25;
  color: #10203a;
  font-weight: 700;
}

.pain-item__text p{
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: #5b6780;
}

.pain-item__icon{
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  color: #ef3b3b;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.pain-item__icon svg{
  width: 48px;
  height: 48px;
  display: block;
}

.pain__media{
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.pain__image{
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(16, 32, 58, 0.16);
  object-fit: cover;
}

.we-do{
  padding: 100px 0;
  background: #fff;
}

.section-head{
  margin-bottom: 32px;
}

.section-head--center{
  text-align: center;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 40px;
}

.section-head__eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.section-head__eyebrow span{
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #ef3b3b;
}

.section-head__arrow{
  width: 39px;
  height: 12px;
  object-fit: contain;
}

.section-head h2{
  margin: 0 0 14px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -.03em;
  color: #10203a;
}

.section-head p{
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
  color: #5b6780;
}

.we-do__grid{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: stretch;
}

.we-do__stack{
  display: grid;
  gap: 18px;
}

.we-do-card{
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(16, 32, 58, 0.08);
  display: flex;
  flex-direction: column;
}

.we-do-card h3{
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.22;
  letter-spacing: -.02em;
  color: #10203a;
}

.we-do-card p{
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: #5b6780;
}

.we-do-card--big{
  background: #f3f8ff;
}

.we-do-card--beige{
  background: #fbf7ef;
}

.we-do-card--green{
  background: #f2fbf2;
}

.we-do-card__image{
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 22px;
}

.we-do-card__image img{
  width: 350px;
  height: 350px;
  /*object-fit: contain;*/
  border-radius: 20px;
}
.we-do-card__image_img {
  border-radius: 20px;
}
.we-do-card__image_plane {
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 22px;
}
.we-do-card__image_plane img{
  width: 196px;
  height: 118px;
  object-fit: contain;
}

/* Чтобы правая колонка делилась по высоте красиво */
.we-do__stack .we-do-card{
  min-height: calc((100% - 18px) / 2);
}
.features{
  padding: 80px 0;
  background: #f7f9fd;
}

.features__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card{
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 10px 26px rgba(16, 32, 58, 0.08);
  transition: box-shadow .25s ease, transform .25s ease;
  min-height: 250px;
}

.feature-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(16, 32, 58, 0.14);
}

.feature-card__icon{
  margin-bottom: 16px;
  color: #ef3d3d;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.feature-card h3{
  margin: 0 0 12px;
  font-size: 19px;
  line-height: 1.25;
  color: #10203a;
  font-weight: 700;
}

.feature-card p{
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: #5b6780;
}

.features__note{
  margin-top: 28px;
  text-align: center;
  color: #ef3d3d;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.cases{
  padding: 80px 0;
  background: #fff;
}

.cases__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 8px;
}

.case-card{
  padding: 28px 28px 24px;
  border-right: 1px solid rgba(16, 32, 58, 0.12);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.case-card:last-child{
  border-right: none;
}

.case-card__top{
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.case-card__icon{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 46px;
}

.case-card__icon svg{
  width: 26px;
  height: 26px;
  display: block;
}

.case-card__icon--blue{
  color: #2f6bff;
  background: rgba(47,107,255,.10);
}

.case-card__icon--green{
  color: #18a957;
  background: rgba(24,169,87,.10);
}

.case-card__icon--orange{
  color: #f08b2f;
  background: rgba(240,139,47,.12);
}

.case-card__meta h3{
  margin: 0 0 6px;
  font-size: 20px;
  line-height: 1.2;
  color: #10203a;
  font-weight: 800;
}

.case-card__industry{
  font-size: 14px;
  color: #5b6780;
  line-height: 1.45;
}

.case-card__block{
  margin-bottom: 18px;
}

.case-card__label{
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f4f7fb;
  color: #ef3d3d;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.case-card__block p{
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: #5b6780;
}

.case-card__results{
  margin: auto 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.case-card__results li{
  position: relative;
  padding-left: 18px;
  font-size: 17px;
  line-height: 1.55;
  color: #10203a;
  font-weight: 600;
}

.case-card__results li::before{
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef3d3d;
}

/* адаптив */
@media (max-width: 1024px){
  .cases__grid{
    grid-template-columns: 1fr;
  }

  .case-card{
    border-right: none;
    border-bottom: 1px solid rgba(16, 32, 58, 0.12);
  }

  .case-card:last-child{
    border-bottom: none;
  }
}

.steps{
  padding: 80px 0;
  background: #fff;
}

.steps__grid{
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 28px;
  align-items: start;
}

.steps__media{
  position: sticky;
  top: 24px;
}

.steps__image{
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(16, 32, 58, 0.14);
  object-fit: cover;
}

.steps__list{
  display: grid;
  gap: 16px;
}

.step-item{
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #f8fafc;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 10px 26px rgba(16, 32, 58, 0.06);
}

.step-item__icon{
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef3d3d;
  background: rgba(239,61,61,.08);
}

.step-item__icon svg{
  width: 24px;
  height: 24px;
}

.step-item__content{
  flex: 1;
}

.step-item__eyebrow{
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #ef3d3d;
  margin-bottom: 8px;
}

.step-item h3{
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.22;
  color: #10203a;
  font-weight: 800;
}

.step-item p{
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: #5b6780;
}

.step-item__link{
  display: inline-flex;
  margin-top: 14px;
  font-weight: 700;
  color: #2f6bff;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: .2s ease;
}

.step-item__link:hover{
  color: #ef3d3d;
}

.advantages{
  padding: 80px 0;
  background: #f7f9fd;
}

.advantages__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.advantages__col{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.adv-card{
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 10px 26px rgba(16, 32, 58, 0.08);
  transition: box-shadow .25s ease, transform .25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.adv-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(16, 32, 58, 0.14);
}

.adv-card--tall{
  min-height: 100%;
}

.adv-card__icon{
  margin-bottom: 16px;
  color: #ef3d3d;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.adv-card__icon svg{
  width: 26px;
  height: 26px;
}

.adv-card h3{
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.28;
  color: #10203a;
  font-weight: 700;
}

.adv-card p{
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: #5b6780;
}

/* Сделать колонки визуально одинаковыми по высоте */
.advantages__col{
  min-height: 100%;
}
.adv-feature-sub{
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(16, 32, 58, 0.10);
}

.adv-feature-sub__item h4{
  margin: 0 0 6px;
  font-size: 17px;
  line-height: 1.25;
  color: #10203a;
  font-weight: 700;
}

.adv-feature-sub__item p{
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #5b6780;
}

.compare{
  padding: 80px 0;
  background: #fff;
}

.compare__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.compare-card{
  position: relative;
  background: #fff;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 12px 34px rgba(16, 32, 58, 0.08);
  border: 1px solid rgba(16, 32, 58, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}

.compare-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(16, 32, 58, 0.14);
}

.compare-card--featured{
  background: linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
  border-color: rgba(47,107,255,.18);
}

.compare-card__badge{
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: rgba(47,107,255,.10);
  color: #2f6bff;
  margin-bottom: 14px;
}

.compare-card__badge--gray{
  background: rgba(16, 32, 58, 0.06);
  color: #10203a;
}

.compare-card h3{
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.15;
  color: #10203a;
  font-weight: 700;
}

.compare-card__price{
  font-size: 18px;
  line-height: 1.35;
  color: #ef3d3d;
  font-weight: 700;
  margin-bottom: 18px;
}

.compare-card__price span{
  color: #5b6780;
  font-weight: 600;
  font-size: 14px;
}

.compare-card__list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.compare-card__list li{
  padding: 12px 0;
  border-bottom: 1px solid rgba(16, 32, 58, 0.08);
  font-size: 16px;
  line-height: 1.55;
  color: #5b6780;
}

.compare-card__list li:last-child{
  border-bottom: none;
}

.compare-card__list span{
  color: #10203a;
  font-weight: 700;
}

.compare-card__total{
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(16, 32, 58, 0.10);
}

.compare-card__total-label{
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #5b6780;
  margin-bottom: 8px;
}

.compare-card__total-value{
  font-size: 30px;
  line-height: 1.1;
  font-weight: 700;
  color: #10203a;
  margin-bottom: 6px;
}

.compare-card__note{
  font-size: 13px;
  line-height: 1.45;
  color: #8a96aa;
}

/* адаптив */
@media (max-width: 1024px){
  .compare__grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px){
  .compare{
    padding: 56px 0;
  }

  .compare-card{
    padding: 22px;
    border-radius: 22px;
  }

  .compare-card h3{
    font-size: 20px;
  }

  .compare-card__total-value{
    font-size: 24px;
  }
}
.comparison-note{
  padding: 10px 0 80px;
  background: #fff;
}

.comparison-note__box{
  max-width: 980px;
  margin: 0 auto;
  background: #eef5ff;
  border: 1px solid rgba(47,107,255,.10);
  border-radius: 28px;
  padding: 30px 34px;
  box-shadow: 0 12px 34px rgba(16, 32, 58, 0.06);
}

.comparison-note__box h3{
  margin: 0 0 14px;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.15;
  color: #10203a;
  font-weight: 700;
}

.comparison-note__box p{
  margin: 0 0 12px;
  font-size: 17px;
  line-height: 1.7;
  color: #4f5d75;
}

.comparison-note__box ul{
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.comparison-note__box li{
  position: relative;
  padding-left: 22px;
  font-size: 16px;
  line-height: 1.65;
  color: #10203a;
  font-weight: 600;
}

.comparison-note__box li::before{
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef3d3d;
}

.comparison-note__strong{
  margin-top: 8px;
  font-weight: 700;
  color: #10203a;
}

.comparison-note__footer{
  max-width: 980px;
  margin: 16px auto 0;
  font-size: 14px;
  line-height: 1.6;
  color: #7b879b;
  text-align: center;
}

/* адаптив */
@media (max-width: 640px){
  .comparison-note{
    padding-bottom: 56px;
  }

  .comparison-note__box{
    padding: 22px;
    border-radius: 22px;
  }

  .comparison-note__box h3{
    font-size: 22px;
  }

  .comparison-note__box p,
  .comparison-note__box li{
    font-size: 15px;
  }
}
.reviews{
  padding: 80px 0;
  background: #f7f9fd;
}

.reviews__grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.review-card{
  background: #fff;
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 10px 26px rgba(16, 32, 58, 0.08);
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}

.review-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(16, 32, 58, 0.14);
}

.review-card__quote{
  font-size: 54px;
  line-height: 1;
  color: #ef3d3d;
  font-weight: 900;
  margin-bottom: 8px;
}

.review-card__text{
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.7;
  color: #4f5d75;
}

.review-card__author{
  font-size: 15px;
  font-weight: 800;
  color: #10203a;
}

.review-card__author span{
  display: block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #7b879b;
}

.demo{
  padding: 70px 0;
  background: #f7f9fd;
}

.demo__box{
  max-width: 980px;
  margin: 0 auto;
  padding: 34px 34px 30px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(79,140,255,.14), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f4f8ff 100%);
  border: 1px solid rgba(47,107,255,.10);
  box-shadow: 0 14px 36px rgba(16, 32, 58, 0.08);
}

.demo__eyebrow{
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(239,61,61,.10);
  color: #ef3d3d;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 14px;
}

.demo h2{
  margin: 0 0 16px;
  font-size: clamp(22px, 2.4vw, 36px);
  line-height: 1.25;
  color: #10203a;
  font-weight: 700;
  width: 100%;
}

.demo__link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2f6bff, #4f8cff);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(47,107,255,.28);
  transition: .22s ease;
  margin-bottom: 18px;
}

.demo__link:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(47,107,255,.34);
}

.demo__note{
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #5b6780;
  max-width: 900px;
}
.demo__note_t{
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #5b6780;
  max-width: 900px;
  padding-bottom:20px;
}

.story .text img{
  max-width: 90%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.cookie-banner{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 16px;
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .25s ease, transform .25s ease;
}

.cookie-banner.show{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(79,140,255,.16), transparent 30%),
    linear-gradient(135deg, #0b2d66 0%, #123a86 100%);
  color: #fff;
  box-shadow: 0 18px 50px rgba(13, 34, 77, 0.28);
  border: 1px solid rgba(255,255,255,.10);
}

.cookie-banner__text{
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.88);
  flex: 1;
}

.cookie-banner__btn{
  flex: 0 0 auto;
  min-height: 46px;
  padding: 0 18px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #ef3d3d, #ff6161);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(239,61,61,.28);
  transition: .22s ease;
  white-space: nowrap;
}

.cookie-banner__btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(239,61,61,.34);
}

@media (max-width: 640px){
  .cookie-banner{
    bottom: 12px;
    padding: 0 12px;
  }

  .cookie-banner__inner{
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 18px;
  }

  .cookie-banner__text{
    font-size: 13px;
  }

  .cookie-banner__btn{
    width: 100%;
  }
}
.solutions{
  padding: 80px 0;
  background: #fff;
}

.solutions__head{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.solutions__head-text{
  max-width: 820px;
  padding-bottom: 40px;
}

.section-head__eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.section-head__eyebrow span{
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #ef3d3d;
}

.section-head__arrow{
  width: 39px;
  height: 12px;
  object-fit: contain;
}

.solutions__head h2{
  margin: 0 0 14px;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.08;
  letter-spacing: -.03em;
  color: #10203a;
  text-align: left;
}

.solutions__head p{
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: #5b6780;
  text-align: left;
}

.solutions__more{
  flex: 0 0 auto;
  margin-top: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 14px;
  background: rgba(16, 32, 58, 0.05);
  border: 1px solid rgba(16, 32, 58, 0.08);
  color: #10203a;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: .22s ease;
  white-space: nowrap;
}

.solutions__more:hover{
  background: rgba(47,107,255,.08);
  border-color: rgba(47,107,255,.14);
  color: #2f6bff;
  transform: translateY(-2px);
}

.solutions__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.solution-card{
  background: #f8fafc;
  border: 1px solid rgba(16, 32, 58, 0.08);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(16, 32, 58, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  min-height: 100%;
}

.solution-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(16, 32, 58, 0.12);
}

.solution-card__icon{
  width: 42px;
  height: 42px;
  color: #ef3d3d;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.solution-card__icon svg{
  width: 42px;
  height: 42px;
}

.solution-card h3{
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.25;
  color: #10203a;
  font-weight: 700;
}

.solution-card p{
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: #5b6780;
}

.solution-card__link{
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 17px;
  font-weight: 700;
  color: #2f6bff;
  text-decoration: none;
  transition: .2s ease;
}

.solution-card__link:hover{
  color: #ef3d3d;
}

.solution-card__link span{
  transition: transform .2s ease;
}

.solution-card__link:hover span{
  transform: translateX(3px);
}

/* адаптив */
@media (max-width: 1024px){
  .solutions__head{
    flex-direction: column;
  }

  .solutions__more{
    margin-top: 0;
  }

  .solutions__grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px){
  .solutions{
    padding: 56px 0;
  }

  .solutions__head{
    margin-bottom: 22px;
  }

  .solutions__grid{
    grid-template-columns: 1fr;
  }

  .solution-card{
    padding: 20px;
    border-radius: 20px;
  }

  .solution-card h3{
    font-size: 17px;
  }

  .solutions__head h2{
    font-size: 26px;
  }

  .solutions__head p{
    font-size: 15px;
  }
}

/* адаптив */
@media (max-width: 640px){
  .demo{
    padding: 56px 0;
  }

  .demo__box{
    padding: 22px;
    border-radius: 22px;
  }

  .demo h2{
    font-size: 20px;
    max-width: 100%;
  }

  .demo__link{
    width: 100%;
  }
}


/* Адаптив */
@media (max-width: 900px){
  .reviews__grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px){
  .reviews{
    padding: 56px 0;
  }

  .review-card{
    padding: 20px;
    border-radius: 20px;
  }

  .review-card__quote{
    font-size: 46px;
  }

  .review-card__text{
    font-size: 14px;
  }
}
.faq{
  padding: 80px 0;
  background: #fff;
}

.faq__grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: start;
}

.faq__list{
  display: grid;
  gap: 14px;
}

.faq-item{
  background: #f8fafc;
  border-radius: 20px;
  box-shadow: 0 10px 26px rgba(16, 32, 58, 0.06);
  overflow: hidden;
  border: 1px solid rgba(16, 32, 58, 0.06);
}

.faq-item summary{
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 700;
  color: #6F6F6F;
  font-size: 17px;
  line-height: 1.35;
}

.faq-item summary::-webkit-details-marker{
  display: none;
}

.faq-item__icon{
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  position: relative;
}

.faq-item__icon::before,
.faq-item__icon::after{
  content: "";
  position: absolute;
  background: #ef3d3d;
  border-radius: 999px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.faq-item__icon::before{
  width: 14px;
  height: 2px;
}

.faq-item__icon::after{
  width: 2px;
  height: 14px;
  transition: transform .2s ease, opacity .2s ease;
}

.faq-item[open] .faq-item__icon::after{
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}

.faq-item__body{
  padding: 0 20px 18px;
  font-size: 17px;
  line-height: 1.7;
  color: #5b6780;
}

.faq__media{
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.faq__image{
  width: 100%;
  max-width: 680px;
  height: auto;
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(16, 32, 58, 0.14);
  object-fit: cover;
}

/* адаптив */
@media (max-width: 1024px){
  .faq__grid{
    grid-template-columns: 1fr;
  }

  .faq__image{
    max-width: 100%;
  }
}

@media (max-width: 640px){
  .faq{
    padding: 56px 0;
  }

  .faq-item summary{
    padding: 16px 16px;
    font-size: 15px;
  }

  .faq-item__body{
    padding: 0 16px 16px;
    font-size: 14px;
  }

  .faq-item{
    border-radius: 18px;
  }
}
.cta{
  padding: 80px 0;
  background: #f7f9fd;
}

.cta__box{
  position: relative;
  overflow: hidden;
  max-width: 1120px;
  margin: 0 auto;
  padding: 42px 42px 38px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(79,140,255,.30), transparent 28%),
    radial-gradient(circle at left bottom, rgba(47,107,255,.25), transparent 30%),
    linear-gradient(135deg, #0b2d66 0%, #123a86 100%);
  color: #fff;
  /*box-shadow: 0 22px 70px rgba(13, 34, 77, 0.28);*/
  border: 1px solid rgba(255,255,255,.10);
}

.cta__box::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(135deg, rgba(255,255,255,.06), transparent 35%);
  pointer-events:none;
}

.cta__content{
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.cta h2{
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 60px);
  line-height: 1.06;
  letter-spacing: -.03em;
  font-weight: 600;
}

.cta__lead{
  margin: 0 auto 12px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,.88);
  max-width: 720px;
}

.cta__sublead{
  margin: 0 auto 26px;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,.75);
}

.cta__actions{
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cta__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: .22s ease;
  white-space: nowrap;
}

.cta__btn--primary{
  background: linear-gradient(135deg, #ef3d3d, #ff6161);
  color: #fff;
  box-shadow: 0 12px 24px rgba(239,61,61,.32);
}

.cta__btn--primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(239,61,61,.40);
}

.cta__btn--secondary{
  background: rgba(255,255,255,.10);
  color: #fff;
  border: 1px solid rgba(255,255,255,.16);
}

.cta__btn--secondary:hover{
  background: rgba(255,255,255,.16);
  transform: translateY(-2px);
}

.cta__note{
  margin-top: 18px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,.72);
}

/* адаптив */
@media (max-width: 640px){
  .cta{
    padding: 56px 0;
  }

  .cta__box{
    padding: 26px 18px 22px;
    border-radius: 24px;
  }

  .cta h2{
    font-size: 28px;
  }

  .cta__lead{
    font-size: 16px;
  }

  .cta__sublead{
    font-size: 14px;
  }

  .cta__actions{
    flex-direction: column;
  }

  .cta__btn{
    width: 100%;
  }
}
.text.tag_list{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  font-size: 0;
}

.text.tag_list a{
  flex: 0 0 calc(25% - 9px);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 18px 20px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid rgba(16, 32, 58, 0.08);
  box-shadow: 0 8px 20px rgba(16, 32, 58, 0.06);
  color: #10203a;
  font-size: 19px;
  font-weight: 700;
  text-decoration: none;
  transition: .22s ease;
  text-align: center;
  line-height: 1.35;
}

.text.tag_list a:hover{
  transform: translateY(-3px);
  background: #eef5ff;
  border-color: rgba(47,107,255,.18);
  box-shadow: 0 14px 30px rgba(16, 32, 58, 0.10);
  color: #2f6bff;
}

@media (max-width: 1024px){
  .text.tag_list a{
    flex: 0 0 calc(33.333% - 8px);
  }
}

@media (max-width: 768px){
  .text.tag_list a{
    flex: 0 0 calc(50% - 6px);
  }
}

@media (max-width: 480px){
  .text.tag_list a{
    flex: 0 0 100%;
  }
}

.footer{
  background:
    radial-gradient(circle at top right, rgba(79,140,255,.22), transparent 35%),
    radial-gradient(circle at left center, rgba(47,107,255,.20), transparent 30%),
    linear-gradient(180deg, #071a33 0%, #0a2142 100%);
  color: #fff;
  padding: 70px 0 26px;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  margin-top: 0;
}

.footer__top{
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}

.footer__brand{
  max-width: 360px;
}

.footer__logo{
  display: inline-block;
  margin-bottom: 20px;
}

.footer__logo img{
  width: 180px;
  height: 39px;
  object-fit: contain;
}

.footer__contacts{
  display: grid;
  gap: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,.84);
}

.footer__contacts a{
  color: #fff;
  text-decoration: none;
  transition: .2s ease;
}

.footer__contacts a:hover{
  color: #b9d1ff;
}

.footer__nav{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer__col h3{
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
  color: #fff;
}

.footer__col ul{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer__col a{
  color: rgba(255,255,255,.82);
  text-decoration: none;
  font-size: 16px;
  line-height: 1.5;
  transition: .2s ease;
}

.footer__col a:hover{
  color: #fff;
  transform: translateX(3px);
}

.footer__bottom{
  margin-top: 34px;
}

.footer__line{
  height: 1px;
  background: rgba(255,255,255,.12);
  margin-bottom: 14px;
}

.footer__copyright{
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,.72);
  text-align: center;
}

/* адаптив */
@media (max-width: 900px){
  .footer__top{
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__nav{
    grid-template-columns: 1fr;
  }

  .footer__brand{
    max-width: 100%;
  }
}

@media (max-width: 640px){
  .footer{
    padding: 56px 0 22px;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
  }

  .footer__logo img{
    width: 180px;
    height: 39px;
  }

  .footer__contacts{
    font-size: 14px;
  }

  .footer__copyright{
    font-size: 12px;
  }
}

	/* Основной контейнер виджета */
	.wg-floating-widget {
		position: fixed;
		bottom: 130px;
		right: 30px;
		z-index: 1000;
		display: flex;
		flex-direction: column;
		align-items: flex-end;
	}

	/* Главная круглая кнопка */
	.wg-main-button {
		width: 60px;
		height: 60px;
		border-radius: 50%;
		background-color: #0d6efd;
		border: none;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		box-shadow: 0 4px 8px rgba(0,0,0,0.2);
		transition: transform 0.2s, box-shadow 0.2s;
		color: white;
		font-size: 24px;
		padding: 0;
		line-height: 1;
	}

	.wg-main-button:hover {
		transform: scale(1.05);
		box-shadow: 0 6px 12px rgba(0,0,0,0.3);
	}

	/* Меню с дополнительными кнопками */
	.wg-menu {
		position: absolute;
		bottom: 75px;
		right: 0;
		display: flex;
		flex-direction: column;
		align-items: flex-end;
		gap: 10px;
		pointer-events: none;
	}

	/* Каждый пункт меню */
	.wg-menu-item {
		position: relative;
		width: 60px;
		height: 60px;
		border-radius: 50%;
		background-color: white;
		box-shadow: 0 2px 8px rgba(0,0,0,0.15);
		display: flex;
		align-items: center;
		justify-content: center;
		transition: opacity 0.3s, transform 0.3s;
		opacity: 0;
		transform: scale(0.6);
		pointer-events: none;
		text-decoration: none;
		overflow: visible;
	}

	.wg-menu-item img {
		width: 30px;
		height: 30px;
		object-fit: contain;
		display: block;
	}

	/* Стили подсказки (тултипа) для пунктов меню */
	.wg-tooltip {
		position: absolute;
		right: 100%;
		top: 50%;
		transform: translateY(-50%);
		margin-right: 10px;
		background: white;
		border: 1px solid #ddd;
		border-radius: 10px;
		padding: 10px 20px;
		white-space: nowrap;
		font-size: 14px;
		color: #333;
		box-shadow: 0 4px 8px rgba(0,0,0,0.1);
		pointer-events: none;
		opacity: 0;
		transition: opacity 0.2s, transform 0.2s;
		z-index: 10;
	}

	.wg-menu-item:hover .wg-tooltip {
		opacity: 1;
		transform: translateY(-50%) scale(1);
	}

	/* При открытом виджете показываем меню */
	.wg-floating-widget.open .wg-menu {
		pointer-events: auto;
	}

	.wg-floating-widget.open .wg-menu-item {
		opacity: 1;
		transform: scale(1);
		pointer-events: auto;
	}

	.wg-floating-widget.open .wg-menu-item:nth-child(1) { transition-delay: 0.05s; }
	.wg-floating-widget.open .wg-menu-item:nth-child(2) { transition-delay: 0.1s; }
	.wg-floating-widget.open .wg-menu-item:nth-child(3) { transition-delay: 0.15s; }
	.wg-floating-widget.open .wg-menu-item:nth-child(4) { transition-delay: 0.2s; }

	/* === Новый тултип для главной кнопки === */
	.wg-main-tooltip {
		position: absolute;
		right: 100%;        /* слева от главной кнопки */
		bottom: 0;          /* выравнивание по нижнему краю */
		margin-right: 15px;
		width: 320px;
		background: white;
		border-radius: 16px;
		box-shadow: 0 8px 20px rgba(0,0,0,0.15);
		border: 1px solid #e0e0e0;
		padding: 12px;
		display: flex;
		align-items: center;
		gap: 12px;
		opacity: 0;
		transform: translateX(10px);
		transition: opacity 0.3s, transform 0.3s;
		pointer-events: none;
		z-index: 1001;
	}

	.wg-main-tooltip.show {
		opacity: 1;
		transform: translateX(0);
		pointer-events: auto;
	}

	/* Аватар */
	.wg-main-tooltip .wg-avatar {
		width: 50px;
		height: 50px;
		border-radius: 50%;
		object-fit: cover;
		flex-shrink: 0;
	}

	/* Контейнер с текстом */
	.wg-main-tooltip .wg-tooltip-text {
		flex: 1;
		display: flex;
		flex-direction: column;
	}

	.wg-main-tooltip .wg-tooltip-text strong {
		font-weight: 700;
		font-size: 16px;
		color: #222;
	}

	.wg-main-tooltip .wg-tooltip-text span {
		font-size: 14px;
		color: #555;
		line-height: 1.4;
	}

	/* Кнопка закрытия */
	.wg-main-tooltip .wg-tooltip-close {
		position: absolute;
		top: 8px;
		right: 10px;
		background: transparent;
		border: none;
		color: #999;
		font-size: 18px;
		cursor: pointer;
		padding: 4px;
		line-height: 1;
		transition: color 0.2s;
	}

	.wg-main-tooltip .wg-tooltip-close:hover {
		color: #333;
	}

	/* Адаптивность для мобильных */
	@media (max-width: 480px) {
		.wg-floating-widget {
			bottom: 35px;
			right: 15px;
		}
		.wg-menu {
			bottom: 95px;
			gap: 8px;
		}
		.wg-main-tooltip {
			width: 280px;
			padding: 10px;
		}
	}
/* Адаптив */
@media (max-width: 1024px){
  .advantages__grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px){
  .advantages{
    padding: 56px 0;
  }

  .adv-card{
    padding: 20px;
    border-radius: 20px;
  }

  .adv-card h3{
    font-size: 17px;
  }
}


@media (max-width: 1024px){
  .steps__grid{
    grid-template-columns: 1fr;
  }

  .steps__media{
    position: static;
  }

  .steps__image{
    max-width: 100%;
  }
}

@media (max-width: 640px){
  .steps{
    padding: 56px 0;
  }

  .step-item{
    padding: 18px;
    border-radius: 20px;
  }

  .step-item h3{
    font-size: 18px;
  }
}


@media (max-width: 640px){
  .cases{
    padding: 56px 0;
  }

  .case-card{
    padding: 22px 0;
  }

  .case-card__meta h3{
    font-size: 18px;
  }
}


/* адаптив */
@media (max-width: 1024px){
  .features__grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px){
  .features{
    padding: 56px 0;
  }

  .features__grid{
    grid-template-columns: 1fr;
  }

  .feature-card{
    min-height: auto;
  }

  .features__note{
    font-size: 16px;
  }
}

/* Адаптив */
@media (max-width: 1024px){
  .we-do__grid{
    grid-template-columns: 1fr;
  }

  .we-do__stack .we-do-card{
    min-height: auto;
  }
}

@media (max-width: 640px){
  .we-do{
    padding: 56px 0;
  }

  .section-head h2{
    font-size: 26px;
  }

  .section-head p{
    font-size: 16px;
  }

  .we-do-card{
    padding: 20px;
    border-radius: 22px;
  }

  .we-do-card h3{
    font-size: 20px;
  }

  .we-do-card__image img{
    width: 260px;
    height: 260px;
  }
}

/* Адаптив */
@media (max-width: 1024px){
  .pain__grid{
    grid-template-columns: 1fr;
  }

  .pain__media{
    order: -1; /* если хочешь картинку сверху на планшете */
    margin-bottom: 8px;
  }

  .pain__image{
    max-width: 100%;
  }
}

@media (max-width: 640px){
  .pain{
    padding: 56px 0;
  }

  .pain-item{
    flex-direction: column;
    padding: 18px;
  }

  .pain-item__icon{
    justify-content: flex-start;
  }

  .pain h2{
    max-width: 100%;
    font-size: 28px;
  }

  .pain__subtitle{
    font-size: 16px;
  }
}


@media (max-width: 1024px){
  .teasers__grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px){
  .teasers__grid{
    grid-template-columns: 1fr;
  }

  .teaser-card{
    min-height: auto;
  }
}


@media (max-width: 1024px){
  .hero__grid{ gap: 32px; }
  .dropdown{ width: 740px; }
}

@media (max-width: 860px){
  .header{ display: none; }
  .mobile-header{ display: block; }

  .hero{
	padding-top: 14px;
	padding-bottom: 44px;
  }

  .hero__grid{
	grid-template-columns: 1fr;
	min-height: auto;
	gap: 24px;
  }

  /* КАРТИНКА СНИЗУ */
  .hero__media{
	order: 2;
  }

  .hero__content{
	order: 1;
  }

  .hero__image-wrap{
	max-width: 420px;
  }

  .hero h1{
	max-width: 100%;
  }

  .hero__text{
	font-size: 16px;
  }

  .hero__actions{
	flex-direction: column;
  }

  .btn{ width: 100%; }
}

@media (max-width: 560px){
  .container{
	width: min(var(--container), calc(100% - 24px));
  }

  .top-hero{
	border-bottom-left-radius: 24px;
	border-bottom-right-radius: 24px;
  }

  .hero{
	padding-bottom: 34px;
  }

  .hero h1{
	font-size: 30px;
  }

  .hero__text{
	line-height: 1.55;
  }

  .hero__image-wrap{
	border-radius: 22px;
  }
}
