/* ========================================
   F.R.I.D.A.Y - Premium Financial Intelligence
   Color System:
   - Deep Burgundy Black: #0A0406
   - Burgundy Base: #1A0A0E
   - Burgundy Mid: #2D0A14
   - Burgundy Accent: #8B2635
   - Gold: #D4A843
   - Cream White: #F5F0E8
   - Warm Gray: #9A8C7A
   ======================================== */

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

:root {
    --bg-black: #0A0406;
    --bg-burgundy: #1A0A0E;
    --bg-burgundy-mid: #2D0A14;
    --burgundy-accent: #8B2635;
    --burgundy-light: #A63446;
    --gold: #D4A843;
    --gold-dim: #9A7B3C;
    --cream: #F5F0E8;
    --warm-gray: #9A8C7A;
    --warm-gray-light: #B8A99A;
    --text-primary: #F5F0E8;
    --text-secondary: #9A8C7A;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-black);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    word-break: keep-all;
    overflow-wrap: break-word;
    max-width: 100vw;
    word-break: keep-all;
    overflow-wrap: break-word;
}

/* Hide scrollbar globally */
::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* ===== Typography ===== */
.text-burgundy { color: var(--burgundy-accent); }
.text-gold { color: var(--gold); }

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 60px;
    height: 72px;
    display: flex;
    align-items: center;
    background: rgba(10, 4, 6, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 38, 53, 0.15);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 24px;
    width: auto;
}

.inline-logo {
    height: 0.85em;
    width: auto;
    vertical-align: -0.05em;
    display: inline;
    margin: 0 2px;
    filter: brightness(1.1);
}
.inline-logo-eyebrow {
    height: 0.75em;
    width: auto;
    vertical-align: -0.05em;
    display: inline;
    margin: 0 4px;
    filter: brightness(1.2);
}
.inline-logo-hero {
    height: 0.9em;
    width: auto;
    vertical-align: -0.08em;
    display: inline;
    margin: 0 4px;
}

.footer-logo-img {
    height: 32px;
    width: auto;
    margin-bottom: 10px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--warm-gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--cream);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-login {
    color: var(--warm-gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-login:hover { color: var(--cream); }

.nav-cta {
    background: var(--burgundy-accent);
    color: var(--cream);
    text-decoration: none;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(139, 38, 53, 0.6);
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--burgundy-light);
    border-color: var(--burgundy-light);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 0 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('images/hero-bg.jpg') center center / cover no-repeat,
                linear-gradient(135deg, var(--bg-burgundy-mid) 0%, var(--bg-burgundy) 30%, var(--bg-black) 70%);
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 70%;
    height: 70%;
    background: radial-gradient(ellipse, rgba(139, 38, 53, 0.3) 0%, transparent 70%);
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 20%;
    width: 40%;
    height: 40%;
    background: radial-gradient(ellipse, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, var(--bg-black) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
    padding-top: 72px;
}

/* ===== Live Counter - Binance Style ===== */
.live-hero-counter {
    text-align: center;
    margin-top: 80px;
}

.live-hero-number {
    font-family: 'DM Sans', sans-serif;
    font-size: 140px;
    font-weight: 900;
    color: #D4A843;
    line-height: 1;
    display: block;
    letter-spacing: -2px;
    animation: counterGlow 3s ease-in-out infinite;
    transition: all 0.5s ease;
}

@keyframes counterGlow {
    0%, 100% { text-shadow: 0 0 40px rgba(212, 168, 67, 0.3), 0 0 80px rgba(212, 168, 67, 0.15); }
    50% { text-shadow: 0 0 60px rgba(212, 168, 67, 0.5), 0 0 120px rgba(212, 168, 67, 0.25); }
}

.live-hero-title {
    font-family: 'Pretendard', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #F5F0E8;
    margin-top: 16px;
    letter-spacing: -0.5px;
}

/* ===== Hero Device Image ===== */
.hero-device-img {
    position: absolute;
    right: -5%;
    bottom: 5%;
    z-index: 3;
    width: 60%;
    max-width: 800px;
    pointer-events: none;
}

.hero-device-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 70% 60%, black 20%, transparent 70%);
    mask-image: radial-gradient(ellipse 70% 70% at 70% 60%, black 20%, transparent 70%);
}

.hero-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 32px;
}

.hero-title {
    margin-bottom: 32px;
}

.hero-title-en {
    display: block;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 72px;
    line-height: 1.1;
    word-break: keep-all;
    overflow-wrap: break-word;
    color: var(--cream);
    letter-spacing: -1px;
}

.hero-divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 32px;
}

.hero-sub {
    font-size: 18px;
    font-weight: 500;
    color: var(--cream);
    line-height: 1.8;
    margin-bottom: 12px;
}

.hero-sub-detail {
    font-size: 16px;
    font-weight: 400;
    color: var(--warm-gray);
    line-height: 1.8;
    margin-bottom: 48px;
}

.hero-cta {
    display: inline-block;
    background: var(--burgundy-accent);
    color: var(--cream);
    text-decoration: none;
    padding: 18px 48px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid rgba(166, 52, 70, 0.5);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hero-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transform: skewX(-25deg);
    animation: ctaShimmer 3s ease-in-out infinite;
}

@keyframes ctaShimmer {
    0% { left: -60%; }
    50% { left: 120%; }
    100% { left: 120%; }
}

.hero-cta:hover {
    background: var(--burgundy-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(139, 38, 53, 0.4);
}

/* ===== Section Common ===== */
.section {
    padding: 140px 60px;
    position: relative;
    overflow: hidden;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 24px;
}

.section-title {
    font-family: 'Pretendard', sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.4;
    color: var(--cream);
    margin-bottom: 48px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

/* ===== Problem Section ===== */
.section-problem {
    background: linear-gradient(180deg, var(--bg-black) 0%, rgba(26,10,14,0.9) 50%, var(--bg-black) 100%),
                url('images/problem-bg.jpg') center center / cover no-repeat;
}

.problem-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
}

.problem-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.problem-number {
    font-family: 'Sora', sans-serif;
    font-size: 72px;
    font-weight: 700;
    color: var(--cream);
    line-height: 1;
}

.problem-unit {
    font-size: 36px;
    color: var(--warm-gray);
}

.problem-label {
    font-size: 14px;
    color: var(--warm-gray);
    margin-top: 12px;
    letter-spacing: 0.5px;
}

.problem-divider-v {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--burgundy-accent), transparent);
}

.problem-body {
    font-size: 18px;
    line-height: 2;
    color: var(--warm-gray-light);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 0, 0, 0.7), 0 0 80px rgba(0, 0, 0, 0.5);
}

.problem-body strong {
    color: var(--cream);
    font-weight: 600;
}
.problem-body strong.text-burgundy {
    color: var(--burgundy-accent);
}

/* ===== Quote Section ===== */
.section-quote {
    background: linear-gradient(180deg, rgba(26,10,14,0.65) 0%, rgba(26,10,14,0.7) 100%),
                url('images/quote-bg.png') center center / cover no-repeat;
    padding: 120px 60px;
}

.quote-mark {
    font-family: 'Sora', sans-serif;
    font-size: 120px;
    color: var(--burgundy-accent);
    line-height: 0.5;
    margin-bottom: 20px;
}

.quote-text {
    font-family: 'Pretendard', sans-serif;
    font-size: 28px;
    font-weight: 500;
    font-style: italic;
    line-height: 1.8;
    color: var(--cream);
    margin-bottom: 40px;
    border: none;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 0, 0, 0.7), 0 0 80px rgba(0, 0, 0, 0.5);
}

.quote-author {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quote-name {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
}

.quote-title {
    font-size: 14px;
    color: var(--warm-gray);
    letter-spacing: 0.5px;
}

/* ===== Solution Section ===== */
.section-solution {
    background: linear-gradient(180deg, rgba(10,4,6,0.78) 0%, rgba(26,10,14,0.78) 100%),
                url('images/solution-bg.png') center center / cover no-repeat;
}

.solution-body {
    font-size: 17px;
    line-height: 2;
    color: var(--warm-gray-light);
    margin-bottom: 60px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 0, 0, 0.7), 0 0 80px rgba(0, 0, 0, 0.5);
}

.solution-body strong {
    color: var(--gold);
    font-weight: 600;
}

.solution-highlight {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    background: radial-gradient(ellipse at center, rgba(10, 4, 6, 0.85) 0%, rgba(10, 4, 6, 0.6) 40%, rgba(10, 4, 6, 0.2) 70%, transparent 100%);
    border: none;
    padding: 32px 48px;
}

.solution-time {
    font-family: 'Sora', sans-serif;
    font-size: 80px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.solution-time-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 3px;
    margin-right: 24px;
}

.solution-time-desc {
    font-size: 16px;
    color: var(--warm-gray-light);
    text-align: left;
    line-height: 1.8;
}

/* ===== VS Section ===== */
.section-vs {
    background: linear-gradient(180deg, var(--bg-black) 0%, rgba(10,4,6,0.85) 50%, var(--bg-black) 100%),
                url('images/vs-bg.jpg') center center / cover no-repeat;
}

.vs-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
}

.vs-card {
    flex: 1;
    max-width: 400px;
    padding: 48px 40px;
    text-align: left;
}

.vs-card-other {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.vs-card-rogers {
    background: rgba(139, 38, 53, 0.15);
    border: 1px solid var(--burgundy-accent);
}

.vs-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--warm-gray);
    padding: 6px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 32px;
}

.vs-badge-gold {
    color: var(--gold);
    border-color: var(--gold);
}

/* Card News Comparison */
.cardnews-compare {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 72px;
    flex-wrap: wrap;
}
.cardnews-item {
    text-align: center;
    max-width: 340px;
    flex: 1;
}
.cardnews-label {
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--warm-gray-light);
    margin-bottom: 20px;
    font-weight: 600;
}
.cardnews-label-gold {
    color: var(--gold);
}
.cardnews-label-gold .inline-logo {
    height: 1.2em;
    vertical-align: -0.35em;
}
.cardnews-chevron {
    font-size: 32px;
    color: var(--gold);
    margin: 0 8px;
    font-weight: 300;
    vertical-align: -0.05em;
}
.cardnews-chevron-gray {
    color: var(--warm-gray-light);
}
.cardnews-img-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    transition: transform 0.4s ease;
}
.cardnews-other .cardnews-img-wrap {
    opacity: 1;
    filter: none;
}
.cardnews-img-gold {
    border: none;
    box-shadow: 0 0 40px rgba(212,168,67,0.2), 0 0 80px rgba(212,168,67,0.1), 0 8px 32px rgba(0,0,0,0.4);
}
.cardnews-img-wrap img {
    width: 100%;
    display: block;
}
.cardnews-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,4,6,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}
.cardnews-x {
    font-size: 64px;
    color: var(--burgundy-accent);
    font-weight: 200;
    opacity: 0.8;
}
.cardnews-desc {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--warm-gray-light);
}
.cardnews-desc-gold {
    color: var(--gold);
    font-weight: 500;
}
.cardnews-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}
.cardnews-vs-text {
    font-family: 'Sora', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--burgundy-accent);
    text-shadow: 0 0 20px rgba(139,38,53,0.5);
}

.vs-list {
    list-style: none;
    margin-bottom: 32px;
}

.vs-list li {
    font-size: 15px;
    color: var(--warm-gray-light);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.vs-card-rogers .vs-list li {
    color: var(--cream);
    border-bottom-color: rgba(139, 38, 53, 0.2);
}

.vs-list li strong {
    color: var(--cream);
    font-weight: 600;
}

.vs-price {
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    color: var(--warm-gray);
}

.vs-price-gold {
    color: var(--gold);
}

.vs-divider {
    display: flex;
    align-items: center;
    padding: 0 32px;
}

.vs-text {
    font-family: 'Sora', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--burgundy-accent);
    letter-spacing: 4px;
}

/* ===== Preview Section ===== */
.section-preview {
    background: linear-gradient(180deg, rgba(10,4,6,0.65) 0%, rgba(26,10,14,0.6) 50%, rgba(10,4,6,0.65) 100%),
                url('images/preview-bg.png') center center / cover no-repeat;
}

.preview-container {
    display: flex;
    gap: 48px;
    justify-content: center;
    align-items: flex-start;
    margin-top: 60px;
}

.preview-kakao {
    width: 380px;
    background: #F7F5F0;
    border-radius: 16px;
    overflow: hidden;
    text-align: left;
}

.kakao-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #E8E3D9;
}

.kakao-icon {
    width: 36px;
    height: 36px;
    background: var(--burgundy-accent);
    color: var(--cream);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 16px;
}

.kakao-name {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    flex: 1;
}

.kakao-time {
    font-size: 12px;
    color: #888;
}

.kakao-bubble {
    padding: 20px;
    margin: 16px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.kakao-title {
    font-size: 14px;
    font-weight: 700;
    color: #222;
    margin-bottom: 4px;
}

.kakao-bold {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
}

.kakao-text {
    font-size: 12.5px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 2px;
}

.kakao-attach {
    font-size: 13px;
    color: var(--burgundy-accent);
    font-weight: 600;
    padding-top: 8px;
    border-top: 1px solid #eee;
    margin-top: 8px;
}

.preview-pdf {
    width: 420px;
}

.pdf-mockup {
    background: var(--bg-burgundy);
    border: 1px solid var(--burgundy-accent);
    padding: 40px 36px;
    position: relative;
}

.pdf-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--burgundy-accent), var(--gold), var(--burgundy-accent));
}

.pdf-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(139, 38, 53, 0.3);
}

.pdf-logo {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 4px;
    margin-bottom: 8px;
}

.pdf-sub {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    color: var(--warm-gray);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.pdf-date {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: var(--warm-gray);
}

.pdf-contents-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 20px;
    text-align: left;
}

.pdf-item {
    font-size: 13px;
    color: var(--warm-gray-light);
    padding: 8px 0;
    border-bottom: 1px solid rgba(139, 38, 53, 0.15);
    text-align: left;
}

.pdf-num {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    color: var(--gold);
    margin-right: 12px;
    font-size: 12px;
}

/* ===== Values Section ===== */
.section-values {
    background: linear-gradient(180deg, rgba(10,4,6,0.65) 0%, rgba(10,4,6,0.65) 100%),
                url('images/values-bg.png') center center / cover no-repeat;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.value-card {
    background: rgba(26, 10, 14, 0.6);
    border: 1px solid rgba(139, 38, 53, 0.2);
    padding: 48px 36px;
    text-align: left;
    transition: all 0.4s ease;
    background-size: cover;
    background-position: center;
}

.value-card:nth-child(1) {
    background-image: linear-gradient(180deg, rgba(10,4,6,0.55) 0%, rgba(26,10,14,0.6) 100%), url('images/card-precision.png');
}

.value-card:nth-child(2) {
    background-image: linear-gradient(180deg, rgba(10,4,6,0.55) 0%, rgba(26,10,14,0.6) 100%), url('images/card-depth.png');
}

.value-card:nth-child(3) {
    background-image: linear-gradient(180deg, rgba(10,4,6,0.55) 0%, rgba(26,10,14,0.6) 100%), url('images/card-perspective.png');
}

.value-card:hover {
    border-color: var(--burgundy-accent);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(139, 38, 53, 0.15);
    background-blend-mode: overlay;
}

.value-card:nth-child(1):hover {
    background-image: linear-gradient(180deg, rgba(10,4,6,0.4) 0%, rgba(26,10,14,0.5) 100%), url('images/card-precision.png');
}

.value-card:nth-child(2):hover {
    background-image: linear-gradient(180deg, rgba(10,4,6,0.4) 0%, rgba(26,10,14,0.5) 100%), url('images/card-depth.png');
}

.value-card:nth-child(3):hover {
    background-image: linear-gradient(180deg, rgba(10,4,6,0.4) 0%, rgba(26,10,14,0.5) 100%), url('images/card-perspective.png');
}

.value-icon {
    margin-bottom: 24px;
}

.value-icon-text {
    font-size: 32px;
    color: var(--gold);
}

.value-name {
    font-family: 'Sora', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 8px;
}

.value-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 24px;
}

.value-desc {
    font-size: 15px;
    line-height: 1.9;
    color: var(--warm-gray-light);
}

/* ===== Process Section ===== */
.section-process {
    background: linear-gradient(180deg, var(--bg-black) 0%, var(--bg-burgundy) 50%, var(--bg-black) 100%);
}

.process-subtitle {
    font-size: 17px;
    color: var(--warm-gray);
    margin-top: -32px;
    margin-bottom: 80px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.process-step {
    max-width: 600px;
    text-align: left;
    padding: 40px;
    background: rgba(10, 4, 6, 0.5);
    border: 1px solid rgba(139, 38, 53, 0.15);
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.process-step:nth-child(1) {
    background-image: linear-gradient(180deg, rgba(10,4,6,0.75) 0%, rgba(26,10,14,0.8) 100%), url('images/step-01.png');
}
.process-step:nth-child(3) {
    background-image: linear-gradient(180deg, rgba(10,4,6,0.75) 0%, rgba(26,10,14,0.8) 100%), url('images/step-02.png');
}
.process-step:nth-child(5) {
    background-image: linear-gradient(180deg, rgba(10,4,6,0.75) 0%, rgba(26,10,14,0.8) 100%), url('images/step-03.png');
}
.process-step:nth-child(7) {
    background-image: linear-gradient(180deg, rgba(10,4,6,0.75) 0%, rgba(26,10,14,0.8) 100%), url('images/step-04.png');
}

.step-desc {
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 0, 0, 0.7), 0 0 80px rgba(0, 0, 0, 0.5);
}

.step-number {
    font-family: 'Sora', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--burgundy-accent);
    display: block;
    margin-bottom: 12px;
}

.step-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.step-desc {
    font-size: 15px;
    line-height: 1.9;
    color: var(--warm-gray-light);
}

.process-connector {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--burgundy-accent), transparent);
}

/* ===== Numbers Section ===== */
.section-numbers {
    background: linear-gradient(180deg, rgba(26,10,14,0.45) 0%, rgba(26,10,14,0.45) 100%),
                url('images/numbers-bg.png') center center / cover no-repeat;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.number-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.number-value {
    font-family: 'Sora', sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: var(--cream);
    line-height: 1;
}

.number-unit {
    font-size: 20px;
    color: var(--gold);
    font-weight: 400;
}

.number-label {
    font-size: 14px;
    color: var(--warm-gray);
    letter-spacing: 0.5px;
}

/* ===== Pricing Section ===== */
.section-pricing {
    background: linear-gradient(180deg, var(--bg-black) 0%, var(--bg-burgundy) 50%, var(--bg-black) 100%);
}

.pricing-subtitle {
    font-size: 17px;
    color: var(--warm-gray);
    margin-top: -32px;
    margin-bottom: 60px;
    line-height: 1.8;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 0, 0, 0.7), 0 0 80px rgba(0, 0, 0, 0.5);
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.pricing-card {
    width: 380px;
    padding: 48px 40px;
    background: rgba(10, 4, 6, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: left;
    display: flex;
    flex-direction: column;
}

.pricing-card-best {
    border-color: var(--gold);
    background: rgba(139, 38, 53, 0.1);
    position: relative;
}

.pricing-badge {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--warm-gray);
    margin-bottom: 16px;
}

.pricing-badge-best {
    color: var(--gold);
}

.pricing-name {
    font-family: 'Sora', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 12px;
}

.pricing-desc {
    font-size: 15px;
    color: var(--warm-gray);
    line-height: 1.7;
    margin-bottom: 32px;
}

.pricing-includes {
    margin-bottom: 32px;
    flex: 1;
}

.pricing-includes p {
    font-size: 14px;
    color: var(--warm-gray-light);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-card-best .pricing-includes p {
    border-bottom-color: rgba(139, 38, 53, 0.15);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 8px;
}

.pricing-original {
    font-size: 16px;
    color: var(--warm-gray);
    text-decoration: line-through;
}

.pricing-current {
    font-family: 'Sora', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--cream);
}

.pricing-card-best .pricing-current {
    color: var(--gold);
}

.pricing-won {
    font-size: 24px;
}

.pricing-period {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--warm-gray);
}

.pricing-daily {
    font-size: 15px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 32px;
    background: rgba(212, 168, 67, 0.1);
    padding: 8px 16px;
    border: 1px solid rgba(212, 168, 67, 0.2);
    display: inline-block;
    letter-spacing: 0.5px;
    text-shadow: 0 0 12px rgba(212, 168, 67, 0.3);
}

.pricing-cta {
    display: block;
    text-align: center;
    background: transparent;
    color: var(--cream);
    text-decoration: none;
    padding: 16px;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.pricing-cta:hover {
    border-color: var(--burgundy-accent);
    background: rgba(139, 38, 53, 0.2);
}

.pricing-cta-best {
    background: var(--burgundy-accent);
    border-color: var(--burgundy-accent);
}

.pricing-cta-best:hover {
    background: var(--burgundy-light);
    border-color: var(--burgundy-light);
}

/* ===== FAQ Section ===== */
.section-faq {
    background: linear-gradient(180deg, rgba(10,4,6,0.7) 0%, rgba(10,4,6,0.7) 100%),
                url('images/faq-bg.png') center center / cover no-repeat;
    padding: 100px 60px;
}

.section-faq .section-title {
    font-size: 32px;
    margin-bottom: 60px;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    padding: 32px 0;
    border-bottom: 1px solid rgba(139, 38, 53, 0.15);
}

.faq-question {
    font-size: 17px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 16px;
}

.faq-answer {
    font-size: 15px;
    color: var(--warm-gray-light);
    line-height: 1.8;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 0, 0, 0.7), 0 0 80px rgba(0, 0, 0, 0.5);
}

/* ===== Final CTA ===== */
.section-final-cta {
    background: linear-gradient(180deg, rgba(10,4,6,0.75) 0%, rgba(45,10,20,0.7) 50%, rgba(10,4,6,0.75) 100%),
                url('images/final-bg.png') center center / cover no-repeat;
    padding: 160px 60px;
    text-align: center;
}

.final-title {
    margin-bottom: 32px;
}

.final-title-en {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--cream);
}

.final-body {
    font-size: 18px;
    color: var(--warm-gray-light);
    line-height: 1.9;
    margin-bottom: 48px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 0, 0, 0.7), 0 0 80px rgba(0, 0, 0, 0.5);
}

.final-cta {
    display: inline-block;
    background: var(--burgundy-accent);
    color: var(--cream);
    text-decoration: none;
    padding: 20px 56px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid rgba(166, 52, 70, 0.5);
    transition: all 0.4s ease;
}

.final-cta:hover {
    background: var(--burgundy-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(139, 38, 53, 0.4);
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-black);
    border-top: 1px solid rgba(139, 38, 53, 0.1);
    padding: 80px 60px;
    text-align: center;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 4px;
}

.footer-tagline {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    color: var(--warm-gray);
    letter-spacing: 2px;
    margin-top: 8px;
    margin-bottom: 32px;
}

.footer-info {
    margin-bottom: 24px;
}

.footer-info p {
    font-size: 12px;
    color: var(--warm-gray);
    line-height: 1.8;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}

.footer-links a {
    font-size: 13px;
    color: var(--warm-gray);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-copy {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: rgba(154, 140, 122, 0.5);
    letter-spacing: 1px;
}

/* ===== Responsive ===== */
/* ===== Mobile Nav Toggle ===== */
.nav-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.nav-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cream);
    transition: all 0.3s ease;
}

.nav-mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 1024px) {
    .hero { padding: 0 32px; }
    .hero-device-img {
        position: absolute;
        right: -5%;
        bottom: 5%;
        width: 45%;
        opacity: 0.7;
    }
    .hero-device-img img {
        -webkit-mask-image: radial-gradient(ellipse 80% 80% at 60% 60%, black 10%, transparent 65%);
        mask-image: radial-gradient(ellipse 80% 80% at 60% 60%, black 10%, transparent 65%);
    }
    .hero-content { padding-top: 100px; }
    .section { padding: 100px 32px; }
    .hero-title-en { font-size: 48px; }
    .section-title { font-size: 30px; }
    .values-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
    .numbers-grid { grid-template-columns: repeat(2, 1fr); }
    .vs-container { flex-direction: column; align-items: center; }
    .vs-card { max-width: 100%; }
    .vs-divider { padding: 24px 0; }
    .preview-container { flex-direction: column; align-items: center; }
    .pricing-cards { flex-direction: column; align-items: center; }
    .nav { padding: 0 24px; height: 64px; }
    .nav-logo-img { height: 20px; }
    .nav-links {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(10, 4, 6, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 24px;
        border-bottom: 1px solid rgba(139, 38, 53, 0.2);
    }
    .nav-links.mobile-open { display: flex; }
    .nav-links a { font-size: 16px; padding: 12px 0; border-bottom: 1px solid rgba(139, 38, 53, 0.1); }
    .nav-actions { display: none; }
    .nav-mobile-toggle { display: flex; }
    .hero-cta-group { flex-direction: column !important; align-items: flex-start !important; gap: 16px !important; margin-left: 0; }
    .solution-highlight { flex-direction: column; text-align: center; padding: 32px 24px; }
    .solution-time-label { margin-right: 0; }
    .solution-time-desc { text-align: center; }
    .final-title-en { font-size: 40px; }
    .quote-text { font-size: 22px; }
    .quote-mark { font-size: 80px; }
}

@media (max-width: 640px) {
    .hero { padding: 0 20px; min-height: 100svh; }
    .hero-content { padding-top: 80px; }
    .number-item-live { border-radius: 8px; }
    .hero-device-img {
        display: block;
        width: 100%;
        max-width: 420px;
        bottom: 2%;
        right: -18%;
        transform: none;
        opacity: 0.55;
        mask-image: radial-gradient(ellipse 75% 75% at 65% 55%, black 15%, transparent 60%);
        -webkit-mask-image: radial-gradient(ellipse 75% 75% at 65% 55%, black 15%, transparent 60%);
    }
    .section { padding: 72px 20px; }
    .hero-title-en { font-size: 40px; font-weight: 900; }
    .hero-eyebrow { font-size: 10px; letter-spacing: 3px; }
    .hero-sub { font-size: 16px; }
    .hero-sub-detail { font-size: 14px; }
    .hero-cta-group { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
    .hero-cta { padding: 16px 0; font-size: 13px; text-align: center; width: 190px; }
    .hero-cta-secondary { padding: 8px 0 !important; padding-left: 0 !important; margin-left: 0 !important; font-size: 13px; text-align: center; width: 190px; box-sizing: border-box; }
    .hero-cta-secondary .mobile-br { display: inline !important; }
    .section-title { font-size: 24px; }
    .section-eyebrow { font-size: 10px; letter-spacing: 3px; }
    .section-eyebrow::before, .section-eyebrow::after { margin: 0 8px; }
    .problem-stats { flex-direction: column; gap: 24px; }
    .problem-divider-v { width: 60px; height: 1px; }
    .problem-number { font-size: 48px; }
    .problem-body { font-size: 15px; line-height: 1.9; }
    .quote-text { font-size: 18px; line-height: 1.7; }
    .quote-portrait { width: 280px; height: 320px; right: -15%; left: auto; transform: none; top: 10%; opacity: 0.6; }
    .quote-mark { font-size: 60px; }
    .quote-name { font-size: 16px; }
    .quote-title { font-size: 12px; }
    .solution-body { font-size: 15px; }
    .solution-time { font-size: 60px; }
    .solution-highlight { padding: 20px; }
    .vs-card { padding: 32px 24px; }
    .preview-kakao, .preview-pdf { width: 100%; }
    .kakao-bubble { padding: 16px; margin: 12px; }
    .pdf-mockup { padding: 28px 24px; }
    .value-card { padding: 36px 24px; }
    .value-name { font-size: 24px; }
    .value-desc { font-size: 14px; }
    .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .number-value { font-size: 48px; }
    .number-label { font-size: 12px; }
    .pricing-card { width: 100%; padding: 36px 28px; }
    .pricing-name { font-size: 24px; }
    .pricing-current { font-size: 32px; white-space: nowrap; }
    .pricing-won { font-size: 18px; }
    .pricing-period { font-size: 14px; }
    .final-title-en { font-size: 32px; }
    .final-body { font-size: 15px; }
    .final-cta { padding: 16px 40px; font-size: 14px; }
    .nav { padding: 0 16px; height: 56px; }
    .nav-logo-img { height: 18px; }
    .footer { padding: 48px 20px; }
    .footer-info p { font-size: 11px; }
    .proof-bar { padding: 4px 10px; overflow: hidden; }
    .proof-bar-inner {
        gap: 20px;
        flex-wrap: nowrap;
    }
    .proof-item { min-width: 60px; gap: 1px; }
    .proof-logo { width: 14px; height: 14px; margin-bottom: 1px; }
    .proof-number { font-size: 9px; }
    .proof-label { font-size: 6px; }
    .proof-divider-dot { display: none; }
    .proof-item { width: 80px; min-width: 80px; }

    /* Card News Compare - Mobile */
    .cardnews-compare {
        flex-direction: column;
        gap: 20px;
        margin-top: 40px;
    }
    .cardnews-item {
        max-width: 300px;
        margin: 0 auto;
    }
    .cardnews-vs {
        padding: 0;
    }
    .cardnews-vs-text {
        font-size: 24px;
    }
    .cardnews-label {
        font-size: 15px;
    }
    .cardnews-chevron {
        font-size: 24px;
    }
}

/* ===== Social Proof Bar ===== */
.proof-bar {
    background: rgba(26, 10, 14, 0.8);
    border-top: 1px solid rgba(139, 38, 53, 0.15);
    border-bottom: 1px solid rgba(139, 38, 53, 0.15);
    padding: 24px 60px;
    overflow: hidden;
}

.proof-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-align: center;
    width: 140px;
    min-width: 140px;
    flex-shrink: 0;
}

.proof-logo {
    width: 18px;
    height: 18px;
    object-fit: contain;
    border-radius: 4px;
    margin-bottom: 2px;
    filter: brightness(1.1);
    opacity: 0.7;
}

.proof-number {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--warm-gray-light);
    letter-spacing: 1px;
}

.proof-label {
    font-size: 10px;
    color: var(--warm-gray);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.proof-divider-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--burgundy-accent);
}

/* ===== Page Hero (sub pages) ===== */
.page-hero {
    padding: 160px 60px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(45,10,20,0.7) 0%, rgba(10,4,6,0.8) 100%),
                var(--page-hero-bg, none) center center / cover no-repeat;
}

/* Page hero object (whiskey + globe) */
.page-hero-object {
    position: absolute;
    right: -5%;
    bottom: -15%;
    width: 50%;
    max-width: 600px;
    pointer-events: none;
    z-index: 0;
}

.page-hero-object img {
    width: 100%;
    height: auto;
    display: block;
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 70% 60%, black 20%, transparent 70%);
    mask-image: radial-gradient(ellipse 70% 70% at 70% 60%, black 20%, transparent 70%);
}

.page-hero .section-inner {
    position: relative;
    z-index: 1;
}

/* Page-specific hero backgrounds */
.page-hero-membership {
    --page-hero-bg: url('images/membership-hero-bg.png');
}
.page-hero-lab {
    --page-hero-bg: url('images/lab-hero-bg.png');
}
.page-hero-insights {
    --page-hero-bg: url('images/insights-hero-bg.png');
}

.page-hero-title {
    font-family: 'Sora', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 16px;
    letter-spacing: -1px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.page-hero-sub {
    font-size: 17px;
    color: var(--warm-gray);
    line-height: 1.7;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 0, 0, 0.7), 0 0 80px rgba(0, 0, 0, 0.5);
}

/* ===== Nav Active Link ===== */
.nav-link-active {
    color: var(--gold) !important;
}

/* ===== Hero CTA Group ===== */
.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-cta-secondary {
    display: inline-block;
    background: none;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0;
    padding-left: 24px;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
    border: none;
    transition: color 0.3s ease;
}
.hero-cta-secondary:hover {
    color: var(--gold);
}

/* ===== Full Pricing Section (membership page) ===== */
.section-pricing-full {
    background: linear-gradient(180deg, rgba(10,4,6,0.55) 0%, rgba(10,4,6,0.55) 100%),
                url('images/process-bg.png') center center / cover no-repeat;
}

.section-pricing-preview {
    background: linear-gradient(180deg, rgba(10,4,6,0.7) 0%, rgba(26,10,14,0.65) 50%, rgba(10,4,6,0.7) 100%),
                url('images/pricing-bg.png') center center / cover no-repeat;
}

/* ===== Process Full (lab page) ===== */
.section-process-full {
    background: linear-gradient(180deg, rgba(10,4,6,0.65) 0%, rgba(26,10,14,0.6) 50%, rgba(10,4,6,0.65) 100%),
                url('images/process-bg.png') center center / cover no-repeat;
}

.step-subtitle {
    font-size: 14px;
    color: var(--warm-gray);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

/* ===== Promise Section ===== */
.section-promise {
    background: linear-gradient(180deg, rgba(10,4,6,0.65) 0%, rgba(10,4,6,0.65) 100%),
                url('images/promise-bg.png') center center / cover no-repeat;
    padding: 120px 60px;
}

.promise-body {
    font-size: 18px;
    color: var(--warm-gray-light);
    line-height: 2;
    margin-bottom: 48px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 0, 0, 0.7), 0 0 80px rgba(0, 0, 0, 0.5);
}

/* ===== Insight Cards (insights page) ===== */
.section-insight-cards {
    background: linear-gradient(180deg, rgba(10,4,6,0.65) 0%, rgba(10,4,6,0.65) 100%),
                url('images/insights-bg.png') center center / cover no-repeat;
}

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

.insight-card {
    background: rgba(26, 10, 14, 0.5);
    border: 1px solid rgba(139, 38, 53, 0.15);
    overflow: hidden;
    transition: all 0.4s ease;
}

.insight-card:hover {
    border-color: var(--burgundy-accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(139, 38, 53, 0.15);
}

.insight-card-img {
    height: 160px;
    width: 100%;
}

.insight-card-body {
    padding: 28px 24px;
    text-align: left;
}

.insight-tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}

.insight-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 12px;
    line-height: 1.5;
}

.insight-card-desc {
    font-size: 14px;
    color: var(--warm-gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

.insight-card-date {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: var(--warm-gray);
}

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

.insight-more-btn {
    display: inline-block;
    color: var(--warm-gray);
    text-decoration: none;
    font-size: 14px;
    padding: 16px 32px;
    border: 1px solid rgba(139, 38, 53, 0.3);
    transition: all 0.3s ease;
}

.insight-more-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

@media (max-width: 1024px) {
    .insight-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
    .page-hero { padding: 120px 32px 60px; }
    .page-hero-title { font-size: 36px; }
}

@media (max-width: 640px) {
    .insight-grid { gap: 16px; }
    .insight-card-body { padding: 20px 16px; }
    .insight-card-title { font-size: 16px; }
    .page-hero { padding: 100px 20px 40px; }
    .page-hero-title { font-size: 28px; }
    .page-hero-sub { font-size: 14px; }
}

/* ===== Typewriter Cursor ===== */
.typewriter-cursor {
    color: var(--gold);
    font-weight: 300;
    animation: blink 0.7s infinite;
    transition: opacity 0.4s ease;
}

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

/* ===== Loading Intro ===== */
.loading-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg-black);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loading-logo {
    font-family: 'Sora', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 12px;
    opacity: 0;
    animation: logoFadeIn 0.8s ease-out 0.1s forwards;
}

.loading-logo-img {
    height: 48px;
    width: auto;
    opacity: 0;
    animation: logoFadeIn 0.8s ease-out 0.1s forwards;
}

.loading-line {
    width: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin-top: 24px;
    animation: lineExpand 0.6s ease-out 0.4s forwards;
}

.loading-tagline {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--warm-gray);
    margin-top: 16px;
    opacity: 0;
    animation: logoFadeIn 0.5s ease-out 0.6s forwards;
}

@keyframes logoFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes lineExpand {
    from { width: 0; }
    to { width: 120px; }
}

/* ===== Gold Glow Utilities ===== */
.gold-glow {
    text-shadow: 0 0 40px rgba(212, 168, 67, 0.15), 0 0 80px rgba(212, 168, 67, 0.05);
}

.burgundy-glow {
    box-shadow: 0 0 60px rgba(139, 38, 53, 0.1), 0 0 120px rgba(139, 38, 53, 0.05);
}

/* ===== Section Gold Divider Lines ===== */
.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212, 168, 67, 0.3), transparent);
}

/* ===== Card Shine Effect (mouse tracking) ===== */
.value-card, .pricing-card, .vs-card-rogers, .insight-card {
    position: relative;
    overflow: hidden;
}

.value-card::before, .pricing-card::before, .vs-card-rogers::before, .insight-card::before {
    content: '';
    position: absolute;
    top: var(--mouse-y, -100%);
    left: var(--mouse-x, -100%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.06) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: opacity 0.3s ease;
    opacity: 0;
    z-index: 1;
}

.value-card:hover::before, .pricing-card:hover::before, .vs-card-rogers:hover::before, .insight-card:hover::before {
    opacity: 1;
}

/* ===== Parallax Background ===== */
.parallax-bg {
    will-change: transform;
    transition: transform 0.1s linear;
}

/* ===== Enhanced Hero Glow ===== */
.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: 30%;
    width: 40%;
    height: 40%;
    background: radial-gradient(ellipse, rgba(139, 38, 53, 0.15) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

/* ===== Moving Gold Glow on Hero ===== */
.hero-gold-glow {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.hero-gold-glow-1 {
    top: 10%;
    right: 15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0%, transparent 60%);
    animation: goldDrift1 8s ease-in-out infinite;
}

.hero-gold-glow-2 {
    top: 40%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.05) 0%, transparent 60%);
    animation: goldDrift2 10s ease-in-out infinite;
}

.hero-gold-glow-3 {
    bottom: 10%;
    right: 30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 38, 53, 0.1) 0%, transparent 60%);
    animation: goldDrift3 7s ease-in-out infinite;
}

@keyframes goldDrift1 {
    0%, 100% { transform: translate(0, 0); opacity: 0.6; }
    25% { transform: translate(-40px, 20px); opacity: 1; }
    50% { transform: translate(-20px, 40px); opacity: 0.7; }
    75% { transform: translate(20px, 10px); opacity: 0.9; }
}

@keyframes goldDrift2 {
    0%, 100% { transform: translate(0, 0); opacity: 0.4; }
    33% { transform: translate(30px, -20px); opacity: 0.8; }
    66% { transform: translate(-15px, 30px); opacity: 0.5; }
}

@keyframes goldDrift3 {
    0%, 100% { transform: translate(0, 0); opacity: 0.5; }
    50% { transform: translate(25px, -25px); opacity: 0.9; }
}

/* ===== Floating Particles ===== */
.particles-container {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle var(--duration, 8s) ease-in-out var(--delay, 0s) infinite;
}

@keyframes floatParticle {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-20vh) scale(1); }
}

/* ===== Section Eyebrow Enhancement ===== */
.section-eyebrow {
    position: relative;
    display: inline-block;
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: '—';
    color: rgba(212, 168, 67, 0.3);
    margin: 0 12px;
}

/* ===== Quote Portrait ===== */
.quote-portrait {
    position: absolute;
    right: 3%;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 550px;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.quote-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 30% 20%;
    opacity: 0.22;
    filter: grayscale(100%) contrast(1.1) brightness(0.9);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 15%, transparent 60%);
    mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 15%, transparent 60%);
}

.section-quote .section-inner {
    position: relative;
    z-index: 1;
}

/* ===== Enhanced Quote Section ===== */
.section-quote {
    position: relative;
    overflow: hidden;
}

.section-quote::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212, 168, 67, 0.2), transparent);
}

/* ===== Pricing Card Best - Glow Border ===== */
.pricing-card-best {
    position: relative;
}

.pricing-card-best::after {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, var(--gold), var(--burgundy-accent), var(--gold));
    z-index: -1;
    opacity: 0.6;
    filter: blur(8px);
    transition: opacity 0.4s ease;
}

.pricing-card-best:hover::after {
    opacity: 1;
}

/* ===== Stagger Animation Delays ===== */
.value-card:nth-child(1) { transition-delay: 0s; }
.value-card:nth-child(2) { transition-delay: 0.15s; }
.value-card:nth-child(3) { transition-delay: 0.3s; }

.number-item:nth-child(1) { transition-delay: 0s; }
.number-item:nth-child(2) { transition-delay: 0.1s; }
.number-item:nth-child(3) { transition-delay: 0.2s; }
.number-item:nth-child(4) { transition-delay: 0.3s; }

/* ===== Smooth Reveal Animation ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 1;
}

.reveal-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-animate.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Gold Accent Line for Hero Divider ===== */
.hero-divider {
    position: relative;
    overflow: visible;
}

.hero-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    filter: blur(6px);
    opacity: 0.4;
}

/* ===== VS Section Glow ===== */
.vs-text {
    text-shadow: 0 0 30px rgba(139, 38, 53, 0.5);
}

/* ===== Button Luxury Hover ===== */
.hero-cta, .final-cta, .pricing-cta-best, .nav-cta {
    position: relative;
    overflow: hidden;
}

.hero-cta::after, .final-cta::after, .pricing-cta-best::after, .nav-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    transition: left 0.5s ease;
}

.hero-cta:hover::after, .final-cta:hover::after, .pricing-cta-best:hover::after, .nav-cta:hover::after {
    left: 100%;
}

/* ===== Final CTA Section Dramatic Glow ===== */
.section-final-cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 38, 53, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

/* ===== Scroll Progress Bar ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(to right, var(--burgundy-accent), var(--gold));
    z-index: 9999;
    transition: width 0.1s linear;
    box-shadow: 0 0 8px rgba(212, 168, 67, 0.4);
}

/* ===== CTA Button Auto Shimmer ===== */
@keyframes btnShimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

.hero-cta::after, .final-cta::after, .pricing-cta-best::after, .nav-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    animation: btnShimmer 3s ease-in-out infinite;
}

/* ===== BEST VALUE Badge Pulse ===== */
.pricing-badge-best {
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; text-shadow: 0 0 0 transparent; }
    50% { opacity: 0.85; text-shadow: 0 0 12px rgba(212, 168, 67, 0.5); }
}

/* ===== Proof Bar Marquee ===== */
.proof-bar {
    overflow: hidden;
}

.proof-bar-inner {
    justify-content: flex-start;
}

.proof-marquee {
    animation: marqueeScroll 25s linear infinite;
    width: max-content;
    display: flex !important;
    gap: 40px;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}

/* ===== Back to Top Button ===== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    background: rgba(26, 10, 14, 0.9);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--burgundy-accent);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(212, 168, 67, 0.2);
}

/* ===== Cursor Gold Trail ===== */
.cursor-trail-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    overflow: hidden;
}

.cursor-trail-dot {
    position: fixed;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.6;
    animation: trailFade 0.6s ease-out forwards;
}

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

/* ===== Section Divider Line Expand ===== */
.section::before {
    width: 0;
    transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.section.divider-visible::before {
    width: 200px;
}

/* ===== Gold Text Glow Animation ===== */
.gold-text-glow {
    animation: goldGlowIn 1.5s ease-out forwards;
}

@keyframes goldGlowIn {
    0% { text-shadow: 0 0 0 transparent; }
    50% { text-shadow: 0 0 20px rgba(212, 168, 67, 0.4), 0 0 40px rgba(212, 168, 67, 0.2); }
    100% { text-shadow: 0 0 8px rgba(212, 168, 67, 0.15); }
}
