/* ==========================================
   wooticket - Main Stylesheet
   ========================================== */

/* CSS 변수 */
:root {
    --primary: #5b3fd4;
    --primary-dark: #4530b0;
    --primary-light: #7b63e6;
    --secondary: #ff6b35;
    --accent: #ffd700;
    --success: #00c851;
    --warning: #ff8800;
    --danger: #ff4444;
    --bg-light: #f8f7ff;
    --bg-white: #ffffff;
    --text-dark: #1a1a2e;
    --text-mid: #4a4a6a;
    --text-light: #8888aa;
    --border: #e8e4f8;
    --shadow-sm: 0 2px 8px rgba(91, 63, 212, 0.08);
    --shadow-md: 0 4px 20px rgba(91, 63, 212, 0.14);
    --shadow-lg: 0 10px 40px rgba(91, 63, 212, 0.18);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --header-height: 70px;
    --transition: 0.25s ease;
}

/* 리셋 & 기본 */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Noto Sans KR', sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; background: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   TOP NOTICE BAR
   ========================================== */
.top-notice-bar {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    text-align: center;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 500;
    overflow: hidden;
}
.top-notice-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.notice-icon { font-size: 14px; }

/* ==========================================
   HEADER
   ========================================== */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 2px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
    height: var(--header-height);
}
.main-header.scrolled {
    box-shadow: var(--shadow-md);
}
.header-inner {
    display: flex;
    align-items: center;
    height: var(--header-height);
    gap: 24px;
}

/* 로고 */
.logo-wrap { flex-shrink: 0; }
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}
.logo .logo-icon { font-size: 26px; }
.logo .logo-text strong { color: var(--secondary); }

/* 메인 네비 */
.main-nav { flex: 1; }
.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-item { position: relative; }
.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.nav-link:hover,
.nav-item.active .nav-link {
    color: var(--primary);
    background: var(--bg-light);
}
.nav-link i { font-size: 11px; }

/* 드롭다운 */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 200px;
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all var(--transition);
    z-index: 200;
}
.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    font-size: 13.5px;
    color: var(--text-mid);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary);
}
.dropdown-menu a img {
    width: 18px;
    height: 18px;
    border-radius: 3px;
}

/* 헤더 우측 */
.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.tel-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--primary);
    background: var(--bg-light);
    padding: 7px 14px;
    border-radius: 30px;
    border: 1.5px solid var(--border);
    transition: all var(--transition);
}
.tel-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.btn-exchange-header {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: 30px;
    transition: all var(--transition);
    box-shadow: 0 3px 12px rgba(91, 63, 212, 0.35);
}
.btn-exchange-header:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 18px rgba(91, 63, 212, 0.45);
}

/* 햄버거 */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    padding: 4px;
    border-radius: 8px;
    transition: background var(--transition);
    margin-left: auto;
}
.hamburger span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--primary);
    border-radius: 2px;
    transition: all var(--transition);
}
.hamburger:hover { background: var(--bg-light); }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* 모바일 오버레이 & 네비 */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1100;
}
.mobile-overlay.show { display: block; }
.mobile-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: #fff;
    z-index: 1200;
    padding: 20px;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
}
.mobile-nav.open { right: 0; }
.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border);
}
.mobile-nav-header .logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}
.mobile-nav-header .logo-text strong { color: var(--secondary); }
.close-btn { font-size: 20px; color: var(--text-mid); padding: 4px; }
.mobile-nav-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border);
    transition: color var(--transition);
}
.mobile-nav-list li a:hover { color: var(--primary); }
.mobile-nav-list li a i { width: 20px; color: var(--primary); }
.mobile-nav-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 2px solid var(--border);
}
.mobile-tel {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}
.mobile-hours { font-size: 13px; color: var(--text-light); }

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #1a0533 0%, #3d1a8a 45%, #5b3fd4 75%, #7b63e6 100%);
    padding: 80px 0 0;
    overflow: hidden;
}
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
}
.shape-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, #ff6b35, transparent);
    top: -150px; right: -100px;
    animation: floatShape 8s ease-in-out infinite;
}
.shape-2 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, #ffd700, transparent);
    bottom: 50px; left: -50px;
    animation: floatShape 10s ease-in-out infinite reverse;
}
.shape-3 {
    width: 200px; height: 200px;
    background: radial-gradient(circle, #00c851, transparent);
    top: 50%; left: 40%;
    animation: floatShape 12s ease-in-out infinite;
}
@keyframes floatShape {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-bottom: 60px;
    position: relative;
    z-index: 2;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}
.hero-title {
    font-size: 46px;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -1px;
}
.hero-title strong { color: var(--accent); }
.hero-sub {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 10px;
    font-weight: 500;
}
.hero-sub .highlight {
    color: var(--accent);
    font-weight: 700;
}
.hero-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 32px;
}
.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 50px;
    transition: all var(--transition);
    box-shadow: 0 4px 18px rgba(255,107,53,0.4);
}
.btn-primary-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,107,53,0.5);
    background: #e05a2a;
}
.btn-secondary-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(10px);
    transition: all var(--transition);
}
.btn-secondary-hero:hover {
    background: rgba(255,255,255,0.25);
}

.hero-stats {
    display: flex;
    gap: 24px;
    align-items: center;
}
.stat-item { text-align: center; }
.stat-num {
    display: block;
    font-size: 26px;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 4px;
}
.stat-label { font-size: 12px; color: rgba(255,255,255,0.7); }
.stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.2);
}

/* 히어로 카드 스택 */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-card-stack {
    position: relative;
    width: 300px;
    height: 340px;
}
.gift-card {
    position: absolute;
    width: 240px;
    height: 140px;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform var(--transition);
}
.card-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    top: 0; left: 0;
    transform: rotate(-8deg);
    z-index: 3;
}
.card-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    top: 80px; left: 40px;
    transform: rotate(-2deg);
    z-index: 4;
}
.card-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    top: 160px; left: 20px;
    transform: rotate(4deg);
    z-index: 5;
}
.hero-card-stack:hover .card-1 { transform: rotate(-12deg) translateY(-10px); }
.hero-card-stack:hover .card-2 { transform: rotate(-4deg) translateY(-5px); }
.hero-card-stack:hover .card-3 { transform: rotate(6deg) translateY(0); }
.card-brand { font-size: 13px; color: rgba(255,255,255,0.8); font-weight: 600; }
.card-amount { font-size: 22px; font-weight: 900; color: #fff; }
.card-rate { font-size: 12px; color: rgba(255,255,255,0.8); }
.card-rate strong { color: var(--accent); font-size: 16px; }

.floating-badge {
    position: absolute;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
    animation: floatBadge 3s ease-in-out infinite;
}
.badge-fast {
    background: var(--accent);
    color: #333;
    bottom: 20px;
    right: -10px;
}
.badge-safe {
    background: var(--success);
    color: #fff;
    top: 20px;
    right: -20px;
    animation-delay: 1.5s;
}
@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* 실시간 매입가 티커 */
.ticker-wrap {
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 46px;
}
.ticker-label {
    background: var(--secondary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 0 18px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
    z-index: 2;
}
.ticker-content {
    flex: 1;
    overflow: hidden;
    position: relative;
}
.ticker-track {
    display: flex;
    align-items: center;
    gap: 0;
    animation: tickerScroll 30s linear infinite;
    white-space: nowrap;
}
.ticker-item {
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    padding: 0 16px;
}
.ticker-item strong { color: var(--accent); font-size: 14px; }
.ticker-sep { color: rgba(255,255,255,0.3); font-size: 18px; }
@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================
   PROCESS SECTION
   ========================================== */
.process-section {
    padding: 80px 0;
    background: var(--bg-light);
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-tag {
    display: inline-block;
    background: rgba(91,63,212,0.1);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 30px;
    margin-bottom: 12px;
    border: 1.5px solid rgba(91,63,212,0.2);
}
.section-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}
.section-desc {
    font-size: 15px;
    color: var(--text-light);
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
    margin-bottom: 40px;
}
.process-step {
    flex: 1;
    max-width: 200px;
    text-align: center;
    padding: 30px 20px;
}
.step-icon-wrap {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
}
.step-number {
    position: absolute;
    top: -4px;
    left: -4px;
    background: var(--secondary);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    padding: 3px 7px;
    border-radius: 10px;
    z-index: 2;
}
.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition);
}
.process-step:hover .step-icon {
    transform: translateY(-4px) scale(1.05);
}
.process-step h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.process-step p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}
.process-arrow {
    color: var(--primary-light);
    font-size: 18px;
    padding: 0 10px;
    flex-shrink: 0;
}
.process-cta { text-align: center; }
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    transition: all var(--transition);
    box-shadow: var(--shadow-md);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ==========================================
   EXCHANGE SECTION
   ========================================== */
.exchange-section {
    padding: 80px 0;
    background: var(--bg-white);
}
.exchange-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 30px;
    align-items: start;
}

/* 매입가 패널 */
.rates-panel, .exchange-form-panel {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}
.panel-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.panel-header h3 {
    font-size: 17px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}
.update-time {
    font-size: 12px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 4px;
}
.rates-table { padding: 0 20px; }
.rate-row {
    display: flex;
    align-items: center;
    padding: 13px 8px;
    border-bottom: 1px solid var(--border);
    gap: 8px;
    font-size: 13.5px;
}
.rate-row.header-row {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 8px;
    background: var(--bg-light);
}
.rate-row:last-child { border-bottom: none; }
.ticket-name {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--text-dark);
}
.ticket-color {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.c-culture { background: #667eea; }
.c-happy { background: #f5576c; }
.c-book { background: #4facfe; }
.c-smart { background: #43e97b; }
.c-teen { background: #fa709a; }
.c-google { background: #a18cd1; }
.c-nexon { background: #30cfd0; }
.rate-pct {
    font-size: 16px;
    font-weight: 900;
    color: var(--text-mid);
    min-width: 50px;
    text-align: center;
}
.rate-pct.active { color: var(--primary); }
.status-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
}
.status-on {
    background: rgba(0,200,81,0.12);
    color: var(--success);
}
.status-off {
    background: rgba(255,68,68,0.12);
    color: var(--danger);
}
.rates-notice {
    padding: 14px 20px;
    font-size: 12px;
    color: var(--text-light);
    background: var(--bg-light);
    display: flex;
    align-items: center;
    gap: 6px;
}
.rates-notice i { color: var(--primary); }

/* 교환 신청 폼 */
.exchange-form {
    padding: 24px;
}
.form-group { margin-bottom: 20px; }
.form-label {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.required { color: var(--danger); }
.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--text-dark);
    font-family: 'Noto Sans KR', sans-serif;
    transition: border-color var(--transition), box-shadow var(--transition);
    background: #fff;
    outline: none;
}
.form-textarea { resize: vertical; }
.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(91,63,212,0.12);
}
.form-hint {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.form-hint i { color: var(--primary); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.input-wrap { position: relative; }
.input-with-hint {}
.input-suffix {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    color: var(--text-light);
    pointer-events: none;
}
.result-input {
    background: var(--bg-light) !important;
    color: var(--primary) !important;
    font-weight: 700 !important;
}

/* 상품권 종류 선택 */
.ticket-type-select {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.ticket-radio {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    font-size: 13.5px;
    position: relative;
}
.ticket-radio:hover { border-color: var(--primary-light); background: var(--bg-light); }
.ticket-radio input[type="radio"] { display: none; }
.radio-custom {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all var(--transition);
    position: relative;
}
.ticket-radio input:checked ~ .radio-custom {
    border-color: var(--primary);
    background: var(--primary);
}
.ticket-radio input:checked ~ .radio-custom::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.ticket-radio input:checked ~ span { font-weight: 700; color: var(--primary); }
.rate-badge {
    margin-left: auto;
    background: rgba(91,63,212,0.1);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
}

/* 체크박스 */
.form-check { margin-bottom: 20px; }
.check-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-mid);
    cursor: pointer;
}
.check-label input[type="checkbox"] { display: none; }
.check-custom {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border);
    border-radius: 4px;
    flex-shrink: 0;
    transition: all var(--transition);
    position: relative;
}
.check-label input:checked ~ .check-custom {
    background: var(--primary);
    border-color: var(--primary);
}
.check-label input:checked ~ .check-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}
.check-label a { color: var(--primary); text-decoration: underline; }

/* 제출 버튼 */
.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--secondary), #e05a2a);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    padding: 16px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all var(--transition);
    box-shadow: 0 4px 18px rgba(255,107,53,0.35);
    cursor: pointer;
    border: none;
    font-family: 'Noto Sans KR', sans-serif;
}
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,107,53,0.45);
}
.btn-submit:active { transform: translateY(0); }

/* ==========================================
   PRODUCTS SECTION
   ========================================== */
.products-section {
    padding: 80px 0;
    background: var(--bg-light);
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.product-card {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--border);
    padding: 24px 20px;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    box-shadow: var(--shadow-sm);
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}
.product-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    box-shadow: var(--shadow-md);
}
.product-info h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 3px;
}
.product-info p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 8px;
}
.product-rate {
    font-size: 12px;
    color: var(--text-mid);
}
.rate-highlight {
    font-size: 18px;
    font-weight: 900;
    color: var(--primary);
}
.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 20px;
}
.product-badge.hot {
    background: var(--secondary);
    color: #fff;
}
.product-badge.new {
    background: var(--success);
    color: #fff;
}

/* ==========================================
   INFO SECTION (3단)
   ========================================== */
.info-section {
    padding: 80px 0;
    background: var(--bg-white);
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.info-panel {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.panel-header-simple {
    padding: 18px 20px;
    border-bottom: 1.5px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-light);
}
.panel-header-simple h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}
.panel-header-simple h3 i { color: var(--primary); }
.more-link {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 3px;
    transition: gap var(--transition);
}
.more-link:hover { gap: 6px; }

/* 거래 현황 */
.transaction-list { padding: 10px 0; }
.transaction-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    transition: background var(--transition);
}
.transaction-item:last-child { border-bottom: none; }
.transaction-item:hover { background: var(--bg-light); }
.tx-type {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    flex-shrink: 0;
    white-space: nowrap;
}
.tx-type.culture { background: rgba(102,126,234,0.12); color: #667eea; }
.tx-type.happy { background: rgba(245,87,108,0.12); color: #f5576c; }
.tx-type.book { background: rgba(79,172,254,0.12); color: #4facfe; }
.tx-type.smart { background: rgba(67,233,123,0.12); color: #43e97b; }
.tx-amount {
    flex: 1;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 13px;
}
.tx-status {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    flex-shrink: 0;
}
.tx-status.complete { background: rgba(0,200,81,0.1); color: var(--success); }
.tx-status.processing { background: rgba(255,136,0,0.1); color: var(--warning); }
.tx-time { font-size: 11px; color: var(--text-light); flex-shrink: 0; }

/* 공지사항 */
.notice-list { padding: 10px 0; }
.notice-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
}
.notice-item:last-child { border-bottom: none; }
.notice-item:hover { background: var(--bg-light); }
.notice-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    background: rgba(91,63,212,0.1);
    color: var(--primary);
    flex-shrink: 0;
    white-space: nowrap;
}
.notice-badge.new { background: var(--secondary); color: #fff; }
.notice-item a {
    flex: 1;
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color var(--transition);
}
.notice-item a:hover { color: var(--primary); }
.notice-date { font-size: 11px; color: var(--text-light); flex-shrink: 0; }

/* FAQ */
.faq-list { padding: 8px 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    cursor: pointer;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-dark);
    transition: background var(--transition);
    gap: 8px;
}
.faq-question:hover { background: var(--bg-light); color: var(--primary); }
.faq-question i {
    font-size: 12px;
    color: var(--text-light);
    flex-shrink: 0;
    transition: transform var(--transition);
}
.faq-question.open i { transform: rotate(180deg); color: var(--primary); }
.faq-answer {
    display: none;
    padding: 0 20px 14px;
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.7;
    background: var(--bg-light);
}
.faq-answer.open { display: block; }

/* ==========================================
   FEATURES SECTION
   ========================================== */
.features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}
.features-section .section-tag {
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
    border-color: rgba(255,255,255,0.2);
}
.features-section .section-title {
    color: #fff;
}
.features-section .section-desc { color: rgba(255,255,255,0.7); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    text-align: center;
    transition: all var(--transition);
}
.feature-card:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-4px);
}
.feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.2);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--accent);
    margin: 0 auto 18px;
}
.feature-card h4 {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}
.feature-card p {
    font-size: 13.5px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
}

/* ==========================================
   CS BANNER
   ========================================== */
.cs-banner {
    background: #fff;
    border-top: 2px solid var(--border);
    border-bottom: 2px solid var(--border);
    padding: 50px 0;
}
.cs-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.cs-text { flex: 1; min-width: 200px; }
.cs-text h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.cs-text p { font-size: 14px; color: var(--text-light); }
.cs-contact {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.cs-phone, .cs-email {
    display: flex;
    align-items: center;
    gap: 14px;
}
.cs-phone i, .cs-email i {
    width: 46px;
    height: 46px;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.cs-num {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
}
.cs-hours { font-size: 12px; color: var(--text-light); display: block; }
.btn-cs {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 50px;
    transition: all var(--transition);
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}
.btn-cs:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ==========================================
   FOOTER
   ========================================== */
.main-footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.8);
}
.footer-top {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}
.footer-logo .logo-icon { font-size: 24px; }
.footer-logo strong { color: var(--secondary); }
.footer-desc {
    font-size: 13.5px;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    margin-bottom: 20px;
}
.footer-sns {
    display: flex;
    gap: 10px;
}
.sns-btn {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    transition: all var(--transition);
}
.sns-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}
.footer-links h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}
.footer-links ul li {
    margin-bottom: 10px;
}
.footer-links ul li a {
    font-size: 13.5px;
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
}
.footer-links ul li a:hover { color: var(--primary-light); }

.footer-bottom {
    padding: 28px 0;
}
.company-info {
    margin-bottom: 14px;
}
.company-info p {
    font-size: 12.5px;
    color: rgba(255,255,255,0.45);
    line-height: 2;
}
.company-info strong {
    color: rgba(255,255,255,0.65);
}
.footer-copy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-copy p {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
}
.footer-policy-links {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,0.35);
}
.footer-policy-links a {
    color: rgba(255,255,255,0.45);
    transition: color var(--transition);
}
.footer-policy-links a:hover { color: #fff; }

/* ==========================================
   FLOATING BUTTONS
   ========================================== */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 900;
}
.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: all var(--transition);
    cursor: pointer;
    color: #fff;
    border: none;
}
.float-btn:hover {
    transform: translateY(-2px) scale(1.08);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
.float-tel { background: #25d366; }
.float-exchange { background: var(--secondary); }
.float-top {
    background: var(--primary);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
}
.float-top.visible {
    opacity: 1;
    pointer-events: auto;
}

/* ==========================================
   TOAST NOTIFICATION
   ========================================== */
.toast {
    position: fixed;
    top: 80px;
    right: 20px;
    background: var(--text-dark);
    color: #fff;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    z-index: 2000;
    transform: translateX(110%);
    transition: transform 0.3s ease;
    max-width: 320px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.toast.show { transform: translateX(0); }
.toast.success { background: var(--success); }
.toast.error { background: var(--danger); }
.toast.warning { background: var(--warning); }

/* ==========================================
   MODAL (신청 완료)
   ========================================== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}
.modal-overlay.show { display: flex; }
.modal-box {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: modalIn 0.3s ease;
}
@keyframes modalIn {
    from { transform: scale(0.9) translateY(20px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}
.modal-icon {
    font-size: 56px;
    margin-bottom: 16px;
    color: var(--success);
}
.modal-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.modal-desc {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 24px;
}
.modal-close {
    background: var(--primary);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    font-family: 'Noto Sans KR', sans-serif;
    transition: all var(--transition);
}
.modal-close:hover { background: var(--primary-dark); }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .exchange-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .process-steps { flex-wrap: wrap; gap: 10px; }
    .process-arrow { display: none; }
    .process-step { flex: 0 0 calc(50% - 10px); max-width: none; }
}

@media (max-width: 768px) {
    .main-nav, .header-right { display: none; }
    .hamburger { display: flex; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { display: none; }
    .hero-title { font-size: 32px; }
    .hero-buttons { flex-direction: column; }
    .btn-primary-hero, .btn-secondary-hero { justify-content: center; }
    .hero-stats { justify-content: center; }
    .info-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .process-step { flex: 0 0 calc(50% - 10px); }
    .cs-inner { flex-direction: column; align-items: stretch; }
    .cs-contact { flex-direction: column; gap: 16px; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .exchange-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 24px; }
    .floating-buttons { right: 12px; bottom: 20px; }
    .float-btn { width: 44px; height: 44px; font-size: 16px; }
}

@media (max-width: 480px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 26px; }
    .hero-sub { font-size: 15px; }
    .process-step { flex: 0 0 100%; }
    .top-notice-bar .notice-text { font-size: 11px; }
    .footer-copy { flex-direction: column; align-items: flex-start; }
}
