/* ==========================================
   Section Heading
========================================== */



.section-heading {

    max-width: 700px;

    margin: 0 auto 70px;

    text-align: center;

}

.section-heading span {

    display: inline-block;

    margin-bottom: 16px;

    color: var(--color-text-light);

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;

    font-size: .9rem;

}

.section-heading h2 {

    margin-bottom: 20px;

}

.section-heading p {

    font-size: 1.1rem;

}

/* ==========================================
   Products
========================================== */

.products {

    background: var(--color-section);

}

.product-grid {

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    width:100%;

}



.product-card {

    background: #fff;

    padding: 36px;

    border: 1px solid var(--color-border);

    border-radius: 16px;

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}

.product-card:hover {

    transform: translateY(-6px);

    box-shadow: var(--shadow);

}

.product-logo {
    width: 60px;
    max-width:100%;
    height:auto;
    object-fit: contain;
    margin-bottom: 24px;
}


.product-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    margin-bottom: 28px;
}

.product-logo img {

    width: 100%;
    height: 100%;

    object-fit: contain;

}

.product-card img{

    max-width:100%;

    height:auto;

}

.product-card h3 {

    margin-bottom: 16px;

}

.product-card p {

    margin-bottom: 24px;

}

.product-card a {

    font-weight: 600;

}







/* ==========================================
   Services
========================================== */

.services {

    background: #fff;

}

.services-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 28px;


}

.service-card {

    position: relative;

    padding: 42px;

    background: #fff;

    border: 1px solid var(--color-border);

    border-radius: 16px;

    transition: .35s ease;

}

.service-card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow);

}

.service-number {

    display: block;

    margin-bottom: 28px;

    font-size: 4rem;

    font-weight: 800;

    line-height: 1;

    color: #E5E7EB;

    user-select: none;

}

.service-card h3 {

    margin-bottom: 18px;

    font-size: 1.5rem;

}

.service-card p {

    color: var(--color-text-light);

    line-height: 1.8;

}

@media (max-width:768px) {

    .services-grid {

        grid-template-columns: 1fr;

    }

    .service-card {

        padding: 32px;

    }

    .service-number {

        font-size: 3rem;

    }

}


/* ==========================================
   Process
========================================== */

.process {

    background: var(--color-section);

}

.process-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 24px;

}

.process-card {

    padding: 36px;

    background: #fff;

    border: 1px solid var(--color-border);

    border-radius: 16px;

    transition: .35s;

}

.process-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 20px 40px rgba(0, 0, 0, .08);


    box-shadow: var(--shadow);

}

.process-number {

    display: inline-block;

    margin-bottom: 24px;

    color: #C7CDD4;

    font-size: 2.5rem;

    font-weight: 800;

}

.process-card h3 {

    margin-bottom: 16px;

}

.process-card p {

    line-height: 1.8;

}


@media(max-width:992px) {

    .process-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:768px) {

    .process-grid {

        grid-template-columns: 1fr;

    }

}



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

.faq {

    background: #fff;

}

.faq-list {

    max-width: 850px;

    margin: auto;

}

.faq-item {

    border-bottom: 1px solid var(--color-border);

    padding: 22px 0;

}

.faq-item summary {

    cursor: pointer;

    list-style: none;

    font-size: 1.15rem;

    font-weight: 600;

    color: var(--color-black);

    display: flex;

    justify-content: space-between;

    align-items: center;

}

.faq-item summary::-webkit-details-marker {

    display: none;

}

.faq-item summary::after {

    content: "+";

    font-size: 1.6rem;

    transition: .3s;

}

.faq-item[open] summary::after {

    transform: rotate(45deg);

}

.faq-item p {

    margin-top: 18px;

    max-width: 700px;

    line-height: 1.8;

}





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

.cta {

    padding: 120px 0;

}

.cta-box {

    max-width: 900px;

    margin: auto;

    padding: 80px 60px;

    text-align: center;

    background: var(--color-black);

    color: #fff;

    border-radius: 24px;

}

.cta-tag {

    display: inline-block;

    margin-bottom: 20px;

    padding: 8px 18px;

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

    border-radius: 999px;

    font-size: .9rem;

    font-weight: 600;

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

}

.cta-box h2 {

    color: #fff;

    margin-bottom: 24px;

}

.cta-box p {

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

    max-width: 650px;

    margin: 0 auto 40px;

    line-height: 1.8;

}

.cta-buttons {

    display: flex;

    justify-content: center;

    gap: 18px;

    flex-wrap: wrap;

}

/* White button inside dark box */

.cta .btn {

    background: #fff;

    color: #111;

}

.cta .btn:hover {

    background: #f3f4f6;

}

/* Outline button */

.cta .btn-outline {

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

    color: #fff;

}

.cta .btn-outline:hover {

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

}


@media (max-width:768px) {

    .cta-box {

        padding: 50px 28px;

        border-radius: 18px;

    }

    .cta-box h2 {

        font-size: 2rem;

    }

}




/* ==========================================
   Product Hero
========================================== */

.product-hero{

    padding:120px 0 80px;

}


.product-hero-content{

    max-width:850px;

    margin:auto;

    text-align:center;

}


.product-hero h1{

    margin-bottom:24px;

    letter-spacing:-2px;

}


.product-hero p{

    max-width:700px;

    margin:auto;

    font-size:1.15rem;

    line-height:1.8;

}




/* ==========================================
   Product Showcase
========================================== */

.product-showcase{

    padding:100px 0;

}


.showcase-item{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:80px;

    margin-bottom:140px;

}


.showcase-item.reverse{

    direction:rtl;

}


.showcase-item.reverse .showcase-content{

    direction:ltr;

}



.showcase-image{

    border:1px solid var(--color-border);

    border-radius:20px;

    overflow:hidden;

    background:#fff;

    box-shadow:var(--shadow);

}


.showcase-image img{

    width:100%;

    display:block;

}



.showcase-content span{

    font-size:.9rem;

    font-weight:600;

    color:var(--color-text-light);

    text-transform:uppercase;

    letter-spacing:1px;

}



.showcase-content h2{

    margin:18px 0;

}



.showcase-content p{

    margin-bottom:25px;

    line-height:1.8;

}



.showcase-content ul{

    margin-bottom:35px;

}



.showcase-content li{

    margin-bottom:12px;

    color:var(--color-text-light);

}



.showcase-content li::before{

    content:"✓";

    color:#111;

    font-weight:700;

    margin-right:10px;

}


@media(max-width:900px){

    .showcase-item{

        grid-template-columns:1fr;

        gap:40px;

        margin-bottom:80px;

    }


    .showcase-item.reverse{

        direction:ltr;

    }

}



/* ==========================================
   Product Stats
========================================== */

.product-stats{

    background:var(--color-section);

    padding:80px 0;

}


.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    text-align:center;

}


.stat-item{

    padding:30px;

}


.stat-item h3{

    font-size:3rem;

    margin-bottom:10px;

    letter-spacing:-1px;

}


.stat-item p{

    color:var(--color-text-light);

    font-weight:500;

}

@media(max-width:900px){

    .stats-grid{

        grid-template-columns:repeat(2,1fr);

    }

}


@media(max-width:600px){

    .stats-grid{

        grid-template-columns:1fr;

    }

}



/* ==========================================
   Service Hero
========================================== */


.service-hero{

    padding:120px 0 80px;

}


.service-hero .product-hero-content{

    max-width:850px;

}


/* ==========================================
   Service Showcase
========================================== */


.service-showcase{

    padding:100px 0;

}



.service-detail{

    display:grid;

    grid-template-columns:120px 1fr;

    gap:50px;

    padding:60px 0;

    border-bottom:1px solid var(--color-border);

}



.service-number{

    font-size:4rem;

    font-weight:800;

    color:#E5E7EB;

    line-height:1;

}



.service-content h2{

    margin-bottom:20px;

    font-size:2rem;

}



.service-content p{

    max-width:700px;

    line-height:1.8;

    color:var(--color-text-light);

    margin-bottom:30px;

}



.service-tags{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

}



.service-tags span{

    padding:8px 16px;

    border-radius:999px;

    background:var(--color-section);

    border:1px solid var(--color-border);

    font-size:.9rem;

}

@media(max-width:768px){


.service-detail{

    grid-template-columns:1fr;

    gap:20px;

    padding:40px 0;

}


.service-number{

    font-size:3rem;

}


.service-content h2{

    font-size:1.6rem;

}


}


/* ==========================================
   Development Process
========================================== */


.development-process{

    padding:120px 0;

    background:var(--color-section);

}



.process-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:24px;

}



.process-card{

    background:#fff;

    padding:35px;

    border:1px solid var(--color-border);

    border-radius:16px;

}



.process-number{

    display:block;

    font-size:2.8rem;

    font-weight:800;

    color:#D1D5DB;

    margin-bottom:25px;

}



.process-card h3{

    margin-bottom:15px;

}



.process-card p{

    line-height:1.8;

    color:var(--color-text-light);

}



@media(max-width:1000px){

    .process-grid{

        grid-template-columns:repeat(2,1fr);

    }

}


@media(max-width:600px){

    .process-grid{

        grid-template-columns:1fr;

    }

}


/* ==========================================
   Why Us
========================================== */


.why-us{

    padding:120px 0;

}



.why-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:28px;

}



.why-card{

    padding:40px;

    border:1px solid var(--color-border);

    border-radius:16px;

    background:#fff;

}



.why-card h3{

    margin-bottom:18px;

    font-size:1.4rem;

}



.why-card p{

    line-height:1.8;

    color:var(--color-text-light);

}

@media(max-width:768px){

    .why-grid{

        grid-template-columns:1fr;

    }

}


/* ==========================================
   About Hero
========================================== */


.about-hero{

    padding:120px 0 80px;

}


.about-hero-content{

    max-width:850px;

    margin:auto;

    text-align:center;

}


.about-hero h1{

    margin-bottom:25px;

}


.about-hero p{

    max-width:700px;

    margin:auto;

    line-height:1.8;

    color:var(--color-text-light);

}




/* ==========================================
   Our Story
========================================== */


.our-story{

    padding:120px 0;

    background:var(--color-section);

}



.story-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:start;

}



.story-title span{

    font-size:.9rem;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:1px;

    color:var(--color-text-light);

}



.story-title h2{

    margin-top:20px;

    font-size:2.5rem;

    letter-spacing:-1px;

}



.story-content p{

    line-height:1.9;

    color:var(--color-text-light);

    margin-bottom:22px;

}



@media(max-width:768px){

    .story-grid{

        grid-template-columns:1fr;

        gap:40px;

    }


    .story-title h2{

        font-size:2rem;

    }

}


/* ==========================================
   Mission Vision
========================================== */


.mission-vision{

    padding:120px 0;

}



.mv-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}



.mv-card{

    padding:50px;

    border:1px solid var(--color-border);

    border-radius:18px;

    background:#fff;

}



.mv-card span{

    font-size:.9rem;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:1px;

    color:var(--color-text-light);

}



.mv-card h2{

    margin:22px 0;

    font-size:2rem;

    letter-spacing:-.5px;

}



.mv-card p{

    line-height:1.8;

    color:var(--color-text-light);

}



@media(max-width:768px){

    .mv-grid{

        grid-template-columns:1fr;

    }


    .mv-card{

        padding:35px;

    }

}



/* ==========================================
   Beliefs
========================================== */


.beliefs{

    padding:120px 0;

    background:var(--color-section);

}



.belief-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:24px;

}



.belief-card{

    background:#fff;

    padding:35px;

    border:1px solid var(--color-border);

    border-radius:16px;

}



.belief-number{

    display:block;

    font-size:2.5rem;

    font-weight:800;

    color:#D1D5DB;

    margin-bottom:25px;

}



.belief-card h3{

    margin-bottom:15px;

}



.belief-card p{

    line-height:1.8;

    color:var(--color-text-light);

}



@media(max-width:1000px){

    .belief-grid{

        grid-template-columns:repeat(2,1fr);

    }

}


@media(max-width:600px){

    .belief-grid{

        grid-template-columns:1fr;

    }

}



/* ==========================================
   Founder
========================================== */


.founder{

    padding:120px 0;

}



.founder-grid{

    display:grid;

    grid-template-columns:350px 1fr;

    gap:80px;

    align-items:center;

}



.founder-image img{

    width:100%;

    border-radius:20px;

    border:1px solid var(--color-border);

}



.founder-content span{

    font-size:.9rem;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:1px;

    color:var(--color-text-light);

}



.founder-content h2{

    margin:20px 0;

    font-size:2.4rem;

    letter-spacing:-1px;

}



.founder-content p{

    line-height:1.8;

    color:var(--color-text-light);

    margin-bottom:20px;

}



.founder-content h3{

    margin-top:30px;

    margin-bottom:5px;

}



@media(max-width:768px){

    .founder-grid{

        grid-template-columns:1fr;

        gap:40px;

    }


    .founder-image{

        max-width:300px;

    }


    .founder-content h2{

        font-size:2rem;

    }

}




/* ==========================================
   Contact Hero
========================================== */


.contact-hero{

    padding:120px 0 80px;

}


.contact-hero-content{

    max-width:800px;

    margin:auto;

    text-align:center;

}



.contact-section{

    padding:100px 0;

}



.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

}




.contact-info h2{

    margin-bottom:20px;

}



.contact-info p{

    line-height:1.8;

    color:var(--color-text-light);

}



.contact-item{

    margin-top:35px;

}



.contact-item h4{

    margin-bottom:8px;

}


.contact-form{

    padding:40px;

    border:1px solid var(--color-border);

    border-radius:18px;

    background:#fff;

}



.contact-form form{

    display:flex;

    flex-direction:column;

    gap:14px;

}



.contact-form input,
.contact-form select,
.contact-form textarea{


    padding:10px 16px;

    border:1px solid var(--color-border);

    border-radius:10px;

    font-family:inherit;

    font-size:1rem;

}



.contact-form textarea{

    resize:vertical;

}



.contact-form button{

    margin-top:15px;

    cursor:pointer;

}


@media(max-width:768px){

    .contact-grid{

        grid-template-columns:1fr;

        gap:40px;

    }


    .contact-form{

        padding:25px;

    }

}




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


.faq{

    padding:120px 0;

    background:var(--color-section);

}



.faq-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}



.faq-item{

    background:#fff;

    padding:35px;

    border:1px solid var(--color-border);

    border-radius:16px;

}



.faq-item h3{

    margin-bottom:15px;

    font-size:1.2rem;

}



.faq-item p{

    line-height:1.8;

    color:var(--color-text-light);

}


@media(max-width:768px){

    .faq-grid{

        grid-template-columns:1fr;

    }

}






#form-status{

    margin-top:20px;

}


.success-message{

    padding:16px;

    border-radius:10px;

    background:#f8f9fa;

    border:1px solid #e5e7eb;

    color:#111;

    line-height:1.6;

}


.error-message{

    padding:16px;

    border-radius:10px;

    background:#fff;

    border:1px solid #ef4444;

    color:#ef4444;

}






@media (max-width:768px){

    .product-grid{

        grid-template-columns:1fr;

    }


    .product-card{

        width:100%;
        max-width:100%;

    }

}







/* ==========================================
   FilterTube Product Page
========================================== */


/* Product Hero */

.product-hero{

    padding:120px 0;

}


.product-hero .container{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:60px;

}



.product-content{

    max-width:550px;

}



.product-logo{

    width:80px;

    height:80px;

    object-fit:contain;

    margin-bottom:25px;

}



.product-content h1{

    font-size:4rem;

    line-height:1.1;

    margin-bottom:20px;

}



.product-content p{

    color:#6B7280;

    font-size:1.15rem;

    line-height:1.8;

    margin-bottom:35px;

}



.product-image img{

    width:100%;

    border-radius:20px;

    border:1px solid #E5E7EB;

}





/* ==========================================
   Product Sections
========================================== */


.about-product,
.features,
.how-it-works,
.product-info,
.purpose{

    padding:100px 0;

}



.about-product h2,
.features h2,
.how-it-works h2,
.product-info h2,
.purpose h2{

    font-size:2.5rem;

    margin-bottom:25px;

}



.about-product p,
.how-it-works p,
.purpose p{

    max-width:750px;

    color:#6B7280;

    line-height:1.8;

    font-size:1.1rem;

}





/* ==========================================
   Features Grid
========================================== */


.feature-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}



.feature-card{

    padding:35px;

    border:1px solid #E5E7EB;

    border-radius:16px;

    background:#FFFFFF;

}



.feature-card h3{

    font-size:1.25rem;

    margin-bottom:15px;

}



.feature-card p{

    color:#6B7280;

    line-height:1.7;

}





/* ==========================================
   Product Info
========================================== */


.product-info ul{

    list-style:none;

    padding:0;

    max-width:500px;

}



.product-info li{

    padding:15px 0;

    border-bottom:1px solid #E5E7EB;

    color:#6B7280;

}





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


.cta{

    padding:100px 0;

}



.cta .container{

    text-align:center;

}



.cta h2{

    font-size:2.5rem;

    margin-bottom:30px;

}





/* ==========================================
   Mobile Responsive
========================================== */


@media(max-width:768px){


.product-hero{

    padding:70px 0;

}



.product-hero .container{

    grid-template-columns:1fr;

    gap:40px;

}



.product-content h1{

    font-size:2.5rem;

}



.feature-grid{

    grid-template-columns:1fr;

}



.about-product,
.features,
.how-it-works,
.product-info,
.purpose{

    padding:70px 0;

}



.about-product h2,
.features h2,
.how-it-works h2,
.product-info h2,
.purpose h2{

    font-size:2rem;

}


}

/* ==========================================
   Premium Product Showcase
========================================== */


.product-image-gallery {

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:20px;

    align-items:center;

}



.main-preview img {

    width:100%;

    border-radius:24px;

    border:1px solid #E5E7EB;

    box-shadow:0 20px 40px rgba(0,0,0,0.08);

}



.side-previews {

    display:flex;

    flex-direction:column;

    gap:20px;

}



.side-previews img {

    width:100%;

    border-radius:18px;

    border:1px solid #E5E7EB;

    box-shadow:0 10px 25px rgba(0,0,0,0.06);

}



/* Hover */

.product-image-gallery img {

    transition:transform .3s ease;

}


.product-image-gallery img:hover {

    transform:translateY(-5px);

}





/* Mobile */

@media(max-width:768px){


.product-image-gallery {

    grid-template-columns:1fr;

}


.side-previews {

    flex-direction:row;

}


.side-previews img {

    width:50%;

}


}


/* Image Popup */

.image-popup {

    display:none;

    position:fixed;

    inset:0;

    background:rgba(0,0,0,0.85);

    z-index:9999;

    justify-content:center;

    align-items:center;

    padding:30px;

}



.image-popup img {

    max-width:90%;

    max-height:90%;

    border-radius:16px;

}



.close-popup {

    position:absolute;

    top:30px;

    right:40px;

    color:white;

    font-size:40px;

    cursor:pointer;

}



.preview-image {

    cursor:pointer;

}