/* =====================================================
   SEKCE BENEFITY
===================================================== */
.s_benefits {
    width: 100%;
    clear: both;
}

.s_benefits .h2.text-center {
    margin-bottom: 40px;
}

/* GRID */
.benefit_grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ITEM */
.benefit_item {
    flex: 0 1 calc(33.333% - 30px); /* desktop: 3 v řadě */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
}

/* IKONA */
.benefit_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ee2944;
    margin-bottom: 15px;
    line-height: 1;
}

/* SVG / ICON FONT */
.benefit_icon i,
.benefit_icon svg {
    width: 64px;
    height: 64px;
    stroke-width: 2px;
}

/* TEXT */
.benefit_text {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.4;
}

/* =====================================================
   RESPONSIVE – TABLET BENEFITY
===================================================== */
@media (max-width: 1024px) {
    .benefit_item {
        flex: 0 1 calc(50% - 30px); /* tablet: 2 v řadě */
    }
}

/* =====================================================
   RESPONSIVE – MOBIL BENEFITY
===================================================== */
@media (max-width: 768px) {
    .benefit_item {
        flex: 0 1 100%; /* mobil: pod sebou */
    }
}





/* =====================================================
   SEKCE POROVNÁNÍ
===================================================== */

.s_comparison {
    width: 100%;
    margin-bottom: 40px;
    font-family: 'Nunito', sans-serif;
}

/* Hlavní nadpis sekce */
.s_comparison .h2 {
    text-align: center !important;
    margin-bottom: 30px !important;
    color: #1e293b !important;
    line-height: 1.2 !important;
}

.comp_grid {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

/* Hlavička sloupců */
.comp_header {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.comp_col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.comp_col img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 12px;
    margin-bottom: 12px;
    object-fit: cover;
    background-color: #f8fafc;
}

/* Wrapper pro název a šipku */
.comp_name_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.comp_name {
    font-weight: 900;
    font-size: 18px;
    color: #1e293b;
    margin: 0 !important;
}

/* Ikona šipky - odkaz na produkt */
.comp_product_link {
    color: #ee2944 !important;
    display: inline-flex;
    transition: transform 0.2s ease;
    text-decoration: none !important;
}

.comp_product_link:hover {
    transform: translate(2px, -2px);
    color: #d11d36 !important;
}

.comp_product_link svg {
    display: block;
    stroke: currentColor;
}

/* Kontejner řádku */
.comp_row_container {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 15px;
}

/* Dělící linky s titulky */
.comp_row_divider {
    display: flex;
    gap: 20px;
    width: 100%;
    margin-bottom: 10px;
}

.comp_divider_unit {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comp_line {
    flex: 1;
    height: 1px;
    background-color: #e2e8f0;
}

.comp_row_title {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94a3b8;
    white-space: nowrap;
    padding: 0 5px;
}

/* Buňky s textem */
.comp_row {
    display: flex;
    gap: 20px;
}

.comp_cell {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    min-height: 44px;
    padding: 0 10px;
}

/* Barevné statusy textu */
.comp_pro {
    color: #16a34a;
}

.comp_con {
    color: #dc2626;
}

.comp_neutral {
    color: #64748b;
}

/* =====================================================
   RESPONSIVE – TABLET POROVNÁNÍ
   Od 992px se obrázky skládají pod sebe jako na mobilu
===================================================== */
@media (max-width: 992px) {
    .comp_grid {
        max-width: 100%;
    }

    .comp_header {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .comp_col {
        width: 100%;
        max-width: 340px;
        flex: none;
    }

    .comp_col img {
        width: 100%;
        max-width: 240px;
    }
}

/* =====================================================
   RESPONSIVE – MOBIL POROVNÁNÍ
===================================================== */
@media (max-width: 768px) {
    .s_comparison .h2 {
        font-size: 22px !important;
    }

    .comp_header {
        gap: 25px;
    }

    .comp_col {
        max-width: 300px;
    }

    .comp_col img {
        max-width: 200px;
    }

    .comp_name {
        font-size: 14px;
    }

    .comp_cell {
        font-size: 12px;
        min-height: 36px;
        padding: 0 6px;
    }

    .comp_row_title {
        font-size: 9px;
    }

    .comp_row_divider,
    .comp_row {
        gap: 10px;
    }
}