/*======================================
  ABOUT PAGE
======================================*/

.about-page{
    background:#f6f8fc;
}

/*======================================
  HERO
======================================*/

.about-hero{
    padding:90px 20px 70px;
    text-align:center;
}

.about-hero .section-kicker{
    display:block;
    color:#2563eb;
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.about-hero h1{
    font-size:60px;
    line-height:1.1;
    font-weight:800;
    color:#222;
    margin-bottom:20px;
}

.about-hero p{
    max-width:760px;
    margin:0 auto;
    font-size:20px;
    line-height:1.7;
    color:#666;
}

/*======================================
  FEATURES
======================================*/

.about-features{
    padding:0 20px 80px;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.feature-card{
    background:#fff;
    border-radius:18px;
    padding:40px 30px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.3s;
}

.feature-card:hover{
    transform:translateY(-8px);
}

.feature-card .icon{
    font-size:42px;
    margin-bottom:18px;
}

.feature-card h3{
    font-size:24px;
    margin-bottom:15px;
    color:#222;
}

.feature-card p{
    color:#666;
    line-height:1.7;
    font-size:16px;
}

/*======================================
  STORY
======================================*/

.our-story{
    padding:90px 20px;
}

.story-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.story-image img{
    width:100%;
    border-radius:18px;
    display:block;
    box-shadow:0 18px 45px rgba(0,0,0,.15);
}

.story-content .section-kicker{
    display:block;
    color:#2563eb;
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:16px;
}

.story-content h2{
    font-size:46px;
    margin-bottom:25px;
    color:#222;
}

.story-content p{
    font-size:18px;
    line-height:1.9;
    color:#555;
    margin-bottom:20px;
}

/*======================================
  COLLECTIONS
======================================*/

.about-collections{
    padding:90px 20px;
    text-align:center;
}

.about-collections .section-kicker{
    display:block;
    color:#2563eb;
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:16px;
}

.about-collections h2{
    font-size:46px;
    margin-bottom:45px;
}

.collection-tags{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:18px;
}

.collection-tags span{
    background:#fff;
    padding:16px 30px;
    border-radius:50px;
    font-weight:700;
    color:#222;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.collection-tags span:hover{
    background:#2563eb;
    color:#fff;
    transform:translateY(-4px);
}

/*======================================
  PROMISE
======================================*/

.our-promise{
    padding:90px 20px;
    text-align:center;
}

.our-promise .section-kicker{
    display:block;
    color:#2563eb;
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:16px;
}

.our-promise h2{
    font-size:46px;
    margin-bottom:50px;
}

.promise-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.promise-grid div{
    background:#fff;
    padding:45px 20px;
    border-radius:18px;
    font-size:22px;
    font-weight:700;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

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

.about-cta{
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    color:#fff;
    text-align:center;
    padding:90px 20px;
}

.about-cta h2{
    color:#fff;
    font-size:52px;
    margin-bottom:35px;
}

.about-cta .btn-primary{
    display:inline-block;
    background:#fff;
    color:#2563eb;
    padding:18px 50px;
    border-radius:10px;
    font-size:18px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.about-cta .btn-primary:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(0,0,0,.25);
}

/*======================================
  RESPONSIVE
======================================*/

@media(max-width:992px){

    .feature-grid,
    .promise-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .story-grid{
        grid-template-columns:1fr;
    }

    .story-content{
        text-align:center;
    }

}

@media(max-width:768px){

    .about-hero h1{
        font-size:42px;
    }

    .story-content h2,
    .about-collections h2,
    .our-promise h2,
    .about-cta h2{
        font-size:34px;
    }

    .feature-grid,
    .promise-grid{
        grid-template-columns:1fr;
    }

    .collection-tags{
        flex-direction:column;
        align-items:center;
    }

}
