/* ==========================================================
   ONEWINSOME FAQ PAGE
   assets/css/faqs.css
   PART 1
========================================================== */


/* ==========================================================
   GLOBAL
========================================================== */

.ow-faq-page{
    background:#f7f8f8;
    color:#021924;
}

.ow-faq-page .container{
    max-width:1320px;
    margin:0 auto;
    padding:0 24px;
}

.ow-faq-page section{
    padding:100px 0;
}

.ow-faq-page h1,
.ow-faq-page h2,
.ow-faq-page h3{
    margin:0;
    font-weight:700;
    line-height:1.15;
    color:#021924;
    letter-spacing:-1px;
}

.ow-faq-page p{
    color:#5f6d75;
    line-height:1.8;
}

.section-heading{
    margin-bottom:60px;
}

.section-subtitle{
    display:inline-block;
    color:#22d66f;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:16px;
}

.section-heading h2{
    font-size:52px;
    max-width:720px;
}


/* ==========================================================
   HERO SECTION
========================================================== */

.ow-faq-hero{
    position:relative;
    overflow:hidden;
    text-align:center;
    padding:160px 0 130px;
    background:linear-gradient(
        135deg,
        #021924 0%,
        #062838 50%,
        #0a3b46 100%
    );
}

.ow-faq-hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:
        radial-gradient(
            circle at top right,
            rgba(34,214,111,.08),
            transparent 45%
        );
}

.ow-faq-hero .container{
    position:relative;
    z-index:2;
}

.ow-faq-hero h1{
    color:#ffffff;
    font-size:72px;
    max-width:900px;
    margin:0 auto 25px;
}

.ow-faq-hero p{
    color:rgba(255,255,255,.82);
    max-width:760px;
    margin:0 auto 40px;
    font-size:19px;
}


/* ==========================================================
   BUTTONS
========================================================== */

.ow-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:190px;
    height:56px;
    padding:0 32px;
    border-radius:999px;
    text-decoration:none;
    font-size:15px;
    font-weight:700;
    transition:all .3s ease;
}

.ow-btn-primary{
    background:#22d66f;
    color:#021924;
    box-shadow:0 15px 40px rgba(34,214,111,.20);
}

.ow-btn-primary:hover{
    background:#1cc460;
    transform:translateY(-4px);
}

.ow-btn-secondary{
    color:#ffffff;
    border:1px solid rgba(255,255,255,.25);
}

.ow-btn-secondary:hover{
    background:rgba(255,255,255,.08);
    transform:translateY(-4px);
}

.ow-faq-hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}


/* ==========================================================
   QUICK ANSWERS
========================================================== */

.ow-faq-quick{
    background:#ffffff;
}

.ow-faq-quick-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.ow-faq-quick-card{
    background:#ffffff;
    border-radius:30px;
    padding:40px 35px;
    border:1px solid rgba(2,25,36,.05);
    box-shadow:0 15px 40px rgba(0,0,0,.05);
    transition:all .35s ease;
}

.ow-faq-quick-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 50px rgba(0,0,0,.10);
}

.ow-faq-icon{
    width:64px;
    height:64px;
    border-radius:18px;
    background:#e9fff1;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:25px;
    transition:.3s ease;
}

.ow-faq-quick-card:hover .ow-faq-icon{
    transform:scale(1.1);
}

.ow-faq-quick-card h3{
    font-size:28px;
    margin-bottom:18px;
}

.ow-faq-quick-card p{
    font-size:15px;
}


/* ==========================================================
   FAQ ACCORDION
========================================================== */

.ow-faq-list{
    background:#f7f8f8;
}

.ow-faq-accordion{
    max-width:900px;
    margin:0 auto;
}

.ow-faq-item{
    background:#ffffff;
    border-radius:24px;
    margin-bottom:20px;
    box-shadow:0 12px 35px rgba(0,0,0,.05);
    overflow:hidden;
}

.ow-faq-item summary{
    list-style:none;
    cursor:pointer;
    padding:30px 35px;
    font-size:22px;
    font-weight:600;
    color:#021924;
    position:relative;
    transition:.3s ease;
}

.ow-faq-item summary::-webkit-details-marker{
    display:none;
}

.ow-faq-item summary::after{
    content:'+';
    position:absolute;
    right:35px;
    top:50%;
    transform:translateY(-50%);
    font-size:32px;
    color:#22d66f;
    font-weight:300;
}

.ow-faq-item[open] summary::after{
    content:'−';
}

.ow-faq-item summary:hover{
    color:#22d66f;
}

.ow-faq-answer{
    padding:0 35px 35px;
}

.ow-faq-answer p{
    margin:0;
    font-size:16px;
}
/* ==========================================================
   FINAL CTA
========================================================== */

.ow-faq-cta{
    background:#f7f8f8;
    padding-bottom:140px;
}

.ow-faq-cta-wrap{
    background:linear-gradient(
        135deg,
        #021924 0%,
        #0a3042 100%
    );
    border-radius:44px;
    padding:100px 80px;
    text-align:center;
    box-shadow:0 35px 80px rgba(2,25,36,.25);
}

.ow-faq-cta-wrap .section-subtitle{
    color:#22d66f;
}

.ow-faq-cta-wrap h2{
    color:#ffffff;
    font-size:64px;
    letter-spacing:-2px;
    margin-bottom:30px;
}

.ow-faq-cta-wrap p{
    color:rgba(255,255,255,.82);
    max-width:800px;
    margin:0 auto 40px;
    font-size:18px;
    line-height:1.8;
}

.ow-faq-cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}


/* ==========================================================
   TABLET RESPONSIVE
========================================================== */

@media (max-width:1024px){

    .ow-faq-page section{
        padding:80px 0;
    }

    .ow-faq-hero{
        padding:140px 0 110px;
    }

    .ow-faq-hero h1{
        font-size:56px;
    }

    .section-heading h2{
        font-size:42px;
    }

    .ow-faq-quick-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .ow-faq-cta-wrap{
        padding:80px 50px;
    }

    .ow-faq-cta-wrap h2{
        font-size:50px;
    }

}


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

@media (max-width:768px){

    .ow-faq-page section{
        padding:70px 0;
    }

    .ow-faq-page .container{
        padding:0 20px;
    }

    .ow-faq-hero{
        padding:120px 0 90px;
    }

    .ow-faq-hero h1{
        font-size:42px;
        line-height:1.1;
    }

    .ow-faq-hero p{
        font-size:17px;
    }

    .section-heading h2{
        font-size:34px;
    }

    .ow-faq-hero-buttons,
    .ow-faq-cta-buttons{
        flex-direction:column;
        align-items:center;
    }

    .ow-btn{
        width:100%;
        max-width:320px;
    }

    .ow-faq-quick-grid{
        grid-template-columns:1fr;
    }

    .ow-faq-quick-card{
        padding:30px;
    }

    .ow-faq-item summary{
        padding:25px 30px;
        font-size:20px;
    }

    .ow-faq-item summary::after{
        right:30px;
    }

    .ow-faq-answer{
        padding:0 30px 30px;
    }

    .ow-faq-cta-wrap{
        padding:60px 30px;
    }

    .ow-faq-cta-wrap h2{
        font-size:40px;
    }

}


/* ==========================================================
   SMALL MOBILE DEVICES
========================================================== */

@media (max-width:480px){

    .ow-faq-hero h1{
        font-size:36px;
    }

    .section-heading h2{
        font-size:30px;
    }

    .ow-faq-quick-card,
    .ow-faq-cta-wrap{
        padding:25px;
    }

    .ow-faq-quick-card h3{
        font-size:24px;
    }

    .ow-faq-item summary{
        font-size:18px;
        padding:22px 25px;
    }

    .ow-faq-answer{
        padding:0 25px 25px;
    }

    .ow-faq-cta-wrap h2{
        font-size:32px;
    }

}


/* ==========================================================
   FINAL PREMIUM PATCH
========================================================== */

.ow-faq-quick-card,
.ow-faq-item,
.ow-faq-cta-wrap{
    will-change:transform;
}

.ow-faq-item:hover,
.ow-faq-quick-card:hover{
    transform:translateY(-8px);
}

.ow-faq-quick-card{
    min-height:280px;
}

.ow-faq-item{
    border:1px solid rgba(2,25,36,.04);
}

.ow-faq-page section{
    overflow:hidden;
}

.ow-faq-hero{
    min-height:620px;
    display:flex;
    align-items:center;
}

.ow-faq-hero .container{
    position:relative;
    z-index:2;
}

/* ==========================================================
   END OF FAQ PAGE CSS
========================================================== */