﻿.sp-root {
    direction: @(isRtl?"rtl":"ltr")
}
.sp-how {
    max-width: var(--wrap,1200px);
    margin: 0 auto;
    padding: 0 20px 64px
}
.sp-how-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
    margin-top: 32px
}
.sp-how-card {
    background: linear-gradient(135deg,#fff,#fafbff);
    border-radius: 20px;
    border: 1.5px solid #f0f2f5;
    padding: 32px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all .35s cubic-bezier(.2,.8,.2,1);
    box-shadow: 0 4px 12px rgba(15,23,42,.06)
}
    .sp-how-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 48px rgba(15,23,42,.12);
        border-color: rgba(38,78,255,.25)
    }
    .sp-how-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg,#264EFF 0 60%,#F7A722 60% 100%);
        opacity: 0;
        transition: opacity .3s
    }
    .sp-how-card:hover::after {
        opacity: 1
    }
.sp-how-num {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg,#264EFF,#4A6EFF);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(38,78,255,.3);
    transition: all .35s cubic-bezier(.2,.8,.2,1)
}
.sp-how-card:hover .sp-how-num {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 28px rgba(38,78,255,.4)
}
.sp-how-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: #0E1320;
    margin-bottom: 10px;
    letter-spacing: -.02em
}
.sp-how-card p {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.7;
    margin: 0
}
.sp-why {
    background: linear-gradient(160deg,#0E1320 0%,#1A2444 40%,#264EFF 100%);
    border-radius: 24px;
    padding: 56px 40px;
    margin: 0 20px 64px;
    max-width: calc(var(--wrap,1200px) + 40px);
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden
}
    .sp-why::before {
        content: '';
        position: absolute;
        top: -80px;
        right: -80px;
        width: 240px;
        height: 240px;
        border-radius: 50%;
        background: rgba(247,167,34,.08);
        filter: blur(60px);
        pointer-events: none
    }
    .sp-why::after {
        content: '';
        position: absolute;
        bottom: -60px;
        left: -60px;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background: rgba(38,78,255,.2);
        filter: blur(50px);
        pointer-events: none
    }
.sp-why-head {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1
}
    .sp-why-head h2 {
        font-size: 28px;
        font-weight: 900;
        color: #fff;
        margin-bottom: 10px;
        letter-spacing: -.025em
    }
    .sp-why-head p {
        font-size: 16px;
        color: rgba(255,255,255,.7);
        max-width: 560px;
        margin: 0 auto
    }
.sp-why-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    position: relative;
    z-index: 1
}
.sp-why-item {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    padding: 28px 24px;
    transition: all .3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px)
}
    .sp-why-item:hover {
        background: rgba(255,255,255,.12);
        border-color: rgba(255,255,255,.2);
        transform: translateY(-4px)
    }
.sp-why-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all .3s
}
.sp-why-item:hover .sp-why-icon {
    background: rgba(255,255,255,.18);
    transform: scale(1.08)
}
.sp-why-icon svg {
    width: 22px;
    height: 22px;
    color: #8BABFF
}
.sp-why-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px
}
.sp-why-item p {
    font-size: 13px;
    color: rgba(255,255,255,.6);
    line-height: 1.6;
    margin: 0
}
.sp-faq {
    max-width: var(--wrap,1200px);
    margin: 0 auto;
    padding: 0 20px 64px
}
.sp-faq-head {
    text-align: center;
    margin-bottom: 36px
}
    .sp-faq-head h2 {
        font-size: 28px;
        font-weight: 900;
        color: #0E1320;
        margin-bottom: 10px;
        letter-spacing: -.025em
    }
    .sp-faq-head p {
        font-size: 16px;
        color: #6B7280;
        max-width: 540px;
        margin: 0 auto
    }
.sp-faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px
}
.sp-faq-item {
    background: #fff;
    border: 1.5px solid #f0f2f5;
    border-radius: 16px;
    overflow: hidden;
    transition: all .3s ease;
    box-shadow: 0 1px 3px rgba(15,23,42,.04)
}
    .sp-faq-item.active {
        border-color: rgba(38,78,255,.3);
        box-shadow: 0 4px 16px rgba(38,78,255,.08)
    }
.sp-faq-q {
    width: 100%;
    padding: 20px 24px;
    background: #fff;
    border: none;
    font-size: 15px;
    font-weight: 700;
    color: #0E1320;
    text-align: @(isRtl?"right":"left");
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: inherit;
    transition: background .2s
}
    .sp-faq-q:hover {
        background: #fafbff
    }
.sp-faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f3f4fb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #6B7280;
    flex-shrink: 0;
    transition: all .3s
}
.sp-faq-item.active .sp-faq-icon {
    background: #264EFF;
    color: #fff;
    transform: rotate(45deg)
}
.sp-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.2,.8,.2,1)
}
.sp-faq-item.active .sp-faq-a {
    max-height: 400px
}
.sp-faq-a-in {
    padding: 0 24px 22px;
    font-size: 14px;
    color: #6B7280;
    line-height: 1.75
}
.sp-fullcta-new {
    background: linear-gradient(160deg,#0E1320 0%,#1A2444 40%,#264EFF 100%);
    border-radius: 24px;
    padding: 56px 40px;
    margin: 0 20px 80px;
    max-width: calc(var(--wrap,1200px) + 40px);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(38,78,255,.3)
}
    .sp-fullcta-new::before {
        content: '';
        position: absolute;
        top: -80px;
        right: -80px;
        width: 240px;
        height: 240px;
        border-radius: 50%;
        background: rgba(247,167,34,.08);
        filter: blur(60px);
        pointer-events: none
    }
    .sp-fullcta-new h2 {
        font-size: 30px;
        font-weight: 900;
        margin-bottom: 14px;
        letter-spacing: -.025em;
        position: relative;
        z-index: 1
    }
    .sp-fullcta-new p {
        font-size: 16px;
        margin-bottom: 28px;
        opacity: .8;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
        position: relative;
        z-index: 1
    }
    .sp-fullcta-new .ent-btn {
        background: #fff;
        color: #1A3DD9;
        border-color: #fff;
        font-weight: 800;
        box-shadow: 0 6px 24px rgba(0,0,0,.15);
        position: relative;
        z-index: 1
    }
        .sp-fullcta-new .ent-btn:hover {
            background: #F7A722;
            color: #fff;
            border-color: #F7A722;
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 10px 32px rgba(247,167,34,.35)
        }
@media(max-width:1024px) {
    .sp-how-grid, .sp-why-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 18px
    }
    .sp-why, .sp-fullcta-new {
        padding: 40px 24px;
        margin-left: 20px;
        margin-right: 20px
    }
}
@media(max-width:640px) {
    .sp-how-grid, .sp-why-grid {
        grid-template-columns: 1fr
    }
    .sp-how-card {
        padding: 24px 20px
    }
    .sp-why-item {
        padding: 22px 18px
    }
    .sp-why, .sp-fullcta-new {
        padding: 32px 20px;
        margin-left: 16px;
        margin-right: 16px;
        border-radius: 20px
    }
        .sp-fullcta-new h2 {
            font-size: 22px
        }
    .sp-faq-q {
        padding: 16px 18px;
        font-size: 14px
    }
    .sp-faq-a-in {
        padding: 0 18px 18px;
        font-size: 13px
    }
    .sp-faq-head h2 {
        font-size: 22px
    }
}
