/* ============================================================
   PRODUCTS PAGES — SHARED DEDICATED STYLES
   ============================================================ */

/* ======= PAGE HERO (ALL PRODUCT PAGES) ======= */
.prod-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--secondary);
    padding-top: 10rem;
    padding-bottom: 5rem;
}
.prod-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    filter: grayscale(30%);
    transform: scale(1.05);
    animation: slowZoom 12s ease-out forwards;
    z-index: 0;
}
@keyframes slowZoom {
    to { transform: scale(1); }
}
.prod-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(10,10,10,0.97) 40%, rgba(10,10,10,0.6) 80%, rgba(10,10,10,0.4) 100%);
    z-index: 1;
}
.prod-hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    padding: 4rem 0 2rem;
}
.prod-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: rgba(245, 196, 0, 0.1);
    border: 1px solid rgba(245, 196, 0, 0.25);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
}
.prod-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3rem, 6.5vw, 6.5rem);
    font-weight: 800;
    line-height: 1;
    color: #fff;
    letter-spacing: -0.04em;
    margin-bottom: 2rem;
}
.prod-hero-title .accent { color: var(--primary); }
.prod-hero-desc {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 3rem;
}
.prod-hero-ctas {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}
.prod-hero-scrolls {
    position: absolute;
    bottom: 3rem;
    right: 5%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollDown 1.5s infinite;
}
@keyframes scrollDown {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ======= SECTION WRAPPERS ======= */
.section-dark { background: var(--secondary); padding: 9rem 0; }
.section-darker { background: #080808; padding: 9rem 0; }
.section-mid { background: #111111; padding: 9rem 0; }

/* ======= OVERVIEW PAGE — PRODUCT SHOWCASE CARDS ======= */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.ov-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 520px;
    cursor: pointer;
    display: block;
    text-decoration: none;
}
.ov-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(60%) brightness(0.55);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.ov-card:hover .ov-card-img {
    filter: grayscale(0%) brightness(0.75);
    transform: scale(1.06);
}
.ov-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.98) 0%, rgba(10,10,10,0.3) 55%, transparent 100%);
    z-index: 1;
}
.ov-card-label {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 2;
    background: rgba(245,196,0,0.12);
    border: 1px solid rgba(245,196,0,0.3);
    color: var(--primary);
    font-size: 0.72rem;
    letter-spacing: 3px;
    font-weight: 700;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    text-transform: uppercase;
}
.ov-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 3rem;
    transform: translateY(6rem);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.ov-card:hover .ov-card-body { transform: translateY(0); }
.ov-card-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.1;
}
.ov-card-desc {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease 0.1s;
}
.ov-card:hover .ov-card-desc {
    opacity: 1;
    transform: translateY(0);
}
.ov-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.ov-card-link i {
    transition: transform 0.3s ease;
}
.ov-card:hover .ov-card-link i {
    transform: translateX(5px);
}

/* ======= PRODUCT CATALOG CARDS (per-product page) ======= */
.product-catalog {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.cat-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
}
.cat-card:hover {
    border-color: rgba(245,196,0,0.3);
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}
.cat-card-img-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}
.cat-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    filter: brightness(0.85);
}
.cat-card:hover .cat-card-img {
    transform: scale(1.08);
    filter: brightness(1);
}
.cat-card-badge {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    background: var(--primary);
    color: var(--secondary);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    text-transform: uppercase;
}
.cat-card-body {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.cat-card-title {
    font-size: 1.4rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}
.cat-card:hover .cat-card-title { color: var(--primary); }
.cat-card-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}
.cat-card-specs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}
.spec-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
}
.spec-item::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}
.cat-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border: 1px solid rgba(245,196,0,0.3);
    border-radius: 10px;
    color: var(--primary);
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}
.cat-card-btn:hover {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
}

/* ======= APPLICATIONS / USE CASES SECTION ======= */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.app-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.4s ease;
}
.app-item:hover {
    background: rgba(245,196,0,0.05);
    border-color: rgba(245,196,0,0.2);
    transform: translateX(5px);
}
.app-icon {
    width: 50px;
    height: 50px;
    background: rgba(245,196,0,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: all 0.4s ease;
}
.app-item:hover .app-icon {
    background: var(--primary);
    color: var(--secondary);
}
.app-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4rem;
}
.app-desc {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
    margin: 0;
}

/* ======= CERTIFICATIONS / SPECS PANEL ======= */
.certs-panel {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px;
    padding: 4rem;
}
.cert-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 3rem;
}
.cert-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: rgba(245,196,0,0.05);
    border: 1px solid rgba(245,196,0,0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}
.cert-item:hover {
    background: rgba(245,196,0,0.1);
    border-color: rgba(245,196,0,0.3);
}
.cert-check {
    color: var(--primary);
    font-size: 1rem;
}
.cert-text {
    font-weight: 700;
    color: #fff;
    font-size: 0.95rem;
}

/* ======= STATS BAR ======= */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    overflow: hidden;
}
.stat-bar-item {
    padding: 3rem 2rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.05);
    transition: background 0.3s ease;
}
.stat-bar-item:last-child { border-right: none; }
.stat-bar-item:hover { background: rgba(245,196,0,0.05); }
.stat-bar-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-bar-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ======= RESPONSIVE ======= */
@media (max-width: 1024px) {
    .product-catalog { grid-template-columns: repeat(2, 1fr); }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .stat-bar-item:nth-child(2) { border-right: none; }
    .stat-bar-item:nth-child(1),
    .stat-bar-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.05); }
}
@media (max-width: 768px) {
    .overview-grid { grid-template-columns: 1fr; }
    .ov-card { height: 420px; }
    .ov-card-body { transform: translateY(0); }
    .ov-card-desc { opacity: 1; transform: none; }
    .product-catalog { grid-template-columns: 1fr; }
    .apps-grid { grid-template-columns: 1fr; }
    .cert-list { grid-template-columns: 1fr; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .certs-panel { padding: 2.5rem; }
    .prod-hero-title { font-size: clamp(2.5rem, 10vw, 5rem); }
}
@media (max-width: 480px) {
    .stats-bar { grid-template-columns: 1fr; }
    .stat-bar-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .stat-bar-item:last-child { border-bottom: none; }
}

/* ======= CTA OVERRIDES (reduce enterprise.css excessive padding) ======= */
.cta-section {
    margin: 0 4% 0 !important;
    border-radius: 24px !important;
}
.cta-inner {
    padding: 7rem 4rem !important;
}
@media (max-width: 768px) {
    .cta-inner { padding: 5rem 2rem !important; }
    .cta-section { margin: 0 3% 0 !important; border-radius: 16px !important; }
}

