/* ==========================================
   SNAP SECURE - ABOUT PAGE
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial,Helvetica,sans-serif;
    background:#0d0d0d;
    color:#fff;
    line-height:1.7;
}

a{
    text-decoration:none;
    color:inherit;
}

img{
    display:block;
    width:100%;
}

.container{
    width:96%;
    max-width:1600px;
    margin:auto;
}

/* ==========================================
   HERO
========================================== */

.about-hero{
    padding:100px 20px 30px;
    text-align:center;
    background:linear-gradient(180deg,#161616,#0d0d0d);
}

.hero-tag{
    display:inline-block;
    padding:8px 18px;
    background:#ff7a00;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:15px;
}

.about-hero h1{
    font-size:52px;
    margin-bottom:12px;
}

.about-hero p{
    max-width:700px;
    margin:auto;
    color:#bdbdbd;
}

/* ==========================================
   ABOUT
========================================== */

.about-section{
    padding:40px 0;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-image img{
    border-radius:20px;
}

.about-content h2{
    font-size:40px;
    margin-bottom:20px;
}

.about-content p{
    color:#bdbdbd;
    margin-bottom:20px;
}

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:30px;
}

.about-features div{
    background:#181818;
    padding:18px;
    border-radius:12px;
    border:1px solid #2a2a2a;
}

.about-features i{
    color:#ff7a00;
    margin-right:8px;
}

/* ==========================================
   MISSION
========================================== */

.mission-section{
    padding:30px 0;
}

.mission-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.mission-card{
    background:#181818;
    border:1px solid #2a2a2a;
    border-radius:20px;
    padding:40px;
    transition:.3s;
}

.mission-card:hover{
    border-color:#ff7a00;
    transform:translateY(-8px);
}

.mission-card i{
    font-size:40px;
    color:#ff7a00;
    margin-bottom:20px;
}

.mission-card h3{
    margin-bottom:15px;
}

.mission-card p{
    color:#bdbdbd;
}

/* ==========================================
   WHY
========================================== */

.why-section{
    padding:40px 0;
}

.why-section h2{
    text-align:center;
    font-size:42px;
    margin-bottom:45px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.why-card{
    background:#181818;
    border:1px solid #2a2a2a;
    border-radius:18px;
    padding:35px;
    text-align:center;
    transition:.3s;
}

.why-card:hover{
    border-color:#ff7a00;
    transform:translateY(-8px);
}

.why-card i{
    font-size:40px;
    color:#ff7a00;
    margin-bottom:20px;
}

.why-card h3{
    margin-bottom:12px;
}

.why-card p{
    color:#bdbdbd;
}

/* ==========================================
   PORTFOLIO
========================================== */

.products-section{
    padding:40px 0;
}

.products-section h2{
    text-align:center;
    font-size:42px;
}

.section-text{
    text-align:center;
    color:#bdbdbd;
    margin:15px auto 45px;
}

.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.portfolio-card{
    background:#181818;
    border:1px solid #2a2a2a;
    border-radius:18px;
    padding:35px;
    text-align:center;
    transition:.3s;
}

.portfolio-card:hover{
    border-color:#ff7a00;
    transform:translateY(-8px);
}

.portfolio-card i{
    font-size:42px;
    color:#ff7a00;
    margin-bottom:20px;
}

.portfolio-card h3{
    margin-bottom:12px;
}

.portfolio-card p{
    color:#bdbdbd;
}

/* ==========================================
   COMMITMENT
========================================== */

.commitment-section{
    padding:45px 20px;
    background:#151515;
    text-align:center;
}

.commitment-section h2{
    font-size:40px;
    margin-bottom:20px;
}

.commitment-section p{
    max-width:850px;
    margin:auto;
    color:#bdbdbd;
}

/* ==========================================
   CONTACT
========================================== */

.support-contact{
    padding:40px 20px;
    text-align:center;
}

.support-contact h2{
    font-size:38px;
    margin-bottom:15px;
}

.support-contact p{
    color:#bdbdbd;
    margin-bottom:40px;
}

.contact-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-width:180px;
    height:52px;
    background:#ff7a00;
    color:#fff;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    background:#ff9433;
    transform:translateY(-3px);
}

/* ==========================================
   TABLET
========================================== */

@media(max-width:1024px){

.about-grid,
.mission-grid{
    grid-template-columns:1fr;
}

.why-grid,
.portfolio-grid{
    grid-template-columns:repeat(2,1fr);
}

}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:768px){

.about-hero{
    padding:80px 20px 20px;
}

.about-hero h1{
    font-size:34px;
}

.about-grid{
    grid-template-columns:1fr;
    gap:40px;
}

.about-content h2{
    font-size:30px;
}

.about-features{
    grid-template-columns:1fr;
}

.why-grid,
.portfolio-grid{
    grid-template-columns:1fr;
    gap:20px;
}

.why-section h2,
.products-section h2,
.commitment-section h2,
.support-contact h2{
    font-size:30px;
}

.mission-card,
.why-card,
.portfolio-card{
    margin:0 12px;
    padding:25px;
}

.contact-buttons{
    flex-direction:column;
}

.btn{
    width:100%;
}

.about-section,
.why-section,
.products-section,
.support-contact{
    padding:30px 0;
}

.commitment-section{
    padding:35px 20px;
}

}

/* ==========================================
   SCROLL ANIMATION
========================================== */

.mission-card,
.why-card,
.portfolio-card,
.about-features div{

    opacity:0;
    transform:translateY(40px);
    transition:.6s ease;

}

.mission-card.show,
.why-card.show,
.portfolio-card.show,
.about-features div.show{

    opacity:1;
    transform:translateY(0);

}