/* =========================================================
   SERVICE 04 (TECH & DEV) - 01, 02, 03 기준 일치 보정 완료
   ========================================================= */

:root {
    --point-tech: #2d3436; /* 전문적인 다크 그레이 */
    --accent-tech: #00d1ff; /* AI & 소프트웨어 포인트 블루 */
}

/* [공통 폭 고정] - 서비스 01, 02, 03과 동일 */
.service-tech .service-copy {
    flex: 0 0 520px !important;
    max-width: 520px !important;
}

/* 1. 상단 배지 ~ 소제목 (간격 동기화) */
.service-tech .service-badge {
    background: var(--point-tech) !important;
    font-size: 13px !important;
    padding: 6px 16px !important;
    margin-bottom: 20px !important; 
    display: inline-block;
    border-radius: 50px;
    color: #fff !important;
    font-weight: 900;
}

.service-tech .service-connection {
    display: flex;
    align-items: center;
    border-left: 3px solid var(--accent-tech); /* 포인트 컬러로 차별화 */
    padding-left: 16px;
    margin-bottom: 12px !important;
    font-size: 15px !important;
    font-weight: 600;
    color: #444;
    line-height: 1 !important;
}

.service-tech .service-kick {
    font-size: 20px !important;
    font-weight: 800 !important;
    color: var(--point-tech) !important;
    margin-bottom: 12px !important;
    line-height: 1.2 !important;
}

/* 2. 메인 타이틀 (44px 정렬 일치) */
.service-tech .service-title {
    font-size: 44px !important;
    line-height: 1.25 !important;
    letter-spacing: -1.5px !important;
    margin-bottom: 28px !important;
    font-weight: 800 !important;
}

.service-tech .service-title span {
    color: var(--accent-tech) !important;
}

/* 3. 본문 및 리스트 (줄간격 1.85 동기화) */
.service-tech .service-define {
    font-size: 16px !important;
    line-height: 1.85 !important;
    color: #444 !important;
    margin-bottom: 30px !important;
    word-break: keep-all;
}

.service-tech .service-list li {
    font-size: 15px !important;
    line-height: 1.7 !important;
    margin-bottom: 12px !important;
}

/* 4. 하단 요약 문구 (01, 02, 03과 수평선 일치) */
.service-tech .service-one-line {
    font-size: 14px !important;
    line-height: 1.75 !important;
    color: #444;
    margin-top: 35px !important; 
    padding-top: 20px !important;
    border-top: 1px solid #eee !important;
    display: flex;
    align-items: flex-start;
}

.service-tech .service-one-line::before {
    content: "";
    display: inline-block;
    width: 3px;
    height: 18px;
    background-color: var(--accent-tech); 
    margin-right: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* 5. 우측 비주얼 (카드 스타일 동기화) */
.service-tech .service-proof {
    flex: 0 0 550px !important;
    max-width: 550px !important;
}

.service-tech .nb-card-large {
    border: 1px solid #e2e8f0 !important;
    border-top: 5px solid var(--point-tech) !important; /* 상단 포인트 바 */
    border-radius: 20px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* 테크 전용 비주얼 박스 */
.dev-visual-box {
    position: relative;
    width: 100%;
    height: 200px; /* 적절한 높이 설정 */
    border-radius: 12px;
    overflow: hidden;
    background: #1e2124; /* 이미지 로딩 전 배경색 */
}

.dev-overlay-content {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    padding: 24px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.dev-header {
    display: flex;
    gap: 6px;
    margin-bottom: 15px;
}

.dev-header span.dot {
    width: 8px; height: 8px; border-radius: 50%;
}

.code-lines .line {
    height: 4px;
    background: linear-gradient(90deg, var(--accent-tech), transparent);
    margin-bottom: 10px;
    border-radius: 2px;
}

.text-tech {
    color: var(--accent-tech) !important;
}

/* 이미지 박스 컨테이너 */
.dev-visual-box {
    position: relative;
    width: 100%;
    height: 180px; /* 01, 02번 카드 이미지 높이와 맞춤 */
    background: #1e2124;
    border-radius: 12px;
    overflow: hidden;
}


