/* =============================================
   WeNowMeet - 프리미엄 결혼정보 서비스
   메인 스타일시트
   ============================================= */

/* 기본 변수 */
:root {
    --primary: #C5456A;
    --primary-dark: #9E2D50;
    --primary-light: #E8758F;
    --secondary: #8B4513;
    --gold: #C8973F;
    --gold-light: #E8C07D;
    --dark: #1A1A2E;
    --gray-900: #2D2D3A;
    --gray-700: #4A4A5A;
    --gray-500: #7A7A8C;
    --gray-300: #C8C8D8;
    --gray-100: #F5F5FA;
    --white: #FFFFFF;
    --cream: #FDF8F5;
    --rose-light: #FFF0F3;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.16);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: 0.3s ease;
}

/* 리셋 & 기본 스타일 */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Noto Sans KR', -apple-system, sans-serif;
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* =============================================
   버튼
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(197, 69, 106, 0.35);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(197, 69, 106, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border-color: var(--primary);
}
.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline-dark {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline-dark:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    font-weight: 800;
}
.btn-white:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
}

/* =============================================
   네비게이션
   ============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 14px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -1px;
}

.logo-we { color: var(--white); }
.logo-now { color: var(--gold-light); }
.logo-meet { color: var(--white); }

.navbar.scrolled .logo-we { color: var(--primary); }
.navbar.scrolled .logo-now { color: var(--gold); }
.navbar.scrolled .logo-meet { color: var(--primary-dark); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-menu a {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    font-weight: 500;
    transition: color var(--transition);
}

.nav-menu a:hover { color: var(--white); }

.navbar.scrolled .nav-menu a {
    color: var(--gray-700);
}
.navbar.scrolled .nav-menu a:hover { color: var(--primary); }

.nav-btn-login {
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.5);
}

.navbar.scrolled .nav-btn-login {
    border-color: var(--gray-300);
}

.nav-btn-register {
    padding: 10px 22px;
    border-radius: 50px;
    background: var(--primary) !important;
    color: var(--white) !important;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(197, 69, 106, 0.3);
}
.nav-btn-register:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-1px);
}

.hamburger { display: none; }

/* =============================================
   히어로 섹션
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1A0A12 0%, #3D1030 30%, #6B1E45 60%, #9E2D50 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-particles span {
    position: absolute;
    display: block;
    border-radius: 50%;
    background: rgba(197, 69, 106, 0.2);
    animation: float 8s infinite;
}

.hero-particles span:nth-child(1) { width: 400px; height: 400px; top: -100px; right: -100px; animation-delay: 0s; }
.hero-particles span:nth-child(2) { width: 200px; height: 200px; bottom: 20%; left: 5%; animation-delay: 2s; background: rgba(200, 151, 63, 0.15); }
.hero-particles span:nth-child(3) { width: 300px; height: 300px; top: 30%; right: 10%; animation-delay: 4s; }
.hero-particles span:nth-child(4) { width: 150px; height: 150px; bottom: 10%; right: 25%; animation-delay: 1s; background: rgba(200, 151, 63, 0.1); }
.hero-particles span:nth-child(5) { width: 500px; height: 500px; top: 50%; left: -150px; animation-delay: 3s; }

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-30px) scale(1.05); opacity: 0.3; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 24px 80px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--gold-light);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}

.hero-title {
    font-size: clamp(36px, 6vw, 68px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--gold-light), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(15px, 2vw, 20px);
    color: rgba(255,255,255,0.75);
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    font-weight: 500;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid rgba(255,255,255,0.4);
    border-bottom: 2px solid rgba(255,255,255,0.4);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.4; }
    50% { transform: rotate(45deg) translateY(8px); opacity: 1; }
}

/* =============================================
   통계 섹션 (이벤트 스타일)
   ============================================= */
.stats-section {
    background: linear-gradient(135deg, #1A1A2E 0%, #2D1B3D 40%, #1A1A2E 100%);
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(200, 151, 63, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(197, 69, 106, 0.08) 0%, transparent 50%);
    animation: statsBgPulse 6s ease-in-out infinite;
}

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

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    position: relative;
    z-index: 1;
}

.stat-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 24px 40px;
    position: relative;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
}

.stat-number {
    font-size: clamp(30px, 4.5vw, 48px);
    font-weight: 900;
    background: linear-gradient(135deg, #FFD700, #E8C07D, #FFD700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 3s ease-in-out infinite;
    letter-spacing: -1px;
    margin-bottom: 10px;
    text-shadow: none;
    filter: drop-shadow(0 0 8px rgba(232, 192, 125, 0.3));
}

.stat-number.stat-text {
    font-size: clamp(24px, 3.5vw, 38px);
    letter-spacing: 2px;
}

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

.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.stat-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 6px;
    letter-spacing: 0.5px;
}

.stat-warn {
    font-size: 9px;
    color: rgba(255, 160, 160, 0.5);
    margin-top: 4px;
    letter-spacing: 0.3px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(232, 192, 125, 0.3), transparent);
}

.stats-event-badge {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.stats-event-badge {
    display: inline-block;
    width: 100%;
    font-size: 13px;
    font-weight: 700;
    color: #FFD700;
    letter-spacing: 3px;
    padding: 8px 24px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    background: rgba(255, 215, 0, 0.05);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { border-color: rgba(255, 215, 0, 0.3); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
    50% { border-color: rgba(255, 215, 0, 0.6); box-shadow: 0 0 20px rgba(255, 215, 0, 0.1); }
}

/* =============================================
   섹션 공통
   ============================================= */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: var(--rose-light);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    line-height: 1.25;
}

.section-desc {
    font-size: 16px;
    color: var(--gray-500);
    line-height: 1.8;
    font-weight: 300;
}

/* =============================================
   사주/궁합/연애운 배너
   ============================================= */
.fortune-banner {
    background: linear-gradient(135deg, #2c1654 0%, #4a1259 50%, #1a0a3d 100%);
    position: relative;
    overflow: hidden;
}

.fortune-banner::before {
    content: '✦ ✧ ✦ ✧ ✦ ✧ ✦ ✧ ✦ ✧ ✦ ✧ ✦ ✧ ✦';
    position: absolute;
    top: 6px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 8px;
    color: rgba(255,255,255,0.15);
    letter-spacing: 8px;
    pointer-events: none;
}

.fortune-banner-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: background 0.3s ease;
}

.fortune-banner-link:hover {
    background: rgba(255,255,255,0.06);
}

.fortune-banner-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 0;
}

.fortune-banner-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
}

.fortune-banner-icon {
    font-size: 32px;
    filter: drop-shadow(0 0 8px rgba(200,150,255,0.6));
    flex-shrink: 0;
}

.fortune-banner-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.fortune-banner-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.3px;
}

.fortune-banner-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

.fortune-banner-items {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.fortune-banner-items span {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: -0.2px;
    white-space: nowrap;
}

.fortune-banner-cta {
    flex-shrink: 0;
    background: linear-gradient(135deg, #c084fc, #a855f7);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 24px;
    letter-spacing: -0.2px;
    box-shadow: 0 4px 14px rgba(168,85,247,0.4);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    white-space: nowrap;
}

.fortune-banner-link:hover .fortune-banner-cta {
    box-shadow: 0 6px 20px rgba(168,85,247,0.6);
    transform: translateX(3px);
}

@media (min-width: 769px) {
    .fortune-banner-inner {
        justify-content: space-between;
        flex-wrap: nowrap;
    }
    .fortune-banner-left {
        flex: none;
        max-width: 55%;
    }
}

@media (max-width: 768px) {
    .fortune-banner-inner {
        flex-wrap: wrap;
        gap: 14px;
        padding: 16px 0;
    }
    .fortune-banner-left {
        flex: 1 1 100%;
    }
    .fortune-banner-items {
        flex: 1;
    }
    .fortune-banner-items span {
        font-size: 12px;
        padding: 5px 10px;
    }
}

/* =============================================
   서비스 섹션
   ============================================= */
.services-section {
    padding: 100px 0;
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 32px;
    position: relative;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-color: transparent;
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured li { color: var(--white); }

.service-badge-card {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--gold);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 1px;
}

.service-icon {
    font-size: 36px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.service-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-features li {
    font-size: 13px;
    color: var(--gray-700);
    padding-left: 16px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.service-card.featured .service-features li::before { color: var(--gold-light); }

.service-note {
    font-size: 11px;
    color: var(--gray-500);
    margin-top: 12px;
    line-height: 1.6;
    letter-spacing: -0.2px;
}

.service-warn {
    font-size: 10px;
    color: #c0392b;
    margin-top: 8px;
    line-height: 1.5;
    letter-spacing: -0.2px;
    opacity: 0.7;
}

/* =============================================
   신원 검증 뱃지 시스템
   ============================================= */
.verify-card {
    border-top: 3px solid #1565C0;
}

.verify-badges-showcase {
    display: flex;
    gap: 14px;
    margin: 20px 0 8px;
}

.verify-badge-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.verify-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    padding: 16px 12px;
    border-radius: 14px;
    width: 100%;
    cursor: default;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.verify-badge:hover {
    transform: translateY(-3px);
}

.vbadge-work {
    background: #fff;
    color: #1565C0;
    border: 2px solid rgba(21, 101, 192, 0.2);
    box-shadow: 0 4px 14px rgba(21, 101, 192, 0.15);
}

.vbadge-work:hover {
    border-color: rgba(21, 101, 192, 0.4);
    box-shadow: 0 8px 20px rgba(21, 101, 192, 0.25);
}

.vbadge-heart {
    background: #fff;
    color: #E53935;
    border: 2px solid rgba(229, 57, 53, 0.2);
    box-shadow: 0 4px 14px rgba(229, 57, 53, 0.15);
}

.vbadge-heart:hover {
    border-color: rgba(229, 57, 53, 0.4);
    box-shadow: 0 8px 20px rgba(229, 57, 53, 0.25);
}

.vbadge-icon {
    width: 20px;
    height: 20px;
    display: block;
    flex-shrink: 0;
}

.vbadge-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--dark);
}

.vbadge-desc {
    font-size: 10px;
    color: var(--gray-500);
    line-height: 1.5;
    margin: 0;
}

/* =============================================
   이용 방법 섹션
   ============================================= */
.how-section {
    padding: 100px 0;
    background: var(--white);
}

.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    padding: 32px 16px;
    position: relative;
}

.step-number {
    font-size: 60px;
    font-weight: 900;
    color: rgba(197, 69, 106, 0.08);
    line-height: 1;
    margin-bottom: -20px;
    letter-spacing: -2px;
}

.step-content {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.step-content:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--primary-light);
}

.step-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.step-content h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.step-content p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.7;
}

.step-arrow {
    display: flex;
    align-items: center;
    padding-top: 60px;
    color: var(--primary-light);
    font-size: 24px;
    font-weight: 300;
}

/* =============================================
   성공 사례 섹션
   ============================================= */
.stories-section {
    padding: 100px 0;
    background: var(--gray-100);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.story-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid transparent;
    position: relative;
}

.story-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.story-card.featured-story {
    background: linear-gradient(160deg, #FFF5F8, #FFF0F3);
    border-color: rgba(197, 69, 106, 0.15);
}

.story-heart {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 28px;
}

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

.couple-avatar {
    font-size: 36px;
    width: 56px;
    height: 56px;
    background: var(--rose-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.couple-info strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
}

.couple-info span {
    font-size: 12px;
    color: var(--primary);
    font-weight: 500;
}

.story-rating {
    font-size: 14px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.story-card p {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.story-tag {
    display: inline-block;
    background: var(--rose-light);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
}

.stories-more {
    text-align: center;
}

/* =============================================
   요금제 섹션
   ============================================= */
.pricing-section {
    padding: 100px 0;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px 20px;
    border: 2px solid var(--gray-100);
    text-align: center;
    transition: all var(--transition);
    position: relative;
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.pricing-card.recommended {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(197, 69, 106, 0.08);
    transform: scale(1.03);
}

.pricing-card.recommended:hover {
    transform: scale(1.03) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 20px;
    border-radius: 50px;
    letter-spacing: 1px;
    white-space: nowrap;
}

.pricing-tier {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

.pricing-price {
    margin-bottom: 16px;
}

.pricing-event-banner {
    text-align: center;
    background: linear-gradient(135deg, #fff0f4 0%, #fff8e8 50%, #fff0f4 100%);
    border: none;
    border-radius: 24px;
    padding: 40px 48px 36px;
    margin-bottom: 36px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(232, 100, 140, 0.18);
}

.pricing-event-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary), #e8758f, #FFB347, #e8758f, var(--primary));
    background-size: 200% 100%;
}

.event-badge {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    padding: 7px 22px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    box-shadow: 0 4px 16px rgba(232, 100, 140, 0.35);
}

.event-title {
    font-size: clamp(42px, 7vw, 64px);
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 4px;
    letter-spacing: -2px;
    line-height: 1.1;
}

.event-free-highlight {
    color: var(--primary);
}

.event-plus-line {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 700;
    color: var(--dark);
    opacity: 0.75;
    margin-bottom: 28px;
}

.event-plus {
    color: var(--primary);
    font-weight: 900;
    margin-right: 4px;
}

.event-gender-row {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.event-gender-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 32px;
    border-radius: 16px;
    min-width: 180px;
}

.event-gender-pill--male {
    background: rgba(139, 124, 248, 0.12);
    border: 2px solid rgba(139, 124, 248, 0.3);
}

.event-gender-pill--female {
    background: rgba(232, 100, 140, 0.12);
    border: 2px solid rgba(232, 100, 140, 0.3);
}

.event-gender-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
}

.event-gender-discount {
    font-size: 20px;
    font-weight: 900;
    color: #8B7CF8;
}

.event-gender-pill--female .event-gender-discount {
    color: var(--primary);
}

.price-original {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.price-amount {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -1px;
}

.price-unit {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 400;
}

.pricing-features {
    text-align: left;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.pricing-features li {
    font-size: 13px;
    color: var(--gray-700);
    padding-left: 4px;
}

.pricing-features li.disabled { color: var(--gray-300); }

.pricing-note {
    text-align: center;
    font-size: 13px;
    color: var(--gray-500);
}

.pricing-plans {
    margin-bottom: 28px;
}

.pricing-gender-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    padding: 11px 20px;
    border-radius: 12px;
    background: var(--gray-100);
}

.pricing-gender-header--male {
    border-left: 4px solid #8B7CF8;
}

.pricing-gender-header--female {
    border-left: 4px solid var(--primary);
}

.gender-header-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark);
}

.gender-header-tag {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-500);
    margin-left: auto;
}


.price-free {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.pricing-discount-line {
    font-size: 12px;
    color: var(--gray-500);
    margin-top: -10px;
    margin-bottom: 16px;
}

/* =============================================
   CTA 섹션
   ============================================= */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #E8758F 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cta-content p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 300;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================================
   푸터
   ============================================= */
.footer {
    background: var(--dark);
    padding: 72px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .footer-logo {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: background var(--transition);
}

.footer-social a:hover { background: var(--primary); }

.footer-links h4 {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links a {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 10px;
    transition: color var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-contact h4 {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-phone {
    font-size: 24px;
    font-weight: 900;
    color: var(--gold-light);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.footer-hours {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    line-height: 1.8;
    margin-bottom: 16px;
}

.footer-kakao {
    display: inline-block;
    background: #FEE500;
    color: #3A1D1D;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 50px;
    transition: opacity var(--transition);
}

.footer-kakao:hover { opacity: 0.85; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255,255,255,0.25);
}

/* =============================================
   애니메이션
   ============================================= */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   반응형
   ============================================= */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .footer-brand { grid-column: 1 / -1; }
    .footer-contact { grid-column: 1 / -1; }
    .step-arrow { display: none; }
    .steps-container { gap: 16px; }
}

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; }
    .hamburger span { width: 24px; height: 2px; background: var(--white); transition: all 0.3s; border-radius: 2px; }
    .navbar.scrolled .hamburger span { background: var(--gray-900); }

    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-contact { grid-column: 1 / -1; }

    .stats-grid { flex-direction: column; }
    .stat-divider { width: 80px; height: 1px; margin: 0 auto; background: linear-gradient(to right, transparent, rgba(232, 192, 125, 0.3), transparent); }
    .stats-event-badge { font-size: 11px; letter-spacing: 2px; }

    .hero-actions { flex-direction: column; align-items: center; }
    .hero-trust { flex-direction: column; align-items: center; gap: 12px; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .pricing-card.recommended { transform: scale(1); }
    .pricing-card.recommended:hover { transform: translateY(-8px); }
}

/* =============================================
   모바일 메뉴
   ============================================= */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

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

.mobile-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.mobile-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100%;
    background: linear-gradient(180deg, #1A1A2E 0%, #16213E 100%);
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    animation: slideIn 0.3s ease forwards;
}

@keyframes slideIn {
    to { transform: translateX(0); }
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-header .logo {
    font-size: 18px;
    text-decoration: none;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 28px;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    transition: color 0.2s;
}

.mobile-menu-close:hover {
    color: #fff;
}

.mobile-menu-nav {
    flex: 1;
    padding: 16px 0;
    overflow-y: auto;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.mobile-menu-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-left-color: var(--gold-light);
}

.mobile-menu-icon {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.mobile-menu-actions {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-btn {
    display: block;
    text-align: center;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.mobile-menu-btn-outline {
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
}

.mobile-menu-btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.mobile-menu-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
}

.mobile-menu-btn-primary:hover {
    opacity: 0.9;
}
