/* =====================================================
   KENALI DIA
   STYLE.CSS
===================================================== */



/* =====================================================
   01. ROOT
===================================================== */

:root{

    --primary:#C56A73;
    --primary-dark:#B95D67;
    --primary-light:#FCEFF1;

    --bg:#FFFFFF;
    --bg-soft:#FFF8F9;

    --text:#2F2F2F;
    --text-soft:#777777;

    --border:#F3E8EA;

    --shadow:
    0 8px 24px rgba(0,0,0,.05);

    --radius:24px;

}



/* =====================================================
   02. RESET
===================================================== */

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;

    background:var(--bg);

    color:var(--text);

    line-height:1.7;

    -webkit-font-smoothing:antialiased;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

button{

    font-family:inherit;

    cursor:pointer;

}

ul{

    list-style:none;

}



/* =====================================================
   03. CONTAINER
===================================================== */

.container{

    width:100%;

    max-width:760px;

    margin:auto;

    padding:0 20px;

}



/* =====================================================
   04. SECTION
===================================================== */

section{

    padding:72px 0;

}

section:nth-child(even){

    background:var(--bg-soft);

}



/* =====================================================
   05. TYPOGRAPHY
===================================================== */

h1{

    font-size:48px;

    line-height:1.15;

    font-weight:700;

    margin-bottom:20px;

    text-align:center;

}

h2{

    font-size:34px;

    line-height:1.25;

    font-weight:700;

    text-align:center;

    margin-bottom:14px;

}

h3{

    font-size:22px;

    font-weight:600;

}

p{

    color:var(--text-soft);

}

.section-intro{

    max-width:560px;

    margin:0 auto;

    text-align:center;

    font-size:17px;

    line-height:1.8;

}



/* =====================================================
   06. LABEL
===================================================== */

.hero-label{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:10px 18px;

    background:var(--primary-light);

    color:var(--primary);

    border-radius:999px;

    font-size:14px;

    font-weight:600;

    margin-bottom:28px;

}

#hero{

    text-align:center;

}



/* =====================================================
   07. BUTTON
===================================================== */

.btn-primary{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    height:58px;

    padding:0 34px;

    margin-top:34px;

    border-radius:999px;

    background:var(--primary);

    color:#FFFFFF;

    font-size:16px;

    font-weight:600;

    transition:.25s ease;

}

.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-2px);

}



/* =====================================================
   08. CHECK LIST
===================================================== */

.check-list{

    display:flex;

    flex-direction:column;

    gap:12px;

    margin-top:32px;

}

.check-item{

    background:#FFFFFF;

    border:1px solid var(--border);

    border-radius:20px;

    padding:16px 18px;

    box-shadow:var(--shadow);

    transition:.25s ease;

}

.check-item:hover{

    transform:translateY(-2px);

}



/* =====================================================
   09. RESPONSIVE
===================================================== */

@media(max-width:768px){

    section{

        padding:56px 0;

    }

    .container{

        padding:0 18px;

    }

    h1{

        font-size:36px;

    }

    h2{

        font-size:28px;

    }

    h3{

        font-size:20px;

    }

    .section-intro{

        font-size:16px;

    }

    .btn-primary{

        width:100%;

    }

}

/* =====================================================
   10. HERO
===================================================== */

#hero{

    position:relative;

    overflow:hidden;

    padding-top:84px;

}

#hero::before{

    content:"";

    position:absolute;

    top:-180px;

    left:50%;

    transform:translateX(-50%);

    width:500px;

    height:500px;

    border-radius:50%;

    background:radial-gradient(

        rgba(197,106,115,.10),

        transparent 70%

    );

    pointer-events:none;

}

.hero-description{

    max-width:560px;

    margin:0 auto;

    font-size:18px;

    line-height:1.8;

}

.hero-description + .hero-description{

    margin-top:14px;

}



/* =====================================================
   11. PAIN
===================================================== */

/* =====================================================
   11. PAIN
===================================================== */

#pain{

    background:var(--bg-soft);

    text-align:center;

}

#pain h2{

    max-width:560px;

    margin:0 auto;

}

#pain .section-intro{

    margin:18px auto 40px;

    max-width:520px;

}

.pain-list{

    list-style:none;

    padding:0;

    margin:0 auto;

    max-width:720px;

    display:flex;

    flex-direction:column;

    gap:22px;

}

.pain-list li{

    display:flex;

    align-items:flex-start;

    gap:16px;

    text-align:left;

    font-size:22px;

    font-weight:500;

    line-height:1.6;

    color:var(--text);

}

.pain-list li::before{

    content:"✓";

    flex-shrink:0;

    color:var(--primary);

    font-size:24px;

    font-weight:700;

    line-height:1.2;

}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width:768px){

    #pain .section-intro{

        margin-bottom:32px;

    }

    .pain-list{

        gap:18px;

    }

    .pain-list li{

        font-size:18px;

        gap:14px;

        line-height:1.5;

    }

    .pain-list li::before{

        font-size:22px;

    }

}



/* =====================================================
   12. BELIEF
===================================================== */

#belief{

    text-align:center;

}

#belief .container{

    max-width:650px;

}

#belief h2{

    margin-bottom:16px;

}

#belief .section-intro{

    font-size:18px;

    color:var(--text);

    font-weight:500;

    max-width:520px;

}



/* =====================================================
   13. SECTION TITLE
===================================================== */

section h2{

    max-width:620px;

    margin-left:auto;

    margin-right:auto;

}



/* =====================================================
   14. SMALL ANIMATION
===================================================== */

.check-item{

    transition:

        transform .25s ease,

        box-shadow .25s ease;

}

.check-item:hover{

    transform:translateY(-3px);

    box-shadow:

    0 12px 28px rgba(0,0,0,.07);

}



/* =====================================================
   15. MOBILE
===================================================== */

@media(max-width:768px){

    #hero{

        padding-top:56px;

    }

    .hero-description{

        font-size:17px;

    }

    #belief .section-intro{

        font-size:17px;

    }

}

/* =====================================================
   16. BENEFIT
===================================================== */

#benefit{

    text-align:center;

}

#benefit .check-list{

    margin-top:34px;

}



/* =====================================================
   17. TARGET
===================================================== */

#target{

    text-align:center;

}

#target .check-item{

    display:flex;

    align-items:center;

    font-weight:500;

}



/* =====================================================
   18. HOW
===================================================== */

#how{

    text-align:center;

}

#how .check-item{

    display:flex;

    align-items:center;

    justify-content:flex-start;

    font-weight:600;

}



/* =====================================================
   19. WHY
===================================================== */

#why{

    text-align:center;

}

#why .check-list{

    margin-top:34px;

}



/* =====================================================
   20. COMMON CARD
===================================================== */

.check-item{

    display:flex;

    align-items:center;

    gap:12px;

    min-height:60px;

    background:#FFFFFF;

    border:1px solid var(--border);

    border-radius:20px;

    padding:16px 20px;

    color:var(--text);

    font-size:16px;

    line-height:1.6;

}



/* =====================================================
   21. HOVER
===================================================== */

.check-item:hover{

    transform:translateY(-3px);

    box-shadow:

    0 10px 24px rgba(197,106,115,.08);

}



/* =====================================================
   22. RESPONSIVE
===================================================== */

@media(max-width:768px){

    .check-item{

        min-height:auto;

        padding:16px 18px;

        font-size:15px;

        border-radius:18px;

    }

}

/* =====================================================
   23. TESTIMONIAL
===================================================== */

#testimonial{

    text-align:center;

}

#testimonial .container{

    max-width:900px;

}

#testimonial .section-intro{

    margin-bottom:40px;

}



/* =====================================================
   24. FAQ
===================================================== */

#faq{

    text-align:center;

}

.faq-list{

    margin-top:40px;

    display:flex;

    flex-direction:column;

    gap:16px;

}

.faq-item{

    background:#FFFFFF;

    border:1px solid var(--border);

    border-radius:20px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:.3s ease;

}

.faq-question{

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px 24px;

    border:none;

    background:#FFFFFF;

    color:var(--text);

    font-size:17px;

    font-weight:600;

    text-align:left;

    cursor:pointer;

}

.faq-question::after{

    content:"+";

    font-size:30px;

    font-weight:300;

    color:var(--primary);

    flex-shrink:0;

    transition:.25s ease;

}

.faq-item.active .faq-question::after{

    content:"−";

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    opacity:0;

    padding:0 24px;

    color:var(--text-soft);

    line-height:1.8;

    text-align:left;

    transition:

        max-height .35s ease,

        opacity .25s ease,

        padding .35s ease;

}

.faq-answer p{

    margin:0;

}

.faq-item.active .faq-answer{

    max-height:500px;

    opacity:1;

    padding:10px 24px 22px;

}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width:768px){

    .faq-question{

        padding:18px 20px;

        font-size:16px;

    }

    .faq-question::after{

        font-size:28px;

    }

    .faq-answer{

        padding:0 20px;

    }

    .faq-item.active .faq-answer{

        padding:10px 20px 18px;

    }

}



/* =====================================================
   25. CLOSING
===================================================== */

#closing{

    text-align:center;

}

.closing-price{

    margin:36px 0;

}

.price-before{

    display:block;

    font-size:18px;

    color:#B5B5B5;

    text-decoration:line-through;

    margin-bottom:8px;

}

.closing-price h3{

    font-size:42px;

    color:var(--primary);

    margin-bottom:12px;

}

.closing-note{

    margin-top:18px;

    font-size:15px;

}



/* =====================================================
   26. MOBILE
===================================================== */

@media(max-width:768px){

    .faq-question{

        padding:18px 20px;

        font-size:15px;

    }

    .faq-answer{

        padding:0 20px 18px;

        font-size:15px;

    }

    .closing-price h3{

        font-size:36px;

    }

}

/* =====================================================
   27. FOOTER
===================================================== */

footer{

    padding:40px 0;

    background:var(--bg-soft);

    border-top:1px solid var(--border);

    text-align:center;

}

footer p{

    font-size:14px;

    color:var(--text-soft);

    line-height:1.8;

}

footer a{

    color:var(--primary);

    font-weight:600;

}



/* =====================================================
   28. STICKY CTA
===================================================== */

#stickyCTA{

    display:none;

    position:fixed;

    left:16px;

    right:16px;

    bottom:16px;

    z-index:9999;

}

.sticky-button{

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    gap:4px;

    height:64px;

    background:var(--primary);

    color:#FFFFFF;

    border-radius:999px;

    box-shadow:0 10px 30px rgba(197,106,115,.25);

}

.sticky-title{

    font-size:16px;

    font-weight:700;

    line-height:1;

}

.sticky-price{

    font-size:12px;

    opacity:.9;

}



/* =====================================================
   29. COMMON
===================================================== */

strong{

    color:var(--primary);

}

.text-center{

    text-align:center;

}

.mt-20{

    margin-top:20px;

}

.mt-30{

    margin-top:30px;

}

.mt-40{

    margin-top:40px;

}



/* =====================================================
   30. RESPONSIVE
===================================================== */

@media(max-width:768px){

    footer{

        padding:30px 0 100px;

    }

    .sticky-button{

        height:60px;

    }

    .sticky-title{

        font-size:15px;

    }

    .sticky-price{

        font-size:11px;

    }

}

/* =====================================================
   26. FOOTER
===================================================== */

#footer{

    padding:50px 0 35px;

    background:#FFF7F8;

    text-align:center;

    border-top:1px solid var(--border);

}

#footer h3{

    color:var(--primary);

    font-size:28px;

    margin-bottom:12px;

}

.footer-desc{

    color:var(--text-soft);

    margin-bottom:24px;

}

.footer-divider{

    width:80px;

    height:1px;

    background:var(--border);

    margin:0 auto 24px;

}

.footer-copy{

    font-size:14px;

    color:#999;

}

@media(max-width:768px){

    #footer{

        padding:40px 0 28px;

    }

}