/* =========================================================
   HOW WE HELP BUSINESSES GROW - ABOUT
   ========================================================= */

.how-help-grow-about {
    position: relative;
    overflow: hidden;
    padding: 90px 0 80px;
    background: #ffffff;
}


/* BACKGROUND SHAPES */

.how-help-grow-bg-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.how-help-grow-bg-shape.shape-left {
    width: 330px;
    height: 330px;
    left: -170px;
    top: -80px;
    background: rgba(238, 245, 255, 0.85);
}

.how-help-grow-bg-shape.shape-right {
    width: 300px;
    height: 300px;
    right: -150px;
    bottom: -100px;
    background: rgba(238, 245, 255, 0.85);
}

.how-help-grow-about .container {
    position: relative;
    z-index: 2;
}


/* HEADER */

.how-help-grow-header {
    max-width: 900px;
    margin: 0 auto 70px;
    text-align: center;
}

.how-help-grow-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 18px;

    color: #1267ed;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.how-help-grow-eyebrow span {
    display: block;
    width: 60px;
    height: 2px;
    background: #1267ed;
}

.how-help-grow-header h2 {
    margin: 0 auto 18px;
    color: #07194a;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -2px;
}

.how-help-grow-header h2::first-line {
    color: #07194a;
}

.how-help-grow-header p {
    max-width: 820px;
    margin: 0 auto;
    color: #536887;
    font-size: 18px;
    line-height: 1.65;
}


/* CARDS */

.how-help-grow-cards {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    align-items: stretch;
}


/* INDIVIDUAL CARD */

.how-help-grow-card {
    position: relative;
    min-height: 430px;
    padding: 25px 18px 22px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    background: rgba(255, 255, 255, 0.96);
    border: 1px solid #e3ebf8;
    border-radius: 18px;

    box-shadow:
        0 10px 30px rgba(31, 93, 170, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.how-help-grow-card:hover {
    transform: translateY(-7px);
    box-shadow:
        0 18px 40px rgba(31, 93, 170, 0.13);
}


/* CARD IMAGE */

.how-help-grow-card-image {
    width: 145px;
    height: 145px;
    margin-bottom: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    overflow: hidden;
}

.how-help-grow-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.how-help-grow-image-placeholder {
    width: 110px;
    height: 110px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #eef5ff;

    color: #1267ed;
    font-size: 42px;
}


/* CARD CONTENT */

.how-help-grow-card h3 {
    margin: 0 0 12px;

    color: #07194a;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 800;
}

.how-help-grow-card p {
    margin: 0;

    color: #536887;
    font-size: 15px;
    line-height: 1.55;
}


/* READ MORE */

.how-help-grow-read-more {
    margin-top: auto;
    padding-top: 20px;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;

    color: #1267ed;
    font-size: 15px;
    font-weight: 800;

    transition: gap 0.25s ease;
}

.how-help-grow-read-more i {
    font-size: 14px;
}

.how-help-grow-read-more:hover {
    gap: 15px;
}


/* CARD BOTTOM ACCENTS */

.how-help-grow-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 5px;
    border-radius: 0 0 18px 18px;

    background: #1267ed;
}

.how-help-grow-card.card-2::after {
    background: #ff7200;
}

.how-help-grow-card.card-3::after {
    background: #08b96b;
}

.how-help-grow-card.card-4::after {
    background: #6137ff;
}

.how-help-grow-card.card-5::after {
    background: #f72585;
}

.how-help-grow-card.card-6::after {
    background: #1267ed;
}


/* CTA */

.how-help-grow-cta {
    position: relative;
    margin-top: 40px;
    padding: 34px 38px;

    overflow: hidden;

    border-radius: 24px;

    background:
        linear-gradient(
            110deg,
            #1976f3 0%,
            #1267dc 55%,
            #114b9f 100%
        );

    box-shadow:
        0 20px 45px rgba(18, 103, 237, 0.20);
}

.how-help-grow-cta::before,
.how-help-grow-cta::after {
    content: "";
    position: absolute;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;

    pointer-events: none;
}

.how-help-grow-cta::before {
    width: 190px;
    height: 190px;
    right: -65px;
    top: -110px;
}

.how-help-grow-cta::after {
    width: 170px;
    height: 170px;
    right: 50px;
    bottom: -130px;
}

.how-help-grow-cta-content {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1.4fr 1.7fr 1.3fr;
    gap: 30px;
    align-items: center;
}


/* CTA TEXT */

.how-help-grow-cta-text h3 {
    margin: 0 0 8px;

    color: #ffffff;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 800;
}

.how-help-grow-cta-text p {
    margin: 0;

    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.55;
}


/* STATS */

.how-help-grow-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.how-help-grow-stat {
    min-height: 65px;
    padding: 0 22px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.how-help-grow-stat strong {
    display: block;

    color: #ffffff;
    font-size: 30px;
    line-height: 1;
    font-weight: 800;
}

.how-help-grow-stat span {
    margin-top: 7px;

    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    line-height: 1.3;
}


/* CTA BUTTON */

.how-help-grow-action {
    text-align: center;
}

.how-help-grow-button {
    min-height: 58px;
    padding: 0 28px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    border-radius: 13px;

    background: #ffffff;

    color: #1267ed;
    text-decoration: none;

    font-size: 15px;
    font-weight: 800;

    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.how-help-grow-button:hover {
    transform: translateY(-2px);
    color: #1267ed;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.13);
}

.how-help-grow-button i {
    font-size: 14px;
}

.how-help-grow-action small {
    display: block;
    margin-top: 10px;

    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
}


/* TABLET */

@media (max-width: 1199px) {

    .how-help-grow-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .how-help-grow-card {
        min-height: 410px;
    }

    .how-help-grow-cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .how-help-grow-stats {
        max-width: 600px;
        margin: 0 auto;
    }

    .how-help-grow-action {
        margin-top: 5px;
    }
}


/* MOBILE */

@media (max-width: 767px) {

    .how-help-grow-about {
        padding: 65px 0 55px;
    }

    .how-help-grow-header {
        margin-bottom: 45px;
    }

    .how-help-grow-eyebrow {
        font-size: 12px;
    }

    .how-help-grow-eyebrow span {
        width: 38px;
    }

    .how-help-grow-header h2 {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .how-help-grow-header p {
        font-size: 16px;
    }

    .how-help-grow-cards {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .how-help-grow-card {
        min-height: 390px;
    }

    .how-help-grow-cta {
        margin-top: 28px;
        padding: 30px 20px;
    }

    .how-help-grow-cta-text h3 {
        font-size: 25px;
    }

    .how-help-grow-stats {
        grid-template-columns: 1fr;
    }

    .how-help-grow-stat {
        padding: 15px 0;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.22);
    }

    .how-help-grow-stat:first-child {
        border-top: 0;
    }

    .how-help-grow-button {
        width: 100%;
    }
}