/* =========================================================
   KRITERIA SEHATI
   PART 1
   SECTION • BACKGROUND • HEADER
========================================================= */


/* =========================================================
   SECTION
========================================================= */

.section-sehati{

    position:relative;

    overflow:hidden;

    padding:
        clamp(110px,10vw,1450px)
        0
        90px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fbf8 100%
        );

}


/* =========================================================
   BACKGROUND
========================================================= */

.sehati-blur{

    position:absolute;

    border-radius:50%;

    filter:blur(90px);

    pointer-events:none;

    z-index:0;

}

.sehati-blur.blur-left{

    width:420px;

    height:420px;

    top:-170px;

    left:-170px;

    background:
        radial-gradient(
            circle,
            rgba(22,163,74,.12),
            transparent 72%
        );

}

.sehati-blur.blur-right{

    width:380px;

    height:380px;

    right:-150px;

    bottom:-170px;

    background:
        radial-gradient(
            circle,
            rgba(250,204,21,.10),
            transparent 72%
        );

}


/* =========================================================
   CONTAINER
========================================================= */

.section-sehati .container{

    position:relative;

    z-index:2;

}


/* =========================================================
   HEADER
========================================================= */

.sehati-header{

    max-width:820px;

    margin:
        0 auto
        60px;

    text-align:center;

}


/* =========================================================
   LABEL
========================================================= */

.sehati-label{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:
        10px
        18px;

    margin-bottom:22px;

    border-radius:999px;

    background:
        rgba(22,163,74,.08);

    border:
        1px solid rgba(22,163,74,.12);

    color:var(--primary);

    font-size:.78rem;

    font-weight:700;

    letter-spacing:.08em;

    text-transform:uppercase;

}

.sehati-label i{

    font-size:.85rem;

}


/* =========================================================
   TITLE
========================================================= */

.sehati-header h2{

    margin:0;

    font-size:
        clamp(2.5rem,5vw,4rem);

    line-height:1.1;

    font-weight:800;

    letter-spacing:-1.5px;

    color:var(--text-heading);

}

.sehati-header h2 span{

    display:block;

    margin-top:6px;

    color:var(--primary);

}


/* =========================================================
   DESCRIPTION
========================================================= */

.sehati-header p{

    max-width:760px;

    margin:
        24px auto
        0;

    color:var(--text-soft);

    font-size:1rem;

    line-height:1.9;

}

.sehati-header strong{

    color:var(--primary);

}

/* =========================================================
   KRITERIA SEHATI
   PART 2
   CARD • LIST • NUMBER
========================================================= */


/* =========================================================
   CARD
========================================================= */

.sehati-card{

    position:relative;

    z-index:2;

    overflow:hidden;

    padding:42px;

    border-radius:30px;

    background:#ffffff;

    border:
        1px solid rgba(15,23,42,.08);

    box-shadow:
        0 20px 60px rgba(15,23,42,.08);

}


/* =========================================================
   CARD OVERLAY
========================================================= */

.sehati-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:

        linear-gradient(

            180deg,

            rgba(255,255,255,.55),

            transparent 28%

        );

    pointer-events:none;

}


/* =========================================================
   LIST
========================================================= */

.sehati-list{

    position:relative;

    z-index:2;

    list-style:none;

    margin:0;

    padding:0;

    counter-reset:sehati;

    display:flex;

    flex-direction:column;

    gap:18px;

}


/* =========================================================
   LIST ITEM
========================================================= */

.sehati-list > li{

    position:relative;

    padding:

        20px
        22px
        20px
        74px;

    border-radius:20px;

    background:

        linear-gradient(

            180deg,

            #ffffff,

            #fbfbfb

        );

    border:

        1px solid rgba(15,23,42,.07);

    color:var(--text-body);

    font-size:.98rem;

    line-height:1.9;

    transition:

        transform .25s ease,

        border-color .25s ease,

        box-shadow .25s ease;

}


/* =========================================================
   NUMBER
========================================================= */

.sehati-list > li::before{

    counter-increment:sehati;

    content:counter(sehati);

    position:absolute;

    top:20px;

    left:20px;

    width:38px;

    height:38px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:12px;

    background:

        linear-gradient(

            135deg,

            var(--primary),

            #22c55e

        );

    color:#ffffff;

    font-size:.82rem;

    font-weight:800;

    box-shadow:

        0 10px 24px rgba(22,163,74,.20);

}


/* =========================================================
   HOVER
========================================================= */

.sehati-list > li:hover{

    transform:translateY(-4px);

    border-color:

        rgba(22,163,74,.18);

    box-shadow:

        0 16px 34px rgba(15,23,42,.08);

}


/* =========================================================
   LAST ITEM
========================================================= */

.sehati-list > li:last-child{

    margin-bottom:0;

}

/* =========================================================
   KRITERIA SEHATI
   PART 3
   SUB LIST • SOURCE
========================================================= */


/* =========================================================
   SUB LIST
========================================================= */

.sehati-sublist{

    margin-top:20px;

    padding:0;

    list-style:none;

    display:flex;

    flex-direction:column;

    gap:12px;

}


/* =========================================================
   SUB LIST ITEM
========================================================= */

.sehati-sublist li{

    position:relative;

    padding-left:28px;

    color:var(--text-soft);

    font-size:.95rem;

    line-height:1.85;

}


/* =========================================================
   SUB LIST BULLET
========================================================= */

.sehati-sublist li::before{

    content:"";

    position:absolute;

    top:10px;

    left:0;

    width:10px;

    height:10px;

    border-radius:50%;

    background:

        linear-gradient(

            135deg,

            var(--primary),

            #4ade80

        );

    box-shadow:

        0 0 14px rgba(22,163,74,.18);

}


/* =========================================================
   SOURCE
========================================================= */

.sehati-source{

    display:flex;

    align-items:flex-start;

    gap:18px;

    margin-top:40px;

    padding:24px;

    border-radius:22px;

    background:

        linear-gradient(

            180deg,

            rgba(22,163,74,.05),

            rgba(22,163,74,.02)

        );

    border:

        1px solid rgba(22,163,74,.10);

}


/* =========================================================
   SOURCE ICON
========================================================= */

.sehati-source i{

    width:52px;

    height:52px;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

    border-radius:16px;

    background:

        linear-gradient(

            135deg,

            var(--primary),

            #22c55e

        );

    color:#ffffff;

    font-size:1.15rem;

    box-shadow:

        0 12px 28px rgba(22,163,74,.20);

}


/* =========================================================
   SOURCE TEXT
========================================================= */

.sehati-source span{

    display:block;

    color:var(--text-soft);

    font-size:.93rem;

    line-height:1.9;

}


/* =========================================================
   EMPHASIS
========================================================= */

.sehati-source strong{

    color:var(--primary);

    font-weight:700;

}


/* =========================================================
   LINK
========================================================= */

.sehati-source a{

    color:var(--primary);

    text-decoration:none;

    transition:color .25s ease;

}

.sehati-source a:hover{

    color:#15803d;

    text-decoration:underline;

}

/* =========================================================
   KRITERIA SEHATI
   PART 4
   RESPONSIVE • ACCESSIBILITY • PRINT
========================================================= */


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width:1200px){

    .sehati-card{

        padding:36px;

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width:992px){

    .section-sehati{

        padding:
            100px
            0
            75px;

    }

    .sehati-header{

        margin-bottom:55px;

    }

    .sehati-header h2{

        font-size:
            clamp(2.2rem,5vw,3.2rem);

    }

    .sehati-card{

        padding:30px;

        border-radius:24px;

    }

    .sehati-list{

        gap:16px;

    }

    .sehati-list>li{

        padding:
            18px
            20px
            18px
            68px;

    }

    .sehati-list>li::before{

        top:18px;

        left:18px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width:768px){

    .section-sehati{

        padding:
            90px
            0
            60px;

    }

    .sehati-header{

        margin-bottom:40px;

    }

    .sehati-header h2{

        font-size:2rem;

        line-height:1.2;

    }

    .sehati-header h2 span{

        display:inline;

    }

    .sehati-header p{

        font-size:.95rem;

        line-height:1.8;

    }

    .sehati-label{

        padding:
            8px
            16px;

        font-size:.72rem;

    }

    .sehati-card{

        padding:22px;

        border-radius:22px;

    }

    .sehati-list{

        gap:14px;

    }

    .sehati-list>li{

        padding:
            16px
            16px
            16px
            58px;

        font-size:.93rem;

        line-height:1.75;

        border-radius:16px;

    }

    .sehati-list>li::before{

        width:32px;

        height:32px;

        top:16px;

        left:14px;

        font-size:.75rem;

        border-radius:10px;

    }

    .sehati-sublist{

        margin-top:16px;

        gap:10px;

    }

    .sehati-sublist li{

        padding-left:22px;

        font-size:.88rem;

    }

    .sehati-sublist li::before{

        width:8px;

        height:8px;

    }

    .sehati-source{

        margin-top:28px;

        padding:20px;

        gap:14px;

    }

    .sehati-source i{

        width:44px;

        height:44px;

        border-radius:14px;

        font-size:1rem;

    }

    .sehati-source span{

        font-size:.86rem;

        line-height:1.8;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width:480px){

    .section-sehati{

        padding:
            80px
            0
            50px;

    }

    .sehati-header h2{

        font-size:1.7rem;

    }

    .sehati-label{

        font-size:.68rem;

    }

    .sehati-card{

        padding:18px;

    }

    .sehati-list>li{

        padding:
            15px
            14px
            15px
            54px;

        font-size:.88rem;

    }

    .sehati-list>li::before{

        width:28px;

        height:28px;

        top:15px;

        left:14px;

        font-size:.72rem;

    }

    .sehati-source{

        flex-direction:column;

        align-items:flex-start;

    }

    .sehati-source i{

        width:40px;

        height:40px;

        font-size:.9rem;

    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion:reduce){

    .sehati-card,

    .sehati-list>li,

    .sehati-source,

    .sehati-source i{

        transition:none !important;

    }

}


/* =========================================================
   PRINT
========================================================= */

@media print{

    .sehati-blur{

        display:none;

    }

    .sehati-card{

        border:1px solid #dcdcdc;

        box-shadow:none;

    }

    .sehati-list>li{

        break-inside:avoid;

        box-shadow:none;

    }

    .sehati-source{

        border:1px solid #dcdcdc;

        background:#ffffff;

    }

}