:root {
    --primary: #d4af37;
    --primary-glow: rgba(212, 175, 55, 0.4);
    --primary-rgb: 212, 175, 55;
    --bg-dark: #050507;
    --text-main: #ffffff;
    --text-muted: #a0a0b0;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Pretendard', -apple-system, 'Apple SD Gothic Neo', 'Malgun Gothic', '맑은 고딕', sans-serif; }
html { overflow-x: hidden; max-width: 100vw; }
body { background-color: var(--bg-dark); color: var(--text-main); overflow-x: hidden; width: 100%; position: relative; }

.glass {
    background: var(--glass-bg); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

h1 { font-size: 4rem; line-height: 1.2; letter-spacing: -0.02em; font-weight: 800; }
h2 { font-size: 2.5rem; letter-spacing: -0.01em; margin-bottom: 1rem; }
p { color: var(--text-muted); line-height: 1.6; }

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

button { border: none; cursor: pointer; font-weight: 600; border-radius: 8px; transition: all 0.3s; }
.btn-primary { background: var(--primary); color: #000; padding: 10px 20px; }
.btn-primary:hover { box-shadow: 0 0 20px var(--primary-glow); transform: translateY(-2px); }
.btn-secondary { background: transparent; color: #fff; border: 1px solid var(--glass-border); padding: 10px 20px; }
.btn-secondary:hover { background: rgba(255,255,255,0.1); }
button.large { padding: 14px 28px; font-size: 1.1rem; }

/* ── Navbar ── */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; display: flex; justify-content: space-between; align-items: center; padding: 15px 5%; }
.navbar .logo { 
    font-family: 'Outfit', sans-serif; font-size: 1.9rem; display: flex; align-items: center; 
    position: relative; cursor: pointer; text-decoration: none; transition: all 0.3s;
    user-select: none; -webkit-user-select: none;
}
.logo-icon { 
    margin-right: 10px; display: inline-block; 
    animation: logoFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 0 4px rgba(212,175,55,0.4));
}
@keyframes logoFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }
.logo-pass { 
    font-weight: 900; letter-spacing: -0.03em;
    background: linear-gradient(180deg, #ffffff 30%, rgba(212,175,55,0.3) 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.15));
}
.logo-flow { 
    font-weight: 300; font-style: italic; letter-spacing: 0.03em;
    background: linear-gradient(135deg, #d4af37 0%, #f5d76e 40%, #d4af37 100%);
    background-size: 200% 200%; animation: logoShimmer 4s ease-in-out infinite;
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(212,175,55,0.3));
}
.navbar .logo::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px;
    background: linear-gradient(90deg, var(--primary), #f5d76e, transparent);
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1); border-radius: 2px;
}
.navbar .logo:hover::after { width: 100%; }
.navbar .logo:hover { filter: drop-shadow(0 0 15px rgba(212,175,55,0.2)); }
@keyframes logoShimmer { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
.nav-links { display: flex; align-items: center; }
.nav-links a { color: #fff; text-decoration: none; margin-left: 20px; font-size: 0.95rem; opacity: 0.8; transition: 0.2s; }
.nav-links a:hover { opacity: 1; }
.nav-hamburger { display: none; background: transparent; color: white; font-size: 1.5rem; border: none; padding: 5px 10px; }

/* ── Centered Language Switcher (navbar) ── */
.lang-switcher { position: absolute; left: 50%; transform: translateX(-50%); display: flex; align-items: center; z-index: 100; }
.lang-switcher .lang-switcher-btn,
.lang-switcher > button {
    display: flex; align-items: center; gap: 6px;
    padding: 6px 14px; border-radius: 8px;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8); font-size: 0.85rem; font-weight: 500;
    cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.lang-switcher .lang-switcher-btn:hover,
.lang-switcher > button:hover {
    background: rgba(255,255,255,0.1); border-color: rgba(212,175,55,0.3);
}
.lang-dropdown, #langDrop {
    position: absolute; top: calc(100% + 8px);
    left: 50%; transform: translateX(-50%);
    min-width: 180px; max-height: 70vh; overflow-y: auto;
    background: rgba(15,15,20,0.98); backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12); border-radius: 12px;
    padding: 6px; display: none; z-index: 1000;
    box-shadow: 0 12px 40px rgba(0,0,0,0.7);
}
.lang-dropdown.show, #langDrop[style*="display: block"], #langDrop[style*="display:block"] { display: block; }
.lang-dropdown-link {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px; border-radius: 8px;
    text-decoration: none; font-size: 0.9rem;
    color: rgba(255,255,255,0.85); transition: all 0.15s;
}
.lang-dropdown-link:hover { background: rgba(212,175,55,0.1); color: #d4af37; }
.lang-dropdown-link.active { color: #d4af37; font-weight: 700; background: rgba(212,175,55,0.08); }

.container { max-width: 1200px; margin: 0 auto; padding: 60px 5%; }
.section-desc { text-align: center; margin-bottom: 30px; font-size: 1.1rem; }

/* ── Hero ── */
.hero { min-height: 75vh; position: relative; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 60px 5% 0; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: url('assets/hero_bg_ai.webp'); background-size: cover; background-position: center; opacity: 0.2; z-index: -1; mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%); -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%); }
.hero-badge { display: inline-block; padding: 8px 16px; border-radius: 20px; background: rgba(212, 175, 55, 0.15); border: 1px solid rgba(212, 175, 55, 0.3); color: var(--primary); font-size: 0.9rem; }
/* ── Features Page Styles ── */
.features-header { padding: 160px 8% 80px; text-align: center; background: url('assets/hero_features_ai_meeting_bg.webp') center/cover; position: relative; box-sizing: border-box; }
.features-header::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,10,10,0.7), rgba(10,10,10,0.9)); z-index: 0; }
.features-header .container { position: relative; z-index: 1; margin: 0 auto; max-width: 1200px; }
.features-header h1 { font-size: 3rem; margin-bottom: 20px; line-height: 1.3; word-break: keep-all; }
.features-header p { font-size: 1.2rem; color: rgba(255,255,255,0.7); max-width: 700px; margin: 0 auto; line-height: 1.6; word-break: keep-all; }

.features-layout { display: flex; flex-direction: column; gap: 80px; padding: 60px 8%; max-width: 1300px; margin: 0 auto; box-sizing: border-box; }
.feat-role-section { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 32px; padding: 60px 8%; box-sizing: border-box; }
.feat-role-title { font-size: 2.2rem; display: flex; align-items: center; gap: 15px; margin-bottom: 20px; color: #fff; word-break: keep-all; }
.feat-role-desc { font-size: 1.1rem; color: #d4af37; margin-bottom: 40px; word-break: keep-all; line-height: 1.5; }

.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.feat-item { background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 35px 30px; transition: transform 0.3s; box-sizing: border-box; }
.feat-item:hover { transform: translateY(-5px); border-color: rgba(212,175,55,0.3); }
.feat-icon { font-size: 2rem; margin-bottom: 15px; }
.feat-item h4 { font-size: 1.25rem; margin-bottom: 12px; color: #fff; line-height: 1.4; word-break: keep-all; }
.feat-item p { font-size: 0.95rem; color: rgba(255,255,255,0.6); line-height: 1.6; word-break: keep-all; }

@media (max-width: 768px) {
    .features-header { padding: 130px 6% 60px; }
    .features-header h1 { font-size: 2.2rem; }
    .features-layout { padding: 40px 5%; gap: 50px; }
    .feat-role-section { padding: 40px 6%; border-radius: 24px; }
    .feat-role-title { font-size: 1.8rem; }
    .feat-item { padding: 25px 20px; }
}
.hero p { font-size: 1.2rem; max-width: 700px; margin: 20px auto 30px; }
.hero-buttons { display: flex; gap: 15px; justify-content: center; margin-bottom: 40px; }

/* ── App Screenshot Showcase ── */
/* ── 3D Card Gallery ── */
.card-gallery {
    width: 100%; max-width: 700px; margin: 30px auto 0;
    perspective: 1200px;
    height: 340px; position: relative;
}
.card-gallery-inner {
    width: 100%; height: 100%; position: relative;
    transform-style: preserve-3d;
    animation: galleryRotate 28s ease-in-out infinite;
}
.gallery-card {
    position: absolute; width: 380px; height: 240px;
    left: 50%; top: 50%;
    border-radius: 16px; overflow: hidden;
    background: #111; border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 30px rgba(212,175,55,0.05);
    transform: translate(-50%, -50%)
               rotateY(calc(var(--i) * 51.43deg))
               translateZ(320px);
    backface-visibility: hidden;
    transition: box-shadow 0.5s;
}
.gallery-card img {
    width: 100%; height: 100%; object-fit: cover; object-position: top center;
}
.gallery-card span {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 10px 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    font-size: 0.85rem; font-weight: 600; color: var(--primary);
    text-align: center;
}
@keyframes galleryRotate {
    0%, 10%   { transform: rotateY(0deg); }
    14.28%, 24% { transform: rotateY(-51.43deg); }
    28.57%, 38% { transform: rotateY(-102.86deg); }
    42.85%, 52% { transform: rotateY(-154.29deg); }
    57.14%, 67% { transform: rotateY(-205.71deg); }
    71.42%, 81% { transform: rotateY(-257.14deg); }
    85.71%, 95% { transform: rotateY(-308.57deg); }
    100%        { transform: rotateY(-360deg); }
}

/* ── Stats Banner ── */
.stats-banner { background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(212,175,55,0.02)); border-top: 1px solid rgba(212,175,55,0.15); border-bottom: 1px solid rgba(212,175,55,0.15); }
.stats-banner .container { padding: 40px 5%; }
.stats-grid { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 20px; }
.stat-item { text-align: center; min-width: 140px; }
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--primary); display: block; line-height: 1.2; }
.stat-label { font-size: 0.9rem; color: var(--text-muted); margin-top: 6px; display: block; }

/* ── Basics Section ── */
.basics { background: linear-gradient(to bottom, var(--bg-dark), #0d0d10); }
.basics-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.basic-card { padding: 28px; border-radius: 16px; position: relative; overflow: hidden; transition: 0.3s; }
.basic-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.15); }
.basic-icon { font-size: 2rem; margin-bottom: 15px; }
.basic-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: #fff; }
.basic-card p { font-size: 0.92rem; }
.basic-badge { position: absolute; top: 15px; right: 15px; font-size: 0.7rem; padding: 3px 10px; border-radius: 10px; background: rgba(76, 175, 80, 0.15); color: #4CAF50; border: 1px solid rgba(76, 175, 80, 0.3); font-weight: 600; }

/* ── Comparison Table ── */
.why-passflow { background: #050508; }
.comparison-table { border-radius: 16px; overflow: hidden; padding: 0; }
.comparison-table table { width: 100%; border-collapse: collapse; }
.comparison-table th, .comparison-table td { padding: 14px 20px; text-align: center; font-size: 0.95rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.comparison-table th { background: rgba(255,255,255,0.05); font-weight: 700; color: var(--text-muted); }
.comparison-table th.highlight { color: var(--primary); }
.comparison-table td { color: rgba(255,255,255,0.7); }
.comparison-table td.highlight { color: var(--primary); font-weight: 700; }
.comparison-table td:first-child { text-align: left; font-weight: 600; color: #fff; }
.comparison-table tr.diff-row { background: rgba(212, 175, 55, 0.03); }
.comparison-table tr.diff-row td:first-child { color: var(--primary); }

/* ── Showcase (image + text) ── */
.features { background: linear-gradient(to bottom, var(--bg-dark), #0d0d10); }
.showcase-item { display: flex; align-items: center; gap: 60px; margin-bottom: 80px; }
.showcase-item.reverse { flex-direction: row-reverse; }
.showcase-text { flex: 1; }
.showcase-text h3 { font-size: 1.5rem; color: #fff; margin-bottom: 15px; line-height: 1.4; }
.showcase-text p { font-size: 1rem; line-height: 1.7; margin-bottom: 20px; }
.showcase-number { font-size: 4rem; font-weight: 800; color: rgba(212,175,55,0.15); line-height: 1; margin-bottom: 10px; }
.showcase-highlights { list-style: none; padding: 0; }
.showcase-highlights li { padding: 8px 0; font-size: 0.95rem; color: rgba(255,255,255,0.8); border-bottom: 1px solid rgba(255,255,255,0.05); }
.showcase-image { flex: 1; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.6); transition: transform 0.5s; }
.showcase-image:hover { transform: scale(1.03); }
.showcase-image img { width: 100%; border-radius: 20px; display: block; }

/* ── Industry Customization ── */
.industry-custom { background: linear-gradient(to bottom, #0d0d10, var(--bg-dark)); }
.custom-showcase-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; }
.custom-card { border-radius: 16px; overflow: hidden; background: rgba(255,255,255,0.02); border: 1px solid var(--glass-border); transition: 0.4s; }
.custom-card:hover { border-color: rgba(212, 175, 55, 0.4); transform: translateY(-5px); }
.custom-card-img { height: 200px; overflow: hidden; }
.custom-card-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.custom-card:hover .custom-card-img img { transform: scale(1.08); }
.custom-card-body { padding: 25px; }
.custom-card-body h3 { font-size: 1.15rem; color: #fff; margin-bottom: 12px; }
.custom-card-body ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.custom-card-body li { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; }
.custom-card-body li strong { color: var(--primary); }

/* ── Owner Value ── */
.owner-value { background: linear-gradient(to bottom, var(--bg-dark), #0d0d10); }
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.value-card { padding: 28px; border-radius: 16px; transition: 0.3s; }
.value-card:hover { transform: translateY(-4px); border-color: rgba(212, 175, 55, 0.3); }
.value-icon { font-size: 2.2rem; margin-bottom: 12px; }
.value-card h3 { font-size: 1.15rem; color: #fff; margin-bottom: 10px; }
.value-card p { font-size: 0.92rem; }

/* ── Social Proof / Testimonials ── */
.social-proof { background: #050508; padding: 50px 0; }
.social-proof h2 { text-align: center; margin-bottom: 50px; }
.testimonial-with-photo { display: flex; gap: 40px; align-items: stretch; max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.testimonial-photo { flex: 0 0 320px; border-radius: 20px; overflow: hidden; min-height: 300px; }
.testimonial-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; }
.testimonial-with-photo .testimonial-grid { flex: 1; display: flex; flex-direction: column; gap: 20px; }
.testimonial { padding: 30px; border-radius: 16px; }
.testimonial-stars { font-size: 1rem; margin-bottom: 10px; letter-spacing: 2px; }
.testimonial p { font-size: 1rem; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 15px; }
.testimonial-author { font-size: 0.85rem; color: var(--primary); font-weight: 600; }

/* ── Onboarding Trust ── */
.onboarding-trust { background: linear-gradient(to bottom, #050508, var(--bg-dark)); }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.trust-card { padding: 28px; border-radius: 16px; border-left: 3px solid var(--primary); }
.trust-card h3 { font-size: 1.1rem; color: #fff; margin-bottom: 12px; }
.trust-card p { font-size: 0.92rem; }

/* ── FAQ ── */
.faq-section { background: linear-gradient(to bottom, var(--bg-dark), #050508); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border-radius: 16px; overflow: hidden; }
.faq-item summary { 
    padding: 20px 25px; cursor: pointer; font-size: 1.05rem; font-weight: 600; color: #fff; 
    list-style: none; display: flex; justify-content: space-between; align-items: center; transition: 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--primary); transition: 0.3s; }
.faq-item[open] summary::after { content: '−'; }
.faq-item[open] summary { border-bottom: 1px solid rgba(255,255,255,0.05); }
.faq-item p { padding: 20px 25px; font-size: 0.95rem; line-height: 1.7; }
.faq-item:hover { border-color: rgba(212,175,55,0.2); }

/* ── Pricing ── */
.pricing { background: linear-gradient(to bottom, #050508, var(--bg-dark)); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; max-width: 1000px; margin: 0 auto; }
.pricing-card { padding: 35px; border-radius: 20px; text-align: center; background: rgba(255,255,255,0.02); border: 1px solid var(--glass-border); position: relative; transition: 0.3s; }
.pricing-card:hover { transform: translateY(-5px); }
.pricing-card.popular { border-color: var(--primary); box-shadow: 0 0 30px rgba(212, 175, 55, 0.15); }
.popular-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #000; padding: 4px 16px; border-radius: 12px; font-size: 0.8rem; font-weight: 700; }
.pricing-card h3 { font-size: 1.3rem; margin-bottom: 15px; }
.pricing-card .price { font-size: 1rem; color: var(--text-muted); margin-bottom: 25px; }
.pricing-card .price span { font-size: 2.2rem; font-weight: 800; color: var(--primary); }
.pricing-card ul { list-style: none; text-align: left; margin-bottom: 25px; display: flex; flex-direction: column; gap: 10px; }
.pricing-card li { font-size: 0.95rem; color: rgba(255,255,255,0.7); }
.pricing-card button { width: 100%; padding: 12px; font-size: 1rem; }
.pricing-note { margin-top: 12px; font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* ── B2B (minimized) ── */
.b2b-marketplace { padding: 40px 0; background: var(--bg-dark); border-top: 1px solid rgba(255,255,255,0.05); }

/* ── Footer ── */
.footer { text-align: center; padding: 50px 5% 30px; background: #050508; }
.footer-cta { margin-bottom: 60px; }
.footer-cta h2 { font-size: 2.5rem; margin-bottom: 20px; }
.footer-cta p { margin-bottom: 30px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; color: var(--text-muted); font-size: 0.9rem; }

/* ── Tablet ── */
@media (max-width: 992px) {
    .showcase-item, .showcase-item.reverse { flex-direction: column; gap: 30px; }
    .custom-showcase-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Demo card responsive ── */
.demo-card-enhanced {
    background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: clamp(24px, 4vw, 40px) 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}
.demo-card-enhanced:hover { border-color: rgba(212,175,55,0.2); transform: translateY(-4px); }
.demo-card-enhanced img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.demo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

/* ── Mobile ── */
@media (max-width: 768px) {
    /* Demo grid: force single column on mobile */
    .demo-grid,
    [style*="grid-template-columns:repeat(2,1fr)"],
    [style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
    .demo-card-enhanced { padding: 20px !important; }
    .demo-card-enhanced img { height: 160px !important; }
    /* 타이틀 & 텍스트 */
    h1 { font-size: 1.8rem; line-height: 1.35; word-break: keep-all; overflow-wrap: break-word; }
    h2 { font-size: 1.5rem; line-height: 1.35; word-break: keep-all; overflow-wrap: break-word; }
    p { font-size: 0.95rem; }

    /* 네비게이션 */
    .navbar { padding: 12px 4%; }
    .navbar .logo { font-size: 1.2rem; }
    .nav-links { 
        display: none; position: fixed; top: 55px; left: 0; right: 0; 
        background: rgba(10,10,12,0.98); backdrop-filter: blur(20px); 
        flex-direction: column; padding: 20px; gap: 15px; 
        border-bottom: 1px solid var(--glass-border); z-index: 999;
    }
    .nav-links.open { display: flex; }
    .nav-links a { margin-left: 0; font-size: 1.05rem; opacity: 1; padding: 8px 0; }
    .nav-hamburger { display: block; }

    /* 모바일: 언어 선택기를 햄버거 메뉴 왼쪽으로 이동 (겹침 방지) */
    .lang-switcher {
        position: static !important;
        left: auto !important; transform: none !important;
        margin-left: auto; margin-right: 8px;
    }
    .lang-dropdown, #langDrop {
        left: auto !important; right: 0 !important;
        transform: none !important;
    }

    /* CTA 버튼 긴 텍스트 방어 (DE/RU 등) */
    .single-plan-card a[class*="btn"],
    .single-plan-card a[style*="border-radius:30px"],
    .single-plan-card a[style*="border-radius: 12px"] {
        word-break: keep-all;
        overflow-wrap: break-word;
        font-size: clamp(0.85rem, 3vw, 1.05rem) !important;
        padding: 14px 16px !important;
    }

    /* Hero — 네비바에 가리지 않도록 padding-top 추가 */
    .hero { padding-top: 80px; min-height: auto; padding-bottom: 40px; }
    .hero p { font-size: 0.95rem; margin: 15px auto 30px; padding: 0 5%; }
    .hero-badge { font-size: 0.8rem; padding: 6px 12px; }
    .hero-buttons { flex-direction: column; align-items: center; gap: 10px; }
    .hero-buttons button.large { width: 100%; max-width: 300px; padding: 14px 20px; font-size: 1rem; }
    .card-gallery { height: 260px; }
    .gallery-card { width: 280px; height: 180px; }
    .gallery-card { transform: translate(-50%, -50%) rotateY(calc(var(--i) * 51.43deg)) translateZ(200px); }

    /* 컨테이너 패딩 축소 */
    .container { padding: 40px 5%; }
    .section-desc { font-size: 0.95rem; margin-bottom: 30px; }

    /* 숫자 배너 */
    .stats-banner .container { padding: 30px 5%; }
    .stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stat-number { font-size: 1.8rem; }
    .stat-label { font-size: 0.8rem; }

    /* 기본 기능 그리드 */
    .basics-grid { grid-template-columns: 1fr; gap: 15px; }
    .basic-card { padding: 20px; }
    .basic-icon { font-size: 1.6rem; margin-bottom: 10px; }
    .basic-card h3 { font-size: 1.05rem; }
    .basic-card p { font-size: 0.88rem; }

    /* 비교표 — 가로 스크롤 */
    .comparison-table { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .comparison-table table { min-width: 500px; }
    .comparison-table th, .comparison-table td { padding: 10px 8px; font-size: 0.78rem; }

    /* 쇼케이스 */
    .showcase-item, .showcase-item.reverse { flex-direction: column; gap: 25px; margin-bottom: 50px; }
    .showcase-number { font-size: 2.5rem; }
    .showcase-text h3 { font-size: 1.2rem; }
    .showcase-text p { font-size: 0.92rem; }
    .showcase-highlights li { font-size: 0.88rem; padding: 6px 0; }

    /* 가치 카드 */
    .value-grid { grid-template-columns: 1fr; gap: 15px; }
    .value-card { padding: 22px; }
    .value-icon { font-size: 1.8rem; }
    .value-card h3 { font-size: 1.05rem; }

    /* 업종 맞춤 */
    .custom-showcase-grid { grid-template-columns: 1fr; gap: 15px; }
    .custom-card-img { height: 160px; }
    .custom-card-body { padding: 18px; }
    .custom-card-body h3 { font-size: 1.05rem; }

    /* 후기 */
    .social-proof { padding: 50px 0; }
    .testimonial-with-photo { flex-direction: column; gap: 25px; padding: 0 5%; }
    .testimonial-photo { flex: none; max-height: 200px; border-radius: 16px; }
    .testimonial { padding: 22px; }
    .testimonial p { font-size: 0.92rem; }

    /* 신뢰 */
    .trust-grid { grid-template-columns: 1fr; gap: 15px; }
    .trust-card { padding: 22px; }
    .trust-card h3 { font-size: 1.05rem; }

    /* FAQ */
    .faq-item summary { padding: 16px 20px; font-size: 0.95rem; }
    .faq-item p { padding: 16px 20px; font-size: 0.9rem; }

    /* 가격 */
    .pricing-grid { grid-template-columns: 1fr; gap: 20px; max-width: 400px; }
    .pricing-card { padding: 25px; }
    .pricing-card .price span { font-size: 1.8rem; }

    /* 푸터 */
    .footer { padding: 50px 5% 30px; }
    .footer-cta h2 { font-size: 1.6rem; }
    .footer-cta p { font-size: 0.9rem; }
}

/* ── Small phone ── */
@media (max-width: 400px) {
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.3rem; }
    .hero { padding-top: 80px; }
    .card-gallery { height: 200px; }
    .gallery-card { width: 220px; height: 140px; }
    .gallery-card { transform: translate(-50%, -50%) rotateY(calc(var(--i) * 51.43deg)) translateZ(150px); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .stat-number { font-size: 1.5rem; }
}

/* ── Hero Price Banner ── */
.hero-price-banner { margin: 30px 0 10px; }
.price-shock { display: inline-flex; flex-direction: column; align-items: center; padding: 20px 40px; border-radius: 20px; background: rgba(212, 175, 55, 0.08); border: 2px solid rgba(212, 175, 55, 0.3); animation: pricePulse 3s ease-in-out infinite; }
.price-shock .price-label { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; margin-bottom: 4px; }
.price-shock .price-big { font-size: 1.4rem; color: #fff; font-weight: 700; }
.price-shock .price-big em { font-size: 2.8rem; font-style: normal; color: var(--primary); font-weight: 900; }
.price-shock .price-sub { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-top: 4px; }
@keyframes pricePulse { 0%,100% { box-shadow: 0 0 0 0 rgba(212,175,55,0); } 50% { box-shadow: 0 0 30px rgba(212,175,55,0.15); } }



/* ── Link as button ── */
a.btn-primary, a.btn-secondary { text-decoration: none; display: inline-block; text-align: center; }
a.btn-primary { background: var(--primary); color: #000; padding: 10px 20px; border-radius: 8px; font-weight: 600; transition: all 0.3s; }
a.btn-primary:hover { box-shadow: 0 0 20px var(--primary-glow); transform: translateY(-2px); }
a.btn-primary.large { padding: 14px 28px; font-size: 1.1rem; }
a.btn-secondary { background: transparent; color: #fff; border: 1px solid var(--glass-border); padding: 10px 20px; border-radius: 8px; font-weight: 600; transition: all 0.3s; }
a.btn-secondary:hover { background: rgba(255,255,255,0.1); }
a.btn-secondary.large { padding: 14px 28px; font-size: 1.1rem; }

/* ── Animations ── */
.fade-in-hidden { opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-in-visible { opacity: 1; transform: translateY(0); }

/* ── Mobile override for price banner ── */
@media (max-width: 768px) {
    .price-shock { padding: 15px 25px; }
    .price-shock .price-big em { font-size: 2rem; }
    .hero-buttons { flex-direction: column; align-items: center; gap: 10px; }
    .hero-buttons a.large { width: 100%; max-width: 300px; }
}

/* ── Features List Layout ── */
.detail-list { margin-top: 15px; padding-left: 20px; color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.6; word-break: keep-all; }
.detail-list li { margin-bottom: 8px; list-style-type: disc; }
.detail-list li::marker { color: #d4af37; }

/* ── CSS App Mockup ── */
.mock-ui { padding: 25px 20px; color: #fff; height: 100%; display: flex; flex-direction: column; background: #0a0a0a; font-family: 'Pretendard', sans-serif; box-sizing: border-box; text-align: left; }
.mock-header { display: flex; align-items: center; margin-bottom: 30px; gap: 12px; animation: slideDown 0.6s ease; }
.mock-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, #d4af37, #f7d070); box-shadow: 0 4px 10px rgba(212,175,55,0.3); }
.mock-greeting { font-size: 1rem; font-weight: 600; }
.mock-body { flex: 1; display: flex; flex-direction: column; gap: 15px; }
.mock-stat-box { background: rgba(255,255,255,0.05); padding: 18px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.08); animation: fadeIn 0.8s ease backwards; }
.mock-stat-box:nth-child(1) { animation-delay: 0.2s; }
.mock-stat-box:nth-child(2) { animation-delay: 0.4s; }
.mock-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); display: block; margin-bottom: 8px; font-weight: 500; }
.mock-stat-value { font-size: 1.6rem; font-weight: 700; color: #fff; display: flex; align-items: center; gap: 10px; letter-spacing: -0.5px; }
.mock-stat-value .up { font-size: 0.75rem; color: #4ade80; background: rgba(74, 222, 128, 0.15); padding: 4px 8px; border-radius: 12px; font-weight: 600; }
.mock-chart-container { background: rgba(255,255,255,0.05); padding: 18px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.08); animation: fadeIn 0.8s ease backwards; animation-delay: 0.6s; margin-bottom: 5px; }
.mock-chart { display: flex; align-items: flex-end; justify-content: space-between; height: 60px; margin-top: 15px; }
.mock-chart .bar { width: 12%; background: linear-gradient(to top, rgba(212,175,55,0.4), rgba(212,175,55,0.9)); border-radius: 4px 4px 0 0; animation: growUp 1s ease-out backwards; transform-origin: bottom; }
.mock-chart .bar:nth-child(1) { animation-delay: 0.7s; }
.mock-chart .bar:nth-child(2) { animation-delay: 0.8s; }
.mock-chart .bar:nth-child(3) { animation-delay: 0.9s; }
.mock-chart .bar:nth-child(4) { animation-delay: 1.0s; }
.mock-chart .bar:nth-child(5) { animation-delay: 1.1s; }
.mock-chart .bar:nth-child(6) { animation-delay: 1.2s; }
.mock-chart .bar:nth-child(7) { animation-delay: 1.3s; }
.mock-alert { background: rgba(255, 60, 60, 0.15); border: 1px solid rgba(255, 60, 60, 0.3); padding: 14px; border-radius: 12px; font-size: 0.9rem; font-weight: 600; color: #ff8b8b; display: flex; align-items: center; gap: 10px; animation: slideUp 0.6s ease backwards; animation-delay: 1.5s; box-shadow: 0 4px 15px rgba(255, 60, 60, 0.1); }
@keyframes growUp { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-15px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideUp { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
