/*=========================================
        COMMON
=========================================*/

.section-subtitle {
    display: inline-block;
    color: #3477db;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    display: inline-block;
    color: #3477db;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-title h2 {
    font-size: 35px;
    line-height: 1.3;
    color: #0b1d33;
    font-weight: 700;
}

.theme-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 34px;
    background: #3477db;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    transition: .35s;
}

.theme-btn:hover {
    background: #0b1d33;
}



/*=========================================
        INTRO
=========================================*/

.strata-intro {
    padding: 60px 0;
}

.strata-intro-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;

}

.strata-intro-image img {
    width: 100%;
    border-radius: 18px;
    display: block;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
}

.strata-intro-content h2 {
    font-size: 35px;
    color: #0b1d33;
    margin-bottom: 20px;
    line-height: 1.2;
}

.strata-intro-content p {
    color: #666;
    margin-bottom: 18px;
    line-height: 1.4;
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 35px 0;
}

.feature-item {
    background: #f7f9fc;
    border-radius: 10px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    transition: .35s;
}

.feature-item:hover {
    background: #3477db;
    color: #fff;
    transform: translateY(-5px);
}

.feature-item i {
    color: #3477db;
    font-size: 20px;
}

.feature-item:hover i {
    color: #fff;
}



/*=========================================
        WHY STRATA
=========================================*/

.why-strata {
    padding: 60px 0;
    background: #f8fafc;
}

.why-strata-wrapper {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 70px;
    align-items: center;
}

.why-strata-content h2 {
    font-size: 35px;
    margin: 18px 0;
    color: #0b1d33;
}

.why-strata-content p {
    color: #666;
    line-height: 1.4;
    margin-bottom: 18px;
}

.why-strata-content ul {
    margin-top: 30px;
}

.why-strata-content ul li {
    margin-bottom: 8px;
    display: flex;
    gap: 6px;
    align-items: center;
    font-weight: 500;
}

.why-strata-content ul li i {
    color: #3477db;
}

.why-strata-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.stat-card {
    background: #fff;
    padding: 40px 25px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
    transition: .35s;
}

.stat-card:hover {
    transform: translateY(-8px);
}

.stat-card h3 {
    font-size: 42px;
    color: #3477db;
    margin-bottom: 12px;
}

.stat-card p {
    color: #666;
}






/*=========================================
        SERVICE INCLUDES
=========================================*/

.service-includes {
    padding: 60px 0;
    background: #f8fafc;
}

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

.include-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 18px;
    transition: .35s;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
}

.include-card:hover {
    transform: translateY(-10px);
}

.include-card i {
    width: 75px;
    height: 75px;
    line-height: 75px;
    text-align: center;
    border-radius: 50%;
    background: #3477db;
    color: #fff;
    font-size: 28px;
    margin-bottom: 25px;
}

.include-card h3 {
    margin-bottom: 15px;
    color: #0b1d33;
}

.include-card p {
    color: #666;
    line-height: 1.8;
}



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

@media(max-width:991px) {

    .strata-intro-wrapper,
    .why-strata-wrapper {
        grid-template-columns: 1fr;
    }



    .includes-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .strata-intro-content h2,
    .why-strata-content h2,
    .section-title h2 {
        font-size: 32px;
    }

}


@media(max-width:767px) {

    .strata-intro,
    .why-strata,

    .service-includes {
        padding: 40px 0;
    }


    .includes-wrapper,
    .intro-features,
    .why-strata-stats {
        grid-template-columns: 1fr;
    }

    .strata-intro-wrapper {
        gap: 40px;
    }

    .strata-intro-content h2,
    .why-strata-content h2,
    .section-title h2 {
        font-size: 26px;
    }

    .strata-intro-content p {
        font-size: 16px;
    }

}


/*=========================================
        BENEFITS
=========================================*/

.service-benefits {
    padding: 60px 0;
}

.benefits-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;

}

.benefits-image img {
    width: 100%;
    display: block;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
}

.benefits-content h2 {
    font-size: 35px;
    color: #0b1d33;
    line-height: 1.3;
    margin: 18px 0 20px;
}

.benefits-content p {
    color: #666;
    line-height: 1.4;
    margin-bottom: 30px;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.benefit-item {
    background: #f8fafc;
    padding: 18px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    transition: .35s;
}

.benefit-item:hover {
    background: #3477db;
    color: #fff;
    transform: translateY(-5px);
}

.benefit-item i {
    color: #3477db;
    font-size: 18px;
}

.benefit-item:hover i {
    color: #fff;
}



/*=========================================
        FAQ
=========================================*/

.service-faq {
    padding: 60px 0;
    background: #f8fafc;
}

.faq-wrapper {
    max-width: 900px;
    margin: auto;
}

.faq-item {
    background: #fff;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .06);
}

.faq-question {
    width: 100%;
    border: none;
    background: none;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #0b1d33;
}

.faq-question i {
    transition: .35s;
    color: #3477db;
}

.faq-answer {
    display: none;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}



/*=========================================
        CTA
=========================================*/

.service-cta {
    padding: 60px 0;
}

.cta-box {
    background: linear-gradient(135deg, #3477db, #245bb0);
    border-radius: 25px;
    padding: 80px;
    text-align: center;
    color: #fff;
}

.cta-box span {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 15px;
    margin-bottom: 15px;
}

.cta-box h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.cta-box p {
    max-width: 750px;
    margin: 0 auto 40px;
    line-height: 1.6;
    opacity: .95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .theme-btn {
    background: #fff;
    color: #3477db;
}

.cta-buttons .theme-btn:hover {
    background: #0b1d33;
    color: #fff;
}

.outline-btn {
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, .6);
    color: #fff !important;
}

.outline-btn:hover {
    background: #fff !important;
    color: #3477db !important;
}



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

@media(max-width:991px) {

    .benefits-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .benefits-content h2,
    .cta-box h2 {
        font-size: 34px;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 60px 40px;
    }

}

@media(max-width:767px) {

    .service-benefits,
    .service-faq,
    .service-cta {
        padding: 40px 0;
    }

    .benefits-content h2,
    .cta-box h2 {
        font-size: 28px;
    }

    .faq-question {
        font-size: 16px;
        padding: 20px;
    }

    .faq-answer {
        padding: 0 20px 20px;
    }

    .cta-box {
        padding: 45px 25px;
    }

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

    .cta-buttons .theme-btn {
        width: 100%;
    }

}