/* =========================================================
   MOTO747 WHY CHOOSE US
   ========================================================= */

.m747-why-section {
    position: relative;
    padding: 115px 0;
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(
            145deg,
            #f7f7f7 0%,
            #ffffff 48%,
            #f0f0f0 100%
        );
}

.m747-why-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(225, 6, 0, 0.055),
            transparent 48%
        );
}

.m747-why-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.035;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.45) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.45) 1px,
            transparent 1px
        );
    background-size: 80px 80px;
}

.m747-why-section .container {
    z-index: 2;
}

.m747-why-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    color: #e10600;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.m747-why-subtitle::before,
.m747-why-subtitle::after {
    content: "";
    width: 38px;
    height: 2px;
    background: #e10600;
}

.m747-why-title {
    max-width: 850px;
    margin: 0 auto;
    color: #111111;
    font-size: clamp(43px, 5vw, 70px);
    line-height: 1.04;
    font-weight: 900;
    letter-spacing: -2.6px;
    text-transform: uppercase;
}

.m747-why-title span {
    display: block;
    color: #e10600;
}

.m747-why-line {
    position: relative;
    width: 95px;
    height: 3px;
    margin: 28px auto;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.11);
}

.m747-why-line::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 58%;
    background: #e10600;
    box-shadow: 0 0 14px rgba(225, 6, 0, 0.38);
}

.m747-why-description {
    max-width: 800px;
    margin: 0 auto;
    color: #6a6a6a;
    font-size: 16px;
    line-height: 1.85;
}

.m747-why-card-row {
    margin-top: 65px;
}

.m747-why-card-row > div {
    display: flex;
}

.m747-why-card {
    position: relative;
    width: 100%;
    min-height: 330px;
    padding: 38px 30px 34px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.m747-why-card::before {
    content: "";
    position: absolute;
    top: -95px;
    right: -95px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(225, 6, 0, 0.045);
    transition: 0.45s ease;
}

.m747-why-card:hover {
    transform: translateY(-10px);
    border-color: rgba(225, 6, 0, 0.34);
    box-shadow: 0 30px 75px rgba(0, 0, 0, 0.14);
}

.m747-why-card:hover::before {
    width: 250px;
    height: 250px;
    background: rgba(225, 6, 0, 0.075);
}

.m747-why-number {
    position: absolute;
    top: 18px;
    right: 20px;
    color: rgba(0, 0, 0, 0.06);
    font-size: 58px;
    line-height: 1;
    font-weight: 950;
    pointer-events: none;
}

.m747-why-icon {
    position: relative;
    z-index: 2;
    width: 66px;
    height: 66px;
    margin-bottom: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #e10600;
    font-size: 25px;
    border: 1px solid rgba(225, 6, 0, 0.26);
    background: rgba(225, 6, 0, 0.065);
    transition: 0.35s ease;
}

.m747-why-card:hover .m747-why-icon {
    color: #ffffff;
    background: #e10600;
    border-color: #e10600;
    transform: rotate(-5deg) scale(1.06);
    box-shadow: 0 14px 30px rgba(225, 6, 0, 0.22);
}

.m747-why-card h4 {
    position: relative;
    z-index: 2;
    margin: 0 0 16px;
    color: #161616;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 850;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.m747-why-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #707070;
    font-size: 14px;
    line-height: 1.8;
}

.m747-why-bottom-line {
    position: absolute;
    right: 30px;
    bottom: 0;
    left: 30px;
    height: 3px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.07);
}

.m747-why-bottom-line::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 42px;
    background: #e10600;
    transition: width 0.4s ease;
}

.m747-why-card:hover .m747-why-bottom-line::before {
    width: 100%;
}

@media (max-width: 1199px) {

    .m747-why-card {
        min-height: 315px;
    }
}

@media (max-width: 991px) {

    .m747-why-section {
        padding: 90px 0;
    }

    .m747-why-card-row {
        margin-top: 50px;
    }
}

@media (max-width: 767px) {

    .m747-why-section {
        padding: 75px 0;
    }

    .m747-why-subtitle {
        font-size: 9px;
        letter-spacing: 2.5px;
    }

    .m747-why-subtitle::before,
    .m747-why-subtitle::after {
        width: 24px;
    }

    .m747-why-title {
        font-size: 37px;
        letter-spacing: -1.5px;
    }

    .m747-why-description {
        padding: 0 10px;
        font-size: 15px;
        line-height: 1.75;
    }

    .m747-why-card-row {
        margin-top: 42px;
    }

    .m747-why-card {
        min-height: 0;
        padding: 32px 25px 30px;
    }
}

@media (max-width: 480px) {

    .m747-why-title {
        font-size: 31px;
    }

    .m747-why-card h4 {
        font-size: 19px;
    }
}


.m747-cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(
            135deg,
            #050505 0%,
            #0d0d0f 55%,
            #151515 100%
        );
}

.m747-cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.07;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.18) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.18) 1px,
            transparent 1px
        );
    background-size: 75px 75px;
}

.m747-cta-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.10),
            rgba(0, 0, 0, 0.72)
        );
}

.m747-cta-red-light {
    position: absolute;
    top: -280px;
    left: 50%;
    z-index: 1;
    width: 720px;
    height: 720px;
    border-radius: 50%;
    transform: translateX(-50%);
    background: rgba(225, 6, 0, 0.20);
    filter: blur(150px);
    pointer-events: none;
}

.m747-cta-section .container {
    z-index: 3;
}

.m747-cta-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    color: #e10600;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.m747-cta-subtitle::before,
.m747-cta-subtitle::after {
    content: "";
    width: 38px;
    height: 2px;
    background: #e10600;
    box-shadow: 0 0 15px rgba(225, 6, 0, 0.65);
}

.m747-cta-title {
    max-width: 950px;
    margin: 0 auto;
    color: #ffffff;
    font-size: clamp(46px, 5.5vw, 78px);
    line-height: 1.03;
    font-weight: 900;
    letter-spacing: -3px;
    text-transform: uppercase;
}

.m747-cta-title span {
    display: block;
    color: #e10600;
}

.m747-cta-line {
    position: relative;
    width: 100px;
    height: 3px;
    margin: 30px auto;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
}

.m747-cta-line::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 58%;
    background: #e10600;
    box-shadow: 0 0 16px rgba(225, 6, 0, 0.70);
}

.m747-cta-description {
    max-width: 820px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.64);
    font-size: 17px;
    line-height: 1.85;
}

.m747-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 40px;
}

.m747-cta-primary-btn,
.m747-cta-secondary-btn {
    min-height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: 0.35s ease;
}

.m747-cta-primary-btn {
    gap: 26px;
    padding: 0 8px 0 28px;
    border: 1px solid #e10600;
    background: #e10600;
    box-shadow: 0 18px 42px rgba(225, 6, 0, 0.22);
}

.m747-cta-primary-btn > span:first-child {
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.m747-cta-btn-icon {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.24);
    transition: 0.35s ease;
}

.m747-cta-primary-btn:hover {
    color: #111111;
    background: #ffffff;
    border-color: #ffffff;
    transform: translateY(-4px);
}

.m747-cta-primary-btn:hover .m747-cta-btn-icon {
    color: #ffffff;
    background: #111111;
    transform: translateX(3px);
}

.m747-cta-secondary-btn {
    gap: 12px;
    padding: 0 28px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(10px);
}

.m747-cta-secondary-btn i {
    color: #e10600;
}

.m747-cta-secondary-btn span {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.m747-cta-secondary-btn:hover {
    color: #ffffff;
    border-color: #e10600;
    background: #e10600;
    transform: translateY(-4px);
}

.m747-cta-secondary-btn:hover i {
    color: #ffffff;
}

@media (max-width: 991px) {

    .m747-cta-section {
        padding: 95px 0;
    }

    .m747-cta-title {
        font-size: 58px;
    }
}

@media (max-width: 767px) {

    .m747-cta-section {
        padding: 75px 0;
    }

    .m747-cta-subtitle {
        font-size: 9px;
        letter-spacing: 2.5px;
    }

    .m747-cta-subtitle::before,
    .m747-cta-subtitle::after {
        width: 24px;
    }

    .m747-cta-title {
        font-size: 38px;
        letter-spacing: -1.5px;
    }

    .m747-cta-description {
        padding: 0 10px;
        font-size: 15px;
        line-height: 1.75;
    }

    .m747-cta-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .m747-cta-primary-btn,
    .m747-cta-secondary-btn {
        width: 100%;
        max-width: 330px;
        margin: 0 auto;
    }

    .m747-cta-primary-btn {
        justify-content: space-between;
    }
}

@media (max-width: 480px) {

    .m747-cta-title {
        font-size: 31px;
    }

    .m747-cta-primary-btn,
    .m747-cta-secondary-btn {
        min-height: 56px;
    }
}