/* ================================================================
   TerraFloor — compare.css
   ================================================================ */

   .compare-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-block: 100px;
}

.compare-section__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

/* ---- Заголовок ---- */
.compare-section__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    text-align: center;
}

.compare-section__eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--color-brown);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}
.compare-section__eyebrow-line {
    display: block;
    width: 19px;
    height: 0;
    border-top: 2px solid var(--color-brown);
    flex-shrink: 0;
}

.compare-section__title {
    color: var(--color-black);
    font-size: 45px;
    line-height: 51px;
    font-weight: 600;
    margin: 0;
    max-width: 1254px;
}

/* ---- Сетка колонок ---- */
.compare-grid {
    display: flex;
    gap: 30px;
    align-items: stretch;
    width: 100%;
}

.compare-col {
    background: var(--color-white);
    border-radius: 20px;
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Тёмная шапка */
.compare-col__head {
    background: var(--color-black);
    border-radius: 20px 20px 0 0;
    padding: 21px 30px;
    color: var(--color-white);
    font-size: 21px;
    font-weight: 600;
    line-height: 28px;
}

/* Белое тело */
.compare-col__body {
    background: var(--color-white);
    border-radius: 0 0 20px 20px;
    padding: 25px 30px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.compare-col__divider {
    border-top: 1px dashed #dddddd;
    margin: 0;
}

/* ---- Строка сравнения ---- */
.compare-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.compare-row__label {
    color: var(--color-black);
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
}

.compare-row__value {
    display: flex;
    align-items: center;
    gap: 9px;
}

/* Иконки */
.compare-row__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 41px;
    height: 41px;
    border-radius: 20.5px;
    flex-shrink: 0;
    padding: 8px;
}

.compare-row__icon--positive {
    background: #f6f0eb;
    color: var(--color-brown);
}

.compare-row__icon--negative {
    background: linear-gradient(0deg, #efefef 0%, rgba(255,255,255,0) 100%);
    color: var(--color-gray);
}

.compare-row__icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Тексты */
.compare-row__text {
    font-size: 15px;
    line-height: 17px;
    flex: 1;
}

.compare-row__text--positive {
    color: var(--color-black);
    font-weight: 500;
}

.compare-row__text--negative {
    color: var(--color-gray);
    font-weight: 400;
}

/* ================================================================
   Адаптив
   ================================================================ */
@media (max-width: 1280px) {
    .compare-section__title { font-size: 34px; line-height: 40px; }
    .compare-col__head { font-size: 17px; padding: 16px 20px; }
    .compare-col__body { padding: 20px; }
}

@media (max-width: 1024px) {
    .compare-grid { flex-wrap: wrap; }
    .compare-col  { flex: 1 1 calc(50% - 15px); }
}

@media (max-width: 768px) {
    .compare-section { padding-block: 50px; }
    .compare-section__title { font-size: 28px; line-height: 32px; }
    .compare-col { flex: 1 1 100%; }
    .compare-row__label { font-size: 16px; }
.compare-section__head { gap: 20px;}

.compare-section__eyebrow {font-size: 14px;}
.compare-section__inner { gap: 20px;}



}