.hero-section {
    min-height:100svh;
    display:flex;
    align-items: center;
    justify-content: center;
    position:relative;
    background-image: url(/assets/images/hero-img.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    .hero-section__content {
        display:flex;
        flex-direction: column;
        align-items: center;
        gap:24px;
        width:768px;
    }


    .hero-section__title {
        text-align: center;
        margin:0;
    }

    .hero-section__subtitle {
        margin:0;
        text-align: center;
    }
}

/*SERVICES SECTION*/

.services-section__title {
    margin:clamp(36px,8vw,120px) auto;
    text-align: center;
}

.services-section {
    display: flex;
    width:90%;
    max-width: 1000px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: clamp(48px,6vw,88px);
    margin:0 auto 120px auto ;
}

.service-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(16px,6vw,48px);
    flex-wrap:wrap;


    .service-container__description {
        max-width: 500px;
    }

    .service-container__image {
        width:100%;
        max-width:450px;
    }
}

.reversed {
   flex-direction: row-reverse;
}


/* STATS SECTION */

.stats-section {
    padding: 72px 0;
}

.stats-section__container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 140px;
}

.stat__number {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 700;
    color: var(--primary);
}

.stat__label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
    opacity: 0.8;
    text-align: center;
}

/* TESTIMONIALS SECTION */

.testimonials-section {
    padding: 80px 0;
}

.testimonials-section__title {
    text-align: center;
    margin: 0 0 48px 0;
}

.testimonials-section__container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial {
    flex: 1;
    min-width: 260px;
    max-width: 320px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonial__quote {
    font-style: italic;
    line-height: 160%;
    margin: 0;
    opacity: 0.9;
}

.testimonial__author {
    margin: 0;
    font-weight: 600;
    color: var(--primary);
    font-size: 14px;
}

/* PRICING SECTION */

.pricing-section {
    background-color: var(--primary);
    color:black;
    padding:72px 0;

    .pricing-section__wrapper {
        width:90%;
        max-width:1000px;
        margin:0 auto;
        display:flex;
        flex-direction: column;
        gap:24px;
    }

    .pricing-section__title {
        margin:0;
    }

    .pricing-section__description {
        margin:0;
    }

    .pricing-section__button {
        background-color: black;
        color:white;
        transition: .2s;

        &:hover {
            background-color: #202020;
        }
    }
    
    @media screen and (max-width:768px) {


        .pricing-section__title, p.pricing-section__description   {
            text-align: center;
        }

        .pricing-section__button {
            align-self: center;
        }

    }
}