/* --- PRO FIRMY STYLY --- */

.b2b-wrapper {
    padding: 60px 0;
}

/* 1. Úvodní Box */
.b2b-intro-box {
    background-color: #f5f5f5;
    padding: 40px;
    margin-bottom: 60px;
    border-radius: 4px;
}

.b2b-intro-box h2 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.b2b-intro-box p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

.b2b-intro-box a {
    color: var(--tkc-blue);
    text-decoration: none;
}

/* 2. Sekce (Grid) */
.b2b-section {
    margin-bottom: 80px;
}

.b2b-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.b2b-text h3 {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 400;
    /* Tenčí písmo dle obrázku */
}

.b2b-text p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.b2b-list {
    list-style: none;
    padding: 0;
    margin-top: 10px;
    color: #666;
    font-size: 0.9rem;
}

.b2b-list li {
    margin-bottom: 5px;
    position: relative;
    padding-left: 15px;
}

.b2b-list li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: #999;
}

.b2b-img img {
    max-width: 100%;
    height: auto;
    border-radius: 2px;
}

/* Zarovnání obrázků na střed, pokud jsou malé */
.center-content {
    display: flex;
    justify-content: center;
}

/* 3. CTA Box (Šedý na konci) */
.cta-box-gray {
    background-color: #f5f5f5;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 60px;
    border-radius: 4px;
}

.cta-icon {
    flex: 0 0 60px;
    height: 60px;
    background-color: var(--tkc-blue);
    /* Modrý kruh */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-icon i {
    color: #fff;
    font-size: 1.5rem;
}

.cta-content h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 5px;
    font-weight: 700;
}

.cta-content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.cta-link {
    color: var(--tkc-blue);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
}

.cta-link:hover {
    text-decoration: underline;
}

/* RESPONSIVITA */
@media (max-width: 768px) {
    .b2b-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
    }

    /* Na mobilu chceme obrázek vždy nahoře */
    .reverse-mobile .b2b-img {
        order: -1;
    }

    .cta-box-gray {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {

    /* Pro Firmy */
    .b2b-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .b2b-img {
        order: -1;
        /* Obrázek první */
        margin-bottom: 20px;
        justify-content: center;
        display: flex;
    }

    .cta-box-gray {
        flex-direction: column;
        text-align: center;
    }

    /* Servis */
    .servis-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .servis-tabs-wrapper {
        flex-direction: column;
    }

    .survey-box {
        flex-direction: column;
        text-align: center;
    }

    /* Novinky */
    .news-grid {
        grid-template-columns: 1fr;
        /* Jedna novinka na řádek */
    }

    /* Kontakt */
    .contact-grid-wrapper {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}