@import url("../../common.css");
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Глобальные переменные CSS */
:root {
  --fs-color-primary: #3498DB;
  --smetana-drop-shadow: 0px 2px 20px 0px rgba(202,202,202,0.54);
  --smetana-block-drop-shadow: 0px 2px 80px 0px rgba(225, 225, 225, 0.78);
}

/* Стили блока header */

[data-block-id="header"] .header-container {
  position: fixed;
  width: 100%;
  top: 0;
  padding: 10px 0;
  background-color: var(--background-color);
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 100;
}
[data-block-id="header"] .header__view {
  position: relative;
  width: 100%;
  max-width: 1300px;
  height: 50px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
}
[data-block-id="header"] .header__logo {
  position: relative;
  width: 65px;
  height: 60px;
  margin-top: 7px;
}
[data-block-id="header"] .header__nav {
  position: relative;
  width: 285px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
[data-block-id="header"] .header__nav-item {
  color: var(--text-color);
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
  padding-bottom: 5px;
  position: relative;
  cursor: pointer;
  transition: color 0.3s ease;
}
[data-block-id="header"] .header__nav-item::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}
[data-block-id="header"] .header__nav-item:hover {
  color: var(--primary-color);
}
[data-block-id="header"] .header__nav-item:hover::after {
  width: 100%;
}
[data-block-id="header"] .header__login-button {
  position: relative;
  width: 145px;
  height: 47px;
  background-color: var(--primary-color);
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
[data-block-id="header"] .header__login-button:hover {
  background-color: var(--primary-color-dark);
}
[data-block-id="header"] .header__login-text {
  color: white;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}
[data-block-id="header"] /* Бургер-меню */
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}
[data-block-id="header"] .burger-menu span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--text-color);
  transition: all 0.3s ease;
}
[data-block-id="header"] .burger-menu.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
[data-block-id="header"] .burger-menu.active span:nth-child(2) {
  opacity: 0;
}
[data-block-id="header"] .burger-menu.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
[data-block-id="header"] /* Мобильное меню */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--background-color);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 100;
  padding-top: 80px;
}
[data-block-id="header"] .mobile-menu.active {
  transform: translateX(0);
}
[data-block-id="header"] .mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
[data-block-id="header"] .mobile-nav-item {
  color: var(--text-color);
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  text-decoration: none;
  transition: color 0.3s ease;
}
[data-block-id="header"] .mobile-nav-item:hover {
  color: var(--primary-color);
}
[data-block-id="header"] .mobile-login-button {
  margin-top: 20px;
  width: 200px;
  height: 50px;
  background-color: var(--primary-color);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
[data-block-id="header"] .mobile-login-button:hover {
  background-color: var(--primary-color-dark);
}
[data-block-id="header"] .mobile-login-text {
  color: white;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
}
@media (max-width: 1320px) {
  [data-block-id="header"] .header__view {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  [data-block-id="header"] .header__nav, [data-block-id="header"] .header__login-button {
    display: none;
  }
  [data-block-id="header"] .burger-menu {
    display: flex;
  }
  [data-block-id="header"] body.menu-open {
    overflow: hidden;
  }
}

[data-block-id="header"] /* a blue color as a generic focus style */
button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}
[data-block-id="header"] a {
  text-decoration: none;
}
[data-block-id="header"] .box {
    position: relative;
    width: 1302px;
    height: 89px;
    margin: 0 auto;
  }
[data-block-id="header"] .box .view {
    position: fixed;
    width: 1302px;
    height: 89px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
[data-block-id="header"] .box .element {
    position: absolute;
    width: 80px;
    height: 74px;
    top: 7px;
    left: 0;
  }
[data-block-id="header"] .box .overlap-group-wrapper {
    position: absolute;
    width: 147px;
    height: 47px;
    top: 24px;
    left: 1157px;
  }
[data-block-id="header"] .box .overlap-group {
    position: relative;
    width: 145px;
    height: 47px;
    background-color: #378ad7;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
[data-block-id="header"] .box .overlap-group:hover {
    background-color: #2a6db0;
  }
[data-block-id="header"] .box .text-wrapper {
    top: 15px;
    left: 50px;
    color: #ffffff;
    position: absolute;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
    white-space: nowrap;
  }
[data-block-id="header"] .box .group {
    position: absolute;
    width: 279px;
    height: 19px;
    top: 36px;
    left: 50%;
    transform: translateX(-50%);
  }
[data-block-id="header"] .box .div {
    position: relative;
    width: 285px;
    height: 19px;
    display: flex;
    justify-content: space-between;
  }
[data-block-id="header"] .box .text-wrapper-2, [data-block-id="header"] .box .text-wrapper-3, [data-block-id="header"] .box .text-wrapper-4 {
    color: #000000;
    position: relative;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
    white-space: nowrap;
    padding-bottom: 5px;
    position: relative;
    cursor: pointer;
  }
[data-block-id="header"] .box .text-wrapper-2::after, [data-block-id="header"] .box .text-wrapper-3::after, [data-block-id="header"] .box .text-wrapper-4::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #378ad7;
    transition: width 0.3s ease;
  }
[data-block-id="header"] .box .text-wrapper-2:hover::after, [data-block-id="header"] .box .text-wrapper-3:hover::after, [data-block-id="header"] .box .text-wrapper-4:hover::after {
    width: 100%;
  }


/* Стили блока hero */

[data-block-id="hero"] /* Импортируем общие стили */


/* Сброс стилей */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
[data-block-id="hero"] body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.5;
}
[data-block-id="hero"] /* Основной контейнер */
.hero {
    width: 100%;
    padding: 100px 20px;
    background-color: var(--background-color);
    position: relative;
}
[data-block-id="hero"] .hero__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}
[data-block-id="hero"] /* Заголовок */
.hero__title {
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 15px;
    font-family: "Inter", sans-serif;
    color: var(--text-color);
}
[data-block-id="hero"] .hero__title-accent {
    color: var(--primary-color);
    display: inline;
}
[data-block-id="hero"] .hero__subtitle {
    font-size: 20px;
    margin-bottom: 10px;
    font-family: "Inter", sans-serif;
    color: var(--text-color-secondary);
}
[data-block-id="hero"] /* Изображение и элементы */
.hero__image-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 400px;
    margin-bottom: 15px;
}
[data-block-id="hero"] .hero__image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 450px;
    z-index: 2;
}
[data-block-id="hero"] /* Треугольник и карандаш по краям блока */
.hero__triangle {
    position: absolute;
    top: 140px;
    left: 5%;
    width: 120px;
    z-index: 1;
}
[data-block-id="hero"] .hero__pencil {
    position: absolute;
    top: 160px;
    right: 5%;
    width: 100px;
    z-index: 1;
}
[data-block-id="hero"] /* Плавающие блоки */
.hero__badge {
    position: absolute;
    background-color: var(--background-color);
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    font-size: 16px;
    z-index: 3;
    white-space: nowrap;
    font-family: "Inter", sans-serif;
}
[data-block-id="hero"] /* Корректируем позиции облачков */
.hero__badge-webinar {
    bottom: 100px;
    left: 25%;
    position: absolute;
}
[data-block-id="hero"] .hero__cursor {
    position: absolute;
    width: 20px;
    height: 20px;
    bottom: -10px;
    right: 10px;
}
[data-block-id="hero"] .hero__badge-online {
    top: 40%;
    right: 20%;
}
[data-block-id="hero"] .hero__badge-school {
    top: 40px;
    left: 30%;
    transform: translateX(-50%);
}
[data-block-id="hero"] /* CTA секция */
.hero__cta-text {
    font-size: 20px;
    margin-bottom: 20px;
    font-family: "Inter", sans-serif;
    color: var(--text-color);
}
[data-block-id="hero"] .hero__button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-family: "Inter", sans-serif;
    transition: background-color 0.3s ease;
}
[data-block-id="hero"] .hero__button:hover {
    background-color: var(--primary-color-dark);
}
@media (max-width: 768px) {
  [data-block-id="hero"] .hero__title {
        font-size: 28px;
    }
  [data-block-id="hero"] .hero__subtitle {
        font-size: 18px;
    }
  [data-block-id="hero"] .hero__image {
        max-height: 400px;
    }
  [data-block-id="hero"] .hero__badge {
        padding: 8px 15px;
        font-size: 14px;
    }
  [data-block-id="hero"] .hero__triangle {
        width: 80px;
        left: 2%;
        top: 120px;
    }
  [data-block-id="hero"] .hero__pencil {
        width: 75px;
        right: 2%;
        top: 140px;
    }
  [data-block-id="hero"] .hero__image-wrapper {
        height: 350px;
    }
}

@media (max-width: 576px) {
  [data-block-id="hero"] .hero__title {
        font-size: 24px;
    }
  [data-block-id="hero"] .hero__subtitle {
        font-size: 16px;
    }
  [data-block-id="hero"] .hero__button {
        padding: 12px 30px;
        font-size: 16px;
    }
  [data-block-id="hero"] .hero__image {
        max-height: 350px;
    }
  [data-block-id="hero"] .hero__image-wrapper {
        height: 300px;
    }
  [data-block-id="hero"] .hero__badge-webinar {
        bottom: 80px;
        left: 15%;
    }
  [data-block-id="hero"] .hero__badge-online {
        top: 40%;
        right: 15%;
    }
  [data-block-id="hero"] .hero__badge-school {
        top: 30px;
        left: 30%;
    }
}

@media (max-width: 767px) {
  .hero__badge-school {
    display: none !important;
  }
}



/* Стили блока choose-level */

/* Импортируем общие стили */


/* Изолируем переменные для блока */
[data-block-id="choose-level"] {
  --level-card-height: 300px;
  --level-card-width: 450px;
}
[data-block-id="choose-level"] .choose-level__section {
  position: relative;
  width: 100%;
  padding: 50px 0;
}
[data-block-id="choose-level"] .choose-level__container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 15px;
}
[data-block-id="choose-level"] .choose-level__title {
  text-transform: uppercase;
  font-size: clamp(1.25rem, 2.5vw, 2.25rem);
  line-height: 1.44em;
  margin-bottom: 2rem;
  font-weight: 400;
  text-align: center;
}
[data-block-id="choose-level"] .choose-level__title-accent {
  color: var(--primary-color);
}
[data-block-id="choose-level"] .choose-level__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  position: relative;
}
[data-block-id="choose-level"] .choose-level__card {
  padding: 0 5px;
  margin-bottom: 20px;
  flex: 0 0 var(--level-card-width);
  width: var(--level-card-width);
  min-width: var(--level-card-width);
  max-width: var(--level-card-width);
  margin-right: 10px;
}
[data-block-id="choose-level"] .choose-level__card:last-child {
  margin-right: 0;
}
[data-block-id="choose-level"] .choose-level__card-inner {
  min-height: var(--level-card-height);
  height: var(--level-card-height);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 25px 30px 25px;
  border-radius: 20px;
  background-color: var(--primary-color);
  color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
[data-block-id="choose-level"] .choose-level__card-title {
  font-size: clamp(1.125rem, 2.2vw, 1.5rem);
  margin-bottom: 8px;
  color: white;
  font-weight: 600 !important;
}
[data-block-id="choose-level"] .choose-level__card-list {
  flex-grow: 1;
  margin-bottom: 10px;
  font-size: clamp(0.75rem, 2vw, 1.125rem);
}
[data-block-id="choose-level"] .choose-level__card-list p {
  margin-bottom: 8px;
  line-height: 1.3;
}
[data-block-id="choose-level"] .choose-level__card-price {
  margin-bottom: 15px;
  width: 100%;
}
[data-block-id="choose-level"] .choose-level__card-price-name {
  font-size: clamp(0.75rem, 2vw, 1.125rem);
  line-height: 1;
  margin-bottom: 8px;
}
[data-block-id="choose-level"] .choose-level__card-price-amount {
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-weight: 600;
}
[data-block-id="choose-level"] .choose-level__card-button {
  margin: 0;
  background-color: white;
  color: var(--primary-color);
  border: none;
  font-weight: 700;
  line-height: 1;
  padding: 12px 30px;
  border-radius: 8px;
  min-width: 160px;
  font-size: clamp(0.7rem, 1.2vw, 1rem);
  cursor: pointer;
  transition: background-color 0.2s;
}
[data-block-id="choose-level"] .choose-level__card-button:hover {
  background-color: #f5f5f5;
}
[data-block-id="choose-level"] .choose-level__card--disabled .choose-level__card-inner {
  background-color: rgba(0,0,0,0.25) !important;
}
[data-block-id="choose-level"] .choose-level__card--disabled .choose-level__card-button {
  color: rgba(0,0,0,0.25) !important;
  pointer-events: none;
}
[data-block-id="choose-level"] /* Стили для горизонтального скролла */
.choose-level__row.scrollable {
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Скрываем скроллбар в Firefox */
  -ms-overflow-style: none; /* Скрываем скроллбар в IE и Edge */
  padding-bottom: 0; /* Убираем отступ снизу */
  position: relative;
  justify-content: flex-start;
}
[data-block-id="choose-level"] /* Скрываем скроллбар в Chrome, [data-block-id="choose-level"] Safari и Opera */
.choose-level__row.scrollable::-webkit-scrollbar {
  display: none;
}
[data-block-id="choose-level"] /* Стрелки для скролла */
.choose-level__scroll-arrows {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 100;
  transition: opacity 0.3s;
  opacity: 0.8;
  display: none;
}
[data-block-id="choose-level"] .choose-level__scroll-arrows:hover {
  opacity: 1;
}
[data-block-id="choose-level"] .choose-level__scroll-arrows::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
}
[data-block-id="choose-level"] .choose-level__scroll-left {
  left: 20px;
}
[data-block-id="choose-level"] .choose-level__scroll-left::before {
  transform: translate(-40%, -50%) rotate(-135deg);
}
[data-block-id="choose-level"] .choose-level__scroll-right {
  right: 20px;
}
[data-block-id="choose-level"] .choose-level__scroll-right::before {
  transform: translate(-60%, -50%) rotate(45deg);
}
@media (max-width: 1500px) {
  [data-block-id="choose-level"] :root {
    --level-card-width: 400px;
  }
}

@media (max-width: 1300px) {
  [data-block-id="choose-level"] :root {
    --level-card-width: 350px;
  }
}

@media (max-width: 1100px) {
  [data-block-id="choose-level"] :root {
    --level-card-width: 300px;
  }
}

@media (max-width: 992px) {
  [data-block-id="choose-level"] .choose-level__row {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
  }
  [data-block-id="choose-level"] .choose-level__card {
    flex: 0 0 80%;
    min-width: 300px;
  }
}

@media (max-width: 767px) {
  [data-block-id="choose-level"] .choose-level__card-inner {
    min-height: 260px;
    padding: 20px 15px;
  }
  [data-block-id="choose-level"] .choose-level__card-button {
    padding: 10px 25px;
    width: 100%;
  }
  [data-block-id="choose-level"] .choose-level__scroll-arrows {
    display: none !important;
  }
}



/* Стили блока where-to-work */

[data-block-id="where-to-work"] /* Основные переменные и сброс стилей */
:root {
    --smetana-drop-shadow: 0px 2px 20px 0px rgba(202,202,202,0.54);
    --smetana-block-drop-shadow: 0px 2px 80px 0px rgba(225, 225, 225, 0.78);
    --fs-color-primary: #4a90e2; /* Синий цвет как на скриншоте */
}
[data-block-id="where-to-work"] /* Сброс стилей */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
[data-block-id="where-to-work"] body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.5;
    color: #333;
    background-color: #f9f9f9;
}
[data-block-id="where-to-work"] /* Стили заголовков */
h1, [data-block-id="where-to-work"] h2 {
    text-transform: uppercase;
    font-size: clamp(1.25rem, 2.5vw, 2.25rem);
    line-height: 1.44em;
    margin-bottom: 2rem;
    font-weight: 400;
    text-align: center;
}
[data-block-id="where-to-work"] h3 {
    font-size: clamp(0.875rem, 1.6vw, 1.25rem);
    margin-bottom: 0.75rem;
    line-height: 1.2em;
    font-weight: 400 !important;
}
[data-block-id="where-to-work"] p {
    margin-bottom: 0.75rem;
}
[data-block-id="where-to-work"] .text-center {
    text-align: center;
}
[data-block-id="where-to-work"] .accent {
    color: var(--fs-color-primary);
}
[data-block-id="where-to-work"] /* Сетка для размещения элементов */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}
[data-block-id="where-to-work"] .section {
    padding-top: 30px;
    padding-bottom: 30px;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
[data-block-id="where-to-work"] .row {
    display: flex;
    align-items: center;
    margin-left: -15px;
    margin-right: -15px;
}
[data-block-id="where-to-work"] /* Стили для карточек "Где может работать сметчик" */
.where-to__card {
    padding: 18px 24px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
}
[data-block-id="where-to-work"] .where-to__card-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
[data-block-id="where-to-work"] .col-image {
    flex: 0 0 35%;
    padding: 0 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}
[data-block-id="where-to-work"] .col-cards {
    flex: 0 0 65%;
    padding: 0 15px;
}
[data-block-id="where-to-work"] .where-to__card-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 600px;
    overflow: hidden;
}
[data-block-id="where-to-work"] .where-to__card-image img {
    max-width: 75%;
    max-height: 600px;
    height: auto;
    display: block;
    object-fit: contain;
}
[data-block-id="where-to-work"] .where-to__card-title {
    color: #4a90e2;
    font-size: clamp(0.8rem, 1.5vw, 1.1rem);
    font-weight: 700 !important;
    margin-bottom: 0.5em;
    text-align: left;
}
[data-block-id="where-to-work"] .where-to__card-list p {
    font-size: clamp(0.7rem, 1.3vw, 0.9rem);
    line-height: 1.4;
    color: #333;
    margin-bottom: 0.5em;
    text-align: left;
}
[data-block-id="where-to-work"] /* Специфические стили для каждой карточки, [data-block-id="where-to-work"] чтобы точно соответствовать изображению */
.where-to__card:nth-child(1) .where-to__card-title, [data-block-id="where-to-work"] .where-to__card:nth-child(2) .where-to__card-title {
    color: #4a90e2;
}
[data-block-id="where-to-work"] .where-to__card:nth-child(3) .where-to__card-title {
    color: #4a90e2;
}
[data-block-id="where-to-work"] .where-to__card:nth-child(4) .where-to__card-title {
    color: #4a90e2;
}
[data-block-id="where-to-work"] /* Стили для текста внутри карточек */
.where-to__card-list p:first-of-type {
    margin-top: 0;
}
[data-block-id="where-to-work"] .where-to__card-list p:last-of-type {
    margin-bottom: 0;
}
[data-block-id="where-to-work"] /* Стили для выделения важных фраз в тексте */
.where-to__card:nth-child(2) .where-to__card-list p:first-of-type {
    font-weight: 500;
}
[data-block-id="where-to-work"] .where-to__card:nth-child(4) .where-to__card-list p:first-of-type {
    font-weight: 500;
}
@media (max-width: 850px) {
  [data-block-id="where-to-work"] .row {
        flex-direction: column;
    }
  [data-block-id="where-to-work"] .col-image, [data-block-id="where-to-work"] .col-cards {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
  [data-block-id="where-to-work"] .where-to__card-container {
        grid-template-columns: 1fr;
    }
  [data-block-id="where-to-work"] .where-to__card-image {
        max-height: 450px;
    }
  [data-block-id="where-to-work"] .where-to__card-image img {
        max-width: 60%;
        max-height: 450px;
    }
}

@media (max-width: 480px) {
  [data-block-id="where-to-work"] .where-to__card-image {
        max-height: 350px;
    }
  [data-block-id="where-to-work"] .where-to__card-image img {
        max-width: 80%;
        max-height: 350px;
    }
}

[data-block-id="where-to-work"] /* Дополнительные стили для блока "Где может работать сметчик" */
.where-to-work__section {
    padding: 50px 0;
    background-color: #f9f9f9;
}
[data-block-id="where-to-work"] .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
[data-block-id="where-to-work"] .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
[data-block-id="where-to-work"] .col-image {
    flex: 0 0 40%;
    padding: 0 15px;
}
[data-block-id="where-to-work"] .col-cards {
    flex: 0 0 60%;
    padding: 0 15px;
}
[data-block-id="where-to-work"] .text-center {
    text-align: center;
}
[data-block-id="where-to-work"] h2 {
    margin-bottom: 40px;
    font-size: clamp(1.25rem, 2.5vw, 2.25rem);
}
[data-block-id="where-to-work"] .accent {
    color: #4a90e2;
}
[data-block-id="where-to-work"] .where-to__card-image img {
    max-width: 100%;
    height: auto;
}
@media (max-width: 850px) {
  [data-block-id="where-to-work"] .row {
        flex-direction: column;
    }
  [data-block-id="where-to-work"] .col-image, [data-block-id="where-to-work"] .col-cards {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
  [data-block-id="where-to-work"] .where-to__card-container {
        grid-template-columns: 1fr;
    }
}



/* Стили блока funnel */

[data-block-id="funnel"] /* Импорт шрифтов */


/* Основные переменные и сброс стилей */
:root {
    --smetana-drop-shadow: 0px 2px 20px 0px rgba(202,202,202,0.54);
    --smetana-block-drop-shadow: 0px 2px 80px 0px rgba(225, 225, 225, 0.78);
    --fs-color-primary: #4a90e2; /* Синий цвет как на скриншоте */
    --funnel-color-1: #e9b442; /* Желтый */
    --funnel-color-2: #2baa9a; /* Зеленый */
    --funnel-color-3: #3a80d2; /* Синий */
    --funnel-color-4: #e95c33; /* Оранжевый */
    --funnel-color-5: #d94c77; /* Розовый */
}
[data-block-id="funnel"] /* Сброс стилей */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
[data-block-id="funnel"] body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.5;
    color: #333;
    background-color: #fff;
}
[data-block-id="funnel"] /* Стили заголовков */
h1, [data-block-id="funnel"] h2 {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 500;
    color: #333;
}
[data-block-id="funnel"] h3 {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    margin-bottom: 30px;
    line-height: 1.2;
    font-weight: 500;
}
[data-block-id="funnel"] p {
    margin-bottom: 0.75rem;
}
[data-block-id="funnel"] .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}
[data-block-id="funnel"] .section {
    padding-top: 80px;
    padding-bottom: 80px;
}
[data-block-id="funnel"] .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    align-items: center;
}
[data-block-id="funnel"] .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 15px;
    padding-right: 15px;
}
[data-block-id="funnel"] /* Стили для блока воронки из оригинального funnel.css */
.funnel__right .col-inner {
    display: flex;
    justify-content: center;
}
[data-block-id="funnel"] .funnel__left .col-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 50px; 
    padding-bottom: 50px;
}
[data-block-id="funnel"] .funnel__left h2 {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #333;
    font-weight: 500;
    text-align: left;
}
[data-block-id="funnel"] .funnel__subtitle {
    font-family: 'Inter', sans-serif;
    color: var(--fs-color-primary);
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.2;
    text-align: left;
}
[data-block-id="funnel"] .funnel__button-container {
    display: flex;
    justify-content: flex-start;
    width: 100%;
}
[data-block-id="funnel"] .funnel__button {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    padding: 15px 30px;
    border-radius: 8px;
    background-color: var(--fs-color-primary);
    color: white;
    text-decoration: none;
    display: inline-block;
    font-weight: 400;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}
[data-block-id="funnel"] .funnel__button:hover {
    background-color: #3a80d2;
}
[data-block-id="funnel"] .funnel__image {
    max-width: 75%;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}
[data-block-id="funnel"] .funnel__image img {
    max-width: 100%;
    height: auto;
    width: 400px;
}
[data-block-id="funnel"] /* Стили для воронки, [data-block-id="funnel"] созданной с помощью HTML и CSS */
.funnel-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding-top: 50px;
}
[data-block-id="funnel"] .funnel-arrow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 50px;
    background-color: #b33a1e;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
[data-block-id="funnel"] .funnel-level {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    font-weight: 500;
    padding: 15px 20px;
    margin-bottom: 2px;
    border-radius: 5px;
}
[data-block-id="funnel"] .funnel-level span {
    max-width: 80%;
}
[data-block-id="funnel"] .level-1 {
    background-color: var(--funnel-color-1);
    height: 80px;
    width: 100%;
}
[data-block-id="funnel"] .level-2 {
    background-color: var(--funnel-color-2);
    height: 80px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
[data-block-id="funnel"] .level-3 {
    background-color: var(--funnel-color-3);
    height: 80px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}
[data-block-id="funnel"] .level-4 {
    background-color: var(--funnel-color-4);
    height: 60px;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}
[data-block-id="funnel"] .level-5 {
    background-color: var(--funnel-color-5);
    height: 60px;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 850px) {
  [data-block-id="funnel"] .row {
        flex-direction: column;
    }
  [data-block-id="funnel"] .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
  [data-block-id="funnel"] .funnel__left {
        order: 2;
    }
  [data-block-id="funnel"] .funnel__right {
        order: 1;
    }
  [data-block-id="funnel"] .funnel__left .col-inner {
        align-items: center;
        text-align: center;
    }
  [data-block-id="funnel"] .funnel__left h2 {
        text-align: center;
        font-size: 32px;
    }
  [data-block-id="funnel"] .funnel__subtitle {
        text-align: center;
        font-size: 28px;
    }
  [data-block-id="funnel"] .funnel-container {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
  [data-block-id="funnel"] .funnel__left h2 {
        font-size: 24px;
    }
  [data-block-id="funnel"] .funnel__subtitle {
        font-size: 20px;
    }
  [data-block-id="funnel"] .section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
  [data-block-id="funnel"] .funnel-container {
        max-width: 250px;
    }
  [data-block-id="funnel"] .funnel-level {
        padding: 10px;
        font-size: 0.9rem;
    }
  [data-block-id="funnel"] .funnel__button {
        font-size: 16px;
        padding: 12px 24px;
    }
}

@media (max-width: 767px) {
  [data-block-id="funnel"] .row {
    flex-direction: column;
    align-items: stretch;
  }
  [data-block-id="funnel"] .funnel__left,
  [data-block-id="funnel"] .funnel__right {
    width: 100%;
    max-width: 100%;
    flex: unset;
  }
  [data-block-id="funnel"] .col-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
  }
  [data-block-id="funnel"] .funnel__content {
    order: 1;
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }
  [data-block-id="funnel"] .funnel__image {
    order: 2;
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
  }
  [data-block-id="funnel"] .funnel__button-container {
    order: 3;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .funnel__button-desktop { display: none !important; }
  .funnel__button-mobile { display: flex !important; }
  [data-block-id="funnel"] .funnel__left,
  [data-block-id="funnel"] .funnel__right {
    display: contents;
  }
  [data-block-id="funnel"] .col-inner {
    display: contents;
    padding: 0;
  }
  [data-block-id="funnel"] .funnel__content {
    margin-bottom: 0px;
    text-align: center;
  }
  [data-block-id="funnel"] .funnel__image {
    margin-bottom: 4px;
    display: flex;
    justify-content: center;
  }
  [data-block-id="funnel"] .funnel__button-mobile {
    width: 100%;
    display: flex !important;
    justify-content: center;
  }
  [data-block-id="funnel"] .funnel__content h2,
  [data-block-id="funnel"] .funnel__content h3 {
    margin-bottom: 4px !important;
  }
  [data-block-id="funnel"] .funnel__content h3 {
    margin-bottom: 0 !important;
  }
}

@media (min-width: 768px) {
  .funnel__button-mobile { display: none !important; }
  .funnel__button-desktop { display: flex !important; }
}



/* Стили блока salary */

[data-block-id="salary"] /* Импорт шрифтов */


/* Основные переменные и сброс стилей */
:root {
    --smetana-drop-shadow: 0px 2px 20px 0px rgba(202,202,202,0.54);
    --smetana-block-drop-shadow: 0px 2px 80px 0px rgba(225, 225, 225, 0.78);
    --fs-color-primary: #4a90e2; /* Синий цвет */
}
[data-block-id="salary"] /* Сброс стилей */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
[data-block-id="salary"] body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.5;
    color: #333;
    background-color: #fff;
}
[data-block-id="salary"] /* Общие стили */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}
[data-block-id="salary"] .section {
    padding-top: 30px;
    padding-bottom: 30px;
}
[data-block-id="salary"] .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
[data-block-id="salary"] .col-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}
[data-block-id="salary"] /* Стили для блока зарплаты */
.salary__section {
    padding-top: 30px;
    padding-bottom: 30px;
    overflow: hidden;
}
[data-block-id="salary"] .salary__title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
}
[data-block-id="salary"] .accent {
    color: var(--fs-color-primary);
}
[data-block-id="salary"] .salary__image-wrapper {
    position: relative;
    min-height: 450px;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
[data-block-id="salary"] .salary__main-image {
    max-width: 35%;
    height: auto;
    z-index: 1;
    position: relative;
}
[data-block-id="salary"] .salary__job {
    position: absolute;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: var(--smetana-drop-shadow);
    overflow: hidden;
    max-width: 250px;
    z-index: 2;
    transition: all 0.3s ease;
}
[data-block-id="salary"] .salary__job:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
}
[data-block-id="salary"] .salary__job img {
    width: 100%;
    height: auto;
    display: block;
}
[data-block-id="salary"] /* Точное позиционирование карточек */
.job-1 {
    top: 100px;
    left: 100px;
    max-width: 250px;
}
[data-block-id="salary"] .job-2 {
    top: 280px;
    left: 170px;
    max-width: 250px;
}
[data-block-id="salary"] .job-3 {
    top: 50px;
    right: 50px;
    max-width: 250px;
}
[data-block-id="salary"] .job-4 {
    top: 230px;
    right: 130px;
    max-width: 250px;
}
[data-block-id="salary"] .job-5 {
    bottom: 50px;
    right: 500px;
    max-width: 250px;
}
[data-block-id="salary"] .salary__hh {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    max-width: 220px;
    z-index: 3;
    display: flex;
    align-items: flex-start;
}
[data-block-id="salary"] .salary__hh span {
    display: inline-block;
    white-space: nowrap;
}
[data-block-id="salary"] .hh-icon {
    width: 26px;
    height: 26px;
    margin-right: 10px;
    margin-top: 3px;
}
@media (max-width: 1200px) {
  [data-block-id="salary"] .job-1 {
        top: 0;
        left: 0;
        max-width: 200px;
    }
  [data-block-id="salary"] .job-2 {
        top: 160px;
        left: 60px;
        max-width: 200px;
    }
  [data-block-id="salary"] .job-3 {
        top: 0;
        right: 0;
        max-width: 200px;
    }
  [data-block-id="salary"] .job-4 {
        top: 160px;
        right: 60px;
        max-width: 200px;
    }
  [data-block-id="salary"] .job-5 {
        bottom: 0;
        right: 120px;
        max-width: 200px;
    }
  [data-block-id="salary"] .salary__hh {
        top: 40px;
        left: 40px;
    }
}

@media (max-width: 992px) {
  [data-block-id="salary"] .job-1 {
        top: 0;
        left: 0;
        max-width: 180px;
    }
  [data-block-id="salary"] .job-2 {
        top: 140px;
        left: 40px;
        max-width: 180px;
    }
  [data-block-id="salary"] .job-3 {
        top: 0;
        right: 0;
        max-width: 180px;
    }
  [data-block-id="salary"] .job-4 {
        top: 140px;
        right: 40px;
        max-width: 180px;
    }
  [data-block-id="salary"] .job-5 {
        bottom: 0;
        right: 100px;
        max-width: 180px;
    }
  [data-block-id="salary"] .salary__hh {
        top: 30px;
        left: 30px;
        max-width: 200px;
    }
}

@media (max-width: 768px) {
  [data-block-id="salary"] .salary__title {
        font-size: 28px;
    }
  [data-block-id="salary"] .salary__image-wrapper {
        min-height: 350px;
    }
  [data-block-id="salary"] .job-1, [data-block-id="salary"] .job-2, [data-block-id="salary"] .job-3, [data-block-id="salary"] .job-4, [data-block-id="salary"] .job-5 {
        max-width: 150px;
    }
  [data-block-id="salary"] .job-1 {
        top: 0;
        left: 0;
    }
  [data-block-id="salary"] .job-2 {
        top: 120px;
        left: 20px;
    }
  [data-block-id="salary"] .job-3 {
        top: 0;
        right: 0;
    }
  [data-block-id="salary"] .job-4 {
        top: 120px;
        right: 20px;
    }
  [data-block-id="salary"] .job-5 {
        bottom: 0;
        right: 80px;
    }
  [data-block-id="salary"] .salary__hh {
        top: 20px;
        left: 20px;
        font-size: 12px;
        max-width: 180px;
        padding: 10px;
    }
}

@media (max-width: 576px) {
  [data-block-id="salary"] .salary__title {
        font-size: 24px;
    }
  [data-block-id="salary"] .salary__image-wrapper {
        flex-direction: column;
        align-items: center;
        min-height: auto;
    }
  [data-block-id="salary"] .salary__main-image {
        margin-bottom: 20px;
        max-width: 80%;
    }
  [data-block-id="salary"] .job-1, [data-block-id="salary"] .job-2, [data-block-id="salary"] .job-3, [data-block-id="salary"] .job-4, [data-block-id="salary"] .job-5 {
        position: static;
        margin: 10px auto;
        max-width: 80%;
    }
  [data-block-id="salary"] .salary__hh {
        position: static;
        margin: 20px auto;
        max-width: 80%;
    }
}



/* Стили блока webinar */

[data-block-id="webinar"] /* Импорт шрифтов */


/* Основные переменные и сброс стилей */
:root {
    --smetana-drop-shadow: 0px 2px 20px 0px rgba(202,202,202,0.54);
    --smetana-block-drop-shadow: 0px 2px 80px 0px rgba(225, 225, 225, 0.78);
    --fs-color-primary: #4a90e2; /* Синий цвет */
}
[data-block-id="webinar"] /* Сброс стилей */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
[data-block-id="webinar"] body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.5;
    color: #333;
    background-color: #fff;
}
[data-block-id="webinar"] /* Общие стили */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}
[data-block-id="webinar"] .section {
    padding-top: 30px;
    padding-bottom: 30px;
}
[data-block-id="webinar"] .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
[data-block-id="webinar"] .col-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}
[data-block-id="webinar"] .accent {
    color: var(--fs-color-primary);
}
[data-block-id="webinar"] /* Стили для блока вебинара */
.web-invite__section {
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
}
[data-block-id="webinar"] .web-invite__section:before {
    position: absolute;
    top: -80px;
    right: 10vw;
    content: "";
    background-image: url('images/calendar-image.webp');
    height: 280px;
    width: 280px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
}
[data-block-id="webinar"] .web-invite__container {
    max-width: 1240px !important;
    position: relative;
    margin: 0 auto !important;
    padding: 2rem;
    border-radius: 1rem;
    background: rgba(225,225,225,0.2);
    backdrop-filter: blur(7px);
    z-index: 3;
    text-align: center;
}
[data-block-id="webinar"] .web-invite__title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 1em;
    line-height: 1.2;
}
[data-block-id="webinar"] .web-invite__subtitle {
    font-size: clamp(0.75rem, 1.7vw, 1.5rem);
    color: rgba(0,0,0,0.64);
    margin-bottom: 2em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
[data-block-id="webinar"] .web-invite__time {
    font-size: clamp(1rem, 2vw, 2.125rem);
    color: var(--fs-color-primary);
    font-weight: 500;
    margin-bottom: 2em;
}
[data-block-id="webinar"] .web-invite__button {
    margin: 0 auto !important;
    display: block;
    width: max-content;
    padding: 15px 3em !important;
    background-color: var(--fs-color-primary);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    font-size: 18px;
    transition: background-color 0.3s ease;
}
[data-block-id="webinar"] .web-invite__button:hover {
    background-color: #3a7bc8;
}
@media (max-width: 1550px) {
  [data-block-id="webinar"] .web-invite__section:before {
        right: 0vw;
        top: -40px;
        height: 200px;
        width: 200px;
    }
}

@media (max-width: 992px) {
  [data-block-id="webinar"] .web-invite__title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
  [data-block-id="webinar"] .web-invite__title {
        font-size: 24px;
    }
  [data-block-id="webinar"] .web-invite__container {
        padding: 1.5rem;
    }
}

@media (max-width: 640px) {
  [data-block-id="webinar"] .web-invite__section:before {
        right: 0vw;
        top: -20px;
        height: 120px;
        width: 120px;
    }
  [data-block-id="webinar"] .web-invite__title {
        font-size: 20px;
    }
  [data-block-id="webinar"] .web-invite__container {
        padding: 1rem;
    }
  [data-block-id="webinar"] .web-invite__button {
        padding: 12px 2em !important;
        font-size: 16px;
    }
}



/* Стили блока test */

[data-block-id="test"] /* Импорт шрифтов */


/* Основные переменные и сброс стилей */
:root {
    --smetana-drop-shadow: 0px 2px 20px 0px rgba(202,202,202,0.54);
    --smetana-block-drop-shadow: 0px 2px 80px 0px rgba(225, 225, 225, 0.78);
    --fs-color-primary: #4a90e2; /* Синий цвет */
}
[data-block-id="test"] /* Сброс стилей */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
[data-block-id="test"] body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.5;
    color: #333;
    background-color: #fff;
}
[data-block-id="test"] /* Общие стили */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}
[data-block-id="test"] .section {
    padding-top: 30px;
    padding-bottom: 30px;
}
[data-block-id="test"] /* Стили для блока с тестом */
.test-section {
    padding: 40px 0;
    background-color: #f9f9f9;
}
[data-block-id="test"] .test-container {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: var(--smetana-drop-shadow);
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
}
[data-block-id="test"] .test-content {
    text-align: center;
}
[data-block-id="test"] .test-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--fs-color-primary);
    margin-bottom: 30px;
    line-height: 1.3;
}
[data-block-id="test"] .test-button {
    display: inline-block;
    background-color: var(--fs-color-primary);
    color: white;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 700;
    transition: background-color 0.3s ease;
}
[data-block-id="test"] .test-button:hover {
    background-color: #3a7bc8;
}
@media (max-width: 768px) {
  [data-block-id="test"] .test-container {
        padding: 30px 15px;
    }
  [data-block-id="test"] .test-title {
        font-size: 20px;
    }
  [data-block-id="test"] .test-button {
        padding: 12px 30px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
  [data-block-id="test"] .test-container {
        padding: 20px 10px;
    }
  [data-block-id="test"] .test-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
  [data-block-id="test"] .test-button {
        padding: 10px 25px;
        font-size: 14px;
    }
}

[data-block-id="test"] /* Стили для модального окна */
.fc_modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}
[data-block-id="test"] .fc_modal.fc_in {
    display: block;
}
[data-block-id="test"] .fc_modal-dialog {
    position: relative;
    width: auto;
    margin: 30px auto;
    max-width: 600px;
}
[data-block-id="test"] .fc_modal-content {
    position: relative;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: var(--smetana-drop-shadow);
    background-clip: padding-box;
    outline: 0;
    padding: 20px;
}
[data-block-id="test"] .fc_modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
[data-block-id="test"] .fc_modal-title {
    margin: 0;
    font-size: 20px;
    color: var(--fs-color-primary);
}
[data-block-id="test"] .fc_close {
    float: right;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: 0.5;
    cursor: pointer;
    background: none;
    border: none;
}
[data-block-id="test"] .fc_close:hover {
    opacity: 0.8;
}
[data-block-id="test"] .fc_modal-body {
    position: relative;
    padding: 15px;
    max-height: 70vh;
    overflow-y: auto;
}
[data-block-id="test"] .fc_modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000;
    opacity: 0.5;
}
[data-block-id="test"] .fc_modal-backdrop.fc_in {
    opacity: 0.5;
}
[data-block-id="test"] .fc_modal-open {
    overflow: hidden;
}
[data-block-id="test"] /* Стили для группы вопросов */
.test-question {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
[data-block-id="test"] .test-question:last-of-type {
    border-bottom: none;
}
[data-block-id="test"] /* Стили для теста */
.test-question-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}
[data-block-id="test"] .test-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
[data-block-id="test"] .test-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
[data-block-id="test"] .test-option input[type="radio"] {
    margin-right: 10px;
}
[data-block-id="test"] .test-option label {
    cursor: pointer;
}
[data-block-id="test"] .test-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}
[data-block-id="test"] .test-prev, [data-block-id="test"] .test-next, [data-block-id="test"] .test-submit {
    background-color: var(--fs-color-primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 500;
}
[data-block-id="test"] .test-prev:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}
[data-block-id="test"] .test-result {
    text-align: center;
    padding: 20px;
}
[data-block-id="test"] .test-result-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--fs-color-primary);
    margin-bottom: 15px;
}
[data-block-id="test"] .test-result-description {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}
@media (max-width: 768px) {
  [data-block-id="test"] .fc_modal-dialog {
        margin: 20px;
        max-width: calc(100% - 40px);
    }
}

@media (max-height: 700px) {
  [data-block-id="test"] .fc_modal-dialog {
        margin-top: 15px;
        margin-bottom: 15px;
    }
  [data-block-id="test"] .fc_modal-content {
        padding: 15px;
    }
}

[data-block-id="test"] /* Стили для кнопки "Оставить заявку" */
.test-apply-btn {
    background-color: var(--fs-color-primary);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
[data-block-id="test"] .test-apply-btn:hover {
    background-color: #3a7bc8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}
[data-block-id="test"] .test-apply-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(74, 144, 226, 0.3);
}


/* Стили блока founder */

[data-block-id="founder"] .founder-section {
  padding-top: 120px !important;
}
[data-block-id="founder"] .founder-container {
  /*border: 1px solid black;*/
  border-radius: 60px;
  padding: 0px 110px 40px 110px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 1110px !important;
  box-shadow: var(--smetana-block-drop-shadow);
}
[data-block-id="founder"] .founder-header {
  margin-top: -110px;
  text-align: center;
}
[data-block-id="founder"] .founder-image {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}
[data-block-id="founder"] .founder-image-wrapper {
  text-align: center;
}
[data-block-id="founder"] .founder-title {
  font-size: clamp(0.8rem, 1.8vw, 1.5rem) !important;
  text-align: center;
  color: var(--fs-color-primary);
  margin-bottom: 5px;
  font-weight: 500;
}
[data-block-id="founder"] .founder-name {
  font-size: clamp(1rem, 2.5vw, 2.25rem) !important;
  text-align: center;
  font-weight: 700;
  margin-bottom: 30px;
  color: #333;
}
[data-block-id="founder"] .founder-stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
[data-block-id="founder"] .founder-stat {
  flex: 1;
  text-align: center;
  padding-left: 5px;
  padding-right: 5px;
}
[data-block-id="founder"] .founder-stat-title {
  font-size: clamp(1rem, 2.5vw, 2.25rem) !important;
  line-height: 1;
  text-align: center;
  color: var(--fs-color-primary);
  font-weight: 700;
  margin-bottom: 5px;
}
[data-block-id="founder"] .founder-stat-name p {
  font-size: clamp(0.8rem, 1.8vw, 1.5rem) !important;
  line-height: 1;
  text-align: center;
  margin: 0;
  padding: 0;
  font-weight: 500;
}
[data-block-id="founder"] .founder-footer {
  margin-top: 24px;
  color: #464646;
}
[data-block-id="founder"] .founder-footer > * {
  font-size: clamp(0.8rem, 1.4vw, 1.125rem) !important;
}
[data-block-id="founder"] .founder-footer ul {
  list-style-type: disc;
  padding-left: 20px;
  line-height: 1.5;
}
[data-block-id="founder"] .founder-footer li {
  margin-bottom: 8px;
  font-weight: 400;
}
[data-block-id="founder"] .founder-header--alt {
  padding-bottom: 0px !important;
}
[data-block-id="founder"] .founder-button {margin-bottom: 0; margin-top: 2.2rem}
@media (max-width: 850px) {
  [data-block-id="founder"] .founder-image {
    width: 130px;
    height: 130px;
  }
  [data-block-id="founder"] .founder-header {
    margin-top: -80px;
  }
  [data-block-id="founder"] .founder-container {
    padding: 0px 50px 24px 50px !important;
    border-radius: 20px;
  }
  [data-block-id="founder"] .founder-section {
    padding-left: 20px;
    padding-right: 20px;
  }
  [data-block-id="founder"] .founder-text--alt p {font-size: 1rem;}
}

@media (max-width: 640px) {
  [data-block-id="founder"] .founder-container {
    padding: 0px 24px 24px 24px !important;
    border-radius: 20px;
  }
  [data-block-id="founder"] .founder-stats {
    flex-direction: column;
    gap: 20px;
  }
  [data-block-id="founder"] .founder-stat {
    margin-bottom: 15px;
  }
  [data-block-id="founder"] .founder-footer li {
    font-size: 1rem;
  }
}



/* Стили блока social */

[data-block-id="social"] :root {
    --fs-color-primary: #3498DB; /* Правильный синий цвет из оригинала */
    --smetana-block-drop-shadow: 0px 2px 80px 0px rgba(225, 225, 225, 0.78);
}
[data-block-id="social"] body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}
[data-block-id="social"] .socials__links-wrapper {
    /* Пустой селектор для совместимости */
}
[data-block-id="social"] .socials-section {
    padding: 50px 0;
}
[data-block-id="social"] .socials-header {
    text-align: center;
    margin-bottom: 40px;
}
[data-block-id="social"] .socials-title {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 15px;
    text-align: center;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
}
[data-block-id="social"] .accent {
    color: var(--fs-color-primary);
    font-weight: 400;
}
[data-block-id="social"] .socials__subtitle {
    font-size: clamp(0.8rem, 1.8vw, 1.5rem) !important;
    margin-bottom: 2em;
    color: #5c5c5c;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}
[data-block-id="social"] .socials__card-container {
    max-width: 960px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
[data-block-id="social"] .socials-card {
    flex: 1;
    min-width: 200px;
    max-width: 220px;
}
[data-block-id="social"] .socials__link {
    /* border: 1px solid black; */
    display: block;
    aspect-ratio: 1/1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    color: var(--fs-color-primary) !important;
    box-shadow: var(--smetana-block-drop-shadow);
    border-radius: 20px;
    transition: all 0.2s ease-in-out;
    background-color: #fff;
    text-decoration: none;
}
[data-block-id="social"] .socials__link:hover {
    transform: translateY(-10px);
}
[data-block-id="social"] .socials__link > span {
    font-size: clamp(0.8rem, 2vw, 1.5rem) !important;
    font-weight: 400;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}
[data-block-id="social"] .socials__link svg {
    width: 70px;
    height: auto;
    margin-top: 10px;
    fill: currentColor;
}
@media (max-width: 768px) {
  [data-block-id="social"] .socials__card-container {
        gap: 15px;
    }
  [data-block-id="social"] .socials-card {
        min-width: 150px;
    }
  [data-block-id="social"] .socials__link {
        padding: 0.8rem;
    }
  [data-block-id="social"] .socials__link svg {
        width: 45px;
    }
}

@media (max-width: 480px) {
  [data-block-id="social"] .socials-title {
        font-size: 22px;
    }
  [data-block-id="social"] .socials-card {
        min-width: 120px;
        max-width: 160px;
    }
  [data-block-id="social"] .socials__link {
        padding: 0.6rem;
    }
  [data-block-id="social"] .socials__link svg {
        width: 35px;
    }
}



/* Стили блока footer */

[data-block-id="footer"] /* Импортируем общие стили */


.footer-container {
  position: relative;
  width: 100%;
  padding: 50px 0 20px;
  background-color: var(--footer-bg-color,  #2980b9);
  color: var(--footer-text-color, #fff);
}
[data-block-id="footer"] .footer__view {
  position: relative;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}
[data-block-id="footer"] .footer__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}
[data-block-id="footer"] .footer__column {
  flex: 1;
  min-width: 200px;
  margin-bottom: 30px;
  padding: 0 15px;
}
[data-block-id="footer"] .footer__logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
[data-block-id="footer"] .footer__logo-image {
  height: 50px;
  width: auto;
}
[data-block-id="footer"] .footer__logo-text {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: white;
  margin-left: 10px;
}
[data-block-id="footer"] .footer__description {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: var(--footer-text-color-light, #ecf0f1);
  margin-bottom: 20px;
}
[data-block-id="footer"] .footer__social {
  display: flex;
  gap: 15px;
}
[data-block-id="footer"] .footer__social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background-color 0.3s ease;
}
[data-block-id="footer"] .footer__social-link:hover {
  background-color: var(--primary-color);
}
[data-block-id="footer"] .footer__social-icon {
  width: 18px;
  height: 18px;
  fill: white;
}
[data-block-id="footer"] .footer__title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: white;
  margin-bottom: 20px;
}
[data-block-id="footer"] .footer__nav-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
[data-block-id="footer"] .footer__nav-item {
  margin-bottom: 10px;
}
[data-block-id="footer"] .footer__nav-link {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--footer-text-color-light, #ecf0f1);
  text-decoration: none;
  transition: color 0.3s ease;
}
[data-block-id="footer"] .footer__nav-link:hover {
  color: var(--primary-color);
}
[data-block-id="footer"] .footer__contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}
[data-block-id="footer"] .footer__contact-icon {
  width: 18px;
  height: 18px;
  fill: var(--primary-color);
  margin-right: 10px;
  flex-shrink: 0;
}
[data-block-id="footer"] .footer__contact-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--footer-text-color-light, #ecf0f1);
  line-height: 1.6;
}
[data-block-id="footer"] .footer__contact-link {
  color: var(--footer-text-color-light, #ecf0f1);
  text-decoration: none;
  transition: color 0.3s ease;
}
[data-block-id="footer"] .footer__contact-link:hover {
  color: var(--primary-color);
}
[data-block-id="footer"] .footer__form {
  margin-top: 15px;
}
[data-block-id="footer"] .footer__form-input {
  width: 100%;
  padding: 10px 15px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: white;
  margin-bottom: 10px;
}
[data-block-id="footer"] .footer__form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
[data-block-id="footer"] .footer__form-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: white;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
[data-block-id="footer"] .footer__form-button:hover {
  background-color: var(--primary-color-dark);
}
[data-block-id="footer"] .footer__bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
[data-block-id="footer"] .footer__copyright {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--footer-text-color-light, #ecf0f1);
}
@media (max-width: 1320px) {
  [data-block-id="footer"] .footer__view {
    max-width: 90%;
  }
}

@media (max-width: 992px) {
  [data-block-id="footer"] .footer__column {
    flex: 0 0 50%;
  }
}

@media (max-width: 768px) {
  [data-block-id="footer"] .footer__column {
    flex: 0 0 100%;
  }
  [data-block-id="footer"] .footer__content {
    margin-bottom: 20px;
  }
}

.vebinar-modal__content {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#widget-container {
    width: 100%;
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}



