﻿/* =========================================
   WINGSKYLINE PRODUCTS PAGE
   ========================================= */

/* HERO */
.wk-products-hero {
    background: linear-gradient(120deg, #f8fafc 0%, #ffffff 55%, #f3f4f6 100%);
    border-bottom: 1px solid #e5e7eb;
}

.wk-pill {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 12px;
    background: rgba(17,24,39,0.06);
    color: #111827;
}

.wk-title {
    font-size: clamp(30px, 3vw, 48px);
    font-weight: 900;
    color: #111827;
    letter-spacing: -0.6px;
    line-height: 1.1;
    margin: 0;
}

.wk-subtitle {
    font-size: 1.08rem;
    color: #4b5563;
    line-height: 1.7;
    max-width: 780px;
}

.wk-hero-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(17,24,39,0.06);
}

    .wk-hero-card ul {
        padding-left: 18px;
        margin: 0;
        color: #374151;
        line-height: 1.75;
    }

/* METRICS */
.wk-metrics {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.wk-metric {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 12px 14px;
    min-width: 130px;
    box-shadow: 0 10px 24px rgba(17,24,39,0.04);
}

.wk-metric-num {
    font-weight: 900;
    font-size: 18px;
    color: #111827;
}

.wk-metric-label {
    color: #6b7280;
    font-size: 13px;
}

/* SECTIONS */
.wk-section {
    padding: 80px 0;
}

    .wk-section.wk-alt {
        background: #f9fafb;
    }

.wk-section-head {
    max-width: 900px;
    margin-bottom: 30px;
}

.wk-section-title,
.wk-h2 {
    font-weight: 900;
    color: #111827;
    margin: 0;
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1.2;
}

.wk-section-subtitle {
    margin: 8px 0 0;
    color: #6b7280;
    max-width: 860px;
    line-height: 1.75;
}

.wk-h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: #111827;
    line-height: 1.4;
}

.wk-h6 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-top: 8px;
    color: #111827;
}

.wk-sub {
    color: #4b5563;
    font-size: 1rem;
    max-width: 820px;
    line-height: 1.8;
}

.wk-sub2 {
    margin: 0;
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.75;
}

/* FEATURED PRODUCT CARDS */
.wk-product-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(17,24,39,0.06);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

    .wk-product-card:hover {
        transform: translateY(-2px);
        border-color: #d1d5db;
        box-shadow: 0 14px 34px rgba(17,24,39,0.08);
    }

.wk-product-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.wk-product-badge {
    font-size: 12px;
    font-weight: 800;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(17,24,39,0.06);
    color: #111827;
}

.wk-product-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(17,24,39,0.06);
    display: grid;
    place-items: center;
    color: #111827;
}

    .wk-product-icon i {
        font-size: 20px;
    }

.wk-product-title {
    font-weight: 900;
    margin: 0 0 8px;
    color: #111827;
}

.wk-product-desc {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 14px;
}

/* TAGS */
.wk-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.wk-tag {
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    color: #374151;
    font-weight: 700;
}

/* ACTIONS */
.wk-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* ENTERPRISE DETAIL CARDS */
.wk-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 22px;
    transition: all .25s ease;
    box-shadow: 0 10px 30px rgba(17,24,39,0.06);
}

    .wk-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 32px rgba(0,0,0,0.06);
    }

.wk-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 16px 0;
}

.wk-list {
    padding-left: 18px;
    margin: 0;
}

    .wk-list li {
        margin-bottom: 6px;
        color: #4b5563;
        line-height: 1.75;
    }

.wk-list-sm {
    padding-left: 16px;
    font-size: 0.9rem;
    margin: 0;
}

    .wk-list-sm li {
        margin-bottom: 4px;
        line-height: 1.65;
    }

.wk-mini-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #2563eb;
    margin-bottom: 6px;
}

.wk-callout {
    background: #f3f4f6;
    padding: 14px;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.7;
}

.wk-pillbox {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 14px;
}

.wk-pillbox-title {
    font-weight: 700;
    margin-bottom: 6px;
    color: #111827;
}

.wk-media {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    text-align: center;
    height: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.wk-img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.wk-media-note {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0;
    padding: 10px 14px 14px;
    background: #f9fafb;
}

.wk-muted {
    color: #6b7280;
    font-weight: 500;
}

/* CTA */
.wk-products-cta {
    background: #111827;
    color: #ffffff;
}

.wk-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    background: transparent;
    border: 0;
    border-radius: 22px;
    padding: 22px 0;
    box-shadow: none;
}

.wk-cta-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 6px;
}

.wk-cta-subtitle {
    opacity: 0.8;
    line-height: 1.7;
    max-width: 760px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .wk-cta-inner {
        padding: 18px 0;
    }
}

.wk-eng-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, #4f46e5, #06b6d4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.18);
}

    .wk-eng-icon i {
        font-size: 24px;
        color: #ffffff;
        line-height: 1;
    }