@charset "UTF-8";

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

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

html.no-scroll,
body.no-scroll {
  overflow: hidden;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[class],
ol[class] {
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

:root {
  --main-color: #04b1bf;
  --main-color-2: #1f1f1f;
  --text-color: #1d1d1d;
  --text-color-2: #898989;
  --bg-color: #ffffff;
  --line-color: #e8e8e8;
  --soft-bg: #f8f8f8;
}

body {
  min-height: 100vh;
  color: var(--text-color);
  background: var(--bg-color);
  font-family: "Inter", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

a:hover {
  color: var(--main-color);
}

/* .site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
} */

/* main {
  flex: 1 0 auto;
} */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 10px;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  color: #fff;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 2px;
  font-size: 14px;
  line-height: 1.05;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
}

.btn:hover {
  color: #fff;
  background: #008c99;
  border-color: #008c99;
}

.btn_2 {
  color: var(--main-color);
  background: #fff;
  border-color: var(--main-color);
}

.btn_2:hover {
  color: var(--main-color);
  background: rgba(0, 166, 180, 0.08);
  border-color: var(--main-color);
}

.section-kicker {
  margin-bottom: 20px;
  color: var(--main-color);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.096em;
  text-transform: uppercase;
}

.section-title {
  color: var(--text-color);
  font-size: 56px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -1.68px;
}

.section-descr {
  max-width: 620px;
  margin-top: 20px;
  color: var(--text-color-2);
  font-size: 15px;
  line-height: 1.55;
}

.section-descr p:not(:last-child) {
  margin-bottom: 10px;
}

.section-head {
  margin-bottom: 40px;
  max-width: 800px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid var(--line-color);
}

.header__warning {
  background: #f8f8f8;
  border-bottom: 1px solid var(--line-color);
}

.header__warning-inner {
  min-height: 32px;
  display: flex;
  align-items: center;
  color: #898989;
  font-size: 11px;
  line-height: 1.2;
}

.header__warning-inner strong,
.header__warning-inner b {
  color: var(--text-color);
  font-weight: 600;
}

.header__wrapper {
  min-height: 73px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.header__content {
  display: flex;
  align-items: center;
  gap: 45px;
}

.header__logo {
  flex: 0 0 auto;
  max-width: 180px;
  max-height: 40px;
  color: var(--text-color);
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
}

.header__logo img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 40px;
  object-fit: contain;
}

.header__list {
  display: flex;
  align-items: center;
  gap: 35px;
}

.header__link {
  color: var(--text-color);
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  text-decoration: none;
}

.header__link:hover {
  color: var(--main-color);
}

.header__actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 17px;
  color: #fff;
  background: var(--main-color-2);
  border: 0;
  border-radius: 2px;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.header__button:hover {
  color: #fff;
  background: #000;
}

.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  padding: 13px 12px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  background: transparent;
  border: 1px solid var(--line-color);
  z-index: 32;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background: var(--text-color);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

/* .hamburger.close {
  border-color: var(--text-color-2);
} */

.hamburger.close span:nth-child(1) {
  transform: translateY(5px) rotate(-45deg);
}

.hamburger.close span:nth-child(2) {
  opacity: 0;
}

.hamburger.close span:nth-child(3) {
  transform: translateY(-5px) rotate(45deg);
}

.language {
  position: relative;
  flex: 0 0 auto;
  padding: 12px 10px;
  outline: none;
}

.language__current {
  display: block;
  color: var(--text-color);
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s ease;
}

.language:hover .language__current,
.language:focus-within .language__current {
  color: var(--main-color);
}

.language__list {
  position: absolute;
  top: 100%;
  right: 50%;
  transform: translateX(50%) translateY(-6px);
  padding: 6px;
  margin: 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line-color);
  border-radius: 2px;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.12);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.15s ease,
    visibility 0.15s ease,
    transform 0.15s ease;
}

.language:hover .language__list,
.language:focus-within .language__list {
  opacity: 1;
  visibility: visible;
  transform: translateX(50%) translateY(0);
  pointer-events: auto;
}

.language__item {
  line-height: 1;
}

.language__link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  color: var(--text-color);
  border-radius: 2px;
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}

.language__link:hover {
  color: var(--main-color);
  background: var(--soft-bg);
}

.rating-hero {
  padding: 80px 0;
  border-bottom: 1px solid var(--line-color);
}

.rating-hero__inner--media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.5fr);
  gap: 70px;
  align-items: center;
}

.rating-hero__main {
  min-width: 0;
}

.rating-hero__title {
  max-width: 940px;
  color: var(--text-color);
  font-size: 79px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -3.36px;
}

.rating-hero__descr {
  max-width: 760px;
  margin-top: 20px;
  color: var(--text-color-2);
  font-size: 18px;
  line-height: 1.65;
  letter-spacing: -0.18px;
}

.rating-hero__descr p:not(:last-child) {
  margin-bottom: 10px;
}

.rating-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.rating-hero__btn {
  min-width: 160px;
}

.rating-hero__media {
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rating-hero__image {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: contain;
}

.rating-hero__advantages {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
  max-width: 800px;
  margin-top: 80px;
}

.rating-hero__advantage-value {
  color: var(--text-color);
  font-size: 20px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.96px;
}

.rating-hero__advantage-descr {
  margin-top: 10px;
  color: var(--text-color-2);
  font-size: 12px;
  letter-spacing: -0.12px;
  line-height: 1.2;
  font-weight: 400;
  text-transform: uppercase;
}

.rating-hero__advantage {
  padding: 20px 25px;
  background: #fff;
  border: 1px solid var(--line-color);
  box-shadow: 0 1px 0 rgba(17, 24, 39, 0.03);
  border-radius: 2px;
}

.shortlist {
  padding: 80px 0 50px;
}

.shortlist__list {
  display: grid;
  gap: 12px;
}

.shortlist__row {
  min-height: 120px;
  display: grid;
  grid-template-columns:
    48px minmax(180px, 1.15fr) minmax(160px, 0.9fr) minmax(110px, 0.8fr)
    minmax(110px, 0.8fr) minmax(110px, 0.8fr) minmax(225px, 1fr);
  gap: 15px;
  align-items: center;
  padding: 25px 30px;
  background: #fff;
  border: 1px solid var(--line-color);
  box-shadow: 0 1px 0 rgba(17, 24, 39, 0.03);
  border-radius: 2px;
}

.shortlist__rank,
.parameter-card__rank {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main-color);
  background: #fff;
  border: 1px solid var(--line-color);
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
}

.shortlist__rank:hover {
  color: var(--main-color);
}

.shortlist__name {
  color: var(--text-color);
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
}

.shortlist__descr {
  margin-top: 5px;
  color: var(--text-color-2);
  font-size: 13px;
  line-height: 1.35;
}

.shortlist__score {
  min-height: 65px;
  padding: 10px 13px;
  background: var(--soft-bg);
}

.shortlist__label {
  display: block;
  margin-bottom: 5px;
  color: var(--text-color-2);
  font-size: 10px;
  line-height: 1.15;
  font-weight: 400;
  text-transform: uppercase;
}

.shortlist__score-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.shortlist__rating {
  color: var(--main-color);
  font-size: 27px;
  line-height: 1;
  font-weight: 800;
}

.shortlist__stars {
  --rating-star-color: #111;
  --rating-star-empty: #d7d7d7;
  display: flex;
  transform: translateY(2px);
}

.shortlist__meta {
  position: relative;
  min-width: 0;
  color: var(--text-color);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 500;
  min-height: 52px;
  padding: 0 15px;
}

.shortlist__meta + .shortlist__meta::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 8px;
  left: -14px;
  width: 1px;
  height: 100%;
  background: var(--line-color);
}

.shortlist__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.shortlist__btn {
  width: 106px;
  min-height: 48px;
  padding: 8px 12px;
}

.shortlist__btn--demo {
  width: 108px;
}

.guide-section {
  padding: 34px 0 50px;
}

.guide-section__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.guide-section__card {
  min-height: 190px;
  padding: 21px 23px;
  background: #fff;
  border: 1px solid var(--line-color);
  border-radius: 2px;
  box-shadow: 0 1px 0 rgba(17, 24, 39, 0.03);
}

.guide-section__number {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main-color);
  border: 1px solid var(--line-color);
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 15px;
}

.guide-section__title {
  margin-bottom: 10px;
  color: var(--text-color);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
}

.guide-section__text {
  color: var(--text-color-2);
  font-size: 15px;
  line-height: 1.5;
}

.guide-section__text p:not(:last-child) {
  margin-bottom: 10px;
}

.parameter-tables {
  padding: 50px 0;
}

.parameter-tables__list {
  display: grid;
  gap: 50px;
}

.parameter-card {
  scroll-margin-top: 120px;
}

.parameter-card__head {
  min-height: 94px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 25px 20px;
  color: #fff;
  background: var(--main-color-2);
}

.parameter-card__rank {
  background: transparent;
  border-color: #343434;
}

.parameter-card__brand h3 {
  color: #fff;
  font-size: 28px;
  line-height: 1.08;
  font-weight: 800;
}

.parameter-card__brand p {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.35;
}

.parameter-card__score {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.parameter-card__score span {
  color: var(--main-color);
  font-size: 40px;
  line-height: 1;
  font-weight: 800;
}

.parameter-card__score small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  letter-spacing: -0.11px;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
}

.parameter-card__score .rating-stars {
  gap: 3px;
}

.parameter-card__stars {
  --rating-star-color: var(--main-color);
  --rating-star-empty: rgba(255, 255, 255, 0.24);
}

.rating-stars {
  display: inline-flex;
  align-items: center;
  color: var(--rating-star-color, var(--main-color));
  line-height: 0;
}

.rating-stars__star {
  position: relative;
  width: 14px;
  height: 14px;
  display: inline-flex;
  flex: 0 0 auto;
  color: var(--rating-star-empty, #d7d7d7);
  overflow: hidden;
}

.rating-stars__svg {
  width: 14px;
  height: 14px;
  display: block;
  flex: 0 0 auto;
}

.rating-stars__fill {
  position: absolute;
  inset: 0 auto 0 0;
  display: block;
  height: 100%;
  line-height: 0;
  overflow: hidden;
  color: var(--rating-star-color, var(--main-color));
}

.rating-stars__fill .rating-stars__svg {
  position: absolute;
  top: 0;
  left: 0;
  max-width: none;
}

.site-table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--line-color);
  border-radius: 2px;
  box-shadow: 0 1px 0 rgba(17, 24, 39, 0.03);
}

.site-table {
  width: 100%;
  border-spacing: 0;
  background: #fff;
}

.site-table th,
.site-table td {
  padding: 15px 20px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line-color);
}

.site-table th {
  color: var(--text-color-2);
  background: var(--soft-bg);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}

.site-table td {
  color: var(--text-color-2);
  font-size: 14px;
  line-height: 1.45;
}

.site-table tr:last-child td {
  border-bottom: 0;
}

.parameter-card__table-wrap {
  border-top: 0;
  border-radius: 0 0 2px 2px;
}

.parameter-card__table td:first-child,
.parameter-card__table th:first-child {
  width: 64px;
  text-align: center;
}

.parameter-card__table td:nth-child(2) {
  width: 15%;
  font-weight: 600;
  color: var(--text-color);
}

.parameter-card__table td:nth-child(3) {
  color: var(--main-color);
  font-weight: 600;
  width: 25%;
}

.page-text {
  padding: 30px 0 70px;
}

.page-text__wrapper {
  padding: 20px 25px;
  background: #fff;
  border: 1px solid var(--line-color);
  box-shadow: 0 1px 0 rgba(17, 24, 39, 0.03);
  border-radius: 2px;
}

.page-text__wrapper--collapsible {
  position: relative;
  max-height: 370px;
  overflow: hidden;
}

.page-text__wrapper--collapsible::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 145px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 72%);
}

.page-text__wrapper--collapsible.is-open {
  max-height: none;
}

.page-text__wrapper--collapsible.is-open::after {
  display: none;
}

.page-text__toggle {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 24px;
  margin: -40px auto 0;
  padding: 0;
  color: var(--main-color);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
}

.page-text__toggle:hover {
  color: #008c99;
  background: transparent;
}

.page-text__toggle.is-hidden {
  display: none;
}

.page-text__wrapper h2,
.page-text__wrapper h3 {
  margin-bottom: 16px;
  line-height: 1.25;
}

.page-text__wrapper h2 {
  font-size: 28px;
}

.page-text__wrapper h3 {
  font-size: 22px;
}

.page-text__wrapper p:not(:last-child),
.page-text__wrapper ul:not(:last-child),
.page-text__wrapper ol:not(:last-child),
.page-text__wrapper blockquote:not(:last-child) {
  margin-bottom: 18px;
}

.page-text__wrapper ul,
.page-text__wrapper ol {
  padding-left: 18px;
}

.page-text__wrapper li:not(:last-child) {
  margin-bottom: 7px;
}

.page-text__wrapper a {
  color: var(--main-color);
}

.checklist-section {
  padding: 40px 0 70px;
}

.checklist-section__table {
  width: 100%;
}

.checklist-section__table td:first-child {
  width: 32%;
  color: var(--main-color);
  font-weight: 700;
}

.cta-section {
  padding: 10px 0 70px;
}

.cta-section__box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: 34px 38px;
  color: #fff;
  background: var(--main-color-2);
  border-radius: 2px;
}

.cta-section__box .section-kicker {
  margin-bottom: 12px;
}

.cta-section__title {
  color: #fff;
  font-size: 34px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.68px;
}

.cta-section__descr {
  max-width: 760px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.55;
}

.cta-section__descr p:not(:last-child) {
  margin-bottom: 10px;
}

.cta-section__btn {
  min-width: 170px;
}

.breadcrumbs {
  padding: 15px 0 10px;
}

.breadcrumbs_nopt {
  padding-top: 0;
}

.breadcrumbs__list {
  overflow: hidden;
  color: var(--text-color-2);
  font-size: 13px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.breadcrumbs__item {
  position: relative;
  display: inline;
}

.breadcrumbs__item:not(:last-child) {
  margin-right: 22px;
}

.breadcrumbs__item:not(:last-child)::after {
  content: "/";
  position: absolute;
  right: -15px;
  color: var(--text-color-2);
}

.breadcrumbs__link {
  color: var(--text-color);
  text-decoration: none;
}

.footer {
  margin-top: 70px;
  padding: 40px 0;
  border-top: 1px solid var(--line-color);
}

.footer__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 20px;
}

.footer__logo {
  max-width: 180px;
}

.footer__brand {
  color: #fff;
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
}

.footer__text {
  margin-top: 30px;
}

.footer__nav {
  width: calc(70% - 32px);
}

.footer__menu {
  columns: 3;
  list-style: none;
  padding: 0;
}

.footer__li:not(:last-child) {
  margin-bottom: 8px;
}

.footer__link {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.footer__link:hover {
  color: var(--main-color);
}

.footer__bottom {
  margin-top: 15px;
}

.stats {
  padding: 20px 0 60px;
}

.stats__wrapper {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.stats__item {
  border: 1px solid var(--line-color);
  background: #fff;
  border-radius: 2px;
}

.stats__img {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--soft-bg);
}

.stats__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.stats__content {
  padding: 14px;
}

.stats__name {
  color: var(--text-color);
  font-weight: 700;
  text-decoration: none;
}

.stats__date {
  margin-top: 6px;
  color: var(--text-color-2);
  font-size: 13px;
}

.layout-sidebar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 30px;
}

.single-sidebar__body {
  position: sticky;
  top: 140px;
}

.single-sidebar__title {
  font-weight: 800;
}

.single-sidebar__list {
  margin-top: 14px;
}

.single-sidebar__li:not(:last-child) {
  margin-bottom: 12px;
}

.single-sidebar__li a {
  display: block;
  color: var(--text-color);
  border-left: 3px solid var(--line-color);
  padding-left: 12px;
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
}

.single-sidebar__li a.active {
  color: var(--main-color);
  border-color: var(--main-color);
}

.page-head {
  padding: 20px 0 0;
}

.page-text__date {
  margin-bottom: 20px;
  color: var(--main-color);
  text-transform: uppercase;
}

.page-text__img {
  margin-bottom: 24px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--soft-bg);
}

.page-text__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq {
  padding: 42px 0 64px;
}

.faq__wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.faq__accordion {
  border: 1px solid var(--line-color);
}

.faq__accordion:not(:last-child) {
  margin-bottom: 12px;
}

.faq__question {
  position: relative;
  padding: 16px 48px 16px 18px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 600;
  cursor: pointer;
}

.faq__question::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 16px;
  height: 16px;
  color: var(--main-color);
  background:
    linear-gradient(currentColor, currentColor) center / 16px 2px no-repeat,
    linear-gradient(currentColor, currentColor) center / 2px 16px no-repeat;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.2s ease;
}

.faq__question.active::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
}

.faq__answer p {
  padding: 0 18px 18px;
}

.comments {
  padding: 36px 0 70px;
}

.comments__title,
.comments-add__title {
  margin-bottom: 18px;
  font-weight: 800;
}

.comments__item {
  padding: 16px 0;
  border-bottom: 1px solid var(--line-color);
}

.comments__head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.comments__avatar {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--soft-bg);
  font-weight: 800;
}

.comments__date,
.comments__empty {
  color: var(--text-color-2);
}

.comments__content,
.comments__rating {
  margin-top: 10px;
}

.comments-add {
  margin-top: 28px;
}

.comments-add__item {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 10px;
}

.comments-add__input,
.comments-add__text {
  width: 100%;
  border: 1px solid var(--line-color);
  border-radius: 2px;
  padding: 12px 14px;
  outline: none;
}

.comments-add__text {
  min-height: 130px;
  resize: vertical;
}

.comments-add__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.comments-add__stars {
  display: flex;
  cursor: pointer;
}

.comments-add__star {
  fill: #ccc;
}

.comments-add__star.active,
.comments-add__star.hover {
  fill: #ffc107;
}

.comments-add__btn {
  margin-top: 18px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.rating__wrap {
  display: flex;
  align-items: center;
  gap: 4px;
}

.rating__value,
.rating__star {
  color: var(--main-color);
  font-weight: 800;
}

.error-404 {
  padding: 90px 0;
  text-align: center;
}

.error-404__suptitle {
  color: var(--main-color);
  font-size: 120px;
  line-height: 1;
  font-weight: 800;
}

.error-404__title {
  margin-top: 18px;
}

.error-404__btn {
  margin-top: 24px;
}

.back-to-top {
  position: fixed;
  right: 25px;
  bottom: 30px;
  z-index: 18;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  color: #fff;
  background: var(--main-color-2);
  border: 1px solid var(--main-color-2);
  border-radius: 2px;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.18);
  transform: translateY(10px);
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: translateY(3px) rotate(45deg);
}

.back-to-top:hover {
  background: var(--main-color);
  border-color: var(--main-color);
}

.mobile-shortlist-cta {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 19;
  min-height: 44px;
  min-width: 168px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  color: #fff;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 2px;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.18);
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.mobile-shortlist-cta:hover {
  color: #fff;
  background: #008c99;
  border-color: #008c99;
}

@media (max-width: 1300px) {
  .container {
    max-width: 1180px;
  }

  .rating-hero__title {
    font-size: 72px;
  }

  .rating-hero__advantage {
    padding: 15px 20px;
  }

  .rating-hero__advantage-descr {
    font-size: 11px;
  }
}

@media (max-width: 1200px) {
  .container {
    max-width: 970px;
  }

  .rating-hero__title {
    font-size: 65px;
  }

  .rating-hero__advantages {
    gap: 10px;
    margin-top: 60px;
  }

  .rating-hero__inner--media {
    gap: 40px;
  }

  .rating-hero__advantage {
    padding: 12px 15px;
  }

  .section-title {
    font-size: 43px;
  }

  .shortlist__row {
    padding: 20px 20px;
    grid-template-columns:
      42px minmax(150px, 1.15fr) minmax(140px, 0.9fr)
      minmax(120px, 0.8fr) minmax(140px, 0.8fr) minmax(100px, 0.8fr) minmax(
        130px,
        1fr
      );
    gap: 12px;
  }

  .shortlist__actions {
    flex-direction: column;
  }

  .shortlist__btn {
    width: 100%;
    min-height: 40px;
  }

  .shortlist__rank,
  .parameter-card__rank {
    width: 42px;
    height: 42px;
  }

  .shortlist__name {
    font-size: 18px;
  }

  .shortlist__meta {
    padding: 0 10px;
    font-size: 13px;
  }

  .shortlist__meta + .shortlist__meta::before {
    left: -7px;
  }

  .guide-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guide-section__title {
    font-size: 20px;
  }

  .parameter-card__brand h3 {
    font-size: 24px;
  }

  .faq__question {
    font-size: 16px;
  }

  .stats__wrapper {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .header__wrapper {
    min-height: 63px;
  }

  .header__content {
    gap: 30px;
  }

  .header__list {
    gap: 30px;
  }

  .header__logo {
    max-width: 160px;
  }

  .rating-hero__title {
    font-size: 60px;
  }

  .rating-hero__inner--media {
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
  }

  .rating-hero__media {
    /* min-height: 0;
    aspect-ratio: 16 / 9; */
    display: none;
  }

  .rating-hero__advantages {
    max-width: 670px;
  }

  .section-title {
    font-size: 40px;
  }

  .shortlist__row {
    grid-template-columns: 46px minmax(0, 1fr) minmax(165px, 0.5fr);
    gap: 15px;
    padding: 15px;
  }

  .shortlist__score {
    grid-column: 3;
  }

  .shortlist__rank,
  .parameter-card__rank {
    width: 46px;
    height: 46px;
  }

  .shortlist__meta {
    grid-column: 2 / -1;
    display: grid;
    grid-template-columns: 125px minmax(0, 1fr);
    gap: 10px;
    padding: 0;
    min-height: auto;
    align-items: flex-end;
  }

  .shortlist__meta span {
    background: #fff;
    z-index: 1;
    padding-left: 5px;
  }

  .shortlist__meta .shortlist__label {
    margin-bottom: 0;
    font-size: 11px;
    width: max-content;
    padding-right: 5px;
    padding-left: 0;
  }

  .shortlist__meta + .shortlist__meta::before {
    display: none;
  }

  .shortlist__meta::after {
    content: "";
    position: absolute;
    bottom: 3px;
    width: 100%;
    height: 1px;
    background: var(--line-color);
  }

  .shortlist__btn {
    min-height: 44px;
  }

  .shortlist__actions {
    grid-column: 2 / -1;
    flex-direction: row;
  }

  .stats__wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guide-section__card {
    padding: 15px;
  }

  .guide-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-text__wrapper {
    padding: 15px 17px;
  }

  .page-text__wrapper--collapsible {
    max-height: 360px;
  }

  .layout-sidebar {
    gap: 20px;
  }

  .back-to-top {
    right: 10px;
    bottom: 20px;
  }
}

@media (max-width: 768px) {
  .mobile-shortlist-cta {
    display: flex;
  }

  .mobile-shortlist-cta.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  .header__warning-inner {
    min-height: 34px;
    padding: 8px 0;
    font-size: 12px;
  }

  .header__wrapper {
    min-height: 64px;
  }

  .header__logo {
    max-width: 140px;
  }

  .hamburger {
    display: flex;
  }

  .header__menu {
    position: absolute;
    top: 100%;
    right: 0;
    border: 1px solid var(--line-color);
    /* inset: 0; */
    z-index: 30;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: 100vh;
    background: rgba(145, 145, 145, 0.493);
    backdrop-filter: blur(2px);
    transition:
      opacity 0.2s ease,
      visibility 0.2s ease;
    display: flex;
    justify-content: flex-end;
  }

  .header__menu.active {
    opacity: 1;
    visibility: visible;
  }

  .header__nav {
    width: min(320px, 84vw);
    height: fit-content;
    max-height: 100%;
    padding: 0;
    background: #fff;
    transform: translateY(-100px);
    transition: transform 0.2s ease;
  }

  .header__nav.active {
    transform: translateY(0);
  }

  .header__list {
    display: block;
  }

  .header__item {
    border-bottom: 1px solid var(--line-color);
  }

  /* .header__item:first-child {
    border-top: 1px solid var(--line-color);
  } */

  .header__link {
    display: block;
    padding: 15px 20px;
  }

  .header__button {
    min-height: 40px;
    padding: 10px 15px;
    font-size: 13px;
  }

  .language {
    padding: 12px 5px;
  }

  .language__current {
    font-size: 13px;
  }

  .rating-hero {
    padding: 35px 0 50px;
  }

  .rating-hero__title {
    font-size: 46px;
  }

  .rating-hero__descr {
    font-size: 16px;
  }

  .rating-hero__actions {
    margin-top: 25px;
  }

  .rating-hero__media {
    max-height: 360px;
  }

  .rating-hero__advantages {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 40px;
    /* max-width: 400px; */
  }

  .section-title {
    font-size: 34px;
  }

  .page-text__date {
    margin-bottom: 10px;
  }

  .section-kicker {
    margin-bottom: 10px;
  }

  .shortlist {
    padding: 50px 0 40px;
  }

  .guide-section {
    padding: 40px 0 40px;
  }

  .guide-section__number {
    width: 44px;
    height: 44px;
  }

  .guide-section__title {
    font-size: 18px;
  }

  .guide-section__text {
    font-size: 14px;
  }

  .parameter-tables {
    padding: 40px 0;
  }

  .parameter-card__head {
    gap: 15px;
    padding: 17px 15px;
  }

  .parameter-card__table thead {
    display: none;
  }

  .parameter-card__table tr {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
    margin-bottom: 15px;
  }

  .parameter-card__table tr:not(:last-child) {
    padding-bottom: 15px;
    border-bottom: 1px solid var(--line-color);
  }

  .parameter-card__table tr:first-child {
    margin-top: 15px;
  }

  .parameter-card__table td {
    width: 100% !important;
    padding: 0px 15px;
    border: none;
  }

  .parameter-card__table td:nth-child(1) {
    display: none;
  }

  .parameter-card__table td:nth-child(2) {
    text-transform: uppercase;
    font-size: 13px;
  }

  .parameter-card__table td:nth-child(3) {
    font-size: 16px;
  }

  .checklist-section {
    padding: 40px 0 40px;
  }

  .checklist-section__table {
    min-width: 555px;
  }

  .checklist-section__table td,
  .checklist-section__table th {
    padding: 12px 15px;
  }

  .layout-sidebar,
  .faq__wrapper {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: 10px 0 40px;
  }

  .cta-section__box {
    grid-template-columns: 1fr;
    padding: 25px;
  }

  .cta-section__btn {
    width: 100%;
  }

  body {
    font-size: 14px;
  }

  .page-text {
    padding: 30px 0 40px;
  }

  .single-sidebar {
    display: none;
  }

  .footer__wrapper {
    display: block;
  }

  .footer__left,
  .footer__nav {
    width: 100%;
  }

  .footer__nav {
    margin-top: 20px;
  }

  .footer__menu {
    columns: 2;
  }
}

@media (max-width: 576px) {
  .header__logo {
    max-width: 140px;
  }

  .header__actions {
    gap: 10px;
  }

  .header__button {
    min-height: 36px;
    padding: 9px 13px;
  }

  .hamburger {
    width: 36px;
    height: 36px;
    padding: 11px 10px;
  }

  .back-to-top {
    bottom: 15px;
    width: 40px;
    height: 40px;
  }

  .mobile-shortlist-cta {
    bottom: 14px;
    min-height: 42px;
    min-width: 150px;
    padding: 11px 18px;
    font-size: 13px;
  }

  .rating-hero__title {
    font-size: 42px;
  }

  .rating-hero__advantage-value {
    font-size: 18px;
  }

  .shortlist__row {
    grid-template-columns: 46px minmax(0, 1fr) minmax(140px, 0.5fr);
  }

  .shortlist__meta {
    grid-column: 1 / -1;
  }

  .shortlist__actions {
    grid-column: 1 / -1;
  }

  .guide-section__grid {
    grid-template-columns: 1fr;
  }

  .guide-section__card {
    min-height: 0;
  }

  .parameter-card__head {
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: flex-start;
  }

  .parameter-card__score {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .cta-section__box {
    padding: 23px 20px;
  }

  .cta-section__title {
    font-size: 30px;
  }

  .section-title {
    font-size: 30px;
  }

  .rating-hero__btn,
  .shortlist__btn {
    flex: 1 1 130px;
  }

  .page-text__wrapper h2 {
    font-size: 24px;
  }

  .page-text__wrapper h3 {
    font-size: 19px;
  }

  .page-text__wrapper--collapsible {
    max-height: 340px;
  }

  .faq__question {
    padding: 15px 45px 15px 15px;
  }

  .faq__question::after {
    right: 15px;
  }

  .footer__menu {
    columns: 1;
  }
}

@media (max-width: 480px) {
  .header__wrapper {
    min-height: 60px;
  }

  .header__logo {
    max-width: 120px;
  }

  .rating-hero__descr {
    font-size: 15px;
  }

  .rating-hero__advantage-value {
    font-size: 16px;
  }

  .shortlist__row {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 20px 15px;
  }

  .shortlist__score,
  .shortlist__meta,
  .shortlist__actions {
    grid-column: 1 / -1;
  }

  .shortlist__score {
    width: 100%;
  }

  .shortlist__actions {
    flex-wrap: wrap;
  }

  .shortlist__name {
    font-size: 18px;
  }

  .shortlist__meta {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .shortlist__meta::after {
    bottom: -10px;
  }

  .shortlist__meta--3::after {
    content: none;
  }

  .shortlist__meta span {
    padding: 0;
  }

  .shortlist__score {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    align-items: center;
    min-height: auto;
    padding: 11px 13px 13px 13px;
  }

  .shortlist__score .shortlist__label {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 2px;
  }

  .shortlist__score-row {
    display: contents;
  }

  .shortlist__rating {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .shortlist__stars .rating-stars {
    gap: 2px;
  }

  .shortlist__rating {
    font-size: 30px;
  }

  .rating-stars__svg--fill path {
    fill: var(--main-color);
  }

  .section-head {
    margin-bottom: 30px;
  }

  .comments-add__item,
  .stats__wrapper {
    grid-template-columns: 1fr;
  }

  .footer {
    margin-top: 40px;
    padding: 20px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
