:root {
  --ink: #07111f;
  --ink-2: #0d1b2d;
  --blue: #1676c9;
  --blue-2: #39a5f6;
  --blue-3: #9dd7ff;
  --white: #fff;
  --paper: #f5f8fc;
  --line: #dbe5ef;
  --muted: #64748b;
  --text: #172033;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(3, 18, 35, .15);
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--text); background: var(--white); font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", "Segoe UI", sans-serif; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img { max-width: 100%; display: block; }
svg { width: 1.2em; height: 1.2em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 112px 0; }
.section-dark { position: relative; overflow: hidden; color: white; background: linear-gradient(145deg, #040b14 0%, #081829 52%, #06111f 100%); }
.section-muted { background: var(--paper); }
.skip-link { position: fixed; left: 16px; top: -100px; z-index: 999; padding: 12px 18px; color: white; background: var(--blue); border-radius: 10px; }
.skip-link:focus { top: 16px; }

.top-strip { color: #cbd6e4; background: #020710; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 13px; }
.top-strip__inner { height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.top-strip p { margin: 0; letter-spacing: .03em; }
.top-strip__links { display: flex; align-items: center; gap: 22px; }
.top-strip__links a:hover { color: white; }
.text-button { border: 0; padding: 0; display: inline-flex; align-items: center; gap: 7px; color: inherit; background: none; cursor: pointer; }

.language-trigger { min-height: 28px; padding: 3px 8px 3px 4px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; background: rgba(255,255,255,.05); font-weight: 800; transition: .2s; }
.language-trigger:hover { color: white; border-color: rgba(127,200,255,.42); background: rgba(37,137,207,.13); }
.language-trigger__flag { width: 24px; height: 18px; overflow: hidden; display: inline-flex; flex: 0 0 auto; border-radius: 5px; box-shadow: 0 0 0 1px rgba(255,255,255,.18); }
.language-trigger__flag img { width: 100%; height: 100%; object-fit: cover; }
.language-trigger__chevron { width: 12px; height: 12px; transform: rotate(90deg); opacity: .65; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(12, 30, 50, .08); }
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { width: 230px; display: block; flex: 0 0 auto; }
.brand img { width: 100%; height: 56px; object-fit: contain; object-position: left center; }
.desktop-nav { display: flex; align-items: center; gap: 30px; font-size: 15px; font-weight: 700; }
.desktop-nav a { position: relative; padding: 30px 0; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 19px; height: 2px; background: var(--blue); transition: .25s; }
.desktop-nav a:hover { color: var(--blue); }
.desktop-nav a:hover::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.menu-button, .icon-button { width: 44px; height: 44px; display: none; place-items: center; border: 1px solid var(--line); border-radius: 12px; background: white; cursor: pointer; }
.install-button { padding: 9px 13px; border: 1px solid var(--line); border-radius: 10px; background: white; font-size: 13px; font-weight: 700; cursor: pointer; }

.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 22px; border: 1px solid transparent; border-radius: 14px; font-weight: 800; cursor: pointer; transition: transform .2s, background .2s, border-color .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); }
.button--small { min-height: 42px; padding: 0 17px; color: white; background: var(--ink); font-size: 14px; }
.button--primary { color: white; background: linear-gradient(135deg, #1279d0, #2599eb); box-shadow: 0 16px 32px rgba(18, 121, 208, .28); }
.button--primary:hover { box-shadow: 0 20px 38px rgba(18, 121, 208, .38); }
.button--ghost { color: white; border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.05); }
.button--ghost:hover { background: rgba(255,255,255,.1); }
.button--dark { color: white; background: var(--ink); }
.button--full { width: 100%; }

.mobile-menu { position: fixed; top: 0; right: 0; z-index: 300; width: min(390px, 90vw); height: 100dvh; padding: 18px 20px 26px; background: white; transform: translateX(105%); transition: .3s ease; display: flex; flex-direction: column; }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.mobile-menu__top .brand { width: 180px; }
.mobile-menu__top .icon-button { display: grid; }
.mobile-menu nav { display: grid; padding-top: 14px; }
.mobile-menu nav a { display: flex; align-items: center; justify-content: space-between; padding: 16px 4px; border-bottom: 1px solid #edf2f7; font-weight: 800; }
.mobile-menu nav svg { color: var(--muted); }
.mobile-menu__cta { margin-top: auto; }
.mobile-menu__cta .button { width: 100%; }
.mobile-menu__cta p { margin: 10px 0 0; text-align: center; color: var(--muted); font-size: 13px; }
.menu-backdrop { position: fixed; inset: 0; z-index: 250; opacity: 0; visibility: hidden; background: rgba(0,7,15,.62); backdrop-filter: blur(4px); transition: .25s; }
.menu-backdrop.show { opacity: 1; visibility: visible; }

.hero { min-height: 790px; padding: 106px 0 0; }
.hero-grid { position: absolute; inset: 0; opacity: .13; background-image: linear-gradient(rgba(255,255,255,.11) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.11) 1px, transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(to bottom, black, transparent 80%); }
.hero-glow { position: absolute; border-radius: 999px; filter: blur(12px); opacity: .28; }
.hero-glow--one { width: 500px; height: 500px; top: 80px; right: -170px; background: #178ce5; }
.hero-glow--two { width: 280px; height: 280px; left: -100px; bottom: 40px; background: #0b5ba7; }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; gap: 66px; align-items: center; }
.eyebrow { display: flex; align-items: center; gap: 12px; color: #9bd4ff; font-size: 12px; font-weight: 900; letter-spacing: .16em; }
.eyebrow span { width: 34px; height: 2px; background: var(--blue-2); }
.eyebrow--dark { color: var(--blue); }
.hero-kicker { max-width: 720px; margin: 22px 0 14px; color: #d4eaff; font-size: 17px; font-weight: 800; line-height: 1.4; }
.hero h1, .section-heading h2, .contact-copy h2 { margin: 0; font-size: clamp(42px, 4.2vw, 56px); line-height: 1.17; letter-spacing: -.05em; }
.hero h1 em, .section-heading h2 em, .contact-copy h2 em { color: var(--blue-2); font-style: normal; }
.hero-lead { margin: 25px 0 0; color: white; font-size: 20px; font-weight: 800; }
.hero-lead--en { margin-top: 6px; color: #b7c9da; font-size: 15px; font-weight: 600; line-height: 1.5; }
.hero-detail { max-width: 690px; margin: 18px 0 0; color: #c5d2df; font-size: 16px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-trust { display: flex; align-items: center; gap: 13px; margin-top: 30px; color: #c9d7e5; font-size: 13px; }
.hero-trust p { margin: 0; }
.hero-trust strong { color: white; font-size: 14px; }
.trust-icon { width: 44px; height: 44px; display: grid; place-items: center; color: #8cd2ff; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; background: rgba(255,255,255,.06); }

.hero-panel { position: relative; overflow: hidden; padding: 30px; border: 1px solid rgba(255,255,255,.13); border-radius: 28px; background: linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.045)); box-shadow: 0 30px 90px rgba(0,0,0,.28); backdrop-filter: blur(16px); }
.hero-panel__brand { position: absolute; width: 165px; right: -28px; top: -26px; opacity: .07; transform: rotate(-8deg); }
.hero-panel__header { position: relative; display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; padding-bottom: 22px; }
.hero-panel__header small { color: #7fc8ff; font-size: 11px; font-weight: 900; letter-spacing: .15em; }
.hero-panel__header h2 { margin: 3px 0 0; font-size: 23px; }

.hero-panel__title-block { min-width: 0; flex: 1; }
.hero-panel__title-row { display: flex; align-items: center; gap: 12px; margin-top: 3px; }
.hero-panel__title-row h2 { margin: 0; min-width: 0; }
.quick-language-button { flex: 0 0 auto; min-height: 34px; display: inline-flex; align-items: center; gap: 7px; padding: 0 10px; color: #d7ecfb; border: 1px solid rgba(127,200,255,.28); border-radius: 999px; background: rgba(17,86,139,.22); font-size: 11px; font-weight: 850; line-height: 1; cursor: pointer; transition: border-color .2s, background .2s, color .2s; white-space: nowrap; }
.quick-language-button:hover { color: #fff; border-color: rgba(127,200,255,.65); background: rgba(24,120,190,.34); }
.quick-language-button svg { width: 15px; height: 15px; }
.quick-language-button__chevron { width: 12px !important; height: 12px !important; transform: rotate(90deg); opacity: .72; }
.language-grid button[aria-pressed="true"] { color: var(--blue); border-color: var(--blue); background: #f2f9ff; box-shadow: inset 0 0 0 1px rgba(18,121,208,.08); }
.live-dot { display: inline-flex; align-items: center; gap: 7px; padding: 7px 10px; border: 1px solid rgba(98, 207, 146, .3); border-radius: 999px; color: #8be2b3; background: rgba(52, 184, 110, .08); font-size: 11px; font-weight: 800; white-space: nowrap; }
.live-dot::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #63d99a; box-shadow: 0 0 0 4px rgba(99,217,154,.11); }
.quick-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.quick-grid a { min-height: 92px; padding: 16px; border: 1px solid rgba(255,255,255,.1); border-radius: 18px; background: rgba(3,12,22,.34); transition: .22s; }
.quick-grid a:hover { transform: translateY(-3px); border-color: rgba(88,181,247,.6); background: rgba(18, 94, 153, .24); }
.quick-icon { width: 35px; height: 35px; display: grid; place-items: center; margin-bottom: 10px; color: #82ceff; border-radius: 10px; background: rgba(35,151,229,.15); }
.quick-grid strong, .quick-grid small { display: block; }
.quick-grid strong { color: white; font-size: 15px; }
.quick-grid small { margin-top: 2px; color: #93a8ba; font-size: 12px; }
.hero-panel__footer { display: flex; align-items: center; gap: 9px; margin-top: 16px; padding-top: 16px; color: #9db0c2; border-top: 1px solid rgba(255,255,255,.08); font-size: 12px; }
.hero-stats { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 70px; border-top: 1px solid rgba(255,255,255,.12); }
.hero-stats div { padding: 27px 25px 29px; border-right: 1px solid rgba(255,255,255,.12); }
.hero-stats div:last-child { border-right: 0; }


/* Standalone language selector */
.language-showcase { position: relative; z-index: 5; padding: 28px 0 32px; background: linear-gradient(180deg, #eef7ff 0%, #f8fbff 100%); border-bottom: 1px solid #dceaf5; box-shadow: 0 16px 40px rgba(7, 35, 61, .06); }
.language-showcase__inner { display: grid; grid-template-columns: 290px minmax(0, 1fr); gap: 30px; align-items: center; }
.language-showcase__copy p { margin: 10px 0 0; color: #688097; font-size: 13px; line-height: 1.55; }
.language-showcase__eyebrow { display: flex; align-items: center; gap: 13px; }
.language-showcase__eyebrow small { display: block; margin-bottom: 2px; color: var(--blue); font-size: 10px; font-weight: 950; letter-spacing: .14em; }
.language-showcase__eyebrow h2 { margin: 0; color: #0b1a2b; font-size: 22px; line-height: 1.25; letter-spacing: -.035em; }
.language-showcase__globe { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; color: white; border-radius: 13px; background: linear-gradient(135deg, #116fbd, #35a5f6); box-shadow: 0 10px 24px rgba(20, 123, 204, .24); }
.language-showcase__globe svg { width: 21px; height: 21px; }
.language-showcase__grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 9px; }
.language-chip { position: relative; min-width: 0; min-height: 62px; display: flex; align-items: center; gap: 9px; padding: 9px 10px; overflow: hidden; text-align: left; border: 1px solid #d7e4ef; border-radius: 14px; background: rgba(255,255,255,.95); box-shadow: 0 5px 16px rgba(6, 29, 49, .045); cursor: pointer; transition: transform .18s, border-color .18s, box-shadow .18s, background .18s; }
.language-chip:hover { transform: translateY(-2px); border-color: #86c7f4; box-shadow: 0 9px 22px rgba(23, 105, 165, .1); }
.language-chip[aria-pressed="true"] { border-color: #1680d4; background: #edf8ff; box-shadow: inset 0 0 0 1px rgba(22,128,212,.09), 0 8px 22px rgba(23, 105, 165, .09); }
.language-chip__flag { width: 34px; height: 24px; display: inline-flex; overflow: hidden; flex: 0 0 auto; border-radius: 6px; background: #fff; box-shadow: 0 0 0 1px rgba(19,50,77,.12), 0 3px 7px rgba(11,31,50,.08); }
.language-chip__flag img { width: 100%; height: 100%; object-fit: cover; }
.language-chip__text { display: block; min-width: 0; line-height: 1.2; }
.language-chip__text strong, .language-chip__text small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.language-chip__text strong { color: #142537; font-size: 12px; font-weight: 900; }
.language-chip__text small { margin-top: 3px; color: #8292a2; font-size: 9px; font-weight: 700; }
.language-chip__check { position: absolute; right: 6px; top: 6px; width: 16px; height: 16px; display: grid; place-items: center; opacity: 0; color: white; border-radius: 50%; background: var(--blue); transform: scale(.75); transition: .18s; }
.language-chip__check svg { width: 10px; height: 10px; stroke-width: 2.5; }
.language-chip[aria-pressed="true"] .language-chip__check { opacity: 1; transform: scale(1); }
.hero-stats strong, .hero-stats span { display: block; }
.hero-stats strong { color: #7ecbff; font-size: 13px; letter-spacing: .08em; }
.hero-stats span { margin-top: 5px; color: #c3d0dd; font-size: 13px; }

.intro-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.section-heading h2, .contact-copy h2 { margin-top: 16px; color: var(--ink); font-size: clamp(32px, 3.5vw, 46px); line-height: 1.22; }
.intro-copy { padding-top: 34px; }
.intro-copy p { margin: 0 0 18px; color: var(--muted); }
.intro-copy .large-copy { color: var(--ink); font-size: 22px; font-weight: 800; line-height: 1.65; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 10px; color: var(--blue); font-weight: 900; }
.text-link:hover { gap: 13px; }

.section-top { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 42px; }
.section-top > p { max-width: 350px; margin: 0 0 9px; color: var(--muted); }
.section-top--light .section-heading h2 { color: white; }
.section-top--light > p { color: #a8bacb; }
.section-heading--center { text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.services { background: #f8fafc; }
.service-tabs { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; padding: 8px; border: 1px solid var(--line); border-radius: 17px; background: white; box-shadow: 0 12px 36px rgba(7,17,31,.05); }
.service-tabs button { min-height: 52px; padding: 8px 10px; border: 0; border-radius: 12px; color: #64748b; background: transparent; font-size: 13px; font-weight: 800; cursor: pointer; }
.service-tabs button[aria-selected="true"] { color: white; background: var(--ink); box-shadow: 0 10px 20px rgba(7,17,31,.15); }
.service-stage { margin-top: 22px; }
.service-panel { display: none; grid-template-columns: 38% 62%; min-height: 540px; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: white; box-shadow: var(--shadow); }
.service-panel.active { display: grid; animation: panelIn .35s ease both; }
@keyframes panelIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.service-visual { position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; padding: 38px; color: white; background: #07111f; isolation: isolate; }
.service-visual__image { position: absolute; inset: 0; z-index: -3; width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.75,.2,1), filter .45s; }
.service-visual__overlay { position: absolute; inset: 0; z-index: -2; background: linear-gradient(180deg, rgba(3,13,25,.05) 12%, rgba(4,16,29,.25) 43%, rgba(4,14,26,.92) 100%), linear-gradient(110deg, rgba(11,74,124,.38), transparent 62%); }
.service-visual::after { content: ""; position: absolute; inset: 0; z-index: -1; border: 1px solid rgba(255,255,255,.13); box-shadow: inset 0 0 80px rgba(3,13,25,.22); pointer-events: none; }
.service-panel:hover .service-visual__image { transform: scale(1.035); filter: saturate(1.04) contrast(1.02); }
.service-visual > span { position: absolute; left: 31px; top: 24px; z-index: 1; color: rgba(255,255,255,.8); text-shadow: 0 4px 18px rgba(0,0,0,.4); font-size: 64px; font-weight: 900; line-height: 1; }
.service-visual p { position: relative; z-index: 2; margin: 0; color: white; text-shadow: 0 4px 24px rgba(0,0,0,.55); font-size: 25px; font-weight: 900; letter-spacing: .06em; line-height: 1.3; }
.visual-immigration .service-visual__image { object-position: 46% center; }
.visual-business .service-visual__image { object-position: 52% center; }
.visual-legal .service-visual__image { object-position: 52% center; }
.visual-labor .service-visual__image { object-position: 50% 56%; }
.visual-tax .service-visual__image { object-position: 50% 54%; }
.visual-insurance .service-visual__image { object-position: 50% center; }
.visual-life .service-visual__image { object-position: 50% center; }
.visual-funeral .service-visual__image { object-position: 50% center; }
.service-content { padding: 48px 52px; }
.service-number { color: var(--blue); font-size: 12px; font-weight: 900; letter-spacing: .15em; }
.service-content h3 { margin: 9px 0 9px; color: var(--ink); font-size: 34px; letter-spacing: -.04em; line-height: 1.25; word-break: keep-all; text-wrap: balance; }
.service-content > p { margin: 0 0 26px; color: var(--muted); }
.check-list { list-style: none; margin: 0 0 30px; padding: 0; display: grid; gap: 13px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; color: #293548; font-weight: 700; }
.check-list svg { flex: 0 0 auto; width: 20px; height: 20px; margin-top: 2px; padding: 3px; color: white; border-radius: 50%; background: var(--blue); stroke-width: 2.5; }
.immigration-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; margin-bottom: 30px; }
.check-list.compact { margin: 0; gap: 9px; }
.check-list.compact li { font-size: 14px; font-weight: 650; }
.check-list.compact svg { width: 17px; height: 17px; }
.check-list--columns { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 24px; row-gap: 10px; }
.check-list--columns.compact { margin-bottom: 30px; }
.legal-note { margin: 18px 6px 0; color: #2f678f; font-size: 14px; font-weight: 700; line-height: 1.7; }

.values-glow { position: absolute; width: 620px; height: 620px; right: -220px; top: -220px; border-radius: 50%; background: radial-gradient(circle, rgba(31,148,230,.25), transparent 66%); }
.value-grid { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.value-card { min-height: 260px; padding: 27px 23px; border: 1px solid rgba(255,255,255,.1); border-radius: 20px; background: rgba(255,255,255,.045); transition: .25s; }
.value-card:hover { transform: translateY(-5px); border-color: rgba(98,193,255,.35); background: rgba(255,255,255,.075); }
.value-card > strong { color: #55b9f8; font-size: 12px; }
.value-card h3 { margin: 55px 0 10px; color: white; font-size: 16px; }
.value-card p { margin: 0; color: #aab9c8; font-size: 14px; }

.process-list { list-style: none; margin: 65px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.process-list li { min-height: 230px; padding: 28px; border: 1px solid var(--line); border-radius: 21px; background: white; box-shadow: 0 13px 35px rgba(7,17,31,.05); }
.step-dot { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 30px; color: white; border-radius: 50%; background: var(--ink); font-size: 13px; font-weight: 900; }
.process-list span { color: var(--blue); font-size: 12px; font-weight: 900; }
.process-list h3 { margin: 5px 0 8px; color: var(--ink); font-size: 19px; }
.process-list p { margin: 0; color: var(--muted); font-size: 14px; }

.contact { color: white; background: linear-gradient(145deg, #06111f, #0b2742); }
.contact-layout { display: grid; grid-template-columns: .88fr 1.12fr; gap: 74px; align-items: start; }
.contact-copy h2 { color: white; }
.contact-copy > p { max-width: 460px; color: #b7c6d5; }
.contact-methods { display: grid; gap: 10px; margin-top: 35px; }
.contact-methods button, .contact-methods a { width: 100%; display: grid; grid-template-columns: 46px 1fr 24px; align-items: center; gap: 14px; padding: 15px; text-align: left; color: white; border: 1px solid rgba(255,255,255,.11); border-radius: 16px; background: rgba(255,255,255,.05); cursor: pointer; transition: .2s; }
.contact-methods button:hover, .contact-methods a:hover { transform: translateX(4px); background: rgba(255,255,255,.08); }
.contact-methods > * > span { width: 46px; height: 46px; display: grid; place-items: center; color: #8fd5ff; border-radius: 13px; background: rgba(33,146,220,.15); }
.contact-methods small, .contact-methods strong { display: block; }
.contact-methods small { color: #8fa5b8; }
.contact-methods strong { font-size: 14px; word-break: break-all; }
.contact-methods .tail { color: #7f94a7; }
.contact-form { padding: 34px; color: var(--text); border-radius: 26px; background: white; box-shadow: 0 28px 75px rgba(0,0,0,.25); }
.form-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 25px; }
.form-head small { color: var(--blue); font-size: 11px; font-weight: 900; letter-spacing: .15em; }
.form-head h3 { margin: 4px 0 0; color: var(--ink); font-size: 28px; }
.form-head > span { color: #8c98a8; font-size: 12px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px 14px; }
.form-grid label { color: #2b3748; font-size: 13px; font-weight: 800; }
.form-grid .full { grid-column: 1 / -1; }
input, select, textarea { width: 100%; margin-top: 7px; padding: 13px 14px; color: var(--text); border: 1px solid #dce4ed; border-radius: 11px; outline: 0; background: #f9fbfd; transition: .2s; }
textarea { resize: vertical; min-height: 130px; }
input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(22,118,201,.1); background: white; }
.privacy-check { display: flex; align-items: center; gap: 9px; margin: 18px 0; color: #5e6d7d; font-size: 13px; }
.privacy-check input { width: 17px; height: 17px; margin: 0; }
.form-note { margin: 10px 0 0; color: #8491a0; text-align: center; font-size: 11px; }
.form-honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; opacity: 0 !important; pointer-events: none !important; }
.turnstile-wrap { display: grid; justify-items: start; gap: 6px; margin: 4px 0 14px; min-height: 70px; }
.turnstile-note { margin: 0; color: #73869a; font-size: 11px; font-weight: 700; line-height: 1.45; }
.form-submit-status { min-height: 22px; margin-top: 12px; padding: 0 4px; text-align: center; font-size: 12px; font-weight: 800; line-height: 1.5; }
.form-submit-status.loading { color: #567186; }
.form-submit-status.success { padding: 11px 13px; color: #126244; border: 1px solid #bce3d2; border-radius: 11px; background: #eefaf5; }
.form-submit-status.error { padding: 11px 13px; color: #a33333; border: 1px solid #efc5c5; border-radius: 11px; background: #fff3f3; }
#consultationSubmit:disabled { opacity: .7; cursor: wait; transform: none; }

.clients { overflow: hidden; background: linear-gradient(180deg, #f7faff 0%, #eef5fc 100%); }
.clients .section-heading { max-width: 900px; margin-inline: auto; }
.clients-subtitle { margin: 22px auto 0; color: var(--muted); font-size: 17px; font-weight: 650; }
.clients-rows { display: grid; gap: 30px; margin-top: 54px; }
.clients-row { min-width: 0; }
.clients-marquee { width: 100%; overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 7%, black 93%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, black 7%, black 93%, transparent); }
.clients-track { display: flex; width: max-content; animation: clientsScroll var(--marquee-duration, 48s) linear infinite; will-change: transform; }
.clients-track--central { --marquee-duration: 44s; animation-delay: -14s; }
.clients-group { display: flex; gap: 16px; padding-right: 16px; }
.client-country { width: 160px; flex: 0 0 160px; display: grid; justify-items: center; gap: 13px; padding: 18px 15px 15px; border: 1px solid rgba(22,118,201,.13); border-radius: 18px; background: rgba(255,255,255,.92); box-shadow: 0 14px 34px rgba(18,53,87,.07); }
.client-country img { width: 96px; height: 60px; object-fit: cover; border: 1px solid rgba(7,17,31,.1); border-radius: 8px; box-shadow: 0 7px 18px rgba(7,17,31,.1); }
.client-country img[src$="np.svg"] { object-fit: contain; border: 0; box-shadow: none; }
.client-country span { color: var(--ink); font-size: 14px; font-weight: 850; line-height: 1.35; white-space: nowrap; font-family: "Noto Sans", "Noto Sans KR", Pretendard, "Apple SD Gothic Neo", "Segoe UI", sans-serif; }
.clients-marquee:hover .clients-track { animation-play-state: paused; }
@keyframes clientsScroll { to { transform: translateX(calc(-1 * var(--marquee-distance, 50%))); } }

.location { background: white; }
.location-layout { display: grid; grid-template-columns: 1.35fr .65fr; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow); }
.location-map { position: relative; min-height: 500px; overflow: hidden; background: #e9f0f6; }
.location-map--embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: saturate(.92) contrast(1.02); }
.location-info { padding: 48px 42px; }
.location-info h2 { margin: 11px 0 12px; color: var(--ink); font-size: 34px; line-height: 1.2; }
.contact-caption { margin: 0 0 22px; color: var(--muted); font-size: 14px; }
.location-info dl { margin: 0 0 30px; }
.location-info dl div { display: grid; grid-template-columns: 84px 1fr; gap: 10px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.location-info dt { color: #8793a2; font-size: 12px; font-weight: 800; }
.location-info dd { margin: 0; color: #263345; font-size: 13px; font-weight: 700; }
.location-info dd a { color: var(--blue); word-break: break-all; }
.youtube-link { display: inline-flex; align-items: center; gap: 7px; }
.youtube-link svg { color: #ff0033; fill: none; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.button--outline { color: var(--ink); border-color: var(--line); background: white; }
.button--outline:hover { border-color: var(--blue); color: var(--blue); }

.site-footer { color: #9eafc0; background: #020710; }
.footer-main { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; padding: 62px 0 42px; }
.footer-logo { width: 270px; display: block; padding: 6px 10px; border-radius: 11px; background: white; }
.footer-logo img { width: 100%; height: 58px; object-fit: contain; }
.footer-brand p { max-width: 380px; margin: 18px 0 0; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer-links div { display: grid; align-content: start; gap: 8px; }
.footer-links strong { margin-bottom: 7px; color: white; font-size: 13px; }
.footer-links a, .footer-links button, .footer-links span { padding: 0; color: #8ea0b2; border: 0; text-align: left; background: none; font-size: 13px; cursor: pointer; }
.footer-links a:hover, .footer-links button:hover { color: white; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0 26px; border-top: 1px solid rgba(255,255,255,.08); font-size: 12px; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 18px; }
.footer-bottom__right { display: flex; align-items: center; justify-content: flex-end; gap: 18px; flex-wrap: wrap; }
.visitor-counter { display: inline-flex !important; align-items: center; gap: 7px !important; min-height: 28px; padding: 5px 10px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; background: rgba(255,255,255,.045); color: rgba(255,255,255,.68); font-size: 11px; font-variant-numeric: tabular-nums; white-space: nowrap; }
.visitor-counter__label { color: rgba(255,255,255,.42); font-size: 9px; font-weight: 900; letter-spacing: .11em; }
.visitor-counter strong { color: rgba(255,255,255,.9); font-size: 11px; font-weight: 900; }
.visitor-counter i { width: 1px; height: 11px; background: rgba(255,255,255,.16); }


.app-bottom-nav { display: none; }
.floating-chat { position: fixed; right: 24px; bottom: 24px; z-index: 80; min-height: 54px; display: flex; align-items: center; gap: 9px; padding: 0 18px; color: white; border: 0; border-radius: 999px; background: linear-gradient(135deg, #1683d5, #0e68ad); box-shadow: 0 14px 34px rgba(12,104,173,.34); font-weight: 900; cursor: pointer; }
.language-dialog { width: min(560px, calc(100% - 28px)); padding: 26px; border: 0; border-radius: 22px; box-shadow: 0 30px 90px rgba(0,0,0,.32); }
.language-dialog::backdrop { background: rgba(0,8,17,.66); backdrop-filter: blur(5px); }
.dialog-head { display: flex; align-items: flex-start; justify-content: space-between; }
.dialog-head small { color: var(--blue); font-weight: 900; letter-spacing: .14em; }
.dialog-head h2 { margin: 4px 0 0; }
.dialog-head .icon-button { display: grid; }
.language-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 24px; }
.language-grid button { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px; background: white; cursor: pointer; font-weight: 800; }
.language-grid button:hover { color: var(--blue); border-color: var(--blue); }
.language-grid span { color: #8997a6; font-size: 11px; }
.language-grid__label { min-width: 0; display: inline-flex !important; align-items: center; gap: 10px; color: #26384a !important; font-size: 13px !important; text-align: left; }
.language-grid__label img { width: 30px; height: 21px; flex: 0 0 auto; object-fit: cover; border-radius: 5px; box-shadow: 0 0 0 1px rgba(15,38,60,.12); }
.language-dialog > p { margin: 17px 0 0; color: var(--muted); font-size: 12px; }
.toast { position: fixed; left: 50%; bottom: 28px; z-index: 999; max-width: min(440px, calc(100% - 30px)); padding: 13px 18px; color: white; border-radius: 12px; background: rgba(5,14,25,.94); box-shadow: 0 15px 40px rgba(0,0,0,.28); opacity: 0; visibility: hidden; transform: translate(-50%, 12px); transition: .22s; font-size: 13px; }
.toast.show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.reveal { opacity: 0; transform: translateY(22px); transition: .72s cubic-bezier(.2,.75,.2,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay { transition-delay: .12s; }


/* SUCCESS STORIES */
.success-stories {
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
}
.success-stories .section-heading { max-width: 900px; margin-inline: auto; }
.success-subtitle { margin: 22px auto 0; color: var(--muted); font-size: 17px; font-weight: 650; }
.success-carousel-shell {
  position: relative;
  margin-top: 52px;
}
.success-carousel-nav {
  position: absolute;
  top: 50%;
  z-index: 8;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(20, 91, 158, .18);
  border-radius: 50%;
  color: var(--blue);
  background: rgba(255,255,255,.94);
  box-shadow: 0 12px 34px rgba(7,17,31,.18);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, opacity .2s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.success-carousel-nav svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; }
.success-carousel-nav--prev { left: max(10px, 1.6vw); }
.success-carousel-nav--prev svg { transform: rotate(180deg); }
.success-carousel-nav--next { right: max(10px, 1.6vw); }
.success-carousel-nav:hover {
  background: #fff;
  box-shadow: 0 16px 40px rgba(7,17,31,.24);
  transform: translateY(-50%) scale(1.06);
}
.success-carousel-nav:active { transform: translateY(-50%) scale(.96); }
.success-carousel-nav:focus-visible { outline: 3px solid rgba(22,118,201,.25); outline-offset: 3px; }
.success-carousel-nav:disabled { opacity: .35; cursor: default; transform: translateY(-50%); }
.success-carousel {
  position: relative;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 12px 0 24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior-inline: contain;
  touch-action: pan-x pan-y;
  mask-image: linear-gradient(90deg, transparent, black 3.5%, black 96.5%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 3.5%, black 96.5%, transparent);
}
.success-carousel::-webkit-scrollbar { display: none; }
.success-video-track {
  display: flex;
  width: max-content;
  gap: 22px;
  padding-inline: max(4vw, 32px);
}
.success-video-card {
  width: clamp(340px, 37vw, 460px);
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid #dce6f0;
  border-radius: 22px;
  background: white;
  box-shadow: 0 18px 48px rgba(7,17,31,.10);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  scroll-margin-inline: 24px;
}
.success-video-card:hover,
.success-video-card.is-active {
  transform: translateY(-4px);
  border-color: rgba(22,118,201,.38);
  box-shadow: 0 24px 58px rgba(7,17,31,.16);
}
.success-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #06111f;
}
.success-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.success-video-meta { padding: 17px 19px 19px; }
.success-video-meta small { display: block; color: var(--blue); font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.success-video-meta strong { display: block; margin-top: 5px; color: var(--ink); font-size: 17px; line-height: 1.4; }
.success-video-empty {
  width: 100%;
  min-height: 220px;
  display: grid;
  place-items: center;
  padding: 32px;
  border: 1px dashed rgba(19, 79, 142, .28);
  border-radius: 20px;
  color: var(--muted);
  background: rgba(255,255,255,.72);
  font-weight: 700;
}

.contact-subline {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

@media (prefers-reduced-motion: reduce) {
  .success-carousel-nav { transition: none; }
  .clients-marquee { overflow-x: auto; mask-image: none; -webkit-mask-image: none; }
  .clients-track { animation: none; }
  .clients-group[aria-hidden="true"] { display: none; }
  .success-video-card { transition: none; }
}



/* Wide-screen heading refinement
   Desktop headings use natural balanced wrapping instead of forced line breaks.
   Tablet and mobile keep the authored line breaks for compact readability. */
@media (min-width: 861px) {
  .section-heading,
  .contact-copy { min-width: 0; }

  .section-heading h2,
  .contact-copy h2 {
    text-wrap: balance;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .section-heading h2 br,
  .contact-copy h2 br { display: none; }

  .intro-layout {
    grid-template-columns: minmax(0, 1.18fr) minmax(350px, .82fr);
    gap: 64px;
  }

  .intro .section-heading h2 {
    max-width: 700px;
    font-size: clamp(38px, 3vw, 44px);
  }

  .services .section-top {
    align-items: flex-end;
    gap: 32px;
  }

  .services .section-heading {
    flex: 1 1 auto;
    max-width: 900px;
  }

  .services .section-heading h2 {
    max-width: 900px;
    font-size: clamp(36px, 2.7vw, 42px);
    line-height: 1.26;
  }

  .services .section-top > p {
    flex: 0 0 250px;
  }

  .values .section-heading h2 {
    max-width: 760px;
  }

  .process .section-heading h2,
  .clients .section-heading h2 {
    max-width: 820px;
    margin-inline: auto;
  }

  .contact-copy h2 {
    max-width: 560px;
    font-size: clamp(38px, 3vw, 44px);
  }
}

@media (max-width: 1080px) {
  .desktop-nav { gap: 17px; font-size: 14px; }
  .header-actions .button { display: none; }
  .hero-layout { gap: 34px; }
  .service-tabs { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .value-grid { grid-template-columns: repeat(3, 1fr); }
  .value-card { min-height: 225px; }
}

@media (max-width: 860px) {
  :root { --container: min(100% - 30px, 720px); }
  .section { padding: 82px 0; }
  .top-strip p { display: none; }
  .top-strip__inner { justify-content: flex-end; }
  .desktop-nav { display: none; }
  .menu-button { display: grid; }
  .header-inner { min-height: 72px; }
  .brand { width: 205px; }
  .brand img { height: 52px; }
  .hero { min-height: auto; padding-top: 76px; }
  .hero-layout, .intro-layout, .contact-layout, .location-layout { grid-template-columns: 1fr; }
  .hero-layout { gap: 50px; }
  .hero-copy { max-width: 720px; }
  .hero-panel { max-width: 680px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats div:nth-child(2) { border-right: 0; }
  .hero-stats div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .intro-layout { gap: 20px; }
  .intro-copy { padding-top: 0; }
  .section-top { align-items: start; flex-direction: column; gap: 14px; }
  .service-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-panel { grid-template-columns: 1fr; }
  .service-visual { min-height: 280px; }
  .service-content { padding: 38px; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { gap: 48px; }
  .location-map { min-height: 380px; }
  .language-showcase__inner { grid-template-columns: 1fr; gap: 20px; }
  .language-showcase__copy { max-width: 620px; }
  .language-showcase__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .clients-subtitle, .success-subtitle { font-size: 15px; }
  .success-video-card { width: min(72vw, 430px); }
  .footer-main { grid-template-columns: 1fr; gap: 45px; }
}

@media (max-width: 600px) {
  :root { --container: calc(100% - 26px); --radius: 20px; }
  body { padding-bottom: 72px; }
  .top-strip { display: none; }
  .site-header { top: 0; }
  .header-inner { min-height: 68px; }
  .brand { width: 190px; }
  .brand img { height: 47px; }
  .install-button { display: none; }
  .hero { padding-top: 58px; }
  .hero-kicker { margin-top: 17px; font-size: 14px; }
  .hero h1 { font-size: 39px; }
  .hero-lead { font-size: 18px; }
  .hero-detail { font-size: 14px; }
  .hero-buttons { display: grid; }
  .button { width: 100%; }
  .hero-panel { padding: 21px; border-radius: 22px; }
  .hero-panel__header h2 { font-size: 20px; }
  .language-showcase { padding: 23px 0 26px; }
  .language-showcase__inner { gap: 16px; }
  .language-showcase__eyebrow h2 { font-size: 20px; }
  .language-showcase__copy p { font-size: 12px; }
  .language-showcase__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .language-chip { min-height: 58px; padding: 8px 9px; border-radius: 13px; }
  .language-chip__flag { width: 32px; height: 22px; }
  .language-chip__text strong { font-size: 11px; }
  .language-chip__text small { font-size: 8px; }

  .hero-panel__title-row { align-items: flex-start; flex-direction: column; gap: 9px; }
  .quick-language-button { min-height: 32px; padding-inline: 10px; }
  .live-dot { display: none; }
  .quick-grid a { min-height: 88px; padding: 13px; }
  .hero-stats { margin-top: 50px; }
  .hero-stats div { padding: 21px 15px; }
  .hero-stats strong { font-size: 11px; }
  .hero-stats span { font-size: 12px; }
  .section { padding: 72px 0; }
  .section-heading h2, .contact-copy h2 { font-size: 31px; }
  .location-info h2 { font-size: 30px; }
  .intro-copy .large-copy { font-size: 18px; }
  .service-tabs { display: flex; overflow-x: auto; padding: 7px; scroll-snap-type: x mandatory; }
  .service-tabs button { min-width: 124px; scroll-snap-align: start; }
  .service-panel { min-height: 0; border-radius: 22px; }
  .service-visual { min-height: 235px; padding: 28px; }
  .service-visual > span { left: 24px; top: 22px; font-size: 54px; }
  .service-visual p { font-size: 21px; }
  .service-content { padding: 28px 22px; }
  .service-content h3 { font-size: 28px; }
  .immigration-list, .check-list--columns { grid-template-columns: 1fr; }
  .value-grid, .process-list { grid-template-columns: 1fr; }
  .value-card { min-height: 205px; }
  .value-card h3 { margin-top: 38px; }
  .process-list { margin-top: 45px; }
  .contact-form { padding: 24px 18px; border-radius: 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: auto; }
  .location-layout { border-radius: 22px; }
  .location-map { min-height: 330px; }
  .clients-rows { gap: 24px; margin-top: 38px; }
  .success-carousel-shell { margin-top: 38px; }
  .success-carousel-nav { width: 42px; height: 42px; }
  .success-carousel-nav--prev { left: 7px; }
  .success-carousel-nav--next { right: 7px; }
  .success-carousel { mask-image: none; -webkit-mask-image: none; padding-bottom: 18px; }
  .success-video-track { gap: 14px; padding-inline: 13px; }
  .success-video-card { width: min(82vw, 360px); border-radius: 18px; }
  .success-video-meta { padding: 14px 15px 16px; }
  .success-video-meta strong { font-size: 15px; }
  .clients-marquee { mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent); }
  .clients-track { --marquee-duration: 40s; }
  .clients-track--central { --marquee-duration: 37s; animation-delay: -11s; }
  .client-country { width: 138px; flex-basis: 138px; padding: 14px 12px 12px; }
  .client-country img { width: 82px; height: 51px; }
  .location-info { padding: 30px 22px; }
  .location-info dl div { grid-template-columns: 76px 1fr; }
  .footer-main { padding-top: 48px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-links div:last-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-bottom__right { width: 100%; justify-content: space-between; }
  .visitor-counter { margin-left: auto; }

  .app-bottom-nav { position: fixed; left: 0; right: 0; bottom: 0; z-index: 140; height: 72px; display: grid; grid-template-columns: repeat(5, 1fr); align-items: end; padding: 7px 8px calc(7px + env(safe-area-inset-bottom)); border-top: 1px solid #dce5ee; background: rgba(255,255,255,.97); backdrop-filter: blur(14px); box-shadow: 0 -10px 30px rgba(7,17,31,.08); }
  .app-bottom-nav > a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; color: #738195; font-size: 10px; font-weight: 800; }
  .app-bottom-nav > a svg { width: 20px; height: 20px; }
  .app-bottom-nav > a.active { color: var(--blue); }
  .app-bottom-nav__main { transform: translateY(-12px); }
  .app-bottom-nav__main > span { width: 51px; height: 51px; display: grid; place-items: center; color: white; border: 5px solid white; border-radius: 50%; background: var(--blue); box-shadow: 0 10px 25px rgba(22,118,201,.32); }
  .app-bottom-nav__main > span svg { width: 21px; height: 21px; }
  .floating-chat { display: none; }
  .toast { bottom: 88px; }
  .language-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Multilingual layout stabilization — V22
   Keep the visual rhythm consistent even when translations are substantially
   longer than Korean. Korean remains the design baseline. */

/* Natural wrapping rules for translated copy. */
html:not([lang="ko"]) .hero h1,
html:not([lang="ko"]) .section-heading h2,
html:not([lang="ko"]) .contact-copy h2,
html:not([lang="ko"]) .location-info h2,
html:not([lang="ko"]) .service-content h3,
html:not([lang="ko"]) .hero-panel__header h2,
html:not([lang="ko"]) .form-head h3,
html:not([lang="ko"]) .value-card h3,
html:not([lang="ko"]) .process-list h3 {
  word-break: normal;
  overflow-wrap: normal;
  text-wrap: balance;
  hyphens: none;
}

/* The Korean source contains intentional <br> elements.  Translations need to
   reflow naturally instead of inheriting those Korean break points. */
html:not([lang="ko"]) .hero h1 br,
html:not([lang="ko"]) .section-heading h2 br,
html:not([lang="ko"]) .contact-copy h2 br {
  display: none;
}

/* Short UI labels keep a consistent box height. */
.desktop-nav a,
.mobile-menu nav a,
.button,
.service-tabs button,
.quick-grid strong,
.quick-grid small,
.hero-stats span,
.contact-methods small,
.contact-methods strong,
.footer-links a,
.footer-links button,
.footer-links span,
.app-bottom-nav small {
  line-height: 1.3;
}

.desktop-nav a { white-space: nowrap; }

html:not([lang="ko"]) .button {
  min-height: 52px;
  padding-block: 9px;
  line-height: 1.25;
  text-align: center;
}

html:not([lang="ko"]) .desktop-nav {
  gap: 14px;
  font-size: 12.5px;
}

html:not([lang="ko"]) .hero h1 {
  max-width: 760px;
  font-size: clamp(38px, 3.7vw, 51px);
  line-height: 1.16;
  letter-spacing: -.038em;
}

html:not([lang="ko"]) .hero-kicker { max-width: 800px; }
html:not([lang="ko"]) .hero-lead { line-height: 1.45; }
html:not([lang="ko"]) .hero-detail { max-width: 760px; line-height: 1.72; }

/* Quick consultation cards: equal height regardless of language length. */
html:not([lang="ko"]) .quick-grid a {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
html:not([lang="ko"]) .quick-grid strong {
  min-height: 2.55em;
  display: flex;
  align-items: flex-start;
  font-size: 13px;
  text-wrap: balance;
}
html:not([lang="ko"]) .quick-grid small {
  margin-top: auto;
  font-size: 11px;
  text-wrap: balance;
}

/* Section headings: max width + slightly reduced size prevent orphan lines. */
html:not([lang="ko"]) .section-heading h2,
html:not([lang="ko"]) .contact-copy h2 {
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.24;
  letter-spacing: -.03em;
}
html:not([lang="ko"]) .services .section-heading { max-width: 980px; }
html:not([lang="ko"]) .services .section-heading h2 { max-width: 980px; }
html:not([lang="ko"]) .intro .section-heading h2 { max-width: 760px; }
html:not([lang="ko"]) .values .section-heading h2,
html:not([lang="ko"]) .process .section-heading h2,
html:not([lang="ko"]) .clients .section-heading h2 { max-width: 900px; }

/* Tabs have a fixed visual rhythm. Long labels may use two balanced lines. */
html:not([lang="ko"]) .service-tabs button {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 9px;
  font-size: 11.5px;
  line-height: 1.22;
  text-align: center;
  text-wrap: balance;
  word-break: normal;
  overflow-wrap: normal;
}

html:not([lang="ko"]) .service-content h3 {
  min-height: 2.45em;
  display: flex;
  align-items: flex-end;
  font-size: 30px;
  line-height: 1.22;
}
html:not([lang="ko"]) .service-content > p { line-height: 1.65; }
html:not([lang="ko"]) .check-list li { line-height: 1.48; }
html:not([lang="ko"]) .check-list.compact li { font-size: 13px; }

/* Equalize cards whose headings often grow in translated languages. */
html:not([lang="ko"]) .value-card { min-height: 285px; }
html:not([lang="ko"]) .value-card h3 {
  min-height: 2.6em;
  margin-top: 42px;
  display: flex;
  align-items: flex-end;
  line-height: 1.3;
  text-wrap: balance;
}
html:not([lang="ko"]) .value-card p { line-height: 1.62; }

html:not([lang="ko"]) .process-list li { min-height: 250px; }
html:not([lang="ko"]) .process-list h3 {
  min-height: 2.6em;
  display: flex;
  align-items: flex-end;
  line-height: 1.3;
  text-wrap: balance;
}
html:not([lang="ko"]) .process-list p { line-height: 1.62; }

html:not([lang="ko"]) .contact-methods strong {
  word-break: normal;
  overflow-wrap: anywhere;
}
html:not([lang="ko"]) .form-head h3 { font-size: 26px; line-height: 1.28; }
html:not([lang="ko"]) .location-info h2 { font-size: 31px; line-height: 1.25; }

/* Languages that typically produce the longest Latin/Cyrillic UI strings. */
html[data-language-code="en"] .hero h1,
html[data-language-code="fil"] .hero h1,
html[data-language-code="id"] .hero h1,
html[data-language-code="ru"] .hero h1,
html[data-language-code="ru-KZ"] .hero h1,
html[data-language-code="uz"] .hero h1,
html[data-language-code="mn"] .hero h1,
html[data-language-code="bn"] .hero h1 {
  font-size: clamp(36px, 3.45vw, 48px);
}

html[data-language-code="en"] .section-heading h2,
html[data-language-code="fil"] .section-heading h2,
html[data-language-code="id"] .section-heading h2,
html[data-language-code="ru"] .section-heading h2,
html[data-language-code="ru-KZ"] .section-heading h2,
html[data-language-code="uz"] .section-heading h2,
html[data-language-code="mn"] .section-heading h2,
html[data-language-code="bn"] .section-heading h2 {
  font-size: clamp(29px, 2.7vw, 39px);
}

html[data-language-code="en"] .service-content h3,
html[data-language-code="fil"] .service-content h3,
html[data-language-code="id"] .service-content h3,
html[data-language-code="ru"] .service-content h3,
html[data-language-code="ru-KZ"] .service-content h3,
html[data-language-code="uz"] .service-content h3,
html[data-language-code="mn"] .service-content h3,
html[data-language-code="bn"] .service-content h3 { font-size: 28px; }

/* Scripts that need a little more vertical breathing room. */
html[lang="th"] body,
html[lang="km"] body,
html[lang="my"] body,
html[lang="ne"] body,
html[lang="si"] body,
html[lang="bn"] body { line-height: 1.72; }

html[lang="th"] .hero h1,
html[lang="km"] .hero h1,
html[lang="my"] .hero h1,
html[lang="ne"] .hero h1,
html[lang="si"] .hero h1,
html[lang="bn"] .hero h1 { line-height: 1.28; letter-spacing: -.015em; }

html[lang="th"] .section-heading h2,
html[lang="km"] .section-heading h2,
html[lang="my"] .section-heading h2,
html[lang="ne"] .section-heading h2,
html[lang="si"] .section-heading h2,
html[lang="th"] .service-content h3,
html[lang="km"] .service-content h3,
html[lang="my"] .service-content h3,
html[lang="ne"] .service-content h3,
html[lang="si"] .service-content h3,
html[lang="bn"] .section-heading h2,
html[lang="bn"] .service-content h3 { line-height: 1.38; letter-spacing: 0; }

/* Tablet: translated headings get the full column before wrapping. */
@media (max-width: 1080px) and (min-width: 861px) {
  html:not([lang="ko"]) .desktop-nav { gap: 10px; font-size: 11.5px; }
  html:not([lang="ko"]) .hero-layout { grid-template-columns: 1fr .9fr; gap: 34px; }
  html:not([lang="ko"]) .service-tabs button { min-height: 72px; font-size: 11px; }
}

/* Mobile: avoid preserving Korean line breaks and keep touch labels balanced. */
@media (max-width: 600px) {
  html:not([lang="ko"]) .hero h1 {
    font-size: clamp(31px, 9.2vw, 37px);
    line-height: 1.2;
  }
  html:not([lang="ko"]) .section-heading h2,
  html:not([lang="ko"]) .contact-copy h2 {
    font-size: clamp(27px, 7.4vw, 31px);
    line-height: 1.28;
  }
  html:not([lang="ko"]) .hero-lead { font-size: 17px; }
  html:not([lang="ko"]) .hero-detail { font-size: 14px; }
  html:not([lang="ko"]) .quick-grid a { min-height: 108px; }
  html:not([lang="ko"]) .quick-grid strong { min-height: 2.5em; font-size: 12px; }
  html:not([lang="ko"]) .service-tabs button {
    min-width: 142px;
    min-height: 64px;
    font-size: 11px;
  }
  html:not([lang="ko"]) .service-content h3 {
    min-height: auto;
    font-size: 25px;
  }
  html:not([lang="ko"]) .check-list.compact li { font-size: 12.5px; }
  html:not([lang="ko"]) .value-card { min-height: 225px; }
  html:not([lang="ko"]) .value-card h3 { min-height: auto; margin-top: 34px; }
  html:not([lang="ko"]) .process-list li { min-height: 225px; }
  html:not([lang="ko"]) .process-list h3 { min-height: auto; }
  html:not([lang="ko"]) .form-head h3 { font-size: 24px; }
}



/* V30: business information + privacy policy access */
.privacy-consent { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin: 18px 0 6px; }
.privacy-consent .privacy-check { margin: 0; min-width: 0; }
.privacy-consent__link { flex: 0 0 auto; color: var(--blue); font-size: 12px; font-weight: 900; text-decoration: underline; text-underline-offset: 3px; }
.privacy-consent__link:hover { color: #0d5f9f; }
.privacy-input-note { margin: 0 0 15px; color: #7b8998; font-size: 11px; line-height: 1.55; }
.footer-business { display: grid; gap: 6px; max-width: 560px; margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.09); color: #8799aa; font-size: 12px; line-height: 1.65; }
.footer-business p { max-width: none; margin: 0; }
.footer-business strong { color: #e8eff6; font-size: 13px; }
.footer-business a { color: #a9c6de; }
.footer-business a:hover { color: #fff; }
.footer-business span { margin: 0 5px; color: #526679; }
@media (max-width: 640px) {
  .privacy-consent { align-items: flex-start; flex-direction: column; gap: 7px; }
  .footer-business { font-size: 11px; line-height: 1.7; }
  .footer-business span { margin: 0 3px; }
}


/* V32: on-site quick consultation + contract notice */
.contract-disclaimer {
  margin: 12px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(22,131,213,.18);
  border-left: 3px solid var(--blue);
  border-radius: 10px;
  background: rgba(22,131,213,.055);
  color: #51687b;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.65;
}
@media (max-width: 640px) {
  .contract-disclaimer { font-size: 11.5px; padding: 11px 12px; }
}


/* V34 PARTNERSHIPS & CREDENTIALS */
.trust-showcase{overflow:hidden;background:#fff;border-top:1px solid #edf2f7}.trust-showcase[hidden]{display:none!important}.trust-showcase .section-heading{max-width:940px;margin-inline:auto}.trust-showcase-subtitle{margin:22px auto 0;color:var(--muted);font-size:17px;font-weight:650}.trust-carousel-shell{position:relative;margin-top:46px}.trust-carousel-nav{position:absolute;top:50%;z-index:8;width:48px;height:48px;display:grid;place-items:center;border:1px solid rgba(20,91,158,.18);border-radius:50%;color:var(--blue);background:rgba(255,255,255,.95);box-shadow:0 12px 34px rgba(7,17,31,.16);cursor:pointer;transform:translateY(-50%);transition:transform .2s ease,box-shadow .2s ease,background .2s ease;backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px)}.trust-carousel-nav svg{width:22px;height:22px;fill:none;stroke:currentColor;stroke-width:2}.trust-carousel-nav--prev{left:max(10px,1.6vw)}.trust-carousel-nav--prev svg{transform:rotate(180deg)}.trust-carousel-nav--next{right:max(10px,1.6vw)}.trust-carousel-nav:hover{background:#fff;box-shadow:0 16px 40px rgba(7,17,31,.22);transform:translateY(-50%) scale(1.06)}.trust-carousel-nav:active{transform:translateY(-50%) scale(.96)}.trust-carousel-nav:focus-visible{outline:3px solid rgba(22,118,201,.25);outline-offset:3px}.trust-carousel{position:relative;width:100%;overflow-x:auto;overflow-y:hidden;padding:12px 0 22px;scrollbar-width:none;-ms-overflow-style:none;overscroll-behavior-inline:contain;touch-action:pan-x pan-y;mask-image:linear-gradient(90deg,transparent,black 3.5%,black 96.5%,transparent);-webkit-mask-image:linear-gradient(90deg,transparent,black 3.5%,black 96.5%,transparent)}.trust-carousel::-webkit-scrollbar{display:none}.trust-card-track{display:flex;width:max-content;gap:20px;padding-inline:max(4vw,32px)}.trust-card{width:clamp(245px,25vw,320px);flex:0 0 auto;overflow:hidden;border:1px solid #dce6f0;border-radius:22px;background:#fff;box-shadow:0 16px 42px rgba(7,17,31,.08);cursor:pointer;transition:transform .24s ease,box-shadow .24s ease,border-color .24s ease;text-align:left}.trust-card:hover{transform:translateY(-5px);box-shadow:0 22px 52px rgba(7,17,31,.14);border-color:#b8d4e9}.trust-card:focus-visible{outline:3px solid rgba(22,118,201,.25);outline-offset:4px}.trust-card__image{aspect-ratio:4/3;display:grid;place-items:center;padding:14px;background:linear-gradient(145deg,#f5f8fb,#eef4f9);overflow:hidden}.trust-card__image img{width:100%;height:100%;display:block;object-fit:contain;border-radius:10px;background:#fff}.trust-card__meta{padding:15px 17px 18px}.trust-card__meta small{display:block;color:var(--blue);font-size:10px;font-weight:950;letter-spacing:.11em}.trust-card__meta strong{display:-webkit-box;margin-top:6px;overflow:hidden;color:var(--ink);font-size:16px;line-height:1.45;-webkit-line-clamp:2;-webkit-box-orient:vertical}.trust-showcase-tip{margin:14px auto 0;text-align:center;color:#8191a0;font-size:12px;font-weight:700}.trust-lightbox{position:fixed;inset:0;z-index:1000;display:grid;place-items:center;padding:18px;opacity:0;visibility:hidden;transition:opacity .2s ease,visibility .2s ease}.trust-lightbox.is-open{opacity:1;visibility:visible}.trust-lightbox__backdrop{position:absolute;inset:0;background:rgba(3,10,18,.78);backdrop-filter:blur(5px);-webkit-backdrop-filter:blur(5px)}.trust-lightbox__panel{position:relative;z-index:1;width:min(980px,94vw);max-height:92vh;display:flex;flex-direction:column;overflow:hidden;border:1px solid rgba(255,255,255,.14);border-radius:24px;background:#fff;box-shadow:0 35px 100px rgba(0,0,0,.42);transform:scale(.9) translateY(15px);transition:transform .28s cubic-bezier(.2,.9,.25,1.2)}.trust-lightbox.is-open .trust-lightbox__panel{transform:scale(1) translateY(0)}.trust-lightbox__close{position:absolute;top:12px;right:12px;z-index:3;width:42px;height:42px;border:1px solid rgba(8,28,45,.12);border-radius:50%;background:rgba(255,255,255,.94);color:#0b2235;font-size:28px;line-height:1;cursor:pointer;box-shadow:0 8px 25px rgba(0,0,0,.12)}.trust-lightbox__image-wrap{min-height:0;flex:1;display:grid;place-items:center;padding:26px;background:#eef3f7}.trust-lightbox__image-wrap img{max-width:100%;max-height:min(72vh,820px);object-fit:contain;box-shadow:0 8px 35px rgba(10,31,50,.12);background:#fff}.trust-lightbox__meta{padding:17px 22px 20px}.trust-lightbox__meta span{display:block;color:var(--blue);font-size:11px;font-weight:950;letter-spacing:.1em}.trust-lightbox__meta h3{margin:5px 0 0;color:var(--ink);font-size:20px;line-height:1.45}body.trust-lightbox-open{overflow:hidden}@media(max-width:700px){.trust-showcase-subtitle{font-size:15px}.trust-carousel-shell{margin-top:36px}.trust-carousel-nav{width:42px;height:42px}.trust-carousel-nav--prev{left:7px}.trust-carousel-nav--next{right:7px}.trust-carousel{mask-image:none;-webkit-mask-image:none;padding-bottom:18px}.trust-card-track{gap:14px;padding-inline:13px}.trust-card{width:min(70vw,280px);border-radius:18px}.trust-card__meta{padding:13px 14px 15px}.trust-card__meta strong{font-size:14px}.trust-lightbox{padding:10px}.trust-lightbox__panel{width:96vw;max-height:90vh;border-radius:18px}.trust-lightbox__image-wrap{padding:16px}.trust-lightbox__meta{padding:14px 16px 17px}.trust-lightbox__meta h3{font-size:17px}}@media(prefers-reduced-motion:reduce){.trust-card,.trust-carousel-nav,.trust-lightbox,.trust-lightbox__panel{transition:none}}
