/* ========================================
   SUBSCRIBE COMMON CSS
   구독 페이지 공통 스타일
   subscribe.php, subscribe_physical.php,
   subscribe_doctor.php, subscribe_assistant.php,
   subscribe_occup.php
   에서 공통으로 사용되는 CSS
   ======================================== */

/* ======================================== MYMERCI PREMIUM - ULTIMATE LANDING ======================================== */
:root { --primary: #0066FF; --primary-light: #E8F2FF; --primary-dark: #0052CC; --accent: #FF3B30; --success: #34C759; --warning: #FFCC00; --bg: #F5F7FA; --surface: #FFFFFF; --text-dark: #1A1A1A; --text-gray: #666666; --text-light: #999999; --shadow-sm: 0 4px 12px rgba(0,0,0,0.08); --shadow-md: 0 6px 15px rgba(0,0,0,0.12); --shadow-lg: 0 5px 15px rgba(0,102,255,0.2); --radius: 24px; }
.subscribe-page { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text-dark); line-height: 1.6; padding-bottom: 110px; overflow-x: hidden; }
.section { padding: 100px 0; }
.sticky-bar { position: fixed; bottom: 0; left: 0; right: 0; background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: 14px 16px calc(10px + env(safe-area-inset-bottom)); box-shadow: 0 -4px 30px rgba(0,0,0,0.1); z-index: 9990; border-top: 1px solid rgba(0,0,0,0.06); }
.legal-notice { font-size: 13px; color: #999; line-height: 1.6; text-align: center; margin: 12px auto 0; max-width: 800px; word-break: keep-all; display: block; padding: 10px; }
.cta-group { display: flex; flex-direction: column; align-items: center; gap: 12px; max-width: 600px; margin: 0 auto; }
.cta-price-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: 100%; padding: 4px 0; }
.cta-price-info { text-align: left; flex-shrink: 0; display: flex; flex-direction: column; justify-content: center; }
.cta-plan-name { font-size: 11px; color: var(--primary); font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; opacity: 0.8; word-break: keep-all; }
.cta-plan-price { font-family: 'Outfit', sans-serif; font-size: 28px; font-weight: 800; color: var(--text-dark); letter-spacing: -1px; line-height: 1; }
.cta-plan-price .unit { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; color: #999; margin-left: 2px; }
.cta-btn-small { min-width: 180px; padding: 18px 36px; border-radius: 16px; background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%); color: #fff; border: none; font-size: 18px; font-weight: 800; box-shadow: 0 10px 25px rgba(0,102,255,0.3); cursor: pointer; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); display: flex; align-items: center; justify-content: center; gap: 10px; white-space: nowrap; position: relative; overflow: hidden; }
.cta-btn-small:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 15px 35px rgba(0,102,255,0.4); }
.cta-btn-small:active { transform: scale(0.97); }
.cta-btn-small i { font-size: 16px; transition: transform 0.3s; }
.cta-btn-small:hover i { transform: translateX(4px); }
.cta-links { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px; font-size: 13px; font-weight: 500; color: #aaa; }
.cta-links a { color: inherit; text-decoration: none; transition: 0.2s; border-bottom: 1px solid transparent; }
.cta-links a:hover { color: var(--primary); border-bottom-color: var(--primary); }
.cta-restore { color: var(--primary) !important; font-weight: 700; cursor: pointer; }
.cta-divider { width: 1px; height: 10px; background: #eee; }
.cta-trust { color: #34C759; font-weight: 700; display: flex; align-items: center; gap: 4px; font-size: 13px; }
.sub-container { max-width: 960px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.cta-btn-small { animation: btnPulse 3s infinite; }


/* Header & Ticker */
.ticker-bar { position: fixed; top: 0; left: 0; right: 0; background: #000; color: #fff; padding: 12px 0; font-size: 14px; font-weight: 600; z-index: 9999; overflow: hidden; white-space: nowrap; }
.ticker-content { display: inline-block; animation: tickerScroll 45s linear infinite; }
.ticker-item { padding: 0 50px; display: inline; }
.ticker-blue { color: var(--primary); }

/* Hero */
.hero { text-align: center; padding: 160px 0 120px; background: radial-gradient(circle at top, #E8F2FF 0%, transparent 60%); }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: #fff; padding: 10px 20px; border-radius: 50px; font-weight: 800; color: var(--primary); box-shadow: var(--shadow-sm); margin-bottom: 30px; }
.hero-title { font-family: 'Outfit', sans-serif; font-size: 68px; font-weight: 700; line-height: 1.4; letter-spacing: -1px; margin-bottom: 24px; }
.hero-title span { color: var(--primary); }
.hero-desc { font-size: 22px; color: var(--text-gray); max-width: 650px; margin: 0 auto;}

/* Feature Showcase */
.section-head { text-align: center; margin-bottom: 60px; }
.section-tag { color: var(--primary); font-weight: 800; text-transform: uppercase; font-size: 14px; letter-spacing: 2px; }
.section-h2 { font-size: 42px; font-weight: 700; margin-top: 10px; }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.f-card { background: #fff; border-radius: var(--radius); padding: 48px; box-shadow: var(--shadow-sm); border: 1px solid #f0f0f0; transition: transform 0.3s; position: relative; overflow: hidden; }
.f-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }
.f-icon { width: 72px; height: 72px; border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 36px; color: #fff; margin-bottom: 28px; }
/* f-icon 배경색 변형 (bg- prefix: subscribe.php 등, icon- prefix: subscribe_assistant.php 등) */
.f-icon.bg-indigo, .f-icon.icon-purple { background: #4F46E5; }
.f-icon.bg-emerald, .f-icon.icon-green { background: #10B981; }
.f-icon.bg-amber, .f-icon.icon-orange { background: #F59E0B; }
.f-icon.bg-pink, .f-icon.icon-pink { background: #EC4899; }
.f-title { font-size: 26px; font-weight: 700; margin-bottom: 14px; word-break: keep-all; }
.f-desc { font-size: 16px; color: var(--text-gray); line-height: 1.7; word-break: keep-all; }
.f-list { list-style: none; padding: 0; margin: 24px 0 0; }
.f-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; margin-bottom: 14px; font-weight: 600; word-break: keep-all; }
.f-list li i { color: var(--success); }

/* BEFORE & AFTER Comparison */
/* BEFORE & AFTER Comparison */
.bnf-wrap { background: var(--bg); padding: 100px 0; }
.bnf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
.bnf-card { padding: 40px; border-radius: 30px; position: relative; overflow: hidden; }
.bnf-card.bad { background: #FFF; border: 1px solid #EEE; opacity: 0.9; }
.bnf-card.good { background: #E8F2FF; border: 1px solid var(--primary); box-shadow: var(--shadow-md); transform: scale(1.02); }
.bnf-label { position: absolute; top: 0; left: 0; padding: 8px 20px; font-weight: 800; font-size: 14px; border-radius: 0 0 20px 0; }
.bnf-card.bad .bnf-label { background: #999; color: #fff; }
.bnf-card.good .bnf-label { background: var(--primary); color: #fff; }
.bnf-icon { font-size: 64px; margin-bottom: 20px; }
.bnf-h3 { font-size: 24px; font-weight: 800; margin-bottom: 15px; }
.bnf-list { list-style: none; padding: 0; margin: 0; }
.bnf-list li { display: flex; align-items: flex-start; gap: 13px; margin-bottom: 12px; font-size: 16px; color: #555; }
.bnf-list li i { margin-top: 4px; }

/* App Preview Section */
.app-preview-section { margin-top: 60px; position: relative; }
.app-preview-container { max-width: 960px; margin: 0 auto; position: relative; display: flex; align-items: center; gap: 50px; }
.app-preview-card { background: #fff; border-radius: 20px; box-shadow: 0 5px 10px rgba(0,0,0,0.12), 0 5px 20px rgba(0,0,0,0.08); overflow: hidden; position: relative; flex-shrink: 0; width: 450px; }
.app-preview-card img { width: 100%; height: auto; max-height: 600px; object-fit: cover; object-position: top; display: block; }
.app-preview-placeholder { width: 100%; aspect-ratio: 450/500; background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 16px; color: #adb5bd; }
.app-preview-placeholder i { font-size: 48px; }
.app-preview-placeholder span { font-size: 16px; font-weight: 600; }
.app-preview-badge { position: absolute; top: 20px; left: 20px; background: var(--primary); color: #fff; padding: 8px 16px; border-radius: 50px; font-size: 13px; font-weight: 700; display: flex; align-items: center; gap: 6px; box-shadow: 0 4px 12px rgba(0,102,255,0.3); }
.app-preview-badge i { font-size: 12px; }
.app-preview-features { display: flex; flex-direction: column; gap: 60px; flex: 1; }
.app-preview-feature { display: flex; align-items: flex-start; gap: 16px; }
.app-preview-feature i { color: var(--primary); font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.app-preview-feature-text { display: flex; flex-direction: column; gap: 6px; }
.app-preview-feature-title { font-size: 18px; font-weight: 700; color: var(--text-dark); word-break: keep-all; }
.app-preview-feature-desc { font-size: 15px; color: var(--text-gray); line-height: 1.5; word-break: keep-all; }
.highlighter-blue { background: linear-gradient(to top, rgba(255, 220, 100, 0.35) 45%, transparent 45%); padding: 0 4px; }

/* Success Stories */
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.s-card { background: #fff; border-radius: 24px; padding: 30px; box-shadow: var(--shadow-sm); border: 1px solid #f0f0f0; transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); opacity: 1; transform: translateY(0); display: flex; flex-direction: column; height: 100%; box-sizing: border-box; }
.s-card.s-hidden { opacity: 0 !important; transform: translateY(20px) scale(0.98) !important; pointer-events: none; }
.s-head { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.s-avatar { width: 58px; height: 58px; background: #eee; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 32px; }
.s-info-name { font-weight: 800; font-size: 16px; }
.s-info-badge { font-size: 12px; color: var(--primary); background: #E8F2FF; padding: 2px 8px; border-radius: 4px; font-weight: 700; margin-left: 10px; }
.s-info-meta { font-size: 13px; color: #999; margin-top: 6px; }
.s-body { font-size: 15px; line-height: 1.6; color: #333; margin-bottom: 20px; }
.s-score { background: #FAFAFA; padding: 15px; border-radius: 12px; display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-size: 14px; margin-top: auto; }
.s-score-up { color: var(--accent); font-weight: 900; }
.s-score .fa-arrow-right { color: #4a4a4a !important; }

/* AI Preview */
.ai-box { background: #F8FAFF; border-radius: 16px; padding: 20px; margin-top: 25px; border-left: 5px solid var(--primary); }
.ai-kw { color: var(--primary); font-weight: 700; background: rgba(0,102,255,0.06); padding: 2px 6px; border-radius: 6px; }
.ai-mark { background: #FFF9C4; padding: 2px 6px; border-radius: 6px; font-weight: 700; border-bottom: 2px solid #FBC02D; }

/* Pricing */
.pricing-wrap { background: var(--bg); padding: 120px 0; }
.pricing-wrap-full { margin-top: 0; border-radius: 0; }
.pricing-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.p-card { background: #fff; border-radius: 20px; padding: 50px 40px; border: 3px solid #eee; position: relative; transition: 0.3s; cursor: pointer; }
.p-card.best { border-color: var(--accent); box-shadow: var(--shadow-lg); }
#c-y { padding-top: 70px; }
.p-tag { position: absolute; top: 25px; left: 35px; background: var(--accent); color: #fff; padding: 8px 16px; border-radius: 12px; font-weight: 800; font-size: 15px; }
.p-stock { position: absolute; top: 25px; right: 35px; background: var(--accent); color: #fff; padding: 8px 16px; border-radius: 12px; font-weight: 800; font-size: 14px; }
.p-name { font-size: 28px; font-weight: 900; margin-bottom: 10px; }
.p-price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 5px; margin-bottom: 50px; }
.p-old { font-size: 18px; color: #bbb; text-decoration: line-through; width: 100%; order: 2; }
.p-new { font-size: 60px; font-weight: 700; letter-spacing: -3px; color: var(--primary); order: 1; }
.p-unit { font-size: 20px; color: var(--text-gray); margin-left: 5px; order: 1; }
.p-memo { background: rgba(0,102,255,0.08); color: var(--primary); padding: 10px 20px; border-radius: 12px; font-weight: 700; display: inline-block; margin-bottom: 35px; }
.p-features { list-style: none; padding: 0; margin: 0; }
.p-features li { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 18px; font-size: 17px; font-weight: 500; }
.p-features li i { color: var(--success); font-size: 20px; margin-top: 4px; }
.p-features li b { font-weight: 800; color: var(--primary); }
.p-select { position: absolute; bottom: 40px; right: 40px; width: 44px; height: 44px; border: 3px solid #ddd; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; }
.p-select.active { background: var(--accent); border-color: var(--accent); }

/* Comparison */
.comp-table-box { margin-top: 100px; overflow-x: auto; padding-bottom: 20px; }
.comp-table { width: 100%; border-collapse: separate; border-spacing: 0; min-width: 600px; }
.comp-table th, .comp-table td { padding: 25px; text-align: center; border-bottom: 1px solid #f0f0f0; }
.comp-table th { background: var(--bg); font-weight: 800; font-size: 16px; }
.comp-table td:first-child { text-align: left; font-weight: 700; background: var(--bg); width: 35%; border-bottom: 1px solid #f0f0f0; }

/* Premium Column Continuous Style (Blue Pillar) */
.comp-table th.comp-pro { background-color: #E8F2FF; color: #005eff; border-bottom: 1px solid rgba(0,25,255,0.05) !important;}
.comp-table td.comp-pro { background-color: #E8F2FF; color: #005eff; font-weight: 800; border-bottom: 1px solid rgba(0,25,255,0.05) !important;border-top: none !important;}
.comp-table tbody tr:last-child td.comp-pro { border-bottom: none !important;}

/* Meso Market */
/* Meso Market */
.meso-box { background: #111; border-radius: 40px; padding: 60px; color: #fff; margin: 40px 0 0; display: flex; align-items: center; gap: 50px; position: relative; }
.meso-content { flex: 1; }
.meso-label { background: var(--warning); color: #000; padding: 6px 14px; border-radius: 8px; font-weight: 800; font-size: 14px; margin-bottom: 20px; display: inline-block; }
.meso-h3 { font-size: 36px; font-weight: 900; margin-bottom: 16px; }
.meso-p { font-size: 18px; opacity: 0.8; line-height: 1.7; }
.meso-p b.highlight-blue { color: #00D1FF; opacity: 1; }
.meso-p b.highlight-gold { color: #FFCC00; opacity: 1; }
.meso-visual { width: 220px; height: 220px; background: radial-gradient(circle, #333 0%, #000 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; position: relative; }
.meso-coin { font-size: 120px; animation: float 3s ease-in-out infinite; }
/* Data Proof */
.chart-card { background: #fff; border-radius: 40px; padding: 60px 30px; box-shadow: var(--shadow-sm); text-align: center; margin-bottom: 40px; overflow: hidden; }
.chart-title { font-size: 22px; font-weight: 800; margin-bottom: 50px; line-height: 1.4; color: var(--text-dark); }
.bars { display: flex; justify-content: center; align-items: flex-end; gap: clamp(20px, 8vw, 80px); height: 240px; border-bottom: 3px solid #eee; margin-bottom: 40px; padding-bottom: 10px; }
.bar-column { display: flex; flex-direction: column; align-items: center; gap: 40px; flex: 1; max-width: 120px; }
.bar-name { font-weight: 800; font-size: 15px; color: var(--text-gray); white-space: nowrap; }
.bar-name.active { color: var(--primary); }
.bar-core { width: 100%; border-radius: 16px 16px 0 0; position: relative; min-width: 40px; }
.bar-core.g { background: #eee; height: 60px; }
.bar-core.b { background: linear-gradient(180deg, #00D1FF, #0066FF); height: 160px; box-shadow: 0 15px 40px rgba(0,102,255,0.4); }
.bar-pct { position: absolute; top: -45px; left: 50%; transform: translateX(-50%); font-size: 28px; font-weight: 900; }
.bar-core.g .bar-pct { color: #ccc; }
.bar-core.b .bar-pct { color: var(--primary); }

/* Urgency Dashboard */
.urgency-section { background: #000; padding: 40px 0; color: #fff; overflow: hidden; position: relative; }
.urgency-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: center; }
.u-item { border-right: 1px solid rgba(255,255,255,0.1); padding: 10px; }
.u-item:last-child { border-right: none; }
.u-label { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 8px; display: block; }
.u-val { font-family: 'Outfit'; font-size: 32px; font-weight: 800; color: var(--primary); display: block; }
.u-val span { font-size: 16px; color: #fff; margin-left: 2px; }
.live-indicator { display: inline-flex; align-items: center; gap: 6px; background: rgba(255, 59, 48, 0.1); color: #FF3B30; padding: 4px 10px; border-radius: 4px; font-size: 12px; font-weight: 800; margin-bottom: 10px; }
.live-dot { width: 8px; height: 8px; background: #FF3B30; border-radius: 50%; animation: pulse-red 1.5s infinite; }
/* Timer Section */
.timer-wrap { background: #fff; border-radius: 20px; padding: 25px; margin-top: 40px; text-align: center; position: relative; }
.timer-label { font-weight: 800; font-size: 15px; color: #FF3B30; margin-bottom: 5px; display: block; }
.timer-digits { font-family: 'Outfit'; font-size: 40px; font-weight: 900; color: var(--text-dark); letter-spacing: 2px; }
.timer-dash { margin: 0 10px; opacity: 0.3; }

/* Pricing Scarcity */
.p-stock { position: absolute; top: 20px; right: 35px; background: #FFF0F0; color: #FF3B30; padding: 4px 10px; border-radius: 6px; font-size: 12px; font-weight: 800; }

/* Guarantee */
.guarantee-box { background: linear-gradient(135deg, #F8FFF8 0%, #E8F5E9 100%); border: 2px dashed var(--success); border-radius: 40px; padding: 60px 30px; text-align: center; position: relative; max-width: 800px; margin: 0 auto; }
.seal { width: 90px; height: 90px; position: absolute; top: -45px; right: 20px; background: #fff; border-radius: 50%; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.guarantee-title { font-size: 28px; font-weight: 900; color: var(--success); margin-bottom: 15px; }
.guarantee-desc { font-size: 16px; color: #444; line-height: 1.8; word-break: keep-all; }


/* Modals */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.8); backdrop-filter: blur(10px); z-index: 10000; align-items: center; justify-content: center; }
.modal-card { background: #fff; width: 90%; max-width: 420px; border-radius: 40px; padding: 50px; text-align: center; }
.modal-emoji { font-size: 84px; margin-bottom: 25px; }
.modal-h2 { font-size: 32px; font-weight: 900; margin-bottom: 15px; line-height: 1.2; }
.modal-p { font-size: 18px; color: var(--text-gray); margin-bottom: 40px; }
.modal-btn { width: 100%; padding: 20px; border-radius: 20px; font-size: 20px; font-weight: 800; border: none; cursor: pointer; }
.btn-blue { background: var(--primary); color: #fff; margin-bottom: 15px; }
.btn-link { background: none; color: #999; text-decoration: underline; font-size: 16px; }

/* Toast */
.toast { position: fixed; top: 85px; left: 50%; transform: translateX(-50%) translateY(-200%); background: #fff; padding: 18px 30px; border-radius: 60px; box-shadow: var(--shadow-md); z-index: 9995; display: flex; align-items: center; gap: 15px; transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.toast.active { transform: translateX(-50%) translateY(0); }
.t-icon { width: 40px; height: 40px; background: #E8F2FF; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 18px; }
.t-msg { font-size: 16px; font-weight: 500; }
.t-msg b { color: var(--primary); font-weight: 800; }

/* Recommended Persona */
.rec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px;}
.rec-card { background: #fff; padding: 30px 20px; border-radius: 20px; text-align: center; border: 2px solid #f0f0f0; transition: 0.3s; }
.rec-card:hover { border-color: var(--primary); transform: translateY(-5px); }
.rec-icon { font-size: 52px; margin-bottom: 15px; }
.rec-title { font-weight: 700; font-size: 18px; margin-bottom: 10px; }
.rec-desc { font-size: 15px; color: #666; line-height: 1.5; word-break: keep-all; }

/* Bonus Book Visual */
.bonus-section { background: #1A1A1A; padding: 80px 0; color: #fff; position: relative; overflow: hidden; }
.bonus-content { display: flex; align-items: center; justify-content: center; gap: 60px; position: relative; z-index: 10; }
.book-cover { width: 200px; height: 280px; background: linear-gradient(135deg, #0066FF, #0044AA); border-radius: 4px 16px 16px 4px; box-shadow: -10px 0 0 #003380 inset, 0 15px 40px rgba(0,0,0,0.5), 20px 20px 0 rgba(255,255,255,0.05); position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 20px; }
.book-title { font-family: 'Outfit'; font-weight: 900; font-size: 32px; line-height: 1.1; margin-bottom: 10px; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
.book-sub { font-size: 14px; opacity: 0.8; letter-spacing: 1px; text-transform: uppercase; border-top: 1px solid rgba(255,255,255,0.3); padding-top: 10px; margin-top: 10px; }
.bonus-sticker { position: absolute; top: 10px; right: -30px; background: var(--accent); color: #fff; font-weight: 800; font-size: 12px; padding: 5px 30px; transform: rotate(45deg); box-shadow: 0 2px 5px rgba(0,0,0,0.2); }
.bonus-text h3 { font-size: 36px; font-weight: 900; margin-bottom: 15px; color: #fff; }
.bonus-val { display: inline-block; background: rgba(255,255,255,0.1); padding: 4px 12px; border-radius: 8px; font-size: 14px; color: #aaa; text-decoration: line-through; margin-bottom: 15px; }
.bonus-free { display: inline-block; background: var(--primary); color: #fff; padding: 4px 12px; border-radius: 8px; font-size: 16px; font-weight: 800; margin-left: 10px; animation: pulse 2s infinite; }
.bonus-desc { font-size: 18px; color: #ccc; line-height: 1.7; max-width: 450px; }
.text-underline { border-bottom: 4px solid rgba(0, 102, 255, 0.2); padding-bottom: 2px; }
.highlighter { background: linear-gradient(to top, rgba(255, 225, 0, 0.4) 45%, transparent 45%); padding: 0 2px; }
.section-footer { padding: 300px 0 60px; }
.bg-default { background: var(--bg); }

/* New Banner Section Styles */
/* New Banner Section Styles */
.banner-section { background: var(--bg); padding: 120px 0; overflow: hidden; position: relative; }
.banner-container { max-width: 960px; margin: 0 auto; position: relative; padding: 0 24px; }
.banner-slider { background: #FFF; border-radius: 40px; padding: 60px; box-shadow: var(--shadow-md); position: relative; width: 100%; box-sizing: border-box; display: grid; }
.banner-item { grid-area: 1 / 1; opacity: 0; visibility: hidden; pointer-events: none; display: flex; align-items: center; justify-content: center; gap: 40px; width: 100%; box-sizing: border-box; transition: opacity 0.4s ease; }
.banner-item.active { opacity: 1; visibility: visible; pointer-events: auto; position: relative; z-index: 1; }

.banner-text { flex: 1 1 55%; min-width: 0; text-align: left; }
.banner-h2 { font-size: 42px; font-weight: 700; line-height: 1.2; color: #1A1A1A; margin-bottom: 24px; letter-spacing: -2px; }
.banner-p { font-size: 19px; color: #666; line-height: 1.6; word-break: keep-all; }
.banner-visual { flex: 1 1 45%; min-width: 0; display: flex; align-items: center; justify-content: center; }
.banner-img-wrap { width: 100%; max-width: 260px; position: relative; display: flex; justify-content: center; min-height: 420px; }
.banner-img-main { width: 100%; height: auto; object-fit: contain; border-radius: 20px; }

/* Slider Navigation */
.banner-nav { position: absolute; bottom: 30px; left: 60px; display: flex; gap: 12px; z-index: 10; }
.nav-btn { width: 40px; height: 40px; border-radius: 50%; background: transparent; border: 1px solid #d1d1d1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: 0.3s; color: #333; font-size: 14px; }
.nav-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.banner-dots { position: absolute; bottom: -50px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: #d1d1d1; cursor: pointer; transition: 0.3s; }
.dot.active { background: var(--primary); width: 30px; border-radius: 10px; }

/* Timer Footer */
.timer-footer { margin-top: 20px; padding-top: 15px; border-top: 1px dashed rgba(0,102,255,0.2); display: flex; justify-content: center; gap: 30px; }
.u-item-mini { display: flex; align-items: center; gap: 8px; }
.u-item-mini .label { font-size: 13px; color: #666; }
.u-item-mini .value { font-weight: 700; color: #FF3B30; font-size: 16px; }

/* Benefits List (Mobile Only) */
.benefits-mobile { display: none; }
.benefit-item { display: flex; align-items: flex-start; gap: 16px; padding: 20px 0; border-bottom: 1px solid #eee; }
.benefit-item:last-child { border-bottom: none; }
.benefit-icon { width: 40px; height: 40px; background: var(--primary-light); color: var(--primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.benefit-title { font-size: 16px; font-weight: 800; color: var(--text-dark); margin-bottom: 6px; }
.benefit-desc { font-size: 14px; color: var(--text-gray); line-height: 1.6; word-break: keep-all; }

/* Voucher Showcase Section */
.voucher-showcase-section {background: var(--bg);padding: 100px 0;position: relative;overflow: hidden;}
.voucher-value-banner {background: #fff;border-radius: 24px;padding: 30px 40px;display: flex;align-items: center;justify-content: center;gap: 30px;flex-wrap: wrap;margin-bottom: 50px;box-shadow: 0 4px 15px rgba(0,0,0,0.05);}
.value-badge {background: linear-gradient(135deg, #FF6B6B 0%, #FF3B30 100%);color: #fff;padding: 10px 20px;border-radius: 50px;font-weight: 800;font-size: 14px;display: flex;align-items: center;gap: 8px;}
.value-amount {display: flex;align-items: center;gap: 16px;}
.value-amount .original {font-size: 28px;font-weight: 700;color: #999;text-decoration: line-through;}
.value-amount .arrow {color: #ccc;font-size: 20px;}
.value-amount .free {font-family: 'Outfit', sans-serif;font-size: 42px;font-weight: 900;background: linear-gradient(135deg, #00D1FF 0%, #0066FF 100%);-webkit-background-clip: text;-webkit-text-fill-color: transparent;background-clip: text;}
.value-desc {color: #666;font-size: 14px;font-weight: 500; word-break: keep-all;}
.voucher-grid {display: grid;grid-template-columns: repeat(3, 1fr);gap: 24px;}
.voucher-more-btn { display: none; }
.voucher-card {background: #fff;border-radius: 16px;overflow: hidden;cursor: pointer;transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);box-shadow: 0 4px 15px rgba(0,0,0,0.06);border: 1px solid #f0f0f0;animation: fadeInUp 0.5s ease forwards;opacity: 0;}
.voucher-card:hover {transform: translateY(-8px) scale(1.02);box-shadow: 0 20px 40px rgba(0,102,255,0.15);border-color: var(--primary);}
.voucher-thumb {width: 100%;aspect-ratio: 16/9;background: #f5f5f5;position: relative;overflow: hidden;display: flex;align-items: center;justify-content: center;}
.voucher-thumb img {width: 100%;object-fit: contain;transition: transform 0.3s;}
.voucher-card:hover .voucher-thumb img {transform: scale(1.1);}
.voucher-thumb-placeholder {display: flex;align-items: center;justify-content: center;background: linear-gradient(135deg, #E8F2FF 0%, #D4E6FF 100%);}
.voucher-thumb-placeholder i {font-size: 36px;color: var(--primary);opacity: 0.5;}
.voucher-info {padding: 16px;}
.voucher-title {font-size: 14px;font-weight: 700;color: #333;line-height: 1.4;margin-bottom: 10px;height: 40px;display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;overflow: hidden;}
.voucher-price-row {display: flex;align-items: center;justify-content: space-between;gap: 8px;}
.voucher-price-highlight {font-size: 18px;font-weight: 800;color: var(--primary);}
.voucher-more-hint {text-align: center;margin-top: 40px;display: flex;align-items: center;justify-content: center;gap: 10px;font-size: 15px;color: #888;font-weight: 500;}
.voucher-more-hint i {color: var(--primary);font-size: 20px;}
/* Voucher CTA */
.voucher-cta-wrap { display: flex; flex-direction: column; align-items: center; gap: 20px; margin-top: 50px; padding-bottom: 20px; }
.voucher-timer { display: flex; align-items: center; gap: 12px; }
.voucher-timer-label { font-size: 15px; font-weight: 600; color: #666; }
.voucher-timer-digits { font-family: 'Outfit', sans-serif; font-size: 28px; font-weight: 800; color: #FF3B30; letter-spacing: 1px; }
.voucher-cta-btn { display: flex; align-items: center; gap: 10px; background: linear-gradient(135deg, #0066FF 0%, #0044CC 100%); color: #fff; border: none; padding: 18px 40px; border-radius: 16px; font-size: 18px; font-weight: 800; cursor: pointer; transition: all 0.3s; box-shadow: 0 8px 30px rgba(0,102,255,0.3); }
.voucher-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,102,255,0.4); }
.voucher-cta-btn i { font-size: 16px; }
/* Terms Modal Styles */
.terms-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(5px); z-index: 10001; display: flex; align-items: center; justify-content: center; padding: 20px; }
.terms-modal-card { background: #fff; width: 100%; max-width: 600px; max-height: 80vh; border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; }
.terms-modal-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid #eee; flex-shrink: 0; }
.terms-modal-title { font-size: 18px; font-weight: 800; margin: 0; }
.terms-modal-close { width: 36px; height: 36px; border-radius: 50%; border: none; background: #f5f5f5; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 16px; color: #666; transition: 0.2s; }
.terms-modal-close:hover { background: #eee; }
.terms-modal-body { padding: 30px; overflow-y: auto; font-size: 14px; line-height: 1.8; color: #555; }
.terms-modal-body h1, .terms-modal-body h2, .terms-modal-body h3 { font-size: 16px; font-weight: 800; color: #111; margin: 30px 0 15px; }
.terms-modal-body .jang-title { border-left: 4px solid var(--primary); padding-left: 12px; }
.terms-modal-body p { margin-bottom: 15px; }
.terms-modal-body a { pointer-events: none; color: inherit; text-decoration: none; cursor: default; }
.terms-modal-body hr { border: none; border-top: 1px solid #eee; margin: 80px 0 60px; position: relative; overflow: visible; height: 1px; width: 100%; display: block; clear: both; }
.terms-modal-body hr::after { content: 'ENGLISH VERSION BELOW'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: #fff; padding: 6px 20px; font-size: 15px; font-weight: 800; color: var(--primary); border: 1px solid #eee; border-radius: 50px; white-space: nowrap; box-shadow: 0 2px 8px rgba(0,0,0,0.05); z-index: 10; }

/* QR Modal Styles */
.qr-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(8px); z-index: 10002; display: flex; align-items: center; justify-content: center; padding: 20px; }
.qr-modal-card { background: #fff; width: 100%; max-width: 360px; border-radius: 24px; padding: 36px 28px 32px; text-align: center; position: relative; box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.qr-modal-close { position: absolute; top: 14px; right: 14px; width: 32px; height: 32px; border-radius: 50%; border: none; background: #f3f3f5; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 14px; color: #999; transition: 0.2s; }
.qr-modal-close:hover { background: #eaeaec; color: #555; }
.qr-modal-badge { display: inline-flex; align-items: center; gap: 5px; background: #FFF0F0; color: #E04040; font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 16px; margin-bottom: 16px; }
.qr-modal-badge i { font-size: 10px; }
.qr-modal-title { font-size: 22px; font-weight: 800; color: #1a1a1a; margin: 0 0 6px; line-height: 1.4; }
.qr-modal-price { font-size: 14px; color: #999; margin: 0 0 22px; }
.qr-modal-price strong { color: #ccc; font-size: 14px; text-decoration: line-through; margin-right: 4px; }
.qr-modal-price em { font-style: normal; color: #0066FF; font-weight: 800; font-size: 18px; }
.qr-code-wrap { background: #fafafa; padding: 12px; border-radius: 14px; display: inline-block; margin-bottom: 16px; border: 1px solid #f0f0f0; }
.qr-code-img { width: 150px; height: 150px; display: block; }
.qr-scan-label { font-size: 12px; color: #bbb; margin: 0 0 18px; }
.qr-app-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 15px; border-radius: 14px; border: none; background: #0066FF; color: #fff; font-size: 15px; font-weight: 700; cursor: pointer; transition: all 0.2s; }
.qr-app-btn:hover { background: #0052CC; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,102,255,0.3); }
.qr-app-btn i { font-size: 16px; }

/* ======================================== RESPONSIVE / MEDIA QUERIES ======================================== */
@media (max-width: 1024px) { 
   .sub-container { padding: 0 20px; }
   .hero-title { font-size: 56px; }
   .section { padding: 80px 0; } 
   .banner-h2 { font-size: 36px; } 
   .banner-p { font-size: 17px; }
}
@media (max-width: 800px) {
    .section { padding: 60px 0; }
    .features-grid, .pricing-cards, .bnf-grid, .story-grid, .rec-grid { grid-template-columns: 1fr; gap: 24px; }
    .meso-box { flex-direction: column-reverse; text-align: center; padding: 40px 30px; gap: 30px; }
    .meso-visual { width: 140px; height: 140px; margin: 0 auto; }
    .bonus-content { flex-direction: column; text-align: center; gap: 40px; }
    .book-cover { width: 160px; height: 220px; }
    .meso-coin { font-size: 70px; }
    .meso-h3 { font-size: 28px; }
    .hero-title { font-size: 42px; letter-spacing: -2px; }
    .hero-desc { font-size: 18px; padding: 0 10px; }
    .section-h2 { font-size: 32px; }
    .mob-br { display: none; }
    .f-card, .p-card { padding: 32px 24px; }
    .toast { width: 90%; padding: 12px 20px; top: 55px; }
    .t-icon { width: 32px; height: 32px; font-size: 14px; }
    .t-msg { font-size: 14px; }
    .modal-card { width: 92%; padding: 30px; }
    .modal-emoji { font-size: 50px; }
    .modal-h2 { font-size: 24px; }

    /* Banner */
    .banner-section { padding: 40px 0 80px; }
    .banner-container { padding: 0 20px; }
    .banner-slider { padding: 40px 24px; border-radius: 30px; }
    .banner-item.active { flex-direction: column; text-align: center; gap: 30px; }
    .banner-text { text-align: center; width: 100%; order: 2; }
    .banner-visual { order: 1; width: 100%; justify-content: center; }
    .banner-h2 { font-size: 28px; letter-spacing: -1px; }
    .banner-p { font-size: 16px; }
    .banner-nav { left: 50%; transform: translateX(-50%); bottom: 20px; position: relative; margin-top: 40px; }
    .banner-img-wrap { max-width: 240px; }

    /* App Preview */
    .app-preview-container { flex-direction: column; gap: 60px; }
    .app-preview-card { width: 100%; max-width: 400px; }
    .app-preview-features { gap: 20px; }
    .app-preview-badge { top: 12px; left: 12px; padding: 6px 12px; font-size: 11px; }

    /* Rec Grid - Auto slide */
    .rec-grid { display: flex; overflow: hidden; position: relative; }
    .rec-grid .rec-card { min-width: 100%; opacity: 0; position: absolute; animation: recSlide 9s infinite; animation-fill-mode: backwards; }
    .rec-grid .rec-card:nth-child(1) { animation-delay: 0s; position: relative; opacity: 1; }
    .rec-grid .rec-card:nth-child(2) { animation-delay: 3s; }
    .rec-grid .rec-card:nth-child(3) { animation-delay: 6s; }

    /* Voucher Grid - 2x2 with Load More */
    .voucher-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .voucher-grid .voucher-card:nth-child(n+5) { display: none; }
    .voucher-grid.expanded .voucher-card:nth-child(n+5) { display: block; opacity: 1; animation: none; }
    .voucher-more-btn { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 16px 32px; background: #fff; border: 2px solid #eee; border-radius: 12px; font-weight: 700; color: var(--text-gray); cursor: pointer; margin: 20px auto 0; transition: 0.3s; width: 100%; }
    .voucher-more-btn:hover { border-color: var(--primary); color: var(--primary); }
    .voucher-more-btn i { transition: 0.3s; }
    .voucher-more-btn.active i { transform: rotate(180deg); }
    .voucher-more-btn.active span::after { content: ' 접기'; }
    .voucher-more-btn.active span { font-size: 0; }
    .voucher-more-btn.active span::after { font-size: 15px; }
    .voucher-value-banner { padding: 24px 20px; gap: 20px; }
    .value-amount .original { font-size: 22px; }
    .value-amount .free { font-size: 32px; }
}
@media (max-width: 600px) {
    .seal { width: 70px; height: 70px; top: -35px; right: 50%; transform: translateX(50%); }
    .chart-card, .guarantee-box { padding: 50px 20px; }
    .bar-pct { font-size: 22px; }
    /* Story Grid - Show only 2 cards */
    .story-grid .s-card:nth-child(n+3) { display: none; }
    /* Terms Modal */
    .terms-modal-card { max-height: 90vh; border-radius: 16px; }
    .terms-modal-header { padding: 16px 20px; }
    .terms-modal-body { padding: 20px; font-size: 13px; }
    /* QR Modal */
    .qr-modal-card { padding: 40px 25px; border-radius: 24px; }
    .qr-modal-title { font-size: 24px; }
    .qr-code-img { width: 150px; height: 150px; }
    .qr-store-buttons { flex-direction: column; }
    .qr-store-btn { justify-content: center; }
}
@media (max-width: 480px) { 
  .subscribe-page { padding-bottom: 90px; }
  .pricing-wrap { padding: 100px 0; }
  .bnf-wrap { padding: 80px 0; }
  .sticky-bar { padding: 16px 20px calc(12px + env(safe-area-inset-bottom)); }
  .cta-price-row { gap: 12px; padding: 0; } 
  .cta-price-info { flex: 1; }
  .cta-plan-price { font-size: 22px; } 
  .cta-btn-small { min-width: auto; padding: 14px 7px; font-size: 15px; border-radius: 12px; flex: 1.2; } 
  .cta-links { gap: 8px; font-size: 10px; margin-top: 4px; }
  .cta-divider { height: 8px; }
  .hero { padding: 60px 0 40px; } 
  .hero-desc { font-size: 17px; word-break: keep-all; }
  .p-new { font-size: 48px; } 
  .comp-table th, .comp-table td { padding: 15px 10px; font-size: 14px; } 
  .comp-desktop { display: none; }
  .benefits-mobile { display: block; order: 2; margin-bottom: 30px; }
  .p-features { display: none; }
  .pricing-wrap .sub-container { display: flex; flex-direction: column; }
  .pricing-wrap .timer-wrap { order: 1; }
  .pricing-wrap .pricing-cards { order: 3; }
  .sticky-bar { padding-bottom: calc(12px + env(safe-area-inset-bottom)); }
  .ticker-content { animation: tickerScrollMobile 30s linear infinite; }
  .banner-img-wrap { max-width: 150px; min-height: 250px; }
  .section-h2 { font-size: 26px; word-break: keep-all; }
  .mob-br { display: block; }
  .banner-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 30px; }
  .banner-nav { position: static; transform: none; margin: 0; }
  .banner-dots { position: static; transform: none; margin: 0; }
  .timer-footer { flex-direction: row; gap: 60px; justify-content: center; }
  .timer-wrap { padding: 70px 20px 30px; }
  .timer-wrap .live-indicator { position: absolute; top: 15px; left: 15px; scale: 1; margin: 0; }
  .timer-label { font-size: 14px; margin-bottom: 20px; }
  .timer-digits { font-size: 48px; margin-bottom: 20px; }
  .u-item-mini { flex-direction: column-reverse; gap: 2px; text-align: center; }
  .f-title { font-size: 24px; }
  .banner-h2 { font-size: 24px; }
  .meso-h3 { font-size: 24px; }
  .p-name { font-size: 24px; }
  .p-new { font-size: 42px; }
  .p-unit { font-size: 14px; }
  .guarantee-title { font-size: 24px; }
  .cta-links { font-size: 11px; }
  .p-select { right: 20px; bottom: 20px; width: 36px; height: 36px; }
  .modal-h2 { font-size: 28px; }
  .meso-p { font-size: 16px; word-break: keep-all; }
  .p-memo { margin-bottom: 10px; margin-top: 20px; }
  .p-price { margin-bottom: 10px; }
  .p-tag { top: 17px; left: 20px; padding: 5px 15px; }
  .ai-box { padding: 18px; }
}

/* ======================================== KEYFRAMES ======================================== */
@keyframes btnPulse { 0% { box-shadow: 0 10px 25px rgba(0,102,255,0.3); } 50% { box-shadow: 0 10px 35px rgba(0,102,255,0.5); } 100% { box-shadow: 0 10px 25px rgba(0,102,255,0.3); } }
@keyframes tickerScroll { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
@keyframes float { 0%, 100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-20px) rotate(10deg); } }
@keyframes pulse-red { 0% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(1.2); } 100% { opacity: 1; transform: scale(1); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes tickerScrollMobile { 0% { transform: translateX(100vw); } 100% { transform: translateX(-100%); } }
@keyframes recSlide {
    0%, 5% { opacity: 0; transform: translateX(20px); }
    10%, 28% { opacity: 1; transform: translateX(0); }
    33%, 100% { opacity: 0; transform: translateX(-20px); }
}

