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


.rugged-panel-page {
    font-family: inherit;
}

.rugged-hero {
    padding: 90px 0 70px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 55%, #334155 100%);
    color: #fff;
    text-align: center;
}

.rugged-hero .pre-title {
    color: #2563eb;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.rugged-hero h1 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 18px;
}

.rugged-hero p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
    color: #e2e8f0;
}

.rugged-intro {
    padding: 70px 0;
    background: #fff;
}

.rugged-intro p {
    max-width: 980px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
    text-align: center;
}

.section-title {
    text-align: center;
    margin-bottom: 45px;
}

.section-title .pre-title {
    color: #2563eb;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 34px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.section-title p {
    color: #64748b;
    font-size: 16px;
}

.feature-section,
.application-section,
.product-section,
.gmsl-section {
    padding: 80px 0;
}

.feature-section,
.product-section {
    background: #f8fafc;
}

.application-section,
.gmsl-section {
    background: #fff;
}

.feature-grid,
.application-grid,
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card,
.application-card,
.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
    transition: all 0.3s ease;
}

.feature-card:hover,
.application-card:hover,
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
}

.feature-card {
    padding: 30px 24px;
    text-align: center;
}

.feature-card .icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;
    border-radius: 14px;
    background: rgba(37, 99, 235, 0.12);
	color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.feature-card h3,
.application-card h3,
.product-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.feature-card p,
.application-card p,
.product-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 0;
}

.application-card img,
.product-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.product-card img {
    width: 100%;
    height: 320px;
}

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

.application-card .card-body {
	text-align: center;
}


.product-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 980px;
    margin: 0 auto;
}

.product-card .product-tag {
    display: inline-block;
    color: #2563eb;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-card.coming-soon .product-tag::after {
    content: " • Coming Soon";
    font-size: 12px;
    opacity: 0.7;
}

.product-card .spec-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.product-card .spec-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 9px;
    color: #334155;
    font-size: 15px;
}

.product-card .spec-list li::before {
    content: "";
    width: 7px;
    height: 7px;
    background: #2563eb;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}

.gmsl-layout {
    display: grid;
    grid-template-columns: 42% 58%;
    gap: 36px;
    align-items: center;
}

.gmsl-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.gmsl-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 14px;
}

.gmsl-content p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 24px;
}

.camera-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.camera-table th {
    background: #0f172a;
    color: #fff;
    padding: 14px 16px;
    font-size: 14px;
    text-align: left;
}

.camera-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #e2e8f0;
    color: #475569;
    font-size: 14px;
}

.camera-table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 991px) {
    .feature-grid,
    .application-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-grid,
    .gmsl-layout {
        grid-template-columns: 1fr;
    }

    .rugged-hero h1 {
        font-size: 36px;
    }
}

@media (max-width: 575px) {
    .rugged-hero {
        padding: 65px 0 55px;
    }

    .rugged-hero h1 {
        font-size: 30px;
    }

    .rugged-hero p {
        font-size: 16px;
    }

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

    .feature-section,
    .application-section,
    .product-section,
    .gmsl-section {
        padding: 60px 0;
    }

    .application-card img,
    .product-card img {
        height: 190px;
    }

    .camera-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}