@charset "utf-8";
@import url("https://cdn.jsdelivr.net/gh/moonspam/NanumBarunGothic@1.0/nanumbarungothicsubset.css");
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700,800&display=swap');
@import url("https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap");

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'NanumBarunGothic', '돋움', 'Dotum', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #222;
    background: #fff;
    word-break: keep-all;
}

/* ── Header ── */
.pd-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
    z-index: 999;
    transition: box-shadow 0.35s, height 0.35s;
}
.pd-header.scrolled {
    height: 60px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    height: 100%;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* Logo */
.header-logo { display: flex; align-items: center; text-decoration: none; }
.header-logo img { height: 28px; }
.header-logo .logo-light { display: none; }
.header-logo .logo-dark { display: block; }
/* Nav */
.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}
.header-nav a {
    font-family: 'Montserrat', 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
    letter-spacing: 0.2px;
}
.header-nav a:hover {
    color: #0f4c81;
    background: rgba(15,76,129,0.05);
}
/* Active indicator */
.nav-product {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.nav-product a.active {
    color: #0f4c81;
    font-weight: 700;
}
.nav-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #0f4c81, #23a6d5);
}
/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 10px;
    min-width: 360px;
    z-index: 100;
}
.nav-dropdown-menu-inner {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    padding: 8px 0;
    overflow: hidden;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    padding: 10px 20px !important;
    font-size: 13px !important;
    color: #444 !important;
    border-radius: 0 !important;
    transition: background 0.15s;
}
.nav-dropdown-menu a:hover {
    background: rgba(15,76,129,0.06) !important;
    color: #0f4c81 !important;
}
.nav-dropdown-menu a.current {
    color: #0f4c81 !important;
    font-weight: 700 !important;
    background: rgba(15,76,129,0.04) !important;
}
.nav-dropdown-menu a small {
    font-size: 11px;
    color: #999;
    font-weight: 400;
    margin-left: 8px;
}
/* Contact button */
.nav-contact-btn {
    margin-left: 8px;
    background: #0f4c81 !important;
    color: #fff !important;
    border-radius: 8px !important;
    padding: 8px 22px !important;
    font-weight: 600 !important;
    transition: background 0.2s, transform 0.2s !important;
}
.nav-contact-btn:hover {
    background: #1a7ab5 !important;
    color: #fff !important;
    transform: translateY(-1px);
}
/* Mobile button */
.header-mobile-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 20px;
    position: relative;
    padding: 0;
}
.header-mobile-btn span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #444;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.header-mobile-btn span:nth-child(1) { top: 0; }
.header-mobile-btn span:nth-child(2) { top: 9px; }
.header-mobile-btn span:nth-child(3) { top: 18px; }
.header-mobile-btn.open span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.header-mobile-btn.open span:nth-child(2) { opacity: 0; }
.header-mobile-btn.open span:nth-child(3) { top: 9px; transform: rotate(-45deg); }
/* Mobile nav */
.header-mobile-nav {
    display: none;
    flex-direction: column;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    padding: 12px 24px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.header-mobile-nav.open { display: flex; }
.header-mobile-nav a {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #444;
    text-decoration: none;
    padding: 12px 8px;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.2s;
}
.header-mobile-nav a:last-child { border-bottom: none; }
.header-mobile-nav a:hover,
.header-mobile-nav a.active { color: #0f4c81; font-weight: 700; }

/* ── Hero ── */
.pd-hero {
    margin-top: 0;
    position: relative;
    padding-top: 72px;
    min-height: 560px;
    background: linear-gradient(135deg, #0a1628 0%, #0f4c81 40%, #1a7ab5 70%, #23a6d5 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}
.pd-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(176,194,29,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.pd-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(35,166,213,0.2) 0%, transparent 70%);
    border-radius: 50%;
}
.pd-hero .hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    width: 100%;
}
.pd-hero .badge {
    display: inline-block;
    background: rgba(176,194,29,0.2);
    border: 1px solid rgba(176,194,29,0.5);
    color: #d4e857;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}
.pd-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 12px;
}
.pd-hero h1 span { color: #b0c21d; }
.pd-hero .hero-sub {
    font-size: 20px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    max-width: 600px;
}
.pd-hero .hero-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    margin-top: -16px;
    margin-bottom: 32px;
    max-width: 600px;
}
.pd-hero .hero-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.pd-hero .hero-tags .tag {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 6px;
}

/* ── Section common ── */
.pd-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 48px;
}
.pd-section-full {
    padding: 80px 0;
}
.pd-section-gray { background: #f7f8fa; }
.pd-section-dark { background: #0a1628; }
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #0f4c81;
    margin-bottom: 8px;
}
.section-title span { color: #b0c21d; }
.section-subtitle {
    font-size: 16px;
    color: #777;
    margin-bottom: 48px;
}

/* ── Key Value (3-column) ── */
.kv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.kv-card {
    background: #fff;
    border: 1px solid #eaedf2;
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
}
.kv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(15,76,129,0.1);
}
.kv-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}
.kv-icon.blue { background: rgba(15,76,129,0.1); color: #0f4c81; }
.kv-icon.green { background: rgba(176,194,29,0.15); color: #7a8a10; }
.kv-icon.teal { background: rgba(35,166,213,0.12); color: #1a7ab5; }
.kv-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}
.kv-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* ── Compliance ── */
.comp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.comp-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    transition: background 0.2s;
}
.comp-card:hover { background: rgba(255,255,255,0.1); }
.comp-card .comp-icon {
    font-size: 32px;
    margin-bottom: 12px;
}
.comp-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.comp-card p {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}

/* ── Module list ── */
.mod-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.mod-card {
    display: flex;
    gap: 20px;
    background: #fff;
    border: 1px solid #eaedf2;
    border-radius: 14px;
    padding: 28px;
    transition: box-shadow 0.25s;
}
.mod-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.mod-num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0f4c81, #1a7ab5);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mod-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin-bottom: 6px;
}
.mod-card .mod-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: #0f4c81;
    background: rgba(15,76,129,0.08);
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
}
.mod-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.65;
}
.mod-card ul {
    list-style: none;
    padding: 0;
    margin-top: 8px;
}
.mod-card ul li {
    font-size: 13px;
    color: #555;
    padding: 3px 0;
    padding-left: 16px;
    position: relative;
}
.mod-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #b0c21d;
}

/* ── Workflow ── */
.wf-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-top: 48px;
    flex-wrap: wrap;
}
.wf-step {
    text-align: center;
    flex: 1;
    min-width: 140px;
    max-width: 180px;
    position: relative;
}
.wf-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 28px;
    right: -20px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #0f4c81, #b0c21d);
}
.wf-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f4c81, #23a6d5);
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    box-shadow: 0 4px 16px rgba(15,76,129,0.25);
}
.wf-step h4 {
    font-size: 14px;
    font-weight: 700;
    color: #222;
    margin-bottom: 4px;
}
.wf-step p {
    font-size: 12px;
    color: #888;
    line-height: 1.5;
}

/* ── Diff (특장점) ── */
.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.diff-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    border: 1px solid #eaedf2;
    overflow: hidden;
}
.diff-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0f4c81, #b0c21d);
}
.diff-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0f4c81;
    margin-bottom: 10px;
}
.diff-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
}

/* ── Custom Build (기업 맞춤형) ── */
.pd-section-custom {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8edf5 100%);
    padding: 100px 48px;
}
.custom-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.custom-badge {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #0f4c81;
    background: rgba(15,76,129,0.08);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.custom-title {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.4;
    color: #0a1628;
    margin-bottom: 20px;
}
.custom-title span {
    color: #0f4c81;
    position: relative;
}
.custom-title span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 8px;
    background: rgba(176,194,29,0.3);
    z-index: -1;
}
.custom-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}
.custom-desc strong {
    color: #0f4c81;
    font-weight: 700;
}
.custom-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.custom-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #fff;
    border-radius: 14px;
    padding: 24px 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: transform 0.25s, box-shadow 0.25s;
}
.custom-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(15,76,129,0.12);
}
.custom-step-num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f4c81, #1a6fb5);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
}
.custom-step h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 6px;
}
.custom-step p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* ── CTA ── */
.pd-cta {
    text-align: center;
    padding: 80px 48px;
    background: linear-gradient(135deg, #0a1628 0%, #0f4c81 100%);
}
.pd-cta h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}
.pd-cta p {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
}
.pd-cta .cta-btn {
    display: inline-block;
    background: #b0c21d;
    color: #0a1628;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 40px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.pd-cta .cta-btn:hover {
    background: #c5d82a;
    transform: translateY(-2px);
}

/* ── Footer ── */
.pd-footer {
    background: #0a1628;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 32px 48px;
    text-align: center;
}
.pd-footer p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}
.pd-footer a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
}

/* ── F-ELN Hero ── */
.feln-hero {
    background: linear-gradient(135deg, #1a6b3c 0%, #0f4c81 40%, #23a6d5 100%) !important;
}
.feln-cta {
    background: linear-gradient(135deg, #0a2818 0%, #1a6b3c 50%, #0f4c81 100%) !important;
}

/* ── F-ELN Dual Layout ── */
.feln-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.feln-sub-title {
    font-size: 18px;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #0f4c81;
    display: inline-block;
}

/* Hierarchy */
.feln-hierarchy { display: flex; flex-direction: column; align-items: flex-start; }
.feln-hier-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #f8f9fc;
    border-radius: 12px;
    width: 100%;
    border-left: 3px solid #0f4c81;
}
.feln-hier-icon { font-size: 24px; flex-shrink: 0; }
.feln-hier-item h4 { font-size: 15px; font-weight: 700; color: #0a1628; margin-bottom: 2px; }
.feln-hier-item p { font-size: 13px; color: #666; }
.feln-hier-line {
    width: 2px;
    height: 16px;
    background: #d0d7e2;
    margin-left: 36px;
}

/* Smart Input */
.feln-smart-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.feln-smart-card {
    background: #f8f9fc;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #eaedf2;
    transition: border-color 0.2s;
}
.feln-smart-card:hover { border-color: #0f4c81; }
.feln-smart-num {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #23a6d5;
    margin-bottom: 8px;
}
.feln-smart-card h4 { font-size: 15px; font-weight: 700; color: #0a1628; margin-bottom: 8px; }
.feln-smart-card p { font-size: 13px; color: #666; line-height: 1.6; margin-bottom: 8px; }
.feln-smart-card small { font-size: 12px; color: #0f4c81; font-weight: 600; }

/* Raw Material */
.feln-rm-list { display: flex; flex-direction: column; gap: 16px; }
.feln-rm-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #eaedf2;
}
.feln-rm-label {
    flex-shrink: 0;
    width: 90px;
    padding: 10px 0;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    border-radius: 8px;
}
.feln-rm-general .feln-rm-label { background: #0f4c81; }
.feln-rm-review .feln-rm-label { background: #6b7b8d; }
.feln-rm-proposal .feln-rm-label { background: #23a6d5; }
.feln-rm-item p { font-size: 14px; font-weight: 600; color: #333; margin-bottom: 2px; }
.feln-rm-item small { font-size: 12px; color: #999; }

/* Search Features */
.feln-search-features { display: flex; flex-direction: column; gap: 20px; }
.feln-search-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.feln-search-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15,76,129,0.08);
    border-radius: 10px;
    font-size: 20px;
}
.feln-search-item h4 { font-size: 15px; font-weight: 700; color: #0a1628; margin-bottom: 4px; }
.feln-search-item p { font-size: 13px; color: #666; line-height: 1.6; }

/* Approval Features */
.feln-approval-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid #eaedf2;
}
.feln-approval-col .feln-sub-title { border-bottom-color: #b0c21d; }
.feln-feature-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.feln-feature-list li {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    padding: 14px 18px;
    background: #f8f9fc;
    border-radius: 10px;
    border-left: 3px solid #0f4c81;
}

/* Integration */
.feln-integration-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    text-align: center;
    margin-bottom: 48px;
}
.feln-integration-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.feln-integration-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    min-width: 160px;
    flex: 1;
    max-width: 200px;
    transition: background 0.2s;
}
.feln-integration-card:hover { background: rgba(255,255,255,0.1); }
.feln-int-center {
    background: rgba(176,194,29,0.15) !important;
    border-color: rgba(176,194,29,0.3) !important;
    transform: scale(1.08);
}
.feln-int-icon { font-size: 32px; margin-bottom: 12px; }
.feln-int-hub { font-size: 40px; }
.feln-integration-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}
.feln-integration-card p { font-size: 12px; color: rgba(255,255,255,0.6); }

/* AI Section */
.feln-ai-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.feln-ai-card {
    background: #f8f9fc;
    border-radius: 20px;
    padding: 36px 32px;
    border: 1px solid #eaedf2;
    transition: box-shadow 0.25s;
}
.feln-ai-card:hover { box-shadow: 0 8px 32px rgba(15,76,129,0.1); }
.feln-ai-icon {
    font-size: 36px;
    margin-bottom: 16px;
    display: block;
}
.feln-ai-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 10px;
}
.feln-ai-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}
.feln-ai-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.feln-ai-list li {
    font-size: 13px;
    color: #444;
    line-height: 1.6;
    padding-left: 0;
}
.feln-ai-list li strong { color: #0f4c81; }
.feln-ai-note {
    display: block;
    margin-top: 16px;
    font-size: 12px;
    color: #e74c3c;
}

/* References */
.feln-ref-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.feln-ref-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid #eaedf2;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.feln-ref-icon {
    font-size: 28px;
    margin-bottom: 12px;
    display: block;
}
.feln-ref-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #0f4c81;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #eaedf2;
}
.feln-ref-body { display: flex; flex-direction: column; gap: 16px; }
.feln-ref-client h4 {
    font-size: 14px;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 4px;
}
.feln-ref-client p { font-size: 13px; color: #666; line-height: 1.6; }

/* ── Responsive ── */
@media screen and (max-width: 991px) {
    .header-inner { padding: 0 24px; }
    .header-nav { display: none; }
    .header-mobile-btn { display: block; }
    .pd-hero .hero-inner { padding: 0 24px; }
    .pd-hero h1 { font-size: 36px; }
    .pd-section { padding: 60px 24px; }
    .kv-grid { grid-template-columns: 1fr; gap: 20px; }
    .comp-grid { grid-template-columns: repeat(2, 1fr); }
    .mod-grid { grid-template-columns: 1fr; }
    .diff-grid { grid-template-columns: 1fr; }
    .wf-steps { flex-direction: column; align-items: center; }
    .wf-step:not(:last-child)::after { display: none; }
    .wf-step { max-width: 100%; }
    .custom-layout { grid-template-columns: 1fr; gap: 40px; }
    .custom-title { font-size: 28px; }
    .pd-section-custom { padding: 70px 32px; }
    .feln-dual { grid-template-columns: 1fr; gap: 36px; }
    .feln-smart-grid { grid-template-columns: 1fr 1fr; }
    .feln-approval-features { grid-template-columns: 1fr; gap: 32px; }
    .feln-ai-grid { grid-template-columns: 1fr; }
    .feln-ref-grid { grid-template-columns: 1fr; }
    .feln-integration-card { min-width: 140px; }
    .feln-int-center { transform: scale(1); }
}
@media screen and (max-width: 767px) {
    .pd-header nav { display: none; }
    .pd-hero { height: auto; padding: 60px 0; }
    .pd-hero h1 { font-size: 28px; }
    .pd-hero .hero-sub { font-size: 16px; }
    .comp-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 24px; }
    .custom-title { font-size: 24px; }
    .custom-step { padding: 18px 20px; }
    .feln-smart-grid { grid-template-columns: 1fr; }
    .feln-integration-grid { flex-direction: column; }
    .feln-integration-card { max-width: 100%; width: 100%; }
}

/* ══════════════════════════════════════════
   R&D-PMS Page Styles
   ══════════════════════════════════════════ */

/* Hero */
.pms-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 30%, #0f3460 60%, #1a5276 100%) !important;
}
.pms-hero::before {
    background: radial-gradient(circle, rgba(52,152,219,0.18) 0%, transparent 70%) !important;
}
.pms-hero .badge {
    background: rgba(52,152,219,0.2) !important;
    border-color: rgba(52,152,219,0.5) !important;
    color: #85c1e9 !important;
}
.pms-hero h1 span { color: #5dade2 !important; }

/* CTA */
.pms-cta {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%) !important;
}

/* System Position */
.pms-position-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 900px;
    margin: 40px auto 0;
}
.pms-position-layer {
    display: flex;
    align-items: stretch;
    gap: 16px;
}
.pms-layer-label {
    width: 120px;
    min-width: 120px;
    background: #0f3460;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    border-radius: 10px;
    padding: 16px 8px;
}
.pms-layer-items {
    flex: 1;
    display: flex;
    gap: 12px;
}
.pms-layer-box {
    flex: 1;
    padding: 18px 20px;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #222;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.pms-layer-box small {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: #666;
    margin-top: 4px;
}
.pms-box-strategy { background: #d5f5e3; border: 1px solid #a9dfbf; }
.pms-box-core { background: #d4e6f1; border: 2px solid #5dade2; }
.pms-box-template { background: #fdebd0; border: 1px solid #f0b27a; }
.pms-box-product { background: #e8daef; border: 1px solid #bb8fce; }
.pms-box-resource { background: #fae5d3; border: 1px solid #edbb99; }
.pms-position-legacy {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    padding-left: 136px;
}
.pms-legacy-box {
    flex: 1;
    padding: 14px 16px;
    background: #ebedef;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    text-align: center;
}
.pms-legacy-box small {
    display: block;
    font-size: 10px;
    font-weight: 400;
    color: #888;
    margin-top: 2px;
}

/* Core Modules */
.pms-modules {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.pms-module-card {
    background: #fff;
    border: 1px solid #e8ecef;
    border-radius: 16px;
    padding: 32px 28px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.pms-module-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.pms-module-icon {
    font-size: 32px;
    margin-bottom: 16px;
}
.pms-module-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f3460;
    margin-bottom: 16px;
}
.pms-module-card ul {
    list-style: none;
    padding: 0;
}
.pms-module-card li {
    font-size: 13px;
    color: #555;
    padding: 6px 0;
    border-bottom: 1px solid #f4f4f4;
    line-height: 1.5;
}
.pms-module-card li:last-child { border-bottom: none; }
.pms-module-card li::before {
    content: '>';
    color: #5dade2;
    font-weight: 700;
    margin-right: 8px;
}

/* Project Types */
.pms-type-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.pms-type-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 28px 24px;
    backdrop-filter: blur(8px);
}
.pms-type-label {
    display: inline-block;
    background: rgba(93,173,226,0.2);
    border: 1px solid rgba(93,173,226,0.5);
    color: #85c1e9;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}
.pms-type-card h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}
.pms-type-desc {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.pms-type-card ul {
    list-style: none;
    padding: 0;
}
.pms-type-card li {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    padding: 5px 0;
    line-height: 1.5;
}
.pms-type-card li::before {
    content: '>';
    color: #5dade2;
    font-weight: 700;
    margin-right: 6px;
}

/* Dashboard Features */
.pms-dashboard-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.pms-dash-card {
    background: #f8f9fb;
    border: 1px solid #e8ecef;
    border-radius: 16px;
    padding: 32px 28px;
    transition: transform 0.2s;
}
.pms-dash-card:hover { transform: translateY(-3px); }
.pms-dash-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #5dade2;
    margin-bottom: 12px;
}
.pms-dash-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #0f3460;
    margin-bottom: 10px;
}
.pms-dash-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Template & Knowledge dual */
.pms-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 40px;
}
.pms-dual-block {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid #e8ecef;
}
.pms-dual-block h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f3460;
    margin-bottom: 20px;
}
.pms-dual-block ul {
    list-style: none;
    padding: 0;
}
.pms-dual-block li {
    font-size: 14px;
    color: #555;
    padding: 8px 0;
    border-bottom: 1px solid #f4f4f4;
    line-height: 1.6;
}
.pms-dual-block li:last-child { border-bottom: none; }
.pms-dual-block li::before {
    content: '>';
    color: #5dade2;
    font-weight: 700;
    margin-right: 8px;
}

/* Implementation Process */
.pms-process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.pms-process-step {
    background: #f8f9fb;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid #e8ecef;
    position: relative;
}
.pms-process-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #5dade2;
    margin-bottom: 12px;
}
.pms-process-step h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0f3460;
    margin-bottom: 14px;
}
.pms-process-step ul {
    list-style: none;
    padding: 0;
}
.pms-process-step li {
    font-size: 13px;
    color: #555;
    padding: 5px 0;
    line-height: 1.5;
}
.pms-process-step li::before {
    content: '-';
    color: #5dade2;
    font-weight: 700;
    margin-right: 6px;
}

/* ePMS Clinical grid */
.pms-epms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.pms-epms-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px 24px;
    border: 1px solid #e8ecef;
    transition: transform 0.2s;
}
.pms-epms-card:hover { transform: translateY(-3px); }
.pms-epms-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0f3460;
    margin-bottom: 10px;
}
.pms-epms-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* References */
.pms-ref-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.pms-ref-group {
    background: #f8f9fb;
    border-radius: 14px;
    padding: 28px 24px;
    border: 1px solid #e8ecef;
}
.pms-ref-group h4 {
    font-size: 15px;
    font-weight: 700;
    color: #0f3460;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #5dade2;
}
.pms-ref-group p {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
}

/* ── PMS Screen Showcase ── */
.pms-showcase-tabs {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.pms-showcase-tab {
    padding: 10px 22px;
    border: 1.5px solid #ddd;
    border-radius: 24px;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.25s;
}
.pms-showcase-tab:hover {
    border-color: #2765f0;
    color: #2765f0;
}
.pms-showcase-tab.active {
    background: #2765f0;
    border-color: #2765f0;
    color: #fff;
}
.pms-showcase-panels { position: relative; }
.pms-showcase-panel {
    display: none;
    animation: pmsScreenFade 0.4s ease;
}
.pms-showcase-panel.active { display: block; }
@keyframes pmsScreenFade {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Browser Frame */
.pms-browser {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
    background: #fff;
    max-width: 1060px;
    margin: 0 auto;
}
.pms-browser-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #f0f1f4;
    border-bottom: 1px solid #e0e1e4;
}
.pms-browser-dots {
    display: flex;
    gap: 6px;
}
.pms-browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.pms-browser-dots span:nth-child(1) { background: #ff5f57; }
.pms-browser-dots span:nth-child(2) { background: #febc2e; }
.pms-browser-dots span:nth-child(3) { background: #28c840; }
.pms-browser-url {
    flex: 1;
    margin-left: 8px;
    padding: 5px 14px;
    background: #fff;
    border-radius: 6px;
    font-size: 12px;
    color: #888;
    font-family: 'Roboto', monospace;
    border: 1px solid #ddd;
}
.pms-browser-body {
    display: flex;
    min-height: 420px;
    font-size: 12px;
    line-height: 1.5;
    overflow: hidden;
}

/* ISP Nav Sidebar Mockup */
.pms-mock-nav {
    width: 52px;
    min-width: 52px;
    background: #1a1f36;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 0;
    gap: 4px;
}
.pms-mock-nav-logo {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #2765f0;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}
.pms-mock-nav-item {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    cursor: default;
    transition: background 0.2s;
}
.pms-mock-nav-item.active {
    background: rgba(255,255,255,0.12);
    color: #fff;
}

/* ISP Main Area */
.pms-mock-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #f7f8fa;
}
.pms-mock-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    background: #fff;
    border-bottom: 1px solid #eee;
}
.pms-mock-header h3 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1f36;
}
.pms-mock-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.pms-mock-header-tabs {
    display: flex;
    gap: 0;
    margin-left: 24px;
}
.pms-mock-header-tab {
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    color: #888;
    border: 1px solid #ddd;
    background: #f7f8fa;
    cursor: default;
}
.pms-mock-header-tab:first-child { border-radius: 6px 0 0 6px; }
.pms-mock-header-tab:last-child { border-radius: 0 6px 6px 0; }
.pms-mock-header-tab.active {
    background: #2765f0;
    border-color: #2765f0;
    color: #fff;
}
.pms-mock-content {
    flex: 1;
    padding: 20px 24px;
    overflow: hidden;
}

/* Dashboard Mockup */
.pms-mock-dash {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    height: 100%;
}
.pms-mock-panel {
    background: #fff;
    border-radius: 8px;
    padding: 14px 16px;
    border: 1px solid #eaedf0;
}
.pms-mock-panel-title {
    font-size: 12px;
    font-weight: 700;
    color: #1a1f36;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.pms-mock-panel-more {
    font-size: 10px;
    color: #999;
}
.pms-mock-card {
    padding: 10px 12px;
    border-radius: 6px;
    margin-bottom: 6px;
    border-left: 3px solid transparent;
}
.pms-mock-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}
.pms-mock-card-title {
    font-size: 11px;
    color: #333;
    font-weight: 500;
}
.pms-mock-card-date {
    font-size: 10px;
    color: #aaa;
}
.pms-mock-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.4;
}
.pms-mock-badge.green { background: #e8f5e9; color: #2e7d32; }
.pms-mock-badge.yellow { background: #fff8e1; color: #f57f17; }
.pms-mock-badge.red { background: #ffebee; color: #c62828; }
.pms-mock-badge.blue { background: #e3f2fd; color: #1565c0; }
.pms-mock-badge.purple { background: #f3e5f5; color: #7b1fa2; }
.pms-mock-card.bg-green { background: #f6faf6; border-left-color: #4caf50; }
.pms-mock-card.bg-yellow { background: #fffdf5; border-left-color: #ff9800; }
.pms-mock-card.bg-red { background: #fef6f6; border-left-color: #f44336; }
.pms-mock-card.bg-blue { background: #f5f9ff; border-left-color: #2765f0; }

/* Table Mockup */
.pms-mock-table {
    width: 100%;
    font-size: 11px;
    border-collapse: collapse;
}
.pms-mock-table th {
    padding: 6px 8px;
    text-align: left;
    font-weight: 600;
    color: #666;
    border-bottom: 1.5px solid #ddd;
    font-size: 10px;
    white-space: nowrap;
}
.pms-mock-table td {
    padding: 6px 8px;
    border-bottom: 1px solid #f0f0f0;
    color: #444;
}
.pms-mock-grade {
    display: inline-block;
    padding: 1px 6px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 600;
}
.pms-mock-grade.urgent { background: #ff5252; color: #fff; }
.pms-mock-grade.high { background: #ff9800; color: #fff; }
.pms-mock-grade.normal { background: #4caf50; color: #fff; }
.pms-mock-grade.low { background: #90caf9; color: #1565c0; }

/* Kanban Mockup */
.pms-mock-kanban-layout {
    display: flex;
    gap: 0;
    height: 100%;
}
.pms-mock-kanban-sidebar {
    width: 180px;
    min-width: 180px;
    background: #fff;
    border-right: 1px solid #eaedf0;
    border-radius: 8px 0 0 8px;
    padding: 12px;
}
.pms-mock-kanban-sidebar-title {
    font-size: 12px;
    font-weight: 700;
    color: #1a1f36;
    margin-bottom: 10px;
}
.pms-mock-kanban-pj {
    padding: 8px 10px;
    border-radius: 6px;
    margin-bottom: 4px;
    cursor: default;
    transition: background 0.15s;
}
.pms-mock-kanban-pj.active { background: #eef3ff; }
.pms-mock-kanban-pj-name {
    font-size: 11px;
    font-weight: 600;
    color: #333;
    margin-bottom: 3px;
}
.pms-mock-kanban-pj-meta {
    font-size: 10px;
    color: #999;
}
.pms-mock-kanban-board {
    flex: 1;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pms-mock-kanban-users {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.pms-mock-kanban-user {
    padding: 4px 12px;
    border-radius: 14px;
    font-size: 11px;
    background: #f0f1f4;
    color: #555;
    cursor: default;
}
.pms-mock-kanban-user.selected {
    background: #2765f0;
    color: #fff;
}
.pms-mock-kanban-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    flex: 1;
}
.pms-mock-kanban-col {
    border-radius: 8px;
    padding: 10px;
}
.pms-mock-kanban-col.todo { background: #fffde7; }
.pms-mock-kanban-col.doing { background: #e8f5e9; }
.pms-mock-kanban-col.done { background: #e3f2fd; }
.pms-mock-kanban-col-title {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.pms-mock-kanban-col-title span {
    font-size: 10px;
    font-weight: 600;
    padding: 1px 6px;
    border-radius: 8px;
}
.pms-mock-kanban-col.todo .pms-mock-kanban-col-title span { background: #fff9c4; color: #f57f17; }
.pms-mock-kanban-col.doing .pms-mock-kanban-col-title span { background: #c8e6c9; color: #2e7d32; }
.pms-mock-kanban-col.done .pms-mock-kanban-col-title span { background: #bbdefb; color: #1565c0; }
.pms-mock-kanban-item {
    background: #fff;
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.pms-mock-kanban-item-title {
    font-size: 11px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}
.pms-mock-kanban-item-meta {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #999;
}

/* Executive Summary Mockup */
.pms-mock-exec {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.pms-mock-exec-panel {
    background: #fff;
    border-radius: 8px;
    padding: 16px;
    border: 1px solid #eaedf0;
}
.pms-mock-exec-title {
    font-size: 13px;
    font-weight: 700;
    color: #1a1f36;
    margin-bottom: 12px;
}
.pms-mock-summary-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}
.pms-mock-summary-table th {
    padding: 8px 10px;
    text-align: center;
    font-weight: 600;
    color: #555;
    background: #f7f8fa;
    border: 1px solid #e8e8e8;
    font-size: 11px;
}
.pms-mock-summary-table td {
    padding: 8px 10px;
    text-align: center;
    border: 1px solid #e8e8e8;
    color: #333;
    font-weight: 500;
}
.pms-mock-summary-table td.highlight {
    font-weight: 700;
    color: #2765f0;
}

/* Project Cards Mockup */
.pms-mock-projects {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.pms-mock-project-card {
    background: #fff;
    border-radius: 8px;
    padding: 16px;
    border: 1px solid #eaedf0;
}
.pms-mock-project-progress {
    height: 4px;
    background: #eee;
    border-radius: 2px;
    margin-bottom: 10px;
    overflow: hidden;
}
.pms-mock-project-progress-bar {
    height: 100%;
    border-radius: 2px;
    transition: width 0.5s ease;
}
.pms-mock-project-progress-bar.green { background: #4caf50; }
.pms-mock-project-progress-bar.yellow { background: #ff9800; }
.pms-mock-project-progress-bar.primary { background: #2765f0; }
.pms-mock-project-progress-bar.pink { background: #e91e63; }
.pms-mock-project-card h4 {
    font-size: 12px;
    font-weight: 700;
    color: #1a1f36;
    margin-bottom: 4px;
}
.pms-mock-project-card p {
    font-size: 10px;
    color: #888;
    margin-bottom: 8px;
    line-height: 1.4;
}
.pms-mock-project-card-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
    color: #aaa;
}
.pms-mock-project-card-icons {
    display: flex;
    gap: 8px;
}
.pms-mock-project-card-icons span {
    display: flex;
    align-items: center;
    gap: 2px;
}
.pms-mock-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.pms-mock-filter-item {
    padding: 5px 14px;
    border-radius: 6px;
    background: #fff;
    border: 1px solid #ddd;
    font-size: 11px;
    color: #666;
    cursor: default;
}
.pms-mock-filter-search {
    padding: 5px 14px;
    border-radius: 6px;
    background: #fff;
    border: 1px solid #ddd;
    font-size: 11px;
    color: #ccc;
    flex: 1;
    min-width: 120px;
}
.pms-mock-filter-btn {
    padding: 5px 14px;
    border-radius: 6px;
    background: #2765f0;
    border: none;
    font-size: 11px;
    color: #fff;
    font-weight: 600;
    cursor: default;
}

/* Screen Label */
/* ── Gantt Chart (Bar-Chart Table) ── */
.gc-table { display:flex; flex-direction:column; height:100%; font-size:11px; background:#fff; }
.gc-subtabs { display:flex; align-items:center; gap:0; padding:8px 14px; border-bottom:1px solid #eaedf0; }
.gc-subtabs span { padding:5px 14px; font-size:11px; font-weight:600; color:#888; cursor:default; border:1px solid transparent; border-radius:6px; }
.gc-subtabs span.active { color:#1a1f36; border-color:#ccc; background:#fff; }
.gc-subtabs-right { margin-left:auto; }
.gc-btn-create { padding:5px 14px; font-size:11px; font-weight:600; color:#2765f0; background:#eef3ff; border:1px solid #c5d5f8; border-radius:6px; cursor:default; }
.gc-thead { display:flex; border-bottom:2px solid #e5e7eb; background:#fafbfc; }
.gc-th { display:flex; align-items:center; justify-content:center; font-weight:700; color:#555; font-size:10px; padding:0 4px; }
.gc-col-no { width:30px; min-width:30px; }
.gc-col-name { width:160px; min-width:80px; justify-content:flex-start !important; padding-left:10px !important; }
.gc-col-pm { width:48px; min-width:48px; }
.gc-col-st { width:54px; min-width:54px; }
.gc-col-tl { flex:1; min-width:0; padding:0 !important; display:block !important; }
.gc-tl-years { display:flex; height:20px; border-bottom:1px solid #eaedf0; }
.gc-tl-year { font-size:11px; font-weight:700; color:#1a1f36; line-height:20px; padding-left:8px; box-sizing:border-box; }
.gc-tl-months { display:flex; height:24px; }
.gc-tl-months span { flex:1; text-align:center; font-size:10px; font-weight:600; color:#999; line-height:24px; min-width:0; border-left:1px solid #eee; box-sizing:border-box; }
.gc-tl-months span:first-child { border-left:none; }
.gc-m-now { background:#2765f0; color:#fff !important; border-radius:4px; margin:2px 1px; line-height:20px !important; font-weight:700; }
.gc-tbody { position:relative; flex:1; overflow:hidden; }
.gc-today-line { position:absolute; top:0; bottom:0; width:1.5px; background:#777; z-index:5; }
.gc-tr { display:flex; border-bottom:1px solid #f0f1f3; min-height:44px; align-items:center; }
.gc-tr:hover { background:#f8f9fb; }
.gc-td { display:flex; align-items:center; justify-content:center; font-size:11px; color:#444; padding:0 4px; }
.gc-td.gc-col-name { justify-content:flex-start; padding-left:10px; font-weight:500; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; display:block; line-height:44px; }
.gc-td.gc-col-tl { position:relative; padding:0; align-self:stretch; }
.gc-bars { position:absolute; top:0; left:0; right:0; bottom:0; display:flex; flex-direction:column; justify-content:center; gap:2px; padding:6px 0; }
.gc-track { position:relative; height:12px; flex-shrink:0; }
.gc-s { position:absolute; height:100%; border-radius:0; display:block; }
.gc-s:first-child { border-radius:6px 0 0 6px; }
.gc-s:last-child { border-radius:0 6px 6px 0; }
.gc-s:first-child:last-child { border-radius:6px; }
.gc-c1 { background:#a78bfa; }
.gc-c1a { background:#c4b5fd; }
.gc-c2 { background:#6ee7b7; }
.gc-c3 { background:#f472b6; }
.gc-c3a { background:#f9a8d4; }
.gc-badge { display:inline-block; padding:2px 8px; border-radius:10px; font-size:9px; font-weight:700; color:#fff; white-space:nowrap; }
.gc-st-on { background:#4caf50; }
.gc-st-hold { background:#ef5350; }
.gc-st-behind { background:#ff9800; }
.gc-st-appr { background:#9c7bf0; }

.pms-screen-label {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}
.pms-screen-label strong {
    color: #2765f0;
}

/* ══════════════════════════════════════════
   NPDS Page Styles
   ══════════════════════════════════════════ */

/* Hero */
.npds-hero {
    background: linear-gradient(135deg, #4a1a0a 0%, #8b3a1a 30%, #d35400 60%, #e67e22 100%) !important;
}
.npds-hero::before {
    background: radial-gradient(circle, rgba(241,196,15,0.18) 0%, transparent 70%) !important;
}
.npds-hero::after {
    background: radial-gradient(circle, rgba(230,126,34,0.25) 0%, transparent 70%) !important;
}
.npds-hero .badge {
    background: rgba(241,196,15,0.2) !important;
    border-color: rgba(241,196,15,0.5) !important;
    color: #f9e79f !important;
}
.npds-hero h1 { color: #fff; }

/* CTA */
.npds-cta {
    background: linear-gradient(135deg, #4a1a0a 0%, #d35400 100%) !important;
}

/* Pipeline */
.npds-pipeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-top: 48px;
    flex-wrap: wrap;
}
.npds-pipeline-step {
    text-align: center;
    flex: 1;
    min-width: 100px;
    max-width: 130px;
    position: relative;
}
.npds-pipeline-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: rgba(255,255,255,0.4);
    margin-bottom: 8px;
}
.npds-pipeline-label {
    display: inline-block;
    background: rgba(230,126,34,0.3);
    border: 1px solid rgba(230,126,34,0.6);
    color: #f9e79f;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 10px;
    margin-bottom: 10px;
    min-width: 90px;
}
.npds-pipeline-step-done .npds-pipeline-label {
    background: rgba(46,204,113,0.3);
    border-color: rgba(46,204,113,0.6);
    color: #a9dfbf;
}
.npds-pipeline-desc {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
}
.npds-pipeline-arrow {
    color: rgba(255,255,255,0.25);
    font-size: 14px;
    margin-top: 32px;
    flex-shrink: 0;
    padding: 0 2px;
}

/* Core Modules (3x2 grid) */
.npds-modules {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.npds-module-card {
    background: #fff;
    border: 1px solid #e8ecef;
    border-radius: 16px;
    padding: 32px 28px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.npds-module-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.npds-module-icon {
    font-size: 32px;
    margin-bottom: 16px;
}
.npds-module-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #d35400;
    margin-bottom: 16px;
}
.npds-module-card ul {
    list-style: none;
    padding: 0;
}
.npds-module-card li {
    font-size: 13px;
    color: #555;
    padding: 6px 0;
    border-bottom: 1px solid #f4f4f4;
    line-height: 1.5;
}
.npds-module-card li:last-child { border-bottom: none; }
.npds-module-card li::before {
    content: '>';
    color: #e67e22;
    font-weight: 700;
    margin-right: 8px;
}

/* Metrics (도입 효과) */
.npds-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.npds-metric-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    border: 1px solid #e8ecef;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.npds-metric-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(211,84,0,0.1);
}
.npds-metric-icon {
    font-size: 28px;
    margin-bottom: 12px;
}
.npds-metric-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 16px;
}
.npds-metric-before {
    font-size: 13px;
    color: #999;
    padding: 8px 12px;
    background: #f8f8f8;
    border-radius: 6px;
    text-decoration: line-through;
}
.npds-metric-arrow {
    font-size: 18px;
    color: #d35400;
    margin: 8px 0;
    font-weight: 700;
}
.npds-metric-after {
    font-size: 13px;
    color: #d35400;
    font-weight: 600;
    padding: 8px 12px;
    background: #fef5e7;
    border-radius: 6px;
    margin-bottom: 16px;
}
.npds-metric-pct {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #d35400;
    line-height: 1;
}
.npds-metric-pct small {
    font-size: 18px;
    font-weight: 700;
}
.npds-metric-pct span {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #888;
    margin-top: 4px;
}

/* System Map (6대 모듈) */
.npds-system-map {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.npds-sysmap-card {
    background: #f8f9fb;
    border: 1px solid #e8ecef;
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.npds-sysmap-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.npds-sysmap-core {
    background: linear-gradient(135deg, #d35400, #e67e22) !important;
    border-color: #d35400 !important;
}
.npds-sysmap-core h4,
.npds-sysmap-core p { color: #fff !important; }
.npds-sysmap-core .npds-sysmap-num { color: rgba(255,255,255,0.7) !important; }
.npds-sysmap-num {
    font-size: 24px;
    color: #d35400;
    margin-bottom: 8px;
}
.npds-sysmap-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 4px;
}
.npds-sysmap-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #888;
}

/* NPDS Responsive */
@media screen and (max-width: 1024px) {
    .npds-modules { grid-template-columns: repeat(2, 1fr); }
    .npds-metrics { grid-template-columns: repeat(2, 1fr); }
    .npds-system-map { grid-template-columns: repeat(3, 1fr); }
    .npds-pipeline { gap: 0; }
    .npds-pipeline-step { min-width: 80px; max-width: 110px; }
    .npds-pipeline-arrow { font-size: 12px; padding: 0; }
}
@media screen and (max-width: 767px) {
    .npds-modules { grid-template-columns: 1fr; }
    .npds-metrics { grid-template-columns: 1fr; }
    .npds-system-map { grid-template-columns: 1fr; }
    .npds-pipeline { flex-direction: column; align-items: center; }
    .npds-pipeline-step { max-width: 100%; min-width: auto; width: 100%; }
    .npds-pipeline-arrow { transform: rotate(90deg); margin: 4px 0; }
}

/* PMS Responsive - showcase */
@media screen and (max-width: 1024px) {
    .pms-mock-nav { display: none; }
    .pms-mock-dash { grid-template-columns: 1fr; }
    .pms-mock-exec { grid-template-columns: 1fr; }
    .pms-mock-projects { grid-template-columns: repeat(2, 1fr); }
    .pms-mock-kanban-sidebar { width: 140px; min-width: 140px; }
    .pms-mock-kanban-cols { grid-template-columns: 1fr; }
    .pms-browser-body { min-height: 360px; }
}
@media screen and (max-width: 767px) {
    .pms-showcase-tab { padding: 8px 16px; font-size: 12px; }
    .pms-mock-kanban-layout { flex-direction: column; }
    .pms-mock-kanban-sidebar { width: 100%; min-width: auto; border-right: none; border-bottom: 1px solid #eaedf0; border-radius: 8px 8px 0 0; }
    .pms-mock-projects { grid-template-columns: 1fr; }
    .pms-browser-body { min-height: 300px; flex-direction: column; }
    .pms-mock-header-tabs { display: none; }
    .gc-col-pm { display:none; }
    .gc-col-name { width:100px; min-width:60px; }
    .gc-col-no { width:24px; min-width:24px; }
    .gc-col-st { width:46px; min-width:46px; }
    .gc-track { height: 8px; }
    .gc-tr { min-height: 34px; }
    .gc-td.gc-col-name { font-size:9px; line-height:34px; }
    .gc-subtabs { padding:6px 10px; }
    .gc-subtabs span { font-size:10px; padding:4px 10px; }
}

/* PMS Responsive */
@media screen and (max-width: 1024px) {
    .pms-modules { grid-template-columns: repeat(2, 1fr); }
    .pms-type-grid { grid-template-columns: repeat(2, 1fr); }
    .pms-process { grid-template-columns: repeat(2, 1fr); }
    .pms-epms-grid { grid-template-columns: repeat(2, 1fr); }
    .pms-position-legacy { padding-left: 0; }
    .pms-layer-label { width: 90px; min-width: 90px; font-size: 11px; }
}
@media screen and (max-width: 767px) {
    .pms-modules { grid-template-columns: 1fr; }
    .pms-type-grid { grid-template-columns: 1fr; }
    .pms-dashboard-features { grid-template-columns: 1fr; }
    .pms-dual { grid-template-columns: 1fr; }
    .pms-process { grid-template-columns: 1fr; }
    .pms-epms-grid { grid-template-columns: 1fr; }
    .pms-ref-grid { grid-template-columns: 1fr; }
    .pms-position-layer { flex-direction: column; }
    .pms-layer-label { width: 100%; min-width: auto; padding: 10px; }
    .pms-layer-items { flex-direction: column; }
    .pms-position-legacy { flex-direction: column; padding-left: 0; }
}

/* ── CosFlow ── */
.cosflow-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b3d 30%, #4a1942 60%, #6b2fa0 100%) !important;
}
.cosflow-hero::before {
    background: radial-gradient(circle, rgba(176,100,255,0.18) 0%, transparent 70%) !important;
}
.cosflow-hero .badge {
    background: rgba(176,100,255,0.2) !important;
    border-color: rgba(176,100,255,0.5) !important;
    color: #d4a5ff !important;
}
.cosflow-hero h1 span { color: #c084fc !important; }

.cosflow-cta {
    background: linear-gradient(135deg, #2d1b3d 0%, #6b2fa0 100%) !important;
}
