/*.hero-section {*/
/*    position: relative;*/
/*    height: 100vh;*/
/*    display:flex;*/
/*    align-items:center;*/
/*    justify-content:center;*/
/*    text-align:center;*/
/*    overflow:hidden;*/
/*    padding-top:80px;*/
/*}*/

.homepage .hero-section {
    margin-top:-70px;
    padding-top:70px;
}

.hero-section {
    position: relative;
    height: 100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
}

/*.hero-overlay {*/
/*    background: rgba(0,0,0,0.35);*/
/*}*/

/* Background Layers */
.hero-bg {
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    transition:opacity 1.2s ease-in-out;
}

.bg1 { z-index:1; }
.bg2 { z-index:2; opacity:0; }

.hero-overlay {
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.65);
    z-index:3;
}

.hero-content {
    position:relative;
    z-index:4;
    transition:opacity 0.6s ease, transform 0.6s ease;
}

.hero-content h1 {
    font-family:'Montserrat', sans-serif;
    font-weight:800;
    font-size:clamp(38px,5vw,68px);
    letter-spacing:-1px;
    line-height:1.1;
    color: #00000;
    text-shadow: 
        0 2px 8px rgba(0,0,0,0.55),
        0 4px 20px rgba(0,0,0,0.45);
    /*text-shadow:0 4px 12px rgba(0,0,0,0.08);*/
}

.hero-content p {
    font-size:clamp(16px,2vw,20px);
    font-weight:500;
    max-width:650px;
    margin:0 auto;
    color: #00000;
    text-shadow: 0 2px 6px rgba(0,0,0,0.55);
}


/*VALUE SECTION*/
/* SECTION */
.sl-value-section {
    padding: 100px 20px;
    background: #ffffff;
}

.sl-container {
    max-width: 1300px;
    margin: 0 auto;
}

.sl-value-section::before {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #111;
    margin: 0 auto 40px auto;
    border-radius: 10px;
}
/* INTRO */
.sl-intro {
    text-align: center;
    margin-bottom: 80px;
}

.sl-intro h2 {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -1px;
}

.sl-intro p {
    margin-top: 20px;
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* GRID */
.sl-value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* CARD */
.sl-card {
    padding: 60px 50px;
    border-radius: 24px;
    background: linear-gradient(145deg, #ffffff, #fafafa);
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow:
        0 10px 30px rgba(0,0,0,0.04),
        0 40px 80px rgba(0,0,0,0.05);
}

.sl-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 40px 80px rgba(0,0,0,0.06),
        0 80px 140px rgba(0,0,0,0.04);
}

.sl-card {
    opacity: 0;
    transform: translateY(40px);
}

.sl-card.show {
    opacity: 1;
    transform: translateY(0);
    transition: all .8s cubic-bezier(.16,1,.3,1);
}

/* TOP ACCENT */
.sl-card-top {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #111, #555);
    border-radius: 10px;
    margin-bottom: 30px;
}

.sl-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.sl-card p {
    color: #666;
    line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .sl-value-grid {
        grid-template-columns: 1fr;
    }

    .sl-card {
        padding: 40px 30px;
    }
}

/*.sl-icon-wrap { width: 90px; height: 90px; border-radius: 50%; background: #f7f7f7; justify-content: center; margin-bottom: 30px; transition: all .4s ease; }*/
.sl-icon-wrap {
    width: 90px;
    height: 90px;
    border-radius: 30%;
    display: flex;
    align-items:center;
    justify-content: center;
    margin-bottom: 20px;
    background: linear-gradient(145deg, #f5f5f5, #ffffff);
    box-shadow:
        inset 0 2px 6px rgba(255,255,255,0.8),
        0 8px 20px rgba(0,0,0,0.05);
    transition: all .4s ease;
}

.sl-icon-wrap img {
    width: 42px;
    height: auto;
}

.sl-card:hover .sl-icon-wrap {
    background: linear-gradient(145deg, #111, #333);
}

.sl-card:hover .sl-icon-wrap img {
    filter: brightness(0) invert(1);
}