.target-group-section {
    position: relative;
    overflow: hidden;
}

.target-group-head {
    max-width: 760px;
}

.target-group-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin-top: 42px;
    align-items: stretch;
}

.target-group-card {
    position: relative;
    padding: 30px 24px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    background:
        radial-gradient(circle at top right, rgba(249, 115, 22, 0.10), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.target-group-card:hover {
    transform: translateY(-4px);
    border-color: rgba(249, 115, 22, 0.28);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.10);
}

.target-group-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249,115,22,.10);
    color: var(--orange-dark);
    margin-bottom: 18px;
    box-shadow: none;
}

.target-group-icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.target-group-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #0f172a;
}

.target-group-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
    color: #64748b;
}

.target-slider-dots {
    display: none;
}

@media (max-width: 1100px) {
    .target-group-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.target-slider-dots span{
    cursor:pointer;
}

@media (max-width:700px){

    .target-group-section{
        overflow:hidden;
    }

    .target-group-grid{
        display:flex !important;
        gap:16px !important;

        overflow-x:auto !important;
        overflow-y:hidden !important;

        scroll-snap-type:x mandatory !important;
        scroll-behavior:smooth !important;
        -webkit-overflow-scrolling:touch;

        padding:0 22px 8px 0 !important;
        margin:30px -22px 0 0 !important;

        scrollbar-width:none;
        touch-action:pan-x pan-y !important;
    }

    .target-group-grid::-webkit-scrollbar{
        display:none;
    }

    .target-group-card{
        flex:0 0 84% !important;
        min-width:84% !important;
        max-width:84% !important;

        scroll-snap-align:start !important;

        border-radius:20px;
        padding:20px 18px;

        box-shadow:none !important;
        border:1px solid #e9eef6;
    }

    .target-group-card:hover{
        transform:none;
        box-shadow:none !important;
    }

    .target-group-icon{
        width:48px;
        height:48px;
        border-radius:16px;
        margin-bottom:14px;
    }

    .target-group-icon svg{
        width:22px;
        height:22px;
    }

    .target-slider-dots{
        display:flex;
        justify-content:center;
        gap:7px;
        margin-top:16px;
    }

    .target-slider-dots span{
        width:7px;
        height:7px;
        border-radius:999px;
        background:#cbd5e1;
        cursor:pointer;
    }

    .target-slider-dots span.is-active{
        width:20px;
        background:#f97316;
    }
}