﻿/* ===== Industries Page (Wingskyline) ===== */

.wk-industries-hero {
    background: linear-gradient(120deg, #f8fafc 0%, #ffffff 55%, #f3f4f6 100%);
    border-bottom: 1px solid #e5e7eb;
}

.wk-industries-hero-inner {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    gap: 24px;
    padding: 36px 0;
    align-items: center;
}

.wk-pill,
.wk-detail-tag {
    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-industries-title {
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 800;
    margin: 10px 0 10px;
    color: #111827;
    letter-spacing: -0.5px;
}

.wk-industries-subtitle {
    font-size: 1.05rem;
    color: #4b5563;
    max-width: 820px;
    line-height: 1.65;
    margin: 0 0 16px;
}

.wk-industries-cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.wk-industries-hero-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 18px 18px;
    box-shadow: 0 10px 30px rgba(17,24,39,0.06);
}

    .wk-industries-hero-card ul {
        padding-left: 18px;
        margin: 0;
        color: #374151;
        line-height: 1.7;
    }

.wk-industries-section,
.wk-industry-detail {
    padding: 34px 0;
}

.wk-section-head {
    margin-bottom: 16px;
}

.wk-section-title {
    font-weight: 800;
    color: #111827;
    margin: 0;
    font-size: clamp(22px, 2vw, 30px);
}

.wk-section-subtitle {
    margin: 8px 0 0;
    color: #6b7280;
    max-width: 860px;
    line-height: 1.7;
}

.wk-industries-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.wk-industry-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 16px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

    .wk-industry-card:hover {
        transform: translateY(-2px);
        border-color: #d1d5db;
        box-shadow: 0 14px 34px rgba(17,24,39,0.08);
    }

    .wk-industry-card.active {
        background: linear-gradient(120deg,#f8fafc 0%,#ffffff 55%,#eef2ff 100%);
        border-color: #c7d2fe;
        box-shadow: 0 14px 34px rgba(17,24,39,0.08);
    }

.wk-industry-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(17,24,39,0.06);
    display: grid;
    place-items: center;
    color: #111827;
    flex: 0 0 auto;
}

    .wk-industry-icon i {
        font-size: 20px;
    }

.wk-industry-text {
    flex: 1 1 auto;
    min-width: 0;
}

    .wk-industry-text h5 {
        margin: 0 0 2px;
        font-weight: 800;
        font-size: 1.02rem;
        color: #111827;
    }

    .wk-industry-text p {
        margin: 0;
        color: #6b7280;
        font-size: 0.95rem;
        line-height: 1.4;
    }

.wk-industry-arrow {
    color: #9ca3af;
    flex: 0 0 auto;
}

.wk-industry-card:hover .wk-industry-arrow {
    color: #111827;
}

.wk-detail-wrap {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(17,24,39,0.06);
}

.wk-detail-panel,
.wk-detail-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(17,24,39,0.04);
}

.wk-detail-title {
    font-weight: 800;
    color: #111827;
    margin: 0 0 10px;
    font-size: 1.05rem;
}

.wk-detail-text {
    color: #6b7280;
    line-height: 1.75;
    margin: 0;
}

.wk-detail-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg,#4f46e5,#06b6d4);
    color: #fff;
    font-size: 22px;
    margin-bottom: 12px;
}

.wk-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 18px 0;
}

.wk-detail-callout {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 16px 18px;
    color: #374151;
    line-height: 1.7;
}

.wk-industries-bottom-cta {
    padding: 10px 0 36px;
}

.wk-bottom-cta-box {
    background: linear-gradient(120deg,#f8fafc 0%,#ffffff 55%,#f3f4f6 100%);
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(17,24,39,0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.wk-bottom-cta-title {
    font-weight: 800;
    margin: 0 0 6px;
    color: #111827;
}

.wk-bottom-cta-subtitle {
    color: #6b7280;
    line-height: 1.6;
    max-width: 820px;
}

@media (max-width: 992px) {
    .wk-industries-hero-inner {
        grid-template-columns: 1fr;
    }

    .wk-industries-grid {
        grid-template-columns: 1fr;
    }
}



/* Industry Card */


.wk-industry-icon i {
    font-size: 26px;
    color: #2f6fed;
}


/* Industry Card */
.wk-industry-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f8f9fb;
    padding: 22px;
    border-radius: 12px;
    text-decoration: none;
    transition: all .25s ease;
    border: 1px solid #eef1f5;
}

    /* Hover Effect */
    .wk-industry-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 28px rgba(0,0,0,0.08);
        background: #ffffff;
    }

/* Icon Container */
.wk-industry-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(47,111,237,0.08);
}

    /* Icon */
    .wk-industry-icon i {
        font-size: 22px;
        color: #2f6fed;
    }

/* Text */
.wk-industry-text h5 {
    margin: 0;
    font-weight: 600;
    font-size: 16px;
}

.wk-industry-text p {
    margin: 3px 0 0;
    font-size: 13px;
    color: #6b7280;
}

/* Arrow */
.wk-industry-arrow {
    margin-left: auto;
    color: #9aa3af;
}