html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}


.review-card,
.review-card__image img {
  transition: none;
}

.carousel__track {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  min-width: 320px;
  font-family: "Montserrat", sans-serif;
  background-color: var(--white-color);
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
}

.list-reset {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.btn-reset {
  padding: 0;
  border: 0;
  background-color: transparent;
  cursor: pointer;
}

@font-face {
  font-family: "Montserrat";
  src: local("Montserrat-Regular"),
    url("../fonts/Montserrat-Regular.woff2") format("woff2"),
    url("../fonts/Montserrat-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: local("Montserrat-Medium"),
    url("../fonts/Montserrat-Medium.woff2") format("woff2"),
    url("../fonts/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: local("Montserrat-SemiBold"),
    url("../fonts/Montserrat-SemiBold.woff2") format("woff2"),
    url("../fonts/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: local("Montserrat-Bold"),
    url("../fonts/Montserrat-Bold.woff2") format("woff2"),
    url("../fonts/Montserrat-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: local("Montserrat-ExtraBold"),
    url("../fonts/Montserrat-ExtraBold.woff2") format("woff2"),
    url("../fonts/Montserrat-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --main-color: #005c73;
  --black-color: #000;
  --white-color: #fff;
  --main-blue: #07303a;
}

.container {
  max-width: 1420px;
  width: 100%;
  padding: 40px 50px;
  margin: 0 auto;
}


.burger-menu_button {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--main-color), var(--main-blue));
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.burger-menu_button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, #007a94, #0a3a45);
}

.burger-menu_lines::before,
.burger-menu_lines::after,
.burger-menu_lines {
  position: absolute;
  width: 22px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.burger-menu_lines {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.burger-menu_lines::before {
  content: "";
  top: -8px;
  left: 0;
}

.burger-menu_lines::after {
  content: "";
  top: 8px;
  left: 0;
}

.burger-menu_active .burger-menu_lines {
  background-color: transparent;
}

.burger-menu_active .burger-menu_lines::before {
  top: 0;
  transform: rotate(45deg);
  background-color: #ffffff;
}

.burger-menu_active .burger-menu_lines::after {
  top: 0;
  transform: rotate(-45deg);
  background-color: #ffffff;
}

.burger-menu_nav {
  padding-top: 100px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9998;
  display: flex;
  flex-flow: column;
  height: 100vh;
  width: 300px;
  background: linear-gradient(
    180deg,
    var(--main-blue) 0%,
    #0a3a45 50%,
    #0d424e 100%
  );
  overflow-y: auto;
  right: -100%;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.burger-menu_active .burger-menu_nav {
  right: 0;
}

.burger-menu_link {
  padding: 20px 30px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.burger-menu_link:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.burger-menu_link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  -webkit-transition: left 0.5s ease;
  -moz-transition: left 0.5s ease;
  -o-transition: left 0.5s ease;
  transition: left 0.5s ease;
}

.burger-menu_link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #00d4ff;
  transform: translateX(10px);
}

.burger-menu_link:hover::before {
  left: 100%;
}

.burger-menu_overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  background: rgba(7, 48, 58, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.burger-menu_active .burger-menu_overlay {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.header {
  width: 100%;
  box-shadow: 0px 5px 40px 0px rgba(0, 0, 0, 0.1);
  background-color: #07303a;
  border-bottom: 1px solid var(--white-color);
}

.header__container {
  display: flex;
  align-items: center;
  padding: 0;
}

.header__logo {
  font-size: 42px;
  font-weight: 700;
  color: var(--white-color);
}

.header__logo img {
  max-width: 300px;
  display: block;
}

.header__nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: 100px;
}

.header__list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-right: 20px;
}

.header__item {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--white-color);
}

.header__link {
  display: flex;
  align-items: center;
  gap: 5px;
}

.header__item--telegram {
  margin-left: 20px;
}

.header__telegram-link,
.header__call-link,
.header__mail-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 20px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 136, 204, 0.3);
}

.header__telegram-link:hover,
.header__call-link:hover,
.header__mail-link:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4);
  color: #ffffff;
}

.header__mail-icon,
.header__telephone-icon,
.header__telegram-icon {
  width: 35px;
  height: 35px;
  transition: all 0.3s ease;
}

.header__telegram-link:hover .header__telegram-icon {
  transform: scale(1.1);
}

.header__item--email {
  margin-left: 15px;
}

.header__item--support {
  margin-left: 15px;
}

.header__support-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 20px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, var(--main-color), var(--main-blue));
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 92, 115, 0.3);
}

.header__support-btn:hover {
  background: linear-gradient(135deg, #007a94, #0a3a45);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 92, 115, 0.4);
  color: #ffffff;
}

.header__email-link {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--main-color), var(--main-blue));
  border-radius: 20px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 92, 115, 0.3);
}

.header__email-link:hover {
  background: linear-gradient(135deg, #007a94, #0a3a45);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 92, 115, 0.4);
  color: #ffffff;
}

.header__item--phone {
  margin-left: 15px;
}

.header__phone-link {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--main-color), var(--main-blue));
  border-radius: 20px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(76, 175, 80, 0.3);
}

.header__phone-link:hover {
  background: linear-gradient(135deg, #45a049, #3d8b40);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
  color: #ffffff;
}


.hero {
  background: linear-gradient(
    180deg,
    var(--main-blue) 0%,
    #0a3a45 50%,
    #0d424e 100%
  );
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(to bottom, transparent, #0d424e);
  pointer-events: none;
}

.hero__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90vh;
}

.hero__content {
  display: flex;
  flex-direction: column;
  width: 900px;
  background: radial-gradient(
    50% 50% at 50% 50%,
    #414557 0%,
    rgba(12, 25, 42, 0) 100%
  );
}

.hero__title {
  max-width: 850px;
  font-size: 58px;
  font-weight: bold;
  margin-bottom: 30px;
  color: var(--white-color);
  z-index: 100;
}

.hero__text {
  margin-bottom: 4px;
  color: white;
  font-size: 18px;
  z-index: 300;
}

.hero__subtext {
  margin-bottom: 45px;
  color: #d0cfcf;
  font-size: 18px;
  font-style: oblique;
  opacity: 0.5;
}

.hero__btn_block {
  display: flex;
  gap: 15px;
}

.hero__btn {
  padding: 20px;
  width: 300px;
  color: var(--white-color);
  border: 0 solid;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0);
  outline: 1px solid;
  outline-color: #ffc72c;
  outline-offset: 0px;
  text-shadow: none;
  transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
}

.hero__btn:hover {
  border: 1px solid;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.5),
    0 0 20px rgba(255, 255, 255, 0.2);
  outline-color: rgba(255, 255, 255, 0);
  outline-offset: 15px;
  text-shadow: 1px 1px 2px #427388;
}

.hero__img {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 400px;
  opacity: 1;
}


.services {
  background: linear-gradient(180deg, #0d424e 0%, #1a5a6b 20%, #ffffff 100%);
  position: relative;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(to top, transparent, #0d424e);
  pointer-events: none;
}

.services::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(to bottom, transparent, #ffffff);
  pointer-events: none;
}

.services__title {
  text-align: center;
  font-size: 48px;
  font-weight: 800;
  color: var(--white-color);
  margin-bottom: 60px;
  position: relative;
}

.services__title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--white-color);
  border-radius: 2px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.service-card {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 92, 115, 0.1);
  overflow: hidden;
  cursor: pointer;
  transform: translateY(60px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
}


.service-card__content {
  position: relative;
  z-index: 2;
}

.service-card__icon {
  width: 60px;
  height: 60px;
  background: var(--main-color);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: white;
  transition: transform 0.2s ease;
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
}

.service-card:hover .service-card__icon {
  transform: scale(1.05);
}

.service-card__title {
  height: 85px;
  font-size: 22px;
  font-weight: 700;
  color: var(--main-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.service-card__description {
  font-size: 16px;
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}


.service-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  z-index: 5;
}



.service-card.animate-item {
  animation: slideInUp 0.4s ease forwards;
}

@keyframes slideInUp {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.bouncing-dot {
  position: absolute;
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, var(--main-color), var(--main-blue));
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0, 92, 115, 0.4);
  z-index: 10;
  pointer-events: none;
  animation: bounceAroundBorder 12s ease-in-out infinite;
}

@keyframes bounceAroundBorder {
  0% {
    top: 0;
    left: 0;
    transform: translate(-50%, -50%) scale(1);
  }
  25% {
    top: 0;
    left: 100%;
    transform: translate(-50%, -50%) scale(1.2);
  }
  50% {
    top: 100%;
    left: 100%;
    transform: translate(-50%, -50%) scale(1);
  }
  75% {
    top: 100%;
    left: 0;
    transform: translate(-50%, -50%) scale(1.2);
  }
  100% {
    top: 0;
    left: 0;
    transform: translate(-50%, -50%) scale(1);
  }
}




.industries {
  background-color: var(--main-blue);
}

.industries__title {
  text-align: center;
  font-size: 48px;
  font-weight: 800;
  color: var(--white-color);
  margin-bottom: 60px;
  position: relative;
}

.industries__title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--white-color);
  border-radius: 2px;
}

.industries__subtitle {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 80px;
}

.industries__chart {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 100px;
  max-width: 1200px;
  margin: 0 auto;
  height: 400px;
}

.chart-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  max-width: 250px;
}

.chart-bar {
  width: 120px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 60px;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.chart-bar__fill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(
    180deg,
    #00d4ff 0%,
    #0099cc 50%,
    #00d4ff 50%,
    var(--main-color) 100%
  );
  border-radius: 58px;
  transition: height 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.6),
    inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.chart-bar__fill::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.1) 30%,
    transparent 100%
  );
  border-radius: 58px;
  pointer-events: none;
}

.chart-column[data-industry="construction"] .chart-bar__fill {
  height: 0;
  background: linear-gradient(to top, #fff4c7 0%, #ffe1a1 50%, #ffab6f 100%);
  box-shadow: 0 0 30px rgba(255, 107, 107, 0.6),
    inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.chart-column[data-industry="service"] .chart-bar__fill {
  height: 0;
  background: linear-gradient(
    to top,
    #00d4ff 0%,
    #0099cc 50%,
    var(--main-color) 100%
  );
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.6),
    inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.chart-column[data-industry="trade"] .chart-bar__fill {
  height: 0;
  background: linear-gradient(to top, #a8e6cf 0%, #7fcdcd 50%, #5f9ea0 100%);
  box-shadow: 0 0 30px rgba(168, 230, 207, 0.6),
    inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.chart-label {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.chart-label h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white-color);
}

.chart-label p {
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.chart-column {
  opacity: 0;
  transform: translateY(50px);
  animation: chartColumnAppear 0.8s ease forwards;
}

.chart-column:nth-child(1) {
  animation-delay: 0.2s;
}

.chart-column:nth-child(2) {
  animation-delay: 0.4s;
}

.chart-column:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes chartColumnAppear {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


@keyframes fillBarConstruction {
  0% {
    height: 0;
    box-shadow: 0 0 30px rgba(255, 107, 107, 0.2);
  }
  100% {
    height: 95%;
    box-shadow: 0 0 30px rgba(255, 107, 107, 0.6);
  }
}

@keyframes fillBarService {
  0% {
    height: 0;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
  }
  100% {
    height: 85%;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
  }
}

@keyframes fillBarTrade {
  0% {
    height: 0;
    box-shadow: 0 0 30px rgba(168, 230, 207, 0.2);
  }
  100% {
    height: 70%;
    box-shadow: 0 0 30px rgba(168, 230, 207, 0.6);
  }
}

.chart-column:hover .chart-bar {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.chart-column:hover .chart-bar__fill {
  transition: all 0.3s ease;
}

.chart-column[data-industry="construction"]:hover .chart-bar__fill {
  box-shadow: 0 0 50px rgba(255, 107, 107, 0.8),
    inset 0 0 30px rgba(255, 255, 255, 0.2);
  filter: brightness(1.2);
}

.chart-column[data-industry="service"]:hover .chart-bar__fill {
  box-shadow: 0 0 50px rgba(0, 212, 255, 0.8),
    inset 0 0 30px rgba(255, 255, 255, 0.2);
  filter: brightness(1.2);
}

.chart-column[data-industry="trade"]:hover .chart-bar__fill {
  box-shadow: 0 0 50px rgba(168, 230, 207, 0.8),
    inset 0 0 30px rgba(255, 255, 255, 0.2);
  filter: brightness(1.2);
}

.chart-column[data-industry="construction"] .chart-bar__fill {
  animation: none;
  height: 0;
}

.chart-column[data-industry="service"] .chart-bar__fill {
  animation: none;
  height: 0;
}

.chart-column[data-industry="trade"] .chart-bar__fill {
  animation: none;
  height: 0;
}

.chart-column.animate .chart-bar__fill {
  animation: fillBarConstruction 2s ease-out forwards,
    pulse 3s ease-in-out 3s infinite;
}

.chart-column[data-industry="service"].animate .chart-bar__fill {
  animation: fillBarService 2s ease-out forwards,
    pulse 3s ease-in-out 3s infinite;
}

.chart-column[data-industry="trade"].animate .chart-bar__fill {
  animation: fillBarTrade 2s ease-out forwards, pulse 3s ease-in-out 3s infinite;
}

@keyframes pulse {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.1);
  }
}

.chart-bar__fill::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  animation: shine 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}



.reviews {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
  position: relative;
}

.reviews::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(to top, transparent, #ffffff);
  pointer-events: none;
}

.reviews::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(to bottom, transparent, #e9ecef);
  pointer-events: none;
}

.reviews__title {
  text-align: center;
  font-size: 48px;
  font-weight: 800;
  color: var(--main-color);
  margin-bottom: 60px;
  position: relative;
}

.reviews__title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--main-color), var(--main-blue));
  border-radius: 2px;
}

.carousel {
  position: relative;
  z-index: 1;
  height: 600px;
  overflow: hidden;
  pointer-events: none;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 16px 20px rgba(0, 0, 0, 0.1);
  line-height: 1.3;
  margin: 20px 0;
  border-radius: 20px;
}

.carousel-item {
  --width: clamp(280px, 35vw, 400px);
  --height: clamp(350px, 45vw, 450px);
  --x: calc(var(--active) * 80% * var(--items));
  --y: calc(var(--active) * 20% * var(--items));
  --rot: calc(var(--active) * 120deg);
  --opacity: calc(var(--zIndex) / var(--items) * 3 - 2);
  overflow: hidden;
  position: absolute;
  z-index: var(--zIndex);
  width: var(--width);
  height: var(--height);
  margin: calc(var(--height) * -0.5) 0 0 calc(var(--width) * -0.5);
  border-radius: 20px;
  top: 50%;
  left: 50%;
  user-select: none;
  transform-origin: 0% 100%;
  box-shadow: 0 15px 50px 15px rgba(0, 92, 115, 0.2);
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  pointer-events: all;
  transform: translate(var(--x), var(--y)) rotate(var(--rot));
  transition: transform 0.8s cubic-bezier(0, 0.02, 0, 1);
  border: 1px solid rgba(0, 92, 115, 0.1);
}

.carousel-item .carousel-box {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.8s cubic-bezier(0, 0.02, 0, 1);
  opacity: var(--opacity);
  font-family: "Montserrat", sans-serif;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.carousel-item .carousel-box:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 92, 115, 0.05) 0%,
    rgba(0, 92, 115, 0.02) 100%
  );
  border-radius: 20px;
}

.carousel-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--main-color) 0%,
    var(--main-blue) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 92, 115, 0.3);
  position: relative;
}

.carousel-avatar::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--main-color), var(--main-blue));
  border-radius: 50%;
  z-index: -1;
  opacity: 0.3;
}

.avatar-initial {
  color: white;
  font-size: 24px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.carousel-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.carousel-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.carousel-name {
  color: var(--main-color);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.carousel-position {
  color: #6c757d;
  font-size: 14px;
  font-style: italic;
  margin-bottom: 5px;
  line-height: 1.3;
}

.carousel-rating {
  font-size: 18px;
  color: #ffc107;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-shadow: 0 2px 4px rgba(255, 193, 7, 0.3);
}

.carousel-text {
  color: #495057;
  font-size: 14px;
  line-height: 1.6;
  font-style: italic;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


.competencies {
  background: linear-gradient(180deg, #e9ecef 0%, #d1d5db 20%, #07303a 100%);
  position: relative;
}

.competencies::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(to top, transparent, #e9ecef);
  pointer-events: none;
}

.competencies::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(to bottom, transparent, #07303a);
  pointer-events: none;
}

.competencies__title {
  text-align: center;
  font-size: 48px;
  font-weight: 800;
  color: var(--main-color);
  margin-bottom: 60px;
  position: relative;
}

.competencies__title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--main-color), var(--main-blue));
  border-radius: 2px;
}

.competencies__stairs {
  max-width: 1000px;
  margin: 60px auto 0;
  position: relative;
}

.stair-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 0.6s ease forwards;
}

.stair-item:nth-child(1) {
  animation-delay: 0.1s;
}
.stair-item:nth-child(2) {
  animation-delay: 0.2s;
}
.stair-item:nth-child(3) {
  animation-delay: 0.3s;
}
.stair-item:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.stair-number {
  width: 80px;
  height: 80px;
  background: var(--white-color);
  color: var(--main-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  margin-right: 30px;
  box-shadow: 0 8px 25px rgba(255, 199, 44, 1);
  position: relative;
  z-index: 2;
}

.stair-content {
  background: #27606229;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  flex: 1;
  backdrop-filter: blur(10px);
  position: relative;
}

.stair-content::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid rgba(255, 255, 255, 0.1);
}

.stair-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 12px;
  line-height: 1.3;
}

.stair-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
}

.licenses {
  background: linear-gradient(to bottom, var(--main-blue) 0%, #ffffff 100%);
}

.licenses__title {
  text-align: center;
  font-size: 48px;
  font-weight: 800;
  color: var(--white-color);
  margin-bottom: 60px;
  position: relative;
}

.licenses__title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--white-color);
  border-radius: 2px;
}

.licenses__subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--white-color);
  margin: 24px auto 40px;
  max-width: 900px;
}

.licenses__tabs {
  display: inline-flex;
  gap: 10px;
  background: var(--white-color);
  padding: 6px;
  border-radius: 14px;
  margin: 0;
}

.licenses__tab {
  background: transparent;
  color: var(--main-blue);
  border: 1px solid transparent;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
}

.licenses__tab.active {
  background: var(--white-color);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  color: var(--main-blue);
}

.licenses__group {
  display: none;
}
.licenses__group.active {
  display: block;
}

.licenses__toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.licenses__billing {
  display: inline-flex;
  gap: 10px;
  background: var(--white-color);
  padding: 6px;
  border-radius: 14px;
}

.licenses__bill {
  background: transparent;
  color: var(--main-blue);
  border: 1px solid transparent;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
}

.licenses__bill.active {
  background: var(--white-color);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  color: var(--main-blue);
}

.license-card__subheader-price {
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  align-items: baseline;
}
.price-old {
  display: none;
  text-decoration: line-through;
  color: var(--white-color);
  font-size: 14px;
}
.price-current {
  font-weight: 800;
  font-size: 26px;
  color: #cde800;
}
.price-suffix {
  color: white;
}

.license-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: 20px;
}

.license-cards--modern {
  gap: 28px;
}

.license-card {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--main-color);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.license-card--modern {
  border: none;
  padding: 2px;

  border-radius: 22px;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.license-card--modern:hover::before {
  opacity: 0.55;
}

.license-card--modern > * {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
}

.license-card--modern:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.license-card--featured .license-card__badge {
  background: #ffc72c;
  color: #532400;
}

.license-card__header {
  padding: 10px 16px 12px;
  min-height: 145px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.license-card__title {
  margin: 0;
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.3;
}

.license-card__description {
  margin: 0;
  font-size: 14px;
  text-align: center;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.7);
}

.license-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #005c73;
  background: rgba(0, 92, 115, 0.1);
  margin-bottom: 12px;
}

.license-card__subheader {
  padding: 16px;
  background-color: var(--main-color);
}

.license-card--modern .license-card__subheader {
  background: rgba(0, 93, 115, 0.06);
  border: 1px solid white;
  border-radius: 16px;
  margin: 16px;
}

.license-card__subheader-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.license-card--modern .license-card__subheader-price {
  font-size: 22px;
}

.license-card--modern .license-card__subheader-subprice {
  color: white;
}

.license-card__subheader-title {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  color: #cde800;
  line-height: 1.2;
  text-align: center;
}

.license-card__subheader-title-sub {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  color: white;
  text-align: center;
}

.license-card__subheader-price {
  font-size: 22px;
  font-weight: 800;
  color: #cde800;
  margin: 8px 0 0;
  line-height: 1.2;
  text-align: center;
  align-items: center;
}

.license-card__subheader-subprice {
  margin: 4px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
  line-height: 1.3;
  text-align: center;
}

.license-card__content {
  padding: 16px;
  display: grid;
  row-gap: 10px;
}

.license-card--modern .license-card__content {
  padding: 20px 24px 24px;
  background: #ffffff;
  border-radius: 20px;
}

.license-card__content-textMain {
  position: relative;
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.license-card__content-text {
  padding-left: 14px;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.8);
}

.license-card__footer {
  padding: 16px;
  margin-top: auto;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.license-card--modern .license-card__footer {
  background: var(--white-color);
  border-radius: 16px;
  margin: 16px;
  border: 1px dashed rgba(0, 93, 115, 0.2);
}

.license-card__user-select {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.user-count-select {
  background: var(--white-color);
  border-radius: 6px;
  color: var(--main-color);
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  min-width: 70px;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s ease;
  height: 28px;
}

.user-count-select:focus {
  border-color: rgba(255, 255, 255, 0.6);
}

.user-count-select option {
  background: var(--white-color);
  color: var(--main-color);
  font-weight: 700;
  padding: 4px;
}

.license-card__buy-btn {
  background: var(--main-color);
  color: var(--white-color);
  border: 2px solid var(--white-color);
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  margin-top: 12px;
  transition: all 0.2s ease;
}

.license-card__buy-btn:hover {
  background: var(--white-color);
  color: var(--main-color);
}

.buy-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.buy-modal.active {
  opacity: 1;
  visibility: visible;
}

.buy-modal__content {
  background: var(--white-color);
  border-radius: 12px;
  max-width: 650px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.buy-modal.active .buy-modal__content {
  transform: scale(1);
}

.buy-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.buy-modal__title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--main-color);
}

.buy-modal__close {
  background: none;
  border: none;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.buy-modal__close:hover {
  background: rgba(0, 0, 0, 0.1);
}

.buy-modal .b24-form-padding-bottom {
  padding-bottom: 0 !important;
}

.buy-modal .b24-form-header-padding {
  padding: 0 !important;
}

.buy-modal .b24-form-control-string .b24-form-control{
  background-color: var(--white-color) !important;
  border: 2px solid var(--main-blue) !important;
  padding-top: 0 !important;
}

.buy-modal .b24-form-control-label {
  display: none;
}

.buy-modal-label {
  display: block;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
  color: var(--main-blue);
}

.buy-modal .b24-form-container {
  display: block !important;
}

.full-bar::after {
  content: "";
  position: absolute;
  bottom: 50%;
  right: -15px;
  width: 30px;
  height: 15px;
  background-image: url("../images/fullBar.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(50%);
}

.halfBar::after {
  content: "";
  position: absolute;
  bottom: 50%;
  right: -15px;
  width: 30px;
  height: 15px;
  background-image: url("../images/halfBar.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(50%);
}

.lowBar::after {
  content: "";
  position: absolute;
  bottom: 50%;
  right: -15px;
  width: 30px;
  height: 15px;
  background-image: url("../images/lowBar.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(50%);
}


.licenses__group--onprem.active {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
}

.licenses__group--onprem .license-cards {
  grid-template-columns: repeat(4, minmax(260px, 320px));
  justify-content: center;
  align-content: center;
}


.marketplace {
  background: linear-gradient(to bottom, #ffffff 0%, #07303a 100%);
}

.marketplace-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: var(--main-color);
  position: relative;
}

.marketplace-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--main-color);
  border-radius: 2px;
}

.marketplace-subtitle {
  margin-top: 20px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--main-color);
  opacity: 0.3;
} 

.marketplace-toolbar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.marketplace-tabs {
  display: inline-flex;
  gap: 10px;
  background: var(--white-color);
  padding: 6px;
  border-radius: 14px;
  margin: 0;
}

.marketplace-tab {
  background: transparent;
  color: var(--main-blue);
  border: 1px solid transparent;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  font-size: 16px;
}

.marketplace-tab.active {
  background: var(--white-color);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  color: var(--main-blue);
}

.marketplace-billing {
  display: inline-flex;
  gap: 10px;
  background: var(--white-color);
  padding: 6px;
  border-radius: 14px;
  margin: 0;
  margin-left: auto;
}

.marketplace-bill {
  background: transparent;
  color: var(--main-blue);
  border: 1px solid transparent;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  font-size: 16px;
}

.marketplace-bill.active {
  background: var(--white-color);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  color: var(--main-blue);
}

.marketplace-group {
  display: none;
}

.marketplace-group.active {
  display: block;
}

.marketplace-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1400px;
}

.marketplace-group--onprem .marketplace-cards {
  grid-template-columns: repeat(3, minmax(260px, 320px));
  justify-content: center;
  align-content: center;
}

.marketplace-card {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--white-color);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.marketplace-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.marketplace-card__header {
  padding: 10px 16px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.marketplace-card__title {
  margin: 0;
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.3;
  color: rgba(0, 0, 0, 0.9);
}

.marketplace-card__subheader {
  padding: 16px;
  border: 1px solid white;
  margin: 15px;
  border-radius: 16px;
}

.marketplace-card__subheader-title {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  color: #cde800;
  line-height: 1.2;
  text-align: center;
}

.marketplace-card__subheader-title-sub {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.marketplace-card__subheader-price {
  font-size: 26px;
  font-weight: 800;
  color: #cde800;
  margin: 8px 0 0;
  line-height: 1.2;
  text-align: center;
}

.marketplace-card__subheader-subprice {
  margin: 4px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
  line-height: 1.3;
  text-align: center;
}

.marketplace-card__user-select {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.marketplace-user-count-select {
  background: var(--white-color);
  border-radius: 6px;
  color: var(--main-color);
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  min-width: 70px;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s ease;
  height: 28px;
  border: none;
  padding: 0;
}

.marketplace-card__price-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin: 8px 0;
}

.marketplace-card__price-old {
  display: block;
  font-size: 14px;
  color: var(--white-color);
  text-decoration: line-through;
  text-align: center;
}

.marketplace-card__buy-btn {
  background: var(--main-color);
  color: var(--white-color);
  border: 2px solid var(--white-color);
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  margin-top: 12px;
  transition: all 0.2s ease;
}

.marketplace-card__buy-btn:hover {
  background: var(--white-color);
  color: var(--main-color);
}

.marketplace-card__buy-btn:active {
  transform: translateY(0);
}

.marketplace-card__buy-btn:disabled {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.6);
  cursor: not-allowed;
  transform: none;
}

.marketplace-card__buy-btn:disabled:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.6);
  transform: none;
  box-shadow: none;
}

.marketplace-cards--modern {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.marketplace-group--onprem .marketplace-cards--modern {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.marketplace-card--modern {
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--main-color);
  box-shadow: 0 18px 40px rgba(20, 37, 63, 0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.marketplace-card--modern:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 48px rgba(20, 37, 63, 0.14);
}

.marketplace-card--featured {
  border: 1px solid rgba(255, 176, 72, 0.4);
  box-shadow: 0 24px 55px rgba(255, 176, 72, 0.2);
}

.marketplace-card--modern .marketplace-card__header {
  background-color: var(--white-color);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.marketplace-card__badge {
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: rgba(56, 105, 255, 0.1);
  color: var(--main-color);
  text-transform: uppercase;
}

.top {
  background-color: #ffc72c;
}

.marketplace-group--onprem .marketplace-card--modern .marketplace-card__badge {
  background: rgba(56, 105, 255, 0.1);
  color: var(--main-color);
}

.marketplace-card--modern .marketplace-card__title {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.9);
}

.marketplace-group--onprem .marketplace-card--modern {
  background: var(--main-color);
  color: rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.marketplace-group--onprem .marketplace-card--modern .marketplace-card__title,
.marketplace-group--onprem .marketplace-card--modern .marketplace-card__description {
  color: rgba(0, 0, 0, 0.9);
}

.marketplace-card__description {
  margin: 0;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.6);
}

.marketplace-card--modern .marketplace-card__subheader {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.marketplace-card--modern .marketplace-card__price-wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.marketplace-card--modern .marketplace-card__price-current {
  font-size: 28px;
  font-weight: 800;
  color: #cde800;
}

.marketplace-group--onprem .marketplace-card--modern .marketplace-card__price-current,
.marketplace-group--onprem .marketplace-card--modern .marketplace-card__price-note,
.marketplace-group--onprem .marketplace-card--modern .marketplace-card__price-old {
  color: var(--white-color);
}

.marketplace-card--modern .marketplace-card__price-note {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(0, 0, 0, 0.5);
}

.marketplace-card--modern .marketplace-card__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 6px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.marketplace-group--onprem .marketplace-card--modern .marketplace-card__content {
  border-top-color: rgba(0, 0, 0, 0.06);
}

.marketplace-card--modern .marketplace-card__perk {
  margin: 0;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  gap: 8px;
}

.marketplace-card--modern .marketplace-card__perk::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--main-color);
  display: inline-block;
}

.marketplace-group--onprem .marketplace-card--modern .marketplace-card__perk {
  color: rgba(0, 0, 0, 0.7);
}

.marketplace-group--onprem .marketplace-card--modern .marketplace-card__perk::before {
  background: var(--main-color);
}

.marketplace-card--modern .marketplace-card__buy-btn {
  align-self: flex-start;
  padding: 12px 24px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--white-color);
  color: var(--main-color);
}

.marketplace-card--modern .marketplace-card__buy-btn:hover {
  background: var(--main-color);
  color: #ffffff;
  border-color: #fff;
}

.marketplace-group--onprem .marketplace-card--modern .marketplace-card__buy-btn {
  border-color: rgba(0, 0, 0, 0.08);
  background: var(--white-color);
  color: var(--main-color);
}

.marketplace-group--onprem .marketplace-card--modern .marketplace-card__buy-btn:hover {
  background: var(--main-color);
  color: #ffffff;
  border-color: var(--white-color);
}

.marketplace-card__user-select--modern {
  width: 100%;
}

.marketplace-user-count-select--modern {
  width: 100%;
  border-radius: 14px;
  padding: 10px 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}

.marketplace-group--onprem .marketplace-user-count-select--modern {
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.8);
}

.marketplace-card__price-wrapper--select {
  width: 100%;
}


.technical-support {
  background: linear-gradient(180deg, #07303a 0%, #0a3a45 50%, #ffffff 100%);
  position: relative;
}

.technical-support__title {
  text-align: center;
  font-size: 48px;
  font-weight: 800;
  color: var(--white-color);
  margin-bottom: 60px;
  position: relative;
}

.technical-support__title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--white-color);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 0 20px;
}

.pricing-card {
  background: var(--white-color);
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  min-height: 300px;
  min-width: 350px;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--main-color);
}

.pricing-card__header {
  padding: 30px 25px 25px;
  background: var(--main-color);
  text-align: center;
  border-bottom: 2px solid #000;
  flex-shrink: 0;
  position: relative;
}

.pricing-card__badge {
  position: absolute;
  top: 5px;
  right: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 10;
  background: #ffc72c;
  color: #532400;
}

.pricing-card__title {
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
  line-height: 1.3;
}

.pricing-card__hours {
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
  opacity: 0.6;
}

.pricing-card__price {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 800;
  color: #cde800;
}

.pricing-card__period {
  font-size: 12px;
  font-weight: 700;
  color: white;
  opacity: 0.6;
}

.pricing-card__content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card__toggle {
  width: 100%;
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--main-color), var(--main-blue));
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 92, 115, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.pricing-card__toggle:hover {
  background: linear-gradient(135deg, #007a94, #0a3a45);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 92, 115, 0.4);
}

.toggle-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.pricing-card__toggle.active .toggle-icon {
  transform: rotate(180deg);
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.pricing-card__features.active {
  opacity: 1;
}

.pricing-card__footer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

.pricing-card__features.active + .pricing-card__footer {
  max-height: 120px;
  opacity: 1;
  margin-top: 20px;
}

.pricing-card__buy-btn {
  width: 100%;
  padding: 14px 20px;
  border-radius: 25px;
  border: none;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  color: #cde800;
  background: linear-gradient(135deg, var(--main-color), var(--main-blue));
  transition: all 0.3s ease;
}

.pricing-card__buy-btn:hover {
  background: linear-gradient(135deg, #007a94, #0a3a45);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.8);
  transition: all 0.3s ease;
}

.feature-item:hover {
  color: var(--main-color);
  transform: translateX(3px);
}

.feature-icon {
  width: 16px;
  height: 16px;
  color: #28a745;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-disabled {
  opacity: 0.5;
  color: rgba(0, 0, 0, 0.5);
}

.feature-disabled .feature-icon {
  color: #dc3545;
}

.feature-disabled:hover {
  opacity: 0.7;
  transform: none;
}

.carousel-feedback-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  pointer-events: all;
  z-index: 20;
}

.feedback-btn-carousel {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--main-color), var(--main-blue));
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 92, 115, 0.3);
  backdrop-filter: blur(10px);
  pointer-events: all;
}

.feedback-btn-carousel:hover {
  background: linear-gradient(135deg, #007a94, #0a3a45) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(0, 92, 115, 0.4) !important;
}

.feedback-btn-carousel:active {
  transform: translateY(0) !important;
}

.feedback-icon-carousel {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.case-btn {
  background: linear-gradient(
    135deg,
    var(--main-color) 0%,
    var(--main-blue) 100%
  );
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
  box-shadow: 0 4px 15px rgba(0, 92, 115, 0.3);
}

.case-btn:hover {
  background: linear-gradient(
    135deg,
    var(--main-blue) 0%,
    var(--main-color) 100%
  );
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 92, 115, 0.4);
}

.case-btn:active {
  transform: translateY(0);
}

.case-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.case-modal.show {
  display: block;
  opacity: 1;
}

.case-modal__content {
  background-color: white;
  margin: 3% auto;
  padding: 0;
  border-radius: 20px;
  width: 95%;
  max-width: 1000px;
  position: relative;
  transform: scale(0.7);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.case-modal.show .case-modal__content {
  transform: scale(1);
}

.case-modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: var(--main-color);
  font-size: 22px;
  cursor: pointer;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.case-modal__nav:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-50%) scale(1.05);
}

.case-modal__nav:active {
  transform: translateY(-50%) scale(0.95);
}

.case-modal__nav--prev {
  left: 10px;
}
.case-modal__nav--next {
  right: 10px;
}

.case-modal__nav--outside {
  top: 50%;
  transform: translateY(-50%);
}

.case-modal__nav--outside#casePrev {
  left: calc(50% - 550px);
}
.case-modal__nav--outside#caseNext {
  right: calc(50% - 550px);
}


.feedback-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.feedback-modal.active {
  display: flex;
}

.feedback-modal__content {
  width: 90%;
  max-width: 800px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  position: relative;
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.feedback-modal__header {
  background: linear-gradient(135deg, var(--main-color), var(--main-blue));
  color: white;
  padding: 25px 30px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feedback-modal__title {
  margin: 0;
  width: 100%;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.feedback-modal__close {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.feedback-modal__close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.feedback-modal__close:active {
  transform: scale(0.95);
}

#supportModal .b24-form-padding-bottom {
  padding-bottom: 0 !important;
}

#supportModal .b24-form-header-padding {
  padding: 0 !important;
}

#supportModal .b24-form-control-string .b24-form-control {
  background-color: var(--white-color) !important;
  border: 2px solid var(--main-blue) !important;
  padding-top: 0 !important;
}

#supportModal .b24-form-control-label {
  display: none;
}

#supportModal .b24-form-container {
  display: block !important;
}

#supportRequestModal .b24-form-padding-bottom {
  padding-bottom: 0 !important;
}

#supportRequestModal .b24-form-header-padding {
  padding: 0 !important;
}

#supportRequestModal .b24-form-control-string .b24-form-control {
  background-color: var(--white-color) !important;
  border: 2px solid var(--main-blue) !important;
}

#supportRequestModal .b24-form-container {
  display: block !important;
}

#supportRequestModal .b24-form-btn {
  color: #fff !important;
}

.feedback-modal__body {
  height: calc(100% - 90px);
  overflow: auto;
}

.architecture-modal__content {
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
}

.architecture-modal__lead {
  font-size: 32px;
  font-weight: 800;
  color: var(--main-color);
  margin-bottom: 10px;
  line-height: 1.2;
  text-align: center;
}

.architecture-modal__lead--highlight {
  color: #ffc72c;
  font-size: 36px;
  margin-bottom: 40px;
  text-align: center;
}

.architecture-modal__text {
  font-size: 17px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 30px;
  text-align: center;
}

.architecture-modal__list {
  text-align: left;
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  margin: 0 auto 40px;
  padding-left: 0;
  list-style: none;
  max-width: 600px;
}

.architecture-modal__list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 16px;
}

.architecture-modal__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--main-color);
  font-size: 20px;
  font-weight: 700;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 92, 115, 0.1);
  border-radius: 50%;
}

.architecture-modal__btn {
  width: 100%;
  background: linear-gradient(135deg, var(--main-color), var(--main-blue));
  color: white;
  border: none;
  padding: 16px 40px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 92, 115, 0.3);
}

.architecture-modal__btn:hover {
  background: linear-gradient(135deg, #007a94, #0a3a45);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 92, 115, 0.4);
}

.architecture-modal__btn:active {
  transform: translateY(0);
}

.b24-form-container {
  height: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.b24-form-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}

.b24-form-wrapper.b24-form-border-bottom {
  border-bottom: none !important;
  max-width: 100%;
}

.case-modal__header {
  background: linear-gradient(
    135deg,
    var(--main-color) 0%,
    var(--main-blue) 100%
  );
  color: white;
  padding: 25px 30px;
  border-radius: 20px 20px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.case-modal__title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}

.case-modal__close {
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.case-modal__close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.case-modal__body {
  padding: 30px;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  max-height: 80vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--main-color) #f1f1f1;
}

.case-modal__body::-webkit-scrollbar {
  width: 8px;
}

.case-modal__body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.case-modal__body::-webkit-scrollbar-thumb {
  background: var(--main-color);
  border-radius: 4px;
}

.case-modal__body::-webkit-scrollbar-thumb:hover {
  background: var(--main-blue);
}

.case-modal__review h4 {
  color: var(--main-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  border-bottom: 2px solid var(--main-color);
  padding-bottom: 8px;
}

.case-modal__review p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin: 0;
  text-align: justify;
}

.case-modal__case {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid #e9ecef;
}

.case-modal__case h4 {
  color: var(--main-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--main-color);
  padding-bottom: 8px;
}

.case-modal__case div {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.case-modal__case div br {
  margin-bottom: 15px;
  display: block;
  content: "";
}

.case-modal__case div p {
  margin: 0 0 15px 0;
  text-align: justify;
}

.case-block {
  background: #f8f9fa;
  border-left: 4px solid var(--main-color);
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.case-block-title {
  font-weight: 700;
  color: var(--main-color);
  font-size: 16px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.case-block-content {
  color: #495057;
  line-height: 1.7;
  margin: 0;
}

.case-slider {
  position: relative;
  overflow: hidden;
  margin-bottom: 25px;
}

.case-slide {
  display: none;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.4s ease;
}

.case-slide.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

.case-slider-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.case-nav-btn {
  background: #e9ecef;
  border: 2px solid transparent;
  color: #6c757d;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.case-nav-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.case-nav-btn:hover::before {
  left: 100%;
}

.case-nav-btn:hover {
  background: #dee2e6;
  color: #495057;
}

.case-nav-btn.active {
  background: linear-gradient(
    135deg,
    var(--main-color) 0%,
    var(--main-blue) 100%
  );
  color: white;
  border-color: var(--main-color);
  box-shadow: 0 4px 15px rgba(0, 92, 115, 0.3);
  transform: scale(1.05);
}

.case-nav-btn.active:hover {
  background: linear-gradient(
    135deg,
    var(--main-blue) 0%,
    var(--main-color) 100%
  );
  transform: scale(1.05);
}


#contacts {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

#contacts .contacts__container h2 {
  text-align: center;
  font-size: 48px;
  font-weight: 800;
  color: var(--main-color);
  margin-bottom: 60px;
  position: relative;
}

#contacts .contacts__container h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--main-color), var(--main-blue));
  border-radius: 2px;
}

#contacts .contacts__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 30px;
  align-items: start;
}

#contacts .contacts__content {
  padding-right: 10px;
}

#contacts .contacts__lead {
  font-size: 44px;
  font-weight: 800;
  color: var(--main-color);
  margin: 0 0 12px 0;
}

#contacts .contacts__text {
  font-size: 18px;
  color: #495057;
  margin: 0 0 18px 0;
}

#contacts .contacts__bullets {
  margin: 0;
  padding-left: 18px;
  color: #495057;
  line-height: 1.7;
}

#contacts .b24-form-header-padding {
  padding: 0 !important;
}

#contacts .b24-form-content {
  padding: 0 !important;
}

#contacts .b24-form-wrapper.b24-form-shadow {
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
}

#contacts .b24-form-wrapper {
  background-color: transparent !important;
}

#contacts .b24-form-control-string .b24-form-control {
  background-color: transparent !important;
  border-width: 2px;
  border-color: var(--main-color);
}

#contacts .b24-form-btn {
  background-color: var(--main-color);
}


#contacts .b24-form-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}

#footer {
  background-color: #07303a;
  color: white;
}

#footer .footer__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#footer .footer__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__btn-system {
  color: white;
  width: fit-content;
  text-decoration: underline;
  cursor: pointer;
}

#footer .footer__text {
  font-size: 16px;
  color: white;
  margin: 0;
}

#footer .politic {
  cursor: pointer;
  text-decoration: underline;
}

#footer .footer__text a {
  color: white;
}

.custom {
  background-color: transparent;
}

.custom .b24-form-wrapper {
  background-color: transparent !important;
}

.custom .b24-form-control {
  background-color: white !important;
}

.custom .b24-form-control-desc {
  color: white;
  opacity: 1 !important;
}

.custom .b24-form-sign-abuse {
  background-color: white;
}

.custom .b24-form-header-padding {
  padding: 0 !important;
}

.b24-form-btn {
  background-color: var(--main-color) !important;
}

input.b24-form-control:-webkit-autofill {
  -webkit-background-clip: border-box !important;
}

.carousel-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: var(--main-color);
  border: 2px solid var(--white-color);
  border-radius: 50%;
  color: var(--white-color);
  cursor: pointer;
  z-index: 1000;
  pointer-events: auto;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: none;
}

.b24-form-control-file-item {
  background-color: white !important;
}

.second__hero {
  background: linear-gradient(180deg, var(--main-blue) 0%, #0a3a45 50%, #0d424e 100%);
  position: relative;
  padding: 120px 0 80px;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.second__hero-title {
  font-size: 64px;
  font-weight: 800;
  color: var(--white-color);
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.2;
}

.second__hero-subtitle {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-weight: 400;
}

/* Portal Sections */
.portal-section {
  padding: 80px 0;
  background-color: var(--white-color);
  position: relative;
}

.portal-section--crm {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.portal-section--hr {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.portal-section--automation {
  background: linear-gradient(180deg, #ffffff 0%, #f0f4f7 100%);
}

.portal-section__title {
  font-size: 48px;
  font-weight: 800;
  color: var(--main-color);
  margin-bottom: 60px;
  text-align: center;
  line-height: 1.2;
}

/* Portal Slider */
.portal-slider {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

.portal-slider__track {
  overflow: hidden;
  border-radius: 24px;
  position: relative;
}

.portal-slider__container {
  display: flex;
  gap: 30px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  padding-right: 60px;
}

.portal-card {
  flex: 0 0 43%;
  min-width: calc(33.333% - 20px);
  max-width: 43%;
  background: var(--white-color);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 92, 115, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.portal-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 92, 115, 0.2);
}

.portal-card__image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--main-color) 0%, var(--main-blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.portal-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portal-card:hover .portal-card__image img {
  transform: scale(1.05);
}

.portal-card__content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.portal-card__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--main-color);
  margin-bottom: 15px;
  line-height: 1.3;
  min-height: 60px;
}

.portal-card__description {
  font-size: 16px;
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.portal-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: var(--main-color);
  border: 2px solid var(--white-color);
  border-radius: 50%;
  color: var(--white-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 92, 115, 0.3);
}

.portal-slider__btn:hover {
  background: var(--main-blue);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 92, 115, 0.4);
}

.portal-slider__btn:active {
  transform: translateY(-50%) scale(0.95);
}

.portal-slider__btn svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.5;
}

.portal-slider__btn--prev {
  left: 0;
}

.portal-slider__btn--next {
  right: 0;
}

/* Contacts section for second.html */
.contacts {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  padding: 80px 0;
}

.contacts .contacts__container {
  max-width: 1420px;
  width: 100%;
  padding: 40px 50px;
  margin: 0 auto;
}

.contacts .contacts__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 30px;
  align-items: start;
}

.contacts .contacts__content {
  padding-right: 10px;
}

.contacts .contacts__lead {
  font-size: 44px;
  font-weight: 800;
  color: var(--main-color);
  margin: 0;
  line-height: 1.2;
}

.contacts .contacts__form {
  position: relative;
}

.contacts .b24-form-container {
  position: relative;
}

.contacts .b24-form-header-padding {
  padding: 0 !important;
}

.contacts .b24-form-content {
  padding: 0 !important;
}

.contacts .b24-form-wrapper.b24-form-shadow {
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
}

.contacts .b24-form-wrapper {
  background-color: transparent !important;
}

.contacts .b24-form-control-string .b24-form-control {
  background-color: transparent !important;
  border-width: 2px;
  border-color: var(--main-color);
}

.contacts .b24-form-btn {
  background-color: var(--main-color);
}

.contacts .b24-form-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}

