@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

/* =========================================
   GTR DASAN - UNIQUE PREMIUM DESIGN
   ========================================= */

:root {
    /* Unique Premium Palette (Charcoal & Copper/Accent) */
    --bg-main: #141416;         /* Deep Charcoal */
    --bg-surface: #1E1E22;      /* Lighter Charcoal */
    --bg-card: #17181B;         /* Popup / card fallback */
    --bg-light: #F7F7F7;        /* Clean White/Gray for contrast */
    
    --accent-primary: #D16A43;  /* Premium Copper/Rust metallic feel */
    --accent-hover: #E37C55;
    
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0A5;
    --text-inverse: #141416;
    
    /* Typography based on open-source Pretendard */
    --font-sans: 'Pretendard', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-display: 'Playfair Display', serif;
    --font-en: 'Montserrat', sans-serif;
    
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s ease;
    color-scheme: only light;
}

/* Base Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scrollbar-gutter: stable both-edges;
    background-color: var(--bg-main);
    color-scheme: only light;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    color-scheme: only light;
}

body.menu-open {
    overflow: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* Placeholder Styling */
.placeholder-box {
    background-color: rgba(255,255,255,0.05);
    border: 1px dashed rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    overflow: hidden;
    position: relative;
}

.placeholder-box::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.05), transparent);
    animation: shimmer 2.5s infinite;
}
@keyframes shimmer { 100% { left: 200%; } }

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4%;
}
.max-narrow { max-width: 1000px; }
.text-center { text-align: center; }
.mt-xl { margin-top: 4rem; }

/* 1. Modern Header */
.modern-header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 2rem 0;
    z-index: 100;
    transition: var(--transition-smooth);
}

.modern-header .nav-item {
    text-shadow: 0 0 4px rgba(0,0,0,0.5), 0 2px 8px rgba(0,0,0,0.3);
}

.modern-header.scrolled {
    padding: 1rem 0;
    background-color: rgba(20, 20, 22, 0.9);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4%;
}

.brand-logo a {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0px;
    color: #fff;
}

.brand-logo span {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.9rem;
    margin-left: 8px;
    color: var(--accent-primary);
    letter-spacing: 1px;
}

.nav-links { display: flex; gap: 3rem; }
.nav-item {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    position: relative;
    color: #FFFFFF;
}
.nav-item::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background-color: var(--accent-primary);
    transition: var(--transition-fast);
}
.nav-item:hover::after { width: 100%; }

.menu-trigger {
    display: none;
    background: none; border: none;
    cursor: pointer;
    width: 30px; height: 20px;
    position: relative;
    z-index: 1001;
}
.menu-trigger span {
    display: block; width: 100%; height: 2px;
    background: #fff;
    position: absolute;
    transition: var(--transition-fast);
}
.menu-trigger span:first-child { top: 4px; }
.menu-trigger span:last-child { bottom: 4px; }
.menu-trigger.active span:first-child { transform: translateY(8px) rotate(45deg); }
.menu-trigger.active span:last-child { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Menu hidden by default */
.mobile-menu {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background: linear-gradient(180deg, rgba(20,20,22,0.98) 0%, rgba(12,12,14,0.98) 100%);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0; visibility: hidden;
    transition: var(--transition-smooth);
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu-inner { display: flex; flex-direction: column; gap: 2rem; text-align: center; }
.mobile-link {
    font-size: 2rem;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
}

/* 2. Hero Split Section */
.hero-split {
    height: 100vh;
    min-height: 700px;
    display: flex;
    overflow: hidden;
    position: relative;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8% 0 10%;
    background-color: var(--bg-main);
    z-index: 2;
}

.overline {
    font-family: var(--font-en);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--accent-primary);
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.headline {
    font-size: 5vw;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}
.headline .highlight { color: var(--accent-primary); }

.description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 400px;
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
    width: fit-content;
}
.cta-button svg {
    transition: transform 0.3s ease;
}
.cta-button:hover svg {
    transform: translateX(10px);
    color: var(--accent-primary);
}

.hero-visual {
    flex: 1.2;
    background-color: var(--bg-surface);
    position: relative;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% center;
    display: block;
}

@media (min-width: 769px) {
    .hero-split {
        height: auto;
        min-height: 0;
        padding: 120px 0 72px;
        display: grid;
        grid-template-columns: minmax(0, 42%) minmax(0, 58%);
        align-items: center;
    }

    .hero-content {
        padding: 2rem 8% 2rem 10%;
    }

    .hero-visual {
        flex: none;
        width: 100%;
        aspect-ratio: 16 / 9;
        min-height: 0;
        clip-path: polygon(6% 0, 100% 0, 100% 100%, 0 100%);
        border-radius: 28px 0 0 28px;
        overflow: hidden;
        box-shadow: 0 32px 70px rgba(0,0,0,0.35);
    }

    .hero-image {
        object-position: center center;
    }

    .editorial-section {
        padding: 56px 0 120px;
    }

    .editorial-section > .container {
        max-width: none;
        padding-left: 0;
        padding-right: 0;
    }

    .editorial-grid {
        grid-template-columns: minmax(0, 58%) minmax(0, 42%);
        gap: 0;
        align-items: center;
    }

    .ed-visual {
        width: 100%;
        aspect-ratio: 16 / 9;
        border-radius: 0 28px 28px 0;
        clip-path: polygon(0 0, 94% 0, 100% 100%, 0 100%);
        overflow: hidden;
        box-shadow: 0 32px 70px rgba(0,0,0,0.35);
    }

    .ed-content {
        width: 100%;
        max-width: 560px;
        padding: 2rem 10% 2rem 8%;
    }
}
}

.visual-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(45deg, #1A1A1E, #25252A);
    display: flex; align-items: center; justify-content: center;
}
.visual-text { text-align: center; color: var(--text-secondary); font-size: 0.9rem; }

/* 3. About Editorial */
.editorial-section {
    padding: 150px 0;
    background-color: var(--bg-main);
}
.editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8%;
    align-items: center;
}
.ed-visual {
    aspect-ratio: 16 / 10;
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--bg-surface);
}

.ed-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: none;
    display: block;
}
.section-title {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 700;
}
.section-title-spaced {
    margin-bottom: 3rem;
}
.lead-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
}
.body-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}
.stats-row {
    display: flex; gap: 4rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2.5rem;
}
.stat-item { 
    display: flex; 
    flex-direction: column; 
    gap: 0.5rem;
}
.stat-num { 
    font-family: var(--font-en); 
    font-size: 4.5rem; 
    font-weight: 700;
    line-height: 1;
    color: transparent;
    background: linear-gradient(135deg, #FFFFFF 20%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}
.stat-label { 
    font-size: 1.05rem; 
    font-weight: 500;
    color: var(--text-secondary); 
    letter-spacing: 2px; 
}
.stat-sub {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
    margin-left: 0.5rem;
    letter-spacing: 0;
}
.bento-note {
    display: block;
    margin-top: 0.16rem;
    font-size: 0.62em;
    font-weight: 500;
    letter-spacing: 0.01em;
    opacity: 0.74;
}

/* 4. Bento Box Premium Features */
.bento-section {
    padding: 52px 0 72px;
    background:
        radial-gradient(circle at 18% 0%, rgba(255,255,255,0.04) 0%, transparent 34%),
        linear-gradient(180deg, var(--bg-surface) 0%, #15161d 100%);
    border-radius: 40px 40px 0 0;
}
.bento-section .section-header {
    margin-bottom: 0.7rem;
    max-width: 44rem;
}
.bento-section .section-header .section-title {
    font-size: clamp(2.7rem, 4vw, 3.35rem);
    line-height: 0.96;
    margin-bottom: 0.45rem;
}
.bento-section .section-desc {
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.6;
    max-width: 30rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 1rem;
    align-items: stretch;
}
.bento-card {
    --card-glow: rgba(209,106,67,0.12);
    --card-line: rgba(209,106,67,0.22);
    --card-line-strong: rgba(255,255,255,0.14);
    --card-inner-line: rgba(255,255,255,0.04);
    --card-surface-1: #1a1d29;
    --card-surface-2: #11141d;
    --card-surface-3: #0c0e14;
    --card-accent-wash: rgba(255,255,255,0.03);
    border-radius: 24px;
    min-height: clamp(214px, 25vh, 246px);
    height: clamp(214px, 25vh, 246px);
    padding: 0.88rem;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.22fr);
    grid-template-areas: "content image";
    gap: 0.9rem;
    border: 1px solid var(--card-line);
    background:
        linear-gradient(145deg, var(--card-surface-1) 0%, var(--card-surface-2) 58%, var(--card-surface-3) 100%);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
    isolation: isolate;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(0,0,0,0.22);
    border-color: var(--card-line-strong);
}

.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, var(--card-accent-wash) 0%, transparent 42%),
        radial-gradient(circle at 86% 14%, var(--card-glow) 0%, transparent 36%),
        linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 24%);
    z-index: 0;
    pointer-events: none;
}

.bento-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.05),
        inset 0 0 0 1px var(--card-inner-line);
    z-index: 0;
    pointer-events: none;
}

.bento-card.bg-dark,
.bento-card.bg-accent,
.bento-card.bg-light,
.bento-card.wide {
    grid-column: span 1;
    grid-row: span 1;
}

.premium-card--simulator {
    --card-glow: rgba(142, 111, 66, 0.18);
    --card-line: rgba(112, 136, 181, 0.22);
    --card-line-strong: rgba(133, 159, 210, 0.32);
    --card-inner-line: rgba(112, 136, 181, 0.12);
    --card-surface-1: #1a2235;
    --card-surface-2: #111728;
    --card-surface-3: #0b101b;
    --card-accent-wash: rgba(120, 151, 209, 0.08);
}

.premium-card--vip {
    --card-glow: rgba(192, 115, 73, 0.2);
    --card-line: rgba(165, 98, 78, 0.26);
    --card-line-strong: rgba(198, 121, 96, 0.36);
    --card-inner-line: rgba(165, 98, 78, 0.14);
    --card-surface-1: #2a1c22;
    --card-surface-2: #1d151b;
    --card-surface-3: #120d12;
    --card-accent-wash: rgba(186, 108, 86, 0.1);
}

.premium-card--air {
    --card-glow: rgba(69, 146, 132, 0.18);
    --card-line: rgba(62, 126, 121, 0.26);
    --card-line-strong: rgba(84, 158, 151, 0.34);
    --card-inner-line: rgba(62, 126, 121, 0.14);
    --card-surface-1: #142c31;
    --card-surface-2: #0f2026;
    --card-surface-3: #09161a;
    --card-accent-wash: rgba(90, 167, 150, 0.08);
}

.premium-card--equipment {
    --card-glow: rgba(181, 145, 92, 0.18);
    --card-line: rgba(137, 118, 88, 0.26);
    --card-line-strong: rgba(171, 144, 101, 0.34);
    --card-inner-line: rgba(137, 118, 88, 0.14);
    --card-surface-1: #26252c;
    --card-surface-2: #18181f;
    --card-surface-3: #101015;
    --card-accent-wash: rgba(168, 140, 98, 0.08);
}

.bento-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 2.7rem;
    padding: 0.32rem 0.62rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.92);
    font-family: var(--font-en);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.bento-content h4 {
    font-size: clamp(1.18rem, 1.55vw, 1.46rem);
    margin: 0;
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: -0.02em;
    text-shadow: 0 8px 24px rgba(0,0,0,0.45);
    min-height: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bento-content p {
    color: rgba(255,255,255,0.88);
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.58;
    word-break: keep-all;
    min-height: 0;
    max-width: 16rem;
}

.text-dark h4, .text-dark p { color: #fff; }
.text-dark p { color: rgba(255,255,255,0.9); }

.bento-content {
    grid-area: content;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    gap: 0.62rem;
    min-width: 0;
    height: auto;
    min-height: 0;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 0.08rem 0 0.08rem 0.08rem;
    border-radius: 0;
    background: none;
    border: 0;
    box-shadow: none;
}

.bento-content::before {
    display: none;
}

.bento-bg {
    grid-area: image;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
    border-radius: 18px;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    overflow: hidden;
    background: none;
    border: 0;
    box-shadow: none;
}

.bento-bg::after {
    display: none;
}

.bento-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: auto;
    filter: drop-shadow(0 14px 24px rgba(0,0,0,0.22));
    border-radius: 18px;
}

.premium-card--simulator .bento-image {
    object-position: center center;
    transform: scale(1.035) translateX(-0.7%);
    transform-origin: center center;
}
.premium-card--vip .bento-image { object-position: center center; }
.premium-card--air .bento-image { object-position: center 48%; }
.premium-card--equipment .bento-image { object-position: center center; }

/* 4.5 Pricing Section */
.pricing-section {
    padding: 150px 0 100px;
    background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-main) 100%);
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-grid .pricing-card {
    flex: 1 1 200px;
    min-width: 200px;
    max-width: 260px;
}

.pricing-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pricing-card:hover {
    border-color: rgba(209,106,67,0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

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

.pricing-card.featured {
    border-color: var(--accent-primary);
    background: rgba(209,106,67,0.05);
}

.pricing-card.featured::before {
    opacity: 1;
}

.pricing-badge {
    display: inline-block;
    background: var(--accent-primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.3rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.pricing-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.pricing-name {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    line-height: 1.4;
    word-break: keep-all;
}

.pricing-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 1.8rem;
    line-height: 1.6;
}

.pricing-amount {
    font-family: var(--font-en);
    font-size: 2.5rem;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.08em;
    width: max-content;
    max-width: 100%;
    white-space: nowrap;
    color: var(--accent-primary);
    margin: 0 auto 0.3rem;
    letter-spacing: -1px;
    text-align: center;
}

.pricing-price-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pricing-amount .amount-main {
    display: inline-block;
}

.pricing-amount .won {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0;
}

.pricing-amount.undecided {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-family: var(--font-sans);
    letter-spacing: 0;
}

.pricing-unit {
    font-size: 0.85rem;
    color: var(--text-secondary);
    width: max-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.pricing-sub {
    font-size: 0.95rem;
    color: var(--accent-primary);
    font-weight: 500;
    margin-top: -0.1rem;
    margin-bottom: 0.3rem;
    opacity: 0.85;
    width: max-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.pricing-divider {
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin: 1.5rem auto;
}

.pricing-features {
    list-style: none;
    padding: 0;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.pricing-features li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 0.4rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.5;
}

.pricing-features li::before {
    content: '✓';
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.pricing-notice {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.pricing-empty {
    text-align: center;
    padding: 4rem 0;
    color: var(--text-secondary);
    font-size: 1rem;
}
.notice-feedback {
    text-align: center;
    padding: 3rem 0;
    color: var(--text-secondary);
}

/* 5. Minimal Notice List */
.notice-section { padding: 150px 0; background-color: var(--bg-main); }
.minimal-list { border-top: 1px solid rgba(255,255,255,0.1); }
.list-row {
    display: flex; align-items: center; padding: 2rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition-fast);
    color: var(--text-primary);
    text-decoration: none;
    -webkit-text-fill-color: var(--text-primary);
}
.list-row:link,
.list-row:visited,
.list-row:active {
    color: var(--text-primary);
    -webkit-text-fill-color: var(--text-primary);
}

@media (hover: hover) and (pointer: fine) {
    .list-row:hover { background-color: rgba(255,255,255,0.02); padding-left: 1rem; padding-right: 1rem; }
    .list-row:hover .list-title {
        color: var(--accent-primary);
        -webkit-text-fill-color: var(--accent-primary);
    }
}

.list-meta { width: 200px; display: flex; flex-direction: column; gap: 0.5rem; }
.tag { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; padding: 0.2rem 0.6rem; border-radius: 100px; width: fit-content; }
.tag-event { background: var(--accent-primary); color: #fff; -webkit-text-fill-color: #fff; }
.tag-notice { border: 1px solid #fff; color: #fff; -webkit-text-fill-color: #fff; }
.tag-normal { color: var(--text-secondary); -webkit-text-fill-color: var(--text-secondary); }

.date { font-family: var(--font-display); font-size: 0.85rem; color: var(--text-secondary); }
.list-title {
    flex: 1;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    -webkit-text-fill-color: var(--text-primary);
}
.list-arrow { font-family: var(--font-display); font-size: 1.5rem; color: var(--text-secondary); }

.btn-text {
    background: none; border: none; color: #fff;
    font-family: var(--font-display); font-size: 1rem; text-transform: uppercase; letter-spacing: 1px;
    cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin: 0 auto;
}
.btn-text span { color: var(--accent-primary); font-size: 1.5rem; }

/* 6. Contact (Framed Map) */
.contact-section { position: relative; padding: 150px 0 100px; background-color: var(--bg-main); }
.map-container { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; }
.map-wrapper { 
    width: 100%; 
    aspect-ratio: 16 / 8;
    max-height: 500px; 
    position: relative; 
    overflow: hidden; 
    background: #1A1A1E; 
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}
.map-link { display: block; width: 100%; height: 100%; position: relative; }
.static-map-image { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.map-link:hover .static-map-image { transform: scale(1.05); }
.map-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.2);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.4s ease;
}
.map-link:hover .map-overlay { opacity: 1; }
.map-overlay span {
    background: var(--accent-primary); color: #fff;
    padding: 1rem 2rem; border-radius: 50px;
    font-family: var(--font-sans); font-weight: 600; font-size: 1.05rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    transform: translateY(20px); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.map-link:hover .map-overlay span { transform: translateY(0); }

.relative-container { position: relative; margin-top: -80px; z-index: 10; pointer-events: none; }
.floating-contact-card {
    background: var(--bg-surface);
    border-radius: 20px;
    padding: 3rem;
    width: 100%; max-width: 500px;
    margin-left: auto;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
    pointer-events: auto;
}
.card-header h3 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 2rem; color: var(--accent-primary); }
.info-group { margin-bottom: 1.5rem; }
.info-group h5 { font-size: 0.85rem; text-transform: uppercase; color: var(--text-secondary); letter-spacing: 1px; margin-bottom: 0.2rem; }
.info-group p { font-size: 1.05rem; }
.phone-number { font-family: var(--font-display); font-size: 1.5rem; color: #fff; }

/* SNS Card Links (Contact Card) */
.sns-card-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 0.5rem;
}
.sns-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: all 0.3s ease;
}
.sns-card-btn:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(209,106,67,0.3);
}
.sns-card-icon {
    font-size: 1.1rem;
}
.sns-card-icon.is-naver {
    color: #03c75a;
}

/* 7. Footer */
.modern-footer { background: #0A0A0C; padding: 5rem 0 3rem; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4rem; }
.footer-top .brand { font-family: var(--font-display); font-size: 1.2rem; color: var(--text-secondary); }
.sns-links { display: flex; gap: 1.5rem; }
.sns-icon { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-secondary); }
.sns-icon:hover { color: #fff; }
.footer-admin-link { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-secondary); }
.footer-admin-link:hover { color: #fff; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 2rem; }
.company-info { display: flex; flex-wrap: wrap; align-items: center; gap: 0.4rem 0; color: var(--text-secondary); font-size: 0.82rem; line-height: 1.8; margin-bottom: 1.2rem; }
.company-info .info-item strong { color: rgba(255,255,255,0.45); margin-right: 0.4rem; font-weight: 600; }
.company-info .info-divider { color: rgba(255,255,255,0.15); margin: 0 0.8rem; font-size: 0.7rem; }
.copyright { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

/* Promo Popup */
.promo-popup {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.promo-popup[hidden] {
    display: none;
}
.promo-popup.show {
    opacity: 1;
}
.promo-content.text-based {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem 2rem;
    max-width: 450px;
    width: 90%;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.promo-popup.show .promo-content.text-based {
    transform: translateY(0);
}
.promo-title {
    font-size: 1.8rem;
    margin: 1.5rem 0;
    line-height: 1.4;
    color: #fff;
}
.accent-text {
    color: var(--accent-primary);
}
.btn-close-x {
    position: absolute;
    top: 15px; right: 15px;
    background: rgba(255,255,255,0.1);
    color: var(--text-secondary);
    border: none;
    width: 32px; height: 32px;
    border-radius: 50%;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-fast);
}
.btn-close-x:hover { 
    background: rgba(255,255,255,0.2); 
    color: #fff;
}
.promo-badge {
    background: var(--accent-primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}
.promo-actions {
    margin-top: 2rem;
    display: flex;
}
.promo-actions button {
    flex: 1;
    padding: 1rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    border-radius: 12px;
}
.btn-promo-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-promo-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

@media (max-width: 480px) {
    .promo-content.text-based { width: 95%; max-width: 380px; padding: 2.5rem 1.5rem 1.5rem; }
}

/* Animations */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

/* Notice Detail Modal (front page) */
.notice-modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: noticeModalFadeIn 0.3s ease;
}

@keyframes noticeModalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.notice-modal-content {
    background: #1E1E22;
    border-radius: 20px;
    padding: 2.5rem;
    width: 100%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.notice-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.notice-modal-tag {
    font-size: 0.8rem;
    color: var(--accent-primary);
}

.notice-modal-close {
    background: rgba(255,255,255,0.05);
    border: none;
    color: #A0A0A5;
    width: 36px; height: 36px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.notice-modal-close:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.notice-modal-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.notice-modal-body {
    font-size: 1rem;
    line-height: 1.8;
    color: #A0A0A5;
    white-space: pre-wrap;
}

@media (max-width: 768px) {
    .notice-modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .headline { font-size: 3.5rem; }
    .editorial-grid { grid-template-columns: 1fr; gap: 4rem; }
    .ed-visual { max-width: 600px; margin: 0 auto; width: 100%; }
    .bento-section { padding: 48px 0 64px; }
    .bento-section .section-header { margin-bottom: 0.65rem; }
    .bento-section .section-header .section-title { font-size: 2.5rem; }
    .bento-section .section-desc { font-size: 0.93rem; max-width: 27rem; }
    .bento-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.85rem; }
    .bento-card {
        border-radius: 22px;
        min-height: 208px;
        height: 208px;
        padding: 0.72rem;
        gap: 0.72rem;
        grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.08fr);
    }
    .bento-content {
        height: auto;
        min-height: 0;
        margin-left: 0;
        margin-right: 0;
        padding: 0.04rem 0 0.04rem 0.04rem;
        gap: 0.5rem;
    }
    .bento-kicker { min-width: 2.5rem; padding: 0.3rem 0.56rem; font-size: 0.66rem; }
    .bento-content h4 { font-size: 1.08rem; min-height: 0; }
    .bento-content p { font-size: 0.78rem; line-height: 1.5; max-width: 14rem; }
    .bento-bg {
        margin-left: 0;
        margin-right: 0;
        padding: 0;
        border-radius: 16px;
    }
    .bento-image { width: 100%; height: 100%; }
}

@media (max-width: 768px) {
    /* Container */
    .container { padding: 0 5%; }

    /* Header */
    .nav-links { display: none; }
    .menu-trigger { display: block; }
    .modern-header { padding: 1.35rem 0; }
    .modern-header.scrolled { padding: 0.8rem 0; }
    .brand-logo a { font-size: 1.2rem; }
    .brand-logo span { font-size: 0.75rem; }

    /* Mobile Menu */
    .mobile-link { font-size: 1.7rem; font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
    .mobile-menu-inner { gap: 1.5rem; }

    /* Hero */
    .hero-split { flex-direction: column; min-height: auto; height: auto; padding: 0; display: flex; }
    .hero-content { padding: 104px 7% 24px; clip-path: none; flex: auto; }
    .hero-visual { flex: none; width: 100%; aspect-ratio: 16 / 9; min-height: 0; clip-path: none; background-color: var(--bg-surface); }
    .hero-image { object-position: center center; }
    .overline { font-size: 0.65rem; letter-spacing: 2px; margin-bottom: 1.2rem; }
    .headline { font-size: 2.4rem; letter-spacing: -1px; margin-bottom: 1.2rem; }
    .description { font-size: 0.95rem; margin-bottom: 2rem; line-height: 1.7; }
    .cta-button { font-size: 0.95rem; }

    /* About */
    .editorial-section { padding: 0 0 80px; }
    .editorial-section > .container { padding-left: 0; padding-right: 0; }
    .editorial-grid { gap: 2.5rem; }
    .ed-visual { position: static; width: 100%; max-width: 100%; margin: 0; left: auto; right: auto; aspect-ratio: 16 / 10; border-radius: 0; overflow: hidden; display: block; }
    .ed-image { transform: none; width: 100%; height: 100%; object-fit: cover; object-position: center center; display: block; }
    .ed-content { padding: 0 5%; }
    .section-title { font-size: 2.2rem; margin-bottom: 1.2rem; line-height: 1.2; }
    .lead-text { font-size: 1.15rem; line-height: 1.6; }
    .body-text { font-size: 0.95rem; line-height: 1.8; margin-bottom: 2rem; }
    .stats-row { gap: 2.5rem; padding-top: 2rem; }
    .stat-item { gap: 0.2rem; }
    .stat-num { font-size: 3.2rem; }
    .stat-label { font-size: 0.85rem; letter-spacing: 1px; }

    /* Premium Bento */
    .bento-section { padding: 44px 0 76px; border-radius: 40px 40px 0 0; }
    .bento-section .section-header { margin-bottom: 0.5rem; }
    .bento-section .section-header .section-title { font-size: 2.2rem; }
    .bento-section .section-desc { font-size: 0.98rem; max-width: none; }
    .bento-grid { grid-template-columns: 1fr; gap: 1.2rem; }
    .bento-card {
        min-height: 0;
        height: auto;
        padding: 0.82rem;
        border-radius: 24px;
        gap: 0.82rem;
        grid-template-columns: 1fr;
        grid-template-areas:
            "image"
            "content";
    }
    .bento-content {
        display: grid;
        grid-template-columns: 3rem minmax(0, 1fr);
        grid-template-areas:
            "kicker title"
            "body body";
        align-content: start;
        align-items: center;
        height: auto;
        min-height: auto;
        margin-top: 0;
        margin-left: 0;
        margin-right: 0;
        padding: 0.18rem 0.14rem 0.08rem;
        column-gap: 0.68rem;
        row-gap: 0.56rem;
        border-radius: 0;
    }
    .bento-kicker {
        grid-area: kicker;
        justify-self: start;
        align-self: center;
        min-width: 3rem;
        padding: 0.35rem 0.65rem;
        font-size: 0.72rem;
    }
    .bento-content h4 {
        grid-area: title;
        align-self: center;
        min-width: 0;
        font-size: 1.2rem;
        min-height: 0;
    }
    .bento-content p {
        grid-area: body;
        min-width: 0;
        font-size: 0.92rem;
        line-height: 1.66;
        min-height: 0;
        max-width: none;
    }
    .bento-note { display: inline-block; margin-top: 0; margin-left: 0.3rem; }
    .bento-bg {
        margin-left: 0;
        margin-right: 0;
        padding: 0;
        aspect-ratio: 16 / 10;
        height: auto;
    }
    .bento-image { filter: drop-shadow(0 14px 24px rgba(0,0,0,0.22)); }

    /* Pricing */
    .pricing-section { padding: 80px 0 60px; }
    .pricing-grid { flex-direction: column; align-items: stretch; gap: 1rem; margin-top: 2rem; }
    .pricing-grid .pricing-card { width: 100%; flex: none; max-width: none; }
    .pricing-card { padding: 2rem 1.5rem; border-radius: 16px; }
    .pricing-name { font-size: 1.15rem; }
    .pricing-desc { font-size: 0.82rem; margin-bottom: 1rem; }
    .pricing-amount { font-size: 2rem; }
    .pricing-amount.undecided { font-size: 1.2rem; }
    .pricing-unit { font-size: 0.8rem; }
    .pricing-features li { font-size: 0.85rem; padding: 0.3rem 0; }
    .pricing-notice { font-size: 0.8rem; margin-top: 2rem; }

    /* Notice */
    .notice-section { padding: 80px 0; }
    .list-row { flex-direction: column; align-items: flex-start; gap: 0.6rem; padding: 1.4rem 0; }
    .list-meta { width: 100%; flex-direction: row; align-items: center; gap: 0.8rem; }
    .tag { font-size: 0.68rem; padding: 0.15rem 0.5rem; }
    .date { font-size: 0.75rem; }
    .list-title { font-size: 1rem; font-weight: 500; line-height: 1.5; padding-right: 0; }
    .list-arrow { display: none; }
    .btn-text { font-size: 0.85rem; }
    .mt-xl { margin-top: 2.5rem; }

    /* Contact */
    .contact-section { padding: 110px 0 80px; }
    .map-wrapper { aspect-ratio: 16 / 10; height: auto; min-height: 280px; max-height: 420px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.06); }
    .map-overlay { opacity: 1; background: rgba(0,0,0,0.2); align-items: center; justify-content: center; padding-bottom: 0; }
    .map-overlay span { font-size: 0.95rem; padding: 0.85rem 1.5rem; transform: translateY(0); box-shadow: 0 10px 20px rgba(0,0,0,0.4); }
    .relative-container { margin-top: -28px; }
    .floating-contact-card { padding: 2.2rem; border-radius: 20px; max-width: 100%; border: 1px solid rgba(255,255,255,0.05); }
    .card-header h3 { font-size: 1.4rem; margin-bottom: 1.5rem; }
    .info-group { margin-bottom: 1.2rem; }
    .info-group h5 { font-size: 0.75rem; margin-bottom: 0.15rem; }
    .info-group p { font-size: 0.95rem; line-height: 1.6; }
    .phone-number { font-size: 1.2rem; }
    .sns-card-links { flex-direction: column; gap: 0.6rem; }
    .sns-card-btn { font-size: 0.85rem; padding: 0.55rem 1rem; }

    /* Footer */
    .modern-footer { padding: 3rem 0 2rem; }
    .footer-top { flex-direction: column; align-items: flex-start; gap: 1.2rem; margin-bottom: 2rem; }
    .footer-top .brand { font-size: 1rem; }
    .footer-admin-link { font-size: 0.8rem; }
    .company-info .info-divider { display: none; }
    .company-info { flex-direction: column; gap: 0.3rem; font-size: 0.78rem; }
    .copyright { text-align: left; font-size: 0.72rem; }
}

/* Small phones */
@media (max-width: 380px) {
    .headline { font-size: 2rem; }
    .section-title { font-size: 1.6rem; }
    .bento-section .section-header .section-title { font-size: 1.5rem; }
    .pricing-amount { font-size: 1.8rem; }
    .bento-card { padding: 0.72rem; border-radius: 20px; }
    .bento-content {
        grid-template-columns: 2.85rem minmax(0, 1fr);
        padding: 0.12rem 0.08rem 0.04rem;
        column-gap: 0.52rem;
        row-gap: 0.5rem;
    }
    .bento-kicker { min-width: 2.85rem; }
    .bento-content h4 { font-size: 1.06rem; min-height: 0; }
    .bento-content p { font-size: 0.84rem; line-height: 1.65; }
    .bento-note { display: block; margin-left: 0; margin-top: 0.16rem; }
    .bento-bg { padding: 0; border-radius: 18px; }
    .card-header h3 { font-size: 1.2rem; }
}
