/* =========================================================
   SUCCESS STORY SECTION
========================================================= */

.success-story-section {
    width: 100%;

    background: #e7f0f6;

    padding: 80px 0 90px;

    box-sizing: border-box;
    overflow: hidden;
}


.success-story-inner {
    width: calc(100% - 136px);
    max-width: 1320px;

    margin: 0 auto;

    box-sizing: border-box;
}


/* =========================================================
   COLLAGE WRAPPER
========================================================= */

.success-collage {
    position: relative;

    width: 100%;
    aspect-ratio: 1223 / 590;

    margin-bottom: 70px;
}


/* =========================================================
   COLLAGE PHOTOS
========================================================= */

.collage-photo {
    position: absolute;

    overflow: hidden;

    border-radius: 6px;

    background: #cfd8dd;
}


.collage-photo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    filter: grayscale(100%);
}


.collage-photo--1 {
    left: 6.21%;
    top: 0%;

    width: 8.09%;
    height: 22.54%;
}


.collage-photo--2 {
    left: 74.98%;
    top: 2.71%;

    width: 8.09%;
    height: 22.20%;
}


.collage-photo--3 {
    left: 85.61%;
    top: 13.90%;

    width: 14.39%;
    height: 39.32%;
}


.collage-photo--4 {
    left: 0%;
    top: 27.80%;

    width: 14.39%;
    height: 39.49%;
}


.collage-photo--5 {
    left: 74.98%;
    top: 57.12%;

    width: 15.70%;
    height: 42.88%;
}


.collage-photo--6 {
    left: 15.95%;
    top: 61.53%;

    width: 13.41%;
    height: 36.78%;
}


/* =========================================================
   CENTER CONTENT
========================================================= */

.success-content {
    position: absolute;
    left: 50%;
    top: 24.24%;
    transform: translateX(-50%);
    padding: 0 15px;
    text-align: center;
    z-index: 2;
}


.success-content h2 {
    margin: 0 0 30px;

    font-family: inherit;
    font-size: 52px;
    line-height: 1.15;
    font-weight: 600;

    color: #080808;
}


/* =========================================================
   STAT
========================================================= */

.success-stat {
    margin-bottom: 34px;
}


.stat-label-top {
    display: block;

    margin-bottom: 9px;

    font-size: 22px;
    line-height: 1.3;

    color: #1a1a1a;
}


.stat-number {
    display: block;
    font-size: 140px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -2px;
    color: #080808;
}


.stat-label-bottom {
    display: block;

    margin-top: 13px;

    font-size: 22px;
    line-height: 1.3;

    color: #1a1a1a;
}


/* =========================================================
   CTA BUTTON
========================================================= */

.success-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    height: 44px;

    padding: 0 26px;

    box-sizing: border-box;

    background: #0c6aa5;
    border-radius: 22px;

    color: #ffffff;
    text-decoration: none;

    font-weight: 600;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.success-cta-btn:hover {
    background: #094f7c;
    transform: translateY(-1px);
}


.success-arrow {
    width: 20px;
    height: 20px;

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

    border: 1px solid currentColor;
    border-radius: 50%;

    line-height: 1;

    flex-shrink: 0;

    transition: transform 0.2s ease;
}


.success-cta-btn:hover .success-arrow {
    transform: translateX(2px);
}


/* =========================================================
   CARDS GRID
========================================================= */

.success-cards-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 24px;
}


.success-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    min-height: 224px;

    padding: 28px 24px 22px;

    box-sizing: border-box;

    background: radial-gradient(84.02% 84.02% at 50% 15.98%, #0C6AA5 0%, #021927 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;

    text-decoration: none;

    transition: transform 0.2s ease;
}


.success-card:hover {
    transform: translateY(-3px);
}


.success-card-title {
    margin: 0;

    font-family: inherit;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 500;

    color: #ffffff;
}


.success-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 20px;
    padding-top: 16px;

    border-top: 1px solid rgba(255, 255, 255, 0.25);
}


.success-card-link {
    color: #ffffff;
    text-decoration: none;

    font-size: 18px;
    line-height: 1.3;
}


.card-arrow {
    width: 22px;
    height: 22px;

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

    border: 1px solid #ffffff;
    border-radius: 50%;

    color: #ffffff;
    line-height: 1;

    flex-shrink: 0;

    transition: transform 0.2s ease;
}


.success-card:hover .card-arrow {
    transform: translateX(2px);
}


/* =========================================================
   TABLET
   (decorative collage is dropped for a simpler stacked layout)
========================================================= */

@media (max-width: 1000px) {

    .success-story-inner {
        width: calc(100% - 80px);
    }


    .success-collage {
        aspect-ratio: auto;
        height: auto;

        margin-bottom: 50px;
    }


    .collage-photo {
        display: none;
    }


    .success-content {
        position: static;

        transform: none;

        width: 100%;
        max-width: 480px;

        margin: 0 auto;
    }


    .success-content h2 {
        font-size: 34px;
    }


    .stat-number {
        font-size: 80px;
    }


    .success-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 20px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .success-story-section {
        padding: 60px 0 60px;
    }


    .success-story-inner {
        width: calc(100% - 40px);
    }


    .success-content h2 {
        font-size: 26px;
    }


    .stat-number {
        font-size: 60px;
    }


    .stat-label-top,
    .stat-label-bottom {
        font-size: 18px;
    }


    .success-cta-btn {
        height: 42px;
    }


    .success-cards-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }


    .success-card {
        min-height: unset;
    }

}