/* ==========================================
   ABOUT HERO
========================================== */

.about-hero {

    min-height: 480px;

    display: flex;

    align-items: center;

    padding: 70px 20px;

    box-sizing: border-box;

    background:
        linear-gradient(
            rgba(0,0,0,0.55),
            rgba(0,0,0,0.55)
        ),
        url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?w=1800")
        center / cover no-repeat;
}


.about-hero-content {

    width: 100%;

    max-width: 1100px;

    margin: auto;

    color: #ffffff;
}


.about-hero-content span {

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 2px;
}


.about-hero-content h1 {

    margin: 15px 0;

    font-size: 54px;

    line-height: 1.1;

    font-weight: 700;
}


.about-hero-content p {

    max-width: 550px;

    margin: 0;

    font-size: 17px;

    line-height: 1.7;

    color: #eeeeee;
}



/* ==========================================
   ABOUT SECTION
========================================== */

.about-section {

    padding: 80px 20px;

    background: #ffffff;
}


.about-container {

    max-width: 1100px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 65px;

    align-items: center;
}


.about-image img {

    width: 100%;

    height: 500px;

    object-fit: cover;

    border-radius: 12px;

    display: block;
}


.section-label {

    display: block;

    margin-bottom: 12px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #777777;
}


.about-content h2 {

    margin: 0 0 20px;

    color: #222222;

    font-size: 38px;

    line-height: 1.2;
}


.about-content p {

    margin: 0 0 17px;

    color: #777777;

    font-size: 15px;

    line-height: 1.8;
}


.about-btn {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-top: 10px;

    padding: 14px 22px;

    background: #222222;

    color: #ffffff;

    text-decoration: none;

    border-radius: 6px;

    font-size: 14px;

    font-weight: 600;

    transition: 0.25s;
}


.about-btn:hover {

    background: #000000;

    transform: translateY(-1px);
}



/* ==========================================
   FEATURES
========================================== */

.features-section {

    padding: 80px 20px;

    background: #f7f7f7;
}


.section-heading {

    max-width: 1100px;

    margin: 0 auto 45px;

    text-align: center;
}


.section-heading span {

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #777777;
}


.section-heading h2 {

    margin: 12px 0 0;

    color: #222222;

    font-size: 36px;

    line-height: 1.25;
}


.about-features {

    max-width: 1100px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}


.about-feature {

    padding: 30px 22px;

    background: #ffffff;

    border: 1px solid #e8e8e8;

    border-radius: 10px;

    text-align: center;
}


.feature-icon {

    width: 52px;

    height: 52px;

    margin: 0 auto 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #222222;

    color: #ffffff;

    border-radius: 8px;

    font-size: 18px;
}


.about-feature h3 {

    margin: 0 0 10px;

    color: #222222;

    font-size: 17px;
}


.about-feature p {

    margin: 0;

    color: #777777;

    font-size: 13px;

    line-height: 1.7;
}



/* ==========================================
   WHY SECTION
========================================== */

.why-section {

    padding: 80px 20px;

    background: #ffffff;
}


.why-container {

    max-width: 1100px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 65px;

    align-items: center;
}


.why-content h2 {

    margin: 0 0 18px;

    color: #222222;

    font-size: 38px;

    line-height: 1.2;
}


.why-content > p {

    margin: 0 0 25px;

    color: #777777;

    font-size: 15px;

    line-height: 1.8;
}


.why-list {

    display: flex;

    flex-direction: column;

    gap: 15px;
}


.why-item {

    display: flex;

    align-items: center;

    gap: 12px;

    color: #444444;

    font-size: 14px;
}


.why-item i {

    width: 24px;

    height: 24px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #222222;

    color: #ffffff;

    border-radius: 50%;

    font-size: 11px;
}


.why-image img {

    width: 100%;

    height: 470px;

    object-fit: cover;

    border-radius: 12px;

    display: block;
}



/* ==========================================
   CTA
========================================== */

.about-cta {

    padding: 75px 20px;

    background: #222222;

    text-align: center;
}


.about-cta-content {

    max-width: 700px;

    margin: auto;
}


.about-cta h2 {

    margin: 0 0 12px;

    color: #ffffff;

    font-size: 36px;
}


.about-cta p {

    margin: 0 0 25px;

    color: #cccccc;

    font-size: 15px;

    line-height: 1.7;
}


.cta-btn {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 14px 23px;

    background: #ffffff;

    color: #222222;

    text-decoration: none;

    border-radius: 6px;

    font-size: 14px;

    font-weight: 600;

    transition: 0.25s;
}


.cta-btn:hover {

    background: #eeeeee;

    transform: translateY(-1px);
}



/* ==========================================
   MOBILE
========================================== */

@media (max-width: 900px) {

    .about-container,
    .why-container {

        grid-template-columns: 1fr;

        gap: 40px;
    }


    .about-features {

        grid-template-columns: 1fr 1fr;
    }


    .about-hero h1 {

        font-size: 45px;
    }

}


@media (max-width: 600px) {

    .about-hero {

        min-height: 400px;

        padding: 55px 20px;
    }


    .about-hero-content h1 {

        font-size: 36px;
    }


    .about-hero-content p {

        font-size: 14px;
    }


    .about-section,
    .features-section,
    .why-section {

        padding: 55px 15px;
    }


    .about-image img {

        height: 350px;
    }


    .about-content h2,
    .why-content h2 {

        font-size: 30px;
    }


    .section-heading h2 {

        font-size: 30px;
    }


    .about-features {

        grid-template-columns: 1fr;
    }


    .why-image img {

        height: 350px;
    }


    .about-cta {

        padding: 55px 20px;
    }


    .about-cta h2 {

        font-size: 29px;
    }

}