@charset "utf-8"; /* CSS Document */
/* ==================== (공통) ==================== */
.title_bar {
	width:5%;
	min-width: 40px;
	height:3px;
	display:block;
    margin-left: auto;
    margin-right: auto;
}
@media screen and (max-width: 600px) {
    /* .title_bar {
        margin:0 auto 3rem;
    } */
}
/* ★★★기본 배지 */
/* [공통] 기본 배지 (Dark 배경 권장) */
.badge {
    /* 1. 레이아웃 및 박스 모델 */
    display: inline-block;
    vertical-align: baseline;
    min-width: 70px;
    padding: .375rem .75rem; /* 요청하신 수치 반영 */
    border-radius: var(--br_c);

    /* 2. 텍스트 스타일 */
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    white-space: nowrap;

    /* 3. 배경 및 테두리 (기존 스타일) */
    color: var(--point);
    background-color: var(--lighter_point);
    border: 1px solid rgba(51, 133, 255, 0.25);

    /* 4. 기타 효과 */
    transition: all 0.3s ease;
}
/* 1. 다크 배경용 배지 (.badge.badge_dark) */
.badge_dark {
    color: var(--lighter_point); /* 텍스트를 연하게 */
    background-color: rgba(255, 255, 255, 0.1); /* 반투명한 흰색 배경 */
    border: 1px solid rgba(255, 255, 255, 0.2); /* 은은한 흰색 테두리 */
}

/* 2. 솔리드 배경 버튼 스타일 (.badge.badge_blue) */
.badge_point {
    color: #ffffff; /* 텍스트 흰색 */
    background-color: var(--light_point); /* 배경을 포인트 컬러로 (진하게) */
    border: 1px solid var(--light_point); /* 테두리도 같은 색으로 */
}
.badge_dark_point {
    color: #ffffff; /* 텍스트 흰색 */
    background-color: var(--gray_1); /* 배경을 포인트 컬러로 (진하게) */
    border: 1px solid var(--gray_1); /* 테두리도 같은 색으로 */
}
.badge_green {
    color: #ffffff; /* 텍스트 흰색 */
    background-color: var(--green); /* 배경을 포인트 컬러로 (진하게) */
    border: 1px solid var(--green); /* 테두리도 같은 색으로 */
}
.badge_gray {
    color: var(--gray_4); /* 텍스트 흰색 */
    background-color: var(--gray_9); /* 배경을 포인트 컬러로 (진하게) */
    border: 1px solid var(--gray_8); /* 테두리도 같은 색으로 */
}
.badge_big{font-size: 20px; padding: .5rem 1.25rem;}



/* ------------------------------
   반응형 레이아웃 (공통 적용)
   ------------------------------ */

/* 태블릿 구간 (900px 이하) */
@media (max-width: 900px) {
    .badge {
        font-size: 12px;
    }
}

/* 모바일 구간 (600px 이하) */
@media (max-width: 600px) {
    .badge {
        min-width: 60px;
        font-size: 11px;
    }
}/* ==================== 메인 슬라이드 (MainSlide) 통합 스타일 ==================== */
.MainSlide {
    padding: 0;
    width: 100%;
    position: relative;
    overflow: hidden;
    /* 초기 상태: 헤더 높이만큼 여백 */
    margin-top: 146px;
    transition: margin-top var(--q_trans);
}

@media screen and (min-width: 1101px) {
    body.header_fixed .MainSlide {
        margin-top: 65px;
    }
    .MainSlide .swiper-container {
        width: 100%;
        height: 800px;
    }
}

.MainSlide .swiper-container {
    width: 100%;
    height: 700px;
}

.MainSlide .swiper-slide {
    position: relative;
}

.MainSlide .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
}

.MainSlide .swiper-slide .bg_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.85); /* 배경을 살짝 어둡게 하여 텍스트 강조 */
    transition: filter var(--q_trans);
}

/* ---------- 텍스트 및 레이아웃 영역 ---------- */
.MainSlide .slide_txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
    color: var(--white);
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    z-index: 10;
}

/* [추가] 텍스트 전체 가독성을 위한 그림자 */
.MainSlide .txt_area * {
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.7);
}

.MainSlide .slide_flex_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.MainSlide .txt_area {
    flex: 0 0 65%; /* 텍스트 영역 비중 */
}

.MainSlide .img_area {
    flex: 0 0 35%;
    text-align: right;
    display: flex;
    justify-content: flex-end;
}

/* 제목 및 포인트 스타일 */
.MainSlide .slide_txt .sub_tit {
    display: inline-block;
    background: var(--point);
    color: #fff;
    padding: 4px 12px;
    font-size: 1rem;
    border-radius: 4px;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: none; /* 배경박스 위라 그림자 제거 */
}

.MainSlide .slide_txt .tit {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.05em;
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.8); /* 제목 강조 그림자 */
}
.MainSlide .point_list {
    list-style: none;
    padding: 0;
    margin: 50px 0 25px ;
}

.MainSlide .point_list li {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.4;
}

.MainSlide .point_list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--point);
    font-weight: bold;
    text-shadow: none;
}

.MainSlide .point_list li strong {
    color: #ffd400;
    text-shadow: 0 2px 10px rgba(255, 212, 0, 0.4);
}

/* 하단 메시지 강조 */
.MainSlide .bottom_msg {
    margin-top: 30px;
    padding: 20px;
    font-size: 1.3rem;
    line-height: 1.6;
    color: #fff;
    background: rgba(0, 0, 0, 0.4); /* 배경 이미지 위에서 더 선명하게 */
    border-left: 4px solid var(--point);
    border-radius: 0 8px 8px 0;
    display: inline-block;
    transition: transform 0.3s ease;
}

.MainSlide .bottom_msg strong {
    color: #ffd400;
    font-size: 1.45rem;
    text-decoration: underline;
    text-underline-position: under;
}

/* 우측 상품 이미지 공중부양 */
.floating_prod {
    max-width: 110%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
    animation: floating 3s ease-in-out infinite;
}

/* ---------- Swiper 커스텀 ---------- */
.MainSlide .swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.5;
}

.MainSlide .swiper-pagination-bullet-active {
    background: var(--point);
    opacity: 1;
    width: 30px;
    border-radius: var(--br_m);
    transition: 0.3s;
}

.MainSlide .swiper-button-next, .MainSlide .swiper-button-prev {
    color: var(--white);
    transform: scale(0.7);
    opacity: 0.5;
    transition: 0.3s;
}

.MainSlide .swiper-button-next:hover, .MainSlide .swiper-button-prev:hover {
    opacity: 1;
}

/* ---------- 애니메이션 ---------- */
@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- 모바일 대응 (900px 이하) ---------- */
@media (max-width: 900px) {
    .MainSlide {
        margin-top: 60px;
    }
    .MainSlide .swiper-container {
        height: 75vh;
    }
    .MainSlide .slide_txt {
        padding: 0 15px;
    }
    .MainSlide .slide_flex_box {
        flex-direction: column;
        text-align: center;
    }
    .MainSlide .txt_area {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
    .MainSlide .slide_txt .tit {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    .MainSlide .point_list li {
        font-size: 1.1rem;
        text-align: left;
        display: inline-block;
        padding-left: 20px;
    }
    .MainSlide .bottom_msg {
        font-size: 1rem;
        padding: 15px;
        width: 95%;
        margin: 0 auto;
        border-left: none;
        border-top: 3px solid var(--point);
        border-radius: 8px;
    }
    .MainSlide .img_area {
        flex: 0 0 100%;
        justify-content: center;
    }
    .floating_prod {
        max-height: 200px;
        margin-top: 10px;
    }
}
/* ---------- 메인 슬라이드 전용 PC/모바일 제어 ---------- */

/* 1. PC 환경 (901px 이상) */
@media (min-width: 901px) {
    .MainSlide .swiper-slide .m_ver {
        display: none !important;
    }
    .MainSlide .swiper-slide .p_ver {
        display: block !important; /* 인라인 플렉스 무시하고 블록으로 고정 */
    }
}

/* 2. 모바일 환경 (900px 이하) */
@media (max-width: 900px) {
    .MainSlide .swiper-slide .p_ver {
        display: none !important;
    }
    .MainSlide .swiper-slide .m_ver {
        display: block !important; /* 인라인 플렉스 무시하고 블록으로 고정 */
    }

    /* 모바일 전용 이미지 스타일 디테일 */
    .MainSlide .swiper-slide .m_ver.bg_img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}



/* ==================== 기사보기 배너 ==================== */
.main_banner_icon{
	height: 25px;
}
/* 모바일 대응 (900px 이하 기준) */
@media (max-width:900px) {
	.main_banner_icon{
	height: 15px;
}
}


/* ==================== 메인 실시간 현황 그리드 ==================== */
/* 헤더 영역 수정 */
.status_left_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    margin-bottom: 0px !important;
    border-bottom: 2px solid var(--gray_ee);
    position: relative; /* after 배치를 위해 추가 */
}

/* [수정] 10px 빈 박스 + 그라디언트 효과를 헤더의 after로 교체 */
.status_left_head::after {
    content: "";
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    width: 100%;
    height: 30px; /* 10px(여백) + 15px(그라디언트) */
    background: linear-gradient(to bottom,
                #f8fafd 0%,
                #f8fafd 50%,
                rgba(248, 250, 253, 0) 100%);
    z-index: 10;
    pointer-events: none;
}
.main_status_viewport {
    height: 150px;
    overflow: hidden;
    position: relative;
    padding-top: 0;
}

.status_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 10px;
    position: absolute;
    width: 100%;
    transition: top 0.6s ease-in-out;
    /* [핵심] 스페이서 높이만큼 강제로 내려서 시작 */
    top: 0px;
}

.status_item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    height: 50px; /* 한 줄 높이 고정 */
    box-sizing: border-box;
}
.status_item .fullw{
    height: 80%;
    padding: 0 8px 0 15px;
    background-color: var(--white);box-sizing: border-box;
    border-radius: var(--br_c);
    border:  1px solid #3385ff3f;
}
/* 상호+번호 텍스트 영역 */
.st_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-width: 0;
    flex: 1;
    text-align: left;
}

.st_store {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.st_phone {
    font-size: 11px;
    color: #999;
    margin-top: 1px;
    line-height: 1;
}

/* 칩(배지) 독립 배치 */
.status_item .badge {
    flex-shrink: 0;
    min-width: 60px;
    text-align: center;
    flex-shrink: 0;
    margin-left: 5px;
    padding: 5px !important;
}

/* 5. 반응형 설정 (줄어든 높이에 맞춰 조정) */
@media (max-width: 1200px) {
    .status_grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .status_left {
        border-right: none !important;
    }
    .status_grid {gap: 0 5px; }
    .st_store { font-size: 13px; }
.status_banner {
    width: 100%;
    padding: 1.5rem
}
}


/* ==================== ez 리뷰 ==================== */
/* 2. 스티키 트랙 (섹션 내부의 실제 스크롤 공간) */
.ez-sticky-wrapper {
    position: relative;
    height: 300vh; /* 이 높이가 스크롤의 총 길이입니다 */
    margin: 0;
    padding: 0;
}

/* 3. 고정 박스 (중앙 부유형) */
.ez-sticky-sticky {
    position: sticky;
    top: calc(20vh + 61px); /* 화면 상단에서 22% 지점에 고정 (위쪽 여백 확보) */

    width: 95%;
    max-width: 1100px;
    height: 55vh; /* 화면의 절반 정도 높이로 고정 (아래쪽 여백 확보) */
    min-height: 480px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white) !important;
    /*  */
    z-index: 5;
    overflow: hidden;
}

/* 4. 카드 및 애니메이션 (최적화 버전) */
.ez-card-container {
    position: relative;
    width: 100%;
    height: 100%;
    /* 입체감을 원할 경우 추가 */
    perspective: 1000px;
}

.ez-card {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 90%;
    height: 80%; /* 카드 자체의 높이 */
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;

    /* [수정] 투명도와 움직임 속도를 0.4s로 단축하여 잔상 제거 */
    opacity: 0;
    visibility: hidden;
    transition:
        transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
        opacity 0.4s linear,
        visibility 0.4s;

    /* [수정] 이동 거리를 20px로 줄여 더 기민하게 반응하도록 함 */
    transform: translateY(20px);

    background-color: var(--white);
    border-radius: var(--br_m);
    overflow: hidden;
    z-index: 1;
    will-change: transform, opacity;

}
/* 카드가 활성화되었을 때 */
.ez-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 10; /* 활성 카드가 가장 위로 */
}

/* 지나간 카드 (위로 사라짐) */
.ez-card.passed {
    opacity: 0;
    visibility: hidden; /* [핵심] 즉시 숨겨서 배지 잔상 차단 */
    transform: translateY(-20px);
    z-index: 1;
}

/* 카드 내부 실제 콘텐츠 박스 (이미지+텍스트) */
.ez_review_flex {
    width: 100%;
    height: 100%; /* 부모 카드 높이에 맞춤 */
    display: flex; /* flex 레이아웃 유지 */
    align-items: stretch; /* 자식 요소(이미지, 텍스트) 높이를 꽉 채움 */
    overflow: hidden;
}

/* [복구] 이미지 컨테이너 영역 */
.ez-card .ez_review_img {
    flex: 1; /* 반반 레이아웃 */
    height: 100%; /* 부모 flex 높이에 맞춤 */
    border-radius: var(--br_m);
    overflow: hidden;
    display: flex; /* 내부 img 중앙 정렬용 */
    align-items: center;
    justify-content: center;
}

/* [핵심 복구] 실제 이미지 태그: 사각형 비율 꽉 채우기 */
.ez_review_img img {
    display: block;
    width: 100%; /* 부모 폭에 맞춤 */
    height: 100% !important; /* [중요] 부모(ez_review_img) 높이에 맞춰 꽉 채움 */

    /* [중요] 높이가 늘어나도 비율을 유지하며 가득 채우는 속성 */
    object-fit: cover !important;

    border-radius: var(--br_m);
    min-height: 250px; /* 기존 최소 높이 유지 */

    /* 렌더링 최적화 */
    backface-visibility: hidden;
    -webkit-user-drag: none;
}

/* [추가] 배지 잔상 원천 차단 */
.ez_review_txt .badge {
    /* 기존 0.03s 삭제하고 카드와 함께 움직이도록 설정 */
    transition: none !important;
    display: inline-block;
}


/* 5. 모바일 최적화 (900px 이하) */
@media (max-width: 1100px) {
    /* 1. 스티키 부모/컨테이너 해제 및 투명화 */
    .ez-sticky-wrapper {
        height: auto !important;
        min-height: auto !important;
        display: block !important;
        /*padding: 60px 0 !important;  섹션 상하 여백을 줘서 배경색 노출 */
    }

    /* 스티키 컨테이너 해제 */
    .ez-sticky-sticky {
        position: relative !important;
        top: 0 !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        background: transparent !important; /* 배경색 통과 */
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none;
    }

    /* 카드들이 담긴 실제 바구니 (flex로 정렬) */
    .ez_review_flex {
        display: block !important; /* flex 대신 block이 성능상 가장 가볍습니다 */
        width: 100% !important;
        padding: 0 !important;
    }

    /* 개별 카드: 4열(25%) 또는 2열(50%) 설정 */
    .ez-card {
        position: relative !important;
        display: block !important;
        width: 80% !important;
        margin: 0 auto 40px auto !important; /* 카드 간 간격 40px */
        left: 0 !important;
        /* 스크립트 간섭 완전 차단 */
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        pointer-events: auto !important;
        background: var(--white) !important;
        border-radius: var(--br_l) !important;
        box-shadow: var(--shadow_lg) !important;
        overflow: hidden;
        z-index: 1 !important;
    }

        /* 모바일 이미지 비율 조정 (위쪽 배치) */
        .ez-card .ez_review_img {
            display: block !important;
            width: 100% !important;
            max-width: 100%;
            height: 240px !important;
            min-height: unset !important;
        }

    /* 모바일 텍스트 스타일 (아래쪽 배치) */
    .ez_review_txt {
        padding: 25px 20px !important;
    }

    /* .ez_review_txt h5 { font-size: 18px !important; margin-bottom: 10px !important; line-height: 1.4; }
    .ez_review_txt p { font-size: 14px !important; line-height: 1.6; } */
}

/* 지그재그 핵심 */
.ez_review_flex {
    width: 100%;
}

    .ez_review_flex.row_reverse {
        flex-direction: row-reverse;
    }

.ez_review_img {
    overflow: hidden;
    background: var(--gray_f4);
}

    .ez_review_img img {
        transition: transform 0.5s ease;
    }


/* 반응형 조정 */
@media (max-width: 1024px) {
    .ez_review_flex, .ez_review_flex.row_reverse {
        flex-direction: column !important;
    }

    .ez_review_img {
        width: 100%;
        height: 250px;
    }

        .ez_review_img img {
            min-height: 250px;
        }

    .ez_review_txt {
        padding: 40px 20px !important;
        text-align: center;
    }

        .ez_review_txt .d_flex {
            justify-content: center;
            gap: 15px;
        }
}

/* ==================== ez 리뷰 - 세로 펼침형 ==================== */
.ez-review-stack {
    padding: var(--sec_pd) 0;
}

.ez-review-stack .ez-sticky-wrapper {
    height: auto !important;
    min-height: auto !important;
    margin: 0;
    padding: 0;
}

.ez-review-stack .ez-sticky-sticky {
    position: relative !important;
    top: auto !important;
    width: 95%;
    max-width: 1100px;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 auto;
    display: block !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.ez-review-stack .ez-card-container {
    position: relative;
    width: 100%;
    height: auto !important;
    display: flex;
    flex-direction: column;
    gap: 40px;
    perspective: none;
}

.ez-review-stack .ez-card {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 320px;
    margin: 0 !important;

    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto !important;

    background-color: var(--white) !important;
    border-radius: var(--br_l) !important;
    box-shadow: var(--shadow_lg) !important;
    overflow: hidden;
    z-index: 1 !important;
    will-change: auto;
}

.ez-review-stack .ez-card.active,
.ez-review-stack .ez-card.passed {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    z-index: 1 !important;
}

.ez-review-stack .ez_review_flex {
    width: 100%;
    height: 100%;
    min-height: 320px;
    overflow: hidden;
}

.ez-review-stack .ez_review_img {
    min-height: 320px;
}

.ez-review-stack .ez_review_img img {
    min-height: 320px;
}

@media (max-width: 1100px) {
    .ez-review-stack {
        padding: 80px 0;
    }

    .ez-review-stack .ez-card {
        width: 80% !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 767px) {
    .ez-review-stack {
        padding: 60px 0;
    }

    .ez-review-stack .ez-sticky-sticky {
        width: 100%;
    }

    .ez-review-stack .ez-card-container {
        gap: 30px;
    }

    .ez-review-stack .ez-card {
        width: 90% !important;
        min-height: 0;
    }

    .ez-review-stack .ez_review_flex,
    .ez-review-stack .ez_review_flex.row_reverse {
        flex-direction: column !important;
        min-height: 0;
    }

    .ez-review-stack .ez_review_img {
        width: 100%;
        height: 240px !important;
        min-height: 240px;
    }

    .ez-review-stack .ez_review_img img {
        min-height: 240px;
    }
}



/* ==================== 블루 컨셉 프로세스 애니메이션 보정 ==================== */



/* 나머지 스타일 (아이콘, 텍스트 박스 등 기존 코드 유지) */
.p_step_label { font-size: 15px; font-weight: 700; color: #444; }
.p_step_label .num_circle {
    display: inline-block;
    width: 24px; height: 24px; line-height: 24px;
    background-color: var(--point);
    color: var(--white); border-radius: var(--br_c);
    font-size: 11px; margin-left: 4px;
    vertical-align: middle;
}
.process_content .p_list .p_item{
    display: flex; flex-direction: column; justify-content: space-between; align-items: center;
}
.p_icon_wrap {
    width: 100%; aspect-ratio: 1 / 1; max-width: 110px;
    margin: 15px auto; background: var(--white); border-radius: var(--br_c);
    display: flex; align-items: center; justify-content: center;
    border: 1px solid #eef2f6;
}
.p_name_box {
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    width: 100%; height: 100%; padding: 10px 2px; background: #eff7ff;
    border: 1px solid var(--lighter_point); border-radius:var(--br_m);
    font-size: 15px; font-weight: 700; color: var(--gray_3);
    white-space: nowrap;
}
@media (max-width: 900px) {
    .process_content .p_list {
        gap: 2rem;
    }
    .process_content .p_list .p_item{
        width: 70%;
        margin: auto;
    }
    .p_name_box {
        width: 50% !important;
        margin: 1rem auto 0;
    }
}

/* 키포인트2 */
/* 그리드 레이아웃 */
.price_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: calc(var(--base-px) * 6);

}

/* 카드 기본 스타일 */
.price_card {
    background:var(--white);
    border-radius: var(--br_r);
    overflow: hidden; /* 헤더 둥근 모서리 적용을 위해 */
}

/* 상단 파란색 헤더 */
.card_header {
    padding: 20px;
    text-align: center;
}

/* 하단 흰색 내용 영역 */
.card_content {
    padding: 35px 20px;
}

/* 모바일 대응 */
@media (max-width: 1024px) {
    .price_grid { grid-template-columns: repeat(2, 1fr); }
}
/* @media (max-width: 640px) {
    .price_grid { grid-template-columns: 1fr; }
} */


/* ==============================
   비용 절감 비교 그래프
   ============================== */

.graph_wrap{
    border-radius: 0 0 var(--br_xl) var(--br_xl);

    padding: 5rem;
    max-width: 800px;
    margin: 0 auto;
}

.compare_graph_wrap {
    max-width: 100%;
    height: 420px;
    position: relative;
}

.graph_bars_container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 120px;
    height: 100%;
    position: relative;
    z-index: 10;
}

.graph_box { flex: 1; text-align: center; position: relative; }
.bar_container { height: 300px; position: relative; display: flex; align-items: flex-end; justify-content: center; }
.bar { width: 90px; border-radius: 15px 15px 0 0; position: relative; height: 0; }
.bar_old { background-color: #dee2e6; }
.bar_new { background-color: var(--point, #3385ff); box-shadow: 0 10px 30px rgba(51, 133, 255, 0.2); }

.price_label {
    position: absolute; top: -45px; left: 50%; transform: translateX(-50%);
    white-space: nowrap; opacity: 0;
}

/* 절감 효과 애니메이션 (이미지 기반) */
.save_effect_layer {
    position: absolute;
    bottom: 50%; /* 화살표 세로 위치 */
    left: 50%;
    transform: translateX(-50%);
    width: 30%; /* 화살표가 움직일 가로 범위 */
    height: 100px;
    z-index: 20;
    pointer-events: none;
    opacity: 0;
}
/* 기본 스타일 (데스크탑) */
.save_effect_layer {
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    height: 100px;
    z-index: 20;
    pointer-events: none;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* 화살표 레이어 등장 타이밍 */
.compare_graph_wrap.active .save_effect_layer {
    opacity: 1;
    transition: opacity 0.4s ease-out;
    transition-delay: 1.2s;

    display: flex;
    align-items: center;
    justify-content: center;

}

/* 화살표 이미지 스타일 */
.new_arrow_img {
    width: 80%;
    height: auto;
    display: block;
}

/* 화살표 그룹 애니메이션 (날아오기 + 커지기) */
.arrow_group {
    width: 100%; /* 부모인 레이어 너비를 꽉 채우도록 */
    display: flex;
    justify-content: center;
    /* 이하 기존 transform 로직 유지 */
    transform: translate(-30px, -20px) scale(0.5);
    transform-origin: center center; /* 중앙 기준 확대를 위해 수정 */
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.8s ease-out;
}

/* active 상태: 제자리로 오며 1:1 크기로 커짐 */
.compare_graph_wrap.active .arrow_group {
    transform: translate(0px, 0px) scale(1.0) rotate(1deg);
    opacity: 1;
    transition-delay: 1.5s;
}

/* [수정] 절감액 텍스트 박스 기본 상태 */
.save_text_box {
    position: absolute;
    top: -50px;
    left: 50%;
    /* 초기 transform에서 좌우 정렬은 유지하고 투명도만 0으로 시작 */
    transform: translate(-50%, 20px);
    padding: 12px 25px;
    border-radius: 40px;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(255, 51, 102, 0.3);
    opacity: 0;
    /* 애니메이션이 끝난 후 마지막 프레임 형태를 유지하도록 설정 */
    animation-fill-mode: forwards;
}

/* [수정] 애니메이션 트리거 */
.compare_graph_wrap.active .save_text_box {
    animation: slideUpFadeIn 0.5s ease-out forwards;
    animation-delay: 2.7s;
}

/* [수정] 키프레임 - -50% 중앙 정렬을 명시적으로 고정 */
@keyframes slideUpFadeIn {
    0% {
        opacity: 0;
        transform: translate(-50%, 20px); /* 시작할 때 중앙(-50%) 유지 */
    }
    100% {
        opacity: 1;
        transform: translate(-50%, 0);    /* 끝날 때도 중앙(-50%) 유지 */
    }
}

/* 애니메이션 키프레임 및 미디어쿼리 */
.compare_graph_wrap.active .bar_old { animation: barUpOld 1s ease-out forwards; }
.compare_graph_wrap.active .bar_new { animation: barUpNew 1s ease-out forwards; animation-delay: 0.2s; }
.compare_graph_wrap.active .price_label { animation: fadeIn 0.5s ease-out forwards; animation-delay: 1.2s; }

/* 리셋 처리 */
.compare_graph_wrap:not(.active) .bar,
.compare_graph_wrap:not(.active) .price_label,
.compare_graph_wrap:not(.active) .save_effect_layer,
.compare_graph_wrap:not(.active) .arrow_group,
.compare_graph_wrap:not(.active) .save_text_box { animation: none; transition: none; }

@keyframes barUpOld { 0% { height: 0; } 100% { height: 90%; } }
@keyframes barUpNew { 0% { height: 0; } 100% { height: 28%; } }
@keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; } }
@keyframes slideUpFadeIn { 0% { opacity: 0; transform: translate(-50%, 20px); } 100% { opacity: 1; transform: translate(-50%, 0); } }

.bg_red { background-color: #ff3366; }

@media (max-width: 600px) {
    .graph_wrap {
        margin-top: 3rem;
        padding: 3rem 1.5rem; /* 패딩을 줄여서 여백 확보 */
    }

    .compare_graph_wrap {
        height: fit-content;
    }

    .bar_container {
        height: 180px;
    }

    .graph_bars_container { gap: 60px; }
    .bar { width: 70px; }
    .price_label { font-size: 18px; top: -40px; }

    .save_effect_layer {
        height: 80px;
    }

    .new_arrow_img {
        max-width: 150px; /* 화살표가 너무 크지 않게 고정 */
        width: 100%;
        height: auto;
    }

    .arrow_group {
        transform: translate(-15px, -10px) scale(0.7);
    }

    .graph_box p { font-size: 14px; } /* 하단 텍스트 크기 조절 */

   save_text_box {
        padding: 10px 20px;
        top: -30px;
    }
    .save_text_box p { font-size: 14px; }
    .save_text_box p span { font-size: 18px; }

    /* [6] 모바일 전용 막대 상승 애니메이션 (비율 최적화) */
    .compare_graph_wrap.active .bar_old { animation: barUpOldMobile 1s ease-out forwards; }
    .compare_graph_wrap.active .bar_new { animation: barUpNewMobile 1s ease-out forwards; animation-delay: 0.2s; }
}

/* 모바일 전용 키프레임 (미디어쿼리 밖에 두셔도 됩니다) */
@keyframes barUpOldMobile { 0% { height: 0; } 100% { height: 85%; } }
@keyframes barUpNewMobile { 0% { height: 0; } 100% { height: 25%; } }


/* ==================================================
        음식물 처리기 가이드 영상 food_guide_section
================================================== */
.food_guide_section .food_guide_flex {
    gap: 60px;
}

.food_guide_section .food_guide_flex .sect_head {
    width: 34%;
    min-width: 320px;
    margin: 0;
    padding: 0;
}

.food_guide_section .food_guide_flex .sect_body {
    flex: 1;
    margin: 0;
    max-width: 820px;
}

.food_guide_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    align-items: start;
}

.food_guide_card {
    display: block;
    overflow: hidden;
    border-radius: var(--br_l);
    background: var(--white);
    border: 1px solid rgba(51, 134, 255, 0.18);
    box-shadow: var(--shadow_md);
    transition: all 0.35s ease;
}

.food_guide_card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow_lg);
    border-color: rgba(var(--point-rgb), 0.35);
}

/* 첫 번째 카드만 위로 올리던 효과 제거 */
.food_guide_card_main {
    transform: none;
}

.food_guide_card_main:hover {
    transform: translateY(-8px);
}

.food_guide_thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--black);
}

.food_guide_thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.food_guide_card:hover .food_guide_thumb img {
    transform: scale(1.08);
    filter: brightness(0.78);
}

.food_guide_play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    border-radius: var(--br_c);
    background: rgba(0, 47, 167, 0.88);
    color: var(--white);
    font-size: var(--fs_20);
    box-shadow: 0 10px 30px rgba(0, 47, 167, 0.3);
    transition: all 0.35s ease;
}

.food_guide_card:hover .food_guide_play {
    background: var(--light_point);
    transform: translate(-50%, -50%) scale(1.08);
}

.food_guide_info {
    padding: 24px 24px 28px;
}

.food_guide_label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 74px;
    height: 28px;
    padding: 0 12px;
    border-radius: var(--br_c);
    background: var(--lighter_point);
    color: var(--point);
    font-size: var(--fs_14);
    font-weight: 800;
    line-height: 1;
}

.food_guide_tit {
    margin-top: 14px;
    font-size: var(--fs_22);
    font-weight: 800;
    line-height: 1.35;
    color: var(--gray_2);
    word-break: keep-all;
}

/* food_guide_section responsive */
@media (max-width: 1024px) {
    .food_guide_section .food_guide_flex {
        flex-direction: column;
        align-items: center;
    }

    .food_guide_section .food_guide_flex .sect_head {
        width: 100%;
        min-width: 0;
        text-align: center;
        margin-bottom: 40px;
    }

    .food_guide_section .food_guide_flex .sect_body {
        width: 100%;
        max-width: 100%;
    }

    .food_guide_card_main {
        transform: none;
    }

    .food_guide_card_main:hover {
        transform: translateY(-8px);
    }

    .food_guide_section .sect_head .fill_btn {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 640px) {
    .food_guide_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .food_guide_info {
        padding: 22px 20px 24px;
    }

    .food_guide_tit {
        font-size: var(--fs_20);
    }

    .food_guide_play {
        width: 52px;
        height: 52px;
        font-size: var(--fs_18);
    }
}
/* ==================================================
        에이스그린 3대 특징 ace_feature_section
================================================== */
.ace_feature_section {
    padding: var(--sec_pd) 0;
    background: var(--white);
    overflow: hidden;
}

.ace_feature_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.ace_feature_card {
    position: relative;
    min-height: 180px;
    padding: 38px 30px;
    border-radius: var(--br_l);
    background: linear-gradient(135deg, var(--white), var(--lighter_point));
    border: 1px solid rgba(51, 134, 255, 0.18);
    box-shadow: var(--shadow_md);
    overflow: hidden;
    transition: all 0.35s ease;
}

.ace_feature_card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow_lg);
    border-color: rgba(var(--point-rgb), 0.35);
}

.ace_feature_card::before {
    content: "";
    position: absolute;
    right: -45px;
    bottom: -45px;
    width: 140px;
    height: 140px;
    border-radius: var(--br_c);
    background: rgba(var(--point-rgb), 0.08);
}

.ace_feature_num {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 24px;
    border-radius: var(--br_c);
    background: var(--point);
    color: var(--white);
    line-height: 1;
    z-index: 1;
}

.ace_feature_tit {
    position: relative;
    color: var(--gray_2);
    line-height: 1.45;
    word-break: keep-all;
    z-index: 1;
}

/* ace_feature_section responsive */
@media (max-width: 1024px) {
    .ace_feature_grid {
        gap: 20px;
    }

    .ace_feature_card {
        min-height: 160px;
        padding: 32px 24px;
    }
}

@media (max-width: 767px) {
    .ace_feature_section {
        padding: 80px 0;
    }

    .ace_feature_grid {
        grid-template-columns: 1fr;
    }

    .ace_feature_card {
        min-height: auto;
        padding: 30px 24px;
    }

    .ace_feature_num {
        width: 42px;
        height: 42px;
        margin-bottom: 18px;
    }
}

/* ==================================================
        생생한 현장 목소리 review_section
================================================== */
.review_section .review_flex {
    gap: 60px;
}

/* 왼쪽 타이틀 영역 */
.review_section .review_flex .sect_head {
    margin: 0;
    padding: 0;
}

/* 오른쪽 그리드 영역 */
.review_section .review_flex .sect_body {
    flex: 1;
    margin: 0;
    max-width: 800px;
}

/* 영상 영역 - 서브 공통 .review_img_wrap 영향 차단 */
.review_section .review_img_wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1.5 / 1 !important;
    overflow: hidden;
    background: var(--black);
    border-bottom: 0 !important;
}

/* iframe 기본 중앙 배치 */
.review_section .review_img_wrap iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 0;
    transform: translate(-50%, -50%);
}

/* 쇼츠 영상 전용: 세로 영상을 가로 프레임 안에 꽉 차게 중앙 크롭 */
.review_section .review_item.is_shorts .review_img_wrap iframe {
    width: 100%;
    height: auto;
    min-height: 100%;
    aspect-ratio: 9 / 16;
}

/* iframe 직접 클릭 방지: 유튜브 hover UI 노출 최소화 */
.review_section .review_item.is_video .review_img_wrap iframe {
    pointer-events: none;
}

/* 서브 공통 CSS의 우측 상단 재생 버튼 제거 + 투명 클릭 덮개 */
.review_section .review_item.is_video .review_img_wrap::after {
    content: "";
    position: absolute;
    inset: 0 !important;
    top: 0 !important;
    right: auto !important;
    width: 100% !important;
    height: 100% !important;

    z-index: 2;
    cursor: pointer;

    background: transparent !important;
    background-image: none !important;
    background-color: transparent !important;
    background-repeat: initial !important;
    background-position: initial !important;
    background-size: initial !important;

    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transform: none !important;
    transition: none !important;
}

/* 서브 공통 hover 버튼 효과 차단 */
.review_section .review_item.is_video:hover .review_img_wrap::after {
    background: transparent !important;
    background-image: none !important;
    background-color: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transform: none !important;
}

/* iframe hover 시 확대/이동 영향 차단 */
.review_section .review_item:hover .review_img_wrap iframe {
    transform: translate(-50%, -50%) !important;
}

/* 모바일 대응: 다시 상하 구조로 */
@media (max-width: 1024px) {
    .review_section .review_flex {
        flex-direction: column;
        align-items: center;
    }

    .review_section .review_flex .sect_head {
        flex: none;
        width: 100%;
        text-align: center;
        margin-bottom: 40px;
    }

    .review_section .review_flex .sect_body {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .review_section .sect_body .d_grid.col2 {
        grid-template-columns: 1fr;
    }
}




/* ==================================================
    [KEY Point 03] 편리성 극대화 (Process 섹션)
================================================== */
/* 1. 상단 제품 타입 카드 (스탠드형/거치대형) */
.product_type_card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.product_type_card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow_lg);
}

.product_type_card img {
    width: 100%;
    max-width: 200px;
    margin: auto;
    height: auto;
    display: block;
}
@media (max-width: 900px) {
    .product_type_card {
        padding: 20px 10px;
    }
    .product_type_card img {
        width: 70%;
    }
    .product_type_card .fs_18.fc_gray_6{
        font-size: 12px;
    }
}
/* 2. 하단 프로세스 그리드 및 카드 */
.process_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* PC: 3열 */
    gap: 20px;
}

/* 모바일 간격 보정 (900px 이하) */
@media (max-width: 900px) {
    .process_grid {
        width: 70%;
        margin-left: auto;
        margin-right: auto;
        grid-template-columns: 1fr !important; /* 모바일: 1열 고정 */
        gap: 20px; /* 카드 사이 세로 간격 */
        text-align: center;
    }
}

.process_grid .process_card {
    background-color: var(--white);
    border: 1px solid var(--gray_e5);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
}

/* [핵심] 다크모드 진입 시 카드 스타일 변화 */
.bg-transition-section.is-dark .process_card {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.bg-transition-section.is-dark .process_card h5 {
    color: var(--white);
}

.bg-transition-section.is-dark .process_card p {
    color: rgba(255, 255, 255, 0.8);
}

/* ==================================================
    [KEY Point 03] 편리성 극대화 simple_process_section
================================================== */

/* 상단 핵심 문구 + 쇼츠 영상 카드 */
.simple_process_section .simple_intro_card {
    width: 100%;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    padding: 36px 40px 42px;
    border: 1px solid rgba(51, 134, 255, 0.16);
    overflow: hidden;
}

.simple_process_section .simple_intro_head {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(51, 134, 255, 0.16);
}

.simple_process_section .simple_key_item {
    display: flex;
    align-items: center;
    gap: 26px;
}

.simple_process_section .simple_key_item + .simple_key_item {
    margin-top: 18px;
}

.simple_process_section .simple_key_num {
    flex: 0 0 auto;
    line-height: 1;
    letter-spacing: -0.04em;
    text-shadow: 1px 1px 0 rgba(0, 47, 167, 0.18);
}

.simple_process_section .simple_key_txt {
    line-height: 1.35;
    word-break: keep-all;
}

.simple_process_section .simple_intro_video {
    padding-top: 32px;
}

/* 상단 쇼츠 영상 */
.simple_process_section .simple_shorts_frame {
    position: relative;
    width: 100%;
    aspect-ratio: 1.5 / 1 !important;
    overflow: hidden;
    border-radius: var(--br_l);
    background: var(--black);
    box-shadow: var(--shadow_lg);
}

.simple_process_section .simple_shorts_frame iframe {
    position: absolute;
    top: 50%;
    left: 50%;

    /* 쇼츠 세로 영상을 가로형 프레임에 중앙 크롭 */
    width: 100%;
    height: 267%;

    border: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.simple_process_section .simple_shorts_frame::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: transparent;
}

/* 01 / 02 / 03 처리 과정 카드 */
.simple_process_section .simple_process_flow {
    display: flex;
    flex-direction: column;
    gap: 34px;
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
}

.simple_process_section .simple_process_step_card {
    width: 100%;
    padding: 38px 40px 42px;
    border-radius: var(--br_l);
    background: #132130;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow_strong);
    overflow: hidden;
}

.simple_process_section .simple_process_step_head h5 {
    color: var(--white);
}

.simple_process_section .simple_process_step_head p {
    color: rgba(255, 255, 255, 0.72);
}

.simple_process_section .simple_process_step_head hr {
    background-color: rgba(255, 255, 255, 0.24);
}

.simple_process_section .simple_process_video_area {
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* 처리 과정 카드 내부 영상 */
.simple_process_section .simple_process_video_frame {
    position: relative;
    width: 100%;
    aspect-ratio: 1.5 / 1 !important;
    overflow: hidden;
    border-radius: var(--br_l);
    background: var(--black);
    box-shadow: var(--shadow_lg);
}

.simple_process_section .simple_process_video_frame iframe {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 100%;
    height: 100%;

    border: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.simple_process_section .simple_process_video_frame::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: transparent;
}

/* simple_process_section responsive */
@media (max-width: 767px) {
    .simple_process_section .simple_intro_card {
        padding: 30px 22px 34px;
    }

    .simple_process_section .simple_intro_head {
        padding-bottom: 24px;
    }

    .simple_process_section .simple_key_item {
        gap: 16px;
        align-items: flex-start;
    }

    .simple_process_section .simple_key_item + .simple_key_item {
        margin-top: 16px;
    }

    .simple_process_section .simple_intro_video {
        padding-top: 24px;
    }

    .simple_process_section .simple_process_flow {
        gap: 24px;
    }

    .simple_process_section .simple_process_step_card {
        padding: 30px 22px 34px;
    }

    .simple_process_section .simple_process_video_area {
        padding-top: 22px;
    }
}


/* ==================================================
    [KEY Point 04] 초소형 처리기 compact_type_section
================================================== */
.compact_type_section {
    overflow: hidden;
}

.compact_type_section .compact_type_grid {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.compact_type_section .compact_type_card {
    overflow: hidden;
}

.compact_type_section .compact_type_card img {
    width: 100%;
    max-height: 260px;
    object-fit: contain;
    object-position: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.compact_type_section .compact_type_notice {
    word-break: keep-all;
}

/* compact_type_section responsive */
@media (max-width: 767px) {
    .compact_type_section .compact_type_grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .compact_type_section .compact_type_card img {
        max-height: 220px;
    }

    .compact_type_section .sect_head p br,
    .compact_type_section .compact_type_card p br {
        display: none;
    }
}

/* ==================================================
    [KEY Point 05] 청결성 향상 clean_point_section
================================================== */
.clean_point_section {
    overflow: hidden;
}

.clean_point_section .clean_compare_box {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 36px;
    align-items: center;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: 42px;
    border: 1px solid rgba(51, 134, 255, 0.16);
}

.clean_point_section .clean_compare_item {
    text-align: center;
}

.clean_point_section .clean_compare_img {
    width: 100%;
    aspect-ratio: 1.2 / 1;
    border-radius: var(--br_m);
    overflow: hidden;
    background: var(--gray_f5);
    border: 1px solid var(--gray_e5);
}

.clean_point_section .clean_compare_img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.clean_point_section .clean_compare_after img {
    object-fit: contain;
    padding: 24px;
    background: var(--gray_f8);
}

.clean_point_section .clean_compare_arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: var(--br_c);
    background: var(--lighter_point);
    color: var(--point);
    font-size: var(--fs_24);
    box-shadow: var(--shadow_md);
}

/* clean_point_section responsive */
@media (max-width: 767px) {
    .clean_point_section .clean_compare_box {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 28px 22px;
    }

    .clean_point_section .clean_compare_arrow {
        margin: 0 auto;
        transform: rotate(90deg);
    }
}


/* ==================================================
    [KEY Point 06] 안정성 safety_point_section
================================================== */
.safety_point_section {
    overflow: hidden;
    padding-top: 0;
}

.safety_point_section .safety_content_grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto;
}

/* 영상 영역: 흰 박스 제거, 세로 중앙 정렬 */
.safety_point_section .safety_video_area {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 영상 프레임 */
.safety_point_section .safety_video_frame {
    position: relative;
    width: 100%;
    aspect-ratio: 1.5 / 1 !important;
    overflow: hidden;
    border-radius: var(--br_l);
    background: var(--black);
    box-shadow: var(--shadow_biger);
}

.safety_point_section .safety_video_frame iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.safety_point_section .safety_video_frame::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: transparent;
}

.safety_point_section .safety_info_area {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.safety_point_section .safety_info_card {
    flex: 1;
    padding: 34px;
    border: 1px solid rgba(51, 134, 255, 0.16);
}

/* safety_point_section responsive */
@media (max-width: 900px) {
    .safety_point_section .safety_content_grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .safety_point_section .safety_info_card {
        padding: 28px 22px;
    }
}

/* ==================================================
    [KEY Point 07] 진정한 명품 유지비 maintenance_point_section
================================================== */
.maintenance_point_section {
    overflow: hidden;
}

.maintenance_point_section .maintenance_card {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    padding: 54px 42px;
    border: 1px solid rgba(51, 134, 255, 0.16);
}

.maintenance_point_section .maintenance_gauge {
    position: relative;
    width: min(100%, 430px);
    height: 230px;
    margin: 0 auto;
}

.maintenance_point_section .maintenance_gauge_arc {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 360px;
    height: 180px;
    transform: translateX(-50%);
    border-radius: 360px 360px 0 0;
    background: conic-gradient(from 270deg at 50% 100%,
        #00a8ff 0deg,
        #a1e521 65deg,
        #ffe30d 115deg,
        #ff4e50 180deg,
        transparent 180deg);
}

.maintenance_point_section .maintenance_gauge_arc::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 240px;
    height: 120px;
    transform: translateX(-50%);
    border-radius: 240px 240px 0 0;
    background: var(--white);
}

.maintenance_point_section .maintenance_gauge_center {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 18px;
    height: 18px;
    transform: translateX(-50%);
    border-radius: var(--br_c);
    background: var(--gray_1);
    z-index: 2;
}

.maintenance_point_section .maintenance_gauge_center::before {
    content: "";
    position: absolute;
    right: 6px;
    bottom: 8px;
    width: 140px;
    height: 2px;
    background: var(--gray_5);
    transform: rotate(29deg);
    transform-origin: right center;
}

.maintenance_point_section .maintenance_watt_badge {
    position: absolute;
    left: 22px;
    bottom: 62px;
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--br_c);
    background: var(--light_point);
    color: var(--white);
    box-shadow: var(--shadow_md);
}

.maintenance_point_section .maintenance_price_badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 34px;
    border-radius: var(--br_c);
    background: #34916f;
    color: var(--white);
}

/* maintenance_point_section responsive */
@media (max-width: 767px) {
    .maintenance_point_section .maintenance_card {
        padding: 40px 22px;
    }

    .maintenance_point_section .maintenance_gauge {
        height: 190px;
    }

    .maintenance_point_section .maintenance_gauge_arc {
        width: 300px;
        height: 150px;
    }

    .maintenance_point_section .maintenance_gauge_arc::after {
        width: 200px;
        height: 100px;
    }

    .maintenance_point_section .maintenance_watt_badge {
        left: 0;
        width: 60px;
        height: 60px;
    }
}


/* ==================================================
    [KEY Point 08] 24시간 AS 체계 as_point_section
================================================== */
.as_point_section {
    overflow: hidden;
}

.as_point_section .as_system_card {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    padding: 54px 42px;
    border: 1px solid rgba(51, 134, 255, 0.16);
}

.as_point_section .as_map_box {
    width: 100%;
    aspect-ratio: 1.65 / 1;
    overflow: hidden;
    border-radius: var(--br_l);
    background: linear-gradient(135deg, var(--darker_point), var(--point), var(--light_point));
    box-shadow: var(--shadow_lg);
    padding: 1rem 2rem;
}

.as_point_section .as_map_box img {
    display: block;
    width: auto;
    height: 100%;
    object-fit: cover;
    object-position: center;
    margin: auto;
}

/* as_point_section responsive */
@media (max-width: 767px) {
    .as_point_section .as_system_card {
        padding: 40px 22px;
    }
}

/* ==================================================
    메인 설치 현황 슬라이드 main_install_section
================================================== */
.main_install_section {
    overflow: hidden;
}

.main_install_section .main_install_slider_wrap {
    position: relative;
    width: 100%;
    margin-top: 50px;
}

.main_install_section .main_install_swiper {
    width: 100%;
    overflow: hidden;
    padding: 5px 5px 35px;
}

.main_install_section .swiper-slide {
    height: auto;
}

.main_install_section .main_install_item {
    height: 100%;
    background: var(--white);
    border: 1px solid var(--gray_e5);
    border-radius: var(--br_r);
    overflow: hidden;
    cursor: pointer;
    text-align: left;
    box-shadow: var(--shadow_md);
    transition: all 0.35s ease;
}

.main_install_section .main_install_item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow_lg);
    border-color: rgba(var(--point-rgb), 0.3);
}

.main_install_section .main_install_img_wrap {
    display: flex;
    width: 100%;
    height: 220px;
    background: var(--gray_e0);
    gap: 1px;
    overflow: hidden;
}

.main_install_section .main_install_img_box {
    flex: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.main_install_section .main_install_img_box img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.45s ease;
}

.main_install_section .main_install_item:hover .main_install_img_box img {
    transform: scale(1.08);
}

.main_install_section .main_install_no_img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray_f5);
}

.main_install_section .main_install_info {
    padding: 25px;
}

.main_install_section .main_install_table {
    width: 100%;
    border-collapse: collapse;
}

.main_install_section .main_install_table th,
.main_install_section .main_install_table td {
    padding: 8px 0;
    border-bottom: 1px solid var(--gray_f0);
    font-size: var(--fs_14);
    line-height: 1.4;
}

.main_install_section .main_install_table th {
    width: 85px;
    color: var(--gray_5);
    font-weight: 400;
    text-align: left;
    vertical-align: top;
}

.main_install_section .main_install_table td {
    color: var(--gray_3);
    font-weight: 600;
    word-break: keep-all;
}

.main_install_section .main_install_table tr:last-child th,
.main_install_section .main_install_table tr:last-child td {
    border-bottom: 0;
}

.main_install_section .main_install_empty {
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border: 1px solid var(--gray_e5);
}

.main_install_section .main_install_controller {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 10px;
}

.main_install_section .main_install_nav {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: var(--br_c);
    background: var(--point);
    color: var(--white);
    cursor: pointer;
    box-shadow: var(--shadow_md);
    transition: all 0.3s ease;
}

.main_install_section .main_install_nav:hover {
    transform: translateY(-3px);
    background: var(--light_point);
    box-shadow: var(--shadow_lg);
}

.main_install_section .main_install_pagination {
    position: static;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main_install_section .main_install_pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: var(--gray_cc);
    opacity: 1;
    transition: all 0.3s ease;
}

.main_install_section .main_install_pagination .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: var(--br_c);
    background: var(--point);
}

/* main_install_section responsive */
@media (max-width: 900px) {
    .main_install_section .main_install_img_wrap {
        height: 210px;
    }
}

@media (max-width: 640px) {
    .main_install_section .main_install_slider_wrap {
        margin-top: 35px;
    }

    .main_install_section .main_install_swiper {
        padding-bottom: 25px;
    }

    .main_install_section .main_install_img_wrap {
        height: 200px;
    }

    .main_install_section .main_install_info {
        padding: 20px 15px;
    }

    .main_install_section .main_install_controller {
        gap: 12px;
    }

    .main_install_section .main_install_nav {
        width: 38px;
        height: 38px;
    }
}

/* ==================================================
    [INFINITE SLIDER] 인증서 무한 루프 섹션
================================================== */
/* [INFINITE SLIDER] 인증서 슬라이드 전용 */
.cert-infinite-slider {
    width: 100%;
    overflow: hidden;
    background: transparent; /* 배경 전환 섹션 위에 올릴 경우 투명하게 */
    padding: 50px 0 !important; /* 그림자가 잘리지 않도록 상하 여백만 살짝 추가 */
    margin: 0;
    line-height: 0;
}

.cert-infinite-slider .slider-track {
    display: flex;
    will-change: transform;
}

.cert-infinite-slider .slide-item {
    width: 180px;
    aspect-ratio: 2 / 2.9;
    flex-shrink: 0;
    padding: 0 20px; /* 간격을 조금 더 넓혀서 개별 문서가 돋보이게 함 */
    box-sizing: content-box;
    perspective: 1000px; /* 호버 시 입체감을 위한 설정 */
}

.cert-infinite-slider .slide-item img {
    width: 100%;
    height: 100%;
    /* contain보다 cover가 꽉 차서 보기 좋지만,
       문서 내용이 잘리면 안 되므로 백그라운드를 흰색으로 채운 contain이 좋습니다. */
    object-fit: contain;
    background-color: var(--white);

    border-radius: var(--br_s);

    /* 1. 이중 테두리로 상장 케이스 느낌 부여 */
    border: 1px solid #e2e8f0;
    outline: 4px solid #f8fafc; /* 이미지 바깥쪽 얇은 층 추가 */
    outline-offset: -10px; /* 안쪽으로 살짝 들어온 선 (상장 속지 느낌) */

    /* 2. 그림자를 조금 더 깊게 (심도 조절) */
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1),
                0 8px 10px -6px rgba(0, 0, 0, 0.1);

    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* 3. 호버 시 살짝 들리는 효과 (살아있는 느낌) */
.cert-infinite-slider .slide-item:hover img {
    transform: translateY(-10px) rotateY(5deg);
    box-shadow: var(--shadow_blue);
    border-color: #3385ff79; /* 호버 시 포인트 컬러 테두리 */
}

/* 애니메이션 방향 및 속도 */
.flow-left .slider-track { animation: scroll-left 25s linear infinite; }
.flow-right .slider-track { animation: scroll-right 50s linear infinite; }

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}


/* ==================================================
    AceGREEN 보도자료 ace_news_section
================================================== */
.ace_news_section {
    overflow: hidden;
}

.ace_news_section .ace_news_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.ace_news_section .ace_news_card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--white);
    border: 1px solid rgba(51, 134, 255, 0.16);
    border-radius: var(--br_l);
    overflow: hidden;
    box-shadow: var(--shadow_md);
    transition: all 0.35s ease;
}

.ace_news_section .ace_news_card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow_lg);
    border-color: rgba(var(--point-rgb), 0.35);
}

/* 이미지 원본 비율 650 x 500 */
.ace_news_section .ace_news_img {
    width: 100%;
    aspect-ratio: 650 / 500;
    overflow: hidden;
    background: var(--gray_f5);
}

.ace_news_section .ace_news_img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.45s ease;
}

.ace_news_section .ace_news_card:hover .ace_news_img img {
    transform: scale(1.08);
}

.ace_news_section .ace_news_info {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 26px 24px 28px;
}

.ace_news_section .ace_news_info > p.fs_20 {
    word-break: keep-all;
}

.ace_news_section .ace_news_info > p.fs_16 {
    word-break: keep-all;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: calc(1.6em * 4);
    max-height: calc(1.6em * 4);
}

.ace_news_section .ace_news_more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 22px;
}

/* ace_news_section responsive */
@media (max-width: 1200px) {
    .ace_news_section .ace_news_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .ace_news_section .ace_news_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        margin-top: 35px;
    }

    .ace_news_section .ace_news_card {
        border-radius: var(--br_r);
    }

    .ace_news_section .ace_news_info {
        padding: 16px 12px 18px;
    }

    .ace_news_section .ace_news_info .badge {
        min-width: auto;
        padding: 5px 8px;
        margin-bottom: 10px;
    }

    .ace_news_section .ace_news_info > p.fs_20 {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 8px;
    }

    .ace_news_section .ace_news_info > p.fs_16 {
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .ace_news_section .ace_news_more {
        padding-top: 14px;
    }
}
