/* ==========================================
   SECTION SYSTEM
========================================== */

/* Main Section */

.section{

    padding:var(--space-12) 0;

    position:relative;

}

.section-sm{

    padding:var(--space-10) 0;

}

.section-lg{

    padding:120px 0;

}
.section-content{

    position:relative;

    z-index:2;

}
/* ==========================================
   SECTION HEADER
========================================== */

.section-header{

    max-width:700px;

    margin:0 auto var(--space-10);

    text-align:center;

}
.section-tag{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:8px 18px;

    margin-bottom:18px;

    border-radius:var(--radius-pill);

    background:#F5F0FF;

    color:var(--primary);

    font-size:14px;

    font-weight:600;

}
.section-title{

    color:var(--text);

    font-size:48px;

    font-weight:700;

    line-height:1.2;

    margin-bottom:18px;

}
.section-subtitle{

    color:var(--secondary);

    font-size:18px;

    font-weight:600;

    margin-bottom:12px;

}
.section-description{

    color:var(--text-light);

    line-height:1.9;

    max-width:620px;

    margin:auto;

}
.section-header-left{

    text-align:left;

    margin-bottom:var(--space-10);

}

.section-header-left .section-description{

    margin:0;

}
.section-actions{

    margin-top:30px;

    display:flex;

    justify-content:center;

    gap:16px;

    flex-wrap:wrap;

}
.section-divider{

    width:80px;

    height:4px;

    border-radius:20px;

    margin:20px auto;

    background:linear-gradient(

        90deg,

        var(--primary),

        var(--secondary),

        var(--accent)

    );

}
.section-shape{

    position:absolute;

    pointer-events:none;

    opacity:.08;

}

.shape-left{

    left:0;

    top:80px;

}

.shape-right{

    right:0;

    bottom:80px;

}

section{
    padding:var(--space-7) 0;
}

.section-header{
    text-align:center;
    width:min(800px,92%);
    margin:auto;
    margin-bottom:var(--space-6);
}

.section-header h2{
    font-size:clamp(24px,4vw,38px);
    margin-bottom:var(--space-2);
}

.section-header p{
    color:var(--text-light);
}
section{
    position:relative;
}

section:nth-child(even){
    background:linear-gradient(180deg,#fff,#faf7ff);
}