/* YouTraffic - Main styles (точная копия home-10) */
/* Reset & base */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Rubik', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  color: #696687;
  background: #FEFEFE;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Скрытый для глаз, но видимый для SEO и скринридеров (например H1 на главной) */
.yt-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.yt-header {
  position: relative;
  z-index: 1000;
  min-height: 108px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  color: #3B3663;
  background: #ffffff;
}

/* Липкий хедер только на главной странице */
.is-home .yt-header {
  position: sticky;
  top: 0;
  background: transparent;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    min-height 0.3s ease,
    padding 0.3s ease,
    backdrop-filter 0.3s ease;
}

/* Сжатый и полупрозрачный хедер при прокрутке (только на главной) */
.is-home .yt-header.yt-header--scrolled {
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  min-height: 80px;
  padding-top: 5px;
  padding-bottom: 5px;
  backdrop-filter: blur(10px);
}

/* Немного уменьшаем логотип в сжатом состоянии */
.is-home .yt-header.yt-header--scrolled .yt-logo img {
  height: 40px;
  max-height: 40px;
}

.yt-header a {
  color: #3B3663;
}

.yt-header a:hover {
  color: #F47514;
}

.yt-header .yt-btn--primary,
.yt-header .yt-btn--primary span,
.yt-header .yt-btn--primary:hover,
.yt-header .yt-btn--primary:hover span {
  color: #ffffff !important;
}

.yt-header-inner {
  width: 100%;
  max-width: 1310px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.yt-logo {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 15px;
}
.yt-logo__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
  position: relative;
  left: -5px;
  top: -2px;
}
.yt-logo__text {
  font-family: 'Nunito', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #3B3663;
}
.yt-logo__tagline {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 600;
  background: linear-gradient(90deg, #FF4969 -20%, #FC9D44 115%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding: 0;
  margin: 0;
}
.yt-logo img {
  height: 48px;
  max-height: 48px;
  width: auto;
}

.yt-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yt-nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 10px;
  align-items: center;
}

.yt-nav-list li { margin: 0; display: flex; align-items: center; }

.yt-nav-list a {
  padding: 8px 5px;
  font-size: 18px;
  font-weight: 500;
}

.yt-cta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}
.yt-header .yt-auth-icon,
.yt-header .yt-auth-avatar-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.yt-header .yt-auth-icon svg { display: block; vertical-align: middle; }
.yt-header .yt-auth-avatar { display: block; vertical-align: middle; }
.yt-header .yt-btn { vertical-align: middle; }

/* Hamburger — скрыт по умолчанию */
.yt-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  color: #3B3663;
}
.yt-hamburger__line {
  display: block;
  width: 100%;
  height: 3px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.yt-hamburger[aria-expanded="true"] .yt-hamburger__line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.yt-hamburger[aria-expanded="true"] .yt-hamburger__line:nth-child(2) {
  opacity: 0;
}
.yt-hamburger[aria-expanded="true"] .yt-hamburger__line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Шторка за боковым меню */
.yt-mobile-menu-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 998;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.yt-mobile-menu-backdrop.yt-mobile-menu-backdrop--open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
/* Мобильное меню — боковое, 2/3 ширины */
.yt-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 66.666%;
  max-width: 400px;
  bottom: 0;
  z-index: 999;
  background: rgba(59, 54, 99, 0.98);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
}
.yt-mobile-menu.yt-mobile-menu--open {
  transform: translateX(0);
}
.yt-mobile-menu__inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 100px 24px 30px;
}
.yt-mobile-menu__auth {
  flex-shrink: 0;
  margin-bottom: 30px;
}
.yt-mobile-menu__auth-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}
.yt-mobile-menu__auth-link svg {
  flex-shrink: 0;
  color: #fff;
}
.yt-mobile-menu__auth-link:hover {
  color: #FC9D44;
}
.yt-mobile-menu__auth-link:hover svg {
  color: #FC9D44;
}
.yt-mobile-menu__avatar {
  border-radius: 50%;
  flex-shrink: 0;
}
.yt-mobile-menu__nav {
  flex: 1;
}
.yt-mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.yt-mobile-menu__list li {
  margin: 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.yt-mobile-menu__list a {
  display: block;
  padding: 16px 0;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}
.yt-mobile-menu__list a:hover {
  color: #FC9D44;
}
.yt-mobile-menu__footer {
  flex-shrink: 0;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.yt-mobile-menu__btn {
  display: block;
  text-align: center;
  padding: 16px 28px;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

/* CTA Button — по образцу кнопки «Анализ ниши»: размер текста, шрифт, заглавная буква */
.yt-btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2px;
  font-family: inherit;
  text-transform: capitalize;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s, background-color 0.3s;
  position: relative;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
}

.yt-btn--primary {
  color: #fff;
  background: linear-gradient(90deg, #FF4969 -20%, #FC9D44 115%);
}

.yt-btn--primary::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, #FC9D44 -20%, #FF4969 115%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
  border-radius: inherit;
}

.yt-btn--primary span { position: relative; z-index: 1; }
.yt-btn--primary:hover { color: #fff; }
.yt-btn--primary:hover::before { opacity: 1; }

/* ===== Hero section (4bf712c) ===== */


.yt-hero__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  margin-inline: auto;
}

.yt-hero__col {
  width: calc(50% - 40px);
  min-width: 280px;
  padding: 10px;
}

.yt-hero__col--img {
  position: relative;
  z-index: 0;
  display: flex;
  align-content: center;
  align-items: center;
  overflow: visible;
}

.yt-hero__col--img .yt-hero__col-inner {
  position: relative;
  width: 100%;
  overflow: visible;
}

/* Главное изображение/видео — фон совпадает с краями видео #FEFEFE */
.yt-hero__img-wrap {
  margin: 0 -18%;
  background: #FEFEFE;
}

.yt-hero__main-img,
.yt-hero__main-video {
  width: 100%;
  max-width: 785px;
  height: auto;
  display: block;
}

/* Анимации для плавающих картинок (Elementor: fadeInDown, zoomIn, fadeInLeft, fadeInUp) */
@keyframes yt-fadeInDown {
  from { opacity: 0; transform: translate3d(0, -100%, 0); }
  to { opacity: 1; transform: none; }
}
@keyframes yt-zoomIn {
  from { opacity: 0; transform: scale3d(0.3, 0.3, 0.3); }
  50% { opacity: 1; }
  to { opacity: 1; transform: none; }
}
@keyframes yt-fadeInLeft {
  from { opacity: 0; transform: translate3d(-100%, 0, 0); }
  to { opacity: 1; transform: none; }
}
@keyframes yt-fadeInUp {
  from { opacity: 0; transform: translate3d(0, 100%, 0); }
  to { opacity: 1; transform: none; }
}

.yt-hero__float.yt-animate-ready { opacity: 0; }
.yt-hero__float.yt-fadeInDown { animation: yt-fadeInDown 1s ease forwards; }
.yt-hero__float.yt-zoomIn { animation: yt-zoomIn 1s ease forwards; }
.yt-hero__float.yt-fadeInLeft { animation: yt-fadeInLeft 1s ease forwards; }
.yt-hero__float.yt-fadeInUp { animation: yt-fadeInUp 1s ease forwards; }

/* Плавающие изображения — точные размеры из HTML: 192, 250, 233, 250 px */
.yt-hero__float {
  position: absolute;
  z-index: 2;
}

.yt-hero__float--1 {
  top: 12%;
  left: -21%;
  text-align: start;
}
.yt-hero__float--1 img { width: 192px; height: auto; }

.yt-hero__float--2 {
  top: 23%;
  right: -6%;
  left: auto;
  text-align: end;
}
.yt-hero__float--2 img { width: 250px; height: auto; }

.yt-hero__float--3 {
  bottom: 18%;
  left: -27%;
  text-align: start;
}
.yt-hero__float--3 img { width: 233px; height: auto; }

.yt-hero__float--4 {
  bottom: calc(44.151% - 100px);
  right: -13.174%;
  left: auto;
  text-align: end;
}
.yt-hero__float--4 img { width: 250px; height: auto; }

/* Декоративные фигуры (gt3_rotated_element, gt3_moved_element) — только в hero */
@keyframes yt-rotatedelement {
  0% { transform: translate(0) rotate(0deg); }
  25% { transform: translate(-10px, 10px) rotate(10deg); }
  50% { transform: translate(5px, -5px) rotate(25deg); }
  75% { transform: translate(15px, -5px) rotate(15deg); }
  100% { transform: translate(0) rotate(0deg); }
}
@keyframes yt-movedelement {
  0% { transform: translate(0); }
  25% { transform: translate(10px, 10px); }
  50% { transform: translate(5px, 5px); }
  75% { transform: translate(10px, -5px); }
  100% { transform: translate(0); }
}

.yt-hero__shape {
  position: absolute;
  z-index: 50;
  pointer-events: none;
}
.yt-hero__shape img {
  display: block;
  max-width: 100%;
  height: auto;
}
.yt-hero__shape--rotated {
  animation: yt-rotatedelement 5s linear infinite;
}
.yt-hero__shape--moved {
  animation: yt-movedelement 5s linear infinite;
}

/* Левая колонка — размеры из оригинала (max-width: 13px, 21px, 36px) */
.yt-hero__shape--1 { left: -52%; top: 37%; width: 13px; max-width: 13px; }
.yt-hero__shape--2 { left: -31%; top: 27%; width: 21px; max-width: 21px; }
.yt-hero__shape--3 { left: -43%; top: 60%; width: 36px; max-width: 36px; }
.yt-hero__shape--4 { right: 1%; left: auto; top: 14%; width: 13px; max-width: 13px; text-align: right; }

/* Правая колонка — d87dace: 13px, 29f3943: 36px, 9aac484: 24px, 4c7a213: 21px */
.yt-hero__shape--5 { right: -1%; left: auto; top: 51%; width: 13px; max-width: 13px; }
.yt-hero__shape--6 { right: 1%; left: auto; top: 8%; width: 36px; max-width: 36px; }
.yt-hero__shape--7 { right: -30%; left: auto; top: 25%; width: 24px; max-width: 24px; }
.yt-hero__shape--8 { right: -20%; left: auto; top: 80%; width: 21px; max-width: 21px; }

/* Контент — вторая колонка, поверх изображения */
.yt-hero__col:last-child {
  position: relative;
  z-index: 1;
  overflow: visible;
  background: #FEFEFE;
}

/* e8de75d — padding 12% сверху и слева как в оригинале */
.yt-hero__content {
  padding: 12% 0 0 calc(12% - 20px);
}

/* Заголовки — gradient (dee550e, bf7567a, 937c14f) */
.yt-hero__title,
.yt-hero__subtitle,
.yt-hero__typed {
  font-family: 'Montserrat', 'Nunito', sans-serif;
  font-size: 76px;
  font-weight: 800;
  line-height: 1.15em;
  margin: -10px 0 0;
  background: linear-gradient(90deg, #FF4969, #FC9D44);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Третье слово (typed) — как в оригинале gt3_typed_widget: фикс. высота и ширина */
.yt-hero__typed {
  display: block;
  min-width: 320px;
  min-height: 1.15em;
}

/* Невидимый holder как в оригинале — резервирует линию */
.yt-typed-holder {
  width: 0;
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

.yt-hero__typed > span {
  display: inline-block;
  vertical-align: top;
}

#yt-typed {
  min-width: 320px;
  min-height: 1em;
  display: inline-block;
}

/* Описание b1b55b5 — margin 0 10% 0 0, padding 12px 0 32px 0 */
.yt-hero__desc {
  margin: 0 10% 0 0;
  padding: 12px 0 32px;
  color: #696687;
  font-size: 18px;
  line-height: 27px;
}

/* Форма da8fd1c — revolution_form dark_style */
.yt-hero__form-wrap {
  margin: 0 0 43px 10px;
  z-index: 1;
}

/* revolution_form with_border — input и кнопка в одной строке */
.yt-hero__form {
  padding: 10px;
  background: #fff;
  border-radius: 4px;
  margin-left: -10px;
  position: relative;
  box-shadow: 17px 17px 46px 0 rgba(17, 69, 111, 0.11);
}

.yt-hero__form-inner {
  position: relative;
}

.yt-hero__form input[type="url"] {
  width: 100%;
  margin: 0;
  border: none;
  padding: 0 210px 0 20px;
  background: #f8f9fa;
  border-radius: 4px;
  color: #696687;
  height: 50px;
  font-size: 16px;
  font-family: inherit;
}

.yt-hero__form input[type="url"]::placeholder {
  color: #999;
}

/* Кнопка — position absolute справа, по центру по вертикали */
.yt-hero__form-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}

.yt-hero__form-btn input {
  padding-left: 30px;
  padding-right: 30px;
}

/* Кнопка «Анализ ниши» — эталон: шрифт 14px, стандартный цвет #3b3663 */
.yt-hero__form input[type="submit"] {
  width: auto;
  margin: 0;
  color: #fff;
  border: none;
  font-weight: 400;
  letter-spacing: 0.2px;
  padding: 14px 28px;
  min-height: 50px;
  position: relative;
  border-radius: 5px;
  text-align: center;
  display: block;
  background-color: #3b3663;
  background-image: none;
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s;
  text-transform: capitalize;
}

.yt-hero__form input[type="submit"]:hover {
  background-color: #2d2949;
}

/* Контакт beb5f45 — gt3-core-imagebox точная копия */
.yt-hero__contact {
  display: flex;
  align-items: flex-start;
  text-align: left;
}

/* Иконка — max-width:30px, width:30px, margin:0 17px 10px 0 как beb5f45 */
.yt-hero__contact-icon {
  flex-shrink: 0;
  width: 30px;
  max-width: 30px;
  height: auto;
  margin: 0 17px 10px 0;
  object-fit: contain;
  transition-duration: 0.3s;
}

.yt-hero__contact-content {
  width: 100%;
}

.yt-hero__contact-title {
  font-weight: 500;
  font-size: 36px;
  line-height: 0.93em;
  margin: 0 0 10px;
  color: #3B3663;
}

.yt-hero__contact-title a {
  color: inherit;
}

.yt-hero__contact:hover .yt-hero__contact-title a,
.yt-hero__contact-title a:hover {
  color: #FF7426;
}

.yt-hero__contact-desc {
  font-family: 'Nunito', sans-serif;
  font-size: 18px; /* надпись t.me/youtraffic_ru */
  font-weight: 700;
  text-transform: lowercase;
  color: #3B3564;
  margin: 0;
  line-height: 1.2;
}
.yt-hero__contact-desc a {
  color: inherit;
  text-decoration: none;
}
.yt-hero__contact:hover .yt-hero__contact-desc a,
.yt-hero__contact-desc a:hover {
  color: #FF7426;
}

/* ===== Секция логотипов 5f358f2f ===== */
.yt-logos {
  position: relative;
  z-index: 100;
  margin-top: 0;
  margin-bottom: 0;
  background: #FEFEFE;
}

.yt-logos__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  flex-wrap: wrap;
}

.yt-logos__item {
  width: 25%;
  padding: 10px;
  display: flex;
  align-content: center;
  align-items: center;
}

.yt-logos__item--1 {
  justify-content: flex-start;
  text-align: start;
}

.yt-logos__item--2,
.yt-logos__item--3 {
  justify-content: center;
  text-align: center;
}

.yt-logos__item--4 {
  justify-content: flex-end;
  text-align: end;
}

.yt-logos__item img {
  transition-duration: 0.4s;
}

.yt-logos__item:hover img {
  opacity: 0.7;
}

/* Логотипы — фиксированные размеры из оригинала (348→174, 346→173, 242→121, 286→143) */
.yt-logos__item--1 img { width: 174px; height: 54px; object-fit: contain; }
.yt-logos__item--2 img { width: 173px; height: 56px; object-fit: contain; }
.yt-logos__item--3 img { width: 121px; height: 90px; object-fit: contain; }
.yt-logos__item--4 img { width: 143px; height: 58px; object-fit: contain; }

/* ===== CTA секция — фон pic_paralax_2, компактная ===== */
.yt-cta-section {
  background-image: url("/static/images/pic_paralax_2.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.yt-cta-section__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 35px 15px;
  text-align: center;
}

/* a09c21f — как в home-02: Nunito 37px, 50px line-height */
.yt-cta-section__title {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: 0px;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
}

.yt-cta-section__tg {
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
}

.yt-cta-section__tg img {
  display: block;
  transition: opacity 0.3s;
}

.yt-cta-section__tg:hover img {
  opacity: 0.85;
}

/* Разделитель секций — отступ в цвет фона, без линий */
.yt-section-divider {
  height: 60px;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
}

/* ===== Секция 72348e8 — care features + imageboxes ===== */
.yt-features {
  padding: 0 15px;
}

.yt-features__inner {
  max-width: 1140px;
  margin: 0 auto;
}

.yt-features__row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.yt-features__row--title .yt-features__col--empty { width: 16.667%; padding: 0 10px; }
.yt-features__row--title .yt-features__col--center { width: 66.666%; padding: 0 10px; text-align: center; }
.yt-features__row--content .yt-features__col { padding: 15px; }
.yt-features__row--content .yt-features__col--img { width: 50%; }
.yt-features__row--content .yt-features__col--boxes { width: 50%; }

/* 34208cf */
.yt-features__label {
  margin: 21px 0 3px;
  font-size: 14px;
  font-weight: 700;
  text-transform: lowercase;
  color: inherit;
}

/* 578205c */
.yt-features__heading {
  margin: 0 0 6px;
  text-align: center;
  line-height: 38px;
  font-size: 30px;
  font-weight: 600;
  color: #3B3663;
}

/* d07db91 — image margin */
.yt-features__col--img img {
  margin: 7px 0 0 -175px;
  max-width: none;
  width: auto;
}

/* f3065fb, 9fbab18, f6ee7aa — imagebox */
.yt-features__box {
  display: flex;
  align-items: flex-start;
  text-align: left;
  padding: 32px 20px 32px 30px;
  border-radius: 10px;
  transition: opacity 0.3s;
}

.yt-features__box-content {
  flex: 1;
  min-width: 0;
}

.yt-features__box img {
  flex-shrink: 0;
  margin: 0 20px 0 0;
  max-width: 133px;
  width: 133px;
  height: auto;
  object-fit: contain;
}

.yt-features__box--1 {
  background: #f9f8ff;
  margin: -10px 0 0 0;
  padding-right: 45px;
}

.yt-features__box--2 {
  background: #fffcf6;
  margin: 10px 0 0 95px;
}

.yt-features__box--3 {
  background: #f0fffc;
  margin: 10px 0 25px 0;
  padding-right: 20px;
}

.yt-features__box--3 img { max-width: 183px; width: 183px; }

.yt-features__box-title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  color: #3B3663;
}

.yt-features__box-desc {
  margin: 0;
  color: #696687;
  font-size: 16px;
  line-height: 1.7em;
}

/* ===== Секция 6882859 — Success Story + pie charts ===== */
.yt-success {
  padding: 0 15px;
}

.yt-success__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}

.yt-success__col {
  width: 50%;
  padding: 0 10px;
}

.yt-success__spacer--top { height: 58px; }
.yt-success__spacer--mid { height: 32px; }
.yt-success__spacer--bottom { height: 103px; }

/* 4a7e828 */
.yt-success__label {
  margin: 0 0 3px;
  font-size: 14px;
  font-weight: 700;
  text-transform: lowercase;
  color: inherit;
}

/* 63e98bc */
.yt-success__heading {
  margin: 0 0 11px;
  text-align: start;
  line-height: 38px;
  font-size: 30px;
  font-weight: 600;
  color: #3B3663;
}

/* 5403128 */
.yt-success__text {
  margin: 0 18% 0 0;
  color: #696687;
  font-size: 18px;
  line-height: 27px;
}

/* Pie charts 6de2d81, 66eb904, 2f5ff59 */
.yt-success__charts {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-right: 9%;
}

.yt-success__chart {
  flex: 1;
  min-width: 100px;
  text-align: center;
  min-height: 126px;
  position: relative;
}

.yt-success__chart-wrap {
  position: relative;
  width: 126px;
  height: 126px;
  margin: 0 auto 8px;
}

.yt-success__chart-svg {
  display: block;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.yt-success__chart-value {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Nunito', sans-serif;
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  z-index: 5;
}

.yt-success__chart[data-value="76"] .yt-success__chart-value { color: #6759e8; }
.yt-success__chart[data-value="89"] .yt-success__chart-value { color: #f29111; }
.yt-success__chart[data-value="75"] .yt-success__chart-value { color: #42cd83; }

.yt-success__chart-label {
  font-size: 18px;
  font-weight: 400;
  line-height: 15px;
  color: #696687;
}

.yt-success__col--img { margin-top: 38px; }
.yt-success__col--img img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-right: -43px;
}

/* ===== 9958eaa More with us / Join With Us ===== */
.yt-join-cta {
  background-image: url("/static/images/pic_paralax_2.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.yt-join-cta__inner {
  max-width: 1190px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  flex-wrap: wrap;
}

.yt-join-cta__col { padding: 0 10px; }
.yt-join-cta__col--empty { width: 25%; }
.yt-join-cta__col--content { width: 50%; text-align: center; }

.yt-join-cta__spacer--top { height: 119px; }
.yt-join-cta__spacer--mid { height: 39px; }
.yt-join-cta__spacer--bottom { height: 130px; }

.yt-join-cta__label {
  margin: 0 0 3px;
  font-size: 14px;
  font-weight: 700;
  text-transform: lowercase;
  color: #ffffff;
}

.yt-join-cta__heading {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  font-size: 37px;
  line-height: 50px;
  letter-spacing: 0;
  color: #ffffff;
}

.yt-join-cta__btn { margin: 0; }

/* ===== 3b1688a Our services ===== */
.yt-services { padding: 0 15px; }
.yt-services__inner { max-width: 1190px; margin: 0 auto; text-align: center; }
.yt-services__spacer { height: 60px; }
.yt-services__label { margin: 21px 0 3px; font-size: 14px; font-weight: 700; text-transform: uppercase; color: inherit; }
.yt-services__heading { margin: 0 0 19px; font-size: 30px; font-weight: 600; line-height: 38px; color: #3B3663; }

/* ===== 903e5fa Tabs (gt3_advanced_tabs, styles from home-02) ===== */
.yt-tabs { padding: 0 15px; }
.yt-tabs__inner { max-width: 1190px; margin: 0 auto; }
.yt-tabs .gt3_tabs_marker-yes { margin-left: -15px; margin-right: -15px; }
/* Каждая вкладка — свой цвет, скругления, крупнее иконка, мельче надпись */
.yt-tabs .gt3_advanced_tabs_nav > li:nth-child(1) > a { background-color: #FFFCF6 !important; border-radius: 50px; }
.yt-tabs .gt3_advanced_tabs_nav > li:nth-child(2) > a { background-color: #F9F8FF !important; border-radius: 50px; }
.yt-tabs .gt3_advanced_tabs_nav > li:nth-child(3) > a { background-color: #F0FFFC !important; border-radius: 50px; }
.yt-tabs .gt3_advanced_tabs_nav > li:nth-child(4) > a { background-color: #FEEFF4 !important; border-radius: 50px; }
.yt-tabs .gt3_advanced_tabs_nav > li:nth-child(5) > a { background-color: #EDFDFF !important; border-radius: 50px; }
.yt-tabs .gt3_advanced_tabs_nav > li.ui-state-active:nth-child(1) > a { background-color: #F19B10 !important; color: #fff; }
.yt-tabs .gt3_advanced_tabs_nav > li.ui-state-active:nth-child(2) > a { background-color: #8379EE !important; color: #fff; }
.yt-tabs .gt3_advanced_tabs_nav > li.ui-state-active:nth-child(3) > a { background-color: #4FD68D !important; color: #fff; }
.yt-tabs .gt3_advanced_tabs_nav > li.ui-state-active:nth-child(4) > a { background-color: #F87790 !important; color: #fff; }
.yt-tabs .gt3_advanced_tabs_nav > li.ui-state-active:nth-child(5) > a { background-color: #58BBFA !important; color: #fff; }
.yt-tabs .gt3_tabs_marker-yes .gt3_advanced_tabs_nav > li.ui-state-active:nth-child(1) > a:after { border-top-color: #F19B10; }
.yt-tabs .gt3_tabs_marker-yes .gt3_advanced_tabs_nav > li.ui-state-active:nth-child(2) > a:after { border-top-color: #8379EE; }
.yt-tabs .gt3_tabs_marker-yes .gt3_advanced_tabs_nav > li.ui-state-active:nth-child(3) > a:after { border-top-color: #4FD68D; }
.yt-tabs .gt3_tabs_marker-yes .gt3_advanced_tabs_nav > li.ui-state-active:nth-child(4) > a:after { border-top-color: #F87790; }
.yt-tabs .gt3_tabs_marker-yes .gt3_advanced_tabs_nav > li.ui-state-active:nth-child(5) > a:after { border-top-color: #58BBFA; }
.yt-tabs .gt3_tabs_nav__image_container img { max-width: 110px; height: auto; display: block; }
.yt-tabs .gt3_tabs_nav__title { font-size: 13px; font-weight: 600; }
.yt-tabs__panel { display: none; }
.yt-tabs__panel.active { display: block; }
/* Ряд: картинка слева, контент справа — flex nowrap чтобы не ломаться */
.yt-tabs__row { display: flex; flex-wrap: nowrap; gap: 30px; align-items: flex-start; }
.yt-tabs__col--img { flex: 0 0 44%; min-width: 0; }
.yt-tabs__col--img > img { max-width: 100%; height: auto; margin: 0 0 17px; display: block; }
.yt-tabs__col--content { flex: 1; min-width: 0; padding-left: 29px; padding-right: 50px; }
.yt-tabs__spacer { height: 43px; }
.yt-tabs__spacer-sm { height: 35px; }
.yt-tabs__title { margin: 0 0 4px; font-family: 'Nunito', sans-serif; font-size: 24px; font-weight: 700; line-height: 26px; color: #3B3663; }
.yt-tabs__text { margin: 0 0 17px; font-size: 16px; line-height: 27px; color: #696687; }
.yt-tabs__box { display: flex; align-items: flex-start; padding: 9px 20px 10px 0; border-radius: 10px; background: #f9f8ff; margin: 0 0 22px; }
.yt-tabs__box img { flex-shrink: 0; margin: 0 20px 10px 0; max-width: 47px; width: 47px; }
.yt-tabs__box p { margin: 0; font-size: 16px; line-height: 1.7em; color: #696687; }

/* Кнопки yt-btn — единый размер и шрифт (как «Анализ ниши»), цвета без изменений */
.yt-btn { display: inline-block; padding: 14px 28px; font-size: 14px; font-weight: 400; letter-spacing: 0.2px; font-family: inherit; color: #fff; text-decoration: none; border-radius: 5px; border: none; cursor: pointer; transition: opacity 0.3s; text-transform: capitalize; }
.yt-btn:hover { opacity: 0.9; }
.yt-btn--orange { background: linear-gradient(90deg, #f0ac0e -20%, #ff7426 115%); }
.yt-btn--purple { background: linear-gradient(96deg, #9289f1 0%, #6254e7 100%); }
.yt-btn--green { background: linear-gradient(96deg, #88fdb9 0%, #34c478 100%); }

/* ===== 669016b Why Choose us — как в оригинале ===== */
.yt-choose { padding: 0 15px; }
.yt-choose__inner { max-width: 1140px; margin: 0 auto; display: flex; flex-wrap: nowrap; gap: 20px; align-items: flex-start; }
.yt-choose__col { flex: 0 0 calc(50% - 10px); min-width: 0; }
.yt-choose__col--left { padding: 10px 30px 10px 10px; }
.yt-choose__spacer { height: 30px; }
.yt-choose__label { margin: 0 0 3px; font-size: 14px; font-weight: 700; text-transform: uppercase; }
.yt-choose__heading { margin: 0 0 19px; font-size: 30px; font-weight: 600; line-height: 38px; color: #3B3663; }
.yt-choose__list { margin: 0 0 45px; }
.yt-choose__item { display: flex; align-items: flex-start; padding: 0 10% 0 0; margin-bottom: 0; }
.yt-choose__item:nth-child(1) { margin-bottom: 22px; }
.yt-choose__item:nth-child(2) { margin-bottom: 22px; }
.yt-choose__item:nth-child(3) { margin-bottom: 0; }
.yt-choose__item img { flex-shrink: 0; margin: 0 20px 0 0; max-width: 25px; width: 25px; height: auto; }
.yt-choose__item h4 { margin: 0 0 3px; font-size: 20px; font-weight: 700; line-height: 26px; color: #3B3663; }
.yt-choose__item p { margin: 0; font-size: 16px; font-weight: 400; line-height: 24px; color: #696687; }
.yt-choose__col--img { display: flex; align-items: flex-start; }
.yt-choose__col--img img { max-width: 100%; height: auto; margin: 0; }

/* ===== 972ec02 Testimonials — как в оригинале home-02 ===== */
.yt-testimonials {
  padding: 0 15px;
  background-image: url("/static/images/pic_paralax_2.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.yt-testimonials__spacer--top { height: 80px; }
.yt-testimonials__spacer--bottom { height: 100px; }
.yt-testimonials__inner { max-width: 1600px ;margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 50px; }
.yt-testimonials__head { width: 100%; text-align: center; }
.yt-testimonials__label { margin: 0 0 3px; font-size: 14px; font-weight: 700; text-transform: uppercase; color: #ffffff; }
.yt-testimonials__heading { margin: 0 0 17px; font-size: 30px; font-weight: 600; line-height: 38px; color: #ffffff; }

/* Слайдер: видно 3 карточки, сдвиг на одну карточку, зазор 40px между карточками (9 = 6 карточек + 3 клона) */
.yt-testimonials__slider { width: 100%; overflow: hidden; }
.yt-testimonials__track { display: flex; width: 300%; gap: 40px; }
.yt-testimonials__track > .yt-testimonials__item { flex: 0 0 calc((100% - 320px) / 9); min-width: 0; box-sizing: border-box; transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease; }
.yt-testimonials__track--moving > .yt-testimonials__item { transform: scale(1.02); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12); }
.yt-testimonials__dots { display: flex; justify-content: center; gap: 10px; margin-top: 25px; padding: 0; list-style: none; }
.yt-testimonials__dots button { width: 10px; height: 10px; padding: 0; border: 1px solid rgba(255,255,255,0.7); border-radius: 50%; background: transparent; cursor: pointer; transition: background 0.3s, border-color 0.3s; }
.yt-testimonials__dots button:hover { background: rgba(255,255,255,0.3); }
.yt-testimonials__dots button.active { background: #fff; border-color: #fff; }

/* Карточки отзывов — округлые, белый фон, тень, оранжевая цитата (как на желаемом макете) */
.yt-testimonials__item {
  position: relative;
  background: #fff;
  padding: 25px 25px 25px 30px;
  border-radius: 20px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.yt-testimonials__quote {
  width: 48px;
  height: 48px;
  margin-bottom: 1px;
  flex-shrink: 0;
  line-height: 1;
}
.yt-testimonials__quote::before {
  content: '\201C';
  font-size: 56px;
  font-weight: 900;
  font-family: Georgia, 'Times New Roman', serif;
  background: linear-gradient(135deg, #ff7426 0%, #f0ac0e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}
.yt-testimonials__item p {
  margin: 0 0 15px;
  text-indent: 1.5em;
  font-size: 18px;
  line-height: 1.6;
  font-style: italic;
  color: #3B3663;
  flex: 1;
}
.yt-testimonials__author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
}
.yt-testimonials__author img {
  width: 51px;
  height: 51px;
  border-radius: 5px;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.yt-testimonials__author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.yt-testimonials__author strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #3B3663;
}
.yt-testimonials__author span {
  display: block;
  font-size: 14px;
  color: #696687;
}

/* ===== Original Elementor/GT3 styles for section 987a2eb (reference) =====
   Все стили скопированы из elementor-section, elementor-container, elementor-column,
   elementor-widget-gt3-core-TestimonialsLite, gt3_testimonial, testimonials_item и т.д.
   Источники: frontend.css, gt3-core-testimonialslite.css, column.css
===== */
.yt-testimonials--elementor-ref .elementor-section { position: relative; }
.yt-testimonials--elementor-ref .elementor-section .elementor-container { display: flex; margin-inline: auto; position: relative; flex-wrap: wrap; }
.yt-testimonials--elementor-ref .elementor-section.elementor-section-boxed > .elementor-container { max-width: 1140px; }
.yt-testimonials--elementor-ref .elementor-section.elementor-section-stretched { position: relative; width: 100%; }
.yt-testimonials--elementor-ref .elementor-section.elementor-section-items-middle > .elementor-container { align-items: center; }
.yt-testimonials--elementor-ref .elementor-column-gap-default > .elementor-column > .elementor-element-populated { padding: 10px; }
.yt-testimonials--elementor-ref .elementor-inner-section .elementor-column-gap-no .elementor-element-populated { padding: 0; }
.yt-testimonials--elementor-ref .elementor-column.elementor-col-33 { width: 33.333%; }
.yt-testimonials--elementor-ref .elementor-widget-wrap { position: relative; width: 100%; flex-wrap: wrap; align-content: flex-start; display: flex; }
.yt-testimonials--elementor-ref .elementor-column { position: relative; min-height: 1px; display: flex; }
.yt-testimonials--elementor-ref .elementor-widget:not(:last-child) { margin-block-end: 20px; }
/* TestimonialsLite widget */
.yt-testimonials--elementor-ref .elementor-widget-gt3-core-TestimonialsLite .testimonials-canvas-quote,
.yt-testimonials--elementor-ref .elementor-widget-gt3-core-TestimonialsLite .testimonials-text-quote-holder { display: none; }
.yt-testimonials--elementor-ref .elementor-widget-gt3-core-TestimonialsLite .testimonials-text-quote { display: inline-block; float: left; width: 37px; height: auto; margin-top: .3em; }
.yt-testimonials--elementor-ref .elementor-widget-gt3-core-TestimonialsLite .testimonials-text-quote .testimonials-quote-icon-holder { width: 100%; padding-bottom: 100%; background-size: contain; background-repeat: no-repeat; background-position: 50%; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-size: contain; mask-size: contain; z-index: 2; -webkit-mask-position: center; mask-position: center; position: relative; background-color: currentColor; }
.yt-testimonials--elementor-ref .elementor-widget-gt3-core-TestimonialsLite .testimonials-text-wrapper { margin-left: 65px; }
.yt-testimonials--elementor-ref .elementor-widget-gt3-core-TestimonialsLite .testimonials_author_wrapper .testimonials-sub_name,
.yt-testimonials--elementor-ref .elementor-widget-gt3-core-TestimonialsLite .testimonials_author_wrapper .testimonials_photo,
.yt-testimonials--elementor-ref .elementor-widget-gt3-core-TestimonialsLite .testimonials_author_wrapper .testimonials_title { display: inline-block; vertical-align: middle; }
.yt-testimonials--elementor-ref .elementor-widget-gt3-core-TestimonialsLite .testimonials_author_wrapper .testimonials-sub_name { margin-left: 0; font-size: .875em; }
.yt-testimonials--elementor-ref .elementor-widget-gt3-core-TestimonialsLite .testimonials_author_wrapper .testimonials_photo img { margin-right: 18px; overflow: hidden; }
.yt-testimonials--elementor-ref .elementor-widget-gt3-core-TestimonialsLite .testimonials_author_wrapper .testimonials_photo img.rounded { border-radius: 250px; }
.yt-testimonials--elementor-ref .elementor-widget-gt3-core-TestimonialsLite .testimonials-text { font-size: 1.111em; line-height: 1.5; font-style: italic; margin-bottom: .7em; }
.yt-testimonials--elementor-ref .elementor-widget-gt3-core-TestimonialsLite .testimonials_title { font-weight: 700; }
.yt-testimonials--elementor-ref .elementor-widget-gt3-core-TestimonialsLite .gt3_aside_title_wrap { display: inline-block; vertical-align: middle; }
.yt-testimonials--elementor-ref .elementor-widget-gt3-core-TestimonialsLite .gt3_aside_title_wrap > div { display: block !important; margin-left: 0 !important; }
/* has_items_bg — карточки с фоном */
.yt-testimonials--elementor-ref .elementor-widget-gt3-core-TestimonialsLite.has_items_bg .testimonial_item_wrapper { padding: 25px; border-radius: 5px; }
.yt-testimonials--elementor-ref .elementor-inner-section .elementor-widget-gt3-core-TestimonialsLite.has_items_bg .testimonial_item_wrapper { margin-right: 25px; margin-left: 25px; }
/* color_#ffffff — фон карточек белый */
.yt-testimonials--elementor-ref .elementor-widget-gt3-core-TestimonialsLite.color_#ffffff .testimonial_item_wrapper { background-color: #ffffff; }
/* items_per_line-3 — 3 карточки в ряд */
.yt-testimonials--elementor-ref .gt3_carousel_items_per_line-3 > .elementor-column-wrap > .elementor-widget-wrap > .elementor-element { min-width: 33.33333%; margin-left: 0 !important; margin-right: 0 !important; }
/* slick dots */
.yt-testimonials--elementor-ref .elementor-widget-gt3-core-TestimonialsLite .slick-dots { padding-top: 25px !important; }
.yt-testimonials--elementor-ref .elementor-widget-gt3-core-TestimonialsLite .slick-dots li { border: 1px solid; border-radius: 10px; opacity: .7; position: relative; }
.yt-testimonials--elementor-ref .elementor-widget-gt3-core-TestimonialsLite .slick-dots li.slick-active:after { content: ""; position: absolute; top: -1px; bottom: -1px; left: -1px; right: -1px; border-radius: 50px; border: 6px solid; opacity: .4; }
/* author_position-after, image_position-aside — автор снизу, фото сбоку */
.yt-testimonials--elementor-ref .elementor-widget-gt3-core-TestimonialsLite .testimonials-text + .testimonials_author_wrapper { margin-bottom: 0; margin-top: 1em; }
.yt-testimonials--elementor-ref .elementor-widget-gt3-core-TestimonialsLite .testimonials_author_wrapper + .testimonials-text .testimonials-text-quote { display: none; }
/* nav-dots — точки навигации внизу */
.yt-testimonials--elementor-ref .elementor-widget-gt3-core-TestimonialsLite .slick-dots { width: 100%; text-align: center; }

/* ===== bcc378f FAQ — как в оригинале ===== */
.yt-faq { padding: 0 15px; }
.yt-faq__inner { max-width: 1140px; margin: 0 auto; display: flex; flex-wrap: nowrap; gap: 80px; align-items: flex-start; }
.yt-faq__col { flex: 0 0 calc(50% - 10px); min-width: 0; }
.yt-faq__col--img img { max-width: 100%; height: auto; display: block; }
.yt-faq__spacer { height: 50px; }
.yt-faq__label { margin: 0 0 3px; font-size: 14px; font-weight: 700; text-transform: uppercase; }
.yt-faq__heading { margin: 0 0 25px; font-size: 30px; font-weight: 600; line-height: 38px; color: #3B3663; }
.yt-faq__list { margin: 0 0 25px; }
.yt-faq__item { border: 1px solid #e6e6e7; border-radius: 5px; margin-bottom: 10px; overflow: hidden; }
.yt-faq__item summary { padding: 15px 20px; cursor: pointer; font-weight: 600; color: #3B3663; list-style: none; }
.yt-faq__item summary::-webkit-details-marker { display: none; }
.yt-faq__item summary::after { content: '+'; float: right; }
.yt-faq__item[open] summary::after { content: '−'; }
.yt-faq__item p { margin: 0; padding: 0 20px 15px; font-size: 16px; line-height: 1.6; color: #696687; }

/* ===== 865478e Get Free SEO Analysis — как в оригинале ===== */
.yt-analysis { padding: 0 15px; }
.yt-analysis__inner { max-width: 1140px; margin: 0 auto; display: flex; flex-wrap: nowrap; gap: 80px; align-items: flex-start; }
.yt-analysis__col { flex: 0 0 calc(50% - 10px); min-width: 0; }
.yt-analysis__spacer { height: 35px; }
.yt-analysis__label { margin: 0 0 3px; font-size: 14px; font-weight: 700; text-transform: uppercase; }
.yt-analysis__heading { margin: 0 0 15px; font-size: 30px; font-weight: 600; line-height: 38px; color: #3B3663; }
.yt-analysis__text { margin: 0 0 25px; font-size: 18px; line-height: 27px; color: #696687; }
.yt-analysis__form { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.yt-analysis__form input { padding: 12px 15px; border: 1px solid #e6e6e7; border-radius: 5px; font-size: 16px; font-family: inherit; }
.yt-analysis__form button { grid-column: 1 / -1; padding: 13px; background: linear-gradient(96deg, #6254e7 0%, #9289f1 100%); color: #fff; border: none; border-radius: 5px; font-size: 16px; font-weight: 600; cursor: pointer; font-family: inherit; }
.yt-analysis__form button:hover { opacity: 0.9; }
.yt-analysis__col--img img { max-width: 100%; height: auto; }

/* ===== 11249b6 Newsletter — как в оригинале, в 1.5 раза уже ===== */
.yt-newsletter { padding: 20px 15px; background: #f9f8ff; }
.yt-newsletter__inner { max-width: 760px; margin: 0 auto; display: flex; justify-content: center; align-items: center; }
.yt-newsletter__box { display: flex; align-items: center; gap: 100px; flex-wrap: nowrap; }
.yt-newsletter__box img { flex-shrink: 0; width: 94px; height: 82px; }
.yt-newsletter__content { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.yt-newsletter__title { margin: 0; font-size: 28px; font-weight: 700; color: #3B3663; white-space: nowrap; }
.yt-newsletter__desc { margin: 0; font-size: 16px; font-weight: 400; color: #696687; }
.yt-newsletter__box .yt-btn { flex-shrink: 0; white-space: nowrap; margin-left: 40px; }
/* Самолётик в блоке рассылки — уменьшен на 30%, отступ справа, без сплющивания */
section.yt-newsletter .yt-newsletter__inner .yt-newsletter__box > img {
  width: 66px; height: 57px; min-width: 66px; min-height: 57px;
  object-fit: contain; flex-shrink: 0;
  padding-right: 40px; box-sizing: content-box;
}

/* ===== Страница Услуги — заголовок (как gt3-page-title) ===== */
.yt-page-title {
  background-color: rgb(66, 59, 182);
  height: 261px;
  color: rgb(255, 255, 255);
  margin-bottom: 30px;
  background-image: url("/static/images/pic_paralax_2.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.yt-page-title__inner { width: 100%; }
.yt-container { max-width: 1140px; margin: 0 auto; padding: 0 15px; }
.yt-page-title__content { text-align: center; }
.yt-page-title__heading { margin: 0 0 10px; font-size: 36px; font-weight: 700; color: #fff; line-height: 1.2; }
.yt-page-title__breadcrumb { margin: 0; font-size: 14px; color: rgba(255,255,255,0.9); }
.yt-page-title__breadcrumb a { color: #fff; text-decoration: none; }
.yt-page-title__breadcrumb a:hover { text-decoration: underline; }
.yt-page-title__delimiter::before { content: "›"; margin: 0 8px; opacity: 0.8; }

/* Секция после параллакса (elementor-container elementor-column-gap-extended) */
.yt-services-intro { padding: 60px 15px 80px; background: #fff; }
.yt-container--gap-extended {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}
.yt-services-intro__col { flex: 1 1 45%; min-width: 280px; }
.yt-services-intro__col--img img { display: block; width: 100%; height: auto; max-width: 570px; }
.yt-services-intro__label { margin: 0 0 8px; font-size: 14px; font-weight: 700; text-transform: uppercase; color: #6254e7; }
.yt-services-intro__title { margin: 0 0 15px; font-size: 32px; font-weight: 700; color: #3B3663; line-height: 1.2; }
.yt-services-intro__desc { margin: 0 0 25px; font-size: 16px; color: #696687; line-height: 1.6; }
.yt-services-intro__boxes { display: flex; flex-wrap: wrap; gap: 25px; margin-bottom: 25px; }
.yt-services-intro__box { display: flex; gap: 20px; align-items: flex-start; flex: 1 1 45%; min-width: 240px; }
.yt-services-intro__box figure { margin: 0; flex-shrink: 0; }
.yt-services-intro__box figure img { display: block; width: 85px; height: auto; }
.yt-services-intro__box h5 { margin: 0 0 8px; font-size: 18px; font-weight: 700; color: #3B3663; }
.yt-services-intro__box p { margin: 0; font-size: 15px; color: #696687; line-height: 1.5; }

/* ===== Страница Контакты (как в contact-us/index.html) ===== */
.yt-contact-intro { padding: 40px 15px 20px; }
.yt-contact-intro__inner { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; max-width: 1140px; margin: 0 auto; }
.yt-contact-intro__col { flex: 1 1 0; min-width: 0; }
.yt-contact-intro__col--empty { flex: 0 0 25%; }
.yt-contact-intro__col--content { flex: 0 0 50%; text-align: center; }
.yt-contact-intro__label { margin: 0 0 3px; font-size: 14px; font-weight: 700; text-transform: uppercase; color: #696687; }
.yt-contact-intro__heading { margin: 0 0 15px; font-size: 28px; font-weight: 600; line-height: 36px; color: #3B3663; }
.yt-contact-intro__text { margin: 0; font-size: 16px; line-height: 26px; color: #696687; }
.yt-contact-image { padding: 0 15px 30px; }
.yt-contact-image__img { display: block; width: 100%; height: auto; max-width: 100%; border-radius: 5px; }
.yt-contact-main { padding: 20px 15px 50px; }
.yt-contact-main__inner { display: flex; flex-wrap: nowrap; gap: 40px; max-width: 1140px; margin: 0 auto; align-items: flex-start; }
.yt-contact-main__col { min-width: 0; }
.yt-contact-main__col--info { flex: 0 0 calc(50% - 20px); }
.yt-contact-main__col--form { flex: 0 0 calc(50% - 20px); }
.yt-contact-main__label { margin: 0 0 3px; font-size: 14px; font-weight: 700; text-transform: uppercase; color: #696687; }
.yt-contact-main__heading { margin: 0 0 15px; font-size: 28px; font-weight: 600; color: #3B3663; }
.yt-contact-main__text { margin: 0 0 25px; font-size: 16px; line-height: 26px; color: #696687; }
.yt-contact-main__meta { display: flex; flex-direction: column; gap: 12px; }
.yt-contact-main__meta-item { font-size: 16px; color: #3B3663; }
.yt-contact-main__meta-label { display: block; font-weight: 600; margin-bottom: 2px; color: #696687; }
.yt-contact-main__meta-item a { color: #6254e7; text-decoration: none; }
.yt-contact-main__meta-item a:hover { text-decoration: underline; }
.yt-contact-form-box { background: #f9f8ff; border-radius: 12px; padding: 30px; }
.yt-contact-form-box__heading { margin: 0 0 8px; font-size: 24px; font-weight: 600; color: #3B3663; }
.yt-contact-form-box__desc { margin: 0 0 25px; font-size: 16px; color: #696687; }
.yt-contact-form { display: flex; flex-direction: column; gap: 15px; }
.yt-contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.yt-contact-form__row:last-child { grid-template-columns: 1fr; }
.yt-contact-form input,
.yt-contact-form textarea { padding: 12px 15px; border: 1px solid #e6e6e7; border-radius: 5px; font-size: 16px; font-family: inherit; }
.yt-contact-form textarea { grid-column: 1 / -1; resize: vertical; min-height: 140px; }
.yt-contact-form button { padding: 13px; background: linear-gradient(96deg, #6254e7 0%, #9289f1 100%); color: #fff; border: none; border-radius: 5px; font-size: 16px; font-weight: 600; cursor: pointer; font-family: inherit; }
.yt-contact-form button:hover { opacity: 0.9; }
.yt-contact-map { padding: 0; }
.yt-contact-map__inner { width: 100%; }
.yt-contact-map__iframe { display: block; width: 100%; height: 400px; border: none; }

/* Case Studies (Previous Projects / Our Case Studies) */
/* Case Studies — как в оригинале: текст поверх картинки, градиент hover_type6 */
.yt-case-studies { padding: 80px 15px 80px; background: #FFFFFF; }
.yt-case-studies__spacer { height: 35px; }
.yt-case-studies__label { margin: 0 0 3px; font-size: 14px; font-weight: 700; text-transform: uppercase; line-height: 1.6; letter-spacing: 0.01px; text-align: center; color: #696687; }
.yt-case-studies__title { margin: 0 0 20px; font-size: 30px; font-weight: 700; line-height: 38px; text-align: center; color: #3B3663; }
/* Фильтр — как в оригинале: .isotope-filter isotope-filter--isotope, data-filter="all"/".branding" и т.д. */
.yt-case-studies__filter,
.isotope-filter { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; margin-bottom: 54px; font-size: 16px; line-height: 32px; text-transform: uppercase; }
.yt-case-studies__filter a,
.isotope-filter a { position: relative; color: #696687; text-decoration: none; padding: 0 12px; margin-right: 20px; border-radius: 16px; transition: color 0.2s; z-index: 0; font-family: 'Rubik', sans-serif; }
.yt-case-studies__filter a:last-child,
.isotope-filter a:last-child { margin-right: 0; }
.yt-case-studies__filter a::before,
.isotope-filter a::before { content: ""; position: absolute; z-index: -1; inset: 0; border-radius: inherit; background: transparent; transition: background 0.2s; }
.yt-case-studies__filter a:hover,
.isotope-filter a:hover { color: #fff; }
.yt-case-studies__filter a:hover::before,
.isotope-filter a:hover::before { background: linear-gradient(96deg, #f0ac0e 0%, #ff7426 100%); }
.yt-case-studies__filter a.active,
.isotope-filter a.active { color: #fff; }
.yt-case-studies__filter a.active::before,
.isotope-filter a.active::before { background: linear-gradient(96deg, #f0ac0e 0%, #ff7426 100%); }
.yt-case-studies__grid { display: flex; flex-wrap: wrap; margin-right: -30px; margin-bottom: -30px; }
.yt-case-studies__item { width: calc(33.333% - 30px); margin-right: 30px; margin-bottom: 30px; opacity: 1; transition: opacity 0.3s; }
.yt-case-studies__item.yt-hidden { display: none !important; }
.yt-case-studies__link { display: block; text-decoration: none; color: inherit; position: relative; overflow: hidden; }
.yt-case-studies__img-wrap { position: relative; padding-bottom: 100%; overflow: hidden; }
.yt-case-studies__img-wrap img { position: absolute; left: 0; top: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.yt-case-studies__link:hover .yt-case-studies__img-wrap img { transform: scale(1.05); }
.yt-case-studies__overlay { position: absolute; left: 0; right: 0; bottom: 0; top: 0; background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(98,84,231,0.9) 100%); opacity: 0.85; transition: opacity 0.3s; pointer-events: none; }
.yt-case-studies__link:hover .yt-case-studies__overlay { opacity: 1; }
.yt-case-studies__text { position: absolute; left: 0; right: 0; bottom: 0; padding: 20px 25px; color: #fff; z-index: 1; }
.yt-case-studies__text h4 { margin: 0 0 6px; font-size: 20px; font-weight: 700; line-height: 1.3; color: #fff; }
.yt-case-studies__cats { font-size: 14px; color: rgba(255,255,255,0.9); }
.yt-case-studies__cats span:not(:last-child)::after { content: ", "; }

@media (max-width: 992px) { .yt-case-studies__item { width: calc(50% - 30px); } }
@media (max-width: 600px) { .yt-case-studies__grid { margin-right: -15px; margin-bottom: -15px; } .yt-case-studies__item { width: calc(100% - 15px); margin-right: 15px; margin-bottom: 15px; } .yt-case-studies__filter { margin-bottom: 30px; font-size: 14px; } .yt-case-studies__filter a { padding: 0 10px; margin: 0 6px 0 0; } }

/* Секция карточек услуг с облаками (как cloud_animated_bottom) */
.yt-services-cards {
  position: relative;
  padding: 80px 15px 120px;
  background-color: #f5f6f7;
  background-image: url("/static/images/team_bg_img.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
/* Облака — как в оригинале cloud_animated_bottom */
.yt-services-cards--clouds::before {
  content: "";
  background-image: url("/static/images/bg-clouds_bottom.png");
  width: 100%;
  height: 191px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-repeat: repeat;
  background-position: 0 0;
  background-size: auto 100%;
  animation: yt-animatedBackground 300s linear infinite;
  pointer-events: none;
}
@keyframes yt-animatedBackground { 0% { background-position: 0 0; } to { background-position: -10000px 0; } }
.yt-services-cards .yt-container--gap-extended {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
}
.yt-services-cards__col {
  flex: 1 1 280px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.yt-services-cards__label { margin: 0; font-size: 14px; font-weight: 700; text-transform: uppercase; color: #6254e7; letter-spacing: 0.5px; }
.yt-services-cards__title { margin: 0 0 20px; font-size: 32px; font-weight: 700; color: #3B3663; line-height: 1.25; }
.yt-services-cards__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 40px 45px 43px;
  background-color: #fff;
  border-radius: 10px;
  transition: transform 0.25s ease;
}
.yt-services-cards__item:hover { transform: translateY(-3px); }
.yt-services-cards__icon { margin: 0 0 15px; }
.yt-services-cards__icon img { display: block; width: 100%; max-width: 170px; height: auto; }
.yt-services-cards__content h5 { margin: 0 0 10px; font-size: 18px; font-weight: 700; color: #3B3663; }
.yt-services-cards__content p { margin: 0; font-size: 15px; color: #696687; line-height: 1.6; }

/* ===== Footer 1f1a41e (elementor-4110) — как в оригинале ===== */
.yt-footer {
  background-image: url("/static/images/main_footer_bg.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #F0F0F0;
}

.yt-footer__top {
  /* Без border — линия только внутри контейнера */
}

.yt-footer__inner {
  max-width: 1190px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Верхняя часть: высота 148px как в оригинале, линия не от края до края (внутри контейнера) */
.yt-footer__top .yt-footer__inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  text-align: start;
  height: 148px;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
}

.yt-footer__col--logo {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.yt-footer__col--contact {
  width: 70%;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
}

.yt-footer__contact-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 0;
}

.yt-footer__top .yt-footer__spacer { height: 8px; }
.yt-footer__top .yt-footer__spacer-sm { height: 8px; }
.yt-footer__spacer { height: 30px; }
.yt-footer__spacer-sm { height: 20px; }
.yt-footer__spacer-md { height: 35px; }
.yt-footer__spacer-block { height: 35px; }

.yt-footer__logo { display: inline-flex; align-items: center; gap: 12px; }
.yt-footer__logo img { height: 48px; max-height: 48px; width: auto; display: block; }
.yt-footer__logo-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
  position: relative;
  left: -5px;
  top: -2px;
}
.yt-footer__logo-text {
  font-family: 'Nunito', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}
.yt-footer__logo-tagline {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 600;
  background: linear-gradient(90deg, #FF4969 -20%, #FC9D44 115%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding: 0;
  margin: 0;
}

/* Контактные блоки в ряд: первый с отступом 62px справа */
.yt-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 17px;
}

.yt-footer__contact-item:first-child {
  margin-right: 62px;
}

.yt-footer__contact-item:last-child {
  margin-bottom: 0;
}

.yt-footer__contact-item img { flex-shrink: 0; height: auto; }
.yt-footer__contact-item:first-child img { max-width: 38px; width: 38px; }
.yt-footer__contact-item:last-child img { max-width: 48px; width: 48px; }

.yt-footer__contact-item h6,
.yt-footer__contact-item .yt-footer__phone { margin: 0 0 0; font-size: 18px; font-weight: 400; line-height: 30px; color: #FFFFFF; }
.yt-footer__contact-item .yt-footer__phone a { color: inherit; text-decoration: none; }
.yt-footer__contact-item p { margin: 0; font-family: 'Rubik', sans-serif; font-size: 16px; font-weight: 400; color: #FFFFFF; }

.yt-footer__main { padding: 20px 0 10px; }

/* Сетка 4 колонки по 25% */
.yt-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 30px;
  text-align: left;
}

/* Заголовки блоков — Nunito, одинаковый отступ снизу как у О нас */
.yt-footer__block h4 {
  margin: 0 0 23px;
  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  color: #FFFFFF;
}

/* Описание — Rubik как body в оригинале */
.yt-footer__block p {
  margin: 0 0 33px;
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #F0F0F0;
}

.yt-footer__block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.yt-footer__block li { margin-bottom: 4px; }

.yt-footer__block a {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #F0F0F0;
  text-decoration: none;
  transition: color 0.3s;
}

.yt-footer__block a:hover { color: #F47514; }

.yt-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0;
}

.yt-footer__social {
  color: #F0F0F0;
  transition: color 0.3s;
}

.yt-footer__social:hover { color: #F46E15; }

.yt-footer__copy {
  margin: 37px 0 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.4em;
  color: #F0F0F0;
  text-align: center;
}

.yt-footer__copy a { color: inherit; text-decoration: none; transition: color 0.3s; }
.yt-footer__copy a:hover { color: #F47514; }

/* Responsive */
@media (min-width: 768px) {
  .yt-hero__col { min-height: 1px; }
}

@media (max-width: 1024px) {
  .yt-header-inner { flex-wrap: wrap; }
  .yt-nav { order: 3; width: 100%; }
  .yt-hero__col { width: 100%; }
  .yt-footer__col--logo { width: 24%; }
  .yt-footer__col--contact { width: 76%; }
  .yt-footer__grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

/* Мобильный хедер: только логотип + гамбургер, на одном уровне */
@media (max-width: 991px) {
  .yt-nav,
  .yt-cta {
    display: none !important;
  }
  .yt-hamburger {
    display: flex;
  }
  .yt-header-inner {
    align-items: center;
    justify-content: space-between;
  }
  .yt-mobile-menu-backdrop,
  .yt-mobile-menu {
    display: block;
  }
}

@media (max-width: 767px) {
  .yt-header {
    min-height: auto;
    padding: 20px 15px;
  }

  .yt-header-inner {
    flex-direction: row;
    gap: 15px;
    justify-content: space-between;
    align-items: center;
  }

  .yt-logo { text-align: left; }
  .yt-nav-list { flex-wrap: wrap; justify-content: center; }

  .yt-hero { padding-top: 30px; }
  .yt-hero__col { width: 100%; }
  .yt-hero__img-wrap { margin: 0; }
  .yt-hero__float,
  .yt-hero__shape { display: none; }
  .yt-hero__content { padding: 0; }
  .yt-hero__desc { margin-right: 0; }
  .yt-hero__typed { min-width: 200px; }
  #yt-typed { min-width: 200px; }
  .yt-hero__title,
  .yt-hero__subtitle,
  .yt-hero__typed { font-size: clamp(36px, 8vw, 56px); }
  .yt-hero__form input[type="url"] { padding: 0 20px; }
  .yt-hero__form-btn { position: static; margin-top: 10px; }
  .yt-hero__form input[type="submit"] { width: 100%; }

  .yt-logos { margin-top: 30px; }
  .yt-logos__item { width: 50%; }
  .yt-logos__item--1 img,
  .yt-logos__item--2 img,
  .yt-logos__item--3 img,
  .yt-logos__item--4 img {
    max-width: 100%;
    width: auto !important;
  }

  .yt-cta-section__title { font-size: 24px; line-height: 1.4; }
  .yt-cta-section__inner { padding: 25px 15px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .yt-cta-section { background-attachment: scroll; }

  .yt-features__row--title .yt-features__col--empty { display: none; }
  .yt-features__row--title .yt-features__col--center { width: 100%; }
  .yt-features__row--content .yt-features__col--img,
  .yt-features__row--content .yt-features__col--boxes { width: 100%; }
  .yt-features__col--img img { margin: 0; max-width: 100%; }
  .yt-features__box--2 { margin-left: 0; }
  .yt-features__box--3 { padding: 15px 10px; }

  .yt-success__col { width: 100%; }
  .yt-success__spacer--top { height: 30px; }
  .yt-success__spacer--bottom { height: 50px; }
  .yt-success__text { margin-right: 0; }

  .yt-join-cta__col--empty { display: none; }
  .yt-join-cta__col--content { width: 100%; }
  .yt-join-cta__spacer--top { height: 60px; }
  .yt-join-cta__spacer--bottom { height: 60px; }
  .yt-join-cta__heading { font-size: 28px; line-height: 1.3; }
  .yt-join-cta { background-attachment: scroll; }

  .yt-tabs__row { flex-wrap: wrap; }
  .yt-tabs__col--img, .yt-tabs__col--content { flex: none; width: 100%; padding: 0; }
  .yt-choose__inner { flex-wrap: wrap; }
  .yt-faq__inner, .yt-analysis__inner, .yt-newsletter__inner, .yt-contact-main__inner { flex-wrap: wrap; }
  .yt-newsletter__box { flex-wrap: wrap; justify-content: center; }
  .yt-newsletter__content { flex-wrap: wrap; }
  .yt-choose__col, .yt-faq__col, .yt-analysis__col, .yt-contact-main__col--info, .yt-contact-main__col--form { flex: none; width: 100%; }
  .yt-choose__col--left { padding: 10px; }
  .yt-choose__item { padding: 0; }
  .yt-testimonials__head { width: 100%; text-align: center; }
  .yt-testimonials { background-attachment: scroll; }

  .yt-footer__col--logo { width: 100%; align-items: center; }
  .yt-footer__col--contact { width: 100%; flex-direction: column; align-items: center; justify-content: center; }
  .yt-footer__contact-row { flex-direction: column; align-items: center; }
  .yt-footer__contact-item:first-child { margin-right: 0; margin-bottom: 15px; }
  .yt-footer__contact-item:last-child { margin-bottom: 0; }
  .yt-footer__top .yt-footer__inner { flex-direction: column; align-items: center; text-align: center; }
  .yt-footer__top .yt-footer__col--logo { align-items: center; }
  .yt-footer__grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .yt-footer__block { text-align: center; }
  .yt-footer__socials { justify-content: center; }

  .yt-services-cards { padding: 50px 15px 80px; }
  .yt-services-cards .yt-container--gap-extended { flex-direction: column; align-items: stretch; }
  .yt-services-cards__col { max-width: none; }
  .yt-services-cards__title { font-size: 26px; }
}

/* ===== Летающие точки (bubbles) — из bubble.css оригинала ===== */
@keyframes yt-animateBubble {
  0% { margin-top: 20%; }
  100% { margin-top: -30%; }
}
@keyframes yt-sideWays {
  0% { margin-left: 0; }
  100% { margin-left: 25px; }
}

.yt-bubbles {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  overflow: hidden;
  pointer-events: none;
}

.yt-bubble {
  position: absolute;
  border-radius: 50%;
  width: 5px;
  height: 5px;
  box-shadow: none;
}

.yt-bubble--1 { left: 6%; top: 45%; background: #ffb739; animation: yt-animateBubble 15s linear infinite, yt-sideWays 2s ease-in-out infinite alternate; }
.yt-bubble--2 { left: 5%; top: 80%; background: #fc4fdd; animation: yt-animateBubble 10s linear infinite, yt-sideWays 4s ease-in-out infinite alternate; }
.yt-bubble--3 { left: 10%; top: 40%; background: #5ed5cb; animation: yt-animateBubble 18s linear infinite, yt-sideWays 2s ease-in-out infinite alternate; }
.yt-bubble--4 { left: 20%; top: 0; background: #3de4a3; animation: yt-animateBubble 12s linear infinite, yt-sideWays 3s ease-in-out infinite alternate; }
.yt-bubble--5 { left: 30%; top: 50%; background: #fc4fb1; animation: yt-animateBubble 19s linear infinite, yt-sideWays 4s ease-in-out infinite alternate; }
.yt-bubble--6 { left: 50%; top: 0; background: #2c4aff; animation: yt-animateBubble 11s linear infinite, yt-sideWays 2s ease-in-out infinite alternate; }
.yt-bubble--7 { left: 65%; top: 70%; background: #ffb739; animation: yt-animateBubble 10s linear infinite, yt-sideWays 2s ease-in-out infinite alternate; }
.yt-bubble--8 { left: 80%; top: 10%; background: #8f3de4; animation: yt-animateBubble 12s linear infinite, yt-sideWays 3s ease-in-out infinite alternate; }
.yt-bubble--9 { left: 90%; top: 50%; background: #fff339; animation: yt-animateBubble 19s linear infinite, yt-sideWays 4s ease-in-out infinite alternate; }
.yt-bubble--10 { left: 80%; top: 80%; background: #fc4f4f; animation: yt-animateBubble 16s linear infinite, yt-sideWays 2s ease-in-out infinite alternate; }

/* ===== Back to top (как в оригинале ewebot) ===== */
.back_to_top_container {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 999;
  pointer-events: none;
}
.yt-back2top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #fff;
  color: #ff7426;
  border: 2px solid #ff7426;
  border-radius: 5px;
  text-decoration: none;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s, background 0.3s, color 0.3s;
}
.yt-back2top svg {
  width: 20px;
  height: 20px;
}
.yt-back2top.show {
  pointer-events: auto;
  opacity: 1;
}
.yt-back2top.show:hover {
  background: #ff7426;
  color: #fff;
}
@media (max-width: 600px) {
  .back_to_top_container { right: 25px; bottom: 25px; }
}


/* ===== Страница Блог (главная и внутренние) ===== */
.yt-blog { padding: 40px 15px 80px; }
/* 1240px контейнер → 1210px полезная ширина после padding (15*2), хватает на 870+40+300 */
.yt-blog .yt-container { max-width: 1240px; margin: 0 auto; padding: 0 15px; box-sizing: border-box; }
.yt-blog__inner { display: flex; flex-wrap: wrap; gap: 40px; width: 100%; max-width: 1210px; margin: 0 auto; align-items: flex-start; box-sizing: border-box; }
.yt-blog__main { flex: 0 0 870px; width: 870px; min-width: 0; max-width: 870px; box-sizing: border-box; }
.yt-blog__sidebar { flex: 0 0 300px; width: 300px; min-width: 0; box-sizing: border-box; }
.yt-blog__grid { display: grid; gap: 40px; }
.yt-blog__item { border-bottom: 1px solid #e6e6e7; padding-bottom: 30px; }
.yt-blog__item:last-of-type { border-bottom: none; }
.yt-blog__media { margin-bottom: 15px; overflow: hidden; border-radius: 5px; }
.yt-blog__media img { display: block; width: 100%; height: auto; }
.yt-blog__media a { display: block; }
.yt-blog__media--audio iframe { display: block; width: 100%; min-height: 166px; }
.yt-blog__cats { margin-bottom: 8px; font-size: 14px; }
.yt-blog__cat a { color: #6254e7; text-decoration: none; }
.yt-blog__cat a:hover { text-decoration: underline; }
.yt-blog__meta { margin-bottom: 10px; font-size: 14px; color: #696687; }
.yt-blog__meta a { color: inherit; text-decoration: none; }
.yt-blog__meta a:hover { color: #6254e7; }
.yt-blog__date { margin-right: 15px; }
.yt-blog__title { margin: 0 0 12px; font-size: 22px; font-weight: 600; line-height: 1.3; color: #3B3663; }
.yt-blog__title a { color: inherit; text-decoration: none; }
.yt-blog__title a:hover { color: #6254e7; }
.yt-blog__desc { margin: 0 0 15px; font-size: 16px; line-height: 1.6; color: #696687; }
.yt-blog__more { color: #6254e7; font-weight: 600; text-decoration: none; }
.yt-blog__more:hover { text-decoration: underline; }
.yt-blog__pager { display: flex; align-items: center; gap: 10px; margin-top: 40px; font-size: 16px; }
.yt-blog__pager a { color: #6254e7; text-decoration: none; padding: 5px 12px; border: 1px solid #e6e6e7; border-radius: 5px; }
.yt-blog__pager a:hover { background: #f9f8ff; }
.yt-blog__pager-current { padding: 5px 12px; background: #6254e7; color: #fff; border-radius: 5px; }
.yt-blog__pager-next { border-color: #6254e7; }
.yt-blog__widget { margin-bottom: 30px; padding: 25px; background: #f9f8ff; border-radius: 12px; }
.yt-blog__widget-title { margin: 0 0 15px; font-size: 18px; font-weight: 600; color: #3B3663; }
.yt-blog__widget-about { text-align: center; }
.yt-blog__widget-avatar { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin-bottom: 15px; }
.yt-blog__widget-about p { margin: 0 0 15px; font-size: 14px; color: #696687; line-height: 1.5; }
.yt-blog__widget-socials { display: flex; justify-content: center; gap: 15px; }
.yt-blog__widget-socials a { color: #6254e7; font-size: 14px; text-decoration: none; }
.yt-blog__widget-socials a:hover { text-decoration: underline; }
.yt-blog__search { display: flex; flex-direction: column; gap: 10px; }
.yt-blog__search input[type="text"] { padding: 10px 15px; border: 1px solid #e6e6e7; border-radius: 5px; font-family: inherit; }
.yt-blog__search input[type="submit"] { padding: 10px; background: #6254e7; color: #fff; border: none; border-radius: 5px; cursor: pointer; font-family: inherit; }
.yt-blog__cats-list { list-style: none; margin: 0; padding: 0; }
.yt-blog__cats-list li { margin-bottom: 8px; }
.yt-blog__cats-list a { color: #696687; text-decoration: none; }
.yt-blog__cats-list a:hover { color: #6254e7; }
.yt-blog__recent { list-style: none; margin: 0; padding: 0; }
.yt-blog__recent li { margin-bottom: 12px; }
.yt-blog__recent-date { display: block; font-size: 12px; color: #696687; margin-bottom: 2px; }
.yt-blog__recent a { color: #3B3663; text-decoration: none; }
.yt-blog__recent a:hover { color: #6254e7; }
.yt-blog__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.yt-blog__tags a { padding: 5px 12px; background: #fff; border: 1px solid #e6e6e7; border-radius: 5px; font-size: 14px; color: #696687; text-decoration: none; }
.yt-blog__tags a:hover { border-color: #6254e7; color: #6254e7; }
.yt-blog__widget p { margin: 0 0 8px; font-size: 14px; color: #696687; }
.yt-blog__widget p a { color: #6254e7; text-decoration: none; }
.yt-blog__widget p a:hover { text-decoration: underline; }

/* ===== Внутренняя страница статьи (blog-post) — все стили здесь, без wp-content ===== */
.yt-blog-single .main_wrapper { width: 100%; }
.yt-blog-single #main_content > .blog_post_preview { margin-bottom: 70px; border-bottom: 1px solid rgba(105,102,135,.1); padding-bottom: 30px; }
.yt-blog-single .single .format-standard-image .blog_post_media { overflow: hidden; border-radius: 5px; }
.yt-blog-single .blog_post_media img { width: 100%; height: auto; display: block; border-radius: 5px; max-width: 100%; }
/* elementor layout — минимальный набор для структуры статьи */
.yt-blog-single .elementor-section { display: flex; margin-bottom: 0; }
.yt-blog-single .elementor-container { display: flex; flex-wrap: wrap; width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 15px; box-sizing: border-box; }
.yt-blog-single .elementor-container.elementor-column-gap-extended { gap: 40px; }
.yt-blog-single .elementor-column { display: flex; flex-direction: column; }
.yt-blog-single .elementor-col-100 { width: 100%; }
.yt-blog-single .elementor-col-50 { width: calc(50% - 20px); flex: 0 0 auto; }
@media (max-width: 1024px) { .yt-blog-single .elementor-col-50 { width: 100%; } }
.yt-blog-single .elementor-widget-wrap { display: flex; flex-wrap: wrap; width: 100%; }
.yt-blog-single .elementor-widget-container { padding-top: 20px; width: 100%; box-sizing: border-box; }
.yt-blog-single .elementor-widget-heading .elementor-heading-title,
.yt-blog-single h2, .yt-blog-single h3 { font-family: Nunito, sans-serif; font-weight: 800; color: #3b3663; font-size: 24px; line-height: 30px; margin: 20px 0 15px; }
.yt-blog-single .elementor-widget-text-editor h1 { font-family: Nunito, sans-serif; font-weight: 800; color: #3b3663; font-size: 24px; line-height: 30px; margin: 20px 0 15px; }
.yt-blog-single .elementor-widget-text-editor p { margin: 0 0 18px; font-family: Rubik, sans-serif; font-size: 18px; line-height: 1.5; color: #696687; }
.yt-blog-single .elementor-widget-text-editor ul { margin: 0 0 18px; padding-left: 20px; }
.yt-blog-single .elementor-widget-text-editor li { margin-bottom: 8px; }
.yt-blog-single .elementor-widget-image img { border-radius: 5px; max-width: 100%; height: auto; }
.yt-blog-single .gt3_dropcaps { font-family: Nunito, sans-serif; font-weight: 800; font-size: 3.33em; line-height: 0.92; color: #5747e4; display: inline-block; float: left; width: auto; height: auto; margin: 0 10px 0 0; text-transform: uppercase; }
.yt-blog-single .blog_content blockquote { border-left: 4px solid #5747e4; padding: 8px 25px; margin: 25px 0; background: #f9f8ff; font-style: italic; }
.yt-blog-single table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.yt-blog-single table th, .yt-blog-single table td { border: 1px solid #e0e0e0; padding: 12px 15px; text-align: left; }
.yt-blog-single table th { background: #f5f5f5; font-weight: 600; }
.yt-blog-single .gt3_module_title h2, .yt-blog-single .blogpost_title a { color: #3b3663; }
.yt-blog-single .gt3_related_wrap { margin-top: 40px; }
.yt-blog-single .gt3_module_related_posts { display: flex; flex-wrap: wrap; gap: 30px; }
.yt-blog-single .gt3_module_related_posts.items2 .spacing_beetween_items_30 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
@media (max-width: 768px) { .yt-blog-single .gt3_module_related_posts.items2 .spacing_beetween_items_30 { grid-template-columns: 1fr; } }
.yt-blog-single .spacing_beetween_items_30 { display: flex; flex-wrap: wrap; gap: 30px; width: 100%; }
.yt-blog-single .blog_post_preview .listing_meta { font-size: 14px; color: #696687; margin-bottom: 8px; }
.yt-blog-single .blog_post_preview .blogpost_title { margin: 0 0 12px; font-size: 22px; font-weight: 600; line-height: 1.3; }
.yt-blog-single .blog_post_preview .blogpost_title a { color: inherit; text-decoration: none; }
.yt-blog-single .blog_post_preview .blogpost_title a:hover { color: #6254e7; }
.yt-blog-single .gt3_module_button_list a { color: #6254e7; font-weight: 600; text-decoration: none; }
.yt-blog-single .gt3_module_button_list a:hover { text-decoration: underline; }

/* ===== Страница ИИ агенты (стили из blog-packery-3 / gt3-core-blog-packery) ===== */
.yt-ai-agents { padding: 30px 15px 80px; }
.yt-ai-agents .elementor-widget-gt3-core-blog-packery { margin: 0; }
.yt-ai-agents .isotope_wrapper { transition: height 0.4s; display: grid; grid-template-columns: repeat(6, 1fr); gap: 30px; align-items: start; }
.yt-ai-agents .isotope_item { margin-bottom: 0; position: relative; z-index: 1; }
.yt-ai-agents .isotope_item.packery_extra_size-default { grid-column: span 2; }
.yt-ai-agents .isotope_item.packery_extra_size-large_width { grid-column: span 4; align-self: end; }
.yt-ai-agents .isotope_item.packery_extra_size-large_width_height { grid-column: span 3; }
.yt-ai-agents .isotope_item .item_wrapper { transition: opacity 0.3s ease-in-out; opacity: 1; }
.yt-ai-agents .rounded_item_yes .blog_post_preview .item_wrapper { border-radius: 5px; overflow: hidden; }
.yt-ai-agents .gt3_blog_packery__img_wrap { position: relative; z-index: 1; overflow: hidden; border-radius: 5px; }
.yt-ai-agents .gt3_blog_packery__img { position: relative; overflow: hidden; margin: auto; }
.yt-ai-agents .blog_post_preview .gt3_blog_packery__image-placeholder { background-color: #f9f8ff; position: relative; top: 0; left: 0; width: 100%; }
.yt-ai-agents .blog_post_preview:not(.empty_post_image) .gt3_blog_packery__image-placeholder { background-color: initial !important; opacity: 0; }
.yt-ai-agents .item_wrapper .gt3_blog_packery__img .gt3_blog_packery__image-placeholder + img { position: absolute; top: 0; bottom: 0; left: 0; right: 0; height: 100%; }
.yt-ai-agents .item_wrapper .gt3_blog_packery__img img { width: 100%; display: block; max-width: none; position: relative; z-index: 1; object-fit: cover; transition: all 0.4s; will-change: transform; }
.yt-ai-agents .blog_post_preview:not(.empty_post_image) .gt3_blog_packery__img_wrap:after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 200%; z-index: 1; background: linear-gradient(0deg, rgba(0,0,0,0.6) 40%, transparent); transition: transform 0.45s cubic-bezier(0.3, 0.95, 0.5, 1), opacity 0.45s cubic-bezier(0.3, 0.95, 0.5, 1); }
.yt-ai-agents .blog_post_preview:not(.empty_post_image):hover .gt3_blog_packery__img_wrap:after { opacity: 0.7; transform: translateY(-50%); }
.yt-ai-agents .blog_post_preview:not(.empty_post_image):hover .item_wrapper .gt3_blog_packery__img img { transform: scale(1.05); }
.yt-ai-agents .gt3_blog_packery__text_wrap { padding: 30px; position: absolute; top: 0; bottom: 0; left: 0; right: 0; z-index: 2; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; }
.yt-ai-agents .blog_post_preview .item_wrapper { position: relative; z-index: 1; }
.yt-ai-agents .blog_post_preview:not(.empty_post_image) .gt3_blog_packery__text_wrap { color: #fff; }
.yt-ai-agents .blog_post_preview.empty_post_image .gt3_blog_packery__text_wrap { color: #3B3663; }
.yt-ai-agents .blog_post_preview.empty_post_image .gt3_blog_packery__text_wrap .blogpost_title a,
.yt-ai-agents .blog_post_preview.empty_post_image .gt3_blog_packery__text_wrap .blog_item_description,
.yt-ai-agents .blog_post_preview.empty_post_image .gt3_blog_packery__text_wrap .listing_meta { color: inherit; }
.yt-ai-agents .blog_post_preview:not(.empty_post_image) .gt3_blog_packery__text_wrap .blogpost_title a,
.yt-ai-agents .blog_post_preview:not(.empty_post_image) .gt3_blog_packery__text_wrap .blog_item_description,
.yt-ai-agents .blog_post_preview:not(.empty_post_image) .gt3_blog_packery__text_wrap .listing_meta,
.yt-ai-agents .blog_post_preview:not(.empty_post_image) .gt3_blog_packery__text_wrap .listing_meta span,
.yt-ai-agents .blog_post_preview:not(.empty_post_image) .gt3_blog_packery__text_wrap .gt3_module_button_list a { color: inherit !important; }
.yt-ai-agents .blog_post_preview:not(.empty_post_image) .gt3_blog_packery__text_wrap .blogpost_title a:hover,
.yt-ai-agents .blog_post_preview:not(.empty_post_image) .gt3_blog_packery__text_wrap .gt3_module_button_list a:hover { opacity: 0.9; }
.yt-ai-agents .gt3_blog_packery__post_footer { margin-top: auto; }
.yt-ai-agents .gt3_blog_packery__post_footer:after { content: ""; display: table; clear: both; }
.yt-ai-agents .listing_meta { margin-bottom: 6px; font-size: 12px; font-weight: 600; text-transform: uppercase; opacity: 0.9; }
.yt-ai-agents .listing_meta .post_cat { margin-right: 12px; }
.yt-ai-agents .blogpost_title { padding-bottom: 0; margin: 0 0 8px; font-size: 1.25em; font-weight: 700; line-height: 1.3; }
.yt-ai-agents .blogpost_title a { text-decoration: none; }
.yt-ai-agents .packery_extra_size-large_width .gt3_blog_packery__text_wrap .blogpost_title a { font-size: 1.25em !important; line-height: 1.25em; }
.yt-ai-agents .blog_item_description { padding-top: 12px; margin-bottom: -12px; font-size: 0.9em; line-height: 1.5; opacity: 0.95; }
.yt-ai-agents .gt3_module_button_list a { font-size: 14px; font-weight: 600; text-decoration: none; }
.yt-ai-agents .gt3_blog_packery__text_wrap .gt3_blog_packery__text_wrap_link { position: absolute; top: 0; left: 0; bottom: 0; right: 0; z-index: -1; }
@media only screen and (max-width: 1024px) {
  .yt-ai-agents .packery_extra_size-large_width .gt3_blog_packery__text_wrap .blogpost_title a { font-size: 1em !important; line-height: inherit; }
  .yt-ai-agents .gt3_blog_packery__text_wrap { padding: 15px 25px; }
  .yt-ai-agents .blog_post_preview .gt3_blog_packery__text_wrap .blog_item_description { font-size: 0.8em; line-height: 1.5; }
  .yt-ai-agents .blog_post_preview .gt3_blog_packery__text_wrap .blogpost_title a { font-size: 0.75em !important; }
}
@media screen and (max-width: 768px) {
  .yt-ai-agents .isotope_wrapper { grid-template-columns: 1fr; margin-right: 0; margin-bottom: 0; gap: 20px; }
  .yt-ai-agents .isotope_item { grid-column: span 1 !important; align-self: start; }
  .yt-ai-agents .packery_extra_size-large_width .gt3_blog_packery__text_wrap .blogpost_title a { font-size: 1em !important; line-height: inherit; }
}