/* 슬라이드: 경쟁사 차별성 레이아웃 */
.differentiation-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;
    box-sizing: border-box;

    background-color: #FAFAFA;
    color: #333333;
    font-family: 'Noto Sans KR', sans-serif;

    /* 중앙 정렬 보정 */
    margin: 0 auto;
    padding: 0;
    text-align: center;
}

.differentiation-section .section-header {
    width: 100%;
    text-align: center;
    font-size: 2.2rem;
    font-weight: 900;
    margin: 0 auto 35px auto !important;

    letter-spacing: -1px;
}

.diff-main-msg {
    width: 100%;
    font-size: 1.15rem !important;
    color: #555555;
    margin: 0 auto 40px auto !important;
    word-break: keep-all;
    text-align: center;
}

.highlight-gold {
    color: #D4AF37;
    font-weight: 700;
}

/* 테이블 영역 스타일 */
.diff-table-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 35px auto;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    box-sizing: border-box;
}

.diff-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
    text-align: center;
    table-layout: fixed;
}

.diff-table th,
.diff-table td {
    padding: 18px 15px;
    border-bottom: 1px solid #EEEEEE;
    border-right: 1px solid #EEEEEE;
    vertical-align: middle;
    word-break: keep-all;
}

.diff-table th:last-child,
.diff-table td:last-child {
    border-right: none;
}

.diff-table th {
    background-color: #F8F8F8;
    color: #333333;
    font-weight: 700;
    font-size: 1.1rem;
}

.diff-table .col-header {
    width: 18%;
}

.diff-table .row-header {
    background-color: #FAFAFA;
    font-weight: 700;
    color: #555555;
    text-align: center;
}

/* 테이블 내 텍스트 컬러 포인트 */
.negative-text {
    color: #E57373;
}

.positive-text {
    color: #1E88E5;
}

/* LUEN 강조 컬럼 */
.diff-table .luen-col-header {
    background-color: #D4AF37;
    color: #ffffff;
    border-bottom: none;
}

.diff-table .luen-col {
    background-color: rgba(212, 175, 55, 0.05);
    border-left: 2px solid #D4AF37;
    border-right: 2px solid #D4AF37;
    color: #333333;
    font-size: 1.05rem;
}

.diff-table tr:last-child .luen-col {
    border-bottom: 3px solid #D4AF37;
}

.diff-table .highlight-price {
    color: #D4AF37;
    font-size: 1.15rem;
}

/* 하단 3대 키워드 카드 */
.diff-keywords-container {
    display: flex;
    width: 100%;
    max-width: 1100px;
    gap: 30px;
    justify-content: center;
    align-items: stretch;

    /* 중앙 정렬 보정 */
    margin: 0 auto;
    box-sizing: border-box;
}

.diff-keyword-card {
    flex: 1;
    background: #ffffff;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
    border-top: 4px solid #D4AF37;
    text-align: center;
    transition: transform 0.3s ease;
    box-sizing: border-box;
}

.diff-keyword-card:hover {
    transform: translateY(-5px);
}

.keyword-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.keyword-title {
    color: #333333 !important;
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    margin: 0 0 10px 0 !important;
    letter-spacing: -0.5px;
}

.keyword-desc {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    color: #666666;
    margin: 0 !important;
    word-break: keep-all;
    text-align: left;           /* 텍스트를 왼쪽으로 정렬 */
    display: inline-block;      /* 텍스트 블록 자체는 카드 중앙에 위치하도록 설정 */
}