.site-footer {
    margin-top: 2rem !important;
}

.hero-img {
    border-radius: var(--is-radius-lg);
    object-fit: cover;
}

/* ============ WHY INFORMATIK ============ */
.why-is-card {
    background: var(--is-white);
    box-shadow: var(--is-shadow);
    border-radius: var(--is-radius);
    border: 1px solid #eef0f6;
    padding: 24px;
    height: 100%;
    display: flex;
    gap: 22px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.why-is-card:hover {
    box-shadow: var(--is-shadow-hover);
    transform: translateY(-4px);
}

.why-is-icon {
    flex: 0 0 auto;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--is-light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
}

.why-is-icon img {
    width: 26px;
    height: 26px;
}

.why-is-card h3 {
    font-weight: 700;
    font-size: 20px;
    color: var(--is-dark);
    margin-bottom: 10px;
    letter-spacing: -.2px;
}

.why-is-card p {
    font-size: 14px;
    line-height: 1.62;
    color: var(--muted);
    margin: 12px 0 0 0;
}

/* ============ WHO WE ARE ============ */
.who-section {
    background-image: url('../images/who-we-are-bg.png');
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.who-photo {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    border-radius: var(--is-radius-lg);
    display: block;
}

.who-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 30px;
}

.who-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #E6EDFD;
    border: 1px solid var(--is-border);
    color: var(--is-text);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 0.875rem;
    border-radius: 50px;
    white-space: nowrap;
}

.who-card {
    border: 1px solid var(--is-border);
    border-radius: 16px;
    background: var(--is-white);
    padding: 20px;
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--is-text);
}

.who-card+.who-card {
    margin-top: 18px;
}

@media (max-width:991.98px) {
    .who-photo {
        min-height: auto;
        margin-bottom: 36px;
        height: 400px;
    }

    .hero-img {
        margin-top: 2rem;
    }
}

@media (max-width:575.98px) {
    .why-section {
        padding: 56px 0;
    }

    .why-is-card {
        padding: 26px 24px;
        gap: 16px;
    }

    .why-is-card h3 {
        font-size: 1.3rem;
    }

    .why-is-icon {
        width: 50px;
        height: 50px;
    }

    .why-is-icon i {
        font-size: 1.45rem;
    }

    .who-section {
        padding: 56px 0;
    }

    .who-photo {
        min-height: 340px;
        border-radius: var(--is-radius-lg);
    }

    .who-intro {
        font-size: 1.0625rem;
    }

    .who-pill {
        font-size: .95rem;
        padding: 9px 20px;
        white-space: normal;
    }

    .who-card {
        font-size: 1rem;
        padding: 20px 22px;
    }
}