/* ============================================================================
   GOSOFT — СТРАНИЦА О КОМПАНИИ (и вакансии)
   Вынесено из css/style.css 2026-08-26.
   Подключается ТОЛЬКО на соответствующих страницах (см. includes/enqueue.php),
   поэтому каталог, корзина и чекаут больше не тянут эти стили.

   Правила и @media перенесены БЕЗ ИЗМЕНЕНИЙ, в исходном порядке.
   Переносились только те, у которых ВСЕ селекторы принадлежат этой странице.
   ========================================================================== */

.about-banner {
  padding: 20px 0;
}

.about-banner__body {
  padding: 49px 40px 49px 80px;
  border-radius: 11px;
  background: var(--card-gray);
  display: flex;
  overflow: hidden;
}

.about-banner__content {
  max-width: 750px;
  flex: 1 1 0;
}

.about-banner__title {
  text-transform: uppercase;
  font-size: 26px;
  font-weight: 700;
  line-height: 135%;
  font-family: "Jost", sans-serif;
}

.about-banner__text {
  margin-top: 20px;
  display: flex;
  gap: 8px;
  align-items: center;
  line-height: 140%;
  font-weight: 600;
}

.about-banner__icon {
  width: 20px;
  height: 19px;
  scale: 0.8;
  color: #fff;
  fill: #fff;
}

.about-banner__image {
  position: relative;
  flex: 0 1 38%;
  min-width: 320px;
  align-self: stretch;
  display: block;
  pointer-events: none;
}

.about-banner__img {
  position: absolute;
  right: -40px;
  bottom: -48px;
  width: clamp(280px, 22vw, 520px);
  height: auto;
  object-fit: contain;
  display: block;
  z-index: 0;
}

.about-banner__actions {
  margin-top: 30px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .about-banner__body {
    flex-direction: column;
    align-items: center;
    padding: 28px 16px;
    gap: 20px;
  }
  .about-banner__actions {
    justify-content: center;
    flex-wrap: wrap;
  }
  .about-banner__content {
    margin-right: 0;
  }
  .about-banner__image {
    margin-left: 0;
    position: relative;
    flex: none;
    min-width: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-self: auto;
    margin-top: 10px;
  }

  .about-banner__img {
    position: static;
    right: -50px;
    bottom: auto;
    width: clamp(240px, 70vw, 420px);
    height: auto;
    object-fit: contain;
    display: block;
  }
}

.about-whywe {
  padding: 50px 0;
}

.about-whywe__title {
  font-size: 25px;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 135%;
}

.about-whywe__subtitle {
  margin-top: 24px;
  font-size: 17px;
  font-weight: 500;
  line-height: 140%;
  max-width: 660px;
}

.about-whywe__body {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.about-whywe__item {
  display: flex;
  align-items: start;
  gap: 12px;
  flex-direction: column;
}

.about-whywe__item-img {
  width: 40px;
  height: 40px;
}

.about-whywe__item-title {
  line-height: 130%;
  font-weight: 600;
  font-size: 17px;
}

.about-whywe__item-text {
  margin-top: 18px;
  color: var(--primary-gray);
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
}

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

@media (max-width: 480px) {
  .about-whywe {
    padding: 25px 0;
  }
  .about-whywe__title {
    font-size: 19px;
  }
  .about-whywe__subtitle {
    margin-top: 12px;
  }
  .about-whywe__body {
    margin-top: 30px;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .about-whywe__item {
    flex-direction: row;
  }
  .about-whywe__item-text {
    margin-top: 5px;
  }
}

.about-distributors {
  padding: 80px 0;
}

.about-distributors__title {
  font-size: 25px;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 135%;
}

.about-distributors__body {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.about-distributors__item {
  padding: 30px;
  height: 102px;
  background: var(--card-gray);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-distributors__image {
  object-fit: cover;
}

.about-distributors__tooltip {
  position: absolute;
  top: -68px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-orange);
  color: var(--text-gray-light);
  font-weight: 600;
  font-size: 15px;
  line-height: 120%;
  max-width: 155px;
  width: 100%;
  text-align: center;
  border-radius: 5px;
  padding: 12px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.about-distributors__tooltip::before {
  content: url("../img/about-page/point.svg");
  position: absolute;
  left: 50%;
  bottom: -3px;
  transform: translateX(-50%);
  width: 22px;
  height: 10px;
  display: block;
}

@media (max-width: 1023px) {
  .about-distributors__body {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .about-distributors__body {
    margin-top: 10px;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .about-distributors {
    padding: 25px 0;
  }
  .about-distributors__title {
    font-size: 19px;
  }
}

.about-howwework {
  padding: 80px 0;
}

.about-howwework__title {
  font-size: 25px;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 135%;
}

.about-howwework__body {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 15px;
  justify-content: space-between;
  border-radius: 11px;
}

.about-howwework__item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-howwework__item-circle {
  position: relative;
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
}

.about-howework__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-howwework__item-step {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--primary-orange);
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  font-weight: 600;
  font-size: 23px;
}

.about-howework__heading {
  font-size: 17px;
  line-height: 130%;
  font-weight: 600;
}

.about-howework__text {
  font-size: 16px;
  line-height: 140%;
  font-weight: 500;
  margin-top: 10px;
  color: var(--primary-gray);
}

@media (max-width: 1023px) {
  .about-howwework__body {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .about-howwework {
    padding: 25px 0;
  }
  .about-howwework__title {
    font-size: 19px;
  }
  .about-howwework__body {
    margin-top: 20px;
  }
}

.about-since {
  padding: 50px 0;
}

.about-since__body {
  display: flex;
  gap: 40px;
  align-items: center;
}

.about-since__content {
  flex: 1 1 600px;
}

.about-since__title {
  font-size: 25px;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 135%;
}

.about-since__text {
  margin-top: 24px;
  font-size: 17px;
  font-weight: 500;
  line-height: 140%;
}

.about-since__text b {
  font-weight: 600;
}

.about-since__icon {
  width: 17px;
  height: 16px;
  fill: #fff;
}

.about-since__image {
  flex: 1 1 520px;
}

.about-since__img {
  max-width: 100%;
}

@media (max-width: 1023px) {
  .about-since {
    padding: 25px 0;
  }
  .about-since__body {
    flex-direction: column;
  }
  .about-since__content {
    flex: 1 1 auto;
  }
  .about-since__image {
    flex: 1 1 auto;
    width: 100%;
  }
  .about-since__img {
    width: 100%;
  }
}

.about-garantee {
  padding: 50px 0;
}

.about-garantee__wrap {
  display: flex;
  justify-content: space-between;
}

.about-garantee__title {
  font-size: 25px;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 135%;
}

.about-garantee__subtitle {
  margin-top: 24px;
  font-size: 17px;
  font-weight: 500;
  line-height: 140%;
  max-width: 640px;
}

.about-garantee__body {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-garantee__item {
  display: flex;
  gap: 14px;
}

.about-garantee__item:last-child {
  width: 450px;
}

.about-garantee__img {
  width: 40px;
  height: 40px;
}

.about-garantee__heading {
  font-size: 17px;
  line-height: 130%;
  font-weight: 600;
  margin-bottom: 8px;
}

.about-garantee__icon {
  width: 16px;
  height: 16px;
  fill: #fff;
}

.about-info {
  padding: 80px 0;
}

.about-info__body {
  display: flex;
  gap: 16px;
}

.about-info__content {
  flex: 0 1 575px;
}

.about-info__title {
  font-size: 25px;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 135%;
}

.about-info__list {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.about-info__item {
  gap: 10px;
  display: flex;
}

.about-info__cards {
  display: flex;
  gap: 20px;
}

.about-info__item-text {
  line-height: 150%;
  font-weight: 400;
}

.about-info__card {
  padding: 20px 30px;
  background: var(--card-gray);
  border: 1px solid var(--stroke-light);
  border-radius: 11px;
  position: relative;
  max-width: 275px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-info__card-img {
  position: absolute;
  right: 20px;
  top: -6px;
}

.about-info__card-label {
  margin-top: 30px;
  font-size: 19px;
  font-weight: 600;
  line-height: 130%;
}

.about-info__card-organization {
  margin-top: 20px;
  font-size: 17px;
  font-weight: 700;
}

.about-info__card-name {
  margin-top: 10px;
}

.about-info__card-info {
  margin-top: 30px;
  font-weight: 500;
  line-height: 160%;
  font-size: 16px;
}

.about-info__card-details {
  font-weight: 600;
  font-size: 16px;
}

.about-info__card-number {
  font-weight: 400;
  line-height: 160%;
  color: var(--primary-gray);
}

.about-info__icon {
  margin-top: 5px;
  width: 13px;
  height: 13px;
}

.about-info__card-point {
  width: 127px;
  height: 66px;
}

.about-info__text {
  display: none;
  line-height: 130%;
  font-weight: 500;
  font-size: 17px;
  margin-top: 15px;
}

@media (max-width: 1023px) {
  .about-info__body {
    flex-direction: column;
    gap: 30px;
  }
  .about-info__content {
    flex: 0 1 auto;
  }
  .about-info__text {
    display: block;
  }
}

@media (max-width: 480px) {
  .about-info {
    padding: 25px 0;
  }
  .about-info__list {
    margin-top: 20px;
  }
  .about-info__cards {
    flex-direction: column;
  }
  .about-info__card {
    width: 100%;
    max-width: 90%;
  }
  .about-info__title {
    font-size: 19px;
  }
}

.about-contacts {
  padding: 80px 0;
}

.about-contacts__body {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.about-contacts__content {
  flex: 0 1 450px;
}

.about-contacts__title {
  font-size: 25px;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 135%;
}

.about-contacts__cta {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.about-contacts__link {
  display: flex;
  gap: 10px;
  align-items: center;
  text-decoration: underline;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  transition: all 0.3s ease;
}

.about-contacts__link:hover {
  color: var(--primary-orange);
}

.about-contacts__link:first-child {
  font-size: 19px;
  font-weight: 500;
  text-decoration: none;
}

.about-contacts__circle {
  width: 40px;
  height: 40px;
  background: var(--card-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 100%;
}

.about-contacts__link-icon {
  width: 20px;
  height: 20px;
  fill: var(--primary-blue);
}

.about-contacts__link-icon-tg {
  width: 18px;
  height: 14px;
  fill: var(--primary-blue);
}

.about-contacts__link-icon-chat {
  width: 23px;
  height: 17px;
  fill: var(--primary-blue);
}

.about-contacts__label {
  margin-top: 40px;
  font-size: 25px;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 135%;
}

.about-contacts__form {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-contacts__input {
  width: 50%;
  background: var(--card-gray);
  padding: 15px 25px;
  height: 43px;
  border-radius: 5px;
  font-size: 16px;
}

.about-contacts__input::placeholder {
  font-family: "Involve", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: var(--primary-gray);
}

.about-contacts__icon {
  width: 16px;
  height: 16px;
  fill: #fff;
}

.about-contacts__textarea {
  background: var(--card-gray);
  padding: 15px 25px;
  resize: none;
  border-radius: 5px;
  min-height: 73px;
}

.about-contacts__textarea::placeholder {
  font-family: "Involve", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: var(--primary-gray);
}

.about-contacts__image {
  flex: 0 1 652px;
}

.about-contacts__img {
  max-width: 100%;
  width: 100%;
}

@media (max-width: 1200px) {
  .about-contacts__cta {
    max-width: 500px;
  }
  .about-contacts__body {
    flex-direction: column;
  }
}

@media (max-width: 1023px) {
  .about-contacts__content,
  .about-contacts__image {
    flex: 0 1 auto;
  }
}

.about-license__banner {
  padding: 20px 0;
}

.about-license__banner__body {
  padding: 49px 40px 49px 80px;
  border-radius: 11px;
  background: var(--card-gray);
  display: flex;
  overflow: hidden;
}

.about-license__banner__content {
  max-width: 750px;
  flex: 1 1 0;
}

.about-license__banner__title {
  text-transform: uppercase;
  font-size: 26px;
  font-weight: 700;
  line-height: 135%;
  font-family: "Jost", sans-serif;
}

.about-license__banner__text {
  margin-top: 20px;
  display: flex;
  gap: 8px;
  align-items: center;
  line-height: 140%;
  font-weight: 600;
}

.about-license__banner__icon {
  width: 20px;
  height: 19px;
  scale: 0.8;
  color: #fff;
  fill: #fff;
}

.about-license__banner__image {
  position: relative;
  flex: 0 1 40%;
  min-width: 320px;
  align-self: stretch;
  display: block;
  pointer-events: none;
}

.about-license__banner__img {
  position: absolute;
  right: -40px;
  bottom: -52px;
  width: clamp(280px, 38vw, 520px);
  height: auto;
  object-fit: contain;
  display: block;
  z-index: 0;
}

.about-license__banner__actions {
  margin-top: 30px;
  display: flex;
  gap: 10px;
}

@media (max-width: 1024px) {
  .about-license__banner__body {
    flex-direction: column;
    align-items: center;
    padding: 28px 16px;
    gap: 20px;
  }
  .about-license__banner__content {
    margin-right: 0;
  }
  .about-license__banner__image {
    margin-left: 0;
    position: relative;
    flex: none;
    min-width: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-self: auto;
    margin-top: 10px;
  }

  .about-license__banner__img {
    position: static;
    left: auto;
    bottom: auto;
    width: clamp(240px, 70vw, 420px);
    height: auto;
    object-fit: contain;
    display: block;
  }
  .about-license__banner__actions {
    flex-wrap: wrap;
  }
}

.vacancies-main {
  padding: 60px 0 260px 0;
}

.vacancies-main__title {
  font-size: 25px;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 135%;
}

.vacancies-main__text {
  margin-top: 24px;
  font-size: 17px;
  font-weight: 600;
  line-height: 140%;
}
