.about{

    padding:100px 0;

    background:#111;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.about-image img{

    width:100%;

    border-radius:16px;

    display:block;

}

.about-content h2{

    font-size:42px;

    margin:20px 0;

}

.about-content p{

    color:#bbb;

    margin-bottom:20px;

    line-height:1.8;

}

.about-list{

    list-style:none;

    padding:0;

    margin:30px 0;

}

.about-list li{

    margin-bottom:15px;

    color:#fff;

}

@media(max-width:992px){

.about-grid{

grid-template-columns:1fr;

}

}



/* =========================================
   ABOUT PAGE
   ZAREEI STUDIO
========================================= */

.about-page {
    padding: 80px 0 110px;
    background: var(--background);
}


/* =========================================
   PAGE HEADER
========================================= */

.about-page-header {
    max-width: 850px;
    margin: 0 auto 75px;
    text-align: center;
}

.about-page-header .section-subtitle {
    display: block;
    margin-bottom: 15px;
}

.about-page-header h1 {
    margin: 0 0 22px;
    font-size: clamp(40px, 6vw, 68px);
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: var(--primary);
}

.about-page-header p {
    max-width: 720px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}


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

.about-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 90px;
}

.about-page-image {
    overflow: hidden;
    border-radius: 18px;
    background: #eeeeee;
}

.about-page-image img {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.about-page-content .section-subtitle {
    display: block;
    margin-bottom: 15px;
}

.about-page-content h2 {
    margin: 0 0 22px;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    color: var(--primary);
}

.about-page-content p {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.85;
    color: #666;
}


/* =========================================
   VALUES
========================================= */

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 90px;
}

.about-value {
    padding: 35px 30px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.about-value:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
}

.about-value-number {
    display: block;
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--secondary);
}

.about-value h3 {
    margin: 0 0 14px;
    font-size: 25px;
    line-height: 1.2;
    color: var(--primary);
}

.about-value p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}


/* =========================================
   APPROACH
========================================= */

.about-approach {
    max-width: 950px;
    margin: 0 auto 90px;
    padding: 65px 60px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .05);
}

.about-approach-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.about-approach-content .section-subtitle {
    display: block;
    margin-bottom: 14px;
}

.about-approach-content h2 {
    margin: 0 0 20px;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.1;
    color: var(--primary);
}

.about-approach-content p {
    margin: 0 auto 18px;
    font-size: 17px;
    line-height: 1.85;
    color: #666;
}


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

.about-cta {
    max-width: 850px;
    margin: 0 auto;
    padding: 65px 40px;
    text-align: center;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .05);
}

.about-cta .section-subtitle {
    display: block;
    margin-bottom: 14px;
}

.about-cta h2 {
    margin: 0 0 18px;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.1;
    color: var(--primary);
}

.about-cta p {
    max-width: 650px;
    margin: 0 auto 30px;
    font-size: 17px;
    line-height: 1.8;
    color: #666;
}

.about-cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.about-cta-actions .btn {
    min-width: 180px;
    min-height: 54px;
    padding: 14px 25px;
    text-decoration: none;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .about-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-page-image img {
        height: 450px;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .about-page {
        padding: 45px 0 60px;
    }

    .about-page-header {
        margin-bottom: 45px;
    }

    .about-page-header h1 {
        font-size: 40px;
        letter-spacing: -.8px;
    }

    .about-page-header p {
        font-size: 16px;
        line-height: 1.7;
    }

    .about-page-grid {
        margin-bottom: 60px;
    }

    .about-page-image {
        border-radius: 14px;
    }

    .about-page-image img {
        height: 300px;
    }

    .about-page-content h2 {
        font-size: 34px;
    }

    .about-values {
        gap: 18px;
        margin-bottom: 60px;
    }

    .about-value {
        padding: 28px 22px;
        border-radius: 14px;
    }

    .about-approach {
        margin-bottom: 60px;
        padding: 45px 22px;
        border-radius: 14px;
    }

    .about-approach-content h2 {
        font-size: 34px;
    }

    .about-approach-content p {
        font-size: 16px;
    }

    .about-cta {
        padding: 45px 22px;
        border-radius: 14px;
    }

    .about-cta h2 {
        font-size: 34px;
    }

    .about-cta p {
        font-size: 16px;
    }

    .about-cta-actions {
        flex-direction: column;
    }

    .about-cta-actions .btn {
        width: 100%;
    }

}
