/* BlueCanvas Traffic - Standalone CSS */
/* 독립적인 트래픽 페이지 전용 스타일 */

:root {
    --bg: #030611;
    --bg-alt: #080c16;
    --bg-glass: rgba(4,8,20,0.75);
    --primary: #4f8df0;
    --primary-soft: rgba(79,141,240,0.2);
    --text: #f1f5f9;
    --muted: rgba(236,245,255,0.65);
    --accent: #6be2ff;
    --accent-purple: #764ba2;
    --border: rgba(120,146,189,0.2);
    --section-space-y: clamp(4rem, 6vw, 6.5rem);
    --header-height: clamp(5rem, 5vw, 5.6rem);

    /* Header specific variables */
    --color-background: #111827;
    --color-surface: rgba(12, 20, 40, 0.75);
    --color-line: rgba(255, 255, 255, 0.08);
    --max-width: 1200px;
    --transition: 180ms ease;
}

html {
    margin: 0 !important;
    padding: 0 !important;
}

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

body {
    margin: 0 !important;
    font-family: "Noto Sans KR","Manrope","Apple SD Gothic Neo",sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img, video {
    display: block;
    max-width: 100%;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ========================================
   Header Navigation Styles
   ======================================== */

/* Site Header */
.site-header {
    position: sticky;
    top: 0 !important;
    margin: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    backdrop-filter: blur(18px);
    background: linear-gradient(180deg, rgba(8, 12, 24, 0.82), rgba(8, 12, 24, 0.68));
    z-index: 20;
    border-bottom: 1px solid var(--color-line);
    box-shadow: 0 2px 12px rgba(2, 6, 23, 0.25);
}

.site-header .container {
    width: min(100% - 3rem, var(--max-width));
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.25rem 0;
}

/* Brand / Logo */
.brand {
    display: inline-flex;
    align-items: center;
    color: var(--text);
}

.brand .logo {
    display: block;
    height: 32px;
    width: auto;
}

/* Primary Navigation */
.primary-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-items {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-items li {
    position: relative;
}

.nav-items a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--muted);
    transition: color var(--transition);
}

.nav-items a:hover,
.nav-items a:focus-visible {
    color: var(--text);
}

/* Contact Chip */
.contact-chip {
    border: 1px solid var(--color-line);
    padding: 0.6rem 1rem;
    border-radius: 999px;
    font-size: 0.9rem;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.02);
    transition: background var(--transition), color var(--transition), border var(--transition);
}

.contact-chip:hover,
.contact-chip:focus-visible {
    border-color: transparent;
    background: linear-gradient(135deg, #1A2A80, #3B38A0);
    color: #ffffff;
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 0.25rem;
    cursor: pointer;
}

.nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--text);
    margin: 4px 0;
    transition: transform var(--transition);
}

/* Hamburger -> Close animation */
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Navigation Backdrop */
.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    transition: opacity 240ms ease;
}

.nav-backdrop.is-active {
    display: block;
    opacity: 1;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-close {
    display: none;
}

.mobile-nav-actions {
    display: none;
}

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

main {
    margin-top: 0;
}

section {
    padding: var(--section-space-y) 0;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 2rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    border: 1px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.btn.primary {
    background: linear-gradient(120deg, #4674ff 0%, #05c3ff 100%);
    color: #031222;
    box-shadow: 0 12px 30px rgba(19,102,255,0.35);
}

.btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(19,102,255,0.5);
}

.btn.ghost {
    background: var(--primary-soft);
    border-color: rgba(107,226,255,0.45);
    color: var(--accent);
}

.btn.ghost:hover {
    border-color: rgba(107,226,255,0.7);
    background: rgba(79,141,240,0.3);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    padding: var(--section-space-y) 0;
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5) saturate(1.05);
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-video-bg.active {
    opacity: 1;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(3,6,17,0) 0%, rgba(3,6,17,0.6) 60%, rgba(3,6,17,0.9) 100%);
    z-index: 3;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: center;
}

.hero-content {
    max-width: 1000px;
    text-align: center;
    padding: 0 1rem;
}

.hero-eyebrow {
    font-size: 0.95rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-title {
    font-size: clamp(2.4rem, 6.5vw, 4.5rem);
    line-height: 1.08;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    max-width: 100%;
    word-break: keep-all;
}

.hero-lead {
    font-size: clamp(1.1rem, 2.4vw, 1.4rem);
    color: rgba(255,255,255,0.82);
    margin-bottom: 2.5rem;
    line-height: 1.65;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.metrics {
    margin-top: 3.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.metric {
    background: var(--bg-glass);
    padding: 1.8rem;
    border-radius: 1.4rem;
    border: 1px solid var(--border);
    backdrop-filter: blur(16px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.metric::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1.4rem;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.metric:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(107, 226, 255, 0.2);
}

.metric:hover::before {
    opacity: 1;
}

.metric strong {
    display: block;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.metric:hover strong {
    transform: scale(1.1);
}

.metric span {
    font-size: 0.95rem;
    color: var(--muted);
}

/* Section Styles */
.section-head {
    max-width: 1000px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.7rem 1.3rem 0.5rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-purple);
    background: rgba(118, 75, 162, 0.1);
    border: 1px solid rgba(118, 75, 162, 0.2);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
    margin-bottom: 1rem;
    line-height: 1;
    vertical-align: middle;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
    max-width: 100%;
}

.section-lead {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 2.2rem;
    position: relative;
    cursor: default;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    backdrop-filter: blur(14px);
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(107, 226, 255, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(70, 116, 255, 0.2), rgba(5, 195, 255, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(107, 226, 255, 0.3);
}

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: rgba(241, 245, 249, 0.92);
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--accent);
}

.feature-card p {
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.65;
    margin-bottom: 1.2rem;
}

.feature-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.feature-card li {
    position: relative;
    padding-left: 1.6rem;
    color: rgba(241, 245, 249, 0.82);
    font-size: 0.93rem;
    line-height: 1.5;
}

.feature-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.18);
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(160deg, rgba(10, 14, 28, 0.92) 0%, rgba(9, 16, 34, 0.88) 35%, rgba(20, 35, 66, 0.78) 100%);
    border-top: 1px solid rgba(118, 75, 162, 0.2);
    border-bottom: 1px solid rgba(86, 194, 255, 0.18);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(107, 226, 255, 0.12), transparent 55%),
                radial-gradient(circle at 80% 15%, rgba(118, 75, 162, 0.16), transparent 60%);
    pointer-events: none;
}

.benefits-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: rgba(3, 8, 20, 0.65);
    border: 1px solid rgba(118, 75, 162, 0.3);
    border-radius: 1.6rem;
    padding: 2.2rem;
    backdrop-filter: blur(18px);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(86, 194, 255, 0.55);
    box-shadow: 0 28px 60px rgba(86, 194, 255, 0.25);
}

.benefit-number {
    display: inline-flex;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border: 1px solid rgba(107, 226, 255, 0.3);
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--accent);
    margin-bottom: 1.2rem;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.9rem;
    font-weight: 700;
}

.benefit-card p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 1rem;
}

/* Premium Quality Section */
.premium-quality-section {
    position: relative;
    overflow: hidden;
}

.premium-quality-grid {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 48px;
    align-items: center;
}

.premium-quality-main-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
    margin-top: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.premium-quality-intro {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.premium-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.premium-feature-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.premium-feature-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.premium-feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(107, 226, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.premium-feature-item:hover::before {
    opacity: 1;
}

.premium-feature-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    display: inline-block;
}

.premium-feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: rgba(241, 245, 249, 0.92);
    transition: color 0.3s ease;
}

.premium-feature-item:hover h4 {
    color: var(--accent);
}

.premium-feature-item p {
    margin: 0;
    color: var(--muted);
    font-size: 0.93rem;
    line-height: 1.5;
}

.premium-quality-media {
    position: relative;
}

.premium-quality-video-wrapper {
    aspect-ratio: 16 / 25;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(107, 226, 255, 0.35);
    box-shadow: 0 25px 60px rgba(8, 19, 35, 0.55);
    background: rgba(7, 13, 25, 0.85);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-quality-video-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 70px rgba(107, 226, 255, 0.3);
}

.premium-quality-video-wrapper video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Process & CTA Section */
.process-cta-section {
    position: relative;
    overflow: hidden;
}

.process-cta-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35) saturate(1.2);
    z-index: 0;
}

.process-cta-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(3,6,17,0) 0%, rgba(3,6,17,0.5) 60%, rgba(3,6,17,0.8) 100%);
    z-index: 0;
    pointer-events: none;
}

.process-cta-section .container {
    position: relative;
    z-index: 1;
}

.process-steps {
    margin-top: 3rem;
    margin-bottom: 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.process-step {
    padding: 2rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(16px);
    box-shadow: 0 16px 36px rgba(12, 7, 28, 0.32);
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.process-step:hover {
    transform: translateY(-6px);
    border-color: rgba(107, 226, 255, 0.3);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 15px 35px rgba(107, 226, 255, 0.15), 0 25px 60px rgba(10, 4, 30, 0.35);
}

.process-step-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    display: inline-flex;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    background: rgba(107, 226, 255, 0.18);
    color: var(--text);
    font-weight: 600;
    position: relative;
    animation: stepGlow 3s ease-in-out infinite;
}

.step-number::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    opacity: 0;
    animation: stepPulse 3s ease-in-out infinite;
}

.process-step:nth-child(1) .step-number {
    animation-delay: 0s;
}

.process-step:nth-child(1) .step-number::before {
    animation-delay: 0s;
}

.process-step:nth-child(2) .step-number {
    animation-delay: 0.75s;
}

.process-step:nth-child(2) .step-number::before {
    animation-delay: 0.75s;
}

.process-step:nth-child(3) .step-number {
    animation-delay: 1.5s;
}

.process-step:nth-child(3) .step-number::before {
    animation-delay: 1.5s;
}

.process-step:nth-child(4) .step-number {
    animation-delay: 2.25s;
}

.process-step:nth-child(4) .step-number::before {
    animation-delay: 2.25s;
}

@keyframes stepGlow {
    0%, 100% {
        box-shadow: 0 0 0 rgba(107, 226, 255, 0);
    }
    25% {
        box-shadow: 0 0 20px rgba(107, 226, 255, 0.6), 0 0 40px rgba(107, 226, 255, 0.4);
    }
}

@keyframes stepPulse {
    0%, 100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1);
    }
    25% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.4);
    }
    50% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.8);
    }
}

.process-step h3 {
    color: var(--text);
    font-size: 1.2rem;
    margin: 0;
    font-weight: 700;
    word-break: keep-all;
    line-height: 1.3;
    flex: 1;
}

.process-step p {
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.6;
    word-break: keep-all;
    margin: 0;
}

/* CTA Section */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, rgba(70, 116, 255, 0.1), rgba(118, 75, 162, 0.1));
    border: 1px solid rgba(107, 226, 255, 0.3);
    border-radius: 2rem;
    padding: 4rem 2.5rem;
    text-align: center;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: -40% 30% auto -10%;
    height: 140%;
    background: linear-gradient(130deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.3));
    filter: blur(80px);
    opacity: 0.6;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-section p {
    color: var(--muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section */
.contact-section {
    position: relative;
    padding: 5rem 0 6rem;
    background: linear-gradient(180deg, rgb(17, 24, 39) 0%, #111827 55%, #0f172a 100%);
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 14% 18%, rgba(99, 102, 241, 0.45) 0%, rgba(99, 102, 241, 0) 55%),
        radial-gradient(circle at 86% 8%, rgba(236, 72, 153, 0.35) 0%, rgba(236, 72, 153, 0) 52%);
    mix-blend-mode: screen;
    opacity: 0.65;
    pointer-events: none;
}

.contact-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 160px;
    background: linear-gradient(180deg, rgba(7, 11, 27, 0) 0%, #070b1b 85%);
    pointer-events: none;
}

.contact-header {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 3rem;
}

.contact-eyebrow {
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: #6366f1;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.contact-title {
    font-size: clamp(2rem, 2.6vw + 1rem, 2.8rem);
    margin-bottom: 1rem;
    line-height: 1.3;
    font-weight: 700;
}

.contact-lead {
    color: rgba(244, 246, 255, 0.72);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-methods {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.contact-method {
    background: rgba(12, 20, 40, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.2rem;
    padding: 1.8rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 8px 32px rgba(4, 8, 20, 0.3);
}

.contact-method:hover {
    transform: translateY(-3px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 16px 48px rgba(4, 8, 20, 0.45), 0 0 0 1px rgba(99, 102, 241, 0.2);
    background-color: rgba(12, 20, 40, 0.85);
}

.contact-method-icon {
    flex: 0 0 auto;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(236, 72, 153, 0.2));
    border-radius: 14px;
    font-size: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-method-info {
    flex: 1;
}

.contact-method-info h3 {
    margin: 0 0 0.4rem;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(244, 246, 255, 0.9);
    letter-spacing: 0.02em;
}

.contact-method-info p {
    margin: 0;
    font-size: 1rem;
    color: #a5b4fc;
    font-weight: 500;
}

.mobile-break {
    display: none;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .premium-quality-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .premium-quality-video-wrapper {
        aspect-ratio: 16 / 20;
        max-width: 400px;
        margin: 0 auto;
    }

    .premium-feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Header Mobile Styles */
    .site-header .container {
        gap: 1rem;
    }

    .nav-toggle {
        display: block;
    }

    /* Hide desktop list when mobile drawer is in use */
    .primary-nav .nav-items {
        display: none;
    }

    /* Mobile off-canvas navigation */
    .mobile-nav {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(85vw, 360px);
        background: linear-gradient(180deg, rgba(11, 17, 33, 0.98), rgba(11, 17, 33, 0.92));
        border-left: 1px solid var(--color-line);
        flex-direction: column;
        align-items: stretch;
        padding: 1.25rem 1.25rem 2rem;
        gap: 0.25rem;
        font-weight: 500;
        font-size: 0.95rem;
        transform: translateX(100%);
        transition: transform 240ms ease;
        z-index: 1000;
        overflow: hidden;
    }

    .mobile-nav-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 20px;
        height: 20px;
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.08);
        border: 0;
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.9rem;
        font-weight: 300;
        cursor: pointer;
        transition: all 0.2s ease;
        align-self: flex-end;
        margin: 0 0 0.6rem 0;
        padding: 0;
        line-height: 1;
        flex-shrink: 0;
    }

    .mobile-nav-close:hover,
    .mobile-nav-close:focus-visible {
        background: rgba(255, 255, 255, 0.15);
        color: #fff;
        transform: scale(1.05);
    }

    .mobile-nav-close:active {
        transform: scale(0.95);
    }

    .mobile-nav-close + .mobile-nav-menu {
        margin: 0;
        padding-top: 0.6rem;
        border-top: 1px solid var(--color-line);
    }

    .mobile-nav-menu {
        margin: 0;
        padding: 0;
        list-style: none;
        flex: 1 1 auto;
        min-height: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-nav-actions {
        margin: 1rem 0 0 0;
        padding: 0;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .mobile-nav li:not(.mobile-nav-actions) a {
        display: block;
        padding: 0.85rem 0.75rem;
        border-radius: 0.75rem;
        color: var(--text);
        letter-spacing: 0.03em;
        background: transparent;
    }

    .mobile-nav li:not(.mobile-nav-actions) a:hover,
    .mobile-nav li:not(.mobile-nav-actions) a:focus-visible {
        color: #fff;
        background: rgba(255, 255, 255, 0.04);
    }

    .mobile-nav-action {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.85rem 1rem;
        border-radius: 999px;
        font-size: 0.92rem;
        font-weight: 600;
        text-decoration: none;
        flex: 1 1 auto;
        min-width: 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .mobile-nav-action:active {
        transform: translateY(1px);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    }

    .mobile-nav-action--kakao {
        background: linear-gradient(135deg, #facc15, #f59e0b);
        color: #111827;
    }

    .mobile-nav-action--telegram {
        background: linear-gradient(135deg, #3b82f6, #2563eb);
        color: #f1f5f9;
    }

    .mobile-nav.is-open {
        transform: translateX(0);
    }

    body.is-nav-open {
        overflow: hidden;
        touch-action: none;
    }

    .contact-chip {
        display: none;
    }

    /* Other Mobile Styles */
    .hero-cta {
        flex-direction: column;
    }

    .metrics {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .mobile-break {
        display: inline;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .process-step {
        padding: 1.8rem;
    }

    .premium-quality-grid {
        gap: 24px;
    }

    .premium-quality-main-title {
        font-size: 1.8rem;
    }

    .premium-quality-video-wrapper {
        aspect-ratio: 16 / 18;
        max-width: 320px;
    }

    .premium-feature-grid {
        gap: 1rem;
    }

    .premium-feature-item {
        padding: 1.2rem;
    }

    .premium-feature-icon {
        font-size: 1.6rem;
    }

    .premium-feature-item h4 {
        font-size: 1rem;
    }

    .premium-feature-item p {
        font-size: 0.88rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-method {
        padding: 1.4rem;
    }

    .contact-method-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

@media (max-width: 600px) {
    .contact-section {
        padding: 3rem 0 4rem;
    }

    .contact-method {
        padding: 1.2rem;
    }

    .contact-method-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .contact-method-info h3 {
        font-size: 0.9rem;
    }

    .contact-method-info p {
        font-size: 0.9rem;
    }
}

/* ========================================
   Footer Styles
   ======================================== */

.global-footer {
    position: relative;
    padding: 80px 32px 48px;
    background: radial-gradient(circle at top left, rgba(99, 102, 241, 0.14) 0%, transparent 55%),
                radial-gradient(circle at top right, rgba(236, 72, 153, 0.16) 0%, transparent 55%),
                linear-gradient(180deg, #111827 0%, #0f172a 100%);
    color: rgba(226, 232, 240, 0.88);
    overflow: hidden;
}

.global-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% -10%, rgba(148, 163, 184, 0.16) 0%, rgba(148, 163, 184, 0) 55%);
    pointer-events: none;
}

.global-footer__inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto 56px;
}

.global-footer__brand {
    max-width: 100%;
}

.global-footer__logo-wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
}

.global-footer__logo {
    display: inline-flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
    flex-shrink: 0;
}

.global-footer__logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.global-footer__description {
    max-width: 650px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(226, 232, 240, 0.78);
    margin: 0;
}

.global-footer__bottom {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 28px;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    font-size: 0.88rem;
    color: rgba(226, 232, 240, 0.7);
    flex-wrap: wrap;
}

.global-footer__copy {
    margin: 0;
}

.global-footer__actions {
    display: inline-flex;
    gap: 12px;
    flex-wrap: wrap;
}

.global-footer__actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.18);
    color: rgba(226, 232, 240, 0.88);
    font-size: 0.85rem;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.global-footer__actions a:hover {
    background: rgba(148, 163, 184, 0.32);
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .global-footer__logo-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .global-footer__logo img {
        height: 36px;
        width: auto;
    }
}

@media (max-width: 600px) {
    .global-footer {
        padding: 64px 24px 40px;
    }

    .global-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .global-footer__logo img {
        height: 32px;
        width: auto;
    }

    .global-footer__description {
        font-size: 0.88rem;
    }
}

/* ========================================
   Header Auth Buttons
   ======================================== */

.header-auth-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-login {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    background: transparent;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: rgba(79, 141, 240, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-signup {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), #667eea);
    border: none;
    box-shadow: 0 4px 12px rgba(79, 141, 240, 0.3);
    transition: all 0.3s ease;
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 141, 240, 0.4);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .header-auth-buttons {
        display: none;
    }

    .mobile-nav-action--login,
    .mobile-nav-action--signup {
        display: block;
    }
}

@media (min-width: 769px) {
    .mobile-nav-action--login,
    .mobile-nav-action--signup {
        display: none;
    }
}

/* ========================================
   Welcome Event Badge (Hero Section)
   ======================================== */

.welcome-event-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 20px 28px;
    margin-top: 32px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(79, 141, 240, 0.15));
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    animation: pulse-glow 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.welcome-event-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.event-badge-icon {
    font-size: 2rem;
    animation: bounce 1s ease-in-out infinite;
}

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

.event-badge-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.event-badge-text strong {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}

.event-badge-text span {
    font-size: 0.95rem;
    color: var(--muted);
}

@media (max-width: 768px) {
    .welcome-event-badge {
        padding: 16px 20px;
        gap: 12px;
    }

    .event-badge-icon {
        font-size: 1.5rem;
    }

    .event-badge-text strong {
        font-size: 1rem;
    }

    .event-badge-text span {
        font-size: 0.85rem;
    }
}

/* ========================================
   Get Started Section
   ======================================== */

.get-started-section {
    padding: var(--section-space-y) 0;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 50%, var(--bg) 100%);
    position: relative;
    overflow: hidden;
}

.get-started-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(79, 141, 240, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.get-started-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.get-started-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.get-started-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 12px;
}

.get-started-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(79, 141, 240, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary);
}

.feature-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.get-started-feature span:last-child {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.5;
}

.get-started-cta {
    margin-top: 32px;
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-icon {
    font-size: 1.4rem;
    animation: bounce 1s ease-in-out infinite;
}

.cta-note {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--muted);
}

.cta-note a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 500;
}

.cta-note a:hover {
    color: var(--accent);
}

/* ========================================
   Event Promo Card
   ======================================== */

.get-started-visual {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.event-promo-card {
    background: linear-gradient(135deg, rgba(79, 141, 240, 0.15), rgba(139, 92, 246, 0.15));
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 24px;
    padding: 48px 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(79, 141, 240, 0.2);
}

.event-promo-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.promo-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #8b5cf6, #667eea);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 999px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
}

.promo-amount {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #4f8df0, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.promo-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.promo-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.promo-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(8, 12, 22, 0.6);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.benefit-icon {
    font-size: 1.5rem;
}

.promo-benefit span:last-child {
    color: var(--text);
    font-weight: 500;
    font-size: 1rem;
}

/* ========================================
   Contact Support
   ======================================== */

.contact-support {
    padding: 32px 28px;
    background: rgba(79, 141, 240, 0.05);
    border: 1px solid var(--border);
    border-radius: 16px;
    text-align: center;
}

.support-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 20px;
}

.support-methods {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.support-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.support-link:hover {
    background: var(--primary-soft);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.support-icon {
    font-size: 1.2rem;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1024px) {
    .get-started-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .get-started-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .get-started-section {
        padding: 4rem 0;
    }

    .event-promo-card {
        padding: 36px 24px;
    }

    .promo-amount {
        font-size: 3rem;
    }

    .promo-subtitle {
        font-size: 1.1rem;
    }

    .support-methods {
        flex-direction: column;
    }

    .support-link {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .btn-large {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 1rem;
    }

    .get-started-feature {
        padding: 10px;
    }

    .get-started-feature span:last-child {
        font-size: 0.9rem;
    }
}

/* ========================================
   Order Preview Section
   ======================================== */

.order-preview-section {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
    padding: var(--section-space-y) 0;
}

.order-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.order-preview-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.order-preview-card:hover {
    border-color: rgba(107, 226, 255, 0.3);
    box-shadow: 0 8px 32px rgba(107, 226, 255, 0.1);
}

.order-preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.order-preview-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
}

.order-preview-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(70, 116, 255, 0.2), rgba(5, 195, 255, 0.2));
    border: 1px solid rgba(107, 226, 255, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
}

.order-preview-badge--recurring {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(167, 139, 250, 0.2));
    border-color: rgba(167, 139, 250, 0.3);
    color: #c4b5fd;
}

.order-preview-form {
    position: relative;
    filter: blur(0);
    transition: filter 0.3s ease;
}

.preview-form-group {
    margin-bottom: 1.25rem;
}

.preview-form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.preview-form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text);
    font-size: 0.95rem;
    cursor: not-allowed;
    transition: all 0.2s ease;
}

.preview-form-input:focus {
    outline: none;
}

.preview-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.preview-info-box {
    margin-top: 1rem;
    padding: 0.875rem 1rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.preview-info-box--blue {
    background: rgba(70, 116, 255, 0.1);
    border-color: rgba(107, 226, 255, 0.2);
}

.preview-info-box--blue .preview-info-text {
    color: var(--accent);
}

.preview-info-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.preview-info-text {
    font-size: 0.9rem;
    color: #c4b5fd;
    font-weight: 500;
    word-break: keep-all;
    line-height: 1.5;
}

.preview-price-box {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(70, 116, 255, 0.1), rgba(5, 195, 255, 0.1));
    border: 1px solid rgba(107, 226, 255, 0.2);
    border-radius: 12px;
    text-align: center;
}

.preview-price-label {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.preview-price-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent);
}

.preview-price-detail {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 0.5rem;
    opacity: 0.8;
}

/* Overlay with login prompt */
.order-preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(3, 6, 17, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.order-preview-card:hover .order-preview-overlay {
    opacity: 1;
    pointer-events: all;
}

.order-preview-card:hover .order-preview-form {
    filter: blur(3px);
}

.preview-login-prompt {
    text-align: center;
    padding: 2rem;
    max-width: 320px;
}

.login-prompt-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: lockBounce 2s infinite;
}

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

.preview-login-prompt h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
    word-break: keep-all;
}

.preview-login-prompt p {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    word-break: keep-all;
}

.btn-preview-login {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: linear-gradient(120deg, #4674ff 0%, #05c3ff 100%);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(70, 116, 255, 0.3);
}

.btn-preview-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(70, 116, 255, 0.5);
}

.order-preview-cta {
    text-align: center;
    padding: 2rem;
    background: rgba(107, 226, 255, 0.05);
    border: 1px solid rgba(107, 226, 255, 0.15);
    border-radius: 16px;
}

.preview-cta-text {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.preview-cta-text strong {
    color: var(--accent);
    font-weight: 700;
}

/* Responsive Design for Order Preview */
@media (max-width: 968px) {
    .order-preview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .order-preview-card {
        padding: 1.5rem;
    }

    .order-preview-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .order-preview-section {
        padding: 3rem 0;
    }

    .order-preview-card {
        padding: 1.25rem;
    }

    .order-preview-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .preview-form-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .preview-price-amount {
        font-size: 1.5rem;
    }

    .preview-login-prompt {
        padding: 1.5rem;
    }

    .preview-login-prompt h4 {
        font-size: 1.1rem;
    }

    .preview-login-prompt p {
        font-size: 0.9rem;
    }

    .order-preview-cta {
        padding: 1.5rem;
    }

    .preview-cta-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .order-preview-card {
        padding: 1rem;
    }

    .order-preview-title {
        font-size: 1.1rem;
    }

    .order-preview-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }

    .preview-form-input {
        padding: 0.75rem 0.875rem;
        font-size: 0.9rem;
    }

    .preview-price-box {
        padding: 1rem;
    }

    .preview-price-amount {
        font-size: 1.3rem;
    }

    .btn-preview-login {
        width: 100%;
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* ========================================
   Navigation Badge Styles
   ======================================== */

.nav-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    margin-left: 6px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    font-size: 11px;
    font-weight: 700;
    border-radius: 9px;
    line-height: 1;
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.3);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 4px rgba(239, 68, 68, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 2px 8px rgba(239, 68, 68, 0.5);
    }
}

/* Desktop Navigation Badge */
.dashboard-menu-item .nav-badge {
    position: relative;
    top: -1px;
    margin-left: 8px;
}

/* Mobile Navigation Badge */
.mobile-menu-item .nav-badge {
    position: absolute;
    top: 12px;
    right: 1rem;
    transform: none;
}
