/* =========================================================
   HYRO TECHNOLOGIES FZE — BUSINESS RESULTS
   File:
   /assets/css/business-results.css
========================================================= */

.business-results-section {
    position: relative;
    overflow: hidden;

    padding: 100px 0 104px;

    background:
        radial-gradient(
            circle at 6% 14%,
            rgba(229, 43, 135, 0.07) 0,
            transparent 27%
        ),
        radial-gradient(
            circle at 94% 86%,
            rgba(132, 87, 232, 0.09) 0,
            transparent 30%
        ),
        #faf9fd;
}

.business-results-section::before {
    content: "";

    position: absolute;
    top: -135px;
    left: -120px;

    width: 320px;
    height: 320px;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        rgba(229, 43, 135, 0.06),
        rgba(132, 87, 232, 0.11)
    );

    pointer-events: none;
}

.business-results-section::after {
    content: "";

    position: absolute;
    right: -110px;
    bottom: -125px;

    width: 290px;
    height: 290px;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        rgba(229, 43, 135, 0.05),
        rgba(132, 87, 232, 0.10)
    );

    pointer-events: none;
}

.business-results-section .container {
    position: relative;
    z-index: 2;
}

/* Heading */

.business-results-heading {
    max-width: 850px;
    margin: 0 auto 49px;

    text-align: center;
}

.business-results-heading .eyebrow {
    display: inline-flex;
    align-items: center;

    margin-bottom: 15px;

    color: #d62f83;

    font-size: 13px;
    line-height: 1.4;
    font-weight: 800;

    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.business-results-heading .eyebrow::before,
.business-results-heading .eyebrow::after {
    content: "";

    width: 24px;
    height: 2px;

    margin: 0 10px;

    border-radius: 10px;

    background: linear-gradient(
        90deg,
        #e52b87,
        #8b63f5
    );
}

.business-results-heading h2 {
    margin: 0;

    color: #182033;

    font-size: clamp(36px, 4.3vw, 54px);
    line-height: 1.13;
    font-weight: 700;

    letter-spacing: -1.8px;
}

.business-results-heading h2 span {
    color: transparent;

    background: linear-gradient(
        100deg,
        #df2b83 0%,
        #c937ad 50%,
        #8059ec 100%
    );

    -webkit-background-clip: text;
    background-clip: text;
}

.business-results-heading p {
    max-width: 740px;

    margin: 19px auto 0;

    color: #667085;

    font-size: 16px;
    line-height: 1.8;
}

/* Cards Grid */

.business-results-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 21px;
}

/* Result Card */

.business-result-card {
    position: relative;
    overflow: hidden;

    min-height: 325px;

    padding: 30px 26px 28px;

    display: flex;
    flex-direction: column;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.995),
            rgba(254, 251, 255, 0.98)
        );

    border: 1px solid rgba(226, 225, 236, 0.96);
    border-radius: 24px;

    box-shadow:
        0 15px 42px rgba(31, 40, 70, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.business-result-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background: linear-gradient(
        90deg,
        #eb2b88 0%,
        #c63eb5 52%,
        #805fee 100%
    );
}

.business-result-card::after {
    content: "";

    position: absolute;
    right: -58px;
    bottom: -62px;

    width: 145px;
    height: 145px;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        rgba(229, 43, 135, 0.045),
        rgba(132, 87, 232, 0.105)
    );

    pointer-events: none;
}

.business-result-card:hover {
    transform: translateY(-9px);

    border-color: rgba(207, 54, 163, 0.27);

    box-shadow:
        0 26px 60px rgba(73, 47, 111, 0.13);
}

/* Card Number */

.business-result-number {
    position: absolute;
    top: 18px;
    right: 20px;

    color: rgba(130, 89, 232, 0.11);

    font-size: 54px;
    line-height: 1;
    font-weight: 900;
}

/* Icon */

.business-result-icon {
    position: relative;
    z-index: 2;

    width: 60px;
    height: 60px;

    margin-bottom: 24px;

    display: grid;
    place-items: center;

    color: #ffffff;

    background: linear-gradient(
        140deg,
        #e52b87 0%,
        #cc39ae 51%,
        #815eea 100%
    );

    border-radius: 18px;

    box-shadow:
        0 13px 28px rgba(196, 57, 169, 0.23);

    font-size: 26px;
    line-height: 1;
}

/* Text */

.business-result-card h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 11px;

    color: #182033;

    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
}

.business-result-card > p {
    position: relative;
    z-index: 2;

    margin: 0 0 20px;

    color: #667085;

    font-size: 14px;
    line-height: 1.75;
}

/* Benefit List */

.business-result-list {
    position: relative;
    z-index: 2;

    margin: auto 0 0;
    padding: 0;

    list-style: none;
}

.business-result-list li {
    position: relative;

    margin: 10px 0;
    padding-left: 27px;

    color: #4f5d73;

    font-size: 13px;
    line-height: 1.55;
}

.business-result-list li::before {
    content: "✓";

    position: absolute;
    top: 0;
    left: 0;

    width: 19px;
    height: 19px;

    display: grid;
    place-items: center;

    color: #ffffff;

    background: linear-gradient(
        135deg,
        #e52b87,
        #845fe9
    );

    border-radius: 50%;

    font-size: 10px;
    font-weight: 900;
}

/* Highlighted Profit Card */

.business-result-card.profit-card {
    color: #ffffff;

    background: linear-gradient(
        145deg,
        #1c3051 0%,
        #344a72 48%,
        #7956d7 100%
    );

    border-color: transparent;
}

.business-result-card.profit-card::before {
    background: linear-gradient(
        90deg,
        #ff4fa0,
        #b96cf2
    );
}

.business-result-card.profit-card::after {
    background: rgba(255, 255, 255, 0.07);
}

.business-result-card.profit-card .business-result-number {
    color: rgba(255, 255, 255, 0.10);
}

.business-result-card.profit-card h3 {
    color: #ffffff;
}

.business-result-card.profit-card > p {
    color: rgba(255, 255, 255, 0.80);
}

.business-result-card.profit-card .business-result-list li {
    color: rgba(255, 255, 255, 0.90);
}

.business-result-card.profit-card .business-result-list li::before {
    color: #704fd0;
    background: #ffffff;
}


/* =========================================================
   HIGHLIGHTED PROFIT CARD
   Light Green Premium Theme
========================================================= */

.business-result-card.profit-card {
    color: #173227;

    background: linear-gradient(
        145deg,
        #eefcf3 0%,
        #e2faea 45%,
        #d7f6db 72%,
        #c9edc3 100%
    );

    border-color: rgba(32, 179, 88, 0.28);

    box-shadow:
        0 18px 44px rgba(32, 179, 88, 0.13);
}

/* Green top line */

.business-result-card.profit-card::before {
    background: linear-gradient(
        90deg,
        #20b358 0%,
        #4fca70 48%,
        #9edb65 100%
    );
}

/* Decorative green circle */

.business-result-card.profit-card::after {
    background: linear-gradient(
        135deg,
        rgba(32, 179, 88, 0.07),
        rgba(158, 219, 101, 0.17)
    );
}

/* Number 04 */

.business-result-card.profit-card .business-result-number {
    color: rgba(31, 148, 77, 0.13);
}

/* Green icon */

.business-result-card.profit-card .business-result-icon {
    color: #ffffff;

    background: linear-gradient(
        140deg,
        #18ac52 0%,
        #35c56b 52%,
        #83cf5e 100%
    );

    box-shadow:
        0 13px 28px rgba(32, 179, 88, 0.23);
}

/* Heading */

.business-result-card.profit-card h3 {
    color: #173227;
}

/* Description */

.business-result-card.profit-card > p {
    color: #435d50;
}

/* List text */

.business-result-card.profit-card .business-result-list li {
    color: #375646;
}

/* Green checklist circles */

.business-result-card.profit-card .business-result-list li::before {
    color: #ffffff;

    background: linear-gradient(
        135deg,
        #1eae53,
        #62cd72
    );
}

/* Hover */

.business-result-card.profit-card:hover {
    border-color: rgba(32, 179, 88, 0.40);

    box-shadow:
        0 27px 60px rgba(32, 179, 88, 0.19);
}

/* Bottom Conversion Box */

.business-results-cta {
    position: relative;
    overflow: hidden;

    margin-top: 46px;
    padding: 29px 31px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    color: #ffffff;

    background: linear-gradient(
        120deg,
        #e42b86 0%,
        #c63bad 52%,
        #805eea 100%
    );

    border-radius: 23px;

    box-shadow:
        0 20px 48px rgba(165, 60, 178, 0.23);
}

.business-results-cta::after {
    content: "";

    position: absolute;
    top: -75px;
    right: -45px;

    width: 190px;
    height: 190px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.10);
}

.business-results-cta-copy {
    position: relative;
    z-index: 2;

    max-width: 680px;
}

.business-results-cta h3 {
    margin: 0 0 7px;

    color: #ffffff;

    font-size: 23px;
    line-height: 1.35;
    font-weight: 700;
}

.business-results-cta p {
    margin: 0;

    color: rgba(255, 255, 255, 0.88);

    font-size: 14px;
    line-height: 1.7;
}

.business-results-cta-actions {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 11px;

    flex: 0 0 auto;
}

.business-results-cta .btn-light {
    color: #d62f83;
    background: #ffffff;
    border-color: #ffffff;
}

.business-results-cta .btn-outline-light {
    color: #ffffff;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.62);
}

.business-results-cta .btn-outline-light:hover {
    color: #182033;
    background: #ffffff;
}

/* Tablet */

@media (max-width: 980px) {

    .business-results-section {
        padding: 84px 0 90px;
    }

    .business-results-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .business-results-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Mobile */

@media (max-width: 640px) {

    .business-results-section {
        padding: 68px 0 74px;
    }

    .business-results-heading {
        margin-bottom: 36px;
    }

    .business-results-heading h2 {
        font-size: 35px;
        letter-spacing: -0.9px;
    }

    .business-results-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .business-result-card {
        min-height: auto;
        padding: 27px 23px 25px;
    }

    .business-results-cta {
        margin-top: 35px;
        padding: 26px 23px;
    }

    .business-results-cta-actions {
        width: 100%;

        flex-direction: column;
        align-items: stretch;
    }

    .business-results-cta-actions .btn {
        width: 100%;
    }
}