/* ── 서비스 공통 CSS ── */

/* 콘텐츠 영역 */
.bcontents .business {
    max-width: 1120px; padding: 0; margin: 0 auto 40px;
    counter-reset: svc-counter;
}
.bcontents .business ul { margin: 0; padding: 0; }

/* ── 서비스 항목 카드 ── */
.bcontents .business ul li {
    display: flex; align-items: center; gap: 48px;
    padding: 36px;
    list-style: none;
    position: relative;
    border-radius: 18px;
    border: 1px solid rgba(83, 124, 249, 0.1);
    margin-bottom: 20px;
    counter-increment: svc-counter;
    transition: transform 0.32s ease, background 0.32s ease,
                border-color 0.32s ease, box-shadow 0.32s ease;
}
.bcontents .business ul li:last-child { margin-bottom: 0; }

/* 번호 뱃지 */
.bcontents .business ul li::before {
    content: counter(svc-counter, decimal-leading-zero);
    position: absolute; top: 20px; right: 28px;
    font-size: 11px; font-weight: 800; letter-spacing: 1px;
    color: rgba(83,124,249,0.35);
}

/* 호버: 카드 부상 + 글로우 테두리 */
.bcontents .business ul li:hover {
    transform: translateY(-6px);
    background: rgba(83,124,249,0.05);
    border-color: rgba(83,124,249,0.28);
    box-shadow: 0 24px 56px rgba(0,0,0,0.38),
                0 0 0 1px rgba(83,124,249,0.12);
}

/* 짝수 항목: 이미지↔텍스트 교차 (지그재그) */
.bcontents .business ul li:nth-child(even) .svc-img { order: 2; }
.bcontents .business ul li:nth-child(even) .svc-text { order: 1; }

/* 이미지 */
.bcontents .business ul li .svc-img {
    display: block; flex: 0 0 55%; overflow: hidden;
}
.bcontents .business ul li .svc-img img { width: 100%; height: auto; display: block; }

/* 텍스트 */
.bcontents .business ul li .svc-text { flex: 1; min-width: 0; text-align: left; }
.bcontents .business ul li .svc-text .title-row {
    display: flex; align-items: center; gap: 10px;
}
.bcontents .business ul li .svc-text .bar {
    display: inline-block; font-size: 1.6em; font-weight: 700;
    color: #537cf9; line-height: 1; flex-shrink: 0;
}
.bcontents .business ul li .svc-text strong {
    display: inline; font-size: 1.55em; font-weight: 800;
    color: #e2eaf8; line-height: 1.3;
}
.bcontents .business ul li .svc-text p {
    font-size: 0.92em; color: #537cf9; margin-bottom: 18px;
    letter-spacing: 0.3px;
}
.bcontents .business ul li .svc-text span {
    display: block; font-size: 1em; color: #93b4d8;
    line-height: 1.9; margin-bottom: 4px; word-break: keep-all;
}

/* ── 스크롤 등장 애니메이션 ── */
.svc-item {
    opacity: 0;
    transform: translateY(52px);
}
.svc-item.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.65s ease, transform 0.65s ease,
                background 0.32s ease, border-color 0.32s ease,
                box-shadow 0.32s ease;
}
/* 호버 시 delay 즉시 제거 */
.svc-item.visible:hover { transition-delay: 0s !important; }

/* sbusiness 섹션 전체 애니메이션 */
.sbusiness.svc-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.sbusiness.svc-section.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ── 문의하기 CTA ── */
.page-cta {
    max-width: 1120px; margin: 0 auto; padding: 48px 40px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.page-cta p { font-size: 1em; color: #93b4d8; line-height: 1.8; margin-bottom: 20px; }
.page-cta p strong { font-size: 1.1em; color: #e2eaf8; }
.cta-btn {
    display: inline-block; padding: 0 36px; height: 46px; line-height: 46px;
    background: #537cf9; color: #fff;
    border-radius: 23px; font-size: 14px; font-weight: 600;
    transition: 0.25s;
}
.cta-btn:hover { background: #18243F; color: #fff; }

/* ═══════════════════════════════════════
   섹션 공통 (svc-section-wrap)
═══════════════════════════════════════ */
.svc-section-wrap {
    max-width: 1120px; margin: 0 auto; padding: 0; margin-bottom: 40px;
}
.svc-section-head {
    display: flex; align-items: center; flex-wrap: wrap;
    margin-bottom: 40px;
    padding: 22px 28px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(83,124,249,0.1) 0%, rgba(83,124,249,0.03) 100%);
    border-left: 3px solid #537cf9;
    border-top: 1px solid rgba(83,124,249,0.2);
    border-right: 1px solid rgba(83,124,249,0.08);
    border-bottom: 1px solid rgba(83,124,249,0.08);
    box-shadow: inset 0 0 40px rgba(83,124,249,0.04), 0 4px 20px rgba(0,0,0,0.2);
}
.svc-section-head .bar {
    display: none;
}
.svc-section-head strong {
    font-size: 1.45em; font-weight: 800;
    background: linear-gradient(90deg, #e2eaf8 0%, #537cf9 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.svc-section-head p {
    width: 100%; margin: 6px 0 0; font-size: 0.93em; color: #6a8ab8;
    line-height: 1.6; word-break: keep-all;
}

/* 섹션 등장 애니메이션 */
.svc-section-wrap {
    opacity: 0; transform: translateY(36px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.svc-section-wrap.visible { opacity: 1; transform: translateY(0); }


/* ═══════════════════════════════════════
   도입효과 피처 카드 그리드
═══════════════════════════════════════ */
.feature-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.feature-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.feature-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.feature-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(83,124,249,0.1);
    border-radius: 16px;
    padding: 32px 28px;
    transition: transform 0.3s ease, background 0.3s ease,
                border-color 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(83,124,249,0.06);
    border-color: rgba(83,124,249,0.25);
    box-shadow: 0 20px 48px rgba(0,0,0,0.35);
}
.feature-card .fc-icon {
    width: 80px; height: 80px; margin-bottom: 18px;
    border-radius: 14px; overflow: hidden;
    border: 1px solid rgba(83,124,249,0.2);
    background: rgba(83,124,249,0.06);
    display: flex; align-items: center; justify-content: center;
}
/* 아이콘 */
.feature-card .fc-icon i {
    font-size: 1.4em !important;
    color: #537cf9 !important;
    display: block;
}
.feature-card .fc-icon img { width: 100%; height: 100%; object-fit: contain; }
.feature-card .fc-title {
    display: block; font-size: 1.1em; font-weight: 700;
    color: #dce8f8; margin-bottom: 5px;
}
.feature-card p {
    font-size: 0.9em; color: #7a9ec8; line-height: 1.45;
    word-break: keep-all; margin: 0;
}


/* ═══════════════════════════════════════
   클라우드 서비스 피라미드 스택
═══════════════════════════════════════ */
.cloud-tier-stack {
    display: flex; flex-direction: column; align-items: center;
    gap: 8px; margin-bottom: 60px;
}
.cloud-tier {
    width: 100%; border-radius: 14px; padding: 28px 40px;
    box-sizing: border-box; text-align: center;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    cursor: default;
}
.cloud-tier:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(0,0,0,0.4); }

.tier-saas {
    max-width: 40%;
    background: linear-gradient(135deg, rgba(83,124,249,0.28) 0%, rgba(83,124,249,0.16) 100%);
    border: 1px solid rgba(83,124,249,0.45);
}
.tier-paas {
    max-width: 60%;
    background: linear-gradient(135deg, rgba(83,124,249,0.18) 0%, rgba(83,124,249,0.08) 100%);
    border: 1px solid rgba(83,124,249,0.28);
}
.tier-iaas {
    max-width: 80%;
    background: linear-gradient(135deg, rgba(83,124,249,0.1) 0%, rgba(83,124,249,0.03) 100%);
    border: 1px solid rgba(83,124,249,0.15);
}

.cloud-tier .tier-label {
    font-size: 1.2em; font-weight: 800; color: #e2eaf8; /*margin-bottom: 8px;*/
}
.cloud-tier .tier-label span {
    font-size: 0.62em; font-weight: 400; color: #537cf9;
    margin-left: 8px; letter-spacing: 0.4px;
}
.cloud-tier p {
    font-size: 0.88em; color: #8aabd4; line-height: 1.75;
    word-break: keep-all; margin: 0;
}


/* ═══════════════════════════════════════
   NHN/네이버 클라우드 파트너 등급표
═══════════════════════════════════════ */
.partner-section { margin-top: 8px; }
.partner-badge-row {
    display: flex; align-items: center; gap: 16px; margin-bottom: 22px;
    flex-wrap: wrap;
}
.partner-logo {
    height: 18px; width: auto; filter: brightness(1.15);
}
.partner-badge-title {
    font-size: 1em; font-weight: 700; color: #dce8f8;
}
.partner-grade {
    font-size: 0.9em; color: #6a8ab8;
}
.partner-grade em {
    font-style: normal; font-weight: 800;
    color: #c9a227; /* 골드/플래티넘 */
    letter-spacing: 0.5px;
}

.partner-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.partner-table {
    width: 100%; border-collapse: collapse; min-width: 640px;
    font-size: 0.82em; color: #93b4d8;
}
.partner-table th, .partner-table td {
    border: 1px solid rgba(83,124,249,0.18);
    padding: 10px 12px; text-align: center;
    vertical-align: middle; line-height: 1.5;
    color: #c0d4ed;
}
.partner-table thead th {
    background: rgba(83,124,249,0.18);
    color: #e2eaf8; font-weight: 700; font-size: 0.93em;
}
.partner-table tbody td { background: rgba(255,255,255,0.03); color: #b8ceea; }
.partner-table .row-platinum td { background: rgba(201,162,39,0.09); }
.partner-table .row-platinum td strong { color: #e0b830; }
.partner-table .row-note td { color: #7a98bf; }
.partner-table tbody td strong { color: #e2eaf8; font-weight: 700; }
.partner-table tbody td span { color: #7a98bf; font-size: 0.88em; }
.partner-table .check { font-size: 1em; color: #6b9bff; font-weight: 700; }


/* ═══════════════════════════════════════
   제품 히어로 (E100, Nutanix)
═══════════════════════════════════════ */
/* ── 제품 히어로 + 피처 통합 레이아웃 ── */
.product-hero-integrated {
    display: flex; align-items: center; gap: 48px;
    margin-bottom: 40px; padding: 40px;
    border-radius: 18px;
    border: 1px solid rgba(83,124,249,0.12);
    background: rgba(255,255,255,0.02);
}
.phi-content {
    flex: 1; min-width: 0;
}
.phi-content h3 {
    font-size: 1.8em; font-weight: 800; color: #e2eaf8; margin-bottom: 6px;
}
.phi-content .product-sub {
    font-size: 0.95em; color: #537cf9; font-weight: 600;
    letter-spacing: 0.3px;
}
.phi-content .product-desc {
    font-size: 0.92em; color: #7a9cc8; margin-bottom: 28px;
}
.phi-features {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-direction: column; gap: 16px;
}
.phi-features li {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 16px 18px;
    border-radius: 12px;
    background: rgba(83,124,249,0.05);
    border: 1px solid rgba(83,124,249,0.1);
    transition: background 0.25s, border-color 0.25s;
}
.phi-features li:hover {
    background: rgba(83,124,249,0.1);
    border-color: rgba(83,124,249,0.25);
}
.phi-icon {
    flex-shrink: 0;
    width: 36px; height: 36px; border-radius: 9px;
    background: rgba(83,124,249,0.12); border: 1px solid rgba(83,124,249,0.25);
    display: flex; align-items: center; justify-content: center;
    color: #537cf9; font-size: 0.95em;
}
.phi-features li > div { min-width: 0; }
.phi-features li strong {
    display: block; font-size: 0.95em; font-weight: 700;
    color: #dce8f8;
}
.phi-features li p {
    font-size: 0.85em; color: #7a9ec8; line-height: 1.7; margin: 0;
}
.phi-img {
    flex: 0 0 42%;
    display: flex; align-items: center; justify-content: center;
}
.phi-img img {
    width: 100%; height: auto; display: block; object-fit: contain;
}

.product-hero {
    display: flex; align-items: center; gap: 48px;
    margin-bottom: 36px;
    padding: 36px;
    border-radius: 18px;
    border: 1px solid rgba(83,124,249,0.1);
    background: rgba(255,255,255,0.02);
}
.product-hero-img {
    flex: 0 0 50%; border-radius: 12px; overflow: hidden;
    /*background: rgba(83,124,249,0.04);
    border: 1px solid rgba(83,124,249,0.1);*/
    display: flex; align-items: center; justify-content: center;
    min-height: 240px;
}
.product-hero-img img {
    width: 70%; height: 70%; display: block;
    object-fit: contain;
}
.product-hero-text { flex: 1; }
.product-hero-text h3 {
    font-size: 1.8em; font-weight: 800; color: #e2eaf8;
    margin-bottom: 6px;
}
.product-hero-text .product-sub {
    font-size: 1.1em; color: #537cf9; margin-bottom: 12px; font-weight: 600;
}
.product-hero-text .product-desc {
    font-size: 0.92em; color: #7a9ec8; line-height: 1.7;
}
.nutanix-arch {
    list-style: none; margin: 16px 0 0; padding: 0;
    display: flex; flex-direction: column; gap: 6px;
}
.nutanix-arch li {
    font-size: 0.88em; color: #7a9ec8;
    padding: 6px 14px;
    border-left: 2px solid rgba(83,124,249,0.4);
    background: rgba(83,124,249,0.04);
    border-radius: 0 6px 6px 0;
}


/* ═══════════════════════════════════════
   Ai-Edu Package 섹션
═══════════════════════════════════════ */
.ai-package-section {
    margin-bottom: 48px;
    border: 1px solid rgba(83,124,249,0.1);
    border-radius: 16px;
    overflow: hidden;
}
.ai-package-head {
    padding: 24px 32px 20px;
    border-bottom: 1px solid rgba(83,124,249,0.1);
    background: rgba(83,124,249,0.04);
    display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px;
}
.pkg-bar {
    font-size: 1.3em; font-weight: 700; color: #537cf9; flex-shrink: 0;
}
.ai-package-head h4 {
    font-size: 1.2em; font-weight: 800; color: #e2eaf8;
}
.ai-package-head p {
    width: 100%; font-size: 0.88em; color: #6a8ab8;
    line-height: 1.6; margin-top: 4px; word-break: keep-all;
}
.ai-package-body {
    display: flex; align-items: center; gap: 0;
}
.ai-package-img {
    flex: 0 0 45%;
}
.ai-package-img img { width: 70%; height: 70%; display: block; margin: 0 auto;}
.pkg-product-list {
    flex: 1; list-style: none; margin: 0; padding: 28px 32px;
    display: flex; flex-direction: column; gap: 20px;
}
.pkg-product-list li { border-bottom: 1px solid rgba(83,124,249,0.08); padding-bottom: 16px; }
.pkg-product-list li:last-child { border-bottom: none; padding-bottom: 0; }
.pkg-product-list strong {
    font-size: 1.05em; font-weight: 800; color: #dce8f8;
    display: inline;
}
.pkg-product-list span {
    font-size: 0.85em; color: #537cf9; margin-left: 8px;
}
.pkg-product-list p {
    font-size: 0.88em; color: #7a9ec8; line-height: 1.5;
}


/* ═══════════════════════════════════════
   사양표 + 추가서비스 2컬럼
═══════════════════════════════════════ */
.spec-wrap {
    margin-bottom: 20px;
}
.spec-title {
    font-size: 1.05em; font-weight: 800; color: #e2eaf8;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(83,124,249,0.18);
}
.spec-table {
    width: 100%; border-collapse: collapse;
    font-size: 0.82em;
}
.spec-table th, .spec-table td {
    border: 1px solid rgba(83,124,249,0.13);
    padding: 8px 12px; vertical-align: top; line-height: 1.5;
}
.spec-table th {
    background: rgba(83,124,249,0.1);
    color: #c8daef; font-weight: 600;
    white-space: nowrap; text-align: left; width: 38%;
}
.spec-table td { background: rgba(255,255,255,0.02); color: #b0cae8; }

.extra-service-box {
    background: rgba(83,124,249,0.07);
    border: 1px solid rgba(83,124,249,0.18);
    border-radius: 12px;
    padding: 24px;
    display: flex; flex-direction: column; gap: 20px;
}
.esvc-item strong {
    display: block; font-size: 1.1em; font-weight: 700;
    color: #dce8f8; margin-bottom: 10px; line-height: 1.5;
}
.esvc-item ul {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 6px;
}
.esvc-item ul li {
    font-size: 0.92em; color: #7a9ec8; line-height: 1.65;
    padding-left: 12px; position: relative;
}
.esvc-item ul li::before {
    content: '·'; position: absolute; left: 0; color: #537cf9;
}


/* ═══════════════════════════════════════
   IT 파트너 섹션 (Dell/IBM/Lenovo)
═══════════════════════════════════════ */
.it-partner-section {
    display: flex; flex-direction: column; gap: 28px;
}
.it-hw-img img {
    width: 100%; height: auto; display: block;
    border-radius: 12px;
}
.it-hw-info {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(83,124,249,0.12);
    border-radius: 16px;
    padding: 32px;
}
.hw-list {
    list-style: none; margin: 0 0 28px; padding: 0;
    display: flex; flex-direction: column; gap: 5px;
}
.hw-list li {
    font-size: 0.92em; color: #b8ceea; line-height: 1.6;
    padding-left: 20px; position: relative;
}
.hw-list li::before {
    content: '▶'; position: absolute; left: 0;
    font-size: 0.7em; color: #537cf9; top: 4px;
}
.tech-logo-row {
    display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
}
.tech-logo {
    border-radius: 8px; overflow: hidden;
    border: 1px solid rgba(83,124,249,0.15);
    background: rgba(240, 244, 255, 0.88);
    height: 52px; padding: 6px 8px;
    display: flex; align-items: center; justify-content: center;
}
.tech-logo img { height: 36px; width: auto; object-fit: contain; }


/* ═══════════════════════════════════════
   DATA + AI 뱃지 (04.php)
═══════════════════════════════════════ */
.data-ai-badges {
    display: flex; align-items: center; justify-content: center;
    gap: 16px; flex-wrap: wrap; margin-bottom: 40px;
}
.dai-badge {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    width: 130px; height: 130px; border-radius: 50%;
    background: linear-gradient(135deg, rgba(83,124,249,0.2) 0%, rgba(83,124,249,0.08) 100%);
    border: 1px solid rgba(83,124,249,0.35);
    font-size: 1.2em; font-weight: 800; color: #e2eaf8;
    letter-spacing: 0.5px;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}
.dai-badge:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(83,124,249,0.32) 0%, rgba(83,124,249,0.14) 100%);
    box-shadow: 0 12px 36px rgba(83,124,249,0.25);
}
.dai-badge span { font-size: 0.95em; font-weight: 500; color: #7a9ec8; letter-spacing: 0; }
.dai-sep { font-size: 1.8em; font-weight: 300; color: rgba(83,124,249,0.4); line-height: 1; }


/* ── 반응형 ── */
@media (max-width: 1200px) {
    .bcontents .business { padding: 0 16px; }
    .svc-section-wrap { padding: 0 32px; }
    .bcontents .business ul li .svc-text strong { font-size: 1.4em; }
    .svc-section-head strong { font-size: 1.3em; }
    .phi-content h3, .product-hero-text h3 { font-size: 1.6em; }
}
@media (max-width: 900px) {
    .bcontents .business { padding: 0 16px; }
    .bcontents .business ul li {
        flex-direction: column; gap: 24px; padding: 32px 24px;
    }
    .bcontents .business ul li .svc-img {
        flex: none; width: 100%; height: auto;
        order: 0 !important;
        overflow: hidden;
    }
    .bcontents .business ul li .svc-text { order: 0 !important; }

    /* SVG — height:auto로 viewBox 비율대로 자연 스케일링 (height:100% 오버라이드) */
    .svc-illust { min-height: 160px; justify-content: center; }
    .svc-illust svg { width: 100% !important; height: auto !important; }
    .bcontents .business ul li .svc-text strong { font-size: 1.35em; }

    /* 섹션 */
    .svc-section-wrap { padding: 0 20px; }
    .svc-section-head strong { font-size: 1.25em; }

    /* 피처 카드: 2열 (좁은 폰은 480px 규칙에서 1열로 추가 조정) */
    .feature-grid-2, .feature-grid-3, .feature-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 14px; }

    /* 클라우드 피라미드: 너비 제한 해제 */
    .tier-saas, .tier-paas, .tier-iaas { max-width: 100%; }
    .cloud-tier { padding: 14px 24px; }

    /* 파트너 등급표 */
    .partner-table { font-size: 0.78em; }
    .partner-table th, .partner-table td { padding: 8px 8px; }

    /* 제품 히어로 */
    .product-hero { flex-direction: column; gap: 24px; padding: 24px; }
    .product-hero-integrated { flex-direction: column-reverse; gap: 24px; padding: 24px; }
    .phi-img { flex: none; width: 100%; max-width: 360px; margin: 0 auto; }
    .product-hero-img { flex: none; width: 100%; }

    /* 사양표 2컬럼 → 1열 */
    .spec-wrap { grid-template-columns: 1fr; }

    /* Ai-Edu 패키지 */
    .ai-package-body { flex-direction: column; }
    .ai-package-img { flex: none; width: 100%; }
    .pkg-product-list { padding: 20px 20px; }
}
@media (max-width: 640px) {
    .feature-card { padding: 24px 20px; }
    .feature-card .fc-icon { width: 52px; height: 52px; }
    .cloud-tier .tier-label { font-size: 1em; }
    .cloud-tier .tier-label span { display: block; margin-left: 0; margin-top: 3px; }

    .product-hero-text h3 { font-size: 1.4em; }
    .spec-table { font-size: 0.78em; }
    .tech-logo-row { gap: 8px; }
    .tech-logo { height: auto; padding: 10px 12px; flex: 0 0 calc(33.33% - 6px); box-sizing: border-box; }
    .tech-logo img { height: 28px; width: auto; max-width: 100%; }

    .svc-infographic { padding: 22px 16px; gap: 16px; }
    .info-stat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .info-stat .num { font-size: 1.5em; }
    .svc-illust { min-height: 250px; }
}
@media (max-width: 480px) {
    .bcontents .business ul li { padding: 24px 16px; margin-bottom: 12px; }
    .bcontents .business ul li::before { top: 14px; right: 18px; }
    .bcontents .business ul li .svc-text strong { font-size: 1.2em; }
    .bcontents .business ul li .svc-text span { font-size: 0.93em; }
    /* 섹션 */
    .svc-section-wrap { padding: 0 14px; }
    .svc-section-head { margin-bottom: 28px; }
    .svc-section-head strong { font-size: 1.1em; }
    .svc-section-head p { font-size: 0.85em; }

    /* 피처 카드: 좁은 폰에서도 2열 유지 (솔루션 페이지와 동일), 4열만 1열로 */
    .feature-grid-4 { grid-template-columns: 1fr; }
    .feature-card { padding: 20px 16px; }
    .feature-card .fc-title { font-size: 0.98em; }
    .feature-card p { font-size: 0.85em; }

    /* IT 파트너 로고 — 480px에서 2열 */
    .tech-logo { flex: 0 0 calc(50% - 4px); }

    /* 파트너 배지 */
    .partner-badge-row { gap: 10px; }
    .partner-logo { height: 18px; }
    .partner-badge-title { font-size: 0.9em; }

    /* 제품 히어로 */
    .product-hero { padding: 16px; gap: 16px; }
    .product-hero-text h3 { font-size: 1.2em; }

    /* 사양표 */
    .spec-table th { width: 30%; font-size: 0.78em; }
    .spec-table td { font-size: 0.78em; }

    /* 패키지 */
    .ai-package-head { padding: 16px 20px; }
    .pkg-product-list { padding: 16px; gap: 14px; }

    /* 추가서비스 */
    .extra-service-box { padding: 16px; }
    .esvc-item strong { font-size: 0.85em; }

    /* IT 파트너 */
    .it-hw-info { padding: 20px 16px; }
    .hw-list li { font-size: 0.85em; }

    /* B안 인포그래픽 */
    .svc-infographic { padding: 20px 16px; }
    .info-stat-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .info-stat .num { font-size: 1.6em; }
    .info-bars { gap: 10px; }
    .bar-row { gap: 6px; }
    .info-tags { gap: 6px; }
    .info-tag { font-size: 0.72em; padding: 3px 10px; }

    /* C안 SVG */
    .svc-illust { min-height: 250px; }
}

/* ═══════════════════════════════════════
   B안: CSS 인포그래픽 (.svc-infographic)
═══════════════════════════════════════ */
.svc-infographic {
    display: flex; flex-direction: column; gap: 20px;
    padding: 28px 24px;
    background: rgba(83,124,249,0.04);
    border: 1px solid rgba(83,124,249,0.12);
    border-radius: 14px;
    box-sizing: border-box;
}

/* 수치 그리드 */
.info-stat-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.info-stat {
    display: flex; flex-direction: column; align-items: center;
    gap: 4px; text-align: center;
}
.info-stat .num {
    font-size: 1.9em; font-weight: 900; color: #e2eaf8; line-height: 1;
    letter-spacing: -0.02em;
}
.info-stat .num em {
    font-style: normal; font-size: 0.55em; font-weight: 700;
    color: #537cf9; vertical-align: middle;
}
.info-stat .label {
    font-size: 0.72em; color: #6a8ab8; letter-spacing: 0.2px;
    word-break: keep-all; text-align: center;
}

/* 프로그레스 바 */
.info-bars { display: flex; flex-direction: column; gap: 10px; }
.bar-row { display: flex; flex-direction: column; gap: 5px; }
.bar-meta {
    display: flex; justify-content: space-between; align-items: center;
}
.bar-meta span { font-size: 0.78em; color: #7a9cc8; }
.bar-meta strong { font-size: 0.82em; font-weight: 700; color: #93b4d8; }
.bar-track {
    height: 5px; border-radius: 3px;
    background: rgba(83,124,249,0.12);
    overflow: hidden;
}
.bar-fill {
    height: 100%; border-radius: 3px;
    background: linear-gradient(90deg, #537cf9 0%, #7ba7ff 100%);
    animation: bar-grow 1.2s ease-out forwards;
    transform-origin: left;
}
@keyframes bar-grow {
    from { width: 0 !important; }
    to   { /* inherits inline width */ }
}

/* 태그 */
.info-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.info-tag {
    display: inline-block; padding: 4px 12px;
    background: rgba(83,124,249,0.1); border: 1px solid rgba(83,124,249,0.25);
    border-radius: 20px; font-size: 0.76em; color: #7ba7ff; letter-spacing: 0.2px;
}

/* ═══════════════════════════════════════
   C안: SVG 일러스트 (.svc-illust)
═══════════════════════════════════════ */
.svc-illust {
    border-radius: 14px;
    background: rgba(83,124,249,0.03);
    /*border: 1px solid rgba(83,124,249,0.1);*/
    overflow: hidden;
    min-height: 260px;
    display: flex; align-items: center; justify-content: center;
}
.svc-illust svg { display: block; width: 100%; height: 100%; }

/* ── B/C 반응형 ── */
@media (max-width: 960px) {
    .info-stat-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .info-stat .num { font-size: 1.65em; }
}
/* ── AI OCR 흐름도 ── */
.ocr-flow-wrap {
    max-width: 1120px;
    margin: 0 auto 48px;
    padding: 0 24px;
}
.ocr-flow {
    display: flex;
    align-items: stretch;
    gap: 0;
    /*background: rgba(10,12,20,0.7);*/
    /*border: 1px solid rgba(255,255,255,0.07);*/
    border-radius: 16px;
    padding: 32px 24px;
    overflow-x: auto;
}
.ocr-flow-card {
    flex: 1;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 16px;
    border-radius: 12px;
    gap: 10px;
}
.ocr-flow-doc     { background: rgba(80,80,95,0.45);   border: 1px solid rgba(255,255,255,0.12); }
.ocr-flow-ai      { background: rgba(91,75,214,0.55);  border: 1px solid rgba(140,110,255,0.4); }
.ocr-flow-extract { background: rgba(26,158,122,0.5);  border: 1px solid rgba(60,210,150,0.35); }
.ocr-flow-store   { background: rgba(37,99,184,0.5);   border: 1px solid rgba(80,160,255,0.35); }

.ocr-flow-icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    color: #fff;
}
.ocr-flow-card strong {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    display: block;
}
.ocr-flow-icon i {
    font-size: 1.4em;
}
.ocr-flow-card span {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
    display: block;
}
.ocr-flow-card em {
    font-style: normal;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.03em;
}
.ocr-flow-arrow {
    display: flex;
    align-items: center;
    padding: 0 10px;
    color: rgba(255,255,255,0.3);
    font-size: 18px;
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .ocr-flow {
        flex-direction: column;
        gap: 8px;
        padding: 20px 16px;
    }
    .ocr-flow-arrow {
        transform: rotate(90deg);
        padding: 4px 0;
        justify-content: center;
    }
    .ocr-flow-card { /*flex-direction: row;*/ text-align: left; padding: 14px 16px; gap: 5px; }
    .ocr-flow-card strong { font-size: 12px; }
    .ocr-flow-card span { font-size: 10px; }
}

/* ── 흐름도 포함 세로 카드 ── */
.bcontents .business ul li.svc-li-column {
    flex-direction: column !important;
    align-items: stretch;
    gap: 28px;
}
.bcontents .business ul li.svc-li-column .ocr-flow {
    width: 100%;
    /*background: rgba(255,255,255,0.02);*/
    /*border: 1px solid rgba(255,255,255,0.06);*/
    border-radius: 12px;
    padding: 24px 16px;
    display: flex;
    align-items: stretch;
    overflow-y: hidden;
}
.bcontents .business ul li.svc-li-column .svc-text {
    flex: none;
}
