@charset "utf-8";

/* ============================== content-wrapper 하단 여백 제거 */
.content-wrapper {
    margin-bottom: 0 !important;
}

/* ============================== 애니메이션 */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes count-up {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================== 공통 섹션 */
.ci-section {
    padding: 80px 0;
}
.ci-section--gray {
    background: linear-gradient(135deg, #f0f4f8 0%, #f7f8fa 50%, #eef3f9 100%);
}
.ci-section__inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ============================== 섹션 라벨/타이틀 */
.ci-label {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    margin: 0 0 10px;
    background: linear-gradient(90deg, #278bda, #5ab4f5, #278bda);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}
.ci-title {
    font-size: 32px;
    font-weight: 800;
    color: #111;
    margin: 0 0 52px;
    font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
    position: relative;
    display: inline-block;
}
.ci-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #278bda, #5ab4f5);
}

/* ============================== 히어로 */
.ci-hero {
    padding: 100px 0 80px;
    background: linear-gradient(160deg, #0a1628 0%, #132d54 40%, #1a3f6f 100%);
    position: relative;
    overflow: hidden;
}
.ci-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(39,139,218,.15) 0%, transparent 70%);
    pointer-events: none;
}
.ci-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(90,180,245,.08) 0%, transparent 70%);
    pointer-events: none;
}
.ci-hero__inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}
.ci-hero__label {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    color: rgba(90,180,245,.7);
    margin: 0 0 20px;
}
.ci-hero__title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin: 0 0 24px;
    font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
}
.ci-hero__desc {
    font-size: 17px;
    color: rgba(255,255,255,.65);
    line-height: 1.8;
    margin: 0 0 48px;
}

/* 통계 */
.ci-hero__stats {
    display: flex;
    gap: 48px;
}
.ci-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.ci-stat__num {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.ci-stat__num small {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255,255,255,.5);
}
.ci-stat__label {
    font-size: 13px;
    color: rgba(255,255,255,.45);
    letter-spacing: .5px;
}

/* ============================== 핵심가치 카드 */
.ci-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.ci-values__card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px 36px;
    border: 1px solid #eef1f5;
    overflow: hidden;
    transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s cubic-bezier(.22,1,.36,1);
}
.ci-values__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #278bda, #5ab4f5);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}
.ci-values__card:hover::before {
    transform: scaleX(1);
}
.ci-values__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(39,139,218,.15);
}
.ci-values__num {
    font-family: 'Poppins', sans-serif;
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
    color: #f0f2f5;
    position: absolute;
    top: 16px;
    right: 24px;
    transition: color .4s ease, transform .4s ease;
}
.ci-values__card:hover .ci-values__num {
    color: #e4e9ef;
    transform: scale(1.1);
}
.ci-values__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(39,139,218,.1);
    color: #278bda;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease;
}
.ci-values__card:hover .ci-values__icon {
    transform: scale(1.15) rotate(-3deg);
    box-shadow: 0 6px 20px rgba(39,139,218,.2);
}
.ci-values__name {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin: 0 0 14px;
}
.ci-values__desc {
    font-size: 15px;
    color: #888;
    line-height: 1.75;
    margin: 0;
}

/* ============================== 사업영역 */
.ci-business {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.ci-business__card {
    position: relative;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 36px 36px 36px 100px;
    transition: border-color .3s ease, box-shadow .3s ease;
}
.ci-business__card:hover {
    border-color: #c8ddf0;
    box-shadow: 0 6px 24px rgba(39,139,218,.07);
}
.ci-business__num {
    position: absolute;
    top: 36px;
    left: 36px;
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #eef3f9;
    line-height: 1;
    transition: color .3s ease;
}
.ci-business__card:hover .ci-business__num {
    color: #d0e3f5;
}
.ci-business__name {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin: 0 0 12px;
}
.ci-business__desc {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin: 0 0 20px;
}
.ci-business__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 24px;
}
.ci-business__list li {
    font-size: 14px;
    color: #555;
    padding-left: 14px;
    position: relative;
}
.ci-business__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #278bda;
}

/* ============================== 회사정보 테이블 */
.ci-info__table {
    width: 100%;
    border-collapse: collapse;
}
.ci-info__table tr {
    border-bottom: 1px solid #eee;
}
.ci-info__table tr:last-child {
    border-bottom: none;
}
.ci-info__table th {
    width: 120px;
    padding: 18px 0;
    font-size: 13px;
    font-weight: 500;
    color: #999;
    text-align: left;
    vertical-align: middle;
    white-space: nowrap;
    letter-spacing: .3px;
}
.ci-info__table td {
    padding: 18px 0;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    line-height: 1.6;
}
.ci-info__note {
    font-size: 12px;
    font-weight: 400;
    color: #bbb;
    margin-left: 6px;
}

/* ============================== 반응형 */
@media (max-width: 768px) {
    .ci-hero { padding: 64px 0 56px; }
    .ci-hero__inner { padding: 0 20px; }
    .ci-hero__title { font-size: 32px; }
    .ci-hero__desc { font-size: 15px; margin-bottom: 36px; }
    .ci-hero__stats { gap: 32px; }
    .ci-stat__num { font-size: 28px; }
    .ci-section { padding: 52px 0; }
    .ci-section__inner { padding: 0 20px; }
    .ci-title { font-size: 24px; margin-bottom: 36px; }
    .ci-values {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .ci-values__card { padding: 28px 24px 24px; }
    .ci-values__name { font-size: 20px; }
    .ci-values__desc { font-size: 14px; }
    .ci-business__card { padding: 28px 24px 28px 24px; }
    .ci-business__num { position: static; font-size: 28px; margin-bottom: 8px; }
    .ci-business__name { font-size: 18px; }
    .ci-business__desc { font-size: 14px; }
    .ci-business__list { grid-template-columns: 1fr; gap: 6px; }
    .ci-business__list li { font-size: 13px; }
    .ci-info__table th { width: 90px; padding: 14px 0; font-size: 12px; }
    .ci-info__table td { padding: 14px 0; font-size: 14px; }
}

@media (max-width: 480px) {
    .ci-hero { padding: 48px 0 40px; }
    .ci-hero__title { font-size: 28px; }
    .ci-hero__desc { font-size: 14px; }
    .ci-hero__stats { flex-wrap: wrap; gap: 24px; }
    .ci-stat__num { font-size: 24px; }
    .ci-section { padding: 40px 0; }
    .ci-title { font-size: 22px; margin-bottom: 28px; }
    .ci-info__table th { width: 80px; padding: 12px 0; font-size: 11px; }
    .ci-info__table td { padding: 12px 0; font-size: 13px; }
}
