.appearance-grid__head {
  display: flex;
  align-items: center;
}
.appearance-grid .section_num-wrp {
  margin-bottom: 30px;
}
.appearance-grid__divider {
  width: 100%;
  height: 1px;
  background-color: #626262;
}
.appearance-grid__divider.is--bottom {
  margin-top: 40px;
}
.appearance-grid__title {
  font-family: Editorialgrotesk, sans-serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: #000;
  margin: 41px 0 0;
  max-width: 825px;
  overflow-wrap: break-word;
}
.appearance-grid__row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: 10px;
  row-gap: 24px;
  margin-top: 18px;
}
.appearance-grid__card {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1920px) {
  .appearance-grid__title {
    font-size: 62px;
    line-height: 1.035;
  }
  .appearance-grid__row {
    margin-top: 8px;
  }
}

.appearance-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.appearance-card__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 704/1024;
  overflow: hidden;
  background: #d5d5d5;
}
.appearance-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.appearance-card__label {
  margin: 12px 0 0;
  font-family: "Suisse Intl", sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: left;
  color: #383838;
  overflow-wrap: break-word;
}
.appearance-card__btn {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  padding: 0 20px;
  border: 1px solid #626262;
  border-radius: 10px;
  background: transparent;
  font-family: "Suisse Intl", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #383838;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.appearance-card__btn:hover {
  background: #626262;
  border-color: #626262;
  color: #fff;
}

@media screen and (max-width: 1279px) {
  .appearance-card__btn {
    height: 46px;
  }
  .appearance-grid .section_num-wrp {
    margin-bottom: 36px;
  }
  .appearance-grid__title {
    font-size: 40px;
    margin-top: 31px;
  }
  .appearance-grid__divider.is--bottom {
    margin-top: 30px;
  }
}
@media screen and (max-width: 992px) {
  .appearance-card__label {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .appearance-grid__row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 12px;
    row-gap: 24px;
  }
  .appearance-grid__title {
    font-size: 32px;
    letter-spacing: -0.03em;
  }
}
@media screen and (max-width: 639px) {
  .appearance-grid__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 10px;
    margin-top: 30px;
  }
  .appearance-grid__title {
    margin-top: 30px;
  }
  .appearance-grid .section_num-wrp {
    margin-bottom: 20px;
  }
  .appearance-grid__divider.is--bottom {
    display: none;
  }
}
.appearance-popup__photo .appearance-popup__close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 3;
  width: 24px;
  height: 24px;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  opacity: 0.7;
  cursor: pointer;
}
.appearance-popup__photo .appearance-popup__close svg {
  width: 100%;
  height: 100%;
}
.appearance-popup__photo .appearance-popup__close:hover, .appearance-popup__photo .appearance-popup__close:focus {
  opacity: 1;
}

.appearance-popup {
  display: flex;
  width: 639px;
  height: 530px;
  max-width: 100%;
  background: #fff;
  margin: 40px auto;
  border-radius: 20px;
  overflow: hidden;
}
.appearance-popup__content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 24px 0;
}
.appearance-popup__name {
  margin: 0;
  padding: 12px 24px;
  font-family: "Suisse Intl", sans-serif;
  font-size: 24px;
  font-weight: 450;
  line-height: 1.3;
  color: #000;
}
.appearance-popup__row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px;
}
.appearance-popup__row-label {
  margin: 0;
  font-family: "Suisse Intl", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #000;
  opacity: 0.4;
}
.appearance-popup__row-value {
  margin: 0;
  font-family: "Suisse Intl", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: #000;
}
.appearance-popup__desc {
  margin: 0;
  font-family: "Suisse Intl", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: #000;
  white-space: pre-line;
}
.appearance-popup__photo {
  position: relative;
  width: 320px;
  height: 100%;
  flex: 0 0 320px;
  border-radius: 0 20px 20px 0;
  overflow: hidden;
}
.appearance-popup__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.appearance-popup__nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: none;
  box-shadow: 0 0 51px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.appearance-popup__nav-btn.is--prev {
  left: 6px;
}
.appearance-popup__nav-btn.is--next {
  right: 6px;
}
.appearance-popup__nav-btn svg {
  width: 16px;
  height: 16px;
}
.appearance-popup__nav-btn.is--prev svg {
  transform: scaleX(-1);
}
.appearance-popup__dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.appearance-popup__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}
.appearance-popup__dot.is--active {
  background: #fff;
}

@media screen and (max-width: 767px) {
  .appearance-popup {
    flex-direction: column;
    height: auto;
    margin: 0;
    border-radius: 0;
  }
  .appearance-popup__photo {
    order: -1;
    width: 100%;
    height: 320px;
    flex: 0 0 320px;
    border-radius: 0;
  }
}
.industries-grid__head {
  display: flex;
  align-items: center;
}
.industries-grid .section_num-wrp {
  margin-bottom: 30px;
}
.industries-grid__divider {
  width: 100%;
  height: 1px;
  background-color: #626262;
}
.industries-grid__divider.is--bottom {
  margin-top: 40px;
}
.industries-grid__title {
  font-family: Editorialgrotesk, sans-serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: #000;
  margin: 41px 0 0;
  overflow-wrap: break-word;
}
.industries-grid__row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 40px;
}
@media screen and (min-width: 1920px) {
  .industries-grid__title {
    font-size: 84px;
    line-height: 1.035;
  }
  .industries-grid__row {
    gap: 20px;
  }
}

.industries-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  aspect-ratio: 435/283;
  padding: 20px;
  border-radius: 12px;
  background-color: #282828;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow 0.2s ease;
}
.industries-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
}
.industries-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}
.industries-card:hover .industries-card__arrow {
  transform: rotate(0);
}
.industries-card__arrow {
  position: relative;
  align-self: flex-end;
  width: 24px;
  height: 24px;
  transform: rotate(-45deg);
  transition: transform 0.2s ease;
  filter: brightness(0) invert(1) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.2));
}
.industries-card__title {
  position: relative;
  font-family: "Suisse Intl", sans-serif;
  font-size: 22px;
  font-weight: 450;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 4px 16px rgb(0, 0, 0);
}

@media screen and (min-width: 1920px) {
  .industries-card {
    padding: 25px;
  }
  .industries-card__arrow {
    width: 29px;
    height: 29px;
  }
  .industries-card__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 1279px) {
  .industries-grid__title {
    font-size: 40px;
    margin-top: 31px;
  }
  .industries-grid .section_num-wrp {
    margin-bottom: 36px;
  }
  .industries-grid__divider.is--bottom {
    margin-top: 30px;
  }
  .industries-grid__row {
    margin-top: 30px;
  }
  .industries-card {
    padding: 12px;
  }
  .industries-card__arrow {
    width: 18px;
    height: 18px;
  }
  .industries-card__title {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .industries-card {
    aspect-ratio: 167/213;
  }
  .industries-card__title {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .industries-grid__title {
    font-size: 32px;
    letter-spacing: -0.03em;
  }
}
@media screen and (max-width: 639px) {
  .industries-grid__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }
  .industries-grid .section_num-wrp {
    margin-bottom: 20px;
  }
  .industries-grid__title {
    margin-top: 30px;
  }
  .industries-grid__divider.is--bottom {
    display: none;
  }
}
.test_playground > section:not(:first-of-type) {
  margin-top: 160px;
}

.guard-features {
  --gf-icon-size: 42px;
  --gf-icon-step: 37px;
  --gf-glyph-size: 26px;
  position: relative;
  padding: 100px 0;
  background: #4a4a4a;
  color: #fff;
  overflow: hidden;
}
.guard-features__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.guard-features__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.guard-features__bg-img--2 {
  opacity: 1;
}
.guard-features:has(.guard-features__col[data-col="2"].is--active) .guard-features__bg-img--2, .guard-features:has(.guard-features__col[data-col="4"].is--active) .guard-features__bg-img--2 {
  opacity: 0;
}
.guard-features:has(.guard-features__col[data-col="2"].is--active) .guard-features__bg-img--1, .guard-features:has(.guard-features__col[data-col="4"].is--active) .guard-features__bg-img--1 {
  opacity: 1;
}
.guard-features::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
  pointer-events: none;
}
.guard-features .padding-h,
.guard-features .container {
  position: relative;
  z-index: 2;
}
.guard-features__title {
  margin: 0;
  font-family: Editorialgrotesk, sans-serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: #fff;
}
.guard-features__row {
  display: flex;
  align-items: stretch;
  gap: 20px;
  margin-top: 40px;
  min-height: 616px;
}
.guard-features__divider {
  align-self: stretch;
  width: 1px;
  background: rgba(255, 255, 255, 0.4);
  flex: 0 0 auto;
}
.guard-features__col {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 13px;
  padding: 25px 24px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0);
  outline: none;
}
@media screen and (min-width: 992px) {
  .guard-features__col {
    cursor: pointer;
    transition: padding 0.3s ease, background 0.3s ease;
  }
  .guard-features__col.is--active {
    justify-content: space-between;
    padding: 44px 24px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(97px);
    -webkit-backdrop-filter: blur(97px);
  }
  .guard-features__col.is--active .guard-features__icons {
    display: none;
  }
  .guard-features__col.is--active .guard-features__list {
    display: flex;
  }
}
.guard-features__toggle {
  display: none;
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
.guard-features__toggle-bar {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.5px;
  background: #fff;
  transform: translate(-50%, -50%);
}
.guard-features__toggle-bar:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
}
.guard-features__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.guard-features__col-title {
  margin: 0;
  font-family: "Suisseintl Regular", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
}
.guard-features__desc {
  margin: 0;
  font-family: "Suisseintl Regular", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.1;
  color: rgba(255, 255, 255, 0.8);
}
.guard-features__icon {
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--gf-icon-size);
  height: var(--gf-icon-size);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(58.38px);
  -webkit-backdrop-filter: blur(58.38px);
}
.guard-features__icon--shield {
  backdrop-filter: blur(64.53px);
  -webkit-backdrop-filter: blur(64.53px);
}
.guard-features__icon-glyph {
  display: block;
  width: var(--gf-glyph-size);
  height: var(--gf-glyph-size);
}
.guard-features__icons {
  display: flex;
}
.guard-features__icons .guard-features__icon + .guard-features__icon {
  margin-left: calc(var(--gf-icon-step) - var(--gf-icon-size));
}
.guard-features__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: none;
  flex-direction: column;
  gap: 10px;
}
.guard-features__list-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.guard-features__list-txt {
  font-family: "Suisseintl Regular", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
}

@media screen and (min-width: 1920px) {
  .guard-features__title {
    font-size: 64px;
  }
}
@media screen and (max-width: 1919px) {
  .guard-features {
    padding: 60px 0;
  }
}
@media screen and (min-width: 992px) and (max-width: 1919px) {
  .guard-features .padding-h {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media screen and (max-width: 1440px) {
  .guard-features {
    --gf-icon-size: 38px;
    --gf-icon-step: 33px;
    --gf-glyph-size: 22px;
  }
  .guard-features__row {
    gap: 15px;
  }
  .guard-features__col {
    padding: 20px 24px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1440px) {
  .guard-features__col.is--active {
    padding: 30px 24px;
  }
}
@media screen and (max-width: 1439px) {
  .guard-features {
    padding: 40px 0;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1919px) {
  .guard-features__row {
    min-height: 504px;
  }
  .guard-features__col-title {
    font-size: 20px;
  }
  .guard-features__list-txt {
    font-size: 16px;
  }
}
@media screen and (max-width: 1279px) {
  .guard-features__row {
    min-height: 405px;
  }
  .guard-features__title {
    font-size: 40px;
  }
  .guard-features__col-title {
    font-size: 18px;
  }
  .guard-features__desc {
    font-size: 12px;
  }
  .guard-features__list-txt {
    font-size: 12px;
  }
  .guard-features {
    --gf-icon-size: 30px;
    --gf-icon-step: 25px;
    --gf-glyph-size: 18px;
    padding: 30px 0;
  }
  .guard-features__col {
    padding: 10px 14px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1279px) {
  .guard-features__col.is--active {
    padding: 20px 14px;
  }
}
@media screen and (max-width: 991px) {
  .guard-features {
    padding: 60px 0;
    background: #000;
  }
  .guard-features::before {
    content: none;
  }
  .guard-features__bg {
    bottom: auto;
    height: 516px;
    background: #000;
  }
  .guard-features__bg-img {
    top: 0;
    height: 516px;
    object-fit: cover;
    object-position: top;
    transform: translateZ(0);
  }
  .guard-features__bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 517px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, #000 92%);
    transform: translateZ(0);
  }
  .guard-features__row {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 269px 279px;
    gap: 13px;
    margin-top: 100px;
  }
  .guard-features__row::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 268.5px, transparent 268.5px, transparent 282.5px, rgba(255, 255, 255, 0.4) 282.5px);
  }
  .guard-features__row::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 275px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.4) calc(50% - 7px), transparent calc(50% - 7px), transparent calc(50% + 7px), rgba(255, 255, 255, 0.4) calc(50% + 7px));
  }
  .guard-features__divider {
    display: none;
  }
  .guard-features__col {
    padding: 12px;
    border-radius: 8px;
    gap: 6px;
  }
  .guard-features__toggle {
    display: block;
  }
  .guard-features__text {
    gap: 6px;
  }
  .guard-features__desc {
    display: none;
  }
  .guard-features__list-item {
    gap: 6px;
  }
  .guard-features__col.is--active {
    justify-content: space-between;
    padding: 16px 12px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
  }
  .guard-features__col.is--active .guard-features__toggle {
    display: none;
  }
  .guard-features__col.is--active .guard-features__desc {
    display: block;
    color: #fff;
    opacity: 0.5;
  }
  .guard-features__col.is--active .guard-features__icons {
    display: none;
  }
  .guard-features__col.is--active .guard-features__list {
    display: flex;
    gap: 4px;
  }
}
@media screen and (max-width: 639px) {
  .guard-features {
    --gf-icon-size: 24px;
    --gf-icon-step: 20px;
    --gf-glyph-size: 15px;
    padding: 60px 0 40px;
  }
  .guard-features__title {
    font-size: 32px;
    letter-spacing: -0.03em;
  }
  .guard-features__bg,
  .guard-features__bg-img {
    height: 320px;
  }
  .guard-features__bg::after {
    height: 321px;
  }
  .guard-features__row {
    margin-top: 30px;
    grid-template-rows: 280px 279px;
  }
  .guard-features__row::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 279.5px, transparent 279.5px, transparent 293.5px, rgba(255, 255, 255, 0.4) 293.5px);
  }
  .guard-features__row::after {
    top: 286px;
  }
  .guard-features__col-title {
    font-size: 16px;
  }
  .guard-features__col.is--active {
    gap: 20px;
  }
}
.arsenal__hero {
  position: relative;
  height: 620px;
  border-radius: 24px;
  overflow: hidden;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 60px;
  padding: 60px 120px;
  box-sizing: border-box;
}
.arsenal__hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.arsenal__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
}
.arsenal__hero-title, .arsenal__hero-row {
  position: relative;
  z-index: 1;
}
.arsenal__hero-title {
  margin: 0;
  font-family: Editorialgrotesk, sans-serif;
  font-size: 84px;
  font-weight: 400;
  line-height: 1.035;
  letter-spacing: -0.04em;
  color: #fff;
}
.arsenal__hero-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
.arsenal__hero-desc {
  margin: 20px 0 0;
  width: 607px;
  font-family: "Suisseintl Regular", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.285;
  color: #fff;
}
.arsenal__stats {
  width: 760px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.arsenal__stats--mobile {
  display: none;
}
.arsenal__stats-row {
  display: flex;
  gap: 12px;
  padding: 20px 0;
}
.arsenal__stats-divider {
  display: flex;
  align-items: center;
  width: 100%;
}
.arsenal__stats-divider-seg {
  flex: 1 1 0;
  height: 1.5px;
  background: rgba(86, 86, 86, 0.6);
}
.arsenal__stats-divider-gap {
  flex: 0 0 20px;
}
.arsenal__stat {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1 1 0;
  min-width: 0;
}
.arsenal__stat-divider {
  flex: 0 0 auto;
  align-self: center;
  width: 1px;
  height: 104px;
  background: rgba(86, 86, 86, 0.6);
}
.arsenal__stat-num {
  margin: 0;
  font-family: "Suisseintl Regular", sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.315;
  letter-spacing: -0.02em;
  color: #fff;
}
.arsenal__stat-label {
  margin: 0;
  font-family: "Suisseintl Regular", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}
.arsenal__tabs {
  display: flex;
  gap: 12px;
  margin: 60px 0;
  container-type: inline-size;
}
.arsenal__tab {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1 1 0;
  min-width: 0;
  height: 100px;
  padding: 20px;
  border: 1px solid #d4d4d4;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  font-family: "Suisseintl Regular", sans-serif;
  box-sizing: border-box;
}
.arsenal__tab:last-child {
  flex: 1 1 0;
  max-width: 348px;
}
.arsenal__tab.is--active {
  border-color: transparent;
  background: #e8e8e8;
}
.arsenal__tab:not(.is--active):hover {
  border-color: transparent;
  background: #f5f5f5;
}
.arsenal__tab-icon {
  flex: 0 0 auto;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}
.arsenal__tab-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.arsenal__tab-label {
  font-size: 18px;
  font-size: clamp(12px, 1.35cqi, 18px);
  font-weight: 400;
  line-height: 1.4;
  color: #383838;
  text-align: left;
}
.arsenal__section {
  display: flex;
  flex-direction: column;
  gap: 45px;
  padding-bottom: 150px;
}
.arsenal__category {
  display: flex;
  flex-direction: column;
  gap: 45px;
}
.arsenal__divider {
  height: 1px;
  background: #626262;
}
.arsenal__category-title {
  margin: 0;
  font-family: "Suisseintl Regular", sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.315;
  letter-spacing: -0.02em;
  color: #383838;
}
.arsenal__sort {
  display: flex;
  align-items: center;
  gap: 60px;
}
.arsenal__sort-label {
  font-family: "Suisseintl Regular", sans-serif;
  font-size: 20px;
  line-height: 1.4;
  color: #797979;
}
.arsenal__sort-options {
  display: flex;
  flex-wrap: wrap;
  column-gap: 12px;
  row-gap: 10px;
  align-items: center;
}
.arsenal__sort-option {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 35px;
  padding: 0 10px;
  border: none;
  border-radius: 5px;
  background: none;
  cursor: pointer;
  box-sizing: border-box;
  font-family: "Suisseintl Regular", sans-serif;
  font-size: 18px;
  color: #383838;
}
.arsenal__sort-option.is--active {
  background: #f5f5f5;
}
.arsenal__sort-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #d4d4d4;
  box-sizing: border-box;
}
.arsenal__sort-option.is--active .arsenal__sort-radio {
  border-color: #383838;
  background: radial-gradient(circle, #383838 0 40%, transparent 41%);
}
.arsenal__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 70px 40px;
}
.arsenal__card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 328px;
}
.arsenal__card-media {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 10px;
}
.arsenal__card-img-wrp {
  width: 328px;
  height: 328px;
  border-radius: 10px;
  overflow: hidden;
  background: #e8e8e8;
}
.arsenal__card-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: darken;
}
.arsenal__card-title {
  margin: 0;
  font-family: "Suisseintl Regular", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  color: #383838;
}
.arsenal__card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 328px;
  height: 60px;
  border: 1px solid #d4d4d4;
  border-radius: 10px;
  background: transparent;
  text-decoration: none;
  font-family: "Suisseintl Regular", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #585858;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.arsenal__card-btn:hover {
  background: #626262;
  border-color: #626262;
  color: #fff;
}

@media screen and (max-width: 1440px) {
  .arsenal__hero {
    height: 468px;
    gap: 30px;
    padding: 40px 80px;
  }
  .arsenal__hero-title {
    font-size: 64px;
  }
  .arsenal__hero-row {
    justify-content: flex-start;
    gap: 140px;
  }
  .arsenal__hero-desc {
    width: auto;
    flex: 1 1 0;
    font-size: 24px;
    line-height: 1.3;
  }
  .arsenal__stats {
    width: auto;
    flex: 0 0 auto;
  }
  .arsenal__stat {
    flex: 0 0 auto;
    width: 190px;
  }
  .arsenal__stat-divider {
    height: 89px;
  }
  .arsenal__stats-divider-seg {
    flex: 0 0 190px;
  }
  .arsenal__stats-divider-gap {
    flex: 0 0 24px;
  }
  .arsenal__stat-num {
    font-size: 36px;
    line-height: 1.3;
  }
  .arsenal__stat-label {
    font-size: 16px;
  }
  .arsenal__tabs {
    margin: 40px 0;
    gap: 10px;
  }
  .arsenal__tab {
    height: 75px;
    gap: 15px;
    padding: 15px 20px;
  }
  .arsenal__tab:last-child {
    max-width: 300px;
  }
  .arsenal__tab-icon {
    width: 45px;
    height: 45px;
  }
  .arsenal__tab-label {
    font-size: clamp(12px, 1.35cqi, 16px);
  }
  .arsenal__section {
    gap: 40px;
    padding-bottom: 120px;
  }
  .arsenal__category-title {
    font-size: 36px;
  }
  .arsenal__sort-label {
    font-size: 16px;
  }
  .arsenal__sort-options {
    column-gap: 12px;
    row-gap: 12px;
  }
  .arsenal__sort-option {
    font-size: 16px;
  }
  .arsenal__grid {
    gap: 50px 30px;
  }
  .arsenal__card {
    width: 248px;
  }
  .arsenal__card-media {
    gap: 20px;
  }
  .arsenal__card-img-wrp {
    width: 248px;
    height: 248px;
  }
  .arsenal__card-title {
    font-size: 18px;
  }
  .arsenal__card-btn {
    width: 248px;
  }
}
@media screen and (max-width: 1280px) {
  .arsenal__hero {
    height: auto;
    min-height: 412px;
    padding: 40px 60px;
  }
  .arsenal__hero-title {
    font-size: 56px;
  }
  .arsenal__hero-row {
    gap: 40px;
  }
  .arsenal__hero-desc {
    font-size: 22px;
  }
  .arsenal__stat {
    width: 150px;
    gap: 10px;
  }
  .arsenal__stat-divider {
    height: 72px;
  }
  .arsenal__stats-divider-seg {
    flex: 0 0 150px;
  }
  .arsenal__stats-divider-gap {
    flex: 0 0 24px;
  }
  .arsenal__stat-num {
    font-size: 32px;
  }
  .arsenal__stat-label {
    font-size: 14px;
  }
  .arsenal__section {
    gap: 15px;
    margin-left: -40px;
    margin-right: -40px;
    padding-top: 20px;
    padding-right: 30px;
    padding-bottom: 100px;
    padding-left: 30px;
  }
  .arsenal__category {
    gap: 30px;
  }
  .arsenal__category-title {
    font-size: 24px;
  }
  .arsenal__sort-options {
    column-gap: 15px;
    row-gap: 15px;
  }
  .arsenal__sort-option {
    font-size: 14px;
  }
  .arsenal__grid {
    gap: 50px 20px;
  }
  .arsenal__card {
    width: 226px;
  }
  .arsenal__card-img-wrp {
    width: 226px;
    height: 226px;
  }
  .arsenal__card-title {
    font-size: 16px;
  }
  .arsenal__card-btn {
    width: 226px;
    font-size: 18px;
  }
}
@media screen and (max-width: 992px) {
  .arsenal__hero {
    height: 390px;
    justify-content: flex-start;
    gap: 30px;
    padding: 67px 40px 30px;
  }
  .arsenal__hero-title {
    font-size: 40px;
    line-height: 0.9;
  }
  .arsenal__hero-row {
    gap: 10px;
  }
  .arsenal__hero-desc {
    margin-top: 0;
    font-size: 18px;
    line-height: 1.3;
  }
  .arsenal__stats-row {
    padding: 0;
  }
  .arsenal__stat {
    width: 130px;
    gap: 10px;
  }
  .arsenal__stat-divider {
    height: 81px;
  }
  .arsenal__stats-divider-seg {
    flex: 0 0 130px;
  }
  .arsenal__stats-divider-gap {
    flex: 0 0 20px;
  }
  .arsenal__stat-num {
    font-size: 24px;
    line-height: 1.3;
  }
  .arsenal__stat-label {
    font-size: 14px;
  }
  .arsenal__tabs {
    flex-wrap: wrap;
    gap: 10px;
  }
  .arsenal__tab {
    flex: 1 1 calc((100% - 20px) / 3);
    height: 70px;
    gap: 15px;
    padding: 15px;
  }
  .arsenal__tab:last-child,
  .arsenal__tab:nth-last-child(2) {
    flex-basis: calc((100% - 10px) / 2);
    max-width: none;
  }
  .arsenal__tab-icon {
    width: 40px;
    height: 40px;
  }
  .arsenal__tab-label {
    font-size: 16px;
  }
  .arsenal__section {
    gap: 15px;
    margin-left: -30px;
    margin-right: -30px;
    padding: 20px 30px 80px 30px;
  }
  .arsenal__category {
    gap: 15px;
  }
  .arsenal__category-title {
    font-size: 24px;
  }
  .arsenal__sort {
    gap: 30px;
  }
  .arsenal__sort-options {
    column-gap: 15px;
    row-gap: 10px;
  }
  .arsenal__grid {
    gap: 30px 10px;
  }
  .arsenal__card {
    width: 177px;
  }
  .arsenal__card-media {
    gap: 15px;
  }
  .arsenal__card-img-wrp {
    width: 177px;
    height: 177px;
  }
  .arsenal__card-title {
    font-size: 16px;
  }
  .arsenal__card-btn {
    width: 177px;
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .arsenal__hero {
    height: 490px;
    justify-content: flex-start;
    gap: 50px;
    padding: 48px 40px 30px;
  }
  .arsenal__hero-title {
    font-size: 40px;
    line-height: 0.9;
  }
  .arsenal__hero-row {
    flex-direction: column;
    justify-content: flex-start;
    gap: 30px;
  }
  .arsenal__hero-desc {
    width: 380px;
    flex: 0 0 auto;
    font-size: 18px;
    line-height: 1.3;
  }
  .arsenal__stats {
    width: auto;
  }
  .arsenal__stats-row {
    padding: 0;
  }
  .arsenal__stat {
    width: 190px;
    gap: 10px;
  }
  .arsenal__stat-divider {
    height: 81px;
  }
  .arsenal__stats-divider-seg {
    flex: 0 0 190px;
  }
  .arsenal__stats-divider-gap {
    flex: 0 0 20px;
  }
  .arsenal__stat-num {
    font-size: 24px;
    line-height: 1.3;
  }
  .arsenal__stat-label {
    font-size: 14px;
  }
  .arsenal__tabs {
    flex-wrap: wrap;
    gap: 10px;
    margin: 27px 0 15px;
  }
  .arsenal__tab {
    flex: 1 1 calc((100% - 10px) / 2);
    height: 60px;
    gap: 15px;
    padding: 10px;
  }
  .arsenal__tab:last-child {
    flex-basis: 100%;
    max-width: none;
  }
  .arsenal__tab-icon {
    width: 40px;
    height: 40px;
  }
  .arsenal__tab-label {
    font-size: 16px;
  }
  .arsenal__section {
    gap: 15px;
    margin-left: -30px;
    margin-right: -30px;
    padding: 20px 30px 80px 30px;
  }
  .arsenal__category {
    gap: 15px;
  }
  .arsenal__category-title {
    font-size: 24px;
  }
  .arsenal__sort {
    gap: 50px;
  }
  .arsenal__sort-options {
    column-gap: 10px;
    row-gap: 10px;
  }
  .arsenal__grid {
    gap: 40px 20px;
  }
  .arsenal__card {
    width: 160px;
  }
  .arsenal__card-media {
    gap: 15px;
  }
  .arsenal__card-img-wrp {
    width: 160px;
    height: 160px;
  }
  .arsenal__card-title {
    font-size: 16px;
  }
  .arsenal__card-btn {
    width: 160px;
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .arsenal__hero {
    height: 620px;
    justify-content: flex-start;
    gap: 50px;
    padding: 30px 20px;
  }
  .arsenal__hero-title {
    font-size: 32px;
    line-height: 0.9;
  }
  .arsenal__hero-row {
    flex-direction: column;
    justify-content: flex-start;
    gap: 30px;
  }
  .arsenal__hero-desc {
    width: 100%;
    flex: 0 0 auto;
    font-size: 18px;
    line-height: 1.3;
  }
  .arsenal__stats:not(.arsenal__stats--mobile) {
    display: none;
  }
  .arsenal__stats--mobile {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
  }
  .arsenal__stats-row-mobile {
    display: flex;
    align-items: stretch;
    gap: 20px;
    width: 100%;
  }
  .arsenal__stats--mobile .arsenal__stat {
    flex: 1 1 0;
    width: auto;
    gap: 15px;
  }
  .arsenal__stats--mobile .arsenal__stat-divider {
    align-self: stretch;
    flex: 0 0 1px;
    width: 1px;
    height: auto;
    background: rgba(86, 86, 86, 0.6);
  }
  .arsenal__stats-hdivider {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
  }
  .arsenal__stats-hdivider-seg {
    flex: 1 1 0;
    height: 1.5px;
    background: #464646;
  }
  .arsenal__stats-hdivider-spacer {
    flex: 0 0 1px;
    width: 1px;
  }
  .arsenal__stat-num {
    font-size: 24px;
    line-height: 1.3;
  }
  .arsenal__stat-label {
    font-size: 14px;
  }
  .arsenal__tabs {
    flex-wrap: wrap;
    gap: 10px;
  }
  .arsenal__tab {
    flex: 0 0 calc(50% - 5px);
    height: 97px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 15px;
    padding: 10px;
  }
  .arsenal__tab:last-child {
    flex-basis: 100%;
  }
  .arsenal__tab-icon {
    width: 40px;
    height: 40px;
  }
  .arsenal__tab-label {
    font-size: 16px;
  }
  .arsenal__section {
    gap: 15px;
    margin-left: -10px;
    margin-right: -10px;
    padding: 20px 10px 60px 10px;
  }
  .arsenal__category {
    gap: 15px;
  }
  .arsenal__category-title {
    font-size: 24px;
  }
  .arsenal__sort {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .arsenal__sort-label {
    font-size: 16px;
  }
  .arsenal__sort-options {
    width: 100%;
    column-gap: 5px;
    row-gap: 5px;
  }
  .arsenal__sort-option {
    background: #f5f5f5;
    font-size: 14px;
  }
  .arsenal__sort-option.is--active {
    border: 1px solid #000;
  }
  .arsenal__sort-radio {
    display: none;
  }
  .arsenal__grid {
    gap: 20px 15px;
  }
  .arsenal__card {
    width: 160px;
  }
  .arsenal__card-media {
    gap: 15px;
  }
  .arsenal__card-img-wrp {
    width: 160px;
    height: 160px;
  }
  .arsenal__card-title {
    font-size: 16px;
  }
  .arsenal__card-btn {
    width: 160px;
    font-size: 16px;
  }
}
.licenses__title {
  margin: 0;
  padding: 80px 0;
  text-align: center;
  font-family: Editorialgrotesk, sans-serif;
  font-weight: 400;
  font-size: 84px;
  line-height: 1.035;
  letter-spacing: -0.04em;
  color: #373737;
}
.licenses__tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-bottom: 90px;
}
.licenses__tabs-divider {
  flex: 0 0 1px;
  width: 1px;
  height: 110px;
  background: rgba(212, 212, 212, 0.6);
}
.licenses__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1194px;
  margin: 0 auto;
  padding: 40px 0 150px;
}
.licenses__panel {
  display: none;
  width: 100%;
}
.licenses__panel.is--active {
  display: block;
}
.licenses__block {
  width: 100%;
  margin-bottom: 80px;
}
.licenses__block:last-child {
  margin-bottom: 0;
}
.licenses__block-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}
.licenses__block-title {
  margin: 0;
  font-family: "Suisseintl Regular", sans-serif;
  font-size: 48px;
  line-height: 1.315;
  letter-spacing: -0.02em;
  color: #373737;
}
.licenses__block-divider {
  width: 100%;
  height: 1px;
  background: #626262;
}
.licenses__grid, .licenses__reviews {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.licenses-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 180px;
  height: 150px;
  padding: 20px 10px;
  border: none;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  box-sizing: border-box;
  transition: background 0.2s ease;
}
.licenses-tab:not(.is--active):hover {
  background: #f5f5f5;
}
.licenses-tab__icon {
  width: 60px;
  height: 60px;
  background-color: #797979;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}
.licenses-tab__label {
  font-family: "Suisseintl Regular", sans-serif;
  font-size: 18px;
  color: #797979;
}
.licenses-tab.is--active {
  background: #f5f5f5;
}
.licenses-tab.is--active .licenses-tab__icon {
  background-color: #373737;
}
.licenses-tab.is--active .licenses-tab__label {
  color: #373737;
}

.licenses-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: 587px;
  height: 255px;
  padding: 25px;
  border-radius: 15px;
  background: #f5f5f5;
  box-sizing: border-box;
}
.licenses-item__thumb {
  flex: 0 0 auto;
  width: 140px;
  height: 205px;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.licenses-item__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  flex: 1 1 0;
  min-width: 0;
}
.licenses-item__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.licenses-item__title {
  margin: 0;
  font-family: "Suisseintl Regular", sans-serif;
  font-size: 20px;
  line-height: 1.4;
  color: #373737;
}
.licenses-item__arrow {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  transform: rotate(-45deg);
  transition: transform 0.2s ease;
}
.licenses-item__desc {
  margin: 0;
  font-family: "Suisseintl Regular", sans-serif;
  font-size: 18px;
  line-height: 1.4;
  color: #373737;
}
.licenses-item:hover .licenses-item__arrow {
  transform: rotate(0);
}

.licenses-review {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  width: 587px;
  padding: 30px;
  border-radius: 15px;
  background: #f5f5f5;
  box-sizing: border-box;
}
.licenses-review__quote {
  margin: 0;
  font-family: "Suisseintl Regular", sans-serif;
  font-size: 32px;
  line-height: 1.285;
  color: #373737;
}
.licenses-review__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.licenses-review__author--photo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}
.licenses-review__avatar {
  flex: 0 0 auto;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}
.licenses-review__author-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.licenses-review__name {
  margin: 0;
  font-family: "Suisseintl Regular", sans-serif;
  font-size: 20px;
  color: #373737;
}
.licenses-review__role {
  margin: 0;
  font-family: "Suisseintl Regular", sans-serif;
  font-size: 16px;
  color: #797979;
}

.licenses-cert {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 283px;
  height: 396px;
  padding: 30px;
  border-radius: 15px;
  background: #f5f5f5;
  box-sizing: border-box;
}
.licenses-cert__img {
  width: 176px;
  height: 257px;
  border-radius: 8px;
  object-fit: cover;
}
.licenses-cert__caption {
  width: 211px;
  text-align: center;
}
.licenses-cert__name {
  margin: 0;
  font-family: "Suisseintl Regular", sans-serif;
  font-size: 20px;
  line-height: 1.4;
  color: #373737;
}
.licenses-cert__role {
  margin: 0;
  font-family: "Suisseintl Regular", sans-serif;
  font-size: 16px;
  line-height: 1.21;
  color: #797979;
}

@media screen and (max-width: 1440px) {
  .licenses__title {
    padding: 60px 0;
    font-size: 64px;
    line-height: 0.9;
  }
  .licenses__tabs {
    padding-bottom: 60px;
  }
  .licenses__content {
    max-width: 905px;
    padding: 30px 0 120px;
  }
  .licenses__block {
    margin-bottom: 60px;
  }
  .licenses__block-title {
    font-size: 36px;
  }
  .licenses__grid,
  .licenses__reviews {
    gap: 15px;
  }
  .licenses-tab {
    width: 160px;
    height: 130px;
    border-radius: 8px;
  }
  .licenses-tab__label {
    font-size: 16px;
  }
  .licenses-item {
    width: 440px;
    height: 204px;
  }
  .licenses-item__thumb {
    width: 105px;
    height: 154px;
  }
  .licenses-item__title {
    font-size: 18px;
  }
  .licenses-item__desc {
    font-size: 16px;
  }
  .licenses-item__arrow {
    width: 32px;
    height: 32px;
  }
  .licenses-review {
    width: 440px;
    padding: 25px;
  }
  .licenses-review__quote {
    font-size: 24px;
  }
  .licenses-review__name {
    font-size: 18px;
  }
  .licenses-review__role {
    font-size: 14px;
  }
  .licenses-review__avatar {
    width: 60px;
    height: 60px;
  }
  .licenses-cert {
    width: 213px;
    height: 354px;
    padding: 25px;
  }
  .licenses-cert__img {
    width: 157px;
    height: 230px;
  }
  .licenses-cert__caption {
    width: 185px;
  }
  .licenses-cert__name {
    font-size: 18px;
  }
  .licenses-cert__role {
    font-size: 14px;
  }
}
@media screen and (max-width: 1280px) {
  .licenses__title {
    padding: 40px 0;
    font-size: 56px;
    line-height: 0.9;
  }
  .licenses__tabs {
    padding-bottom: 40px;
  }
  .licenses__tabs-divider {
    height: 100px;
  }
  .licenses__content {
    max-width: 800px;
    padding: 30px 0 100px;
  }
  .licenses__block {
    margin-bottom: 40px;
  }
  .licenses__block-head {
    gap: 10px;
  }
  .licenses__block-title {
    font-size: 24px;
  }
  .licenses__grid,
  .licenses__reviews {
    gap: 15px;
  }
  .licenses-tab {
    width: 150px;
    height: 120px;
  }
  .licenses-tab__icon {
    width: 40px;
    height: 40px;
  }
  .licenses-tab__label {
    font-size: 14px;
  }
  .licenses-item {
    width: 390px;
    height: 180px;
    padding: 20px;
  }
  .licenses-item__thumb {
    width: 95px;
    height: 140px;
  }
  .licenses-item__title {
    font-size: 16px;
  }
  .licenses-item__desc {
    font-size: 14px;
  }
  .licenses-item__arrow {
    width: 24px;
    height: 24px;
  }
  .licenses-review {
    width: 390px;
    padding: 20px;
  }
  .licenses-review__quote {
    font-size: 22px;
  }
  .licenses-review__name {
    font-size: 16px;
  }
  .licenses-review__role {
    font-size: 12px;
  }
  .licenses-review__avatar {
    width: 50px;
    height: 50px;
  }
  .licenses-cert {
    width: 190px;
    height: 323px;
    padding: 20px;
  }
  .licenses-cert__img {
    width: 145px;
    height: 214px;
  }
  .licenses-cert__caption {
    width: 161px;
  }
  .licenses-cert__name {
    font-size: 16px;
  }
  .licenses-cert__role {
    font-size: 12px;
  }
}
@media screen and (max-width: 992px) {
  .licenses__title {
    font-size: 40px;
  }
  .licenses__tabs {
    padding-bottom: 40px;
  }
  .licenses__tabs-divider {
    height: 110px;
  }
  .licenses__content {
    max-width: 630px;
    padding: 30px 0 80px;
  }
  .licenses__block {
    margin-bottom: 40px;
  }
  .licenses-tab {
    width: 130px;
    border-radius: 6px;
  }
  .licenses-tab__icon {
    width: 32px;
    height: 32px;
  }
  .licenses-item {
    width: 308px;
    height: 140px;
    padding: 10px;
  }
  .licenses-item__thumb {
    width: 82px;
    height: 120px;
  }
  .licenses-item__desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  .licenses__grid {
    gap: 10px;
  }
  .licenses__reviews {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .licenses-review {
    width: auto;
  }
  .licenses-review__quote {
    font-size: 18px;
  }
  .licenses-cert {
    width: auto;
    height: 282px;
  }
  .licenses-cert__img {
    width: 120px;
    height: 176px;
  }
}
@media screen and (max-width: 768px) {
  .licenses__title {
    padding: 30px 0;
  }
  .licenses__tabs {
    padding-bottom: 30px;
  }
  .licenses__content {
    max-width: 640px;
    padding: 30px 0 60px;
  }
  .licenses__grid,
  .licenses__reviews {
    gap: 20px;
  }
  .licenses-cert {
    height: 272px;
    padding: 15px;
  }
  .licenses-cert__img {
    width: 123px;
    height: 180px;
  }
}
@media screen and (max-width: 767px) {
  .licenses__title {
    padding: 20px 0;
    font-size: 32px;
    letter-spacing: -0.03em;
  }
  .licenses__tabs {
    gap: 20px;
    padding-bottom: 20px;
  }
  .licenses__tabs-divider {
    height: 30px;
  }
  .licenses__content {
    max-width: 340px;
    padding: 20px 0 60px;
  }
  .licenses__block {
    margin-bottom: 40px;
  }
  .licenses__block-head {
    gap: 5px;
    margin-bottom: 20px;
  }
  .licenses-tab {
    width: 52px;
    height: 52px;
    padding: 10px;
    border-radius: 6px;
  }
  .licenses-tab__label {
    display: none;
  }
  .licenses-item {
    width: 100%;
    height: 134px;
    gap: 15px;
  }
  .licenses-item__thumb {
    width: 77px;
    height: 114px;
  }
  .licenses-item__arrow {
    width: 18px;
    height: 18px;
  }
  .licenses__grid,
  .licenses__reviews {
    gap: 10px;
  }
  .licenses__reviews {
    display: flex;
    flex-direction: column;
  }
  .licenses-review {
    width: 100%;
    justify-content: flex-start;
    gap: 30px;
    padding: 20px 15px;
  }
  .licenses-cert {
    width: 100%;
    height: auto;
    justify-content: flex-start;
    gap: 30px;
    padding: 20px 15px;
  }
  .licenses-cert__img {
    width: 157px;
    height: 230px;
  }
}

.pricing__head {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.pricing__divider {
  width: 100%;
  height: 1px;
  background-color: #626262;
}
.pricing__title {
  font-family: Editorialgrotesk, sans-serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: #000;
  margin: 40px 0 0;
  overflow-wrap: break-word;
}
.pricing__body {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 40px;
}
.pricing__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pricing__cta-divider {
  width: 100%;
  height: 1px;
  background-color: #626262;
}
.pricing__cta-connector {
  width: 1px;
  height: 40px;
  background-color: #626262;
}
.pricing__download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 218px;
  height: 50px;
  border-radius: 6px;
  background-color: #282828;
  color: #d5d5d5;
  font-family: "Suisse Intl", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.pricing__download:hover {
  background-color: #000;
  color: #fff;
}
.pricing .pricing-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing .pricing-group__divider {
  width: 100%;
  height: 1px;
  background-color: #d4d4d4;
}
.pricing .pricing-group__body {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.pricing .pricing-group__aside {
  flex-shrink: 0;
  width: 570px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.pricing .pricing-group__eyebrow {
  margin: 0;
  font-family: "Suisse Intl", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #797979;
}
.pricing .pricing-group__name {
  margin: 0;
  font-family: "Suisse Intl", sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.3;
  color: #383838;
}
.pricing .pricing-table {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.pricing .pricing-table__head,
.pricing .pricing-table__row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 10px 0;
}
.pricing .pricing-table__divider {
  width: 100%;
  height: 1px;
  background-color: #d4d4d4;
}
.pricing .pricing-table__col {
  margin: 0;
  font-family: "Suisse Intl", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: #797979;
}
.pricing .pricing-table__col--price {
  margin-left: auto;
  white-space: nowrap;
  text-align: right;
}
.pricing .pricing-table__name {
  margin: 0;
  flex: 1 1 0;
  min-width: 0;
  font-family: "Suisse Intl", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  color: #383838;
}
.pricing .pricing-table__price {
  margin: 0;
  white-space: nowrap;
  text-align: right;
  font-family: "Suisse Intl", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  color: #383838;
}

@media screen and (min-width: 1920px) {
  .pricing__title {
    font-size: 62px;
    line-height: 1.035;
  }
}
@media screen and (max-width: 1279px) {
  .pricing__title {
    font-size: 40px;
    margin-top: 31px;
  }
  .pricing .pricing-group__aside {
    width: 380px;
  }
  .pricing .pricing-group__name {
    font-size: 30px;
  }
}
@media screen and (max-width: 991px) {
  .pricing .pricing-group__aside {
    width: 300px;
  }
  .pricing .pricing-group__name {
    font-size: 26px;
  }
  .pricing .pricing-table__name,
  .pricing .pricing-table__price {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .pricing__head {
    margin-bottom: 20px;
  }
  .pricing__title {
    font-size: 32px;
    letter-spacing: -0.03em;
  }
  .pricing__body {
    gap: 40px;
    margin-top: 31px;
  }
  .pricing .pricing-group__body {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .pricing .pricing-group__aside {
    width: 100%;
  }
  .pricing .pricing-group__name {
    font-size: 28px;
  }
  .pricing .pricing-table__col {
    font-size: 15px;
  }
  .pricing .pricing-table__name,
  .pricing .pricing-table__price {
    font-size: 18px;
  }
}
@media screen and (max-width: 639px) {
  .pricing .pricing-table__col {
    font-size: 14px;
  }
  .pricing .pricing-table__name,
  .pricing .pricing-table__price {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .pricing .padding-h {
    padding-left: 16px;
    padding-right: 16px;
  }
  .pricing .pricing-table__col:first-child {
    flex: 1 1 auto;
    min-width: 0;
  }
  .pricing .pricing-table__col--price {
    flex-shrink: 0;
  }
}

.arsenal .arsenal__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.arsenal .arsenal__card {
  width: 100%;
}
.arsenal .arsenal__card-img-wrp {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
}
.arsenal .arsenal__card-btn {
  width: 100%;
}
@media screen and (max-width: 991px) {
  .arsenal .arsenal__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .arsenal .arsenal__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.thanks-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.thanks-card {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 25px;
  border-radius: 15px;
  background: #f5f5f5;
}
.thanks-card__quote {
  margin: 0;
  font-family: "Suisseintl Regular", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  color: #383838;
}
.thanks-card__foot {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 15px;
  margin-top: auto;
}
.thanks-card__author {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 0;
  min-width: 0;
}
.thanks-card__avatar {
  flex: 0 0 auto;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.thanks-card__author-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.thanks-card__name {
  margin: 0;
  font-family: "Suisseintl Regular", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: #383838;
}
.thanks-card__role {
  margin: 0;
  font-family: "Suisseintl Regular", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #797979;
}
.thanks-card__letter {
  position: relative;
  flex: 0 0 auto;
  width: 97px;
  height: 142px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}
.thanks-card__letter-img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}
.thanks-card__zoom {
  position: absolute;
  right: 4px;
  bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 6px;
  background: #282828;
  transition: background-color 0.2s ease;
}
.thanks-card__zoom img {
  display: block;
  width: 18px;
  height: 18px;
}
.thanks-card__letter:hover .thanks-card__zoom {
  background: #000;
}
.thanks-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.thanks-modal.is--open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.thanks-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  cursor: zoom-out;
}
.thanks-modal__body {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  display: flex;
}
.thanks-modal__img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(479px, 90vw);
  max-height: 90vh;
  border-radius: 10px;
  object-fit: contain;
}
.thanks-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.thanks-modal__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}
.thanks-modal__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.thanks-modal__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .thanks-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .thanks-card {
    gap: 30px;
  }
  .thanks-card__quote {
    font-size: 20px;
  }
}
