/* PAGE LUBES — ABOUT PAGE */

.about-hero {
    padding: 180px 0 120px;
    background:
        linear-gradient(90deg,
            rgba(10, 15, 20, 0.91),
            rgba(10, 15, 20, 0.65)),
        url("../images/shop2.jpg") center / cover no-repeat;
    color: #ffffff;
}

.about-hero .container {
    max-width: 850px;
}

.about-hero h1 {
    margin: 24px 0;
    color: #ffffff;
    font-size: clamp(3rem, 6vw, 5.3rem);
    font-weight: 800;
    line-height: 1.05;
}

.about-hero p {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.15rem;
    line-height: 1.8;
}

.about-story {
    padding: 105px 0;
    background: #ffffff;
}

.about-story h2 {
    margin: 20px 0;
    color: #111827;
    font-size: clamp(2.1rem, 4vw, 3rem);
    font-weight: 750;
}

.about-story p {
    color: #6b7280;
    line-height: 1.85;
}

.about-image {
    width: 100%;
    min-height: 390px;
    border-radius: 22px;
    object-fit: cover;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.15);
}

.about-values {
    padding: 105px 0;
    background: #f8fafc;
}

.value-card {
    height: 100%;
    padding: 34px 28px;
    border: 1px solid #e6e9ee;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.value-card i {
    display: inline-flex;
    width: 64px;
    height: 64px;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.15);
    color: #d69e00;
    font-size: 1.8rem;
}

.value-card h3 {
    color: #111827;
    font-size: 1.28rem;
}

.value-card p {
    margin: 0;
    color: #6b7280;
    line-height: 1.75;
}

.about-cta {
    padding: 95px 0;
    background: #111827;
    color: #ffffff;
    text-align: center;
}

.about-cta h2 {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.about-cta p {
    color: #d1d5db;
    font-size: 1.05rem;
}

@media (max-width: 991px) {
    .about-hero {
        padding: 155px 0 100px;
    }
}

@media (max-width: 576px) {
    .about-hero {
        padding: 145px 0 85px;
        text-align: center;
    }

    .about-story,
    .about-values {
        padding: 75px 0;
    }

    .about-image {
        min-height: 280px;
    }
}