/* assets/css/landing.css */
:root {
    --bg-dark: #090d16;
    --bg-card: #131b2e;
    --primary: #0d9488;
    --primary-glow: rgba(13, 148, 136, 0.4);
    --gold: #eab308;
    --gold-glow: rgba(234, 179, 8, 0.3);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border: rgba(255, 255, 255, 0.08);
}

body.landing-page {
    margin: 0;
    padding: 0;
    background-color: var(--bg-dark);
    font-family: 'Noto Sans KR', 'Outfit', sans-serif;
    color: var(--text-main);
    overflow-x: hidden;
    scroll-behavior: smooth;
    position: relative;
}

/* 네온 Radial Glow 배경 광원 */
body.landing-page::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, rgba(9, 13, 22, 0) 70%);
    top: -100px;
    right: -100px;
    z-index: 0;
    pointer-events: none;
    filter: blur(80px);
}

body.landing-page::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, rgba(9, 13, 22, 0) 75%);
    top: 50%;
    left: -150px;
    z-index: 0;
    pointer-events: none;
    filter: blur(80px);
}

/* 1. GNB 헤더 */
.landing-header {
    background-color: rgba(9, 13, 22, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
}

.brand-logo span {
    background: linear-gradient(135deg, #2dd4bf, #eab308);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--text-main);
}

.btn-login {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text-main);
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-login:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

/* 2. 히어로 섹션 */
.hero-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1.2;
    text-align: left;
}

.hero-badge {
    background-color: rgba(13, 148, 136, 0.12);
    border: 1px solid rgba(13, 148, 136, 0.3);
    color: #2dd4bf;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
}

.hero-text h1 span {
    background: linear-gradient(135deg, #2dd4bf 30%, #eab308 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 35px 0;
}

.hero-btns {
    display: flex;
    gap: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #0f766e 100%);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 6px 20px var(--primary-glow);
    transition: all 0.25s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--primary-glow);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text-main);
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hero-visual {
    flex: 0.8;
    position: relative;
    display: flex;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}

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

.hero-mockup-wrapper {
    background: radial-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 12px;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    width: 280px;
    height: 520px;
    position: relative;
    overflow: hidden;
}

/* 3. 특장점 섹션 */
.features-section {
    background-color: rgba(255, 255, 255, 0.01);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 80px 20px;
}

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

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0 auto 50px auto;
    max-width: 600px;
}

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

.feature-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    padding: 30px;
    border-radius: 16px;
    text-align: left;
    transition: all 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(13, 148, 136, 0.4);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.feature-icon {
    background-color: rgba(13, 148, 136, 0.1);
    color: var(--primary);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

/* 4. 실시간 시뮬레이터 데모 센터 */
.demo-section {
    padding: 80px 20px;
    position: relative;
}

.demo-console {
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 30px;
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 0 20px 45px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
}

.demo-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* 시뮬레이터 스마트폰 프레임 */
.phone-mockup {
    width: 250px;
    height: 480px;
    background-color: #0f172a;
    border: 8px solid #334155;
    border-radius: 32px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-size: 0.75rem;
}

.phone-mockup .screen-header {
    background-color: #1e293b;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--text-main);
}

.phone-mockup .screen-content {
    flex: 1;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    background-color: #090d16;
}

/* 시뮬레이터 태블릿 프레임 */
.tablet-mockup {
    width: 420px;
    height: 480px;
    background-color: #0f172a;
    border: 10px solid #334155;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-size: 0.72rem;
}

.tablet-mockup .screen-header {
    background-color: #1e293b;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
}

.tablet-mockup .screen-content {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-color: #090d16;
    overflow-y: auto;
}

/* 모의 지도 */
.mock-map {
    height: 140px;
    background-color: #1e293b;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
}

.mock-map-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
}

.mock-marker {
    position: absolute;
    font-size: 1.1rem;
    transition: all 0.5s linear;
    z-index: 10;
}

.mock-marker.hotel {
    color: #8b5cf6;
    top: 50px;
    left: 110px;
}

.mock-marker.car {
    color: var(--primary);
    top: 80px;
    left: 20px;
    filter: drop-shadow(0 0 5px var(--primary-glow));
}

.mock-marker.destination {
    color: #ef4444;
    top: 30px;
    left: 190px;
}

/* 모의 주문/대기 카드 */
.mock-card {
    background-color: #1e293b;
    border: 1px solid var(--border);
    padding: 10px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mock-btn {
    background-color: var(--primary);
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.72rem;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
}

.mock-btn:hover {
    background-color: #0f766e;
}

.mock-btn.disabled {
    background-color: #334155;
    color: #64748b;
    cursor: not-allowed;
}

/* 5. 요금제 및 에디션 비교 */
.pricing-section {
    padding: 80px 20px;
    background-color: rgba(255,255,255,0.01);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 900px;
    margin: 40px auto 0 auto;
    flex-wrap: wrap;
}

.pricing-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 30px;
    flex: 1;
    min-width: 280px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    transition: all 0.25s ease;
}

/* 프리미엄 회전 보더 효과 */
.pricing-card.premium-featured {
    border: 1px solid rgba(234, 179, 8, 0.45);
    box-shadow: 0 15px 35px var(--gold-glow);
}

.pricing-card.premium-featured::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: -12px;
    right: 30px;
    background-color: var(--gold);
    color: #000;
    font-size: 0.65rem;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.price-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.price-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-main);
    display: flex;
    align-items: baseline;
}

.price-value span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: normal;
    margin-left: 4px;
}

.pricing-card.premium-featured .price-value {
    color: var(--gold);
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.pricing-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.pricing-list li i {
    color: var(--primary);
    margin-top: 2px;
}

.pricing-card.premium-featured .pricing-list li i {
    color: var(--gold);
}

.pricing-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* 6. 도입 문의 폼 */
.contact-section {
    max-width: 650px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
}

.contact-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.input-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
    display: block;
}

.input-text {
    width: 100%;
    box-sizing: border-box;
    background-color: rgba(9, 13, 22, 0.6);
    border: 1px solid var(--border);
    color: var(--text-main);
    padding: 12px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.85rem;
    outline: none;
    transition: all 0.2s;
}

.input-text:focus {
    border-color: var(--primary);
    box-shadow: 0 0 8px var(--primary-glow);
}

/* 7. 푸터 */
.landing-footer {
    background-color: rgba(9, 13, 22, 0.95);
    border-top: 1px solid var(--border);
    padding: 40px 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* 미디어 쿼리 반응형 */
@media (max-width: 900px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 50px 20px;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-visual {
        order: 0;
        margin-bottom: 20px;
    }
    
    .footer-content {
        flex-direction: column;
    }
}

/* --- 데모 시뮬레이터 멀티 서비스 탭 & 부가 스타일 --- */
.service-tab-group {
    display: flex;
    justify-content: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 6px;
    border-radius: 12px;
    margin-bottom: 20px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.service-tab-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-tab-btn:hover {
    color: var(--text-main);
}

.service-tab-btn.active {
    background-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 12px var(--primary-glow);
}

/* 모의 상품 리스트 (룸서비스 전용) */
.mock-product-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 5px;
}

.mock-product-item {
    background-color: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
}

.mock-product-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.mock-product-name {
    font-weight: 700;
    color: var(--text-main);
    font-size: 0.75rem;
}

.mock-product-price {
    color: #2dd4bf;
    font-size: 0.68rem;
    font-weight: 700;
}

.mock-qty-ctrl {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mock-qty-btn {
    background-color: #334155;
    border: none;
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.mock-qty-btn:hover {
    background-color: var(--primary);
}

.mock-qty-val {
    font-weight: 700;
    font-family: 'Outfit';
    font-size: 0.8rem;
    min-width: 16px;
    text-align: center;
    color: var(--text-main);
}

/* 모의 사진 업로드/검수 모달 */
.mock-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(9, 13, 22, 0.9);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.25s ease-out;
}

.mock-lightbox-content {
    background-color: #1e293b;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 16px;
    width: 82%;
    max-width: 320px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mock-lightbox-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--border);
}

/* 스마트폰 노치/카메라 아일랜드 */
.phone-mockup::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 14px;
    background-color: #1e293b;
    border-radius: 20px;
    z-index: 999;
}

/* 진짜 서비스용 카드 테마 이식 */
.sim-req-card {
    background-color: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.sim-req-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sim-badge {
    font-size: 0.58rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}

.sim-badge.pending { background-color: rgba(239, 68, 68, 0.15); color: #ef4444; border: 1px solid rgba(239, 68, 68, 0.3); }
.sim-badge.active { background-color: rgba(59, 130, 246, 0.15); color: #3b82f6; border: 1px solid rgba(59, 130, 246, 0.3); }
.sim-badge.arrived { background-color: rgba(245, 158, 11, 0.15); color: #f59e0b; border: 1px solid rgba(245, 158, 11, 0.3); }
.sim-badge.completed { background-color: rgba(16, 185, 129, 0.15); color: #10b981; border: 1px solid rgba(16, 185, 129, 0.3); }

/* 그랩/택시 핀 모양 입력 창 */
.mock-grab-route {
    background-color: #1e293b;
    border-radius: 10px;
    padding: 8px 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    border: 1px solid rgba(255,255,255,0.04);
}

.mock-grab-node {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.68rem;
}

.mock-grab-node i {
    width: 12px;
    text-align: center;
}

.mock-grab-line {
    width: 1px;
    height: 8px;
    background-color: #475569;
    margin-left: 5px;
}

/* --- 시뮬레이터 Light/Dark 테마 분리 (실제 서비스 디자인 이식) --- */
.phone-mockup.theme-light {
    background-color: #f8fafc;
    color: #0f172a;
    border-color: #cbd5e1;
}

.phone-mockup.theme-light::after {
    background-color: #e2e8f0;
}

.phone-mockup.theme-light .screen-header {
    background-color: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
    color: #0f172a;
}

.phone-mockup.theme-light .screen-content {
    background-color: #f8fafc;
}

.phone-mockup.theme-light .mock-card {
    background-color: #ffffff;
    border-color: #e2e8f0;
    color: #0f172a;
    box-shadow: 0 6px 15px rgba(15, 23, 42, 0.04);
}

.phone-mockup.theme-light .mock-card div[id$="_status_title"] {
    color: #0f172a;
}

.phone-mockup.theme-light .mock-card div[id$="_status_desc"] {
    color: #64748b;
}

.phone-mockup.theme-light .mock-product-item {
    background-color: #ffffff;
    border-color: #e2e8f0;
    box-shadow: 0 6px 12px rgba(15, 23, 42, 0.03);
}

.phone-mockup.theme-light .mock-product-name {
    color: #0f172a;
}

.phone-mockup.theme-light .mock-product-price {
    color: #0d9488;
}

.phone-mockup.theme-light .mock-qty-val {
    color: #0f172a;
}

.phone-mockup.theme-light .mock-qty-btn {
    background-color: #e2e8f0;
    color: #0f172a;
}

.phone-mockup.theme-light .mock-qty-btn:hover {
    background-color: #0d9488;
    color: #fff;
}

.phone-mockup.theme-light .mock-grab-route {
    background-color: #ffffff;
    border-color: #e2e8f0;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.02);
}

.phone-mockup.theme-light .mock-grab-node {
    color: #0f172a;
}

.phone-mockup.theme-light .mock-grab-line {
    background-color: #cbd5e1;
}

/* 기사용/어드민용 다크 테마 명시 */
.phone-mockup.theme-dark {
    background-color: #0f172a;
    color: #f8fafc;
    border-color: #334155;
}

.phone-mockup.theme-dark .screen-header {
    background-color: #1e293b;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: #f8fafc;
}

.phone-mockup.theme-dark .screen-content {
    background-color: #0f172a;
}

@media (min-width: 901px) {
    .journey-arrow {
        display: block !important;
    }
}

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

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

@keyframes pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.03); }
}



