/* ==========================================
   PRODUCTS PAGE
========================================== */

.products-hero {

    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

}

.hero-image {

    position: absolute;

    inset: 0;

    z-index: 1;

}

.hero-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}

.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(10, 15, 20, 0.85) 0%,
            rgba(10, 15, 20, 0.55) 40%,
            rgba(10, 15, 20, 0.25) 100%);

    z-index: 2;

}

.hero-content {

    position: relative;

    z-index: 3;

    width: min(1200px, 90vw);

    color: white;

}

.products-hero .section-label {

    color: rgba(255, 255, 255, 0.8);

}

.products-hero h1 {

    font-size: clamp(5rem, 10vw, 8rem);

    line-height: 0.95;

    margin: 20px 0;

    color: white;

}

.products-hero h2 {

    font-size: clamp(1.5rem, 3vw, 2.5rem);

    font-weight: 400;

    color: rgba(255, 255, 255, 0.85);

    margin-bottom: 30px;

}

.products-hero p {

    max-width: 700px;

    font-size: 1.15rem;

    line-height: 1.9;

    color: rgba(255, 255, 255, 0.85);

}

.section-label {
    display: inline-block;
    margin-bottom: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: .8rem;
    opacity: .7;
}

.product-showcase {
    padding: 0 0 120px;
    text-align: center;
}

.product-image {
    width: 100%;
    max-width: 1000px;
    display: block;
    margin: auto;
}

.product-about {
    padding: 120px 0;
}

.product-about p {
    line-height: 1.9;
    margin-bottom: 24px;
}

.product-applications {
    padding: 120px 0;
    background: #f7f9fb;
    text-align: center;
}

.application-list {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.application-list div {
    padding: 14px 24px;
    border-radius: 999px;
    background: white;
    border: 1px solid rgba(0, 0, 0, .08);
}

.product-capabilities {
    padding: 120px 0;
    text-align: center;
}

.capability-tags {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.capability-tags span {
    padding: 14px 24px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, .12);
}

.product-cta {
    padding: 140px 0;
    text-align: center;
    background: #0f141b;
    color: white;
}

.product-cta p {
    max-width: 700px;
    margin: 30px auto;
    line-height: 1.9;
}

.product-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 768px) {

    .products-hero {
        padding: 140px 0 80px;
    }

    .product-showcase,
    .product-about,
    .product-applications,
    .product-capabilities {
        padding: 80px 0;
    }

    .product-cta {
        padding: 100px 0;
    }

}

/* ==========================================
   OVEC VIDEO
========================================== */

.product-video {


    padding: 120px 0;

    background: #0f141b;

    color: white;

}

.video-header {

    max-width: 900px;

    margin: 0 auto 50px;

    text-align: center;

}

.video-header h2 {

    margin: 20px 0;

}

.video-header p {

    max-width: 700px;

    margin: 0 auto;

    line-height: 1.9;

    opacity: 0.8;

}

.video-wrapper {

    position: relative;

    width: 100%;

    border-radius: 24px;

    overflow: hidden;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.08);

}

.video-wrapper video {

    width: 100%;

    display: block;

    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.08);
    -webkit-user-select: none;
    user-select: none;

}

/* ==========================================
   MOBILE
========================================== */

@media (max-width:768px) {

    .product-video {

        padding: 80px 0;

    }

}