/* ======= FONT ======= */
@font-face {
    font-family: 'Paperlogy';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2412@1.0/Paperlogy-Thin.woff2') format('woff2');
    font-weight: 100;
}

@font-face {
    font-family: 'Paperlogy';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2412@1.0/Paperlogy-Light.woff2') format('woff2');
    font-weight: 300;
}

@font-face {
    font-family: 'Paperlogy';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2412@1.0/Paperlogy-Regular.woff2') format('woff2');
    font-weight: 400;
}

@font-face {
    font-family: 'Paperlogy';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2412@1.0/Paperlogy-Medium.woff2') format('woff2');
    font-weight: 500;
}

@font-face {
    font-family: 'Paperlogy';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2412@1.0/Paperlogy-SemiBold.woff2') format('woff2');
    font-weight: 600;
}

@font-face {
    font-family: 'Paperlogy';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2412@1.0/Paperlogy-Bold.woff2') format('woff2');
    font-weight: 700;
}

@font-face {
    font-family: 'Paperlogy';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2412@1.0/Paperlogy-ExtraBold.woff2') format('woff2');
    font-weight: 800;
}

/* ======= TOKENS ======= */
:root {
    --gold-50: #fffbeb;
    --gold-100: #fef3c7;
    --gold-200: #fde68a;
    --gold-300: #fcd34d;
    --gold-400: #eebd2b;
    --gold-500: #d4a017;
    --gold-600: #b8860b;
    --gold-700: #92690a;
    --gold-800: #78550f;
    --gold-900: #654713;
    --neutral-0: #ffffff;
    --neutral-50: #fafaf8;
    --neutral-100: #f4f3f0;
    --neutral-150: #eeedea;
    --neutral-200: #e5e4e0;
    --neutral-300: #d1d0cc;
    --neutral-400: #a8a7a3;
    --neutral-500: #7a7975;
    --neutral-600: #5a5955;
    --neutral-700: #3d3c38;
    --neutral-800: #2c2b28;
    --neutral-900: #242320;
    --neutral-950: #1a1a18;
    --primary: var(--gold-300);
    --primary-hover: var(--gold-400);
    --primary-light: var(--gold-100);
    --medical: #4A90D9;
    --medical-light: #EBF2FB;
    --beauty: #C9816B;
    --beauty-light: #FDF2EF;
    --travel: #5BA08E;
    --travel-light: #EDF7F4;
    --success: #22c55e;
    --error: #ef4444;
    --bg: var(--neutral-0);
    --bg-s: var(--neutral-100);
    --bg-e: var(--neutral-0);
    --text: var(--neutral-950);
    --text-s: var(--neutral-500);
    --text-c: var(--neutral-400);
    --border: var(--neutral-200);
    --border-s: var(--neutral-150);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .04);
    --shadow-md: 0 4px 12px -2px rgba(0, 0, 0, .06);
    --shadow-lg: 0 12px 40px -8px rgba(0, 0, 0, .1);
    --shadow-gold: 0 4px 20px -4px rgba(252, 211, 77, .3);
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 16px;
    --r-xl: 20px;
    --r-2xl: 24px;
    --r-pill: 999px;
    --ease: cubic-bezier(.16, 1, .3, 1);
    --dur: .3s;
    --dur-fast: .15s;
    --dur-slow: .5s;
    --font: 'Paperlogy', -apple-system, sans-serif;
    --color-primary: var(--primary);
    --color-primary-hover: var(--primary-hover);
    --color-primary-light: var(--primary-light);
    --color-medical: var(--medical);
    --color-medical-light: var(--medical-light);
    --color-beauty: var(--beauty);
    --color-beauty-light: var(--beauty-light);
    --color-travel: var(--travel);
    --color-travel-light: var(--travel-light);
    --nav-collapse-progress: 0;
    --locbar-top: 64px;
}

[data-theme="dark"] {
    --bg: var(--neutral-900);
    --bg-s: var(--neutral-800);
    --bg-e: var(--neutral-700);
    --text: #f0f0e8;
    --text-s: #a8a498;
    --text-c: var(--neutral-500);
    --border: rgba(255, 255, 255, .08);
    --border-s: rgba(255, 255, 255, .04);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .2);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, .3);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, .5);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

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

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

/* ======= NAV ======= */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    border-bottom: none;
    transform: translate3d(0, calc(var(--nav-collapse-progress) * -110%), 0);
    opacity: calc(1 - var(--nav-collapse-progress));
    filter: blur(calc(var(--nav-collapse-progress) * 5px));
    transition: background .3s;
    will-change: transform, opacity, filter;
}

.nav.nav-collapsed {
    pointer-events: none;
}

[data-theme="dark"] .nav {
    background: transparent;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -.02em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo .accent {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 32px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-s);
}

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

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

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-s);
    transition: all .2s;
}

.nav-btn:hover {
    background: var(--bg-s);
    color: var(--text);
}

/* ======= HERO ======= */
.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px 40px 96px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--gold-50) 0%, var(--bg) 100%);
}

[data-theme="dark"] .hero {
    background: linear-gradient(180deg, rgba(252, 211, 77, .05) 0%, var(--bg) 100%);
}

.hero-content {
    width: min(920px, 100%);
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: var(--r-pill);
    background: var(--gold-100);
    color: var(--gold-700);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 32px;
    animation: fadeUp .8s var(--ease) both;
}

[data-theme="dark"] .hero-badge {
    background: rgba(252, 211, 77, .15);
    color: var(--gold-300);
}

.hero h1 {
    font-size: clamp(40px, 6vw, 68px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.03em;
    margin-bottom: 16px;
    animation: fadeUp .8s .1s var(--ease) both;
}

.hero h1 .gold {
    color: var(--gold-400);
}

.hero-desc {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--text-s);
    max-width: 560px;
    margin: 0 auto 34px;
    font-weight: 400;
    animation: fadeUp .8s .2s var(--ease) both;
}

.hero-stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    margin-bottom: 48px;
    animation: fadeUp .8s .3s var(--ease) both;
}

.hero-stat {
    text-align: center;
}

.hero-stat .num {
    font-size: 36px;
    font-weight: 800;
    color: var(--gold-400);
    line-height: 1;
}

.hero-stat .label {
    font-size: 13px;
    color: var(--text-c);
    margin-top: 4px;
    font-weight: 500;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    animation: fadeUp .8s .4s var(--ease) both;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 15px;
    height: 44px;
    padding: 0 24px;
    border-radius: var(--r-lg);
    border: none;
    cursor: pointer;
    transition: all var(--dur) var(--ease);
    white-space: nowrap;
    text-decoration: none;
}

.btn-lg {
    height: 52px;
    padding: 0 32px;
    border-radius: var(--r-xl);
    font-size: 16px;
}

.btn-md {
    height: 44px;
    padding: 0 24px;
    border-radius: var(--r-lg);
}

.btn-sm {
    height: 36px;
    padding: 0 16px;
    border-radius: var(--r-md);
    font-size: 13px;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--neutral-900);
}

.btn-primary:hover {
    background: var(--color-primary-hover);
    box-shadow: var(--shadow-gold);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--gold-600);
    background: var(--gold-50);
}

.btn-ghost {
    background: transparent;
    color: var(--text-s);
}

.btn-ghost:hover {
    color: var(--text);
    background: var(--bg-s);
}

.btn-pill {
    border-radius: var(--r-pill);
}

.btn-icon {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid var(--border-s);
    background: var(--bg-s);
    color: var(--text);
}

.btn-icon:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--neutral-900);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: var(--r-pill);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .02em;
}

.badge-gold {
    background: var(--gold-100);
    color: var(--gold-700);
}

.badge-medical {
    background: var(--color-medical-light);
    color: var(--color-medical);
}

.badge-beauty {
    background: var(--color-beauty-light);
    color: var(--color-beauty);
}

.badge-travel {
    background: var(--color-travel-light);
    color: var(--color-travel);
}

.badge-outline {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--text-s);
}

.hero-objects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-obj {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: var(--r-lg);
    opacity: .12;
    animation: float 6s ease-in-out infinite;
}

.hero-obj:nth-child(1) {
    top: 15%;
    left: 8%;
    background: var(--medical);
    animation-delay: 0s;
}

.hero-obj:nth-child(2) {
    top: 20%;
    right: 10%;
    background: var(--beauty);
    animation-delay: 1s;
    border-radius: 50%;
}

.hero-obj:nth-child(3) {
    bottom: 25%;
    left: 12%;
    background: var(--travel);
    animation-delay: 2s;
}

.hero-obj:nth-child(4) {
    bottom: 20%;
    right: 8%;
    background: var(--primary);
    animation-delay: 3s;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.hero-obj:nth-child(5) {
    top: 40%;
    left: 3%;
    background: var(--gold-200);
    animation-delay: 1.5s;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

/* ======= LOCATION BAR ======= */
.locbar {
    position: sticky;
    top: var(--locbar-top);
    z-index: 90;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-s);
    transition: box-shadow .25s var(--ease), border-color .25s var(--ease);
}

.locbar.locbar-promoted {
    box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .locbar {
    background: rgba(36, 35, 32, .95);
}

.locbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    height: 48px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.locbar-item {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-c);
    cursor: pointer;
    position: relative;
    padding: 14px 0;
    transition: color .2s;
    white-space: nowrap;
}

.locbar-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform .3s var(--ease);
}

.locbar-item.active {
    color: var(--text);
}

.locbar-item.active::after {
    transform: scaleX(1);
}

.locbar-item:hover {
    color: var(--text-s);
}

.locbar-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ======= SECTIONS COMMON ======= */
.section {
    padding: 100px 0;
    position: relative;
}

.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.02em;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-s);
    max-width: 480px;
    line-height: 1.6;
}

/* ======= K-BEAUTY (Asymmetric) ======= */
.beauty-section {
    background: linear-gradient(135deg, var(--beauty-light) 0%, var(--bg) 60%);
}

[data-theme="dark"] .beauty-section {
    background: linear-gradient(135deg, rgba(201, 129, 107, .08) 0%, var(--bg) 60%);
}

.beauty-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.beauty-visual {
    aspect-ratio: 3/4;
    border-radius: var(--r-2xl);
    overflow: hidden;
    position: relative;
    background: var(--bg-s);
}

.beauty-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.beauty-visual .float-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-md);
}

.beauty-visual .float-badge .name {
    font-weight: 700;
    font-size: 15px;
}

.beauty-visual .float-badge .price {
    color: var(--beauty);
    font-weight: 800;
    font-size: 18px;
}

.beauty-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.beauty-card {
    background: var(--bg-e);
    border: 1px solid var(--border-s);
    border-radius: var(--r-xl);
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: center;
    transition: all var(--dur) var(--ease);
    cursor: pointer;
}

.beauty-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
    border-color: var(--beauty);
}

.beauty-card-img {
    width: 72px;
    height: 72px;
    border-radius: var(--r-md);
    background: var(--bg-s);
    flex-shrink: 0;
    overflow: hidden;
}

.beauty-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.beauty-card h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
}

.beauty-card p {
    font-size: 13px;
    color: var(--text-s);
}

.beauty-card .card-price {
    font-size: 16px;
    font-weight: 800;
    color: var(--beauty);
    margin-top: 4px;
}

/* ======= MEDICAL (Process) ======= */
.medical-section {
    background: linear-gradient(135deg, var(--medical-light) 0%, var(--bg) 60%);
}

[data-theme="dark"] .medical-section {
    background: linear-gradient(135deg, rgba(74, 144, 217, .08) 0%, var(--bg) 60%);
}

.process-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
    margin-top: 48px;
}

.process-flow::before {
    content: '';
    position: absolute;
    top: 48px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, var(--medical), var(--primary), var(--medical));
    opacity: .3;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.process-icon {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    position: relative;
    z-index: 1;
    transition: all .4s var(--ease);
}

.process-step:nth-child(1) .process-icon {
    background: var(--medical-light);
    color: var(--medical);
    border: 2px solid rgba(74, 144, 217, .2);
}

.process-step:nth-child(2) .process-icon {
    background: var(--gold-100);
    color: var(--gold-500);
    border: 2px solid rgba(252, 211, 77, .3);
}

.process-step:nth-child(3) .process-icon {
    background: var(--beauty-light);
    color: var(--beauty);
    border: 2px solid rgba(201, 129, 107, .2);
}

.process-step:hover .process-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.process-step h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.process-step p {
    font-size: 14px;
    color: var(--text-s);
    line-height: 1.5;
}

.process-arrow {
    position: absolute;
    right: -12px;
    top: 48px;
    color: var(--text-c);
    font-size: 20px;
    z-index: 2;
}

.trust-bar {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-e);
    border: 1px solid var(--border-s);
    border-radius: var(--r-sm);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-s);
}

.trust-item .material-symbols-outlined {
    font-size: 18px;
    color: var(--medical);
}

.medical-proof-grid {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.proof-card {
    background: var(--bg-e);
    border: 1px solid var(--border-s);
    border-radius: var(--r-2xl);
    padding: 24px;
}

.proof-card h4 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    margin: 12px 0 8px;
}

.proof-card p {
    font-size: 14px;
    color: var(--text-s);
    line-height: 1.55;
    margin-bottom: 14px;
}

/* ======= K-TRAVEL (Fullwidth Photo) ======= */
.travel-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.travel-bg {
    position: absolute;
    inset: 0;
    background: url('images/image.png') center/cover;
    filter: brightness(.85);
}

.travel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .7) 0%, rgba(0, 0, 0, .3) 60%, transparent 100%);
}

.travel-content {
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

.travel-content .section-label {
    color: var(--travel);
}

.travel-content .section-title {
    color: #fff;
}

.travel-content .section-desc {
    color: rgba(255, 255, 255, .7);
}

.travel-cards {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.travel-card {
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--r-xl);
    padding: 24px;
    width: 240px;
    flex-shrink: 0;
    transition: all var(--dur) var(--ease);
    cursor: pointer;
}

.travel-card:hover {
    background: rgba(255, 255, 255, .18);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .3);
}

.travel-card h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.travel-card p {
    color: rgba(255, 255, 255, .6);
    font-size: 13px;
}

.travel-card .price {
    color: var(--travel);
    font-size: 18px;
    font-weight: 800;
    margin-top: 12px;
}

/* ======= COMMERCE (2-Track) ======= */
.commerce-section {
    background: linear-gradient(180deg, var(--bg) 0%, var(--gold-50) 100%);
}

[data-theme="dark"] .commerce-section {
    background: linear-gradient(180deg, var(--bg) 0%, rgba(252, 211, 77, .03) 100%);
}

.commerce-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}

.commerce-track {
    background: var(--bg-e);
    border: 1px solid var(--border-s);
    border-radius: var(--r-2xl);
    padding: 32px;
    transition: all var(--dur) var(--ease);
}

.commerce-track:hover {
    box-shadow: var(--shadow-md);
}

.track-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-s);
}

.track-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.track-header h3 {
    font-size: 18px;
    font-weight: 700;
}

.track-header .tag {
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--r-pill);
    margin-left: auto;
}

.commerce-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-s);
    align-items: center;
    transition: all .2s;
}

.commerce-item:last-child {
    border: none;
}

.commerce-item:hover {
    padding-left: 4px;
}

.commerce-item-img {
    width: 56px;
    height: 56px;
    border-radius: var(--r-sm);
    background: var(--bg-s);
    flex-shrink: 0;
    overflow: hidden;
}

.commerce-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.commerce-item h4 {
    font-size: 14px;
    font-weight: 600;
}

.commerce-item p {
    font-size: 12px;
    color: var(--text-c);
}

.commerce-item .item-price {
    font-size: 15px;
    font-weight: 800;
    color: var(--primary-hover);
    margin-left: auto;
    white-space: nowrap;
}

.commerce-infra {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.commerce-infra-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 16px;
    border: 1px solid var(--border-s);
    border-radius: var(--r-lg);
    background: var(--bg-e);
}

.commerce-infra-item .material-symbols-outlined {
    color: var(--gold-600);
    font-size: 20px;
}

.commerce-infra-item h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}

.commerce-infra-item p {
    font-size: 13px;
    color: var(--text-s);
    line-height: 1.5;
}

/* ======= SOCIAL PROOF ======= */
.social-section {
    padding: 80px 0;
    overflow: hidden;
}

.marquee-wrap {
    overflow: hidden;
    position: relative;
    margin-top: 32px;
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
}

.marquee-wrap.is-dragging {
    cursor: grabbing;
}

.marquee-wrap.is-dragging .social-card {
    pointer-events: none;
}

.marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    align-items: stretch;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.social-card {
    min-width: 280px;
    max-width: 280px;
    background: var(--bg-e);
    border: 1px solid var(--border-s);
    border-radius: var(--r-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.social-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.social-card-img {
    aspect-ratio: 4/5;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.social-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.social-card-body h4 {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 6px;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.social-card-body p {
    font-size: 13px;
    color: var(--text-s);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.social-content {
    min-height: 78px;
}

.social-meta {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--border-s);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-user {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
}

.social-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-color: var(--gold-100);
}

.social-metric {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--text-c);
}

.social-icon {
    font-size: 16px;
}

/* ======= PARTNER HUB ======= */
.partner-section {
    background: linear-gradient(180deg, var(--bg) 0%, var(--gold-50) 100%);
}

[data-theme="dark"] .partner-section {
    background: linear-gradient(180deg, var(--bg) 0%, rgba(252, 211, 77, .04) 100%);
}

.partner-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 24px;
}

.partner-card {
    background: var(--bg-e);
    border: 1px solid var(--border-s);
    border-radius: var(--r-2xl);
    padding: 28px;
}

.partner-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
}

.partner-card p {
    font-size: 14px;
    color: var(--text-s);
    line-height: 1.6;
}

.partner-steps {
    list-style: none;
    display: grid;
    gap: 10px;
}

.partner-steps li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--r-md);
    border: 1px solid var(--border-s);
    background: var(--bg-s);
    font-size: 14px;
    font-weight: 500;
}

.step-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gold-100);
    color: var(--gold-700);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.partner-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 16px 0 14px;
}

.partner-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* ======= FOOTER ======= */
.footer {
    background: var(--neutral-950);
    color: #fff;
    padding: 80px 0 40px;
}

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

.footer h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-input {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--r-md);
    padding: 14px 18px;
    color: #fff;
    font-family: var(--font);
    font-size: 14px;
    outline: none;
    transition: border-color .2s;
}

.footer-input:focus {
    border-color: var(--primary);
}

.footer-input::placeholder {
    color: rgba(255, 255, 255, .25);
}

.footer-links h5 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--primary);
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, .5);
    transition: color .2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255, 255, 255, .3);
}

/* ======= SCROLL ANIMATIONS ======= */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: .1s;
}

.reveal-delay-2 {
    transition-delay: .2s;
}

.reveal-delay-3 {
    transition-delay: .3s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* ======= RESPONSIVE ======= */
@media(max-width:768px) {
    .wrap {
        padding: 0 20px;
    }

    .nav-inner {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .locbar-inner {
        padding: 0 20px;
        gap: 20px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .hero {
        padding: 100px 20px 64px;
    }

    .hero-stats {
        gap: 24px;
    }

    .hero-stat .num {
        font-size: 28px;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .hero-ctas .btn {
        width: 100%;
    }

    .btn-lg {
        height: 48px;
    }

    .beauty-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .process-flow {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .process-flow::before {
        display: none;
    }

    .process-arrow {
        display: none;
    }

    .travel-cards {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
    }

    .commerce-grid {
        grid-template-columns: 1fr;
    }

    .commerce-infra {
        grid-template-columns: 1fr;
    }

    .medical-proof-grid {
        grid-template-columns: 1fr;
    }

    .partner-grid {
        grid-template-columns: 1fr;
    }

    .partner-card {
        padding: 22px;
    }

    .nav-grid {
        grid-template-columns: 1fr;
    }

    .nav-card {
        min-height: 220px;
        padding: 24px 20px;
    }

    .navigator {
        margin-top: 4px;
        padding-bottom: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ======= CUSTOM RECOMMENDATION ======= */
.reco-card {
    background: linear-gradient(135deg, var(--bg-e) 0%, var(--bg) 100%);
    border: 1px solid var(--border-s);
    border-left: 4px solid var(--primary);
    border-radius: var(--r-xl);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    cursor: pointer;
    transition: all var(--dur) var(--ease);
}

.reco-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.reco-text h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.reco-text p {
    font-size: 12px;
    color: var(--text-s);
}

.reco-icon {
    color: var(--primary-hover);
}

.medical-reco {
    text-align: center;
    margin-top: 40px;
    animation: fadeUp .8s .4s var(--ease) both;
}

.reco-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, .5);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-s);
    border-radius: var(--r-pill);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-s);
    transition: all .2s;
    cursor: pointer;
    text-decoration: none;
}

[data-theme="dark"] .reco-btn {
    background: rgba(36, 35, 32, .5);
}

.reco-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: var(--bg-e);
    transform: translateY(-1px);
}

/* ======= LANGUAGE SWITCH (NEW) ======= */
.lang-switch {
    display: flex;
    gap: 4px;
    background: var(--bg-s);
    padding: 4px;
    border-radius: var(--r-pill);
    margin-right: 12px;
}

.lang-btn {
    border: none;
    background: transparent;
    padding: 6px 10px;
    border-radius: var(--r-pill);
    font-size: 11px;
    font-weight: 700;
    color: var(--text-s);
    cursor: pointer;
    transition: all .2s;
    font-family: var(--font);
}

.lang-btn:hover {
    color: var(--text);
}

.lang-btn.active {
    background: var(--bg);
    color: var(--primary-hover);
    box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .lang-btn.active {
    background: var(--neutral-700);
}

/* ======= NAVIGATOR (New) ======= */
.navigator {
    margin-top: 8px;
    padding-bottom: 44px;
    position: relative;
    z-index: 10;
}

.nav-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.nav-card {
    position: relative;
    min-height: 220px;
    border-radius: var(--r-2xl);
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: var(--bg-e);
    border: 1px solid var(--border-s);
    color: var(--text);
    transition: all var(--dur) var(--ease);
    text-decoration: none;
}

.nav-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-color, var(--primary));
    opacity: 0;
    transition: opacity var(--dur) var(--ease);
}

.nav-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border);
}

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

.nav-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--r-lg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.nav-tag {
    width: fit-content;
    margin-bottom: 10px;
}

.nav-card h3 {
    font-size: 19px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 6px;
}

.nav-card p {
    font-size: 13px;
    color: var(--text-s);
    line-height: 1.5;
    margin-bottom: auto;
}

.nav-arrow {
    margin-top: 16px;
    color: var(--text-c);
    transition: all var(--dur) var(--ease);
    align-self: flex-end;
}

.nav-card:hover .nav-arrow {
    color: var(--primary);
    transform: translateX(4px);
}

@media(max-width:768px) {
    .nav-grid {
        grid-template-columns: 1fr;
    }

    .nav-card {
        min-height: 200px;
        padding: 24px 20px;
    }

    .navigator {
        margin-top: 4px;
        padding-bottom: 28px;
    }
}
