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

.page-hero{

    padding:30px 0 30px;

    background:linear-gradient(
        180deg,
        #ffffff,
        #f8fbff
    );

    text-align:center;
  

}

.page-hero h1{

    font-size:3rem;

    margin-bottom:20px;

}

.page-hero p{

    max-width:760px;

    margin:auto;

    color:var(--text-light);

    font-size:1.15rem;

}

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

.features-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;
      

}

.features-grid .card{

    text-align:center;

    height:100%;

}

.features-grid h3{

    margin-bottom:18px;

    font-size:1.35rem;

}

.features-grid p{

    color:var(--text-light);

}

/* =======================================
   FEATURE HIGHLIGHT
======================================= */

.feature-highlight{

    background:var(--bg-light);

}

.highlight-box{

    max-width:900px;

    margin:auto;

    text-align:center;

    background:#ffffff;

    padding:70px 50px;

    border-radius:20px;

    border:1px solid var(--border);

    box-shadow:var(--shadow);

}

.highlight-box h2{

    font-size:2.2rem;

    margin-bottom:25px;

}

.highlight-box p{

    max-width:700px;

    margin:0 auto 40px;

    color:var(--text-light);

    font-size:1.1rem;

}

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

@media (max-width:992px){

    .features-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media (max-width:768px){

    .page-hero{

        padding:80px 0 60px;

    }

    .page-hero h1{

        font-size:2.4rem;

    }

    .features-grid{

        grid-template-columns:1fr;

    }

    .highlight-box{

        padding:50px 30px;

    }

}

@media (max-width:576px){

    .page-hero h1{

        font-size:2rem;

    }

    .highlight-box h2{

        font-size:1.8rem;

    }

}