*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    background:#F8FAFC;
#    color:#0F172A;
    line-height:1.7;
}

.features_container{
    width:92%;
    max-width:1400px;
    margin:auto;
}

section{
    padding:100px 0;
}

.features_section-header{
    text-align:center;
    margin-bottom:70px;
}

.features_section-header features_h2{
    font-size:52px;
    margin-bottom:20px;
}

.features_section-header p{
    color:#64748B;
    font-size:20px;
}

/* HERO */

.features_hero{
    min-height:850px;
    background:
    linear-gradient(rgba(15,23,42,.55),rgba(15,23,42,.75)),
    url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?q=80&w=2000') center/cover;
    display:flex;
    align-items:center;
    margin-top: 100px;
    color:white;
}

.features_hero-overlay{
    height:100%;
    display:flex;
    align-items:center;
    width: 100%;
}


.features_hero-content{
    max-width:850px;
    color:white;
}

.features_hero-badge{
    display:inline-block;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(15px);
    padding:12px 22px;
    border-radius:100px;
    margin-bottom:30px;
}

.features_hero features_h1{
    font-size:76px;
    line-height:1.05;
    margin-bottom:25px;
}

.features_hero p{
    font-size:24px;
    color:#CBD5E1;
    margin-bottom:40px;
}

.features_hero-buttons{
    display:flex;
    gap:20px;
}

.features_btn{
    display:inline-block;
    padding:18px 30px;
    border-radius:16px;
    text-decoration:none;
    font-weight:600;
}

.features_btn-primary{
    background:#2563EB;
    color:white;
}

.features_btn-secondary{
    background:white;
    color:#0F172A;
}

.features_hero-search{
    background:white;
    border-radius:30px;
    padding:18px;
    display:flex;
    gap:15px;
    box-shadow:0 25px 80px rgba(0,0,0,.15);
}

.features_hero-search input{
    flex:1;
    border:none;
    background:#F8FAFC;
    padding:20px;
    border-radius:18px;
    font-size:16px;
}

.features_hero-search button{
    background:#2563EB;
    color:white;
    border:none;
    padding:20px 35px;
    border-radius:18px;
    font-weight:700;
    cursor:pointer;
}

/* TRUST BAR */

.features_trust-bar{
    background:white;
    margin-top:-50px;
    position:relative;
    z-index:10;
    border-radius:30px;
    box-shadow:0 15px 50px rgba(15,23,42,.08);
    padding:25px;
}

.features_trust-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    text-align:center;
    font-weight:600;
}

/* SERVICES */

.features_service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.features_service-card{
    background:white;
    border-radius:30px;
    padding:40px;
    text-align:center;
    text-decoration:none;
    color:#0F172A;
    box-shadow:0 10px 40px rgba(15,23,42,.06);
    transition:.3s;
}

.features_service-card:hover{
    transform:translateY(-6px);
}

.features_service-icon{
    font-size:60px;
    margin-bottom:20px;
}


/* HOW IT WORKS */

.features_steps-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.features_step-card{
    background:white;
    padding:40px;
    border-radius:30px;
    text-align:center;
    box-shadow:0 10px 40px rgba(15,23,42,.06);
}

.features_step-number{
    width:70px;
    height:70px;
    background:#2563EB;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    margin-bottom:25px;
    font-size:28px;
    font-weight:700;
}

/* BUSINESS CARDS */

.features_business-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.features_business-card{
    background:white;
    border-radius:32px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(15,23,42,.08);
}

.features_business-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.features_business-content{
    padding:30px;
}

.features_business-content h3{
    margin-bottom:10px;
}

.features_btn{
    display:inline-block;
    background:#2563EB;
    color:white;
    padding:14px 24px;
    border-radius:14px;
    text-decoration:none;
    margin-top:20px;
}


/* REVIEWS */

.features_reviews{
    background:white;
}

.features_review-card{
    max-width:800px;
    margin:auto;
    text-align:center;
    background:#F8FAFC;
    padding:50px;
    border-radius:30px;
}

.features_stars{
    color:#F59E0B;
    font-size:32px;
    margin-bottom:20px;
}

/* FEATURE SUMMARY */

.b_feature-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}


.feature-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.feature-card{
    background:white;
    padding:40px;
    border-radius:30px;
    text-align:center;
    box-shadow:0 15px 40px rgba(15,23,42,.08);
}

.feature-icon{
    font-size:56px;
    margin-bottom:20px;
}

/* ALTERNATING FEATURES */

.feature-section{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
    margin-bottom:120px;
}

.feature-image{
    background:white;
    border-radius:32px;
    min-height:450px;
    box-shadow:0 15px 40px rgba(15,23,42,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    color:#64748B;
}

.feature-content features_h2{
    font-size:48px;
    margin-bottom:25px;
}

.feature-content p{
    font-size:20px;
    color:#475569;
    margin-bottom:25px;
}

.feature-content ul{
list-style:none;
}

.feature-content li{
margin-bottom:15px;
font-size:18px;
}

.feature-list{
    list-style:none;
}

.feature-list li{
    margin-bottom:15px;
    font-size:18px;
}

/* BENEFITS */

.features_benefits-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.features_benefit-card{
    background:white;
    border-radius:30px;
    padding:40px;
    text-align:center;
    box-shadow:0 15px 40px rgba(15,23,42,.08);
    font-weight: 600;
}

/* TESTIMONIALS */

.features_testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.features_testimonial-card{
    background:white;
    padding:40px;
    border-radius:30px;
    box-shadow:0 15px 40px rgba(15,23,42,.08);
}

.features_stars{
    color:#F59E0B;
    margin-bottom:20px;
}

/* FAQ */

.features_faq-item{
    background:white;
    padding:30px;
    border-radius:24px;
    margin-bottom:20px;
    box-shadow:0 10px 30px rgba(15,23,42,.05);
}

/* CTA */

.features_business-cta{
    background:#0F172A;
    color:white;
}

.features_cta-card{
    text-align:center;
    max-width:900px;
    margin:auto;
}

.features_cta-card features_h2{
    font-size:60px;
    margin-bottom:25px;
}

.features_cta-card p{
    font-size:22px;
    color:#CBD5E1;
    margin-bottom:35px;
}
/* CTA */

.features_final-cta{
    background:#0F172A;
    color:white;
    text-align:center;
}

.features_final-cta features_h2{
    font-size:60px;
    margin-bottom:25px;
}

.features_final-cta p{
    font-size:22px;
    color:#CBD5E1;
    margin-bottom:35px;
}

/* STATS */

.features_stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.features_stat-card{
    background:white;
    border-radius:30px;
    padding:40px;
    text-align:center;
}

.features_stat-card h3{
    font-size:52px;
    color:#2563EB;
}

/* BEFORE AFTER */

.features_before-after{
background:white;
}

.features_compare-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

.features_compare-card{
padding:50px;
border-radius:30px;
}

.features_before{
background:#FEF2F2;
}

.features_after{
background:#ECFDF5;
}

.features_compare-card h3{
font-size:36px;
margin-bottom:25px;
}

/* BENEFITS */

.benefits-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.benefit-card{
background:white;
padding:35px;
border-radius:28px;
box-shadow:0 15px 40px rgba(15,23,42,.08);
text-align:center;
}



/* INDUSTRIES */

.features_industry-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.features_industry-card{
background:white;
padding:30px;
border-radius:24px;
text-align:center;
box-shadow:0 10px 30px rgba(15,23,42,.06);
}




@media(max-width:992px){


.features_hero{
    margin-top: 0px;
}

.features_hero features_h1{
    font-size:48px;
}

.features_hero-search{
    flex-direction:column;
}

.features_steps-grid,
.features_service-grid,
.features_business-grid,
.features_stats-grid,
.b_feature-grid,
.feature-grid,
.features_compare-grid,
.features_industry-grid,
.features_benefits-grid,
.features_trust-grid,
.features_testimonial-grid{
    grid-template-columns:1fr;
}

.feature-section{
    grid-template-columns:1fr;
}

.features_hero-buttons{
    flex-direction:column;
}

}
