.about {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 20px 100px;
    font-family: 'Jost', sans-serif;
    text-align: center;
}

/* HERO TOP */
.about-hero-top {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 0;
    margin-bottom: 40px;
    padding: 0;
    overflow: hidden;
}

.about-hero-top img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

/* TITLE */
.about-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 12px;
}

.about-intro {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

/* HERO */
.about-hero img {
    width: 100%;
    border-radius: 18px;
    margin-bottom: 30px;
}

/* DESC */
.about-desc {
    font-size: 15px;
    color: #666;
    max-width: 100%;
    margin: 0 auto 30px;
}

/* VALUES SECTION */
.values-section {
    margin-top: 100px;
    margin-bottom: 100px;
}

/* SUBTITLE */
.about-subtitle {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 50px;
    color: #333;
}

/* VALUES */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 100px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.value-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
    object-fit: contain;
}

.value-item p {
    font-size: 15px;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

/* =========================
   FOUNDER – NEW (FIX)
========================= */

.founder-wrap {
    max-width: 1200px;
    margin: 0 auto 90px;
    padding: 0 20px;

    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: start;
}

.founder-photo {
    position: relative;
}

.founder-photo img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}

.founder-desc {
    text-align: left;
    padding-top: 10px;
}

.founder-desc h3 {
    font-size: 28px; 
    font-weight: 600;
    margin-bottom: 24px;
    color: #222;
}

.founder-desc p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0;
}

.founder-desc p b {
    font-weight: 600;
    color: #333;
}

/* SOCIAL */
.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.social-grid img {
    width: 100%;
    border-radius: 12px;
}

/* SOCIAL CAROUSEL */
.social-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.social-carousel {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.social-carousel img {
    width: 200px;
    height: 232px;
    object-fit: cover;
    flex-shrink: 0;
}

/* panah */
.social-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.social-btn img {
    width: 28px;
    height: 28px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .founder-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .founder-photo {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .founder-photo img {
        border-radius: 18px;
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .value-item img {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .value-item p {
        font-size: 14px;
    }

    .founder-wrap {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .founder-photo img {
        max-width: 100%;
        border-radius: 18px;
    }

    .founder-desc {
        text-align: left;
    }
    
    .founder-desc h3 {
        font-size: 24px;
    }
    
    .founder-desc p {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
