/*==================================================
HOW IT WORKS PAGE
==================================================*/

.steps-page{
    overflow:hidden;
}

/*==================================================
COMMON
==================================================*/

.steps-page .container{
    width:min(1200px,92%);
    margin:auto;
}

.steps-page section{
    padding:90px 0;
}

.steps-page h1,
.steps-page h2,
.steps-page h3{
    color:#18306f;
    margin:0;
    line-height:1.2;
}

.steps-page p{
    color:#666;
    line-height:1.8;
}

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

.steps-hero{
    text-align:center;
    background:#fff;
}

.steps-hero h1{
    font-size:60px;
    margin-bottom:20px;
}

.steps-hero p{
    max-width:760px;
    margin:auto;
}

/*==================================================
STEP OVERVIEW
==================================================*/

.steps-overview{
    padding-top:20px!important;
}

.steps-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.step-card{
    background:#f8f6f1;
    padding:35px;
    border-radius:12px;
    border-bottom:4px solid #18306f;
    transition:.3s;
}

.step-card.active{
    background:#18306f;
    color:#fff;
}

.step-card.active h3,
.step-card.active p,
.step-card.active span{
    color:#fff;
}

.step-card span{
    display:block;
    font-size:46px;
    font-weight:bold;
    color:#18306f;
    margin-bottom:20px;
}

.step-card h3{
    margin-bottom:15px;
    font-size:28px;
}

/*==================================================
PROCESS SECTION
==================================================*/

.process-section{
    background:#fff;
}

.process-section.alt{
    background:#faf7f2;
}

.process-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.process-grid img{
    width:100%;
    display:block;
    border-radius:14px;
}

.step-label{
    display:inline-block;
    margin-bottom:18px;
    color:#b18e49;
    font-size:14px;
    letter-spacing:2px;
    font-weight:700;
}

.process-grid h2{
    font-size:42px;
    margin-bottom:25px;
}

.process-grid a{
    color:#18306f;
    text-decoration:none;
    font-weight:700;
}

.process-grid a:hover{
    color:#b18e49;
}

/*==================================================
INFO BOX
==================================================*/

.info-box{
    margin-top:35px;
    padding:25px;
    background:#f8f6f1;
    border-left:5px solid #18306f;
}

.info-box strong{
    display:block;
    margin-bottom:15px;
    color:#18306f;
}

/*==================================================
FEATURES
==================================================*/

.features-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.features-list span{
    background:#fff;
    padding:25px;
    border-radius:10px;
    text-align:center;
    font-weight:600;
    box-shadow:0 6px 18px rgba(0,0,0,.08);
}

/*==================================================
INCLUDED BOX
==================================================*/

.included-box{
    background:#fff;
    padding:40px;
    border-radius:12px;
    box-shadow:0 8px 24px rgba(0,0,0,.08);
}

.included-box h2{
    margin-bottom:20px;
}

.included-box p{
    margin-bottom:25px;
}

.included-box ul{
    padding-left:20px;
    margin:0;
}

.included-box li{
    margin-bottom:12px;
}

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

@media(max-width:1024px){

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

.process-grid{
    grid-template-columns:1fr;
}

.process-grid img{
    order:-1;
}

}

@media(max-width:768px){

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

.steps-hero h1{
    font-size:42px;
}

.steps-grid{
    grid-template-columns:1fr;
}

.step-card{
    padding:25px;
}

.step-card span{
    font-size:36px;
}

.step-card h3{
    font-size:24px;
}

.process-grid h2{
    font-size:32px;
}

.features-list{
    grid-template-columns:1fr;
}

.included-box{
    padding:30px;
}

}

@media(max-width:480px){

.steps-hero h1{
    font-size:34px;
}

.process-grid h2{
    font-size:28px;
}

.step-card h3{
    font-size:22px;
}

}