/* =========================================================
   PRODUCTS PAGE STYLES
========================================================= */

.products-page-hero {
    padding: 120px 0;
    background: linear-gradient(135deg, #1d4ed8 0%, #4338ca 100%);
    color: white;
}

.products-page-hero .section-label {
    color: #bfdbfe;
    margin-bottom: 18px;
}

.products-page-hero h1 {
    font-size: clamp(44px, 5vw, 72px);
    line-height: 1.05;
    font-weight: 900;
}

.products-page-hero h1 span {
    display: block;
}

.products-page-hero p {
    max-width: 680px;
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 17px;
}

.products-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.products-hero-buttons .btn-outline-light {
    color: white;
    border-color: rgba(255,255,255,0.7);
}

.products-hero-buttons .btn-outline-light:hover,
.products-hero-buttons .btn-outline-light:focus {
    background: white;
    color: #1d4ed8;
}

.products-intro {
    padding: 90px 0;
}

.products-section {
    padding: 80px 0;
}

.product-image-wrapper {
    position: relative;
}

.product-image-overlay {
    position: absolute;
    left: 20px;
    bottom: 20px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.88);
    color: white;
    font-size: 11px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 700;
}

.product-content {
    padding: 28px;
    background: white;
}

.products-section .product-content p {
    color: #475569;
    font-size: 15px;
    line-height: 1.75;
}

.products-section .product-link {
    color: #2563eb;
}

.products-section .product-link:hover {
    color: #1d4ed8;
}

.product-philosophy,
.product-categories,
.products-cta {
    padding: 100px 0;
}

.product-philosophy .philosophy-points {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.philosophy-point {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.philosophy-icon {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 26px;
}

.philosophy-point h4 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
}

.philosophy-point p {
    margin: 0;
    color: #475569;
    line-height: 1.7;
}

.product-philosophy-visual {
    position: relative;
    min-height: 420px;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at top left, rgba(59,130,246,0.12), transparent 42%),
                radial-gradient(circle at bottom right, rgba(124,58,237,0.14), transparent 36%);
    border-radius: 30px;
    overflow: hidden;
}

.visual-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.35;
}

.visual-circle.circle-one {
    width: 220px;
    height: 220px;
    background: #2563eb;
    top: -40px;
    left: -40px;
}

.visual-circle.circle-two {
    width: 180px;
    height: 180px;
    background: #7c3aed;
    bottom: -40px;
    right: 30px;
}

.visual-circle.circle-three {
    width: 140px;
    height: 140px;
    background: #f97316;
    top: 110px;
    right: -30px;
}

.visual-center {
    position: relative;
    z-index: 1;
    width: 240px;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    padding: 36px;
    border-radius: 32px;
    background: rgba(255,255,255,0.95);
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
}

.visual-center i {
    font-size: 48px;
    color: #2563eb;
}

.visual-center span {
    color: #475569;
    font-weight: 600;
}

.visual-center strong {
    display: block;
    font-size: 26px;
    color: #0f172a;
    font-weight: 900;
}

.category-card {
    padding: 35px;
    background: white;
    border-radius: 24px;
    border: 1px solid var(--border);
    min-height: 320px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.05);
}

.category-icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    margin: 0 auto 24px;
    border-radius: 18px;
    background: #eef2ff;
    color: #4338ca;
    font-size: 28px;
}

.category-card h3 {
    margin-bottom: 18px;
    font-size: 24px;
    font-weight: 800;
}

.category-card p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 22px;
}

.category-card span {
    display: inline-block;
    color: #475569;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.products-cta {
    background: #f8fafc;
}

.products-cta-box {
    padding: 50px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
}

.products-cta-box h2 {
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.05;
    font-weight: 900;
}

.products-cta-box p {
    margin-top: 18px;
    color: #475569;
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 991px) {
    .products-hero-buttons,
    .products-cta-box {
        flex-direction: column;
        align-items: stretch;
    }

    .products-cta-box {
        padding: 35px;
    }
}

@media (max-width: 767px) {
    .products-page-hero {
        padding: 80px 0;
    }

    .products-intro,
    .products-section,
    .product-philosophy,
    .product-categories,
    .products-cta {
        padding: 60px 0;
    }

    .product-philosophy .philosophy-points,
    .category-card {
        gap: 18px;
    }

    .product-philosophy-visual {
        min-height: 320px;
    }

    .visual-center {
        width: 100%;
    }
}
