/* WHAT WE DO SECTION */
.what-section {
    width: 100%;
    background: #ffffff;
}

/* BLUE STRIP */
.what-top {
    width: 100%;
    min-height: 340px;
    background: linear-gradient(160deg, #12285f 0%, #0c1c44 46%, #081228 100%);
    padding: 55px 45px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    position: relative;
    z-index: 3;
    overflow: visible;
}

.what-container {
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    position: relative;
}

/* LEFT TEXT */
.what-left {
    width: 44%;
    max-width: 610px;
    color: #ffffff;
}

.what-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 28px;
    padding: 9px 24px;

    background: #fbe4e4;
    color: #b4070b;

    border-radius: 0;
    font-size: 13px;
    font-weight: 700;
}

.what-left h2 {
    color: #ffffff;
    font-size: 31px;
    line-height: 1.28;
    font-weight: 500;
    letter-spacing: -0.2px;
}

/* RED VALUES BOX */
.what-values-box {
    position: absolute;
    top: 72px;
    right: 150px;
    z-index: 10;

    width: 34%;
    max-width: 460px;
    min-width: 360px;

    padding: 36px 38px 40px;

    background: #b4070b;
    color: #ffffff;

    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.28);
}

.what-values-title {
    margin-bottom: 26px;

    color: #ffffff;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.3px;
    text-transform: uppercase;
}

/* VALUES LIST */
.what-values-item {
    display: flex;
    align-items: flex-start;
    gap: 22px;

    padding: 18px 0;
}

.what-values-item:first-child {
    padding-top: 0;
}

.what-values-item:last-child {
    padding-bottom: 0;
}

.what-values-letter {
    flex: 0 0 auto;
    width: 60px;

    font-size: 68px;
    font-weight: 700;
    line-height: 1;
    font-family: Arial, Helvetica, sans-serif;

    color: transparent;
    -webkit-text-stroke: 1.5px #ffffff;
}

.what-values-text h4 {
    margin-bottom: 6px;

    color: #ffffff;
    font-size: 19px;
    line-height: 1.2;
    font-weight: 700;
}

.what-values-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13.5px;
    line-height: 1.45;
    font-weight: 400;
}

/* IMAGE BELOW */
.what-image-wrap {
    width: 100%;
    height: 610px;

    position: relative;
    z-index: 1;

    overflow: hidden;
    background: #0c1c44;
}

.what-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* CTA STRIP OVER IMAGE */
.what-image-cta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;

    min-height: 150px;
    padding: 0 90px;

    background: rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(2px);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.what-image-cta h3 {
    color: #ffffff;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 400;
}

/* CTA BUTTON AREA */
.what-image-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* CTA BUTTONS */
.what-image-btn {
    min-width: 145px;
    height: 50px;
    padding: 0 24px;

    text-decoration: none;
    border-radius: 60px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;
    font-weight: 700;

    transition: 0.25s ease;
}

.what-image-btn-primary {
    background: #b4070b;
    color: #ffffff;
    border: 2px solid #b4070b;
}

.what-image-btn-primary:hover {
    background: #d61f26;
    border-color: #d61f26;
    transform: translateY(-2px);
}

.what-image-btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.75);
}

.what-image-btn-secondary:hover {
    background: #ffffff;
    color: #0c1c44;
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* MOBILE CTA STRIP */
@media (max-width: 700px) {
    .what-image-cta {
        min-height: 170px;
        padding: 28px 22px;

        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .what-image-cta h3 {
        font-size: 24px;
    }

    .what-image-actions {
        gap: 10px;
    }

    .what-image-btn {
        min-width: 130px;
        height: 48px;
        font-size: 14px;
        padding: 0 22px;
    }
}

/* MEDIUM DESKTOP / ZOOM SAFETY */
@media (max-width: 1200px) {
    .what-top {
        min-height: auto;
        padding: 70px 35px 110px;
    }

    .what-container {
        display: block;
    }

    .what-left {
        width: 100%;
        max-width: 760px;
        margin-bottom: 45px;
    }

    .what-values-box {
        position: relative;
        top: auto;
        right: auto;

        width: 100%;
        max-width: none;
        min-width: 0;

        transform: translateY(45px);
    }

    .what-image-wrap {
        margin-top: -45px;
    }
}

/* TABLET */
@media (max-width: 1000px) {
    .what-top {
        padding: 65px 28px 95px;
    }

    .what-left h2 {
        font-size: 29px;
    }

    .what-image-wrap {
        height: 500px;
    }
}

/* MOBILE */
@media (max-width: 650px) {
    .what-top {
        padding: 55px 18px 85px;
    }

    .what-left h2 {
        font-size: 24px;
        line-height: 1.32;
    }

    .what-values-box {
        padding: 32px 26px 34px;
        transform: translateY(35px);
    }

    .what-values-title {
        font-size: 26px;
        margin-bottom: 18px;
    }

    .what-values-item {
        gap: 16px;
        padding: 14px 0;
    }

    .what-values-letter {
        width: 42px;
        font-size: 46px;
    }

    .what-values-text h4 {
        font-size: 17px;
    }

    .what-values-text p {
        font-size: 13px;
    }

    .what-image-wrap {
        height: 380px;
        margin-top: -35px;
    }
}
