.zb-corporate {
    padding: 76px 0;
    background: linear-gradient(180deg, var(--zb-white) 0%, #fbfaf8 100%);
}

.zb-corporate__intro {
    max-width: 880px;
    margin-right: auto;
    margin-bottom: 44px;
    margin-left: auto;
    text-align: center;
}

.zb-corporate__intro h2,
.zb-corporate__closing h2 {
    font-size: clamp(2rem, 3.4vw, 3.4rem);
}

.zb-corporate__lead {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    color: #545454;
    font-size: 1.08rem;
}

.zb-corporate__lead > *:last-child,
.zb-corporate__panel > *:last-child,
.zb-corporate__closing > *:last-child {
    margin-bottom: 0;
}

.zb-corporate__split {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
    margin-bottom: 44px;
}

.zb-corporate__split--reverse {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.zb-corporate__image {
    overflow: hidden;
    margin: 0;
    border: 1px solid var(--zb-border);
    border-radius: 8px;
    background: var(--zb-muted);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.08);
}

.zb-corporate__image img,
.zb-corporate__image-placeholder {
    display: grid;
    width: 100%;
    aspect-ratio: 4 / 3;
    place-items: center;
    object-fit: cover;
}

.zb-corporate__image-placeholder {
    color: var(--zb-primary);
    font-size: 2.4rem;
    background: linear-gradient(135deg, rgba(240, 122, 0, 0.12), rgba(246, 194, 26, 0.18));
}

.zb-corporate__image figcaption {
    padding: 14px 16px;
    color: #555555;
    font-size: 0.94rem;
    font-weight: 700;
    background: var(--zb-white);
}

.zb-corporate__panel,
.zb-corporate__closing {
    padding: clamp(24px, 3vw, 34px);
    border: 1px solid var(--zb-border);
    border-radius: 8px;
    background: var(--zb-white);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.06);
}

.zb-corporate__panel--accent {
    border-color: rgba(240, 122, 0, 0.28);
    background: linear-gradient(180deg, #ffffff, #fff8f0);
}

.zb-corporate__panel h3 {
    font-size: clamp(1.45rem, 2.2vw, 2.25rem);
}

.zb-corporate__panel p,
.zb-corporate__closing p {
    color: #555555;
}

.zb-corporate__icon,
.zb-corporate-feature__icon {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 999px;
    color: var(--zb-primary);
    font-size: 1.25rem;
    background: rgba(240, 122, 0, 0.1);
}

.zb-corporate__features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 44px;
}

.zb-corporate-feature {
    min-height: 238px;
    padding: 24px;
    border: 1px solid var(--zb-border);
    border-radius: 8px;
    background: var(--zb-white);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.045);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.zb-corporate-feature:hover {
    border-color: rgba(240, 122, 0, 0.36);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.zb-corporate-feature h3 {
    font-size: 1.1rem;
}

.zb-corporate-feature p {
    margin: 0;
    color: #5b5b5b;
    font-size: 0.96rem;
}

.zb-corporate__closing {
    max-width: 920px;
    margin-inline: auto;
    text-align: center;
}

@media (prefers-reduced-motion: reduce) {
    .zb-corporate-feature {
        transition: none;
    }

    .zb-corporate-feature:hover {
        transform: none;
    }
}

@media (max-width: 980px) {
    .zb-corporate__features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .zb-corporate {
        padding: 56px 0;
    }

    .zb-corporate__split,
    .zb-corporate__split--reverse,
    .zb-corporate__features {
        grid-template-columns: 1fr;
    }

    .zb-corporate__split--reverse .zb-corporate__image {
        order: -1;
    }

    .zb-corporate__panel,
    .zb-corporate__closing,
    .zb-corporate-feature {
        padding: 22px;
    }

    .zb-corporate-feature {
        min-height: auto;
    }
}
