/* ==================== 다크모드 방지 및 색상 고정 ==================== */
:root {
    color-scheme: light only;
}

html, body {
    color-scheme: light;
    background-color: #FFFFFF !important;
}

/* 다크모드에서도 라이트 모드 유지 */
@media (prefers-color-scheme: dark) {
    :root {
        color-scheme: light only;
    }
    
    html, body {
        color-scheme: light;
        background-color: #FFFFFF !important;
    }
    
    * {
        color-scheme: light;
    }
}

/* ==================== 프리미엄 로딩 화면 (고퀄리티) ==================== */
.premium-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        #FFFFFF 0%, 
        #F0F9F6 25%,
        #E0F5EE 50%, 
        #D0F0E6 75%,
        #C0EBE0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    overflow: hidden;
}

/* 배경 애니메이션 레이어 */
.premium-loader::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(118, 224, 186, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(0, 208, 131, 0.1) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
    50% { transform: translate(-5%, -5%) scale(1.05); opacity: 0.7; }
}

.premium-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.loader-logo {
    margin-bottom: 50px;
    position: relative;
    animation: logoFloat 3s ease-in-out infinite;
}

/* 로고 배경 그라데이션 - 흰색 배경용 */
.loader-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, 
        rgba(118, 224, 186, 0.25) 0%, 
        rgba(118, 224, 186, 0.18) 30%,
        rgba(118, 224, 186, 0.1) 60%,
        transparent 100%);
    border-radius: 50%;
    animation: logoGlow 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes logoGlow {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 1;
    }
}

.loader-logo-img {
    width: 220px;
    height: auto;
    filter: drop-shadow(0 12px 35px rgba(118, 224, 186, 0.35));
    position: relative;
    z-index: 1;
}

@keyframes logoFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
    }
    50% { 
        transform: translateY(-20px) scale(1.02);
    }
}

.loader-progress-container {
    width: 350px;
    margin: 0 auto 24px;
    position: relative;
}

.loader-progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(118, 224, 186, 0.15);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 16px rgba(118, 224, 186, 0.1),
        inset 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(118, 224, 186, 0.25);
}

.loader-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, 
        #76E0BA 0%,
        #44BB89 50%,
        #00D083 100%);
    border-radius: 12px;
    width: 0%;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 0 20px rgba(118, 224, 186, 0.6),
        0 0 40px rgba(118, 224, 186, 0.3);
    position: relative;
}

/* 프로그레스바 빛나는 효과 */
.loader-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.5) 50%, 
        transparent 100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

.loader-percentage {
    margin-top: 16px;
    color: #1A1A1A;
    font-size: 24px;
    font-weight: 800;
    text-shadow: 
        0 2px 4px rgba(118, 224, 186, 0.3);
    letter-spacing: 2px;
}

.loader-text {
    color: #2D3748;
    font-size: 17px;
    font-weight: 600;
    margin-top: 28px;
    opacity: 0.85;
    text-shadow: 
        0 2px 4px rgba(118, 224, 186, 0.2);
    animation: textPulse 2s ease-in-out infinite;
    letter-spacing: 0.5px;
}

@keyframes textPulse {
    0%, 100% { 
        opacity: 0.85;
        transform: translateY(0);
    }
    50% { 
        opacity: 0.65;
        transform: translateY(-3px);
    }
}

/* 파티클 애니메이션 (고퀄리티) */
.loader-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(118, 224, 186, 0.5);
    box-shadow: 
        0 0 10px rgba(118, 224, 186, 0.4),
        0 0 20px rgba(118, 224, 186, 0.25),
        0 0 30px rgba(118, 224, 186, 0.1);
}

.particle:nth-child(1) {
    width: 12px;
    height: 12px;
    top: 15%;
    left: 15%;
    animation: particleFloat1 4s ease-in-out infinite;
}

.particle:nth-child(2) {
    width: 8px;
    height: 8px;
    top: 65%;
    left: 85%;
    animation: particleFloat2 5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.particle:nth-child(3) {
    width: 14px;
    height: 14px;
    top: 85%;
    left: 25%;
    animation: particleFloat3 4.5s ease-in-out infinite;
    animation-delay: 1s;
}

.particle:nth-child(4) {
    width: 10px;
    height: 10px;
    top: 35%;
    left: 75%;
    animation: particleFloat4 5.5s ease-in-out infinite;
    animation-delay: 1.5s;
}

.particle:nth-child(5) {
    width: 12px;
    height: 12px;
    top: 8%;
    left: 65%;
    animation: particleFloat5 4.8s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes particleFloat1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.7;
    }
    25% {
        transform: translate(15px, -35px) scale(1.3);
        opacity: 0.4;
    }
    50% {
        transform: translate(-10px, -50px) scale(1.5);
        opacity: 0.2;
    }
    75% {
        transform: translate(-25px, -30px) scale(1.2);
        opacity: 0.5;
    }
}

@keyframes particleFloat2 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.6;
    }
    33% {
        transform: translate(-20px, -40px) scale(1.4) rotate(120deg);
        opacity: 0.3;
    }
    66% {
        transform: translate(10px, -60px) scale(1.6) rotate(240deg);
        opacity: 0.2;
    }
}

@keyframes particleFloat3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(20px, -55px) scale(1.6);
        opacity: 0.25;
    }
}

@keyframes particleFloat4 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.65;
    }
    40% {
        transform: translate(-15px, -45px) scale(1.4) rotate(180deg);
        opacity: 0.35;
    }
    70% {
        transform: translate(5px, -30px) scale(1.1) rotate(270deg);
        opacity: 0.5;
    }
}

@keyframes particleFloat5 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.7;
    }
    30% {
        transform: translate(10px, -40px) scale(1.5);
        opacity: 0.3;
    }
    60% {
        transform: translate(-15px, -65px) scale(1.7);
        opacity: 0.15;
    }
}

/* 모바일 최적화 */
@media (max-width: 768px) {
    .loader-logo::before {
        width: 220px;
        height: 220px;
    }
    
    .loader-logo-img {
        width: 160px;
    }
    
    .loader-progress-container {
        width: 280px;
    }
    
    .loader-progress-bar {
        height: 7px;
    }
    
    .loader-text {
        font-size: 15px;
    }
    
    .loader-percentage {
        font-size: 20px;
    }
    
    .loader-particles {
        width: 350px;
        height: 350px;
    }
    
    .particle {
        transform: scale(0.8);
    }
}

/* ==================== 기본 설정 ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ==================== SEO 최적화 - h 태그 스타일 리셋 ==================== */
/* h 태그가 기존 클래스 스타일을 그대로 사용하도록 설정 */
h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
    margin: 0;
    padding: 0;
}

:root {
    --primary-green: #76E0BA;       /* 민트 그린 - 메인 카드/버튼 색상 */
    --accent-lime: #16D990;         /* 밝은 민트 - 강조/금액 텍스트 */
    --dark-green: #44BB89;          /* 진한 민트 그린 - hover 효과 */
    --vibrant-green: #00D083;       /* 채도 높은 선명한 초록 - 버튼 */
    --navy-blue: #1E3A5F;
    --navy-dark: #1F2A44;           /* 진한 네이비 - STEP 강조용 */
    --light-green: #DFF8ED;         /* 연한 민트 배경 - 카드 */
    --bg-gradient-start: #A7F5CD;   /* 배경 그라데이션 시작 */
    --bg-gradient-end: #D7F3E3;     /* 배경 그라데이션 끝 */
    --ivory-bg: #F5F7F4;            /* 아이보리 배경 */
    --orange-accent: #FF7A00;       /* 오렌지 - 상호작용 강조 */
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-gray: #666666;
    --border-gray: #EAEAEA;         /* 연한 그레이 테두리 */
    --shadow-sm: 0 2px 8px rgba(118, 224, 186, 0.1);
    --shadow-md: 0 8px 32px rgba(118, 224, 186, 0.15);
    --shadow-lg: 0 20px 60px rgba(118, 224, 186, 0.2);
    /* 카카오 색상 */
    --kakao-yellow: #F5E41C;
    --kakao-text: #3C1E1E;
}

body {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 
                 'Apple SD Gothic Neo', 'Malgun Gothic', '맑은 고딕', 
                 'Noto Sans KR', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    font-display: swap;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    max-width: 100vw;
}

/* 로딩 중 스크롤 방지 */
body.loading {
    overflow: hidden;
}



html {
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

section {
    width: 100%;
    overflow-x: visible; /* hidden에서 visible로 변경 */
}

/* ==================== 네비게이션 ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

/* 모바일에서 헤더 높이 줄이기 */
@media (max-width: 768px) {
    .nav-content {
        padding: 6px 0;
    }
    
    .logo-icon {
        height: 28px;
        width: auto;
        max-width: 150px;
    }
    
    .logo-text {
        font-size: 18px;
    }
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.logo-section:hover {
    opacity: 0.8;
}

.logo-icon {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    flex-shrink: 0;
}

/* 이미지 로딩 실패 시 대비 */
.logo-icon:not([src]) {
    display: none;
}

.logo-section:has(.logo-icon[style*="display: none"]) .logo-text {
    margin-left: 0;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-green);
}

.nav-buttons {
    display: flex;
    gap: 12px;
}

.btn-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-phone {
    background: var(--primary-green);
    color: white;
}

.btn-phone:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-kakao {
    background: var(--kakao-yellow);
    color: #3C1E1E;
}

.btn-kakao:hover {
    background: #FFE933;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* PC 네비게이션 메뉴 */
.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-green);
}

.nav-link:hover::after {
    width: 100%;
}

/* 드롭다운 메뉴 */
.nav-dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 180px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
    margin-top: 8px;
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 12px 24px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-link:hover {
    background: var(--light-green);
    color: var(--vibrant-green);
}

/* 모바일 햄버거 메뉴 버튼 */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover span {
    background: var(--primary-green);
}

/* 모바일 메뉴 오버레이 */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: white;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding: 80px 32px 32px;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    padding: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    color: var(--primary-green);
    transform: rotate(90deg);
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* 모바일 메뉴 링크 */
.mobile-menu-link {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    padding: 16px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu-link.mobile-menu-main {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-menu-link:hover,
.mobile-menu-link:active {
    color: var(--primary-green);
    background: rgba(118, 224, 186, 0.1);
    transform: translateX(4px);
}

/* 모바일 드롭다운 */
.mobile-menu-dropdown {
    margin-bottom: 4px;
}

.mobile-menu-dropdown-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 16px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-dropdown-btn:hover {
    color: var(--primary-green);
    background: rgba(118, 224, 186, 0.1);
}

.mobile-dropdown-icon {
    transition: transform 0.3s ease;
}

.mobile-menu-dropdown.active .mobile-dropdown-icon {
    transform: rotate(180deg);
}

.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(118, 224, 186, 0.05);
    border-radius: 8px;
    margin-top: 4px;
}

.mobile-menu-dropdown.active .mobile-dropdown-content {
    max-height: 300px;
    padding: 8px 0;
}

/* 하위 메뉴 링크 */
.mobile-menu-link.mobile-menu-sub {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-gray);
    padding: 12px 20px 12px 36px;
    background: transparent;
    border: none;
}

.mobile-menu-link.mobile-menu-sub:hover {
    color: var(--primary-green);
    background: rgba(118, 224, 186, 0.1);
    transform: translateX(8px);
}

/* 플로팅 버튼 */
.floating-buttons {
    position: fixed;
    bottom: 32px;
    right: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: floatPulse 3s ease-in-out infinite;
    position: relative;
}

.floating-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    opacity: 0.6;
    animation: ripple 2s ease-out infinite;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.floating-phone {
    background: var(--primary-green);
    color: white;
}

.floating-phone:hover {
    background: #4CAF50;
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(118, 224, 186, 0.4);
}

.floating-kakao {
    background: var(--kakao-yellow);
    color: #3C1E1E;
}

.floating-kakao:hover {
    background: #FFE933;
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(254, 229, 0, 0.4);
}

@keyframes floatPulse {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* ==================== 히어로 섹션 ==================== */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, 
        var(--bg-gradient-end) 0%, 
        var(--bg-gradient-start) 25%, 
        var(--light-green) 50%, 
        var(--primary-green) 75%, 
        var(--accent-lime) 100%
    );
    background-size: 200% 200%;
    position: relative;
    overflow: hidden;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.8) 0%, transparent 50%);
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.hero *, .hero-left, .hero-right, .phone-mockup {
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.operating-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #00d083;
    color: white;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    border: 2px solid rgba(0, 208, 131, 0.5);
}

.operating-badge svg {
    flex-shrink: 0;
    display: block;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--navy-blue);
}

.gradient-text {
    background: linear-gradient(135deg, #00d083, #00f0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
    position: relative;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 40px rgba(118, 224, 186, 0.25);
    background: linear-gradient(135deg, #ffffff 0%, var(--light-green) 100%);
}

.stat-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--vibrant-green);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-gray);
}

.hero-cta {
    display: flex;
    gap: 16px;
    width: 100%;
}

.hero-cta .btn-secondary {
    flex: 1;
    width: 100%;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-lime));
    color: white;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 60px rgba(118, 224, 186, 0.4);
}

.btn-secondary {
    background: var(--kakao-yellow);
    color: #3C1E1E;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-secondary:hover {
    background: #FFE933;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(254, 229, 0, 0.4);
}

/* ==================== 휴대폰 목업 ==================== */
.phone-mockup {
    width: 340px;
    height: 680px;
    background: #1A1A1A;
    border-radius: 40px;
    padding: 8px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    transform: perspective(1000px) rotateY(-8deg) rotateX(2deg);
    animation: phoneFloat 4s ease-in-out infinite;
    pointer-events: auto;
}

@keyframes phoneFloat {
    0%, 100% { transform: perspective(1000px) rotateY(-8deg) rotateX(2deg) translateY(0); }
    50% { transform: perspective(1000px) rotateY(-8deg) rotateX(2deg) translateY(-10px); }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    pointer-events: auto;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #44BB89;
    color: white;
}

.app-time {
    font-size: 14px;
    font-weight: 600;
}

.app-title {
    font-size: 16px;
    font-weight: 700;
}

.app-content {
    flex: 1;
    padding: 20px;
    overflow-y: hidden;
    pointer-events: auto;
}

.balance-card {
    background: #44BB89;
    padding: 24px;
    border-radius: 16px;
    color: white;
    margin-bottom: 20px;
}

.balance-label {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 8px;
}

.balance-amount {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
}

.balance-sub {
    font-size: 12px;
    opacity: 0.8;
}

.quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
    pointer-events: auto;
    z-index: 100;
    position: relative;
}

.action-btn {
    padding: 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: auto;
    z-index: 100;
    position: relative;
    -webkit-tap-highlight-color: rgba(118, 224, 186, 0.3);
    touch-action: manipulation;
}

.action-primary {
    background: #76E0BA;
    color: white;
}

.action-primary:hover {
    background: #44BB89;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(118, 224, 186, 0.3);
}

.action-secondary {
    background: #F0F0F0;
    color: #76E0BA;
}

.action-secondary:hover {
    background: #E0E0E0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(118, 224, 186, 0.2);
}

.recent-transactions {
    margin-bottom: 24px;
}

.transaction-header {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.transaction-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: #FFFFFF;
    border-radius: 8px;
    margin-bottom: 8px;
}

.transaction-date {
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 4px;
}

.transaction-desc {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

.transaction-amount {
    font-size: 16px;
    font-weight: 700;
}

.positive {
    color: #00C853;
}

.progress-section {
    background: #FFFFFF;
    padding: 16px;
    border-radius: 12px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 13px;
}

.progress-amount {
    font-weight: 700;
    color: #DC143C;
}

.progress-bar-container {
    height: 8px;
    background: #E0E0E0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: #DC143C;
    border-radius: 4px;
    transition: width 1s ease;
}

/* ==================== 섹션 공통 ==================== */
section {
    padding: 80px 0;
    width: 100%;
    overflow-x: hidden;
}

/* ==================== 섹션별 배경 (퐁당퐁당 리듬) ==================== */
.process-section {
    background: #FFFFFF;
    overflow: visible;
}

.benefits-section {
    background: #FFFFFF;
}

.testimonials-section {
    background: #FFFFFF;
}

/* 히어로와 CTA는 기존 그라데이션 유지 */

* {
    box-sizing: border-box;
}

img, svg, video {
    max-width: 100%;
    height: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--navy-blue);
}

.section-header p {
    font-size: 18px;
    color: var(--text-gray);
}

/* ==================== 상세 절차 안내 ==================== */
.process-intro {
    text-align: center;
    margin: 50px auto 20px;
    padding: 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(118, 224, 186, 0.08);
    max-width: 800px;
}

.process-intro h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-lime));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-intro p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ==================== 요약형 3단계 (세련된 핀테크 스타일) ==================== */
.quick-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 380px;
    margin: 0 auto 100px;
    padding: 80px 20px 60px 20px;
}

/* 화살표 */
.arrow-divider {
    flex-shrink: 0;
    color: #D0D0D0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    opacity: 0.4;
}

.arrow-divider.active {
    color: var(--vibrant-green);
    transform: translateX(8px) scale(1.15);
    opacity: 1;
    filter: drop-shadow(0 2px 8px rgba(118, 224, 186, 0.3));
}

.summary-card {
    flex: 1;
    background: white;
    padding: 28px 18px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(0, 0, 0, 0.04);
    position: relative;
    opacity: 0.5;
    transform: scale(0.92);
    overflow: visible;
}

.summary-card::before {
    display: none;
}

/* 강조될 때 (색반전 및 크기 증가) */
.summary-card.active {
    transform: translateY(-8px) scale(1.06);
    box-shadow: 0 16px 48px rgba(118, 224, 186, 0.4);
    border-color: rgba(118, 224, 186, 0.5);
    opacity: 1 !important;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-lime));
}

.summary-card.active::before {
    opacity: 1;
}

.summary-card.active .step-num {
    background: white;
    color: var(--navy-dark);
    transform: scale(1.15);
    box-shadow: none;
    text-shadow: none;
}

.summary-card.active h4 {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.summary-card.active p {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

/* 강조 안 될 때 희미하게 */
.summary-card.dimmed {
    opacity: 0.4;
    transform: scale(0.88);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.summary-card.dimmed .step-num,
.summary-card.dimmed h4,
.summary-card.dimmed p {
    opacity: 0.3;
    transition: opacity 0.6s ease;
}

.summary-card.active .step-num,
.summary-card.active h4,
.summary-card.active p {
    opacity: 1 !important;
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 40px;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 700;
    color: white;
    background: var(--navy-dark);
    border-radius: 50px;
    margin-bottom: 16px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: none;
}

.summary-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 8px 0;
    line-height: 1.4;
    word-break: keep-all;
}

.summary-card p {
    font-size: 12px;
    font-weight: 500;
    color: #999999;
    margin: 0 0 16px 0;
    line-height: 1.5;
}

/* 특징 박스 컨테이너 */
.feature-box {
    margin-top: 8px;
    padding: 20px 14px;
    background: linear-gradient(135deg, #F5F9FF, #EBF4FF);
    border: 2px solid #D6E8FF;
    border-radius: 14px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(118, 224, 186, 0.08);
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.summary-card.active .feature-box {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.feature-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 1단계: 계약서 */
.contract-paper {
    width: 110px;
    background: white;
    border-radius: 12px;
    padding: 16px 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.6s ease;
}

.summary-card.active .contract-paper {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.contract-header {
    width: 60%;
    height: 5px;
    background: linear-gradient(90deg, #66BB6A, #AED581);
    border-radius: 4px;
    margin-bottom: 14px;
    animation: contractPulse 2s ease-in-out infinite;
}

@keyframes contractPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.contract-line {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #E0E0E0, #F0F0F0);
    border-radius: 2px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.contract-line.short {
    width: 70%;
}

.summary-card.active .contract-line {
    background: linear-gradient(90deg, #B0B0B0, #D0D0D0);
}

.contract-signature {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 6px 10px;
    background: linear-gradient(135deg, #F1F8E9, #DCEDC8);
    border: 2px dashed #66BB6A;
    border-radius: 6px;
    color: var(--vibrant-green);
    font-size: 10px;
    font-weight: 600;
    justify-content: center;
    animation: signatureBlink 2s ease-in-out infinite;
    white-space: nowrap;
    width: 100%;
    box-sizing: border-box;
}

@keyframes signatureBlink {
    0%, 100% { border-color: var(--vibrant-green); background: linear-gradient(135deg, #F1F8E9, #DCEDC8); }
    50% { border-color: #AED581; background: linear-gradient(135deg, #DCEDC8, #C5E1A5); }
}

.summary-card.active .contract-signature {
    background: rgba(255, 255, 255, 0.9);
    border-color: #AED581;
    color: var(--vibrant-green);
}

/* 2단계: 카드 단말기 */
.terminal-device {
    width: 110px;
    background: white;
    border-radius: 14px;
    padding: 12px 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 
                inset 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 3px solid #E0E0E0;
    position: relative;
    transition: all 0.6s ease;
}

.summary-card.active .terminal-device {
    background: white;
    transform: scale(1.08);
    box-shadow: 0 16px 48px rgba(30, 136, 229, 0.3),
                inset 0 2px 8px rgba(0, 0, 0, 0.05);
    border-color: var(--dark-green);
}

.terminal-screen {
    background: linear-gradient(135deg, var(--vibrant-green), var(--dark-green));
    border-radius: 6px;
    padding: 10px 6px;
    margin-bottom: 10px;
    border: 2px solid var(--dark-green);
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.summary-card.active .terminal-screen {
    background: linear-gradient(135deg, var(--dark-green), var(--accent-lime));
    border-color: var(--accent-lime);
    animation: screenGlow 1.5s ease-in-out infinite;
}

@keyframes screenGlow {
    0%, 100% { box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(22, 217, 144, 0.5); }
    50% { box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.5), 0 0 30px rgba(22, 217, 144, 0.8); }
}

.terminal-amount {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-lime);
    text-align: center;
    margin-bottom: 4px;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 10px rgba(22, 217, 144, 0.8);
    animation: amountBlink 1s ease-in-out infinite;
    letter-spacing: -0.5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

@keyframes amountBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.summary-card.active .terminal-amount {
    color: #FFEB3B;
    text-shadow: 0 0 15px rgba(255, 235, 59, 1), 0 2px 4px rgba(0, 0, 0, 0.3);
}

.terminal-status {
    font-size: 9px;
    font-weight: 600;
    color: #90A4AE;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-card.active .terminal-status {
    color: #FFF9C4;
    text-shadow: 0 0 8px rgba(255, 249, 196, 0.8);
}

.terminal-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    margin-bottom: 8px;
}

.terminal-button {
    height: 20px;
    background: linear-gradient(145deg, var(--light-green), var(--bg-gradient-start));
    border-radius: 5px;
    border: 1px solid var(--bg-gradient-start);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1),
                inset 0 1px 2px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.summary-card.active .terminal-button {
    background: linear-gradient(145deg, var(--bg-gradient-start), var(--primary-green));
    border-color: var(--accent-lime);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15),
                inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.terminal-card-slot {
    height: 5px;
    background: linear-gradient(90deg, #E0E0E0, #BDBDBD);
    border-radius: 3px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.summary-card.active .terminal-card-slot {
    background: linear-gradient(90deg, var(--accent-lime), var(--dark-green));
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2),
                0 0 10px rgba(22, 217, 144, 0.5);
}

/* 3단계: 즉시 입금 */
.deposit-animation {
    text-align: center;
    padding: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.money-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #FFF9C4, #FFE082);
    border-radius: 50%;
    margin-bottom: 6px;
    color: #FFA000;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.2),
                0 0 0 3px rgba(255, 215, 0, 0.15);
    animation: moneyBounce 1.5s ease-in-out infinite;
    transition: all 0.6s ease;
}

@keyframes moneyBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.05); }
}

.summary-card.active .money-icon {
    background: linear-gradient(135deg, #FFD700, #FFC107);
    color: white;
    box-shadow: 0 12px 32px rgba(255, 215, 0, 0.6),
                0 0 0 6px rgba(255, 215, 0, 0.3),
                0 0 30px rgba(255, 215, 0, 0.4);
    animation: moneyBounceLarge 1.2s ease-in-out infinite;
}

@keyframes moneyBounceLarge {
    0%, 100% { transform: translateY(0) scale(1.1); }
    50% { transform: translateY(-12px) scale(1.2); }
}

.deposit-amount {
    font-size: 16px;
    font-weight: 700;
    color: #90A4AE;
    margin-bottom: 6px;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
    text-shadow: none;
    animation: amountPulse 2s ease-in-out infinite;
}

@keyframes amountPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.summary-card.active .deposit-amount {
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-weight: 800;
}

.deposit-check {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    background: var(--vibrant-green);
    border-radius: 16px;
    color: white;
    font-size: 10px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 208, 131, 0.4);
    animation: checkPulse 2s ease-in-out infinite;
    white-space: nowrap;
}

@keyframes checkPulse {
    0%, 100% { box-shadow: 0 2px 8px rgba(22, 217, 144, 0.2); }
    50% { box-shadow: 0 4px 12px rgba(22, 217, 144, 0.3); }
}

.summary-card.active .deposit-check {
    background: linear-gradient(135deg, var(--accent-lime), var(--vibrant-green));
    color: white;
    box-shadow: 0 4px 12px rgba(118, 224, 186, 0.4);
    text-shadow: none;
}

/* ==================== 원형 흐름 (Elementor Sticky 방식) ==================== */

/* 모바일 전용 진입 버퍼 (PC에서는 숨김) */
.mobile-entry-buffer {
    display: none; /* 기본적으로 숨김 (PC) */
}

/* 부모 섹션 - 매우 높은 height (7단계 분량) */
.circle-flow-wrapper {
    position: relative;
    width: 100%;
    height: 800vh; /* 메인 카드에 오래 멈춤 */
    background: #FFFFFF;
}

/* Fixed 콘텐츠 컨테이너 - Elementor Sticky 방식 */
.circle-flow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    z-index: 100;
    pointer-events: none;
    overflow: hidden;
}

.circle-flow-container * {
    pointer-events: auto; /* 내부 요소는 클릭 가능 */
}

/* 단계별 상세 절차 제목 - wrapper 밖에 독립 */
.process-intro-section {
    text-align: center;
    padding: 80px 20px 40px;
    background: #FFFFFF;
}

.process-intro-section h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.process-intro-section p {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* 부드러운 스크롤 */
html {
    scroll-behavior: smooth;
}

/* 스크롤바 스타일링 (선택사항) */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.circle-flow-stage {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 180px 30px 160px;
    perspective: 1800px;
    perspective-origin: center center;
    background: #FFFFFF;
    overflow: visible; /* 양옆 카드 보이도록 */
}

/* 카드 공통 스타일 - 전환은 빠르게, 메인은 오래 */
.flow-card {
    position: absolute;
    width: min(480px, 80vw);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), 
                opacity 0.35s ease-out,
                filter 0.3s ease-out;
    z-index: 10;
    pointer-events: none;
    will-change: transform, opacity;
    transform-style: preserve-3d;
}

.card-inner {
    background: white;
    padding: 70px 45px 75px;
    border-radius: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08),
                0 2px 8px rgba(0, 0, 0, 0.04);
    text-align: center;
    border: 1px solid var(--border-gray);
    position: relative;
    overflow: hidden;
    min-height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-lime));
    border-radius: 32px 32px 0 0;
}

/* 카드 반전 스타일 */
.card-inner.inverted {
    background: linear-gradient(135deg, #0D7377 0%, #12D9B8 100%);
    color: white;
    border: none;
    box-shadow: 0 24px 80px rgba(13, 115, 119, 0.5);
}

.card-inner.inverted::before {
    display: none;
}

.card-inner.inverted h3,
.card-inner.inverted p {
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.card-inner.inverted .step-badge {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 900;
    border-color: rgba(255, 255, 255, 0.5);
}

.card-inner.inverted .step-icon svg {
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.card-inner.inverted .tag {
    background: rgba(255, 255, 255, 0.35);
    color: white;
    font-weight: 700;
}

/* 카드 배치 상태 - JavaScript로 직접 제어됨 (data-state 사용 안 함) */
/* 카드 애니메이션은 스크롤 진행률에 따라 실시간 보간됨:
   - Active: 중앙 (transform: translate(-50%, -50%) scale(1))
   - Next: 오른쪽에서 중앙으로 이동
   - Previous: 중앙에서 왼쪽 아래 대각선으로 이동
   - Hidden: 화면 밖 숨김
*/

/* 카드 내부 요소 */
.step-badge {
    display: inline-block;
    padding: 10px 24px;
    background: var(--primary-green);
    color: white;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: 1px;
    border: none;
    box-shadow: 0 4px 12px rgba(118, 224, 186, 0.3);
}

.card-inner.inverted .step-badge {
    background: rgba(255, 255, 255, 0.35);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
    font-weight: 900;
}

.flow-card .step-icon {
    width: 160px;
    height: 160px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 208, 131, 0.15), rgba(0, 208, 131, 0.2));
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 208, 131, 0.25);
    border: 4px solid rgba(0, 208, 131, 0.3);
}

.flow-card .step-icon svg {
    color: #00d083;
    width: 70px;
    height: 70px;
}

.card-inner.inverted .step-icon {
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.card-inner.inverted .step-icon svg {
    color: white;
    width: 70px;
    height: 70px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.card-inner h3 {
    font-size: 32px;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 24px;
    line-height: 1.4;
    word-break: keep-all;
    letter-spacing: -0.5px;
}

.card-inner.inverted h3 {
    color: white;
}

.card-inner p {
    font-size: 18px;
    color: #4A5568;
    line-height: 1.8;
    margin-bottom: 36px;
    word-break: keep-all;
    opacity: 1;
}

.card-inner.inverted p {
    color: rgba(255, 255, 255, 0.95);
    opacity: 1;
}

.step-tags {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: nowrap;
    margin-top: 12px;
}

.tag {
    padding: 10px 22px;
    background: rgba(0, 208, 131, 0.15);
    color: #00d083;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 700;
    border: 2px solid rgba(0, 208, 131, 0.3);
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(0, 208, 131, 0.25);
    transform: translateY(-2px);
}

.card-inner.inverted .tag {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    border-color: rgba(255, 255, 255, 0.35);
}

.card-inner.inverted .tag:hover {
    background: rgba(255, 255, 255, 0.35);
}

.step-icon-wrapper {
    width: 64px;
    height: 64px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--primary-green);
    transition: all 0.4s ease;
}

/* 미니 차트 */
.mini-chart {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 20px;
    height: 80px;
    margin-top: 20px;
    padding: 20px 24px;
    background: rgba(118, 224, 186, 0.06);
    border-radius: 20px;
}

.card-inner.inverted .mini-chart {
    background: rgba(255, 255, 255, 0.15);
}

.mini-bar {
    flex: 1;
    max-width: 32px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px 10px 0 0;
    transition: height 0.8s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-inner:not(.inverted) .mini-bar {
    background: linear-gradient(180deg, var(--primary-green) 0%, var(--accent-lime) 100%);
}

/* 한도 표시 */
.limit-display {
    margin-top: 24px;
    padding: 24px 36px;
    background: linear-gradient(135deg, #F5F7FA, #EEF1F6);
    border-radius: 28px;
    font-size: 36px;
    font-weight: 800;
    color: var(--navy-dark);
    border: 2px solid var(--border-gray);
    box-shadow: 0 4px 16px rgba(31, 42, 68, 0.1);
    letter-spacing: -1px;
}

/* 계약서 비주얼 */
.contract-visual {
    margin-top: 0;
    padding: 0;
    background: transparent;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border: none;
    width: 100%;
}

.contract-line {
    height: 6px;
    background: #00d083;
    border-radius: 8px;
    width: 100%;
}

.contract-line:nth-child(2) {
    width: 90%;
}

.contract-line:nth-child(3) {
    width: 60%;
}

.contract-sign {
    margin-top: 18px;
    padding: 14px 28px;
    background: #00d083;
    color: white;
    border-radius: 18px;
    font-size: 16px;
    font-weight: 800;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 208, 131, 0.4);
    letter-spacing: 0.5px;
}

/* 입금 체크 (반전 카드용) */
.deposit-check {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 32px;
    font-size: 17px;
    font-weight: 800;
    color: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    border: 3px solid rgba(255, 255, 255, 0.4);
}

.deposit-check svg {
    width: 28px;
    height: 28px;
}

/* 입금 체크 (일반 카드용 - 7번) */
.deposit-check-normal {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 32px;
    background: linear-gradient(135deg, rgba(0, 208, 131, 0.15), rgba(0, 208, 131, 0.2));
    border-radius: 32px;
    font-size: 17px;
    font-weight: 800;
    color: #00d083;
    box-shadow: 0 6px 20px rgba(0, 208, 131, 0.3);
    border: 3px solid rgba(0, 208, 131, 0.3);
}

.deposit-check-normal svg {
    width: 28px;
    height: 28px;
    color: #00d083;
}

/* 스크롤 힌트 */
.scroll-hint {
    display: none; /* 스크롤 기반 방식에서는 불필요 */
}

.scroll-hint.hidden {
    opacity: 0;
    pointer-events: none;
}

.scroll-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.scroll-hint span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-gray);
    white-space: nowrap;
}

/* 진행 인디케이터 */
.circle-flow-container .progress-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    box-shadow: 0 12px 48px rgba(118, 224, 186, 0.3),
                0 4px 20px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-weight: 700;
    flex-wrap: nowrap;
    justify-content: center;
    width: auto;
    max-width: calc(100% - 40px);
    z-index: 50;
    border: 1px solid rgba(118, 224, 186, 0.15);
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: auto;
}

.step-counter {
    display: flex;
    align-items: center;
    gap: 8px;
}

.current-step {
    color: var(--primary-green);
    font-size: 28px;
    font-weight: 800;
}

.divider {
    color: #E0E0E0;
    font-size: 18px;
}

.total-steps {
    color: #999;
    font-size: 20px;
}

.nav-buttons {
    display: flex;
    gap: 8px;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-lime));
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(118, 224, 186, 0.3);
    position: relative;
    overflow: hidden;
}

.nav-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.nav-btn:hover:not(:disabled)::before {
    transform: scale(1);
}

.nav-btn:hover:not(:disabled) {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(118, 224, 186, 0.5);
}

.nav-btn:active:not(:disabled) {
    transform: scale(0.95);
}

.nav-btn:disabled {
    opacity: 0.25;
    cursor: not-allowed;
    background: linear-gradient(135deg, #B0BEC5, #90A4AE);
    box-shadow: none;
}

.nav-btn svg {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
}

/* 다음으로 넘어가기 버튼 */
.skip-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-lime));
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 6px 24px rgba(118, 224, 186, 0.4),
                0 2px 8px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    position: relative;
    z-index: 100;
    pointer-events: auto;
}

.skip-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 32px rgba(118, 224, 186, 0.5),
                0 4px 16px rgba(0, 0, 0, 0.15);
}

.skip-btn:active {
    transform: translateY(0);
}

.skip-btn-prev {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #B0BEC5, #90A4AE);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 6px 24px rgba(144, 164, 174, 0.4),
                0 2px 8px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    position: relative;
    z-index: 100;
    pointer-events: auto;
}

.skip-btn-prev:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(135deg, #90A4AE, #78909C);
    box-shadow: 0 10px 32px rgba(144, 164, 174, 0.5),
                0 4px 16px rgba(0, 0, 0, 0.15);
}

.skip-btn-prev:active {
    transform: translateY(0);
}

.skip-btn-prev svg {
    transition: transform 0.3s ease;
}

.skip-btn-prev:hover svg {
    transform: translateX(-4px);
}

.skip-btn svg {
    transition: transform 0.3s ease;
}

.skip-btn:hover svg {
    transform: translateX(4px);
}

/* 차트 */
.dashboard-preview {
    background: #F8F9FA;
    padding: 20px;
    border-radius: 12px;
}

.dashboard-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.sales-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 120px;
    margin-bottom: 8px;
}

.chart-bar {
    width: 16%;
    background: linear-gradient(180deg, var(--primary-green), var(--accent-lime));
    border-radius: 6px 6px 0 0;
    position: relative;
    transition: height 1.5s ease-out;
    height: 0;
}

.chart-bar.animated {
    /* 높이는 JavaScript에서 설정 */
}

.bar-value {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    font-weight: 700;
    color: var(--primary-green);
    white-space: nowrap;
}

.chart-labels {
    display: flex;
    justify-content: space-around;
    margin-top: 8px;
    padding: 0 10px;
}

.chart-label {
    font-size: 11px;
    font-weight: 600;
    color: #666;
    text-align: center;
}

.apply-btn {
    width: 100%;
    padding: 12px;
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 16px;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    background: #0052CC;
}

/* 심사 진행 */
.approval-preview {
    background: #F8F9FA;
    padding: 20px;
    border-radius: 12px;
}

.approval-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.status-badge {
    padding: 6px 12px;
    background: var(--primary-green);
    color: white;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
}

.approval-time {
    font-size: 11px;
    color: var(--text-gray);
}

.approval-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.approval-step {
    text-align: center;
}

.step-icon {
    width: 40px;
    height: 40px;
    background: #E0E0E0;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    margin: 0 auto 8px;
}

.approval-step.completed .step-icon {
    background: #00C853;
}

.approval-step.active .step-icon {
    background: var(--primary-green);
}

.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.step-text {
    font-size: 11px;
    color: var(--text-gray);
}

.approval-progress {
    margin-top: 16px;
}

.progress-bar {
    height: 6px;
    background: #E0E0E0;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-lime));
    transition: width 1s ease;
}

/* 달력 CSS 제거 - 10일 관련 요소 삭제 */

/* ==================== 강점 섹션 ==================== */
.benefits-section {
    background: linear-gradient(135deg, rgba(20, 40, 80, 0.60) 0%, rgba(30, 50, 95, 0.55) 100%),
                url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1920&q=80') center/cover fixed;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 80px,
            rgba(118, 224, 186, 0.03) 80px,
            rgba(118, 224, 186, 0.03) 81px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 80px,
            rgba(118, 224, 186, 0.03) 80px,
            rgba(118, 224, 186, 0.03) 81px
        ),
        radial-gradient(circle at 30% 50%, rgba(118, 224, 186, 0.06) 0%, transparent 60%),
        radial-gradient(circle at 70% 30%, rgba(0, 208, 131, 0.04) 0%, transparent 50%);
    pointer-events: none;
    opacity: 0.25;
}

.benefits-section > .container > *:last-child {
    margin-bottom: 0 !important;
}

.benefits-section .section-header h2 {
    color: #FFFFFF;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    font-weight: 800;
}

.benefits-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
    font-weight: 600;
    margin-top: 24px;
}

/* ==================== 실시간 승인 현황 (새 디자인) ==================== */
.realtime-approvals-new {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), 
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    margin-bottom: 60px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.realtime-approvals-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00D084, #76E0BA, #00D084);
    animation: borderFlow 3s linear infinite;
}

@keyframes borderFlow {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.approvals-header-new {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #00A569, #00D084);
    border-radius: 20px;
    color: white;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(0, 165, 105, 0.4);
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(0, 165, 105, 0.4); }
    50% { box-shadow: 0 4px 24px rgba(0, 208, 132, 0.6); }
}

.approvals-header-new h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1E3A5F;
}

.approval-feed-new {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    min-height: 240px;
}

.approval-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    border: 1.5px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: slideInFromTop 0.5s ease-out;
}

@keyframes slideInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideOutToBottom {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

.approval-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #00D084, #76E0BA);
}

.approval-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 165, 105, 0.2);
    border-color: rgba(0, 208, 132, 0.4);
}

.approval-item:nth-child(n+4) {
    display: none !important;
}

.approval-info {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.approval-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #E6F7F1, #CCF0E3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    color: #00A569;
    font-weight: 700;
}

.approval-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.approval-text {
    font-size: 15px;
    font-weight: 600;
    color: #2D3748;
    line-height: 1.4;
}

.approval-amount {
    font-size: 18px;
    font-weight: 700;
    color: #00A569;
    font-family: 'Courier New', monospace;
}

.approval-time {
    font-size: 13px;
    color: #718096;
    white-space: nowrap;
    flex-shrink: 0;
    padding: 6px 12px;
    background: rgba(226, 232, 240, 0.8);
    border-radius: 8px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 36px;
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.8);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transform: translateY(-4px);
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(118, 224, 186, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    border-radius: 50%;
}

.benefit-card:hover::after {
    width: 300px;
    height: 300px;
}

.benefit-card:hover {
    transform: translateY(0);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15), 
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1) rotate(0deg);
    background: rgba(118, 224, 186, 0.15);
    color: var(--primary-green);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-lime));
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(118, 224, 186, 0.3);
    box-shadow: 0 4px 12px rgba(118, 224, 186, 0.3);
    transform: scale(1.15) rotate(10deg);
}

.benefit-card h3 {
    font-size: 19.5px;
    font-weight: 700;
    color: #1E3A5F;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 14px;
    color: #4A5568;
    line-height: 1.6;
}

/* ==================== 신뢰 지표 (새 디자인) ==================== */
.trust-metrics-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 0;
    overflow: visible;
}

.metric-card-new {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 56px 40px;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18), 
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: visible;
    z-index: 1;
}

.metric-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(118, 224, 186, 0.02), rgba(174, 213, 129, 0.02));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.metric-card-new:hover::before {
    opacity: 1;
}

.metric-card-new:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25), 
                0 4px 16px rgba(118, 224, 186, 0.2);
    border-color: rgba(118, 224, 186, 0.3);
}

.metric-circle-container {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 24px;
    overflow: visible;
}

.metric-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    overflow: visible;
}

.metric-bg {
    fill: none;
    stroke: rgba(30, 58, 95, 0.15);
    stroke-width: 12;
}

.metric-progress {
    fill: none;
    stroke: #00D084;
    stroke-width: 12;
    stroke-linecap: round;
    stroke-dasharray: 326.73;
    stroke-dashoffset: 326.73;
    transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 8px rgba(0, 208, 132, 0.5));
}

.metric-progress.cyan {
    stroke: #76E0BA;
    filter: drop-shadow(0 0 8px rgba(118, 224, 186, 0.5));
}

.metric-value-new {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    max-width: 90%;
}

.metric-number-new {
    font-size: 38px;
    font-weight: 800;
    color: #1E3A5F;
    font-family: 'Courier New', monospace;
    line-height: 1;
    white-space: nowrap;
}

.metric-unit-new {
    font-size: 20px;
    font-weight: 700;
    color: #2D4A6F;
    line-height: 1;
}

.metric-label-new {
    font-size: 18px;
    font-weight: 700;
    color: #1E3A5F;
    margin-bottom: 8px;
    text-align: center;
}

.metric-desc {
    font-size: 13px;
    color: #718096;
    font-weight: 500;
    text-align: center;
    line-height: 1.5;
}

/* ==================== 고객 후기 ==================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-gray);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    color: rgba(118, 224, 186, 0.05);
    font-family: Georgia, serif;
    transition: all 0.4s ease;
}

.testimonial-card:hover::before {
    color: rgba(118, 224, 186, 0.1);
    transform: scale(1.2);
}

.testimonial-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-green);
}

.testimonial-card:hover .profile-avatar {
    transform: scale(1.1) rotate(5deg);
}

/* Active 상태 (모바일 스크롤 시) */
.testimonial-card.active {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-green);
}

.testimonial-card.active::before {
    color: rgba(118, 224, 186, 0.1);
    transform: scale(1.2);
}

.testimonial-card.active .profile-avatar {
    transform: scale(1.1) rotate(5deg);
}

/* Inactive 상태 (모바일에서 다른 카드 활성화 시) */
.testimonial-card.inactive {
    opacity: 0.5;
    transform: scale(0.96);
}

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

.profile-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--vibrant-green), var(--dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.profile-name {
    font-size: 17px;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 4px;
}

.profile-business {
    font-size: 13px;
    font-weight: 600;
    color: #555555;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
}

.rating-score {
    margin-left: 8px;
    font-size: 15px;
    font-weight: 800;
    color: var(--vibrant-green);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #2A2A2A;
    font-weight: 500;
    margin-bottom: 16px;
}

.testimonial-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* 후기 섹션 태그 스타일 */
.testimonial-tag {
    padding: 6px 12px;
    background: rgba(118, 224, 186, 0.15);
    color: var(--vibrant-green);
    font-size: 12px;
    font-weight: 700;
    border-radius: 16px;
    border: 1px solid rgba(118, 224, 186, 0.3);
}

/* ==================== CTA 섹션 ==================== */
.cta-section {
    background: linear-gradient(135deg, var(--dark-green), var(--vibrant-green));
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content > p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.btn-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta.btn-primary {
    background: white;
    color: var(--primary-green);
}

.btn-cta.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.btn-cta.btn-kakao {
    background: var(--kakao-yellow);
    color: #3C1E1E;
}

.btn-cta.btn-kakao:hover {
    background: #FFE933;
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cta-info {
    font-size: 14px;
    opacity: 0.8;
}

/* ==================== FAQ 섹션 ==================== */
.faq-section {
    padding: 80px 0;
    background: #FAFBFC;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(118, 224, 186, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--vibrant-green);
}

.faq-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    color: var(--primary-green);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 28px 24px;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 15px;
}

/* ==================== 공지사항 섹션 ==================== */
.notice-section {
    padding: 80px 0;
    background: white;
}

.notice-container {
    max-width: 900px;
    margin: 0 auto;
}

.notice-item {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: #FAFBFC;
    border-radius: 16px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.notice-item:hover {
    background: white;
    border-color: var(--primary-green);
    box-shadow: 0 4px 20px rgba(118, 224, 186, 0.12);
    transform: translateY(-2px);
}

.notice-badge {
    flex-shrink: 0;
    padding: 6px 14px;
    background: var(--primary-green);
    color: white;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    height: fit-content;
}

.notice-badge.new {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
}

.notice-content {
    flex: 1;
}

.notice-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.notice-item:hover .notice-title {
    color: var(--vibrant-green);
}

.notice-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 12px;
}

.notice-date {
    font-size: 13px;
    color: #999;
    font-weight: 500;
}

/* ==================== 푸터 ==================== */
.footer {
    background: #1A1A1A;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.footer-section p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-logo-icon {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-logo-text {
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.footer-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.footer-consult {
    flex-shrink: 0;
}

.footer-consult h4 {
    margin-bottom: 12px;
}

.footer-btn {
    display: block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* SNS 링크 */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link-naver {
    background: transparent !important;
    padding: 0 !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.social-link-naver svg {
    display: block;
    width: 35px !important;
    height: 35px !important;
    flex-shrink: 0;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-link-naver:hover {
    background: transparent;
    transform: translateY(-2px);
    opacity: 0.85;
}

.social-link svg,
.social-link img {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    gap: 8px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    text-align: center;
}

.footer-privacy {
    text-align: center;
}

/* ==================== 반응형 ==================== */

/* ===== 930px ~ 769px: 네비게이션 버튼 크기 조정 (한 줄 유지) ===== */
@media (max-width: 930px) and (min-width: 769px) {
    .circle-flow-container .progress-indicator {
        gap: 16px;
        padding: 16px 24px;
        font-size: 16px;
    }
    
    .skip-btn,
    .skip-btn-prev {
        padding: 12px 20px !important;
        font-size: 14px !important;
        gap: 8px !important;
    }
    
    .skip-btn svg,
    .skip-btn-prev svg {
        width: 18px !important;
        height: 18px !important;
    }
    
    .current-step {
        font-size: 24px;
    }
    
    .total-steps {
        font-size: 18px;
    }
}

/* ===== 768px 이하: 가로 스크롤 방식 (모바일 전용) ===== */
@media (max-width: 768px) {
    /* 가로 스와이프 방식 */
    .circle-flow-wrapper {
        height: auto !important;
        background: #FFFFFF;
        padding: 0 0 40px 0;
        margin: 0;
        overflow: visible !important;
        perspective: 1500px;
        perspective-origin: center center;
    }

    .circle-flow-container {
        position: relative !important;
        height: auto !important;
        display: block !important;
        overflow: visible !important;
        padding-bottom: 20px;
        transform-style: preserve-3d;
    }

    .process-intro-section {
        padding: 60px 24px 24px;
        margin-bottom: 0;
    }

    .process-intro-section h3 {
        font-size: 32px;
    }

    .process-intro-section p {
        font-size: 16px;
    }

    /* 모바일 스테이지 - 양옆 카드 보이기 */
    .mobile-stage {
        overflow-x: auto !important;
        overflow-y: hidden !important;
        transform-style: preserve-3d;
        padding: 60px 0;
    }

    /* 모바일 전용 카드 스타일 */
    .mobile-card {
        position: relative;
        flex-shrink: 0 !important;
        transform-style: preserve-3d;
        will-change: transform, opacity, filter;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }
    
    .mobile-card .card-inner {
        padding: 50px 30px 55px;
        border-radius: 32px;
        min-height: 580px;
        background: white;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        position: relative;
        overflow: hidden;
        transform-style: preserve-3d;
        transition: box-shadow 0.4s ease;
    }
    
    /* 중앙 카드 강조 그림자 */
    .mobile-card .card-inner:hover {
        box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    }
    
    /* 반전 카드 스타일 */
    .mobile-card.inverted .card-inner {
        background: linear-gradient(135deg, #00d083 0%, #76e0ba 100%);
        color: white;
        border: none;
        box-shadow: 0 20px 60px rgba(0, 208, 131, 0.4);
    }
    
    .mobile-card.inverted .card-inner:hover {
        box-shadow: 0 25px 80px rgba(0, 208, 131, 0.5);
    }
    
    .mobile-card .card-inner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, #00d083, #76e0ba, #bfff7e);
        border-top-left-radius: 32px;
        border-top-right-radius: 32px;
        z-index: 1;
        box-sizing: border-box;
    }
    
    .mobile-card.inverted .card-inner::before {
        background: rgba(255, 255, 255, 0.3);
    }

    .mobile-card .card-inner h3 {
        font-size: 24px;
        margin: 16px 0 12px;
        font-weight: 700;
        color: #1f2a44;
    }
    
    .mobile-card.inverted .card-inner h3 {
        color: white;
    }

    .mobile-card .card-inner p {
        font-size: 15px;
        line-height: 1.6;
        color: #5a6b8c;
        margin: 0;
    }
    
    .mobile-card.inverted .card-inner p {
        color: rgba(255, 255, 255, 0.95);
    }

    .mobile-card .step-badge {
        padding: 10px 20px;
        font-size: 13px;
        background: rgba(0, 208, 131, 0.15);
        color: #00d083;
        border-radius: 24px;
        font-weight: 700;
        border: 2px solid rgba(0, 208, 131, 0.3);
    }
    
    .mobile-card.inverted .step-badge {
        background: rgba(255, 255, 255, 0.25);
        color: white;
        border-color: rgba(255, 255, 255, 0.35);
    }

    .mobile-card .step-icon {
        width: 100px;
        height: 100px;
        background: rgba(118, 224, 186, 0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 20px auto;
        color: #00d083;
    }
    
    .mobile-card.inverted .step-icon {
        background: rgba(255, 255, 255, 0.2);
        color: white;
    }

    .mobile-card .step-icon svg {
        width: 48px;
        height: 48px;
    }

    .mobile-card .limit-display {
        font-size: 26px;
        padding: 16px 24px;
        background: linear-gradient(135deg, #F5F7FA, #EEF1F6);
        border-radius: 28px;
        font-weight: 800;
        color: #1f2a44;
        border: 2px solid #e2e8f0;
        margin-top: 20px;
    }
    
    .mobile-card.inverted .limit-display {
        background: rgba(255, 255, 255, 0.25);
        color: white;
        border-color: rgba(255, 255, 255, 0.35);
    }

    .mobile-card .mini-chart,
    .mobile-card .card-inner .mini-chart,
    .mobile-card.inverted .card-inner .mini-chart {
        height: 60px !important;
        min-height: 60px !important;
        padding: 12px !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        align-items: flex-end !important;
        justify-content: center !important;
        gap: 20px !important;
        margin-top: 20px !important;
        background: rgba(118, 224, 186, 0.06) !important;
        border-radius: 20px !important;
        overflow: visible !important;
    }
    
    .mobile-card.inverted .mini-chart,
    .mobile-card.inverted .card-inner .mini-chart {
        background: rgba(255, 255, 255, 0.15) !important;
    }
    
    .mobile-card .mini-bar,
    .mobile-card .card-inner .mini-bar,
    .mobile-card.inverted .card-inner .mini-bar {
        flex: 1 !important;
        max-width: 32px !important;
        min-height: 10px !important;
        background: linear-gradient(180deg, #00d083 0%, #bfff7e 100%) !important;
        border-radius: 10px 10px 0 0 !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
        transition: height 0.3s ease !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* 각 막대의 높이 명시 */
    .mobile-card .mini-bar:nth-child(1),
    .mobile-card .card-inner .mini-bar:nth-child(1) {
        height: 60% !important;
    }
    
    .mobile-card .mini-bar:nth-child(2),
    .mobile-card .card-inner .mini-bar:nth-child(2) {
        height: 80% !important;
    }
    
    .mobile-card .mini-bar:nth-child(3),
    .mobile-card .card-inner .mini-bar:nth-child(3) {
        height: 70% !important;
    }
    
    .mobile-card.inverted .mini-bar,
    .mobile-card.inverted .card-inner .mini-bar {
        background: rgba(255, 255, 255, 0.9) !important;
        box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3) !important;
        display: block !important;
        visibility: visible !important;
    }
    
    .mobile-card .tag {
        display: inline-block;
        padding: 10px 22px;
        background: rgba(0, 208, 131, 0.15);
        color: #00d083;
        border-radius: 24px;
        font-size: 14px;
        font-weight: 700;
        border: 2px solid rgba(0, 208, 131, 0.3);
        margin: 8px 4px;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .mobile-card.inverted .tag {
        background: rgba(255, 255, 255, 0.25);
        color: white;
        border-color: rgba(255, 255, 255, 0.35);
    }
    
    /* step-tags 모바일 가로 배치 고정 */
    .mobile-card .step-tags {
        flex-wrap: nowrap !important;
        gap: 8px;
        width: 100%;
        overflow-x: visible;
    }
    
    .mobile-card .contract-visual,
    .mobile-card .card-inner .contract-visual {
        margin-top: 0 !important;
        padding: 0 !important;
        background: transparent !important;
        border-radius: 24px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 14px !important;
        border: none !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
    }
    
    .mobile-card.inverted .contract-visual,
    .mobile-card.inverted .card-inner .contract-visual {
        background: transparent !important;
        border: none !important;
    }
    
    .mobile-card .contract-line,
    .mobile-card .card-inner .contract-line {
        height: 6px !important;
        background: #00d083 !important;
        border-radius: 8px !important;
        width: 100% !important;
        display: block !important;
        visibility: visible !important;
    }
    
    .mobile-card.inverted .contract-line,
    .mobile-card.inverted .card-inner .contract-line {
        background: white !important;
    }
    
    .mobile-card .contract-sign,
    .mobile-card .card-inner .contract-sign {
        margin-top: 18px !important;
        padding: 14px 28px !important;
        background: #00d083 !important;
        color: white !important;
        border-radius: 18px !important;
        font-size: 16px !important;
        font-weight: 800 !important;
        text-align: center !important;
        box-shadow: 0 6px 20px rgba(0, 208, 131, 0.4) !important;
        display: block !important;
        visibility: visible !important;
    }
    
    .mobile-card .deposit-check-normal,
    .mobile-card .card-inner .deposit-check-normal {
        margin-top: 24px !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 14px !important;
        padding: 16px 32px !important;
        background: linear-gradient(135deg, rgba(0, 208, 131, 0.15), rgba(0, 208, 131, 0.2)) !important;
        border-radius: 32px !important;
        font-size: 17px !important;
        font-weight: 800 !important;
        color: #00d083 !important;
        box-shadow: 0 6px 20px rgba(0, 208, 131, 0.3) !important;
        border: 3px solid rgba(0, 208, 131, 0.3) !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* 진행 인디케이터 */
    .circle-flow-container .progress-indicator {
        position: absolute !important;
        left: 0 !important;
        bottom: 10px !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center;
        align-items: center;
        padding: 12px 0;
        background: transparent;
        z-index: 10;
    }

    /* 네비게이션 버튼 모두 숨김 */
    .progress-indicator .skip-btn,
    .progress-indicator .skip-btn-prev,
    .progress-indicator .nav-buttons {
        display: none !important;
    }
}

/* ===== 768px 이하: 모바일 추가 최적화 ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 16px; /* 8px에서 16px로 증가 - 카드 잘림 방지 */
        width: 100%;
    }
    
    /* 모바일에서 PC 메뉴 숨기기 */
    .nav-menu {
        display: none;
    }
    
    /* 모바일에서 햄버거 메뉴 표시 */
    .mobile-menu-toggle {
        display: flex;
    }

    /* 모바일 전용 진입 버퍼 - 자연스러운 스크롤 방식에서는 불필요 */
    .mobile-entry-buffer {
        display: none !important; /* 모바일에서도 숨김 */
    }

    .process-intro-section {
        padding: 40px 16px 24px;
    }

    .process-intro-section h3 {
        font-size: 28px;
    }

    .process-intro-section p {
        font-size: 14px;
    }

    /* .flow-card 스타일은 3680-3712줄에서 이미 정의됨 - 중복 제거 */

    /* .card-inner 스타일은 3719-3729줄에서 이미 정의됨 - 중복 제거하되 타이포그래피만 유지 */

    .card-inner h3 {
        font-size: 22px;
    }

    .card-inner p {
        font-size: 14px;
    }

    .step-badge {
        padding: 8px 18px;
        font-size: 12px;
    }

    .flow-card .step-icon {
        width: 90px;
        height: 90px;
    }

    .flow-card .step-icon svg {
        width: 44px;
        height: 44px;
    }

    .limit-display {
        font-size: 24px;
        padding: 14px 20px;
    }

    /* mini-chart 스타일은 위에서 정의됨 - 중복 제거 */

    /* .progress-indicator, .mobile-dots-indicator 스타일은 3765-3807줄에서 이미 정의됨 - 중복 제거 */

    .total-steps {
        font-size: 18px;
    }

    .nav-buttons {
        gap: 6px;
    }

    .nav-btn {
        width: 36px;
        height: 36px;
    }

    .nav-btn svg {
        width: 18px;
        height: 18px;
    }

    .scroll-hint {
        bottom: 20px;
    }

    .scroll-hint span {
        font-size: 12px;
    }
    
    /* 플로팅 버튼 모바일 조정 */
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn {
        width: 56px;
        height: 56px;
    }
    
    .nav-buttons {
        display: none !important;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
        background: linear-gradient(135deg, 
            var(--light-green) 0%, 
            var(--bg-gradient-start) 50%, 
            var(--bg-gradient-start) 100%
        ) !important;
        animation: none !important;
    }
    
    .hero::before {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        z-index: 10;
        position: relative;
    }
    
    .hero-left {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        opacity: 1 !important;
        visibility: visible !important;
        z-index: 10;
    }
    
    .hero-title {
        font-size: 40px;
        text-align: center;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }
    
    .hero-subtitle {
        text-align: center;
        font-size: 16px;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }
    
    .operating-badge {
        display: flex !important;
        font-size: 14px;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        opacity: 1 !important;
        visibility: visible !important;
        display: grid !important;
    }
    
    .stat-item {
        padding: 16px 12px;
        animation: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }
    
    .stat-item:nth-child(1) {
        animation: none;
    }
    
    .stat-item:nth-child(2) {
        animation: none;
    }
    
    .stat-item:nth-child(3) {
        animation: none;
    }
    
    .stat-value {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    /* 모바일 터치 효과 */
    .stat-item:active {
        transform: scale(0.95);
        box-shadow: 0 2px 8px rgba(118, 224, 186, 0.2);
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
    }
    
    .btn-lg {
        width: 100%;
        justify-content: center;
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
    }
    
    .phone-mockup {
        width: 280px;
        height: 560px;
        display: block;
        margin: 0 auto;
        pointer-events: auto;
    }
    
    .hero-right {
        display: block;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .app-content {
        overflow-y: hidden;
        overflow-x: hidden;
        padding: 16px;
    }
    
    .phone-screen {
        overflow: hidden;
    }
    
    .balance-card {
        padding: 20px;
        margin-bottom: 16px;
    }
    
    .balance-amount {
        font-size: 28px;
    }
    
    .balance-label {
        font-size: 12px;
    }
    
    .balance-sub {
        font-size: 11px;
    }
    
    .quick-actions {
        margin-bottom: 20px;
        gap: 10px;
        pointer-events: auto;
        z-index: 100;
        position: relative;
    }
    
    .action-btn {
        padding: 12px;
        font-size: 13px;
        pointer-events: auto;
        z-index: 100;
        position: relative;
        -webkit-tap-highlight-color: rgba(118, 224, 186, 0.3);
        touch-action: manipulation;
    }
    
    .recent-transactions {
        margin-bottom: 20px;
    }
    
    .transaction-header {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .transaction-item {
        padding: 10px;
        margin-bottom: 6px;
    }
    
    .transaction-date {
        font-size: 11px;
    }
    
    .transaction-desc {
        font-size: 12px;
    }
    
    .transaction-amount {
        font-size: 14px;
    }
    
    .progress-section {
        padding: 14px;
    }
    
    .progress-header {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .section-header h2 {
        font-size: 24px;
        line-height: 1.3;
        word-break: keep-all;
        white-space: nowrap;
        margin-bottom: 12px; /* 여백 축소 */
    }
    
    .section-header {
        margin-bottom: 28px; /* 하단 여백 축소 */
        padding-top: 0;
    }
    
    .section-header p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .process-section .section-header {
        margin-bottom: 50px; /* 20px에서 50px로 증가 */
    }
    
    .process-section .section-header h2 {
        font-size: 26px;
        white-space: nowrap;
        overflow: visible;
    }
    
    /* 매우 작은 화면 (360px 이하)을 위한 조정 */
    @media (max-width: 380px) {
        .process-section .section-header h2 {
            font-size: 22px;
        }
        
        /* 태그 작은 화면 조정 */
        .mobile-card .tag {
            padding: 8px 16px !important;
            font-size: 12px !important;
            margin: 6px 3px !important;
        }
        
        .mobile-card .step-tags {
            gap: 6px !important;
        }
        
        /* 작은 화면에서 게이지 더 축소 */
        .trust-metrics-new {
            gap: 8px;
            padding: 0 8px;
        }
        
        .metric-card-new {
            padding: 16px 8px;
            min-height: 220px;
        }
        
        .metric-circle-container {
            width: 75px;
            height: 75px;
            margin-bottom: 10px;
        }
        
        .metric-number-new {
            font-size: 17px;
        }
        
        .metric-unit-new {
            font-size: 10px;
        }
        
        .metric-label-new {
            font-size: 11px;
            margin-bottom: 4px;
        }
        
        .metric-desc {
            font-size: 9px;
            line-height: 1.2;
        }
        
        /* 3단계 요약 작은 화면 */
        .quick-summary {
            gap: 8px;
            padding: 30px 10px 15px 10px;
            max-width: 100%;
            width: 100%;
        }
        
        .summary-card {
            padding: 12px 6px 8px 6px;
            min-height: auto;
        }
        
        .step-num {
            min-width: 50px;
            height: 28px;
            font-size: 11px;
            margin-bottom: 8px;
        }
        
        .summary-card h4 {
            font-size: 12px;
            margin-bottom: 4px;
            line-height: 1.3;
        }
        
        .summary-card p {
            font-size: 10px;
            margin-bottom: 6px;
            line-height: 1.3;
        }
        
        .feature-box {
            min-height: auto;
            max-height: none;
            padding: 6px 4px 4px 4px;
            margin-top: 4px;
        }
        
        .contract-paper {
            width: 65px;
            max-width: 65px;
            height: 90px;
            padding: 8px 5px;
        }
        
        .contract-header {
            height: 3px;
            margin-bottom: 6px;
        }
        
        .contract-line {
            height: 3px;
            margin-bottom: 5px;
        }
        
        .contract-signature {
            font-size: 10px;
            padding: 5px 8px;
            margin-top: 6px;
        }
        
        .contract-signature svg {
            width: 12px;
            height: 12px;
        }
        
        .terminal-device {
            width: 65px;
            max-width: 65px;
            height: 90px;
            padding: 6px 4px;
        }
        
        .terminal-screen {
            padding: 5px 3px;
            margin-bottom: 5px;
        }
        
        .terminal-amount {
            display: none !important;
            visibility: hidden !important;
        }
        
        .terminal-status {
            font-size: 8px;
        }
        
        .terminal-buttons {
            gap: 3px;
            margin-bottom: 4px;
        }
        
        .terminal-button {
            height: 14px;
        }
        
        .deposit-animation {
            width: 65px;
            height: 90px;
            padding: 4px 0;
        }
        
        .money-icon {
            width: 32px;
            height: 32px;
        }
        
        .money-icon svg {
            width: 18px;
            height: 18px;
        }
        
        .deposit-amount {
            font-size: 11px;
        }
        
        .deposit-check {
            font-size: 9px;
            padding: 4px 8px;
        }
        
        .deposit-check svg {
            width: 11px;
            height: 11px;
        }
    }
    
    @media (max-width: 340px) {
        .process-section .section-header h2 {
            font-size: 20px;
        }
        
        /* 매우 작은 화면에서 태그 더 축소 */
        .mobile-card .tag {
            padding: 7px 14px !important;
            font-size: 11px !important;
            margin: 5px 2px !important;
        }
        
        .mobile-card .step-tags {
            gap: 4px !important;
        }
    }
    
    .process-intro {
        padding: 20px 16px;
        margin: 30px 16px;
    }
    
    .process-intro h3 {
        font-size: 22px;
    }
    
    .process-intro p {
        font-size: 14px;
    }
    
    .quick-timeline {
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
        margin: 0 0 40px 0;
    }
    
    .timeline-arrow {
        transform: rotate(90deg);
        font-size: 24px;
    }
    
    .timeline-item {
        width: 100%;
        animation: none;
    }
    
    .timeline-item:nth-child(1) {
        animation: none;
    }
    
    .timeline-item:nth-child(3) {
        animation: none;
    }
    
    .timeline-item:nth-child(5) {
        animation: none;
    }
    
    /* 요약형 3단계 모바일 */
    .quick-summary {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
        gap: 10px;
        margin-bottom: 20px;
        max-width: 100%;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 40px 12px 20px 12px;
        overflow: visible;
        box-sizing: border-box;
    }
    
    .arrow-divider {
        display: none;
    }
    
    .summary-card {
        padding: 14px 8px 10px 8px;
        width: 100%;
        max-width: 100%;
        min-height: auto;
        box-sizing: border-box;
        overflow: visible;
        opacity: 0.4;
        transform: scale(0.95);
        border-radius: 14px;
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
    
    .summary-card.active {
        transform: scale(1) !important;
        opacity: 1 !important;
    }
    
    .summary-card.dimmed {
        transform: scale(0.95);
        opacity: 0.4;
    }
    
    .step-num {
        min-width: 54px;
        height: 32px;
        padding: 0 10px;
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .summary-card h4 {
        font-size: 13px;
        margin-bottom: 5px;
        word-break: keep-all;
        overflow-wrap: break-word;
        line-height: 1.4;
        text-align: center;
    }
    
    .summary-card p {
        font-size: 11px;
        margin-bottom: 8px;
        word-break: keep-all;
        overflow-wrap: break-word;
        line-height: 1.4;
        text-align: center;
    }
    
    .feature-box {
        padding: 8px 6px 6px 6px;
        margin-top: 6px;
        width: 100%;
        box-sizing: border-box;
        overflow: visible;
        min-height: auto;
        max-height: none;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .contract-paper {
        width: 72px;
        max-width: 72px;
        height: 100px;
        padding: 10px 6px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    
    .contract-header {
        width: 60%;
        height: 4px;
        background: linear-gradient(90deg, #66BB6A, #AED581);
        border-radius: 2px;
        margin-bottom: 8px;
        display: block !important;
        visibility: visible !important;
    }
    
    .contract-line {
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, #E0E0E0, #F0F0F0);
        border-radius: 2px;
        margin-bottom: 6px;
        display: block !important;
        visibility: visible !important;
    }
    
    .contract-line.short {
        width: 70%;
    }
    
    .contract-signature {
        font-size: 11px;
        padding: 6px 10px;
        margin-top: 8px;
        gap: 6px;
        width: auto;
        display: inline-flex;
    }
    
    .contract-signature svg {
        width: 14px;
        height: 14px;
    }
    
    .terminal-device {
        width: 72px;
        max-width: 72px;
        height: 100px;
        padding: 8px 5px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    
    .terminal-screen {
        background: linear-gradient(135deg, var(--vibrant-green), var(--dark-green));
        border-radius: 5px;
        padding: 6px 4px;
        margin-bottom: 5px;
        border: 1px solid var(--dark-green);
        box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.2);
        width: 100%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .terminal-buttons {
        gap: 4px;
        margin-bottom: 5px;
    }
    
    .terminal-button {
        height: 16px;
    }
    
    .terminal-amount {
        display: none !important;
        visibility: hidden !important;
    }
    
    .terminal-status {
        font-size: 9px;
        color: white;
        text-align: center;
        display: block !important;
        visibility: visible !important;
    }
    
    .terminal-card-slot {
        height: 4px;
    }
    
    .deposit-animation {
        width: 72px;
        height: 100px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        padding: 5px 0;
        box-sizing: border-box;
    }
    
    .money-icon {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
    }
    
    .money-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .deposit-amount {
        font-size: 12px;
        margin: 0;
        white-space: nowrap;
    }
    
    .deposit-check {
        font-size: 10px;
        padding: 5px 10px;
        margin: 0;
        white-space: nowrap;
    }
    
    .deposit-check svg {
        width: 12px;
        height: 12px;
    }
    
    .process-flow {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-step:nth-child(13) {
        grid-column: auto;
    }
    
    .process-step {
        width: 100%;
        animation: none;
    }
    
    .process-step:nth-child(odd) {
        animation: none;
    }
    
    .process-step:nth-child(even) {
        animation: none;
    }
    
    /* 모바일에서 7번 색상 반전 제거 */
    .process-step:last-child.process-step-inverted {
        background: white !important;
        color: var(--text-dark) !important;
        box-shadow: 0 4px 20px rgba(118, 224, 186, 0.08) !important;
    }
    
    .process-step:last-child.process-step-inverted .step-content h3 {
        color: var(--text-dark) !important;
    }
    
    .process-step:last-child.process-step-inverted .step-content p {
        color: var(--text-gray) !important;
    }
    
    .process-step:last-child.process-step-inverted .step-number {
        background: linear-gradient(135deg, var(--primary-green), var(--accent-lime)) !important;
        color: white !important;
    }
    
    .process-step:last-child.process-step-inverted .step-icon-wrapper {
        background: var(--light-green) !important;
        color: var(--primary-green) !important;
    }
    
    .process-step:last-child.process-step-inverted .step-visual {
        background: #F8FBFF !important;
    }
    
    .process-step:last-child.process-step-inverted .deposit-badge {
        background: linear-gradient(135deg, var(--primary-green), var(--accent-lime)) !important;
        color: white !important;
    }
    
    /* 모바일 터치 효과 */
    .process-step:active {
        transform: scale(0.98);
    }
    
    /* Benefits 섹션 모바일 최적화 */
    .benefits-section {
        padding: 50px 0 40px; /* 상하 패딩 축소 */
        background: linear-gradient(135deg, rgba(20, 40, 80, 0.60) 0%, rgba(30, 50, 95, 0.55) 100%),
                    url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1200&q=80') center/cover;
        background-attachment: scroll; /* 모바일에서 fixed 제거 */
    }
    
    .benefits-section::before {
        opacity: 0.20; /* 모바일에서 투명도 조정 */
    }
    
    .benefits-section .section-header h2 {
        font-size: 24px;
        padding: 12px 24px;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
        color: #FFFFFF;
    }
    
    .benefits-section .section-header p {
        font-size: 14px;
        margin-top: 16px;
        color: rgba(255, 255, 255, 0.9);
    }
    
    /* Testimonials 섹션 모바일 최적화 */
    .testimonials-section {
        padding: 50px 0 40px;
    }
    
    /* CTA 섹션 모바일 최적화 */
    .cta-section {
        padding: 50px 0 40px;
    }
    
    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 0;
        margin: 0 0 40px 0;
    }
    
    /* 모바일 터치 효과 */
    .benefit-card {
        padding: 28px 20px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12),
                    inset 0 1px 0 rgba(255, 255, 255, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.8);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        min-height: 180px;
        position: relative;
        overflow: hidden;
    }
    
    .benefit-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(118, 224, 186, 0.03) 0%, rgba(0, 208, 131, 0.05) 100%);
        pointer-events: none;
    }
    
    .benefit-card:active {
        transform: translateY(-2px);
    }
    
    .benefit-icon {
        width: 56px;
        height: 56px;
        margin: 0 auto 16px;
        background: linear-gradient(135deg, var(--primary-green), var(--accent-lime));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        border: 1px solid rgba(118, 224, 186, 0.3);
        box-shadow: 0 4px 12px rgba(118, 224, 186, 0.3);
        flex-shrink: 0;
    }
    
    .benefit-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .benefit-card h3 {
        font-size: 15px;
        font-weight: 700;
        color: #1E3A5F;
        margin-bottom: 8px;
        word-break: keep-all;
        line-height: 1.4;
    }
    
    .benefit-card p {
        font-size: 13px;
        color: #4A5568;
        line-height: 1.6;
        word-break: keep-all;
    }
    
    /* 실시간 승인 현황 (모바일) */
    .realtime-approvals-new {
        padding: 20px 12px; /* 패딩 축소 */
        border-radius: 16px;
        margin-bottom: 30px; /* 하단 여백 축소 */
    }
    
    .approvals-header-new {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 24px;
    }
    
    .approvals-header-new h3 {
        font-size: 20px;
    }
    
    .approval-feed-new {
        gap: 12px;
        min-height: 200px;
    }
    
    .approval-item {
        padding: 16px 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .approval-info {
        gap: 12px;
        width: 100%;
    }
    
    .approval-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .approval-text {
        font-size: 14px;
    }
    
    .approval-amount {
        font-size: 16px;
    }
    
    .approval-time {
        align-self: flex-end;
        font-size: 12px;
    }
    
    /* 신뢰 지표 (모바일) */
    .trust-metrics-new {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        padding: 0 10px;
        max-width: 100%;
    }
    
    .metric-card-new {
        padding: 20px 10px;
        border-radius: 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        min-height: 240px;
    }
    
    .metric-circle-container {
        width: 90px;
        height: 90px;
        margin-bottom: 12px;
        flex-shrink: 0;
    }
    
    .metric-svg {
        width: 100%;
        height: 100%;
    }
    
    .metric-bg {
        stroke-width: 10;
    }
    
    .metric-progress {
        stroke-width: 10;
    }
    
    .metric-number-new {
        font-size: 19px;
    }
    
    .metric-unit-new {
        font-size: 11px;
    }
    
    .metric-label-new {
        font-size: 13px;
        margin-bottom: 6px;
        text-align: center;
        line-height: 1.3;
    }
    
    .metric-desc {
        font-size: 10px;
        line-height: 1.3;
        word-break: keep-all;
        text-align: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* 모바일에서 기본 스타일 (비활성화) */
    .testimonial-card {
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    /* 모바일 active/inactive 전환 */
    .testimonial-card.inactive {
        opacity: 0.4;
        transform: scale(0.96);
    }
    
    .testimonial-card.active {
        opacity: 1;
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
        border-color: var(--primary-green);
    }
    
    .testimonial-card.active::before {
        color: rgba(118, 224, 186, 0.1);
        transform: scale(1.2);
    }
    
    .testimonial-card.active .profile-avatar {
        transform: scale(1.1) rotate(5deg);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-section h4 {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .footer-section p {
        font-size: 13px;
    }
    
    /* FAQ 섹션 (모바일) */
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 20px 20px;
        font-size: 15px;
    }
    
    .faq-icon {
        width: 20px;
        height: 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
    
    /* 공지사항 섹션 (모바일) */
    .notice-section {
        padding: 60px 0;
    }
    
    .notice-item {
        flex-direction: column;
        padding: 20px;
        gap: 12px;
    }
    
    .notice-title {
        font-size: 16px;
    }
    
    .notice-desc {
        font-size: 13px;
    }
    
    /* 드롭다운 메뉴 (모바일에서 숨김) */
    .nav-dropdown .dropdown-content {
        display: none;
    }
}
