/*=========================================
 HERO
=========================================*/

.healing-hero{

    position:relative;

    min-height:auto;

    background:
        linear-gradient(
            135deg,
            #07101f 0%,
            #10243c 55%,
            #17304f 100%
        );

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    padding:55px 20px 65px;

    overflow:hidden;
}

.healing-hero::before{

    content:none;

}

.healing-hero-visual{

    width:min(900px,100%);

    border-radius:26px;

    overflow:hidden;

    background:#081426;

    border:1px solid rgba(200,169,107,.35);

    box-shadow:
        0 25px 70px rgba(0,0,0,.35);

}

.healing-hero-visual img{

    display:block;

    width:100%;

    height:auto;

}

.hero-overlay{

    margin-top:25px;

    padding:18px 24px;

    border-radius:999px;

    background:

        linear-gradient(

            135deg,

            rgba(7,16,31,.72),

            rgba(23,48,79,.72)

        );

    border:1px solid rgba(255,255,255,.15);

    backdrop-filter:blur(12px);

    box-shadow:

        0 16px 40px rgba(0,0,0,.25);

}

.hero-buttons{

    display:flex;

    gap:22px;

    justify-content:center;

    flex-wrap:wrap;

}

.hero-buttons .btn-primary{

    min-width:260px;

}

.hero-buttons .btn-outline{

    min-width:240px;

    border:2px solid white;

    color:white;

}

.hero-buttons .btn-outline:hover{

    background:white;

    color:#17304f;

}

.healing-section{

    padding:100px 20px;
}

.healing-section h2{

    text-align:center;

    font-size:42px;

    color:#17304f;

    margin-bottom:20px;
}

.section-intro{

    text-align:center;

    max-width:800px;

    margin:0 auto 60px;
}

.healing-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:30px;
}

.healing-card{

    background:white;

    padding:40px;

    border-radius:28px;

    text-align:center;

    border-top:5px solid #c8a96b;

    box-shadow:
    0 15px 35px rgba(0,0,0,.08);

    transition:.3s;
}

.healing-card:hover{

    transform:translateY(-10px);
}

.card-icon{

    width:80px;
    height:80px;

    margin:auto auto 25px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#c8a96b;

    font-size:34px;
}

.healing-card h3{

    color:#17304f;

    margin-bottom:15px;
}

.benefit-section{

    background:#f8f4ee;

    padding:100px 20px;
}

.benefit-section h2{

    text-align:center;

    margin-bottom:50px;

    color:#17304f;
}

.benefit-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:25px;
}

.benefit-item{

    background:white;

    padding:25px;

    border-radius:20px;

    text-align:center;

    font-weight:600;

    box-shadow:
    0 10px 25px rgba(0,0,0,.08);
}

.healing-cta{

    background:
    linear-gradient(
        135deg,
        #17304f,
        #244a76
    );

    color:white;

    text-align:center;

    padding:120px 20px;
}

.healing-cta h2{

    font-size:46px;

    margin-bottom:20px;
}

.healing-cta p{

    max-width:700px;

    margin:auto auto 40px;

    line-height:1.8;
}
footer,
.site-footer{
    margin-top:0 !important;
}

main,
.site-content,
.content-area{
    margin-bottom:0 !important;
    padding-bottom:0 !important;
}

@media(max-width:768px){

    .healing-hero{

        padding:35px 15px 45px;

    }

    .healing-hero-visual{

        border-radius:18px;

    }

    .hero-overlay{

        width:100%;

        border-radius:18px;

        padding:15px;

    }

    .hero-buttons{

        flex-direction:column;

        align-items:center;

    }

    .hero-buttons a{

        width:100%;

        max-width:320px;

    }

}