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

.products-hero{
    position: relative;

    min-height: 90vh;

    display: flex;
    align-items: center;

    background:  url("/assets/images/about-hero.jpg")
    center/cover no-repeat;

    overflow: hidden;
}

.products-hero .hero-overlay{
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(4,21,46,.90) 0%,
        rgba(7,32,74,.82) 50%,
        rgba(7,32,74,.60) 100%
    );
}

.products-hero .container{
    position: relative;
    z-index: 2;

    width: min(1200px,92%);
    margin: auto;
}

/*=========================================
CONTENT
=========================================*/

.products-hero-content{
    max-width: 720px;
}

.products-hero-content h1{
    margin: 1rem 0 1.5rem;

    color: #fff;

    font-size: clamp(3rem,6vw,5rem);
    line-height: 1.1;
}

.products-hero-content p{
    margin-bottom: 2.5rem;

    color: rgba(255,255,255,.86);

    font-size: 1.1rem;
    line-height: 1.9;
}

/*=========================================
BUTTONS
=========================================*/

.products-hero .hero-buttons{
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;

    margin-bottom: 3rem;
}

.products-hero .btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .7rem;

    padding: 1rem 2.2rem;

    border-radius: 999px;

    text-decoration: none;
    font-weight: 600;

    transition: .35s;
}

.products-hero .btn-primary{
    background: #D4AF37;
    color: #07204A;
}

.products-hero .btn-primary:hover{
    background: #E7C654;

    transform: translateY(-4px);
}

.products-hero .btn-secondary{
    color: #fff;

    border: 2px solid rgba(255,255,255,.20);

    background: rgba(255,255,255,.08);

    backdrop-filter: blur(12px);
}

.products-hero .btn-secondary:hover{
    background: rgba(255,255,255,.15);

    transform: translateY(-4px);
}

.products-hero .btn i{
    transition: transform .3s;
}

.products-hero .btn:hover i{
    transform: translateX(5px);
}

/*=========================================
HIGHLIGHTS
=========================================*/

.hero-highlights{
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-highlights .highlight-item{
    display: flex;
    align-items: center;
    gap: .8rem;

    padding: 1rem 1.3rem;

    background: rgba(255,255,255,.08);

    border: 1px solid rgba(255,255,255,.15);
    border-radius: 18px;

    backdrop-filter: blur(12px);

    transition: .35s;
}

.hero-highlights .highlight-item:hover{
    transform: translateY(-6px);

    background: rgba(255,255,255,.14);
}

.hero-highlights .highlight-item i{
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(212,175,55,.18);

    color: #D4AF37;

    font-size: 1.15rem;
}

.hero-highlights .highlight-item span{
    color: #fff;

    font-weight: 600;
    font-size: .95rem;
}

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

@media(max-width:992px){

    .products-hero{
        min-height: 80vh;
    }

    .products-hero-content{
        max-width: 100%;
    }

}

@media(max-width:768px){

    .products-hero{
        min-height: auto;
        padding: 7rem 0 5rem;
    }

    .products-hero-content h1{
        font-size: 2.5rem;
    }

    .products-hero-content p{
        font-size: 1rem;
    }

    .products-hero .hero-buttons{
        flex-direction: column;
    }

    .products-hero .btn{
        width: 100%;
    }

    .hero-highlights{
        flex-direction: column;
    }

}

@media(max-width:480px){

    .products-hero-content h1{
        font-size: 2rem;
    }

}


/*=========================================
PRODUCT CATEGORIES
=========================================*/

.product-categories{
    padding: 7rem 0;
    background: #fff;
}

.product-categories .container{
    width: min(1200px,92%);
    margin: auto;
}

.product-categories .section-heading{
    max-width: 760px;
    margin: 0 auto 5rem;
    text-align: center;
}

.product-categories .section-heading h2{
    margin: 1rem 0;
    color: #07204A;
    font-size: clamp(2.4rem,4vw,3.5rem);
    line-height: 1.2;
}

.product-categories .section-heading p{
    color: #667085;
    line-height: 1.9;
}

.categories-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2rem;
}

.category-card{
    padding: 2.5rem;

    background: #fff;

    border: 1px solid #E5E7EB;
    border-radius: 24px;

    text-decoration: none;
    text-align: center;

    transition: .35s;

    box-shadow: 0 12px 35px rgba(15,23,42,.05);
}

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

    border-color: rgba(212,175,55,.45);

    box-shadow: 0 20px 45px rgba(15,23,42,.08);
}

.category-card i{
    width: 75px;
    height: 75px;

    margin: 0 auto 1.5rem;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(212,175,55,.12);

    border-radius: 20px;

    color: #D4AF37;
    font-size: 1.8rem;
}

.category-card h3{
    margin-bottom: 1rem;

    color: #07204A;

    font-size: 1.45rem;
}

.category-card p{
    color: #667085;
    line-height: 1.8;
}

/*=========================================
FEATURED PRODUCTS
=========================================*/

.featured-products{
    padding: 7rem 0;
    background: #F8FAFC;
}

.featured-products .container{
    width: min(1200px,92%);
    margin: auto;
}

.featured-products .section-heading{
    margin-bottom: 5rem;
    text-align: center;
}

.featured-products .section-heading h2{
    margin-top: 1rem;

    color: #07204A;

    font-size: clamp(2.4rem,4vw,3.5rem);
}

.featured-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2rem;
}

.featured-card{
    padding: 2.5rem;

    background: #fff;

    border-radius: 24px;
    border: 1px solid #E5E7EB;

    transition: .35s;

    box-shadow: 0 12px 35px rgba(15,23,42,.05);
}

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

    border-color: rgba(212,175,55,.45);

    box-shadow: 0 20px 45px rgba(15,23,42,.08);
}

.featured-icon{
    width: 80px;
    height: 80px;

    margin-bottom: 2rem;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(212,175,55,.12);

    border-radius: 22px;

    color: #D4AF37;
    font-size: 2rem;
}

.featured-card h3{
    margin-bottom: 1rem;

    color: #07204A;

    font-size: 1.5rem;
}

.featured-card p{
    margin-bottom: 2rem;

    color: #667085;

    line-height: 1.9;
}

.featured-card a{
    display: inline-flex;
    align-items: center;
    gap: .7rem;

    text-decoration: none;

    color: #07204A;
    font-weight: 600;

    transition: .3s;
}

.featured-card a:hover{
    color: #D4AF37;
}

.featured-card a i{
    transition: .3s;
}

.featured-card a:hover i{
    transform: translateX(6px);
}

/*=========================================
WHY PRODUCTS
=========================================*/

.why-products{
    padding: 7rem 0;
    background: #fff;
}

.why-products .container{
    width: min(1200px,92%);
    margin: auto;
}

.why-products-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-products-content h2{
    margin: 1rem 0 1.5rem;

    color: #07204A;

    font-size: clamp(2.4rem,4vw,3.5rem);
}

.why-products-content>p{
    margin-bottom: 2rem;

    color: #667085;

    line-height: 1.9;
}

.benefits{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit{
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;

    padding: 1.4rem;

    border: 1px solid #E5E7EB;
    border-radius: 18px;

    transition: .35s;
}

.benefit:hover{
    transform: translateX(8px);

    border-color: rgba(212,175,55,.45);

    box-shadow: 0 15px 35px rgba(15,23,42,.06);
}

.benefit i{
    width: 60px;
    height: 60px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(212,175,55,.12);

    border-radius: 16px;

    color: #D4AF37;
    font-size: 1.3rem;
}

.benefit h4{
    margin-bottom: .5rem;

    color: #07204A;

    font-size: 1.2rem;
}

.benefit p{
    color: #667085;
    line-height: 1.8;
}

.why-products-image{
    overflow: hidden;

    border-radius: 28px;

    box-shadow: 0 25px 60px rgba(15,23,42,.10);
}

.why-products-image img{
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: .5s;
}

.why-products-image:hover img{
    transform: scale(1.05);
}

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

@media(max-width:992px){

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

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

    .why-products-grid{
        grid-template-columns: 1fr;
        gap: 3rem;
    }

}

@media(max-width:768px){

    .product-categories,
    .featured-products,
    .why-products{
        padding: 5rem 0;
    }

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

}

@media(max-width:480px){

    .product-categories .section-heading h2,
    .featured-products .section-heading h2,
    .why-products-content h2{
        font-size: 2rem;
    }

    .category-card,
    .featured-card{
        padding: 2rem;
    }

    .benefit{
        flex-direction: column;
    }

}

/*=========================================
GETTING STARTED
=========================================*/

.getting-started{
    padding: 7rem 0;
    background: #F8FAFC;
}

.getting-started .container{
    width: min(1200px,92%);
    margin: auto;
}

.getting-started .section-heading{
    max-width: 760px;
    margin: 0 auto 5rem;
    text-align: center;
}

.getting-started .section-heading h2{
    margin: 1rem 0;

    color: #07204A;

    font-size: clamp(2.4rem,4vw,3.5rem);
    line-height: 1.2;
}

.getting-started .section-heading p{
    color: #667085;
    line-height: 1.9;
}

.steps-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 2rem;
}

.step-card{
    position: relative;

    padding: 2.5rem;

    background: #fff;

    border: 1px solid #E5E7EB;
    border-radius: 24px;

    text-align: center;

    transition: .35s;

    box-shadow: 0 12px 35px rgba(15,23,42,.05);
}

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

    border-color: rgba(212,175,55,.45);

    box-shadow: 0 20px 45px rgba(15,23,42,.08);
}

.step-number{
    width: 75px;
    height: 75px;

    margin: 0 auto 1.8rem;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #07204A;

    color: #D4AF37;

    font-size: 1.3rem;
    font-weight: 700;
}

.step-card h3{
    margin-bottom: 1rem;

    color: #07204A;

    font-size: 1.45rem;
}

.step-card p{
    color: #667085;

    line-height: 1.8;
}


/*=========================================
PRODUCT FAQ
=========================================*/

.products-faq{
    padding: 7rem 0;
    background: #fff;
}

.products-faq .container{
    width: min(1000px,92%);
    margin: auto;
}

.products-faq .section-heading{
    max-width: 760px;
    margin: 0 auto 4rem;

    text-align: center;
}

.products-faq .section-heading h2{
    margin: 1rem 0;

    color: #07204A;

    font-size: clamp(2.4rem,4vw,3.5rem);
}

.products-faq .section-heading p{
    color: #667085;

    line-height: 1.9;
}

.faq-list{
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item{
    overflow: hidden;

    border: 1px solid #E5E7EB;
    border-radius: 18px;

    background: #fff;

    transition: .3s;

    box-shadow: 0 8px 25px rgba(15,23,42,.04);
}

.faq-item:hover{
    border-color: rgba(212,175,55,.45);

    box-shadow: 0 15px 35px rgba(15,23,42,.08);
}

.faq-item summary{
    position: relative;

    padding: 1.5rem 3.5rem 1.5rem 1.5rem;

    cursor: pointer;

    list-style: none;

    color: #07204A;

    font-size: 1.1rem;
    font-weight: 600;

    transition: .3s;
}

.faq-item summary::-webkit-details-marker{
    display: none;
}

.faq-item summary::after{
    content: "+";

    position: absolute;

    right: 1.5rem;
    top: 50%;

    transform: translateY(-50%);

    color: #D4AF37;

    font-size: 1.6rem;
    font-weight: 700;

    transition: .3s;
}

.faq-item[open] summary{
    background: rgba(212,175,55,.08);
}

.faq-item[open] summary::after{
    content: "−";
}

.faq-item p{
    padding: 0 1.5rem 1.5rem;

    color: #667085;

    line-height: 1.8;
}


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

@media(max-width:992px){

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

}

@media(max-width:768px){

    .getting-started,
    .products-faq{
        padding: 5rem 0;
    }

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

}

@media(max-width:480px){

    .getting-started .section-heading h2,
    .products-faq .section-heading h2{
        font-size: 2rem;
    }

    .step-card{
        padding: 2rem;
    }

    .faq-item summary{
        padding: 1.3rem 3rem 1.3rem 1.3rem;

        font-size: 1rem;
    }

}