/* =========================================
   ISO CERTIFIED - FEATURE SECTION
========================================= */

#iso-certified {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: auto;
    background: #f0f4f8;
    background-image: radial-gradient(#d1d9e6 1px, transparent 1px);
    background-size: 40px 40px;
    padding: 1.25rem 1.5rem 0;
    margin-bottom: 0;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

#iso-certified::before,
#iso-certified::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    opacity: 0.55;
}

#iso-certified::before {
    width: 420px;
    height: 420px;
    right: -140px;
    top: -160px;
    background: radial-gradient(circle, rgba(19, 56, 128, 0.18), rgba(19, 56, 128, 0));
}

#iso-certified::after {
    width: 520px;
    height: 520px;
    left: -200px;
    bottom: -220px;
    background: radial-gradient(circle, rgba(33, 150, 243, 0.16), rgba(33, 150, 243, 0));
}

#iso-certified .sustainability-text {
    text-align: center;
}

.iso-card {
    width: min(980px, 100%);
    padding: clamp(1.25rem, 2.5vw, 2rem);
    border-radius: 28px;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    position: relative;
    z-index: 1;
}

.iso-header {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.iso-chip {
    background: linear-gradient(135deg, #0f2f6b, #1e6fd2);
    color: #ffffff;
    padding: 0.35rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 999px;
    box-shadow: 0 10px 20px rgba(15, 47, 107, 0.25);
}

.iso-kicker {
    font-size: 0.75rem;
    font-weight: 600;
    color: #355a9b;
}

#iso-certified .iso-title {
    font-size: clamp(2.1rem, 4.5vw, 3.4rem);
    color: #0f2f6b;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.02em;
}

#iso-certified p {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 1.8;
    color: #4a5568;
    max-width: 720px;
    margin: 0 auto;
}

.iso-divider {
    width: 140px;
    height: 4px;
    margin: 1.6rem auto 1.8rem;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(19, 56, 128, 0.1), rgba(19, 56, 128, 0.6), rgba(19, 56, 128, 0.1));
}

.iso-images {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(1.25rem, 3vw, 3rem);
    width: 100%;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    animation: fadeInUp 0.8s ease-out forwards;
}

.iso-logo {
    height: clamp(70px, 11vw, 130px);
    width: auto;
    object-fit: contain;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
    filter: none;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.iso-logo:hover {
    transform: translateY(-4px) scale(1.04);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    #iso-certified {
        min-height: unset;
        padding: clamp(3rem, 8vw, 5rem) 1.25rem;
    }

    .iso-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .iso-divider {
        width: 110px;
    }
}

@media (max-width: 480px) {
    #iso-certified {
        padding: 3rem 1rem;
    }

    #iso-certified .iso-title {
        font-size: 1.85rem;
    }

    .iso-logo {
        height: 64px;
    }
}
