@charset "UTF-8";
/* CSS Document */

        :root {
            --primary: #1E40AF;
            --primary-light: #2563EB;
            --accent: #76B900;
            --dark: #0F172A;
            --text: #4b5563;
            --light: #f8fafc;
            --border: #e5e7eb;
            --blue: #1e40af;
        }

.product-card .product-title a,
.product-card h3 a {
    color: #111827;
    text-decoration: none;
}

.product-card .product-title a:hover,
.product-card h3 a:hover {
    color: #1e40af;
}
	
        .page-hero {
            position: relative;
            background: linear-gradient(120deg, rgba(17, 24, 39, 0.92), rgba(30, 64, 175, 0.72)), url("images/ai-vision-workstations-hero.jpg") center/cover no-repeat;
            color: #fff;
            padding: 96px 0 90px;
            overflow: hidden;
        }

        .page-hero::after {
            content: "";
            position: absolute;
            inset: auto -120px -180px auto;
            width: 420px;
            height: 420px;
            border-radius: 50%;
            background: rgba(37, 99, 235, 0.22);
            filter: blur(18px);
        }

        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            align-items: center;
            font-size: 14px;
            opacity: 0.9;
            margin-bottom: 18px;
        }

        .breadcrumb span {
            opacity: 0.75;
        }

        .page-hero h1 {
            margin: 0 0 18px;
            color: #fff;
            font-size: clamp(38px, 5vw, 62px);
            line-height: 1.08;
            letter-spacing: -1px;
        }

        .page-hero p {
            max-width: 760px;
            margin: 0;
            color: rgba(255, 255, 255, 0.88);
            font-size: 19px;
        }

        .section {
            padding: 76px 0;
        }

        .section-light {
            background: var(--light);
        }

        .section-title {
            max-width: 1000px;
            margin-bottom: 38px;
        }

        .eyebrow {
            display: inline-block;
            margin-bottom: 10px;
            color: var(--primary);
            font-weight: 700;
            font-size: 14px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .section-title h2 {
            margin: 0 0 14px;
            color: var(--dark);
            font-size: clamp(30px, 4vw, 44px);
            line-height: 1.18;
        }

        .section-title p {
            margin: 0;
            font-size: 17px;
        }



.intro-grid {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    justify-content: space-between;
}

.intro-copy {
    width: 62%;
}

.application-collage {
    width: 38%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.vision-title {
    margin: 0 0 14px;
            color: var(--dark);
            font-size: clamp(30px, 4vw, 44px);
            line-height: 1.18;
}

.intro-copy p {
    margin: 0 0 22px;
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
}

.collage-card {
    position: relative;
    min-height: 150px;
    border-radius: 22px;
    overflow: hidden;
    background: #0f172a;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

.collage-card.large {
    grid-row: span 2;
    min-height: 320px;
}

.collage-card.wide {
    grid-column: span 2;
    min-height: 140px;
}

.collage-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.88;
}

.collage-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0.02),
        rgba(15, 23, 42, 0.55)
    );
}
		.collage-card img {
    opacity: 1;
    filter: brightness(1.08) contrast(1.05);
}

.collage-label {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 16px;
    z-index: 2;
}

.collage-label h3 {
    margin: 0 0 6px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
}

.collage-label p {
    margin: 0;
    color: rgba(255,255,255,0.84);
    font-size: 13px;
    line-height: 1.5;
}
.collage-label h3,
.collage-label p {
    text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}

@media (max-width: 991px) {

    .intro-grid {
        flex-direction: column;
    }

    .intro-copy,
    .application-collage {
        width: 100%;
    }

    .vision-title {
        font-size: 42px;
    }
}

@media (max-width: 640px) {

    .application-collage {
        grid-template-columns: 1fr;
		display:none;
    }

    .collage-card.large,
    .collage-card.wide {
        grid-column: auto;
        grid-row: auto;
        min-height: 220px;
    }

    .vision-title {
        font-size: 34px;
    }
}


        .feature-grid,
        .application-grid,
        .product-grid {
            display: grid;
            gap: 24px;
        }

        .feature-grid {
            grid-template-columns: repeat(4, 1fr);
        }

        .application-grid {
            grid-template-columns: repeat(4, 1fr);
        }

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

        .feature-card,
        .application-card,
        .product-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
        }

        .feature-card {
            padding: 28px 24px;
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            display: grid;
            place-items: center;
            margin-bottom: 18px;
            color: #fff;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            font-size: 22px;
            font-weight: 700;
        }

        .feature-card h3,
        .application-card h3,
        .product-card h3 {
            margin: 0 0 10px;
            color: var(--dark);
            font-size: 20px;
            line-height: 1.28;
        }

        .feature-card p,
        .application-card p,
        .product-card p {
            margin: 0;
        }

        .product-card h3 {
    font-size: 26px;
    line-height: 1.3;
    font-weight: 600;
}
        .product-card p {
    line-height: 1.65;
}


        .application-card img,
        .product-card img {
            width: 100%;
            height: 190px;
            object-fit: cover;
            display: block;
            background: #fff;
        }

        .application-card .card-body,
        .product-card .card-body {
            padding: 24px;
        }

        .product-card img {
            height: 260px;
            object-fit: contain;
            padding: 28px;
            box-sizing: border-box;
        }

        .pre-tag {
            display: inline-block;
            color: var(--blue);
            font-weight: 700;
            margin-bottom: 12px;
            font-size: 20px;
        }

        .spec-list {
            display: grid;
            gap: 9px;
            margin: 18px 0 24px;
            padding: 0;
            list-style: none;
        }

        .spec-list li {
            position: relative;
            padding-left: 22px;
            font-size: 15px;
        }

        .spec-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: 700;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 22px;
            border-radius: 999px;
            color: #fff;
            background: var(--primary);
            font-weight: 700;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .btn:hover {
            transform: translateY(-2px);
            background: var(--primary-light);
            box-shadow: 0 12px 26px rgba(30, 64, 175, 0.28);
        }

        .comparison-wrap {
            overflow-x: auto;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 20px;
            box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
        }

        .comparison-table {
            width: 100%;
            min-width: 720px;
            border-collapse: collapse;
        }

        .comparison-table th,
        .comparison-table td {
            padding: 18px 20px;
            border-bottom: 1px solid var(--border);
            text-align: left;
            vertical-align: top;
        }

        .comparison-table th {
            color: var(--dark);
            background: #f9fafb;
            font-weight: 700;
        }

        .comparison-table tr:last-child td {
            border-bottom: 0;
        }

        .cta-section {
            color: #fff;
            background: linear-gradient(120deg, var(--dark), #1e3a8a);
            padding: 72px 0;
            text-align: center;
        }

        .cta-section h2 {
            margin: 0 0 14px;
            color: #fff;
            font-size: clamp(30px, 4vw, 44px);
        }

        .cta-section p {
            max-width: 720px;
            margin: 0 auto 26px;
            color: rgba(255, 255, 255, 0.86);
            font-size: 17px;
        }

        @media (max-width: 991px) {
			
			.intro-grid {
        flex-direction: column;
    }

    .intro-copy,
    .intro-panel {
        width: 100%;
    }
            
            .product-grid {
                grid-template-columns: 1fr;
            }

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

        @media (max-width: 640px) {
            .container {
                width: min(100% - 28px, 1180px);
            }

            .page-hero {
                padding: 72px 0 68px;
            }

            .section {
                padding: 56px 0;
            }

            .feature-grid,
            .application-grid {
                grid-template-columns: 1fr;
            }
        }