/* ==========================================================================
   에이시티호스팅 (ACTHOSTING) 차세대 모던 클라우드 레이아웃 전용 스타일시트
   ========================================================================== */

/* 기본 스타일 및 초기화 */
:root {
    --bg-dark: #070913;
    --bg-card: #0e1225;
    --bg-header: rgba(7, 9, 19, 0.75);
    --border-color: rgba(255, 255, 255, 0.08);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --neon-blue: #00f2fe;
    --neon-purple: #8b5cf6;
    --accent-blue: #3b82f6;
    --accent-glow: rgba(0, 242, 254, 0.15);
    --font-sans: 'Outfit', 'Inter', 'Noto Sans KR', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body.act-theme {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.25s ease;
}

ul, li {
    list-style: none;
}

/* ==========================================================================
   헤더 네비게이션 바 스타일 (글래스모피즘 및 미래지향적 그라데이션)
   ========================================================================== */
.act-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 76px;
    z-index: 999;
    border-bottom: none !important; /* 기본 상태 테두리 전면 제거 */
    background: transparent !important; /* 기본 상태 100% 완전 투명 */
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.act-header.scrolled {
    background: rgba(7, 9, 19, 0.85) !important; /* 스크롤할 때 비로소 반투명 네이비가 고급스럽게 드러남 */
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important; /* 스크롤 시에만 정갈하게 한 줄 보더 출현 */
}

.act-header-container {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* 로고 브랜딩 */
.act-brand a {
    display: flex;
    align-items: center;
}

.act-logo {
    display: block;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.act-logo:hover {
    transform: scale(1.03);
}

/* GNB 메뉴 */
.act-menu-list {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 100%;
}

.act-menu-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.act-menu-link {
    color: #ffffff !important; /* 기본 메뉴 색상 벌쳐와 동일하게 완전히 선명한 흰색으로 변경 */
    font-size: 0.95rem; /* 벌쳐의 얇고 세련된 한글/영어 크기 */
    font-weight: 400; /* 메뉴 폰트 아주 얇고 정갈하게 튜닝 */
    padding: 10px 14px;
    border-radius: 0px !important; /* 모서리 둥글기 제거 */
    display: flex;
    align-items: center;
    gap: 3px; /* 꺾쇠 화살표와의 간격 좁게 조정 */
    transition: color 0.25s ease, background-color 0.25s ease;
    letter-spacing: -0.3px;
}

.act-menu-link i {
    font-size: 0.72rem; /* 화살표 꺾쇠 벌쳐와 똑같이 극도로 작고 세련되게 */
    opacity: 0.7; /* 기본 투명도 주어 은은하게 연출 */
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.act-menu-item:hover .act-menu-link {
    color: #ffffff !important; /* 사용자 피드백 반영: 호버 시에도 튀지 않고 단정히 흰색 상시 유지 */
    background-color: transparent !important; /* 칙칙하고 둥그스름한 회색 배경 전면 철거 */
}

.act-menu-item:hover .act-menu-link i {
    transform: rotate(180deg);
    opacity: 1;
}

.act-menu-item.active .act-menu-link {
    color: var(--neon-blue);
    font-weight: 600;
}

/* GNB 2차 드롭다운 */
.act-dropdown {
    position: absolute;
    top: calc(100% - 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 200px;
    background: #0f1326;
    border: 1px solid var(--border-color);
    border-radius: 0px !important; /* 모서리 둥글기 전면 제거 */
    padding: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 100;
}

.act-menu-item:hover .act-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.act-dropdown li a {
    display: block;
    padding: 10px 14px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-radius: 0px !important; /* 모서리 둥글기 전면 제거 */
    transition: all 0.2s ease;
}

.act-dropdown li a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    padding-left: 18px;
}

.act-dropdown li.active a {
    color: var(--neon-blue);
    font-weight: 600;
}

/* GNB 1차 아이템 중 메가 메뉴 소유자는 개별 absolute 위치 바인딩을 해제하여 정중앙 대칭 고정 연동 */
.act-menu-item.has-megamenu {
    position: static !important;
}

/* ==========================================================================
   벌쳐 오리지널 3D 대형 메가 메뉴 (Mega Menu) 스타일 구현
   ========================================================================== */
.act-megamenu {
    position: absolute;
    top: 76px; /* 헤더 76px 라인 아래에 1px 틈새도 없이 완벽 칼밀착 고정 */
    left: 50%;
    transform: translateX(-50%) translateY(0px); /* 마우스 호버 끊김 방지를 위해 translateY 변위 0px로 픽스 */
    width: 1200px; /* 헤더 컨테이너와 정확히 대칭되는 1200px 너비 */
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0px !important; /* 모서리 둥글기 전면 제거 */
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease-in-out, visibility 0.22s ease-in-out; /* 페이드인 중심의 신속 안정 인터랙션 */
    z-index: 1000;
}

/* 드롭다운 하버 갭(Hover Gap) 방지용 투명 오버레이 감지 브릿지 */
.act-megamenu::before {
    content: "";
    position: absolute;
    top: -30px; /* 메가 메뉴 위쪽으로 30px만큼 투명한 마우스 호버 브릿지 형성 */
    left: 0;
    width: 100%;
    height: 30px;
    background: transparent !important;
    z-index: -1;
}

.act-menu-item:hover .act-megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0px);
}

.act-megamenu-container {
    display: flex;
    gap: 30px;
    padding: 40px;
    box-sizing: border-box;
}

/* 2단 열 너비 배정 (중앙 솔루션 삭제로 좌/우 공간 와이드 배치) */
.megamenu-col {
    display: flex;
    flex-direction: column;
}

.megamenu-col--left {
    flex: 2.8;
}

.megamenu-col--right {
    flex: 1.2;
    border-left: 1px solid #f1f5f9;
    padding-left: 30px;
}

/* 카테고리 대제목 (시안에 맞추어 얇고 가벼운 청량 폰트로 개선) */
.megamenu-sec-title {
    font-size: 0.95rem;
    font-weight: 400; /* 기존 700에서 400으로 낮추어 매우 슬림하고 세련됨 */
    color: #007bfc; /* 시안과 동일하게 벌쳐 블루 계열로 산뜻하게 매핑 */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 8px;
    text-align: left;
}

/* 동적 2차/3차 4열 제품 그리드 */
.products-megagrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4열 배치로 한층 더 시원하고 정돈된 와이드 구조 */
    gap: 24px 20px;
    text-align: left;
}

.megagrid-item {
    display: flex;
    flex-direction: column;
}

.megagrid-item--no-sub {
    justify-content: center;
}

.megagrid-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

/* 깔끔하게 통일된 2차 메뉴 좌측 아이콘 스타일 (벌쳐 블루 단색 통일로 조잡함 영구 제거) */
.grid-icon {
    font-size: 1.15rem;
    flex-shrink: 0;
    color: #007bfc !important; /* 벌쳐 블루 단색으로 완전 통일하여 세련된 일관성 부여 */
}

.grid-title {
    font-size: 0.92rem;
    font-weight: 400; /* 기존 600에서 400으로 낮추어 매우 정갈하고 얇은 세련미 부여 */
    color: #031059 !important;
    letter-spacing: -0.3px;
}

.grid-title a {
    color: #031059 !important;
}

.grid-title a:hover {
    color: #007bfc !important;
}

/* 하위 3차 서브메뉴 리스트 */
.megagrid-sublist {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-left: 0;
    margin: 0;
}

.megagrid-sublist li {
    margin: 0;
}

.megagrid-sublist li a {
    font-size: 0.82rem;
    color: #64748b;
    font-weight: 300 !important;
    letter-spacing: -0.3px;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
}

.megagrid-sublist li a:hover {
    color: #007bfc;
    padding-left: 2px;
}

.megamenu-more-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: #007bfc;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    transition: transform 0.2s ease;
}

.megamenu-more-link:hover {
    transform: translateX(4px);
    color: #0056b3;
}

/* 우측 프로모션 배너 카드 */
.promo-banners {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.promo-banner {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 0px !important; /* 모서리 둥글기 전면 제거 */
    padding: 16px;
    transition: all 0.25s ease-in-out;
}

.promo-banner:hover {
    background: #ffffff;
    border-color: #007bfc;
    box-shadow: 0 8px 20px rgba(0, 123, 252, 0.06);
}

.promo-title {
    font-size: 0.88rem;
    font-weight: 400; /* 시안과 똑같이 600에서 400으로 얇게 낮추어 세련된 스타일 연출 */
    color: #007bfc; /* 시안에 맞춰 칙칙한 군청색에서 벌쳐 블루 컬러로 매핑 */
    line-height: 1.4;
    margin: 0 0 6px 0;
    letter-spacing: -0.4px;
}

.promo-desc {
    font-size: 0.8rem;
    font-weight: 300 !important; /* 극세 형태의 은은한 가독성 보장 */
    color: #64748b;
    line-height: 1.45;
    margin: 0 0 8px 0;
    letter-spacing: -0.3px;
}

.promo-link {
    font-size: 0.8rem;
    font-weight: 500;
    color: #007bfc;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.promo-link:hover {
    color: #0056b3;
}

/* 메가 메뉴 하단 가로 바 (시안에 맞추어 폰트 굵기 얇게 조정) */
.act-megamenu-footer {
    background: #f8fafc;
    border-top: 1px solid #eef2f6;
    padding: 14px 40px;
}

.act-megamenu-footer-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 32px;
}

.act-megamenu-footer-inner a {
    font-size: 0.85rem;
    font-weight: 400; /* 얇고 정갈한 연청색 링크 스타일 부여 */
    color: #007bfc;
    transition: color 0.2s ease;
}

.act-megamenu-footer-inner a:hover {
    color: #031059;
}

/* ==========================================================================
   우측 회원 메뉴 (벌쳐 최신 한국어 시안 동기화 - 로그인 / 가입하기 / 영업문의)
   ========================================================================== */
.act-auth {
    display: flex;
    align-items: center;
    gap: 12px;
}

.act-user-greeting {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-right: 6px;
}

.act-user-greeting strong {
    color: #ffffff;
}

/* 로그인 버튼: 얇은 보더가 둘러진 정갈하고 투명한 형태 */
.act-btn-login {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 0px !important; /* 모서리 둥글기 전면 제거 */
    background: transparent;
    transition: all 0.2s ease;
    letter-spacing: -0.3px;
}

.act-btn-login:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
}

/* 가입하기 버튼: 플랫 사각 벌쳐 블루 */
.act-btn-signup {
    background: #007bfc !important;
    color: #ffffff !important;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 0px !important; /* 모서리 둥글기 전면 제거 */
    box-shadow: none !important;
    transition: background-color 0.2s ease;
    letter-spacing: -0.3px;
}

.act-btn-signup:hover {
    background-color: #0062cc !important;
    transform: none !important;
}

/* 고객센터 버튼: 가입하기 버튼과 대비되는 묵직하고 좀더 진한 파랑 */
.act-btn-sales {
    background: #0056b3 !important; /* 가입하기(#007bfc)보다 진한 블루 계열로 명확한 대비 및 입체감 부여 */
    color: #ffffff !important;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 0px !important; /* 모서리 둥글기 전면 제거 */
    box-shadow: none !important;
    transition: background-color 0.2s ease;
    letter-spacing: -0.3px;
}

.act-btn-sales:hover {
    background-color: #003f8a !important; /* 한단계 더 묵직한 딥 다크 블루로 트랜지션 */
}

/* 콘솔 관리 버튼: 벌쳐의 파란색 콘솔 버튼 스타일 100% 적용 */
.act-btn-console {
    background: #007bfc !important;
    color: #ffffff !important;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 0px !important; /* 모서리 둥글기 전면 제거 */
    box-shadow: none !important;
    transition: background-color 0.2s ease;
    letter-spacing: -0.3px;
    display: inline-block;
}

.act-btn-console:hover {
    background-color: #0062cc !important;
}

/* 로그아웃 버튼: 로그인 버튼 디자인과 통일하여 정갈한 테두리가 둘러진 미니멀 형태 */
.act-btn-logout {
    color: #ffffff !important;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    border-radius: 0px !important; /* 모서리 둥글기 전면 제거 */
    background: transparent !important;
    transition: all 0.2s ease;
    letter-spacing: -0.3px;
    display: inline-block;
}

.act-btn-logout:hover {
    background-color: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
}

/* 모바일 햄버거 메뉴 토글 */
.act-m-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.6rem;
    cursor: pointer;
}

/* 모바일 메뉴 오버레이 */
.act-mobile-menu {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    background: #090c17;
    border-bottom: 1px solid var(--border-color);
    padding: 24px;
    z-index: 998;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

/* ==========================================================================
   중앙 콘텐츠 및 메인 영역
   ========================================================================= */
.act-content-container {
    min-height: calc(100vh - 280px) !important; /* 라이믹스 동적 요소 간섭 없이 푸터를 웹 바닥으로 밀착시키는 안전한 최소 높이 보장 */
    margin-top: 0px; /* 투명 헤더 연동을 위해 상단 강제 마진 여백 제거 */
    width: 100%;
    position: relative;
    z-index: 10;
}

/* ==========================================================================
   차세대 에이시티호스팅 완전 격리 고유 푸터 디자인 (acth- 전용 스타일시트)
   ========================================================================== */
.acth-footer-wrapper {
    background-color: #060810 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 45px 0 !important;
    position: relative !important;
    z-index: 20 !important;
    width: 100% !important;
    clear: both !important;
    box-sizing: border-box !important;
}

.act-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* 푸터 내부 컨테이너 */
.acth-footer-inner {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
    box-sizing: border-box !important;
    text-align: left !important;
}

/* 약관 링크 목록 영역 */
.acth-footer-nav {
    margin-bottom: 25px !important;
    width: 100% !important;
    display: block !important;
}

.acth-footer-links {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 24px !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
    width: 100% !important;
}

.acth-footer-links li {
    display: inline-block !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.acth-footer-links li a {
    color: var(--text-secondary) !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    transition: color 0.2s ease !important;
    white-space: nowrap !important; /* 공간 부족 시 한 글자씩 쪼개지는 현상 원천 영구 방지 */
    display: inline-block !important;
}

.acth-footer-links li a:hover {
    color: #007bfc !important; /* 벌쳐 브랜드 블루 컬러와 100% 동기화 */
}

/* 법인 및 카피라이트 팩트 데이터 박스 */
.acth-footer-corp {
    color: var(--text-muted) !important;
    width: 100% !important;
}

.acth-footer-copyright {
    padding: 0 !important;
    margin: 0 !important;
    text-align: left !important;
}

.acth-footer-biz-info {
    color: var(--text-secondary) !important;
    font-size: 0.90rem !important;
    line-height: 1.8 !important;
    margin-bottom: 12px !important;
}

.acth-footer-biz-info span {
    display: inline-block !important;
    vertical-align: middle !important;
}

.acth-footer-biz-info .divider {
    color: rgba(255, 255, 255, 0.15) !important;
    margin: 0 10px !important;
    font-weight: 300 !important;
}

.mobile-br-only {
    display: none;
}

/* 모바일 해상도 가변 미디어 쿼리 완벽 최적화 */
@media (max-width: 992px) {
    .acth-footer-biz-info {
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
    }
    
    .mobile-br-only {
        display: block !important;
        margin-bottom: 6px !important;
    }
    
    .mobile-divider-hide {
        display: none !important;
    }
}

.acth-footer-notice {
    opacity: 0.8 !important;
    color: #a1a1aa !important;
    margin-top: 14px !important;
    margin-bottom: 0 !important;
    font-size: 0.88rem !important;
    line-height: 1.6 !important;
    word-break: keep-all !important;
}

.acth-footer-copyright-text {
    margin-top: 12px !important;
    margin-bottom: 0 !important;
    font-size: 0.85rem !important;
    color: var(--text-muted) !important;
}

/* ==========================================================================
   약관 팝업 모달 스타일 (정밀 확대 가독성 패치 적용)
   ========================================================================== */
.rf-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 6, 12, 0.75);
    backdrop-filter: blur(8px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.rf-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.rf-modal-content {
    background: #090c17; /* 메인 디자인과 100% 일치하는 시크한 다크 스페이스 백그라운드 */
    border: 1px solid rgba(0, 123, 252, 0.15); /* 은은한 하이테크 블루 보더 */
    color: #e2e8f0;
    width: 90%;
    max-width: 750px;
    border-radius: 0px !important; /* 둥글기값 전면 제거하여 플랫 사각 큐브화 */
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.rf-modal-overlay.active .rf-modal-content {
    transform: translateY(0) scale(1);
}

.rf-modal-header {
    background: #0e1225; /* 어두운 바디보다 약간 밝은 톤의 시크한 네이비 헤더 */
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.rf-modal-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500; /* 얇고 가벼운 서체 스타일 통일 */
    color: #f8fafc;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.3px;
}

.rf-modal-header h3 i {
    color: #007bfc; /* 포인트 컬러를 벌쳐 블루 단색으로 완전 통일 */
}

.rf-modal-close {
    background: none;
    border: none;
    color: #64748b;
    font-size: 1.75rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.rf-modal-close:hover {
    color: #f8fafc;
}

.rf-modal-body {
    padding: 24px;
    max-height: 450px;
    overflow-y: auto;
    font-size: 0.95rem; /* 글꼴 크기 차분하게 최적화 */
    line-height: 1.75;
    font-weight: 300; /* 얇고 미려한 가독성 */
}

/* 모달 커스텀 스크롤바 */
.rf-modal-body::-webkit-scrollbar {
    width: 6px;
}

.rf-modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.01);
}

.rf-modal-body::-webkit-scrollbar-thumb {
    background: rgba(0, 123, 252, 0.2);
    border-radius: 0px;
}

.rf-modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 123, 252, 0.4);
}

.rf-modal-body h4 {
    margin-top: 24px;
    margin-bottom: 12px;
    color: #007bfc; /* 포인트 컬러 벌쳐 블루로 완전 통일 */
    font-weight: 500; /* 얇고 수려한 웨이트 */
    font-size: 1.1rem;
    letter-spacing: -0.3px;
}

.rf-modal-body h4:first-of-type {
    margin-top: 0;
}

.rf-modal-body p {
    margin: 0 0 12px 0;
    color: #94a3b8;
    letter-spacing: -0.2px;
}

.rf-modal-body strong {
    color: #f8fafc;
    font-weight: 500;
}

.rf-modal-footer {
    padding: 16px 24px;
    background: #070913;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: flex-end;
}

.rf-btn-confirm {
    background: #007bfc !important; /* 그라데이션 철거, 벌쳐 고유 플랫 블루 단색 처리 */
    border: none;
    color: #ffffff !important;
    padding: 10px 28px;
    font-weight: 500; /* 얇고 모던하게 변경 */
    border-radius: 0px !important; /* 모서리 완전 사각형 큐브화 */
    cursor: pointer;
    box-shadow: none !important; /* 불필요한 번쩍이는 네온 그림자 전면 철거 */
    transition: background-color 0.2s ease;
    font-size: 0.95rem;
    letter-spacing: -0.3px;
}

.rf-btn-confirm:hover {
    background-color: #0062cc !important; /* 호버 시 차분한 딥 블루 효과 */
    transform: none !important;
}

.rf-btn-confirm:active {
    transform: none;
}

/* ==========================================================================
   반응형 모바일 지원
   ========================================================================== */
@media (max-width: 991px) {
    .act-nav, .act-auth {
        display: none;
    }
    
    .act-m-menu-toggle {
        display: block;
    }

    .act-mobile-menu.active {
        display: block;
    }

    .act-m-menu-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 24px;
    }

    .act-m-menu-link {
        font-size: 1.15rem;
        font-weight: 600;
        color: #ffffff;
    }

    .act-m-dropdown {
        margin-top: 8px;
        padding-left: 16px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        border-left: 1px solid var(--border-color);
    }

    .act-m-dropdown a {
        color: var(--text-secondary);
        font-size: 0.95rem;
    }

    .act-m-auth {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding-top: 20px;
        border-top: 1px solid var(--border-color);
    }
}

/* ==========================================================================
   헤더 로고용 은은하고 고급스러운 하이엔드 애니메이션 효과
   ========================================================================== */
.act-header .svg-logo__shape-1,
.act-header .svg-logo__shape-2,
.act-header .svg-logo__shape-3,
.act-header .svg-logo__shape-4 {
    opacity: 0;
    animation: headerLogoFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.act-header .svg-logo__shape-1 { animation-delay: 0.1s; }
.act-header .svg-logo__shape-2 { animation-delay: 0.2s; }
.act-header .svg-logo__shape-3 { animation-delay: 0.3s; }
.act-header .svg-logo__shape-4 { animation-delay: 0.4s; }

.act-header .svg-logo__text {
    opacity: 0;
    animation: headerTextExtend 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.6s;
}

@keyframes headerLogoFadeIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes headerTextExtend {
    from {
        opacity: 0;
        letter-spacing: -2px;
        transform: translateX(-4px);
    }
    to {
        opacity: 1;
        letter-spacing: 0.5px;
        transform: translateX(0);
    }
}

/* ==========================================================================
   가입하기 클릭 시 가입 폼 셰이크(Shake) 및 글로우(Glow) 인터랙션 애니메이션
   ========================================================================== */
@keyframes acth-shake {
    0%, 100% { transform: translateX(0); }
    15%, 45%, 75% { transform: translateX(-8px); }
    30%, 60%, 90% { transform: translateX(8px); }
}

.acth-shake-anim {
    animation: acth-shake 0.6s cubic-bezier(.36,.07,.19,.97) both !important;
    box-shadow: 0 20px 45px rgba(0, 123, 252, 0.35) !important; /* 흔들릴 때 은은한 벌쳐 블루 네온 글로우 효과 */
    border-color: #007bfc !important;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

/* ==========================================================================
   우측 실시간 상담 퀵메뉴 스타일 (Rich Aesthetics)
   ========================================================================== */
.act-quick-menu {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translate3d(0, -50%, 0); /* 3D 변형(3D Transform)을 활용하여 서브픽셀 렌더링 정밀도 향상 */
    width: 124px;
    background: #007bfc; /* 부모 박스에 헤더와 동일한 파란색을 부여하여 상단 경계면 흰 선 비침 완전 차단 */
    border-radius: 14px;
    overflow: hidden; /* 자식 요소가 부모의 둥근 테두리 안으로 완벽히 잘리도록 처리 */
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05); /* 박스 입체 쉐도우(Shadow) 및 얇은 외곽선 */
    backface-visibility: hidden; /* 호버 애니메이션 시 잔상 및 미세 실선 흔들림 방지 */
    -webkit-backface-visibility: hidden;
    will-change: transform;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.act-quick-menu:hover {
    transform: translate3d(0, calc(-50% - 3px), 0);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.quick-menu-header {
    background: #007bfc;
    padding: 10px 8px;
    text-align: center;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: -0.3px;
    position: relative;
    z-index: 2;
}

.quick-menu-body {
    background: #ffffff; /* 하단 바디 영역에만 단독 흰색 배경 부여 */
    padding: 18px 10px 15px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    position: relative;
    z-index: 1;
    margin: 0 -1.5px -1.5px -1.5px; /* 음수 마진(Negative Margin)을 주어 하단 모서리 틈새로 부모의 파란색이 삐져나오는 현상 방지 */
}

.quick-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    cursor: pointer;
    text-decoration: none !important;
}

.quick-item.disabled-link {
    cursor: default;
    pointer-events: none;
}

.quick-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.quick-item:hover .quick-icon-wrapper {
    transform: scale(1.08);
}

.quick-label {
    margin-top: 6px;
    font-size: 11px;
    font-weight: 500;
    color: #334155;
    letter-spacing: -0.3px;
}

.quick-sub {
    margin-top: 2px;
    font-size: 10px;
    font-weight: 700;
    color: #3b82f6;
    letter-spacing: -0.2px;
}

.quick-divider {
    width: 80%;
    height: 1px;
    background: #f1f5f9;
    margin: 14px 0;
}

/* 모바일 환경에서는 화면을 많이 가리므로 깔끔하게 숨김 처리 */
@media (max-width: 768px) {
    .act-quick-menu {
        display: none !important;
    }
}
