/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Noto Sans KR', 'Inter', sans-serif;
    color: #1a1a2e;
    background: #fff;
    line-height: 1.7;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: .3s; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button, input, select, textarea {
    font-family: inherit; font-size: inherit; border: none; outline: none; background: none;
}

/* ========== HEADER ========== */
.header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: .4s;
}
.header.scrolled { background: rgba(10, 22, 40, 0.98); box-shadow: 0 2px 20px rgba(0,0,0,0.2); }
.header-inner {
    max-width: 100%; margin: 0; padding: 0 40px 0 12px;
    display: flex; align-items: center; justify-content: space-between;
    position: relative;
    height: 72px;
}
.logo {
    margin-right: auto;
    display: flex; align-items: center;
}
.logo-img {
    height: 20px; width: auto;
    filter: brightness(0) invert(1);
}
.nav { display: flex; gap: 32px; position: absolute; left: 50%; transform: translateX(-50%); }
.nav a {
    color: rgba(255,255,255,0.6); font-size: 1.05rem; font-weight: 400;
    letter-spacing: 0.3px; transition: .3s;
}
.nav a:hover { color: #fff; }
.header-right { display: flex; align-items: center; gap: 16px; }
.lang-btn {
    color: rgba(255,255,255,0.5); font-size: 0.8rem; cursor: pointer;
    border: 1px solid rgba(255,255,255,0.2); padding: 6px 14px; border-radius: 4px;
}
.lang-btn:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
.hamburger {
    display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px;
}
.hamburger span {
    width: 24px; height: 2px; background: #fff; transition: .3s;
}

/* Mobile Nav */
.mobile-nav {
    display: none; position: fixed; top: 72px; left: 0; width: 100%;
    background: rgba(255, 255, 255, 0.98); flex-direction: column;
    padding: 20px 40px; gap: 16px; z-index: 999;
    transform: translateY(-10px); opacity: 0; pointer-events: none; transition: .3s;
}
.mobile-nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-nav a { color: rgba(0,0,0,0.7); font-size: 1rem; padding: 8px 0; }

/* ========== HERO ========== */
.hero {
    background: linear-gradient(135deg, #020515, #0a1628, #162d5a, #1a3a6e, #0f2045);
    background-size: 400% 400%;
    animation: heroGradientShift 8s ease infinite;
    padding: 140px 40px 60px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
@keyframes heroGradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
}
.hero-bg img {
    width: 100%; height: 100%; object-fit: cover;
}
.hero-bg-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(10,10,40,0.6) 0%, rgba(10,10,40,0.4) 50%, rgba(10,10,40,0.6) 100%);
}
.hero-inner {
    max-width: 1400px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    align-items: start;
    position: relative; z-index: 1;
}
.hero-title {
    font-size: 3.8rem; font-weight: 700; line-height: 1.25;
    letter-spacing: -1px; margin-bottom: 28px;
}
.hero-desc {
    font-size: 1.2rem; color: rgba(255,255,255,0.6); line-height: 1.8;
    margin-bottom: 40px;
}
.hero-cta {
    display: inline-block; padding: 16px 36px;
    border: 1px solid rgba(255,255,255,0.3); color: #fff;
    border-radius: 4px; font-size: 1rem; letter-spacing: 1px;
    transition: .3s;
}
.hero-cta:hover { background: #fff; color: #0a0a28; }

/* Hero Trust Card */
.hero-card-trust {
    background: #fff; border-radius: 16px; padding: 48px 44px;
    color: #1a1a2e;
}
.trust-divider {
    width: 40px; height: 3px; background: #2c4a7c; margin-bottom: 24px;
}
.trust-eyebrow {
    font-size: 0.8rem; letter-spacing: 2px; color: #888; margin-bottom: 16px;
}
.trust-title {
    font-size: 1.8rem; font-weight: 700; line-height: 1.4; margin-bottom: 12px;
    color: #1a1a2e;
}
.trust-desc {
    font-size: 0.95rem; color: #888; margin-bottom: 32px;
}
.trust-logos {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
    margin-bottom: 20px;
}
.trust-logo-item {
    background: #f5f7fa; border-radius: 10px; padding: 16px 12px;
    display: flex; align-items: center; justify-content: center;
    min-height: 56px;
}
.trust-logo-item img {
    max-width: 80px; max-height: 28px; object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: .3s;
}
.trust-logo-item:hover img {
    filter: grayscale(0%) opacity(1);
}
.trust-more {
    text-align: center; font-size: 0.85rem; color: #aaa; margin-top: 8px;
}

/* Featured Cards */
.hero-features {
    max-width: 1400px; margin: 48px auto 0;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
    position: relative; z-index: 1;
}
.feature-card {
    border-radius: 0; min-height: 380px;
    position: relative; overflow: hidden; cursor: pointer;
    transition: transform .3s;
}
.feature-card:hover { transform: translateY(-4px); }
.feature-card-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 1;
}
.feature-card-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.65) 100%);
    z-index: 2;
}
.feature-card-content {
    position: relative; z-index: 3;
    padding: 32px; height: 100%; min-height: 380px;
    display: flex; flex-direction: column; justify-content: flex-end;
    color: #fff;
}
.feature-label {
    font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 12px;
    color: rgba(255,255,255,0.7);
}
.feature-card-content h4 { font-size: 1.2rem; font-weight: 600; line-height: 1.5; color: #fff; }

/* ========== STATS ========== */
.stats {
    background: #f5f5f5; padding: 80px 40px;
}
.stats-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
    text-align: center;
}
.stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 3.2rem; font-weight: 600; color: #1a1a2e;
    letter-spacing: -1px;
}
.stat-plus, .stat-unit { font-size: 2rem; font-weight: 600; }
.stat-label-ko { font-size: 0.95rem; color: #555; margin-top: 8px; }
.stat-label-en {
    font-size: 0.75rem; letter-spacing: 3px; color: #999; margin-top: 4px;
}

/* ========== WHY HM ========== */
.why-hm { padding: 140px 40px; background: #fff; }
.section-inner { max-width: 1400px; margin: 0 auto; }
.section-eyebrow {
    font-size: 1.05rem; letter-spacing: 3px; color: #888;
    text-transform: uppercase; margin-bottom: 20px;
}
.section-title {
    font-size: 3.2rem; font-weight: 700; line-height: 1.3;
    letter-spacing: -1px; margin-bottom: 20px;
}
.section-subtitle {
    font-size: 1.15rem; color: #777; margin-bottom: 72px;
}
.why-cards {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.why-card {
    background: #fff; border: 1px solid #eee; border-radius: 8px;
    padding: 48px 36px;
    transition: .3s;
}
.why-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-4px); }
.why-num {
    font-family: 'Inter', sans-serif;
    font-size: 1rem; color: #bbb; margin-bottom: 28px; display: block;
}
.why-card h3 {
    font-size: 1.6rem; font-weight: 700; line-height: 1.5;
    margin-bottom: 24px; letter-spacing: -0.5px;
}
.why-card p { font-size: 1.05rem; color: #777; line-height: 1.8; }

/* ========== ABOUT ========== */
.about { padding: 0; overflow: hidden; }
.about-inner {
    max-width: 1920px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    height: 655px;
    overflow: hidden;
}
.about-img {
    overflow: hidden;
}
.about-img img {
    width: 100%; height: 100%; object-fit: cover;
}
.about-content {
    display: flex; flex-direction: column;
    justify-content: center;
    padding: 60px;
    gap: 0;
    background: #e8ecf0;
}
.about-title {
    font-size: 3.2rem; font-weight: 700; line-height: 1.3;
    letter-spacing: -1px; margin-bottom: 24px; color: #1a1a2e;
}
.about-desc {
    font-size: 1.15rem; color: #555; line-height: 1.8; margin-bottom: 40px;
}
.about-selects {
    display: flex; gap: 16px;
}
.about-select {
    position: relative; flex: 1; max-width: 240px;
}
.about-select select {
    width: 100%; padding: 14px 40px 14px 16px;
    background: #fff; border: 1px solid #ddd; border-radius: 4px;
    font-size: 0.95rem; color: #333; cursor: pointer;
    appearance: none; -webkit-appearance: none;
}
.select-arrow {
    position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
    font-size: 1.1rem; color: #999; pointer-events: none;
}
.btn-outline {
    display: inline-block; padding: 10px 20px;
    border: 1px solid #1a1a2e; border-radius: 30px;
    font-size: 0.8rem; letter-spacing: 1px; font-weight: 500;
    transition: .3s; width: fit-content; margin-top: auto;
}
.btn-outline:hover { background: #1a1a2e; color: #fff; }

/* ========== SERVICES ========== */
.services { padding: 180px 40px 80px; }
.service-block {
    max-width: 1400px; margin: 0 auto 60px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: center;
}
.service-block.reverse { direction: ltr; }
.service-block.reverse .service-img { order: -1; }
.service-badge {
    display: inline-block; padding: 6px 14px;
    background: #2c4a7c; color: #fff;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 2px;
    border-radius: 2px; margin-bottom: 20px;
}
.service-text h2 {
    font-size: 2.8rem; font-weight: 600; line-height: 1.3;
    margin-bottom: 24px; letter-spacing: -0.5px;
}
.service-text p {
    font-size: 1.15rem; color: #666; line-height: 1.8; margin-bottom: 28px;
}
.service-list { margin-bottom: 0; }
.service-list li {
    padding: 8px 0; font-size: 1.05rem; color: #555;
    display: flex; align-items: center; gap: 10px;
}
.service-list li::before {
    content: '✓'; color: #2c4a7c; font-weight: 700; font-size: 1rem;
}
.service-link {
    color: #2c4a7c; font-weight: 600; font-size: 1rem;
    display: flex; align-items: center; justify-content: flex-end; gap: 4px;
    margin-top: -1.6em;
}
.service-link:hover { color: #1e3a5f; }
.service-img { border-radius: 12px; overflow: hidden; }
.service-img img { width: 100%; height: 420px; object-fit: cover; }
.service-block:first-child .service-img img { filter: brightness(0.7); }

/* ========== THREE CARDS - MAGAZINE ========== */
.three-cards { padding: 0 40px 120px; }
.magazine-grid {
    max-width: 1400px; margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 360px 360px;
    gap: 20px;
}
.mag-main { grid-row: span 2; }
.mag-bottom { grid-column: span 2; }
.mag-bottom .card-bottom { height: 100%; }
.card-large {
    border-radius: 12px; overflow: hidden; position: relative;
    background: #000;
}
.card-large img {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(0.6);
}
.card-large-content {
    position: absolute; bottom: 40px; left: 40px; right: 40px; color: #fff;
}
.card-eyebrow {
    font-size: 0.85rem; letter-spacing: 2px; color: rgba(255,255,255,0.7);
    margin-bottom: 14px; display: block;
}
.card-eyebrow-dark {
    font-size: 0.85rem; letter-spacing: 2px; color: #888;
    margin-bottom: 14px; display: block;
}
.card-large-content h3 {
    font-size: 2.8rem; font-weight: 600; line-height: 1.3;
    margin-bottom: 28px;
}
.btn-pill {
    display: inline-block; padding: 12px 28px;
    border: 1px solid rgba(255,255,255,0.4); border-radius: 30px;
    color: #fff; font-size: 0.85rem; letter-spacing: 1px;
    transition: .3s;
}
.btn-pill:hover { background: rgba(255,255,255,0.15); }
.card-stack { display: flex; flex-direction: column; gap: 24px; }
.card-top {
    flex: 1; background: #f0ece4; border-radius: 12px; padding: 40px;
    display: flex; flex-direction: column; justify-content: center;
}
.card-top h3 {
    font-size: 2.15rem; font-weight: 600; line-height: 1.3; margin-bottom: 16px;
}
.card-top p { font-size: 1.05rem; color: #777; margin-bottom: 20px; }
.btn-pill-green {
    display: inline-block; padding: 12px 28px; width: fit-content;
    background: #2c4a7c; border-radius: 30px;
    color: #fff; font-size: 0.85rem; letter-spacing: 1px; font-weight: 600;
    transition: .3s;
}
.btn-pill-green:hover { background: #1e3a5f; }
.card-bottom {
    flex: 1; border-radius: 12px; position: relative; overflow: hidden;
    color: #fff;
}
.card-bottom-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 1;
}
.card-bottom-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(13,27,94,0.75) 0%, rgba(44,74,124,0.6) 100%);
    z-index: 2;
}
.card-bottom-content {
    position: relative; z-index: 3; padding: 40px;
    display: flex; flex-direction: column; justify-content: center;
    height: 100%;
}
.card-bottom h3 {
    font-size: 2.4rem; font-weight: 600; line-height: 1.3; margin-bottom: 28px;
}

/* ========== CLIENTS ========== */
.clients { padding: 100px 40px; text-align: center; }
.clients-title {
    font-size: 2.4rem; font-weight: 700; margin-bottom: 24px;
}
.clients-divider {
    width: 40px; height: 3px; background: #3f51b5;
    margin: 0 auto 48px;
}
.clients-img-wrap {
    max-width: 1400px; margin: 0 auto; text-align: center;
}
.clients-img-wrap img {
    width: 100%; height: auto; display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* ========== INSIGHTS ========== */
.insights { background: #0c1a3a; color: #fff; overflow: hidden; position: relative; }
.insights-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    height: 666px;
}
.insights-left {
    padding: 80px 60px 80px calc((100vw - 1764px) / 2);
    display: flex; flex-direction: column; justify-content: flex-start;
}
.insights-eyebrow {
    font-size: 1.1rem; color: #4da6ff; margin-bottom: 24px;
}
.insights-left h2 {
    font-size: 2.8rem; font-weight: 500; line-height: 1.4;
    max-width: 900px;
}
.newsletter-floating {
    position: absolute; bottom: 120px; left: 50%; transform: translateX(-50%);
    width: 1764px; max-width: calc(100% - 40px);
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.08) 100%);
    backdrop-filter: blur(16px);
    border-radius: 16px; padding: 28px 36px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; z-index: 2;
}
.newsletter-floating p { font-size: 1.3rem; color: rgba(255,255,255,0.85); white-space: nowrap; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
    padding: 14px 20px; border-radius: 30px; min-width: 360px;
    background: rgba(255,255,255,0.9); color: #333; font-size: 0.9rem;
}
.btn-subscribe {
    padding: 14px 28px; background: #4da6ff; color: #fff;
    border-radius: 30px; font-size: 0.8rem; font-weight: 600;
    letter-spacing: 1px; cursor: pointer; transition: .3s;
    white-space: nowrap;
}
.btn-subscribe:hover { background: #3b8de0; }
.insights-right { overflow: hidden; }
.insights-right img { width: 100%; height: 100%; object-fit: cover; }

/* ========== FAQ ========== */
.faq { padding: 100px 40px; }
.faq-title {
    text-align: center; font-size: 3rem; font-weight: 700;
    margin-bottom: 48px; letter-spacing: -1px;
}
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-top: 1px solid #e0e0e0; }
.faq-item:last-child { border-bottom: 1px solid #e0e0e0; }
.faq-question {
    width: 100%; padding: 24px 0; display: flex;
    justify-content: space-between; align-items: center;
    cursor: pointer; font-size: 1.2rem; font-weight: 500;
    text-align: left; transition: .3s;
}
.faq-question:hover { color: #3f51b5; }
.faq-icon {
    font-size: 1.5rem; color: #999; transition: .3s;
    flex-shrink: 0; margin-left: 16px;
}
.faq-item.active .faq-icon { transform: rotate(45deg); color: #3f51b5; }
.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height .4s ease;
}
.faq-answer p {
    padding: 0 0 24px; font-size: 1.05rem; color: #666; line-height: 1.8;
}

/* ========== CONTACT ========== */
.contact { padding: 100px 40px; background: #fafafa; }
.contact-inner {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px;
    background: #fff; border-radius: 16px; padding: 60px;
    box-shadow: 0 4px 40px rgba(0,0,0,0.06);
}
.contact-info h2 {
    font-size: 2rem; font-weight: 600; margin-bottom: 16px;
}
.contact-desc { font-size: 0.95rem; color: #666; margin-bottom: 32px; }
.contact-phone {
    display: flex; align-items: center; gap: 16px;
    background: #f8f8f8; border-radius: 12px; padding: 20px 24px;
    margin-bottom: 24px;
}
.phone-icon {
    width: 48px; height: 48px; background: #2c4a7c; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: #fff;
    flex-shrink: 0;
}
.contact-phone small { font-size: 0.75rem; color: #999; display: block; }
.contact-phone strong { font-size: 1.3rem; font-weight: 700; }
.contact-details { margin-bottom: 28px; }
.contact-details p {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.9rem; color: #666; padding: 6px 0;
}
.contact-details svg { flex-shrink: 0; color: #999; }
.contact-form-wrap h3 {
    font-size: 1.3rem; font-weight: 700; margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 8px;
    color: #333;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 12px 16px; background: #f5f5f5;
    border: 1px solid #e8e8e8; border-radius: 8px;
    font-size: 0.9rem; color: #333; transition: .3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2c4a7c; background: #fff;
    box-shadow: 0 0 0 3px rgba(139,195,74,0.1);
}
.form-group textarea { resize: vertical; }
.form-check {
    display: flex; align-items: center; gap: 8px; margin-bottom: 24px;
}
.form-check input[type="checkbox"] {
    width: 18px; height: 18px; accent-color: #2c4a7c; cursor: pointer;
}
.form-check label { font-size: 0.85rem; color: #666; cursor: pointer; }
.btn-submit {
    width: 100%; padding: 16px; background: #2c4a7c; color: #fff;
    border-radius: 8px; font-size: 1rem; font-weight: 600;
    cursor: pointer; transition: .3s; letter-spacing: 0.5px;
}
.btn-submit:hover { background: #1e3a5f; }

/* ========== FOOTER ========== */
.footer { background: #fafafa; border-top: 1px solid #eee; padding: 20px 40px 20px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
    display: grid; grid-template-columns: 1.2fr 1fr 1fr;
    gap: 60px; padding-bottom: 48px; border-bottom: 1px solid #e0e0e0;
}
.footer-slogan p {
    font-size: 1.2rem; font-weight: 700; line-height: 1.5; color: #333;
}
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.9rem; color: #666; }
.footer-col a:hover { color: #1a1a2e; }
.footer-cta p { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.footer-cta small { font-size: 0.8rem; color: #888; display: block; margin-bottom: 20px; line-height: 1.6; }
.btn-contact {
    display: inline-block; padding: 14px 32px;
    background: #2c4a7c; color: #fff; border-radius: 30px;
    font-size: 0.85rem; font-weight: 600; letter-spacing: 1px;
    transition: .3s;
}
.btn-contact:hover { background: #1e3a5f; }
.footer-bottom { padding: 0; }
.footer-main-row {
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 40px;
}
.footer-right {
    display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
    flex-shrink: 0;
}
.footer-company-info p {
    font-size: 0.8rem; color: #999; line-height: 1.8;
}
.footer-social { display: flex; align-items: center; gap: 16px; }
.footer-privacy { font-size: 0.8rem; color: #888; text-decoration: underline; }
.footer-privacy:hover { color: #333; }
.footer-social span { font-size: 0.75rem; letter-spacing: 2px; color: #999; }
.footer-social a { color: #555; transition: .3s; }
.footer-social a:hover { color: #1a1a2e; }
.footer-copy {
    text-align: center; font-size: 0.8rem; color: #bbb; padding-top: 16px;
}

/* ========== THEME SWITCHER ========== */
.theme-switcher {
    position: fixed; top: 80px; right: 20px; z-index: 999;
    display: flex; flex-direction: column; gap: 6px;
    background: rgba(255,255,255,0.95); padding: 12px;
    border-radius: 10px; box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    max-height: calc(100vh - 100px); overflow-y: auto;
}
.theme-btn {
    padding: 8px 16px; border-radius: 6px; cursor: pointer;
    font-size: 0.8rem; font-weight: 500; color: #555;
    background: #f5f5f5; transition: .2s; border: 1px solid transparent;
}
.theme-btn:hover { background: #eee; }
.theme-btn.active { background: #2c4a7c; color: #fff; border-color: #2c4a7c; }
.theme-divider {
    font-size: 0.7rem; color: #999; text-align: center;
    padding: 4px 0; font-weight: 600;
}

/* About Theme Switcher */
.about-switcher {
    position: fixed; top: 80px; left: 20px; z-index: 999;
    display: flex; flex-direction: column; gap: 6px;
    background: rgba(255,255,255,0.95); padding: 12px;
    border-radius: 10px; box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.about-theme-btn {
    padding: 8px 16px; border-radius: 6px; cursor: pointer;
    font-size: 0.8rem; font-weight: 500; color: #555;
    background: #f5f5f5; transition: .2s; border: 1px solid transparent;
}
.about-theme-btn:hover { background: #eee; }
.about-theme-btn.active { background: #2c4a7c; color: #fff; border-color: #2c4a7c; }

/* ========== EFFECT SWITCHER ========== */
.effect-switcher {
    position:fixed; top:80px; right:20px; z-index:999;
    display:flex; flex-direction:column; gap:4px;
    background:rgba(0,0,0,0.85); padding:10px;
    border-radius:10px; backdrop-filter:blur(10px);
}
.effect-label {
    font-size:0.6rem; letter-spacing:2px; color:#4da6ff;
    text-align:center; padding-bottom:4px; font-weight:700;
}
.fx-btn {
    padding:6px 14px; border-radius:4px; cursor:pointer;
    font-size:0.75rem; font-weight:500; color:rgba(255,255,255,0.5);
    background:transparent; transition:.2s; border:1px solid transparent;
    text-align:left;
}
.fx-btn:hover { color:#fff; background:rgba(255,255,255,0.1); }
.fx-btn.active { color:#fff; background:#2c4a7c; }

/* Hero FX Container */
.hero-fx-container {
    position:absolute; top:0; left:0; width:100%; height:100%;
    z-index:0; pointer-events:none;
}

/* FX: Particles */
.fx-particle {
    position:absolute; border-radius:50%; background:rgba(77,166,255,0.15);
    animation:fxFloat 6s ease-in-out infinite;
}
@keyframes fxFloat {
    0%,100% { transform:translateY(0) scale(1); opacity:0.3; }
    50% { transform:translateY(-30px) scale(1.1); opacity:0.6; }
}

/* FX: Gradient */
.hero.fx-gradient {
    animation:fxGradientShift 8s ease infinite;
    background-size:400% 400% !important;
}
@keyframes fxGradientShift {
    0% { background-position:0% 50%; }
    50% { background-position:100% 50%; }
    100% { background-position:0% 50%; }
}

/* FX: Parallax */
.fx-parallax-layer {
    position:absolute; top:0; left:0; width:100%; height:120%;
}
.fx-pl-1 { background:radial-gradient(ellipse at 30% 50%, rgba(22,45,90,0.8) 0%, transparent 60%); }
.fx-pl-2 { background:radial-gradient(ellipse at 70% 30%, rgba(26,58,110,0.6) 0%, transparent 50%); }
.fx-pl-3 { background:radial-gradient(ellipse at 50% 80%, rgba(77,166,255,0.1) 0%, transparent 40%); }

/* FX: Grid */
.fx-grid-lines {
    position:absolute; top:0; left:0; width:100%; height:100%;
    background-image:
        linear-gradient(rgba(77,166,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(77,166,255,0.05) 1px, transparent 1px);
    background-size:60px 60px;
    animation:fxGridMove 20s linear infinite;
}
@keyframes fxGridMove { 0% { background-position:0 0; } 100% { background-position:60px 60px; } }
.fx-glow-orb {
    position:absolute; border-radius:50%; filter:blur(80px);
    animation:fxOrbPulse 4s ease-in-out infinite;
}
@keyframes fxOrbPulse {
    0%,100% { opacity:0.3; transform:scale(1); }
    50% { opacity:0.5; transform:scale(1.2); }
}

/* FX: Wave */
.fx-aurora {
    position:absolute; top:0; left:0; width:100%; height:100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(22,45,90,0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(77,166,255,0.1) 0%, transparent 40%);
    animation:fxAuroraShift 6s ease-in-out infinite alternate;
}
@keyframes fxAuroraShift { 0% { opacity:0.6; } 100% { opacity:1; } }
.fx-wave {
    position:absolute; bottom:0; left:0; width:200%; height:200px;
    background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='rgba(77,166,255,0.08)' d='M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,218.7C672,235,768,245,864,234.7C960,224,1056,192,1152,181.3C1248,171,1344,181,1392,186.7L1440,192L1440,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") repeat-x;
    background-size:50% 100%;
    animation:fxWaveMove 10s linear infinite;
}
@keyframes fxWaveMove { 0% { transform:translateX(0); } 100% { transform:translateX(-50%); } }

/* FX: Meteor */
.fx-meteor {
    position:absolute; width:2px;
    background:linear-gradient(to bottom, rgba(77,166,255,0.8), transparent);
    animation:fxMeteorFall linear infinite; opacity:0;
}
@keyframes fxMeteorFall {
    0% { transform:translateY(-100px) translateX(0) rotate(-45deg); opacity:0; }
    5% { opacity:1; } 60% { opacity:0.5; }
    100% { transform:translateY(110vh) translateX(-200px) rotate(-45deg); opacity:0; }
}

/* FX: Blob */
.fx-blob-wrap { position:absolute; top:0; left:0; width:100%; height:100%; filter:blur(60px); }
.fx-blob {
    position:absolute; border-radius:50%;
    animation:fxBlobMorph 8s ease-in-out infinite alternate;
}
@keyframes fxBlobMorph {
    0% { transform:translate(0,0) scale(1) rotate(0deg); border-radius:50%; }
    33% { transform:translate(60px,-40px) scale(1.2) rotate(120deg); border-radius:40% 60% 50% 70%; }
    66% { transform:translate(-30px,50px) scale(0.9) rotate(240deg); border-radius:60% 40% 70% 30%; }
    100% { transform:translate(40px,20px) scale(1.1) rotate(360deg); border-radius:50%; }
}

/* FX: Matrix */
.fx-matrix-wrap { position:absolute; top:0; left:0; width:100%; height:100%; overflow:hidden; opacity:0.15; }
.fx-matrix-col {
    position:absolute; top:-100%; font-family:'Inter',monospace;
    font-size:14px; color:#4da6ff; writing-mode:vertical-rl;
    animation:fxMatrixDrop linear infinite; letter-spacing:8px;
}
@keyframes fxMatrixDrop { 0% { transform:translateY(-100%); } 100% { transform:translateY(200vh); } }
.fx-scan-line {
    position:absolute; left:0; width:100%; height:3px;
    background:linear-gradient(90deg, transparent, rgba(77,166,255,0.3), transparent);
    animation:fxScanMove 4s ease-in-out infinite;
}
@keyframes fxScanMove {
    0% { top:-5%; opacity:0; } 10% { opacity:1; } 90% { opacity:1; } 100% { top:105%; opacity:0; }
}

/* FX: Split */
.fx-split-panel {
    position:absolute; top:0; height:100%;
    background:rgba(77,166,255,0.03);
    border-right:1px solid rgba(77,166,255,0.08);
    animation:fxSplitReveal 3s ease-out forwards;
    transform:scaleY(0); transform-origin:bottom;
}
@keyframes fxSplitReveal { 0% { transform:scaleY(0); } 100% { transform:scaleY(1); } }
.fx-pulse-ring {
    position:absolute; border-radius:50%;
    border:1px solid rgba(77,166,255,0.2);
    animation:fxPulseExpand 4s ease-out infinite;
}
@keyframes fxPulseExpand { 0% { transform:scale(0.5); opacity:0.8; } 100% { transform:scale(3); opacity:0; } }

/* FX: Nebula */
.fx-nebula-layer { position:absolute; top:0; left:0; width:100%; height:100%; }
.fx-neb-1 {
    background:radial-gradient(ellipse at 25% 40%, rgba(44,74,124,0.5) 0%, transparent 50%),
               radial-gradient(ellipse at 75% 60%, rgba(77,166,255,0.2) 0%, transparent 40%);
    animation:fxNeb1 10s ease-in-out infinite alternate;
}
.fx-neb-2 {
    background:radial-gradient(ellipse at 60% 30%, rgba(22,45,90,0.4) 0%, transparent 45%),
               radial-gradient(ellipse at 30% 70%, rgba(100,140,200,0.15) 0%, transparent 50%);
    animation:fxNeb2 12s ease-in-out infinite alternate;
}
@keyframes fxNeb1 { 0% { transform:translate(0,0) scale(1); } 100% { transform:translate(50px,-30px) scale(1.15); } }
@keyframes fxNeb2 { 0% { transform:translate(0,0) scale(1); } 100% { transform:translate(-40px,40px) scale(1.1); } }
.fx-star {
    position:absolute; width:2px; height:2px; background:#fff; border-radius:50%;
    animation:fxTwinkle 3s ease-in-out infinite;
}
@keyframes fxTwinkle { 0%,100% { opacity:0.2; } 50% { opacity:0.8; } }

/* FX: Vortex */
.fx-vortex-ring {
    position:absolute; border-radius:50%;
    border:1px solid rgba(77,166,255,0.15);
    top:50%; left:50%; transform:translate(-50%,-50%);
    animation:fxVortexSpin linear infinite;
}
@keyframes fxVortexSpin {
    0% { transform:translate(-50%,-50%) rotate(0deg) scale(1); opacity:0.6; }
    100% { transform:translate(-50%,-50%) rotate(360deg) scale(1.5); opacity:0; }
}

/* FX: Lightning */
.fx-lightning {
    position:absolute; top:0; left:0; width:100%; height:100%;
    background:transparent;
    animation:fxLightningFlash 6s infinite;
}
@keyframes fxLightningFlash {
    0%,93%,95%,97%,100% { background:transparent; }
    94% { background:rgba(77,166,255,0.03); }
    96% { background:rgba(77,166,255,0.06); }
}
.fx-bolt {
    position:absolute; width:3px; opacity:0;
    background:linear-gradient(to bottom, rgba(77,166,255,0.9), rgba(77,166,255,0.4), transparent);
    filter:blur(1px); animation:fxBoltStrike 5s infinite;
}
@keyframes fxBoltStrike {
    0%,89%,92%,94%,100% { opacity:0; }
    90% { opacity:1; } 91% { opacity:0.3; } 93% { opacity:0.8; }
}

/* FX: DNA */
.fx-dna-dot {
    position:absolute; width:6px; height:6px; border-radius:50%;
    animation:fxDnaFloat 4s ease-in-out infinite;
}
.fx-dna-line {
    position:absolute; width:1px; background:rgba(77,166,255,0.1);
    animation:fxDnaFloat 4s ease-in-out infinite;
}
@keyframes fxDnaFloat {
    0%,100% { transform:translateX(0); }
    50% { transform:translateX(var(--dx)); }
}

/* FX: Radar */
.fx-radar-sweep {
    position:absolute; top:50%; left:50%; width:600px; height:600px;
    transform:translate(-50%,-50%);
    border-radius:50%; border:1px solid rgba(77,166,255,0.1);
}
.fx-radar-beam {
    position:absolute; top:50%; left:50%; width:50%; height:2px;
    background:linear-gradient(90deg, rgba(77,166,255,0.6), transparent);
    transform-origin:left center;
    animation:fxRadarSweep 3s linear infinite;
}
@keyframes fxRadarSweep { 0% { transform:rotate(0deg); } 100% { transform:rotate(360deg); } }
.fx-radar-ping {
    position:absolute; width:8px; height:8px; border-radius:50%;
    background:rgba(77,166,255,0.8);
    animation:fxRadarPing 3s ease-out infinite;
}
@keyframes fxRadarPing {
    0% { transform:scale(1); opacity:0.8; } 50% { opacity:0.4; } 100% { transform:scale(1); opacity:0.8; }
}

/* FX: Glitch */
.fx-glitch-overlay {
    position:absolute; top:0; left:0; width:100%; height:100%;
    animation:fxGlitch 8s infinite;
}
@keyframes fxGlitch {
    0%,90%,100% { clip-path:inset(0 0 0 0); transform:translate(0); }
    91% { clip-path:inset(20% 0 60% 0); transform:translate(-4px,0); background:rgba(77,166,255,0.03); }
    92% { clip-path:inset(60% 0 10% 0); transform:translate(4px,0); background:rgba(255,50,50,0.02); }
    93% { clip-path:inset(40% 0 30% 0); transform:translate(-2px,0); background:rgba(77,166,255,0.02); }
    94% { clip-path:inset(0 0 0 0); transform:translate(0); }
}
.fx-glitch-line {
    position:absolute; left:0; width:100%; height:1px;
    background:rgba(77,166,255,0.3);
    animation:fxGlitchLine 4s infinite;
}
@keyframes fxGlitchLine {
    0%,95%,100% { opacity:0; transform:scaleX(0); }
    96% { opacity:1; transform:scaleX(1); }
    98% { opacity:0.5; transform:scaleX(0.6); }
}

/* FX: Firework */
.fx-firework-burst {
    position:absolute; width:4px; height:4px; border-radius:50%;
    animation:fxFireworkExplode 3s ease-out infinite;
}
@keyframes fxFireworkExplode {
    0% { transform:translate(0,0) scale(0); opacity:1; }
    50% { opacity:0.8; }
    100% { transform:translate(var(--tx),var(--ty)) scale(0); opacity:0; }
}
.fx-firework-trail {
    position:absolute; width:2px; border-radius:50%;
    background:linear-gradient(to top, rgba(77,166,255,0.8), transparent);
    animation:fxFireworkRise 3s ease-out infinite;
}
@keyframes fxFireworkRise {
    0% { transform:translateY(100vh); opacity:1; }
    40% { opacity:1; }
    50% { opacity:0; transform:translateY(0); }
    100% { opacity:0; }
}

/* FX: Circuit */
.fx-circuit-line {
    position:absolute; background:rgba(77,166,255,0.08);
    animation:fxCircuitPulse 3s ease-in-out infinite;
}
.fx-circuit-dot {
    position:absolute; width:6px; height:6px; border-radius:50%;
    background:rgba(77,166,255,0.4);
    animation:fxCircuitDotPulse 2s ease-in-out infinite;
}
@keyframes fxCircuitPulse { 0%,100% { opacity:0.3; } 50% { opacity:0.8; } }
@keyframes fxCircuitDotPulse { 0%,100% { opacity:0.3; box-shadow:0 0 0 0 rgba(77,166,255,0); } 50% { opacity:1; box-shadow:0 0 8px 2px rgba(77,166,255,0.3); } }
.fx-circuit-signal {
    position:absolute; width:4px; height:4px; border-radius:50%;
    background:rgba(77,166,255,0.9);
    animation:fxSignalMove linear infinite;
}
@keyframes fxSignalMove {
    0% { offset-distance:0%; opacity:1; }
    100% { offset-distance:100%; opacity:0.3; }
}

/* FX: Comet */
.fx-comet {
    position:absolute; width:120px; height:2px;
    background:linear-gradient(90deg, transparent, rgba(77,166,255,0.8), rgba(255,255,255,0.9));
    border-radius:50%; filter:blur(1px);
    animation:fxCometFly linear infinite;
    opacity:0;
}
@keyframes fxCometFly {
    0% { transform:translate(-200px,-50px) rotate(var(--angle)); opacity:0; }
    10% { opacity:1; }
    90% { opacity:0.5; }
    100% { transform:translate(120vw,60vh) rotate(var(--angle)); opacity:0; }
}

/* FX: Prism */
.fx-prism-ray {
    position:absolute; top:50%; left:50%;
    width:200%; height:2px; transform-origin:left center;
    animation:fxPrismRotate 12s linear infinite;
}
@keyframes fxPrismRotate { 0% { transform:rotate(0deg); } 100% { transform:rotate(360deg); } }
.fx-prism-center {
    position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
    width:80px; height:80px;
    border:1px solid rgba(255,255,255,0.1);
    clip-path:polygon(50% 0%, 0% 100%, 100% 100%);
    animation:fxPrismPulse 4s ease-in-out infinite;
}
@keyframes fxPrismPulse { 0%,100% { opacity:0.3; transform:translate(-50%,-50%) scale(1); } 50% { opacity:0.6; transform:translate(-50%,-50%) scale(1.1); } }

/* FX: Ripple */
.fx-ripple {
    position:absolute; border-radius:50%;
    border:1px solid rgba(77,166,255,0.3);
    animation:fxRippleExpand 4s ease-out infinite;
}
@keyframes fxRippleExpand {
    0% { transform:translate(-50%,-50%) scale(0); opacity:1; }
    100% { transform:translate(-50%,-50%) scale(8); opacity:0; }
}

/* FX: Photo Base */
.fx-photo-bg {
    position:absolute; top:0; left:0; width:100%; height:100%;
    object-fit:cover; z-index:0;
}
.fx-photo-overlay {
    position:absolute; top:0; left:0; width:100%; height:100%; z-index:1;
}

/* Photo: Ken Burns */
.fx-kenburns {
    animation:fxKenBurns 20s ease-in-out infinite alternate;
}
@keyframes fxKenBurns {
    0% { transform:scale(1) translate(0,0); }
    100% { transform:scale(1.15) translate(-2%,-1%); }
}

/* Photo: Slide */
.fx-slide-wrap {
    position:absolute; top:0; left:0; width:100%; height:100%;
    z-index:0;
}
.fx-slide-img {
    position:absolute; top:0; left:0; width:100%; height:100%;
    object-fit:cover; opacity:0; transition:opacity 1.5s ease;
}
.fx-slide-img.active { opacity:1; }

/* Photo: Parallax */
.fx-photo-parallax {
    position:absolute; top:-20%; left:0; width:100%; height:140%;
    object-fit:cover; z-index:0;
}

/* Photo: Split Mask */
.fx-split-mask {
    position:absolute; top:0; height:100%; overflow:hidden; z-index:0;
}
.fx-split-mask img {
    position:absolute; top:0; left:0; width:100vw; height:100%; object-fit:cover;
}
.fx-split-mask:nth-child(odd) { animation:fxSplitSlideDown 1.5s ease-out forwards; transform:translateY(-100%); }
.fx-split-mask:nth-child(even) { animation:fxSplitSlideUp 1.5s ease-out forwards; transform:translateY(100%); }
@keyframes fxSplitSlideDown { to { transform:translateY(0); } }
@keyframes fxSplitSlideUp { to { transform:translateY(0); } }

/* Photo: Blur Reveal */
.fx-blur-reveal {
    animation:fxBlurReveal 3s ease-out forwards;
}
@keyframes fxBlurReveal {
    0% { filter:blur(20px) brightness(0.5); transform:scale(1.1); }
    100% { filter:blur(0px) brightness(0.5); transform:scale(1); }
}

/* Photo: Duotone */
.fx-duotone-wrap {
    position:absolute; top:0; left:0; width:100%; height:100%; z-index:0;
    background-blend-mode:multiply;
    animation:fxDuotoneShift 8s ease-in-out infinite alternate;
}
@keyframes fxDuotoneShift {
    0% { background-color:rgba(10,22,40,0.7); }
    33% { background-color:rgba(44,74,124,0.6); }
    66% { background-color:rgba(20,10,50,0.7); }
    100% { background-color:rgba(10,40,40,0.6); }
}
.fx-duotone-wrap img { width:100%; height:100%; object-fit:cover; mix-blend-mode:luminosity; }

/* Photo: Glitch */
.fx-photo-glitch-wrap {
    position:absolute; top:0; left:0; width:100%; height:100%; z-index:0;
}
.fx-photo-glitch-layer {
    position:absolute; top:0; left:0; width:100%; height:100%; object-fit:cover;
}
.fx-photo-glitch-r { animation:fxPhotoGlitchR 6s infinite; }
.fx-photo-glitch-b { animation:fxPhotoGlitchB 6s infinite; }
@keyframes fxPhotoGlitchR {
    0%,90%,100% { clip-path:inset(0);transform:translate(0); }
    92% { clip-path:inset(15% 0 70% 0);transform:translate(8px,0); }
    94% { clip-path:inset(50% 0 20% 0);transform:translate(-6px,0); }
}
@keyframes fxPhotoGlitchB {
    0%,90%,100% { clip-path:inset(0);transform:translate(0); }
    91% { clip-path:inset(60% 0 10% 0);transform:translate(-8px,0); }
    93% { clip-path:inset(10% 0 60% 0);transform:translate(6px,0); }
}

/* Photo: Mosaic Build */
.fx-mosaic-tile {
    position:absolute; overflow:hidden; z-index:0;
    animation:fxMosaicReveal 0.8s ease-out forwards;
    opacity:0; transform:scale(0.8);
}
.fx-mosaic-tile img {
    position:absolute; top:0; left:0; width:100vw; height:100vh; object-fit:cover;
}
@keyframes fxMosaicReveal {
    0% { opacity:0; transform:scale(0.8); }
    100% { opacity:1; transform:scale(1); }
}

/* ========== SWIPE INDICATOR ========== */
.swipe-indicator {
    display: none; justify-content: center; gap: 8px;
    padding: 16px 0 0;
}
.swipe-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #ccc; transition: .3s;
}
.swipe-dot.active {
    background: #2c4a7c; width: 24px; border-radius: 4px;
}

/* ========== ANIMATIONS ========== */
.fade-in {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-features { grid-template-columns: repeat(2, 1fr); }
    .feature-card { min-height: 280px; }
    .feature-card-content { min-height: 280px; }
    .about-inner { grid-template-columns: 1fr; height: auto; }
    .about-img img { height: 350px; }
    .about-content { padding: 48px 40px; }
    .about-title { font-size: 2.6rem; }
    .service-block { grid-template-columns: 1fr; }
    .service-block.reverse .service-img { order: 0; }
    .service-img img { height: 300px; }
    .magazine-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .mag-main { grid-column: span 2; min-height: 400px; }
    .mag-bottom { grid-column: span 2; min-height: 300px; }
    .card-large { min-height: 400px; }
    .insights-inner { grid-template-columns: 1fr; height: auto; }
    .insights-right { height: 300px; }
    .insights-left h2 { font-size: 2.2rem; }
    .contact-inner { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .trust-logos { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
    /* Header */
    .nav { display: none; }
    .hamburger { display: flex; }
    .mobile-nav { display: flex; background: rgba(10,22,40,0.98); }
    .mobile-nav a { color: rgba(255,255,255,0.7); }
    .header-inner { padding: 0 20px; }

    /* Logo */
    .logo-img { height: 18px; }

    /* Hero */
    .hero { padding: 110px 20px 40px; }
    .hero-title { font-size: 2rem; }
    .hero-desc { font-size: 1rem; }

    /* Hero Features - 가로 스와이프 */
    .hero-features {
        display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch; gap: 16px;
        padding-bottom: 12px;
    }
    .hero-features::-webkit-scrollbar { display: none; }
    .feature-card {
        flex: 0 0 75vw; scroll-snap-align: start;
        min-height: 220px;
    }
    .feature-card-content { min-height: 220px; padding: 24px; }
    .feature-card-content h4 { font-size: 1rem; }

    /* Swipe Indicators */
    .swipe-indicator { display: flex; }
    .swipe-indicator[data-for="hero-features"] .swipe-dot { background: rgba(255,255,255,0.3); }
    .swipe-indicator[data-for="hero-features"] .swipe-dot.active { background: #fff; }

    /* Trust Card */
    .hero-card-trust { padding: 24px 24px; }
    .trust-title { font-size: 1.3rem; margin-bottom: 8px; }
    .trust-desc { font-size: 0.85rem; margin-bottom: 20px; }
    .trust-divider { margin-bottom: 16px; }
    .trust-eyebrow { font-size: 0.7rem; margin-bottom: 10px; }
    .trust-logos { grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 8px; }
    .trust-logo-item { padding: 10px 8px; min-height: 40px; }
    .trust-logo-item img { max-height: 22px; }
    .trust-more { font-size: 0.8rem; margin-top: 4px; }

    /* Stats */
    .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .stat-number { font-size: 2.4rem; }

    /* Why HM - 가로 스와이프 */
    .why-hm { padding: 80px 20px; }
    .section-title { font-size: 1.8rem; }
    .why-cards {
        display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch; gap: 16px;
        padding-bottom: 12px;
    }
    .why-cards::-webkit-scrollbar { display: none; }
    .why-card {
        flex: 0 0 80vw; scroll-snap-align: start;
    }
    .why-card h3 { font-size: 1.3rem; }

    /* About */
    .about-inner { grid-template-columns: 1fr; height: auto; }
    .about-img img { height: 280px; }
    .about-title { font-size: 2rem; }
    .about-content { padding: 36px 24px; }
    .about-desc { font-size: 1rem; }

    /* Services */
    .services { padding: 80px 20px 60px; }
    .service-block { grid-template-columns: 1fr; }
    .service-img { order: -1; }
    .service-block.reverse .service-img { order: -1; }
    .service-text h2 { font-size: 1.8rem; }
    .service-text p { font-size: 1rem; }
    .service-list li { font-size: 0.95rem; }
    .service-link { margin-top: 8px; justify-content: flex-start; }

    /* Three Cards - 모바일 세로 */
    .three-cards { padding: 0 20px 60px; }
    .magazine-grid {
        display: flex; flex-direction: column; gap: 16px;
    }
    .mag-main { min-height: 360px; }
    .mag-rt { min-height: 300px; }
    .mag-rb { min-height: 240px; }
    .mag-bottom { min-height: 240px; }
    .mag-bottom .card-bottom { min-height: 240px; }
    .card-large-content h3 { font-size: 1.8rem; }
    .card-top h3 { font-size: 1.6rem; }
    .card-bottom h3 { font-size: 1.6rem; }

    /* Clients */
    .clients { padding: 60px 20px; background: #f8f9fb; }
    .clients-title { font-size: 1.8rem; font-weight: 700; line-height: 1.4; }
    .clients-divider { width: 32px; margin-bottom: 32px; }
    .clients-img-wrap { padding: 0 10px; }
    .clients-img-wrap img { width: 100%; min-width: auto; }

    /* Insights - 사진 위 오버레이 */
    .insights-inner { display: block; position: relative; height: auto; }
    .insights-right { height: 400px; }
    .insights-left {
        position: absolute; top: 0; left: 0; width: 100%; height: 100%;
        padding: 40px 24px;
        background: rgba(12, 26, 58, 0.6);
        display: flex; flex-direction: column; justify-content: center;
        z-index: 2;
    }
    .insights-left h2 { font-size: 1.6rem; }
    .swipe-indicator[data-for="insights-inner"] { display: none; }
    .newsletter-floating {
        position: relative; bottom: auto; left: auto; right: auto;
        transform: none; width: auto; margin: 0 20px 20px;
        flex-direction: column; align-items: stretch; padding: 20px;
        border-radius: 12px;
    }
    .newsletter-floating p { font-size: 1rem; white-space: normal; }
    .newsletter-form { flex-direction: column; }
    .newsletter-form input { min-width: auto; }

    /* FAQ */
    .faq { padding: 60px 20px; }
    .faq-title { font-size: 1.8rem; }
    .faq-question { font-size: 1rem; }

    /* Contact */
    .contact { padding: 60px 20px; }
    .contact-inner { padding: 32px 24px; }
    .form-row { grid-template-columns: 1fr; }

    /* Footer */
    .footer { padding: 40px 20px 24px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.6rem; }
    .hero-desc { font-size: 0.9rem; }
    .feature-card { flex: 0 0 80vw; }
    .hero-card-trust { padding: 28px 20px; }
    .trust-title { font-size: 1.2rem; }
    .trust-desc { font-size: 0.85rem; }
    .trust-logos { grid-template-columns: repeat(4, 1fr); gap: 6px; }
    .trust-logo-item img { max-width: 50px; max-height: 18px; }
    .stat-item { flex: 0 0 45vw; }
    .stat-number { font-size: 2rem; }
    .about-title { font-size: 1.6rem; }
    .about-img img { height: 220px; }
    .why-card { flex: 0 0 85vw; }
    .clients-title { font-size: 1.5rem; }
    .card-large-content h3 { font-size: 1.4rem; }
    .card-top h3, .card-bottom h3 { font-size: 1.4rem; }
    .insights-left h2 { font-size: 1.4rem; }
    .service-text h2 { font-size: 1.5rem; }
    .section-title { font-size: 1.5rem; }
    .faq-title { font-size: 1.5rem; }
}
