﻿/* =========================
       pro-detail-page1 – Full CSS (V3 Premium)
       ========================= */
:root {
    --bg: #f5f7fb;
    --card: #ffffff;
    --text: #1f2937;
    --muted: #6b7280;
    --line: #e7edf5;
    --primary: #1070C3;
    --primaryDark: #0C5FA7;
    --primarySoft: #EEF6FD;
    --navy2: #0A4E8A;
    --shadowA: 0 6px 11px rgb(15 23 42 / 14%);
    --shadowB: 0 6px 11px rgb(15 23 42 / 14%);
    --radius: 14px;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}


.pro-detail-page1 {
    padding: 0 12px;
    line-height: 20px;
    font-size: 0.8rem;
}

/* =========================
       HERO
       ========================= */
.pd-hero {
    background: linear-gradient(180deg, #1070C3 0%, var(--navy2) 100%);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadowB);
    color: #fff;
    position: relative;
}

    .pd-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(520px 220px at 16% 20%, rgba(255,255,255,.14), transparent 60%), radial-gradient(520px 220px at 86% 40%, rgba(255,255,255,.10), transparent 55%);
        pointer-events: none;
    }

.pd-hero-inner {
    padding: 24px 22px 18px;
    position: relative;
    z-index: 1;
}

.pd-hero-title {
    font-size: 22px;
    font-weight: 900;
    margin: 0 0 10px;
    color: #fff !important;
}

.pd-hero-sub {
    font-size: 14.5px;
    color: rgba(255,255,255,.92);
    margin: 0 0 14px;
}

    .pd-hero-sub b {
        color: #fff !important;
    }

.pd-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0 14px;
}

.meta-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.10);
    backdrop-filter: blur(6px);
    font-size: 12.5px;
    white-space: nowrap;
}

.meta-k {
    opacity: .85;
}

.meta-v {
    font-weight: 900;
}

.pd-hero-cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 10px 0 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 900;
    font-size: 13.5px;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    user-select: none;
}

    .btn.primary {
        background: #fff;
        color: var(--primary);
        border: 1px solid rgba(255,255,255,.35);
        box-shadow: 0 12px 18px rgba(0,0,0,.12);
    }

        .btn.primary:hover {
            transform: translateY(-1px);
            box-shadow: 0 16px 26px rgba(0,0,0,.16);
        }

    .btn.ghost {
        background: rgba(255,255,255,.10);
        color: #fff;
        border: 1px solid rgba(255,255,255,.20);
    }

        .btn.ghost:hover {
            transform: translateY(-1px);
            background: rgba(255,255,255,.14);
        }

.pd-hero-note {
    margin: 0;
    font-size: 12.5px;
    color: rgba(255,255,255,.86);
    border-top: 1px solid rgba(255,255,255,.16);
    padding-top: 10px;
}

/* =========================
       SECTION CARD
       ========================= */
.pd-section {
    background: var(--card);
    margin-top: 14px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadowA);
    overflow: hidden;
}

.pd-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
    border-bottom: 1px solid var(--line);
    position: relative;
}

    .pd-head::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 2px;
        background: linear-gradient(90deg, rgba(16,112,195,.55), rgba(16,112,195,.16), rgba(16,112,195,0));
    }

/* FontAwesome icon perfect center */
.faIcon {
    width: 32px;
    height: 32px;
    border-radius: 12px;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 0 !important;
    vertical-align: middle !important;
    background: var(--primarySoft);
    border: 1px solid #CFE5F7;
    color: var(--primary);
    font-size: 16px;
    flex: 0 0 auto;
}

    .faIcon:before {
        line-height: 1 !important;
        display: block;
    }

.pd-head h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: .2px;
    color: #111827;
}

.pd-body {
    padding: 14px 16px 16px;
}

.k {
    font-weight: 900;
    color: var(--primaryDark);
}

.muted {
    color: var(--muted);
}

/* callout */
.callout {
    margin-top: 12px;
    background: linear-gradient(180deg, #F5FAFF 0%, #EEF6FD 100%);
    border: 1px solid #D7EAF9;
    border-left: 4px solid var(--primary);
    padding: 12px 12px;
    border-radius: 12px;
    font-size: 13.5px;
}

/* =========================
       GRIDS / CARDS
       ========================= */
.grid2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.miniCard {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px 14px 13px;
    background: #fff;
    box-shadow: 0 1px 0 rgba(15,23,42,.03);
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

    .miniCard:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 32px rgba(15,23,42,.08);
        border-color: rgba(16,112,195,.20);
    }

    /* stable dot */
    .miniCard .t {
        position: relative;
        padding-left: 18px;
        font-weight: 900;
        font-size: 13.8px;
        line-height: 1.35;
        margin-bottom: 8px;
        color: #111827;
    }

        .miniCard .t::before {
            content: "";
            position: absolute;
            left: 0;
            top: 6px;
            width: 8px;
            height: 8px;
            border-radius: 999px;
            background: var(--primary);
            box-shadow: 0 0 0 4px rgba(16,112,195,.10);
        }

    .miniCard .d {
        margin: 0;
        color: var(--muted);
        font-size: 13.2px;
    }

    .miniCard .pin {
        display: none !important;
    }

/* =========================
       TABLE
       ========================= */
.spec {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
}

    .spec th, .spec td {
        padding: 10px 12px;
        border-bottom: 1px solid var(--line);
        vertical-align: top;
        font-size: 13.5px;
    }

    .spec th {
        width: 34%;
        background: #fbfcfe;
        text-align: left;
        font-weight: 900;
        color: #111827;
    }

    .spec tr:nth-child(even) td {
        background: #fcfdff;
    }

    .spec tr:last-child th,
    .spec tr:last-child td {
        border-bottom: 0;
    }

/* =========================
       MEDIA placeholders
       ========================= */
.mediaRow {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 12px;
    margin-top: 12px;
}

.mediaSlot {
    width: 100%;
    min-height: 180px;
    border-radius: var(--radius);
    border: 1px dashed #B9D8F2;
    color: var(--primaryDark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    text-align: center;
    padding: 10px;
}

.mediaText {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px;
    background: #fff;
}

/* =========================
       PINOUT blocks
       ========================= */
.pinGrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.pinCard {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px;
    background: #fff;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

    .pinCard:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 32px rgba(15,23,42,.08);
        border-color: rgba(16,112,195,.20);
    }

.pinTag {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--primarySoft);
    border: 1px solid #CFE5F7;
    color: var(--primaryDark);
    font-weight: 900;
    font-size: 12.5px;
    margin-bottom: 8px;
}

.pinDesc {
    color: var(--muted);
    font-size: 13.2px;
}

/* =========================
       APPLICATIONS
       ========================= */
.appGrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.appCard {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px;
    background: #fff;
    display: flex;
    gap: 12px;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

    .appCard:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 32px rgba(15,23,42,.08);
        border-color: rgba(16,112,195,.20);
    }

.appIco {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    border: 1px solid #CFE5F7;
    background: var(--primarySoft);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex: 0 0 auto;
}

    .appIco img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.appCard h4 {
    margin: 0 0 6px;
    font-size: 14.8px;
    font-weight: 900;
}

.appCard p {
    margin: 0;
    color: var(--muted);
    font-size: 13.2px;
}

/* =========================
       FAQ / NOTE
       ========================= */
.noteBox {
    margin-top: 14px;
    border: 1px solid #D7EAF9;
    background: linear-gradient(180deg, #fff7f7 0%, #fff1f1 100%);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
    padding: 12px;
    font-size: 13.5px;
    color: #111827;
}

.faq details {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px 12px;
    background: #fff;
    margin-bottom: 10px;
    transition: box-shadow .15s ease, border-color .15s ease;
}

    .faq details[open] {
        box-shadow: 0 16px 32px rgba(15,23,42,.08);
        border-color: rgba(16,112,195,.20);
    }

.faq summary {
    cursor: pointer;
    font-weight: 900;
    font-size: 13.8px;
    color: #111827;
}

.faqBody {
    margin-top: 10px;
    color: var(--muted);
    font-size: 13.2px;
}

/* list */
.clean {
    margin: 10px 0 0;
    padding-left: 18px;
}

    .clean li {
        margin: 6px 0;
    }

/* Responsive */
@media (max-width: 860px) {
    .grid2, .appGrid, .pinGrid {
        grid-template-columns: 1fr;
    }

    .mediaRow {
        grid-template-columns: 1fr;
    }
}




/* =========================
        pro-detail-page2 (Page 2)
        Style: light-glass / engineering clean
        ========================= */
:root {
    --p2-bg: #f4f6fb;
    --p2-card: #ffffff;
    --p2-text: #0f172a;
    --p2-muted: #64748b;
    --p2-line: rgba(15,23,42,.10);
    --p2-red: #1070C3;
    --p2-red2: #0C5FA7;
    --p2-redSoft: #fff1f2;
    --p2-shadow: 0 14px 30px rgba(2,6,23,.08);
    --p2-shadow2: 0 10px 22px rgba(2,6,23,.06);
    --p2-radius: 18px;
    --p2-radius2: 14px;
}

.pro-detail-page2, .pro-detail-page2 * {
    box-sizing: border-box;
}

.pro-detail-page2 {
    padding: 0 10px 3px;
    color: var(--p2-text);
    line-height: 20px;
    font-size: 0.8rem;
}

    /* breadcrumb */
    .pro-detail-page2 .p2-breadcrumb {
        margin: 6px 0 14px;
        font-size: 13px;
        color: var(--p2-muted);
    }

        .pro-detail-page2 .p2-breadcrumb a {
            color: var(--p2-red2);
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .pro-detail-page2 .p2-breadcrumb .sep {
            margin: 0 8px;
            color: rgba(100,116,139,.6);
        }

        .pro-detail-page2 .p2-breadcrumb .current {
            color: rgba(15,23,42,.78);
            font-weight: 800;
        }

    /* hero */
    .pro-detail-page2 .p2-hero {
        background: radial-gradient(900px 240px at 15% 15%, rgba(16,112,195,.16) 0%, rgba(185,28,28,0) 60%), radial-gradient(820px 300px at 80% 15%, rgba(2,6,23,.10) 0%, rgba(2,6,23,0) 62%), linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.78) 100%);
        border: 1px solid var(--p2-line);
        border-radius: var(--p2-radius);
        box-shadow: var(--p2-shadow);
        overflow: hidden;
    }

    .pro-detail-page2 .p2-hero-inner {
        grid-template-columns: 1.3fr .95fr;
        gap: 14px;
        padding: 11px;
        align-items: stretch;
    }

    .pro-detail-page2 .p2-hero-left {
        background: rgba(255,255,255,.66);
        border: 1px solid rgba(15,23,42,.08);
        border-radius: var(--p2-radius);
        padding: 16px 13px 14px;
        box-shadow: var(--p2-shadow2);
    }

    /* title (two-line but one block) */
    .pro-detail-page2 .p2-title {
        margin: 2px 0 10px;
    }

    .pro-detail-page2 .p2-title-main {
        display: block;
        font-size: 19px;
        line-height: 1.20;
        font-weight: 950;
        letter-spacing: .2px;
        color: #0b1220;
    }

    .pro-detail-page2 .p2-title-sub {
        display: block;
        margin-top: 7px;
        font-size: 18px;
        line-height: 1.25;
        font-weight: 900;
        color: rgba(15,23,42,.72);
    }

    .pro-detail-page2 .p2-sub {
        margin: 0 0 12px;
        color: rgba(15,23,42,.80);
    }

        .pro-detail-page2 .p2-sub b {
            color: var(--p2-red2);
        }

    .pro-detail-page2 .p2-ctaRow {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin: 10px 0 12px;
    }

    .pro-detail-page2 .p2-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        height: 40px;
        padding: 0 10px;
        border-radius: 999px;
        font-weight: 950;
        font-size: 12px;
        text-decoration: none;
        transition: .15s ease;
        user-select: none;
        cursor: pointer;
        white-space: nowrap;
    }

    .pro-detail-page2 .p2-btnPrimary {
        background: linear-gradient(180deg, #1070C3 0%, #0C5FA7 100%);
        color: #fff !important;
        box-shadow: 0 10px 18px rgba(16,112,195,.22);
        border: 1px solid rgba(255,255,255,.16);
    }

        .pro-detail-page2 .p2-btnPrimary:hover {
            transform: translateY(-1px);
        }

    .pro-detail-page2 .p2-btnGhost {
        background: rgba(255,255,255,.70);
        color: var(--p2-red2);
        border: 1px solid rgba(16,112,195,.26);
        box-shadow: 0 10px 18px rgba(2,6,23,.06);
    }

        .pro-detail-page2 .p2-btnGhost:hover {
            transform: translateY(-1px);
        }

    .pro-detail-page2 .p2-disclaimerLine {
        margin: 10px 0 0;
        padding-top: 10px;
        border-top: 1px solid rgba(15,23,42,.08);
        color: rgba(100,116,139,.92);
        font-size: 13px;
        display: flex;
        gap: 10px;
        align-items: flex-start;
        line-height: 1.6;
    }

        .pro-detail-page2 .p2-disclaimerLine i {
            color: var(--p2-red2);
            margin-top: 2px;
        }

    /* right card */
    .pro-detail-page2 .p2-hero-right {
        background: rgba(255,255,255,.78);
        border: 1px solid rgba(15,23,42,.08);
        border-radius: var(--p2-radius);
        padding: 14px;
        box-shadow: var(--p2-shadow2);
        display: flex;
        flex-direction: column;
        min-height: 100%;
        margin-top: 10px;
    }

    .pro-detail-page2 .p2-sideHead {
        display: flex;
        gap: 12px;
        align-items: center;
        padding: 6px 4px 10px;
        border-bottom: 1px solid rgba(15,23,42,.08);
    }

    .pro-detail-page2 .p2-sideIco {
        width: 46px;
        height: 46px;
        border-radius: 16px;
        background: var(--p2-redSoft);
        border: 1px solid rgba(16,112,195,.18);
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .pro-detail-page2 .p2-sideIco i {
            color: var(--p2-red2);
            font-size: 18px;
        }

    .pro-detail-page2 .p2-sideTitle {
        font-weight: 950;
        font-size: 14px;
    }

    .pro-detail-page2 .p2-sideSub {
        font-size: 13px;
        color: var(--p2-muted);
        margin-top: 2px;
    }

    .pro-detail-page2 .p2-kvGrid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding: 12px 0 10px;
    }

    .pro-detail-page2 .p2-kv {
        background: rgba(255,255,255,.90);
        border: 1px solid rgba(15,23,42,.08);
        border-radius: 16px;
        padding: 12px 12px;
        min-height: 70px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

        .pro-detail-page2 .p2-kv .k {
            font-size: 12px;
            color: var(--p2-red2);
            margin-bottom: 3px;
        }

        .pro-detail-page2 .p2-kv .v {
            font-size: 12px;
            font-weight: 950;
            color: #0b1220;
            line-height: 1.25;
        }

    .pro-detail-page2 .p2-sideNote {
        margin-top: auto;
        border-top: 1px dashed rgba(15,23,42,.16);
        padding-top: 10px;
        color: rgba(100,116,139,.92);
        font-size: 13px;
        display: flex;
        gap: 10px;
        align-items: flex-start;
        line-height: 1.6;
    }

        .pro-detail-page2 .p2-sideNote i {
            color: var(--p2-red2);
            margin-top: 2px;
        }

    /* sections */
    .pro-detail-page2 .p2-section {
        margin-top: 14px;
        background: rgba(255,255,255,.88);
        border: 1px solid rgba(15,23,42,.08);
        border-radius: var(--p2-radius);
        box-shadow: var(--p2-shadow2);
        overflow: hidden;
    }

    .pro-detail-page2 .p2-head {
        display: flex;
        gap: 12px;
        align-items: center;
        padding: 6px 16px;
        background: linear-gradient(180deg, rgba(238,246,253,.78) 0%, rgba(255,255,255,.82) 100%);
        border-bottom: 1px solid rgba(15,23,42,.08);
    }

    .pro-detail-page2 .p2-headIco {
        width: 38px;
        height: 38px;
        border-radius: 16px;
        background: rgba(238,246,253,.92);
        border: 1px solid rgba(185,28,28,.20);
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

        .pro-detail-page2 .p2-headIco i {
            color: var(--p2-red2);
            font-size: 22px;
        }

    .pro-detail-page2 .p2-headText h3 {
        margin: 0;
        font-size: 14px;
        font-weight: 950;
        color: #0b1220;
        line-height: 1.2;
    }

    .pro-detail-page2 .p2-headSub {
        margin-top: 3px;
        font-size: 13px;
        color: var(--p2-muted);
    }

    .pro-detail-page2 .p2-body {
        padding: 14px 16px 16px;
    }

    .pro-detail-page2 .p2-k {
        font-weight: 950;
        color: var(--p2-red2);
    }

    .pro-detail-page2 .p2-muted {
    }

    /* callout */
    .pro-detail-page2 .p2-callout {
        margin-top: 12px;
        border: 1px solid rgba(16,112,195,.18);
        background: rgba(238,246,253,.62);
        border-radius: 16px;
        padding: 12px 12px;
        box-shadow: 0 10px 18px rgba(16,112,195,.08);
    }

    .pro-detail-page2 .p2-calloutTitle {
        font-weight: 950;
        color: #0C5FA7;
        display: flex;
        gap: 10px;
        align-items: center;
        margin-bottom: 6px;
    }

        .pro-detail-page2 .p2-calloutTitle i {
            color: var(--p2-red2);
        }

    .pro-detail-page2 .p2-calloutBody {
        color: rgba(15,23,42,.78);
    }

    /* grid cards */
    .pro-detail-page2 .p2-grid2 {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .pro-detail-page2 .p2-card {
        background: rgba(255,255,255,.92);
        border: 1px solid rgba(15,23,42,.08);
        border-radius: var(--p2-radius2);
        padding: 12px 12px;
        transition: .15s ease;
    }

        .pro-detail-page2 .p2-card:hover {
            transform: translateY(-1px);
            box-shadow: 0 14px 22px rgba(2,6,23,.08);
        }

    .pro-detail-page2 .p2-cardTop {
        display: flex;
        gap: 10px;
        align-items: center;
        margin-bottom: 6px;
    }

    .pro-detail-page2 .p2-dot {
        width: 9px;
        height: 9px;
        border-radius: 999px;
        background: var(--p2-red2);
        box-shadow: 0 0 0 5px rgba(16,112,195,.12);
        flex: 0 0 auto;
    }

    .pro-detail-page2 .p2-card h4 {
        margin: 0;
        font-size: 15px;
        font-weight: 950;
        line-height: 1.25;
        color: #0b1220;
    }

    .pro-detail-page2 .p2-card p {
    }

    /* feature list (regular) */
    .pro-detail-page2 .p2-featureList {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

        .pro-detail-page2 .p2-featureList li {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            padding: 10px 12px;
            border-radius: 16px;
            border: 1px solid rgba(15,23,42,.08);
            background: rgba(255,255,255,.92);
        }

        .pro-detail-page2 .p2-featureList i {
            color: var(--p2-red2);
            font-size: 18px;
            margin-top: 2px;
            flex: 0 0 auto;
        }

        .pro-detail-page2 .p2-featureList .txt {
            color: rgba(15,23,42,.80);
            line-height: 1.75;
            font-size: 14px;
        }

        .pro-detail-page2 .p2-featureList b {
            color: #0b1220;
        }

    /* media row */
    .pro-detail-page2 .p2-mediaRow {
        display: grid;
        grid-template-columns: 1fr 1.15fr;
        gap: 12px;
        align-items: stretch;
    }

    .pro-detail-page2 .p2-mediaSlot {
        border-radius: var(--p2-radius2);
        border: 1px dashed rgba(16,112,195,.28);
        background: rgb(255 255 255 / 55%);
        min-height: 190px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 8px;
        color: #0C5FA7;
        font-weight: 950;
        text-align: center;
        padding: 14px;
    }

        .pro-detail-page2 .p2-mediaSlot i {
            font-size: 28px;
        }

    .pro-detail-page2 .p2-mediaText {
        border-radius: var(--p2-radius2);
        border: 1px solid rgba(15,23,42,.08);
        background: rgba(255,255,255,.92);
        padding: 12px;
    }

    .pro-detail-page2 .p2-bullets {
        margin: 10px 0 0;
        padding-left: 18px;
        color: var(--p2-red2);
    }

        .pro-detail-page2 .p2-bullets li {
            margin: 6px 0;
        }

    /* pin grid */
    .pro-detail-page2 .p2-pinGrid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .pro-detail-page2 .p2-pinCard {
        border-radius: var(--p2-radius2);
        border: 1px solid rgba(15,23,42,.08);
        background: rgba(255,255,255,.92);
        padding: 12px;
    }

    .pro-detail-page2 .p2-pinTag {
        display: inline-flex;
        padding: 5px 12px;
        border-radius: 999px;
        background: rgba(238,246,253,.92);
        border: 1px solid rgba(16,112,195,.22);
        color: #0C5FA7;
        font-weight: 950;
        font-size: 12.5px;
        margin-bottom: 8px;
    }

    .pro-detail-page2 .p2-pinDesc {
        color: rgba(15,23,42,.82);
    }

    /* table */
    .pro-detail-page2 .p2-spec {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
        border-radius: var(--p2-radius2);
        overflow: hidden;
        border: 1px solid rgba(15,23,42,.08);
        background: rgba(255,255,255,.92);
    }

        .pro-detail-page2 .p2-spec th,
        .pro-detail-page2 .p2-spec td {
            padding: 11px 12px;
            border-bottom: 1px solid rgba(15,23,42,.08);
            font-size: 14px;
            line-height: 1.65;
            vertical-align: top;
        }

        .pro-detail-page2 .p2-spec th {
            width: 34%;
            text-align: left;
            background: rgba(2,6,23,.03);
            font-weight: 750;
            color: #0b1220;
        }

        .pro-detail-page2 .p2-spec tr:last-child th,
        .pro-detail-page2 .p2-spec tr:last-child td {
            border-bottom: 0;
        }

    /* small blocks */
    .pro-detail-page2 .p2-subBox {
        margin-top: 14px;
        border: 1px solid rgba(15,23,42,.08);
        background: rgba(255,255,255,.92);
        border-radius: var(--p2-radius2);
        padding: 12px;
    }

    .pro-detail-page2 .p2-subTitle {
        font-weight: 950;
        color: #0b1220;
        display: flex;
        gap: 10px;
        align-items: center;
        margin-bottom: 6px;
    }

        .pro-detail-page2 .p2-subTitle i {
            color: var(--p2-red2);
        }

    .pro-detail-page2 .p2-subText {
    }

    .pro-detail-page2 .p2-noteBox {
        margin-top: 14px;
        border: 1px solid rgba(16,112,195,.18);
        background: rgba(238,246,253,.58);
        border-radius: var(--p2-radius2);
        padding: 12px;
        color: rgba(15,23,42,.82);
        display: flex;
        gap: 10px;
        align-items: flex-start;
        line-height: 1.7;
        font-size: 13.5px;
    }

        .pro-detail-page2 .p2-noteBox i {
            color: var(--p2-red2);
            margin-top: 2px;
        }

    /* Equivalent mini cards */
    .pro-detail-page2 .p2-mini {
        border: 1px solid rgba(15,23,42,.08);
        background: rgba(255,255,255,.92);
        border-radius: var(--p2-radius2);
        padding: 12px;
    }

    .pro-detail-page2 .p2-miniT {
        font-weight: 950;
        display: flex;
        gap: 10px;
        align-items: center;
        margin-bottom: 6px;
        color: #0b1220;
    }

        .pro-detail-page2 .p2-miniT i {
            color: var(--p2-red2);
        }

    .pro-detail-page2 .p2-miniD {
        color: rgba(100,116,139,.95);
    }

    /* Applications plain list (no image / no icon per item) */
    .pro-detail-page2 .p2-appPlain {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .pro-detail-page2 .p2-appItem {
        border: 1px solid rgba(15,23,42,.08);
        background: rgba(255,255,255,.92);
        border-radius: var(--p2-radius2);
        padding: 12px;
    }

    .pro-detail-page2 .p2-appName {
        font-weight: 950;
        color: #0b1220;
        margin-bottom: 6px;
        font-size: 15px;
    }

    .pro-detail-page2 .p2-appDesc {
    }

    /* QA grid */
    .pro-detail-page2 .p2-qaGrid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .pro-detail-page2 .p2-qa {
        border: 1px solid rgba(15,23,42,.08);
        background: rgba(255,255,255,.92);
        border-radius: var(--p2-radius2);
        padding: 12px;
    }

    .pro-detail-page2 .p2-qaT {
        font-weight: 950;
        color: #0b1220;
        display: flex;
        gap: 10px;
        align-items: center;
        margin-bottom: 6px;
    }

        .pro-detail-page2 .p2-qaT i {
            color: var(--p2-red2);
        }

    .pro-detail-page2 .p2-qaD {
    }

    /* FAQ */
    .pro-detail-page2 .p2-faq details {
        border: 1px solid rgba(15,23,42,.08);
        background: rgba(255,255,255,.92);
        border-radius: var(--p2-radius2);
        padding: 10px 12px;
        margin-bottom: 10px;
    }

    .pro-detail-page2 .p2-faq summary {
        cursor: pointer;
        font-weight: 950;
        color: #0b1220;
        font-size: 14px;
    }

    .pro-detail-page2 .p2-faqBody {
        margin-top: 8px;
        color: rgba(100,116,139,.95);
        line-height: 1.75;
        font-size: 13.5px;
    }

/* responsive */
@media (max-width: 1060px) {
    .pro-detail-page2 .p2-hero-inner {
        grid-template-columns: 1fr;
    }

    .pro-detail-page2 .p2-title-main {
        font-size: 15px;
    }

    .pro-detail-page2 .p2-title-sub {
        font-size: 16px;
    }
}

@media (max-width: 860px) {
    .pro-detail-page2 .p2-grid2,
    .pro-detail-page2 .p2-pinGrid,
    .pro-detail-page2 .p2-appPlain,
    .pro-detail-page2 .p2-qaGrid {
        grid-template-columns: 1fr;
    }

    .pro-detail-page2 .p2-mediaRow {
        grid-template-columns: 1fr;
    }
}
