/* ===========================
   COMPONENTS
=========================== */

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:60px;
    padding:0 30px;
    border-radius:8px;
    font-size:17px;
    font-weight:900;
    text-decoration:none;
}

.btn-primary{
    color:white;
    background:linear-gradient(135deg,#0877ff,#0054c8);
    box-shadow:0 18px 34px rgba(0,87,200,.30);
}

.btn-outline{
    color:white;
    border:1px solid rgba(255,255,255,.28);
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(10px);
}

.section-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:14px;
    margin:0 0 26px;
    color:var(--green);
    font-size:15px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-eyebrow::before{
    content:"";
    width:42px;
    height:3px;
    background:var(--green);
    border-radius:10px;
}

.section-header{
    max-width:900px;
    margin:0 auto 70px;
    text-align:center;
}

.section-header .section-eyebrow{
    margin:0 auto 18px;
}

.section-header h2{
    margin:18px 0 24px;
    font-size:clamp(42px,4vw,58px);
    line-height:1.12;
    letter-spacing:-1.4px;
    color:var(--blue-dark);
}

.section-header p:last-child{
    max-width:760px;
    margin:0 auto;
    font-size:20px;
    line-height:1.75;
    color:#53627d;
}
