@charset "utf-8";
:root {
    /* 메인 포인트 컬러 (골드) */
    --point: #c5a059;
    --point_rgb: 197, 160, 89; /* 투명도 조절용 */

    /* 강조 및 보조 컬러 */
    --gold_light: #e2c9a1;
    --gold_dark: #a38141;

    /* 서브 페이지용 (기존 sky/blue 대체) */
    --sub_point: #c5a059;
    --bg_light_gold: #fdfaf5; /* 기존 bg_gray_f9나 sky를 대체할 연한 골드 배경 */
}
.fc_light_point{ color: var(--sub_point) !important ;}

/* 0. 메인 섹션 공통 */
section.profit_summary,
section.section_easy,
section.section_profit,
section.section_process,
section.section_faq {
    position: relative;
    padding: 120px 0;
    background: var(--white);
    word-break: keep-all;
}


/* ============================================================
   [V8] 리셀러 전용 프리미엄 디자인 - 요청하신 그라데이션 완벽 반영
   ============================================================ */
.ResellerSlide {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: 146px;
    background: #020b1a;
}

@media screen and (min-width: 1101px) {
    .ResellerSlide .swiper-container { height: 850px; }
}

.ResellerSlide .bg_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.25) contrast(1.1);
    display: block;
}

.ResellerSlide .slide_txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1300px;
    padding: 0 40px;
    z-index: 10;
}

.ResellerSlide .bg_word {
    position: absolute;
    top: -60px;
    left: 20px;
    font-size: 180px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    z-index: -1;
    letter-spacing: -5px;
}

/* 판매 NO! 영업 NO! 뱃지 */
.ResellerSlide .tit_top {
    display: inline-flex;
    align-items: center;
    background: #c5a059;
    color: #000;
    padding: 10px 25px;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 35px;
    border-radius: 2px;
}

.ResellerSlide .tit_main {
    font-size: 82px;
    font-weight: 900;
    line-height: 1.15;
    color: #fff;
    letter-spacing: -4px;
    margin-bottom: 60px;
}

/* ★★★ 요청하신 그라데이션 스타일 적용 ★★★ */
.ResellerSlide .tit_main span {
    display: inline-block;
    color: #c5a059;
    background: linear-gradient(62deg, #c5a059, #f9e3b4); /* 요청하신 각도와 색상 */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(197, 160, 89, 0.4));
    animation: fadeInUp 0.8s ease-out;
}

/* 하단 포인트 카드 */
.ResellerSlide .point_flex {
    display: flex;
    gap: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 50px;
}

.ResellerSlide .point_item { flex: 1; transition: 0.3s; }
.ResellerSlide .point_item:hover { transform: translateY(-10px); }

.ResellerSlide .point_num {
    display: block;
    font-size: 14px;
    color: #c5a059;
    font-weight: 800;
    margin-bottom: 12px;
}

.ResellerSlide .point_txt {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.ResellerSlide .point_txt strong {
    display: block;
    color: #fff;
    font-size: 22px;
    margin-bottom: 8px;
}

/* 수익금 강조 */
.ResellerSlide .profit_val {
    display: inline-block;
    color: #f9e3b4;
	 background: linear-gradient(62deg, #f9e3b4, #c5a059, #f9e3b4); /* 요청하신 각도와 색상 */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(197, 160, 89, 0.4));
    font-size: 26px;
    font-weight: 900;
    border-bottom: 4px solid rgba(197, 160, 89, 0.5);
    margin-top: 10px;
}

/* 애니메이션 */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 모바일 대응 */
@media (max-width: 900px) {
    .ResellerSlide {margin-top: 60px;    }
    .ResellerSlide .swiper-container { height: 85vh; }
    .ResellerSlide .slide_txt { padding: 0 10px; text-align: center; }
    .ResellerSlide .tit_main { font-size: 2.5rem; margin-bottom: 20px; letter-spacing: normal;}
    .ResellerSlide .point_flex { flex-direction: column; gap: 15px; padding-top: 20px; }
    .ResellerSlide .point_item{ background-color: rgba(0, 0, 0, 0.4); border-radius: var(--br_m); padding: 10px; width: 80%; margin: 0 auto;}
        .ResellerSlide .point_num{ font-size: 1.2rem; margin-bottom: 0.75rem;}

    .ResellerSlide .point_txt { font-size: 1rem; }
    .ResellerSlide .point_txt strong{ font-size: 1.2rem;}

    .ResellerSlide .profit_val { font-size: inherit; margin-top: 0; }
    .ResellerSlide  .bottom_msg{ width: 80%; margin: 1.5rem auto 0; border-radius: var(--br_m); font-size: 1.2rem;}
}

/* 1. 상단 수익 요약 배너 (슬라이드 직후) */
.animate_wrapper {
    flex: 1;
    display: flex;
}
.profit_summary { background: #f8f9fa !important; padding: 60px 0 !important; border-bottom: 1px solid var(--gray_ee); }
.summary_flex { display: flex; gap: 30px; justify-content: center; }
/* 공통 카드 스타일 */
.summary_card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    width: 100%; /* 래퍼 안을 꽉 채우도록 */
    border: 1px solid var(--gray_ee);
    border-bottom: 5px solid var(--gray_ee);
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    /* 호버를 위한 transition만 집중 */
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
                box-shadow 0.4s ease,
                border-color 0.4s ease;
    text-align: center;
    cursor: pointer;
}

/* 호버 시 입체적 효과 */
.summary_card:hover {
    transform: translateY(-15px);
    border-color: #c5a47e;
    box-shadow: 0 25px 50px rgba(197, 164, 126, 0.15);
}

.summary_card h4 { font-size: 18px; color: #888; margin-bottom: 15px; font-weight: 700; transition: 0.3s; }
.summary_card p { font-size: 28px; font-weight: 900; color: var(--gray_2); line-height: 1.4; }
.summary_card p span { color: #c5a47e; } /* 메인 골드톤 */

/* 프리미엄 카드 (확장 수당) 상세 */
.summary_card.premium_card {
    background: #1a1a1a !important;
    border: 1px solid var(--gray_3) !important;
    border-bottom: 5px solid #c5a47e !important;
}
.summary_card.premium_card h4 { color: #c5a47e !important; }
.summary_card.premium_card p { color: var(--white) !important; }
.summary_card.premium_card p span {
    background: linear-gradient(135deg, #e2c9a1 0%, #c5a47e 50%, #a88a64 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

/* 프리미엄 카드 호버 시 */
.summary_card.premium_card:hover {
    border-color: #e2c9a1 !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}
/* 텍스트 색상 전이 부드럽게 */
.summary_card h4, .summary_card p, .summary_card p span {
    transition: color 0.3s ease;
}

/* 2. 매력1. Easy 섹션 & 키포인트 */
.easy_grid { display: flex; gap: 20px; margin: 60px 0; }
.easy_item {
    flex: 1; padding: 50px 30px; background: var(--white); border: 1px solid var(--gray_ee);
    border-radius: 20px; position: relative; transition: 0.3s;
}
.easy_item .num {
    position: absolute; top: -22px; left: 30px; background: #020b1a; color: #f9e3b4;
    width: 45px; height: 45px; display: flex; align-items: center; justify-content: center;
    border-radius: 50%; font-weight: 800; border: 2px solid #c5a059;
}
.easy_item h4 { font-size: 22px; margin-bottom: 20px; color: #c5a059; font-weight: 800; }
.easy_item p { font-size: 17px; color: var(--gray_5); line-height: 1.7; }

.keypoint_box {
    background: #020b1a; color: var(--white); padding: 60px; border-radius: 30px;
    text-align: left; margin-top: 80px; box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
.keypoint_box h5 { font-size: 24px; color: #f9e3b4; margin-bottom: 25px; display: flex; align-items: center; font-weight: 700; }
.keypoint_box h5::before { content: ''; width: 30px; height: 2px; background: #c5a059; margin-right: 15px; }
.keypoint_box p { font-size: 18px; line-height: 1.9; opacity: 0.9; font-weight: 300; }
.keypoint_box strong { color: #f9e3b4; }

.btn_go_free {
    display: inline-block; margin-top: 40px; background: #c5a059; color: var(--white) !important;
    padding: 18px 45px; border-radius: 50px; font-weight: 700; font-size: 18px; transition: 0.3s;
}
.btn_go_free:hover { background: #f9e3b4; color: #020b1a !important; transform: translateY(-5px); }

/* ============================================================
   [V11] Profit 섹션 - 수익 카드 스타일 (Black & Gold 통합)
   ============================================================ */

/* [0] 섹션 공통 */
.section_profit { background: #f8f9fa !important; }
.section_profit_structure .wrap { max-width: 1300px; margin: 0 auto; padding: 0 20px; }

/* [1] 공통 카드 스타일 격리 */
.section_profit_structure .profit_card {
    flex: 1;
    border: 1px solid var(--gray_ee);
    /* 상단 포인트 바: 기본은 그레이, 클래스로 제어 */
    border-top: 5px solid var(--gray_ee) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: left;
    position: relative;
    word-break: keep-all;
}

/* 호버 시 입체감 부여 */
.section_profit_structure .profit_card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(197, 164, 126, 0.15);
}

/* 카드 내부 공통 요소 */
.section_profit_structure .profit_card h4 { font-size: 22px; font-weight: 800; color: var(--gray_3); margin-bottom: 20px; }
.section_profit_structure .profit_card p { font-size: 15px; color: var(--gray_6); line-height: 1.6; margin-bottom: 4px; }
.section_profit_structure .profit_card strong { font-weight: 700; color: var(--point); }

/* 뱃지 및 아이콘 */
.section_profit_structure .profit_card .badge {
    font-size: 14px; font-weight: 700; padding: 5px; border-radius: var(--br_s);
    border: 1px solid transparent; display: inline-block;
}
.section_profit_structure .profit_card i { font-size: 30px; color: var(--gray_cc); transition: 0.3s; }

/* 가격 영역 */
.section_profit_structure .price_tag { text-align: right; }
.section_profit_structure .price_tag strong { font-size: 28px; font-weight: 900; margin-left: 1px; } /* ml4px */

/* [0] 섹션 기본 배경 */
.section_profit { background: #f8f9fa !important; padding: 100px 0 !important; }

/* [1] 공통 카드 스타일 */
.section_profit_structure .profit_card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    flex: 1;
    border: 1px solid var(--gray_ee); /* 기본 테두리 */
    border-top: 5px solid var(--gray_ee) !important; /* 기본 상단 보더 */
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: left;
    position: relative;
    word-break: keep-all;
}

/* 호버 공통 효과 */
.section_profit_structure .profit_card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* 텍스트 및 아이콘 기본 */
.section_profit_structure .profit_card h4 { font-size: 22px; font-weight: 800; color: var(--gray_2); margin-bottom: 15px; }
.section_profit_structure .profit_card p { font-size: 15px; color: var(--gray_6); line-height: 1.7; margin-bottom: 25px; }
.section_profit_structure .profit_card .badge { display: inline-block; padding: 5px 12px; border-radius: 5px; font-weight: 700; font-size: 13px; }
.section_profit_structure .profit_card i { font-size: 30px; color: var(--gray_cc); }

/* 가격 영역 */
.section_profit_structure .price_tag { text-align: right; border-top: 1px solid #f0f0f0; padding-top: 20px; }
.section_profit_structure .price_tag strong { font-size: 32px; font-weight: 900; }

/* ------------------------------------------------------------
   [2] 카드별 포인트 컬러 (기초/확장/관리)
   ------------------------------------------------------------ */

/* --- A. 기초 수익 (화이트 + 골드 포인트) --- */
.section_profit_structure .border_t4_point { border-top-color: #c5a47e !important; }
.section_profit_structure .fc_point.badge { color: #c5a47e !important; border: 1px solid #c5a47e !important; background: var(--white) !important; }
.section_profit_structure .border_t4_point .price_tag strong { color: #c5a47e; }
.section_profit_structure .border_t4_point:hover { border-color: #c5a47e; }

/* --- B. 확장 수익 (블랙 + 프리미엄 골드) --- */
.section_profit_structure .bg_gray_2 {
    background: #1a1a1a !important;
    color: var(--white) !important;
    border: 1px solid var(--gray_3) !important; /* 전체 테두리 우선 선언 */
}

/* 상단 보더 노출 해결: 클래스 결합으로 우선순위 확보 */
.section_profit_structure .profit_card.border_t4_gold {
    border-top: 5px solid #e2c9a1 !important;
}

.section_profit_structure .bg_gray_2 h4 { color: var(--white) !important; }
.section_profit_structure .bg_gray_2 p { color: rgba(255,255,255,0.6) !important; }
.section_profit_structure .bg_gray_2 i { color: #e2c9a1 !important; }

/* 뱃지 골드 */
.section_profit_structure .fc_gold.badge {
    color: #e2c9a1 !important;
    border: 1px solid rgba(226, 201, 161, 0.5) !important;
    background: transparent !important;
}

/* 가격 그라데이션 */
.section_profit_structure .bg_gray_2 .price_tag { border-top-color: var(--gray_3); }
.section_profit_structure .bg_gray_2 .price_tag strong {
    background: linear-gradient(135deg, #e2c9a1 0%, #c5a47e 50%, #a88a64 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #e2c9a1; /* fallback */
}

/* 블랙 카드 전용 호버 */
.section_profit_structure .bg_gray_2:hover {
    border-top-color: #fceabb !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4) !important;
}

/* --- C. 관리 수익 (화이트 + 그레이) --- */
.section_profit_structure .border_t4_gray { border-top-color: var(--gray_9) !important; }
.section_profit_structure .border_t4_gray .badge { color: var(--gray_6) !important; border: 1px solid var(--gray_cc) !important; background: #f8f9fa !important; }
.section_profit_structure .border_t4_gray .price_tag strong { color: var(--gray_2); }

/* 테이블 영역 레이아웃 */
.section_profit_table_area .reseller_table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
}

/* 헤더 스타일 */
.section_profit_table_area .reseller_table th {
    background: #f1f2f4;
    border-bottom: 2px solid #e2e5e9;
    color: var(--gray_4);
    font-size: 17px;
    font-weight: 700;
}

/* 바디 셀 스타일 */
.section_profit_table_area .reseller_table td {
    padding: 20px 15px;
    border-bottom: 1px solid #f0f0f0;
    text-align: center;
    font-size: 17px;
    color: var(--gray_5);
}

/* 1. 연한 골드 강조 (기초/확장 수익 열) */
.section_profit_table_area .reseller_table .bg_lighter_point {
    background: #fdfaf3 !important; /* 아주 연한 샴페인 골드 배경 */
    color: #a88a64;
}

/* 2. 짙은 골드 강조 (총수익 헤더) */
.section_profit_table_area .bg_dark_point {
    background: #c5a47e !important; /* 메인 샴페인 골드 */
    color: var(--white) !important;
}

/* 3. 행(Row) 호버 효과 */
.section_profit_table_area .reseller_table tbody tr:hover {
    background-color: #fcfcfc;
}

/* 4. 마지막 줄(최고 수익 예시) 강조 */
.section_profit_table_area .reseller_table tr:last-child td {
    background: #fffef9;
    font-weight: 800;
    border-bottom: none;
}

/* 반응형 그림자 보강 */
.table_responsive {
    border-radius: 15px;
    border: 1px solid var(--gray_ee);
    overflow: hidden;
}

/* ============================================================
  section_process
   ============================================================ */
/* ============================================================
   메인 페이지 전용 격리 (Scoping): .section_process & .section_profit
   ============================================================ */

/* [1] 공통 섹션 설정 */
.section_process { overflow: hidden; }

/* [2] 상단 프로세스 바 (STEP 영역) */
.section_profit_process {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-around !important;
    align-items: center !important;
    background: var(--white) !important;
    border: 1px solid var(--gray_ee) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
}

/* 개별 스텝 박스 격리 */
.proc_step {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 스텝 아이콘 원형 격리 (서브 60px와 충돌 방지 위해 85px 고정) */
.icon_circle {
    width: 85px !important;
    height: 85px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 28px !important;
    background: var(--white);
    color: #c5a47e;
    border: 1px solid #f0f0f0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

/* 마지막 STEP 04 배경 골드 그라데이션 격리 */
.icon_circle.bg_point {
    background: linear-gradient(135deg, #e2c9a1 0%, #c5a47e 100%) !important;
    color: var(--white) !important;
    border: none !important;
}

/* 화살표 아이콘 격리 */
.fa-chevron-right {
    color: #ddd !important;
    margin: 0 10px !important;
    margin-top: -45px !important; /* 아이콘 위치에 맞게 상단 정렬 */
}

/* [3] 하단 타겟 리스트 (카드형 4열) 격리 */
.section_target .target_list {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    width: 100%;
}

/* 타겟 개별 카드 격리 */
.section_target .target_item {
    flex: 1 !important;
    min-width: 200px;
    background: var(--white) !important;
    border: 1px solid var(--gray_ee) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

/* 타겟 카드 내 아이콘 격리 */
.section_target .target_item i {
    font-size: 32px;
    color: #c5a47e !important;
    margin-bottom: 20px;
    display: inline-block;
}

/* [4] 호버 애니메이션 인터랙션 격리 */
/* 프로세스 아이콘 호버 */
.proc_step:hover .icon_circle {
    transform: translateY(-5px);
    border-color: #c5a47e !important;
    box-shadow: 0 10px 20px rgba(197, 164, 126, 0.2) !important;
}

/* 타겟 카드 호버 */
.target_item:hover {
    transform: translateY(-10px) !important;
    border-color: #c5a47e !important;
    box-shadow: 0 20px 40px rgba(197, 164, 126, 0.15) !important;
}

/* 타겟 카드 강조 텍스트 격리 */
.target_item strong {
    display: inline-block;
    position: relative;
    z-index: 1;
    font-weight: 800;
}
.target_item strong::after {
    content: '';
    position: absolute;
    left: 0; bottom: 2px;
    width: 100%; height: 8px;
    background: rgba(197, 164, 126, 0.12);
    z-index: -1;
}

/* [5] 수익 카드 섹션 격리 (.section_profit 부모 명시) */
.section_profit .profit_card {
    border-radius: 20px !important;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.section_profit .profit_card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

/* 5. FAQ */
.faq_item {
    margin-bottom: 20px; border-radius: 15px; background: var(--white);
    transition: 0.3s; border: 1px solid var(--gray_ee); padding: 30px;
}
.faq_item:hover { border-color: #c5a059; box-shadow: 0 10px 20px rgba(0,0,0,0.03); }
.faq_q { font-size: 20px; font-weight: 700; color: var(--gray_2); }
.faq_q span { color: #c5a059; margin-right: 10px; }
.faq_a { font-size: 16px; color: var(--gray_6); line-height: 1.8; margin-top: 15px; padding-left: 30px; }

/* 6. 컬러 헬퍼 (메인 골드 적용) */
/* ============================================================
   [Main Only] 컬러 헬퍼 격리 (메인 섹션 안에서만 작동)
   ============================================================ */

/* 메인 섹션(.section_process, .section_profit 등) 내부의 요소에만 골드색 적용 */
.section_process .fc_point,
.section_profit .fc_point,
.section_reseller .fc_point,
.section_target .fc_point,/* 메인에 사용된 다른 섹션 클래스가 있다면 추가 */
.main_visual .fc_point {
    color: #c5a059 !important;
}

.section_process .bg_point,
.section_profit .bg_point,
.section_reseller .bg_point,
.main_visual .bg_point {
    background: #c5a059 !important;
}

.section_process .border_point,
.section_profit .border_point,
.section_reseller .border_point,
.main_visual .border_point {
    border-color: #c5a059 !important;
}

/* 모바일 대응 */
@media (max-width: 900px) {
    section.section_easy, section.section_profit, section.section_process, section.section_faq { padding: 80px 0; }
    .summary_flex, .easy_grid, .section_profit_structure, .target_list { flex-direction: column; gap: 15px; }


/* ============================================================
   [V18] 수익 프로세스(section_profit_process) 모바일 디자인
   ============================================================ */

@media (max-width: 900px) {
    .section_profit_process {
        display: grid !important; /* 그리드 레이아웃 사용 */
        grid-template-columns: 1fr 1fr; /* 2열 배치 */
        gap: 30px 10px; /* 상하 30px, 좌우 10px 간격 */
        padding: 40px 20px !important;
        align-items: start;
    }

    /* 모바일에서 가로 화살표 아이콘 숨김 */
    .section_profit_process > i.fa-chevron-right {
        display: none !important;
    }

    .proc_step {
        width: 100% !important;
        margin-bottom: 0;
    }

    /* 아이콘 서클 크기 최적화 */
    .proc_step .icon_circle {
        width: 80px !important;
        height: 80px !important;
        margin: 0 auto 15px !important;
        font-size: 24px !important; /* 아이콘 크기 */
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }

    /* 텍스트 크기 및 간격 미세 조정 */
    .proc_step .fs_14 {
        font-size: 12px !important;
        margin-bottom: 5px !important;
    }

    .proc_step .fs_18 {
        font-size: 16px !important;
        line-height: 1.3;
        word-break: keep-all; /* 단어 단위 줄바꿈 */
    }

    .proc_step .fs_13 {
        font-size: 12px !important;
        margin-top: 8px !important;
    }

    /* STEP 04 강조 (포인트 컬러 적용된 경우) */
    .proc_step .bg_point {
        background-color: #c5a059 !important;
        color: #fff !important;
    }
    .keypoint_box {
        /* 패딩을 줄여 내부 공간 확보, 둥근 모서리 조정 */
        padding: 40px 25px !important;
        border-radius: 20px !important;
        margin-top: 50px !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
    }

    .keypoint_box h5 {
        /* 폰트 크기 조절 및 상단 정렬 */
        font-size: 20px !important;
        margin-bottom: 20px !important;
        line-height: 1.3;
    }

    .keypoint_box h5::before {
        /* 선 길이를 살짝 줄여 텍스트 공간 확보 */
        width: 20px !important;
        margin-right: 10px !important;
    }

    .keypoint_box p {
        /* 행간과 폰트 크기를 모바일에 최적화 */
        font-size: 15px !important;
        line-height: 1.7 !important;
        word-break: keep-all; /* 단어 단위 줄바꿈으로 깔끔하게 */
    }

    .keypoint_box br {
        /* PC용 줄바꿈이 모바일에서 어색할 수 있으므로 제거하거나 조절 */
        display: none;
    }
    .keypoint_box .btn_go_free{ display: block; text-align: center;}
}

}
/* ============================================================
   [공통] 서브 메뉴 탭 (PC/모바일 공통 적용)
   ============================================================ */
.sub_menu_tabs a:hover {
    font-weight: 700;
    color: var(--point);
    background-color: var(--white);
}
.sub_menu_tabs a:hover::after { width: 100%; }

.sub_menu_tabs a.navOn {
    font-weight: 700;
    color: var(--gold_dark) !important;
    background-color: var(--white);
}
.sub_menu_tabs a.navOn::after {
    width: 100%;
    background-color: var(--gold_dark);
}