/* ===== CSS Variables & Reset ===== */
:root {
    --primary-color: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-light: #38bdf8;
    --secondary-color: #1e293b;
    --accent-color: #06b6d4;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --gradient-primary: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
}
.cont-container{
    max-width: 1280px;
	width:inherit;
    margin: 0 auto;
    padding: 0 1.5rem;
	color:inherit;
}
.cont-title {color:#000;}
.section{margin:0px auto;}
h1, h2, h3, h4, h5, h6 {color:inherit; margin:0;}
p{margin-bottom:0;}


/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    padding: 6rem 1.5rem 4rem;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.gradient-text {
    background: linear-gradient(135deg, #38bdf8, #06b6d4, #22d3d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}


/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(14, 165, 233, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(14, 165, 233, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

/* ===== Hero Decoration ===== */
.hero-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.3), rgba(6, 182, 212, 0.1));
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(20px, -30px) scale(1.05);
    }

    50% {
        transform: translate(-10px, 20px) scale(0.95);
    }

    75% {
        transform: translate(-20px, -10px) scale(1.02);
    }
}
/* ===== Services Overview ===== */
.services-overview {
    padding: 4rem 0;
    background: var(--bg-primary);
    position: relative;
    z-index: 10;
}

/* 주요 고객사 (Marquee) */
.clients-section {
    padding: 5rem 0;
    background: var(--bg-primary);
    overflow: hidden;
}

.marquee-wrapper {
    display: flex;
    overflow: hidden;
    margin-bottom: 2rem;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 1.5rem;
    animation: scroll 40s linear infinite;
    width: max-content;
    padding-left: 1.5rem;
    /* Gap compensation */
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 0.75rem));
        /* Move by half track width (original set) + half gap */
    }
}

.client-card {
    flex-shrink: 0;
    width: 200px;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: all var(--transition-normal);
    transform: translateY(20px);
}

.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    color: white;
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ===== Section Common Styles ===== */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===== IT Consulting Section ===== */
.section-consulting {
    background: var(--bg-secondary);
}

.consulting-section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.consulting-section-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    background: linear-gradient(90deg, transparent, var(--bg-tertiary), transparent);
    padding: 1rem 2rem;
    display: inline-block;
}

.consulting-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.consulting-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    transform: translateY(20px);
    transition: all var(--transition-normal);
}

.consulting-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.consulting-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.consulting-card h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.consulting-card ul {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.consulting-card ul li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1rem;
}

.consulting-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.card-left {
    border-left: 4px solid #fbbf24;
}

.card-center {
    border-left: 4px solid var(--primary-color);
}

.card-right {
    border-left: 4px solid #10b981;
}

.card-arrow {
    position: absolute;
    top: 50%;
    right: -1.5rem;
    transform: translateY(-50%);
    color: var(--text-light);
}

.card-arrow svg {
    width: 24px;
    height: 24px;
}

.card-arrow.arrow-left {
    right: auto;
    left: -1.5rem;
}

.highlight-list li {
    color: var(--primary-color) !important;
    font-weight: 500;
}

/* ===== IT System Integration Section ===== */
.section-integration {
    background: var(--bg-primary);
}

.integration-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.integration-main {
    display: flex;
    justify-content: center;
}

.integration-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem 3rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: 0 10px 40px rgba(14, 165, 233, 0.3);
}

.integration-badge span {
    display: block;
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.integration-badge strong {
    font-size: 1.5rem;
    font-weight: 700;
}

.integration-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.client-card {
    background: white;
    padding: 1rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    height: 100px;
    width: 200px;
    /* Fixed width for marquee */
    flex-shrink: 0;
    /* Prevent shrinking in flex container */
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.client-card.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px var(--primary-color), var(--shadow-md);
    background: #f0f9ff;
}

/* 필터링용 히든 클래스 */
.timeline-item.hidden {
    display: none;
}

.feature-card-fn {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transform: translateY(20px);
    transition: all var(--transition-normal);
}

.feature-card-fn.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-card-fn:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}

.feature-card-fn h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
}

.feature-card-fn ul {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.feature-card-fn li {
    padding: 0.5rem 0;
    padding-left: 1rem;
    position: relative;
}

.feature-card-fn li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* ===== IT Outsourcing Section ===== */
.section-outsourcing {
    background: var(--bg-secondary);
}

.outsourcing-considerations {
    margin-bottom: 3rem;
}

.outsourcing-considerations h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.outsourcing-considerations ul {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.outsourcing-considerations li {
    padding: 0.5rem 0;
    padding-left: 1.25rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.outsourcing-considerations li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.risk-table-container {
    overflow-x: auto;
}

.risk-table-container h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.risk-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.risk-table th {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    font-weight: 600;
    text-align: left;
}

.risk-table th:first-child {
    width: 18%;
}

.risk-table th:nth-child(2),
.risk-table th:nth-child(3) {
    width: 41%;
}

.risk-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    vertical-align: top;
}

.risk-table tbody tr:last-child td {
    border-bottom: none;
}

.risk-table tbody tr:hover {
    background: var(--bg-secondary);
}

.risk-category {
    font-weight: 600;
    color: var(--primary-color);
}

.risk-category span {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 400;
}

.risk-table td ul {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.risk-table td li {
    padding: 0.25rem 0;
    padding-left: 1rem;
    position: relative;
}

.risk-table td li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* ===== HR Management Section ===== */
.section-hr-management {
    background: var(--bg-primary);
}

.hr-diagram {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 2rem;
}

.hr-center {
    width: 180px;
    height: 180px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 40px rgba(14, 165, 233, 0.3);
    padding: 1.5rem;
    line-height: 1.5;
}

.hr-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 600px;
}

.hr-item {
    background: white;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all var(--transition-normal);
    transform: scale(0.9);
    line-height: 1.4;
}

.hr-item.animate-in {
    opacity: 1;
    transform: scale(1);
}

.client-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.client-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all var(--transition-normal);
}

.client-card:hover .client-logo {
    filter: grayscale(0%);
    opacity: 1;
}

.hr-table-container {
    overflow-x: auto;
}

.hr-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.hr-table th {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    font-weight: 600;
    text-align: center;
}

.hr-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-secondary);
    vertical-align: top;
}

.hr-table tbody tr:last-child td {
    border-bottom: none;
}

.hr-table tbody tr:hover {
    background: var(--bg-secondary);
}

.hr-category {
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    white-space: nowrap;
}

/* ===== Resource Management Section ===== */
.section-resource-management {
    background: var(--bg-secondary);
}

.subsection-title {
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.resource-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.resource-pool {
    background: #f0f9ff;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid #bae6fd;
    min-width: 280px;
    box-shadow: var(--shadow-sm);
}

.resource-pool h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.pool-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.pool-list-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px dashed #bfdbfe;
}

.pool-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.item-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
}

.item-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

.resource-flow {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.flow-arrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fbbf24;
}

.flow-arrow svg {
    width: 24px;
    height: 24px;
}

.flow-caption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 1rem;
    max-width: 200px;
}

.resource-market {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.market-label {
    font-size: 0.95rem;
    color: #94a3b8;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.market-circle {
    width: 280px;
    height: 280px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    box-shadow: 0 10px 40px rgba(14, 165, 233, 0.4);
    padding: 2rem;
    position: relative;
    z-index: 10;
}

.market-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.market-sub {
    font-size: 0.95rem;
    opacity: 0.95;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.diagram-footer {
    width: 100%;
    margin-top: 2rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.diagram-footer h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.diagram-footer p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.principles {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.principles h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.principles ul {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.principles li {
    padding: 0.5rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.principles li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}
/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .consulting-cards {
        grid-template-columns: 1fr;
    }

    .card-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .risk-table,
    .hr-table {
        font-size: 0.85rem;
    }

    .risk-table th,
    .risk-table td,
    .hr-table th,
    .hr-table td {
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .integration-badge {
        padding: 1.5rem 2rem;
    }

    .integration-badge strong {
        font-size: 1.25rem;
    }

    .hr-center {
        width: 150px;
        height: 150px;
        font-size: 0.8rem;
    }

    .market-badge {
        width: 100px;
        height: 100px;
        font-size: 1rem;
    }
}












        /* A02 전용 스타일 */
        .timeline-section {
            padding: 5rem 0;
            background: var(--bg-secondary);
        }

        .timeline-filters {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            justify-content: center;
            margin-bottom: 3rem;
        }

        .filter-btn {
            padding: 0.625rem 1.25rem;
            border: 2px solid var(--border-color);
            border-radius: var(--radius-lg);
            background: white;
            color: var(--text-secondary);
            font-weight: 500;
            cursor: pointer;
            transition: all var(--transition-normal);
        }

        .filter-btn:hover,
        .filter-btn.active {
            border-color: var(--primary-color);
            background: var(--primary-color);
            color: white;
        }

        .timeline-container {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }

        .timeline-container::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
            border-radius: 3px;
        }

        .year-group {
            margin-bottom: 2rem;
        }

        .year-marker {
            position: relative;
            display: flex;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .year-badge {
            background: var(--gradient-primary);
            color: white;
            padding: 0.75rem 2rem;
            border-radius: var(--radius-xl);
            font-size: 1.25rem;
            font-weight: 700;
            box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
            z-index: 10;
        }

        .timeline-items {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .timeline-item {
            position: relative;
            width: calc(50% - 2rem);
            padding: 1.25rem 1.5rem;
            background: white;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            transition: all var(--transition-normal);
        }

        .timeline-item:nth-child(odd) {
            margin-left: auto;
            margin-right: calc(50% + 2rem);
        }

        .timeline-item:nth-child(even) {
            margin-left: calc(50% + 2rem);
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            top: 50%;
            width: 12px;
            height: 12px;
            background: var(--primary-color);
            border: 3px solid white;
            border-radius: 50%;
            box-shadow: var(--shadow-md);
            z-index: 5;
        }

        .timeline-item:nth-child(odd)::before {
            right: -2.5rem;
            transform: translateY(-50%) translateX(50%);
        }

        .timeline-item:nth-child(even)::before {
            left: -2.5rem;
            transform: translateY(-50%) translateX(-50%);
        }

        .timeline-item:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .timeline-item .month {
            display: inline-block;
            background: var(--bg-tertiary);
            color: var(--primary-color);
            padding: 0.25rem 0.75rem;
            border-radius: var(--radius-sm);
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .timeline-item .content {
            color: var(--text-primary);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .timeline-item .client {
            color: var(--primary-color);
            font-weight: 600;
        }

        /* 통계 섹션 */
        .stats-section {
            padding: 4rem 2rem;
            /*background: var(--bg-secondary);*/
            color: white;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }

        .stat-card {
            text-align: center;
            padding: 2rem;
            background: rgba(56, 189, 248, 0.1);
            border-radius: var(--radius-xl);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(56, 189, 248, 0.2);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            background: linear-gradient(135deg, #38bdf8, #22d3d1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1rem;
			color:  var(--primary-dark);
        }

        /* 주요 고객사 */
        .clients-section {
            padding: 5rem 0;
            background: var(--bg-primary);
        }

        .clients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .client-card {
            background: var(--bg-secondary);
            padding: 1.5rem;
            border-radius: var(--radius-lg);
            text-align: center;
            font-weight: 600;
            color: var(--text-primary);
            border: 2px solid var(--border-color);
            transition: all var(--transition-normal);
        }

        .client-card:hover {
            border-color: var(--primary-light);
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

        /* 반응형 */
        @media (max-width: 768px) {
            .timeline-container::before {
                left: 1.5rem;
            }

            .timeline-item {
                width: calc(100% - 3rem);
                margin-left: 3rem !important;
                margin-right: 0 !important;
            }

            .timeline-item::before {
                left: -1.75rem !important;
                right: auto !important;
                transform: translateY(-50%) !important;
            }

            .year-marker {
                justify-content: flex-start;
                padding-left: 0;
            }
        }
		
		
		
		
       /* A03 전용 스타일 */
        .features-section {
            padding: 5rem 0;
			margin-top:5rem;
            background: var(--bg-secondary);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .feature-box {
            background: white;
            padding: 2rem;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-md);
            border-left: 4px solid var(--primary-color);
            transition: all var(--transition-normal);
        }

        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .feature-box .icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
        }

        .feature-box .icon svg {
            width: 24px;
            height: 24px;
            color: white;
        }

        .feature-box h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.75rem;
        }

        .feature-box p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .feature-box .tag {
            display: inline-block;
            background: var(--bg-tertiary);
            color: var(--primary-color);
            padding: 0.25rem 0.75rem;
            border-radius: var(--radius-sm);
            font-size: 0.8rem;
            font-weight: 500;
            margin-top: 1rem;
        }

        /* 비교 다이어그램 섹션 */
        .comparison-section {
            padding: 5rem 0;
            background: var(--bg-primary);
        }

        .comparison-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-top: 2rem;
        }

        .comparison-card {
            background: white;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-lg);
            overflow: hidden;
        }

        .comparison-card.legacy {
            border-top: 4px solid #94a3b8;
        }

        .comparison-card.modern {
            border-top: 4px solid var(--primary-color);
        }

        .comparison-header {
            padding: 1.5rem 2rem;
            background: var(--bg-tertiary);
            text-align: center;
        }

        .comparison-card.modern .comparison-header {
            background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(6, 182, 212, 0.1));
        }

        .comparison-header h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-primary);
        }

        .comparison-header .subtitle {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-top: 0.25rem;
        }

        .comparison-body {
            padding: 2rem;
        }

        .flow-diagram {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .flow-step {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .flow-node {
            padding: 0.75rem 1.25rem;
            border-radius: var(--radius-md);
            font-size: 0.9rem;
            font-weight: 500;
            text-align: center;
            min-width: 100px;
        }

        .node-hedge {
            background: #dbeafe;
            color: #1e40af;
            border: 2px solid #93c5fd;
        }

        .node-securities {
            background: #d1fae5;
            color: #065f46;
            border: 2px solid #6ee7b7;
        }

        .node-exchange {
            background: #fef3c7;
            color: #92400e;
            border: 2px solid #fcd34d;
        }

        .node-action {
            background: var(--primary-color);
            color: white;
        }

        .flow-arrow {
            color: var(--primary-color);
            font-size: 1.25rem;
        }

        .flow-description {
            flex: 1;
            font-size: 0.85rem;
            color: var(--text-secondary);
            padding: 0.5rem;
            background: var(--bg-secondary);
            border-radius: var(--radius-sm);
        }

        .comparison-features {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
        }

        .comparison-features h4 {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.75rem;
        }

        .comparison-features ul {
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        .comparison-features li {
            padding: 0.35rem 0;
            padding-left: 1.25rem;
            position: relative;
        }

        .comparison-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: 600;
        }

        /* VS 구분선 */
        .vs-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            z-index: 10;
        }

        .vs-badge {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.25rem;
            box-shadow: var(--shadow-lg);
        }

        /* 구축 사례 */
        .case-studies-section {
            padding: 5rem 0;
            background: var(--bg-secondary);
        }

        .case-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .case-card {
            background: white;
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: all var(--transition-normal);
        }

        .case-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-xl);
        }

        .case-card-header {
            background: var(--gradient-primary);
            padding: 2rem;
            color: white;
            text-align: center;
        }

        .case-card-header .client-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .case-card-header .system-name {
            font-size: 0.95rem;
            opacity: 0.9;
        }

        .case-card-body {
            padding: 2rem;
        }

        .case-info {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: var(--bg-secondary);
            border-radius: var(--radius-md);
            margin-bottom: 1rem;
        }

        .case-info .label {
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        .case-info .value {
            font-size: 1rem;
            font-weight: 600;
            color: var(--primary-color);
        }

        .case-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #d1fae5;
            color: #065f46;
            padding: 0.5rem 1rem;
            border-radius: var(--radius-lg);
            font-size: 0.875rem;
            font-weight: 600;
        }

        .case-badge svg {
            width: 16px;
            height: 16px;
        }

        /* 주문 기능 태그 */
        .order-types {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1.5rem;
        }

        .order-tag {
            background: var(--bg-tertiary);
            color: var(--text-primary);
            padding: 0.375rem 0.875rem;
            border-radius: var(--radius-lg);
            font-size: 0.8rem;
            font-weight: 500;
            border: 1px solid var(--border-color);
            transition: all var(--transition-fast);
        }

        .order-tag:hover {
            border-color: var(--primary-color);
            color: var(--primary-color);
        }

        /* 시스템 아키텍처 */
        .architecture-section {
            padding: 5rem 0;
            background: var(--gradient-hero);
            color: white;
        }

        .architecture-diagram {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .arch-column {
            text-align: center;
        }

        .arch-column-header {
            padding: 1rem;
            background: rgba(255, 255, 255, 0.15);
            border-radius: var(--radius-lg) var(--radius-lg) 0 0;
            font-weight: 600;
            font-size: 1rem;
        }

        .arch-column-body {
            background: rgba(255, 255, 255, 0.1);
            padding: 1.5rem;
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
            min-height: 200px;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .arch-item {
            background: rgba(255, 255, 255, 0.2);
            padding: 0.75rem 1rem;
            border-radius: var(--radius-md);
            font-size: 0.9rem;
        }

        .arch-arrow {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: rgba(255, 255, 255, 0.6);
        }

        /* 반응형 */
        @media (max-width: 1024px) {
            .comparison-container {
                grid-template-columns: 1fr;
            }

            .architecture-diagram {
                grid-template-columns: 1fr;
            }

            .arch-arrow {
                transform: rotate(90deg);
            }
        }

        @media (max-width: 768px) {
            .case-cards {
                grid-template-columns: 1fr;
            }
        }
		
		
		
		
		
		
		
		
		

        /* A04 전용 스타일 */
        .overview-section {
			margin-top:5rem;
            padding: 5rem 0;
            background: var(--bg-secondary);
        }

        .overview-content {
            max-width: 900px;
            margin: 0 auto;
            background: white;
            padding: 3rem;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-lg);
            border-left: 4px solid var(--primary-color);
        }

        .overview-content p {
            font-size: 1.1rem;
            line-height: 1.9;
            color: var(--text-secondary);
        }

        .overview-content .highlight {
            color: var(--primary-color);
            font-weight: 600;
        }

        /* 프로세스 다이어그램 */
        .process-section {
            padding: 5rem 0;
            background: var(--bg-primary);
        }

        .process-diagram {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0.5rem;
            margin-top: 2rem;
            background: var(--bg-secondary);
            padding: 2rem;
            border-radius: var(--radius-xl);
            overflow-x: auto;
        }

        .process-header {
            background: var(--primary-color);
            color: white;
            padding: 1rem;
            text-align: center;
            font-weight: 600;
            border-radius: var(--radius-md);
        }

        .process-header.swift {
            background: linear-gradient(135deg, #f59e0b, #d97706);
        }

        .process-column {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .process-row {
            display: contents;
        }

        .process-cell {
            background: white;
            padding: 1rem;
            border-radius: var(--radius-md);
            font-size: 0.85rem;
            border: 1px solid var(--border-color);
            min-height: 80px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .process-cell.empty {
            background: transparent;
            border: none;
        }

        .process-cell h4 {
            color: var(--primary-color);
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .process-cell p {
            color: var(--text-secondary);
            font-size: 0.8rem;
            line-height: 1.5;
        }

        /* 거래 유형 섹션 */
        .trade-types-section {
            padding: 5rem 0;
            background: var(--bg-secondary);
        }

        .trade-types-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }

        .trade-type-card {
            background: white;
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .trade-type-header {
            padding: 1.5rem 2rem;
            color: white;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .trade-type-header.internal {
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
        }

        .trade-type-header.external {
            background: linear-gradient(135deg, #10b981, #059669);
        }

        .trade-type-header .icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .trade-type-header .icon svg {
            width: 28px;
            height: 28px;
        }

        .trade-type-header h3 {
            font-size: 1.25rem;
            font-weight: 700;
        }

        .trade-type-header .subtitle {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .trade-type-body {
            padding: 2rem;
        }

        .trade-flow {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .trade-step {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }

        .step-number {
            width: 32px;
            height: 32px;
            background: var(--gradient-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 0.85rem;
            flex-shrink: 0;
        }

        .step-content {
            flex: 1;
        }

        .step-content h4 {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.25rem;
        }

        .step-content p {
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        /* SWIFT 메시지 섹션 */
        .swift-section {
            padding: 5rem 0;
            background: var(--gradient-hero);
            color: white;
        }

        .swift-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .swift-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 1.5rem;
            border-radius: var(--radius-lg);
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            transition: all var(--transition-normal);
        }

        .swift-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-3px);
        }

        .swift-code {
            font-size: 1.75rem;
            font-weight: 700;
            color: #fbbf24;
            margin-bottom: 0.5rem;
        }

        .swift-name {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* 시스템 구성도 */
        .system-section {
            padding: 5rem 0;
            background: var(--bg-primary);
        }

        .system-diagram {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-top: 3rem;
        }

        .system-node {
            text-align: center;
            padding: 2rem;
            background: white;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-md);
            min-width: 150px;
            transition: all var(--transition-normal);
        }

        .system-node:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .system-node.primary {
            background: var(--gradient-primary);
            color: white;
        }

        .system-node.secondary {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
        }

        .system-node.external {
            background: linear-gradient(135deg, #f59e0b, #d97706);
            color: white;
        }

        .system-node .icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 1rem;
            background: rgba(255, 255, 255, 0.2);
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .system-node .icon svg {
            width: 32px;
            height: 32px;
        }

        .system-node h4 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .system-node p {
            font-size: 0.8rem;
            opacity: 0.8;
        }

        .system-arrow {
            font-size: 2rem;
            color: var(--primary-color);
        }

        /* 효과 섹션 */
        .benefits-section {
            padding: 5rem 0;
            background: var(--bg-secondary);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .benefit-card {
            background: white;
            padding: 2rem;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-md);
            text-align: center;
            transition: all var(--transition-normal);
            border-top: 4px solid var(--primary-color);
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .benefit-card .icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 1.5rem;
            background: var(--gradient-primary);
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .benefit-card .icon svg {
            width: 28px;
            height: 28px;
        }

        .benefit-card h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.75rem;
        }

        .benefit-card p {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        /* 상세 프로세스 테이블 */
        .detail-table-container {
            overflow-x: auto;
            margin-top: 2rem;
        }

        .detail-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }

        .detail-table th {
            background: var(--primary-color);
            color: white;
            padding: 1rem;
            font-weight: 600;
            text-align: left;
        }

        .detail-table td {
            padding: 1rem;
            border-bottom: 1px solid var(--border-color);
            font-size: 0.9rem;
        }

        .detail-table tbody tr:hover {
            background: var(--bg-secondary);
        }

        .dept-badge {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            border-radius: var(--radius-sm);
            font-size: 0.8rem;
            font-weight: 500;
        }

        .dept-badge.request {
            background: #dbeafe;
            color: #1e40af;
        }

        .dept-badge.operation {
            background: #d1fae5;
            color: #065f46;
        }

        .dept-badge.settlement {
            background: #fef3c7;
            color: #92400e;
        }

        /* 반응형 */
        @media (max-width: 1024px) {
            .process-diagram {
                grid-template-columns: repeat(2, 1fr);
            }

            .trade-types-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .process-diagram {
                grid-template-columns: 1fr;
            }

            .system-diagram {
                flex-direction: column;
            }

            .system-arrow {
                transform: rotate(90deg);
            }
        }
		
		














        /* A05 전용 스타일 */
        .overview-section {
            padding: 5rem 0;
            background: var(--bg-secondary);
        }

        .overview-content {
            max-width: 1000px;
            margin: 0 auto;
            background: white;
            padding: 3rem;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-lg);
            border-left: 4px solid var(--primary-color);
        }

        .overview-content p {
            font-size: 1.1rem;
            line-height: 1.9;
            color: var(--text-secondary);
        }

        .highlight {
            color: var(--primary-color);
        }

        .overview-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        /* 참여 범위 섹션 */
        .participation-section {
            padding: 4rem 0;
            background: var(--text-primary);
            color: white;
        }

        .participation-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }

        .participation-card {
            background: rgba(255, 255, 255, 0.15);
            padding: 2rem;
            border-radius: var(--radius-xl);
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            transition: all var(--transition-normal);
        }

        .participation-card:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }

        .participation-card.highlight {
            background: rgba(255, 255, 255, 0.25);
            border: 2px solid rgba(255, 255, 255, 0.5);
        }

        .participation-card .badge {
            display: inline-block;
            padding: 0.35rem 1rem;
            background: rgba(255, 255, 255, 0.2);
            border-radius: var(--radius-sm);
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 1rem;
        }

        .participation-card.highlight .badge {
            background: #fbbf24;
            color: #1a1a2e;
        }
		.participation-card.highlight > h3, .participation-card.highlight > p, .participation-card.highlight > ul > li {color:#fff;}

        .participation-card h3 {
            font-size: 1.35rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .participation-card p {
            font-size: 0.95rem;
            opacity: 0.9;
            line-height: 1.6;
        }

        .participation-card .scope-list {
            list-style: none;
            padding: 0;
            margin-top: 1rem;
        }

        .participation-card .scope-list li {
            padding: 0.5rem 0;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .participation-card .scope-list li::before {
            content: "✓";
            font-weight: bold;
        }

        /* 아키텍처 이미지 섹션 */
		.img-highlight-container {text-align:center;}
        .architecture-section-2 {
            padding: 5rem 0;
            background: var(--bg-primary);
        }

        .architecture-image {
            max-width: 80%;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-xl);
			margin:0 auto;
            margin-top: 2rem;
			text-align:center;
        }

        /* NXT SOR 장점 섹션 */
        .advantages-section {
            padding: 5rem 0;
            background: var(--bg-secondary);
        }

        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }

        .advantage-card {
            background: white;
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transition: all var(--transition-normal);
        }

        .advantage-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-xl);
        }

        .advantage-header {
            padding: 1.5rem;
            color: white;
        }

        .advantage-header.smart {
            background: var(--primary-color);
        }

        .advantage-header.easy {
            background: var(--primary-color);
        }

        .advantage-header.fast {
            background: var(--primary-color);
        }

        .advantage-header h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .advantage-header p {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .advantage-body {
            padding: 1.5rem;
        }

        .advantage-body ul {
            list-style: none;
            padding: 0;
        }

        .advantage-body li {
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--border-color);
            font-size: 0.9rem;
            color: var(--text-secondary);
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .advantage-body li:last-child {
            border-bottom: none;
        }

        .advantage-body li::before {
            content: "▸";
            color: var(--primary-color);
            font-weight: bold;
            flex-shrink: 0;
        }

        /* 주요 구성요소 카드 */
        .components-section {
            padding: 5rem 0;
            background: var(--bg-primary);
        }

        .components-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .component-card {
            background: white;
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transition: all var(--transition-normal);
        }

        .component-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-xl);
        }

        .component-header {
            padding: 1.5rem;
            color: white;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .component-header.engine {
            background: var(--primary-color);
        }

        .component-header.tca {
            background: var(--primary-color);
        }

        .component-header.operation {
            background: var(--text-light);
        }

        .component-header.tech {
            background: var(--primary-color);
        }

        .component-header.interface {
            background:  var(--primary-color);
        }

        .component-header .icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .component-header .icon svg {
            width: 28px;
            height: 28px;
        }

        .component-header h3 {
            font-size: 1.25rem;
            font-weight: 700;
        }

        .component-body {
            padding: 1.5rem;
        }

        .component-body ul {
            list-style: none;
            padding: 0;
        }

        .component-body li {
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.95rem;
            color: var(--text-secondary);
        }

        .component-body li:last-child {
            border-bottom: none;
        }

        .component-body li::before {
            content: "▸";
            color: var(--primary-color);
            font-weight: bold;
        }

        /* 주문관리 테이블 섹션 */
        .order-section {
            padding: 5rem 0;
            background: var(--bg-secondary);
        }

        .order-table-container {
            overflow-x: auto;
            margin-top: 2rem;
        }

        .order-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }

        .order-table th {
            background: var(--primary-color);
            color: white;
            padding: 1rem;
            font-weight: 600;
            text-align: left;
        }

        .order-table td {
            padding: 1rem;
            border-bottom: 1px solid var(--border-color);
            font-size: 0.9rem;
            vertical-align: middle;
        }

        .order-table tbody tr:hover {
            background: var(--bg-secondary);
        }

        .category-badge {
            display: inline-block;
            padding: 0.35rem 0.85rem;
            border-radius: var(--radius-sm);
            font-size: 0.8rem;
            font-weight: 600;
        }

        .category-badge.order {
            background: #dbeafe;
            color: #1e40af;
            border: 2px solid #2563eb;
            /* Highlight */
            box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
        }

        .category-badge.balance {
            background: #d1fae5;
            color: #065f46;
            border: 2px solid #059669;
            /* Highlight */
            box-shadow: 0 0 0 2px rgba(5, 150, 105, 0.2);
        }

        .category-badge.retry {
            background: #fef3c7;
            color: #92400e;
        }

        /* UI 화면 갤러리 */
        .ui-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: white;
        }

        .ui-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }

        .ui-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--radius-xl);
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .ui-image {
            width: 100%;
            height: auto;
            display: block;
        }

        .ui-info {
            padding: 1.5rem;
        }

        .ui-info h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #e91e63;
        }

        .ui-features {
            list-style: none;
            padding: 0;
        }

        .ui-features li {
            padding: 0.5rem 0;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
        }

        .ui-features li::before {
            content: "✓";
            color: #e91e63;
            font-weight: bold;
        }

        /* 시스템 구성 형태 */
        .system-config-section {
            padding: 5rem 0;
            background: var(--bg-primary);
        }

        .config-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }

        .config-card {
            background: white;
            border-radius: var(--radius-xl);
            padding: 2rem;
            box-shadow: var(--shadow-lg);
        }

        .config-card h4 {
            display: inline-block;
            padding: 0.5rem 1.25rem;
            border-radius: var(--radius-sm);
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .config-card h4.independent {
            background: linear-gradient(135deg, #e91e63, #c2185b);
            color: white;
        }

        .config-card h4.integrated {
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            color: white;
        }

        .config-card ul {
            list-style: none;
            padding: 0;
        }

        .config-card li {
            padding: 0.6rem 0;
            font-size: 0.9rem;
            color: var(--text-secondary);
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
        }

        .config-card li::before {
            content: "✓";
            color: var(--primary-color);
            font-weight: bold;
        }

        /* 특장점 섹션 */
        .features-section-2 {
            padding: 5rem 0;
			background: var(--text-primary);
        }
		.features-section-2 .key-feature-card h3, .features-section-2 .key-feature-card p {
			color:#fff;
		}
		.features-section-2 .key-feature-card p {
			font-weight:300;
		}

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .key-feature-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: var(--radius-xl);
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            transition: all var(--transition-normal);
        }

        .key-feature-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
        }

        .key-feature-card .icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 1.5rem;
            background: rgba(255, 255, 255, 0.2);
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .key-feature-card .icon svg {
            width: 32px;
            height: 32px;
            stroke: white;
        }

        .key-feature-card h3 {
            font-size: 1.15rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .key-feature-card p {
            font-size: 0.95rem;
            opacity: 0.9;
            line-height: 1.6;
        }

        /* 반응형 */
        @media (max-width: 1024px) {
            .ui-grid {
                grid-template-columns: 1fr;
            }

            .advantages-grid {
                grid-template-columns: 1fr;
            }

            .config-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .participation-grid {
                grid-template-columns: 1fr;
            }

            .components-grid {
                grid-template-columns: 1fr;
            }

            .overview-stats {
                grid-template-columns: 1fr;
            }
        }