@charset "utf-8";

:root {
    --bg: #ffffff;
    --surface: #ffffff;
    --surface-2: #f5f7f5;
    --surface-dark: #111c14;
    --surface-dark-2: #172019;
    --text: #212121;
    --text-soft: #606060;
    --line: rgba(33, 33, 33, 0.1);
    --line-light: rgba(255, 255, 255, 0.16);
    --accent: #76c442;
    --accent-dark: #2e7d32;
    --accent-2: #c8f09e;
    --shadow: 0 24px 80px rgba(9, 18, 14, 0.12);
    --shadow-soft: 0 18px 50px rgba(9, 18, 14, 0.07);
    --container: 1480px;
    --header-height: 92px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

body {
    font-family: "Pretendard", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.72;
    letter-spacing: -0.02em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    text-size-adjust: 100%;
    overflow-x: hidden;
}

/* 모바일 터치 시 hover 효과가 잔류하지 않도록 */
@media (hover: none) and (pointer: coarse) {
    a:hover, button:hover { background-color: inherit; }
}

/* iOS Safari momentum 스크롤 */
html, body { -webkit-overflow-scrolling: touch; }

body.menu-open {
    overflow: hidden;
}

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

button,
input,
select {
    font: inherit;
}

button {
    border: 0;
    background: none;
    cursor: pointer;
}

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

ul,
ol {
    list-style: none;
}

.container {
    width: min(var(--container), calc(100% - 64px));
    margin: 0 auto;
}

.section-pad {
    padding: 110px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-dark);
    background: rgba(46, 125, 50, 0.08);
    padding: 6px 14px;
    border-radius: 999px;
}

.section-label::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

.section-label--light {
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.14);
}

.section-label--light::before {
    background: var(--accent);
}

.section-head {
    margin-bottom: 44px;
}

.section-head__row {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 40px;
    align-items: end;
    margin-top: 18px;
}

.section-head h2,
.overview-copy h2,
.cta-card__content h2 {
    font-size: clamp(26px, 2.8vw, 44px);
    line-height: 1.12;
    letter-spacing: -0.04em;
    font-weight: 700;
}

.section-head p,
.overview-copy p,
.showcase-copy p,
.cta-card__content p,
.news-card p {
    font-size: 16px;
    word-break: keep-all;
}

.section-head p,
.overview-copy p,
.news-card p {
    color: var(--text-soft);
}

.cta-card__content p,
.showcase-copy p {
    color: #fff;
}

.section-dark {
    background: var(--surface-dark);
    color: #fff;
}

.section-dark .section-head p,
.section-dark .section-head h2 {
    color: #fff;
}

.section-dark .section-head__row p {
    color: rgba(255, 255, 255, 0.72);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    min-height: 56px;
    border-radius: 999px;
    padding: 0 28px;
    font-size: 15px;
    font-weight: 700;
    transition: transform 0.45s var(--ease), background-color 0.45s var(--ease), color 0.45s var(--ease), border-color 0.45s var(--ease);
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button--solid {
    background: #fff;
    color: var(--text);
}

.button--ghost {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}

.button--ghost:hover,
.button--ghost:focus-visible {
    border-color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
}

.button--accent {
    background: var(--accent);
    color: #fff;
}

.button--accent:hover,
.button--accent:focus-visible {
    background: var(--accent-dark);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-weight: 700;
    margin-top: 28px;
}

.text-link::after {
    content: "";
    width: 28px;
    height: 1px;
    background: currentColor;
    transition: transform 0.4s var(--ease);
}

.text-link:hover::after,
.text-link:focus-visible::after {
    transform: translateX(8px);
}

.reveal {
    opacity: 0;
    transform: translateY(38px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

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

.page-shell {
    position: relative;
    overflow: clip;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    height: var(--header-height);
    z-index: 1000;
    transition: background-color 0.45s var(--ease), backdrop-filter 0.45s var(--ease), box-shadow 0.45s var(--ease), height 0.45s var(--ease);
}

.site-header.is-scrolled,
.site-header.is-menu-open {
    background: rgba(255, 255, 255, 0.88);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    box-shadow: 0 6px 30px rgba(8, 17, 13, 0.08);
}

.site-header.is-nav-open {
    background: #ffffff;
    backdrop-filter: none;
    box-shadow: 0 10px 30px rgba(8, 17, 13, 0.08);
    height: 328px;
}

.header-shell {
    width: min(1700px, calc(100% - 64px));
    margin: 0 auto;
    height: var(--header-height);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
    transition: height 0.45s var(--ease);
    position: relative;
    z-index: 3;
}

.site-header.is-scrolled .header-shell {
    height: 78px;
}

.brand {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.05em;
    justify-self: start;
}

.brand a,
.main-nav > ul > li > a,
.lang-toggle,
.menu-toggle span {
    transition: color 0.35s var(--ease), background-color 0.35s var(--ease);
}

.site-header[data-tone="light"]:not(.is-scrolled):not(.is-nav-open):not(.is-menu-open) .brand a,
.site-header[data-tone="light"]:not(.is-scrolled):not(.is-nav-open):not(.is-menu-open) .main-nav > ul > li > a,
.site-header[data-tone="light"]:not(.is-scrolled):not(.is-nav-open):not(.is-menu-open) .lang-toggle {
    color: #fff;
}

.site-header[data-tone="light"]:not(.is-scrolled):not(.is-nav-open):not(.is-menu-open) .menu-toggle span {
    background: #fff;
}

.site-header.is-scrolled .brand a,
.site-header.is-nav-open .brand a,
.site-header.is-menu-open .brand a,
.site-header.is-scrolled .main-nav > ul > li > a,
.site-header.is-nav-open .main-nav > ul > li > a,
.site-header.is-menu-open .main-nav > ul > li > a,
.site-header.is-scrolled .lang-toggle,
.site-header.is-nav-open .lang-toggle,
.site-header.is-menu-open .lang-toggle {
    color: var(--text);
}

.site-header.is-scrolled .menu-toggle span,
.site-header.is-nav-open .menu-toggle span,
.site-header.is-menu-open .menu-toggle span {
    background: var(--text);
}

.main-nav {
    justify-self: center;
    height: 100%;
}

.main-nav > ul {
    display: flex;
    align-items: stretch;
    height: 100%;
    gap: clamp(28px, 2.8vw, 54px);
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-item > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 100%;
    font-size: 16px;
    font-weight: 700;
}

.nav-item > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.4s var(--ease);
}

.nav-item:hover > a::after,
.nav-item:focus-within > a::after {
    transform: scaleX(1);
}

.nav-dropdown {
    position: absolute;
    left: 50%;
    top: calc(100% - 8px);
    transform: translate(-50%, 14px);
    min-width: 220px;
    padding: 22px 0 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s var(--ease);
    z-index: 4;
}

.nav-dropdown::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 26px;
}

.nav-dropdown a {
    display: block;
    padding: 10px 0;
    border-radius: 0;
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
    background: transparent;
    color: var(--accent-dark);
}

.site-header.is-nav-open .nav-item:hover .nav-dropdown,
.site-header.is-nav-open .nav-item:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    pointer-events: auto;
}

.nav-backdrop {
    position: absolute;
    inset: 0;
    background: #ffffff;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    border-bottom: 1px solid rgba(17, 23, 20, 0.06);
    pointer-events: none;
    z-index: 1;
}

.site-header.is-nav-open .nav-backdrop {
    opacity: 1;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    justify-self: end;
}

.lang-toggle {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.menu-toggle {
    width: 30px;
    height: 24px;
    position: relative;
}

.menu-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--text);
    transition: transform 0.35s var(--ease), width 0.35s var(--ease), top 0.35s var(--ease), opacity 0.35s var(--ease);
}

.menu-toggle span:nth-child(1) {
    top: 3px;
}

.menu-toggle span:nth-child(2) {
    top: 11px;
}

.menu-toggle span:nth-child(3) {
    top: 19px;
    width: 68%;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
    top: 11px;
    transform: rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
    width: 100%;
    top: 11px;
    transform: rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1050;
    background: rgba(6, 10, 8, 0.82);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu__inner {
    margin-left: auto;
    width: min(520px, 100%);
    height: 100%;
    background: var(--surface-dark);
    color: #fff;
    padding: 34px 28px 40px;
    transform: translateX(100%);
    transition: transform 0.55s var(--ease);
}

.mobile-menu.is-open .mobile-menu__inner {
    transform: translateX(0);
}

.mobile-menu__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 34px;
}

.mobile-brand {
    font-size: 22px;
    letter-spacing: -0.04em;
}

.mobile-close {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
}

.mobile-menu__body {
    display: grid;
    gap: 10px;
}

.mobile-item {
    border-top: 1px solid var(--line-light);
}

.mobile-item:last-child {
    border-bottom: 1px solid var(--line-light);
}

.mobile-item__toggle {
    width: 100%;
    padding: 22px 0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 700;
}

.mobile-item__toggle::after {
    content: "+";
    color: rgba(255, 255, 255, 0.7);
}

.mobile-item.is-open .mobile-item__toggle::after {
    content: "-";
}

.mobile-item__panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding-bottom 0.4s var(--ease);
}

.mobile-item.is-open .mobile-item__panel {
    max-height: 240px;
    padding-bottom: 18px;
}

.mobile-item__panel a {
    overflow: hidden;
    display: block;
    color: rgba(255, 255, 255, 0.72);
    padding: 8px 0;
}

.mobile-item--single .mobile-item__link {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 22px 0;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}
.mobile-item--single .mobile-item__link::after {
    content: "›";
    margin-left: auto;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.hero {
    position: relative;
    min-height: 100vh;
    height: 100svh;
    background: #020705;
    color: #fff;
    overflow: hidden;
}

.hero-slider,
.hero-slide,
.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.hero-media img,
.hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.12);
    transition: transform 6.5s ease;
}

.hero-slide.is-active .hero-media img,
.hero-slide.is-active .hero-media video {
    transform: scale(1.03);
}

.hero-overlay {
    background: transparent;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    padding-top: 120px;
    padding-bottom: 260px;
}

.hero-kicker,
.hero-title span,
.hero-copy,
.hero-actions {
    opacity: 0;
    transform: translateY(38px);
}

.hero-slide.is-active .hero-kicker,
.hero-slide.is-active .hero-title span,
.hero-slide.is-active .hero-copy,
.hero-slide.is-active .hero-actions {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.hero-slide.is-active .hero-title span:nth-child(1) {
    transition-delay: 0.12s;
}

.hero-slide.is-active .hero-title span:nth-child(2) {
    transition-delay: 0.2s;
}

.hero-slide.is-active .hero-copy {
    transition-delay: 0.28s;
}

.hero-slide.is-active .hero-actions {
    transition-delay: 0.36s;
}

.hero-kicker {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}

.hero-title {
    margin-top: 16px;
    font-size: clamp(42px, 5vw, 74px);
    line-height: 1.06;
    letter-spacing: -0.05em;
    font-weight: 700;
    word-break: keep-all;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55), 0 1px 3px rgba(0, 0, 0, 0.35);
}

.hero-title span {
    display: block;
}

.hero-copy {
    max-width: 600px;
    margin-top: 22px;
    font-size: clamp(15px, 1.2vw, 18px);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-ui {
    position: absolute;
    left: 50%;
    bottom: 214px;
    transform: translateX(-50%);
    z-index: 3;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
}

.hero-paging {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
    border: 1px solid transparent;
    transition: transform 0.35s var(--ease), background-color 0.35s var(--ease), border-color 0.35s var(--ease);
}

.hero-dot.is-active {
    background: #fff;
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.15);
}

.hero-progress {
    width: clamp(180px, 26vw, 360px);
    height: 2px;
    background: rgba(255, 255, 255, 0.24);
    overflow: hidden;
}

.hero-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left center;
}

.hero-arrows {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-arrow {
    min-width: 78px;
    min-height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
    border-color: rgba(255, 255, 255, 0.86);
}

.hero-shortcuts {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: min(var(--container), calc(100% - 32px));
    transform: translateX(-50%);
    display: flex;
    z-index: 3;
}

.shortcut-card {
    position: relative;
    flex: 1;
    padding: 34px 36px;
    background: rgba(255, 255, 255, 0.12);
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    overflow: hidden;
    transition: color 0.4s var(--ease), transform 0.4s var(--ease);
}

.shortcut-card:last-child {
    border-right: 0;
}

.shortcut-card strong,
.shortcut-card span {
    position: relative;
    z-index: 1;
}

.shortcut-card strong {
    display: block;
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #fff;
}

.shortcut-card span {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.92);
}

.shortcut-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    transform: translateY(101%);
    transition: transform 0.45s var(--ease);
}

.shortcut-card:hover::before,
.shortcut-card:focus-visible::before {
    transform: translateY(0);
}

.shortcut-card:hover,
.shortcut-card:focus-visible {
    color: var(--text);
}

.shortcut-card:hover strong,
.shortcut-card:focus-visible strong {
    color: var(--text);
}

.shortcut-card:hover span,
.shortcut-card:focus-visible span {
    color: var(--text-soft);
}

.shortcut-card--dark {
    background: rgba(5, 11, 8, 0.5);
}

.shortcut-card--accent {
    background: rgba(118, 196, 66, 0.32);
    border-top-color: rgba(180, 230, 130, 0.55);
}

.hero-scroll {
    position: absolute;
    right: 44px;
    bottom: 188px;
    z-index: 3;
    color: rgba(255, 255, 255, 0.78);
    display: inline-flex;
    align-items: center;
    gap: 14px;
    writing-mode: vertical-rl;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 12px;
}

.hero-scroll::before {
    content: "";
    width: 1px;
    height: 96px;
    background: rgba(255, 255, 255, 0.26);
}

.hero-scroll::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 36px;
    width: 1px;
    height: 28px;
    background: #fff;
    transform: translateX(-50%);
    animation: scroll-indicator 1.8s infinite;
}

@keyframes scroll-indicator {
    0% {
        transform: translate(-50%, -18px);
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    100% {
        transform: translate(-50%, 32px);
        opacity: 0;
    }
}

.flow-band {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.flow-row {
    overflow: hidden;
}

.flow-row + .flow-row {
    border-top: 1px solid var(--line);
}

.flow-track {
    display: flex;
    align-items: center;
    gap: clamp(26px, 3vw, 44px);
    width: max-content;
    padding: 16px 0;
    animation: marquee 70s linear infinite;
}

.flow-track--rev {
    animation-name: marquee-rev;
    animation-duration: 77s;
}

.flow-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.flow-logo::after {
    content: "";
    width: 8px;
    height: 8px;
    margin-left: clamp(26px, 3vw, 44px);
    border-radius: 50%;
    background: rgba(17, 23, 20, 0.2);
}

.flow-logo img {
    display: block;
    width: auto;
    height: clamp(28px, 3.2vw, 44px);
    max-width: min(30vw, 180px);
    object-fit: contain;
    
    opacity: 0.88;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes marquee-rev {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

.overview {
    background: #f3f6f3;
}

.overview-grid {
    display: grid;
    grid-template-columns: minmax(340px, 1.1fr) minmax(0, 0.9fr);
    gap: 48px;
    align-items: start;
}

.overview-copy {
    position: sticky;
    top: 120px;
}

.overview-copy h2 {
    margin-top: 16px;
    font-size: clamp(20px, 1.7vw, 26px);
}

.overview-copy p {
    margin-top: 22px;
    max-width: 560px;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.stat-card {
    min-height: 280px;
    padding: 30px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid rgba(17, 23, 20, 0.06);
    border-top: 3px solid var(--accent);
    box-shadow: var(--shadow-soft);
    transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), background-color 0.45s var(--ease);
}

.stat-card:hover,
.stat-card:focus-within {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    background: #f6fff2;
}

.stat-value {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(38px, 3.8vw, 62px);
    line-height: 0.95;
    letter-spacing: -0.07em;
    font-weight: 700;
}

.stat-value {
    color: var(--accent-dark);
}

.stat-value em {
    font-style: normal;
    font-size: 26px;
    color: var(--accent-dark);
    letter-spacing: -0.03em;
}

.stat-card h3 {
    margin-top: 22px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.stat-card p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.65;
    word-break: keep-all;
}

.capability-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 54px;
}

.capability-card {
    padding: 28px 30px 34px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid rgba(17, 23, 20, 0.1);
    transition: transform 0.45s var(--ease), background-color 0.45s var(--ease), border-color 0.45s var(--ease);
}

.capability-card:hover,
.capability-card:focus-within {
    transform: translateY(-6px);
    background: #f8fff4;
    border-color: rgba(118, 196, 66, 0.55);
    box-shadow: 0 8px 28px rgba(118, 196, 66, 0.1);
}

.capability-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Space Grotesk", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-dark);
    background: rgba(118, 196, 66, 0.12);
    padding: 4px 12px;
    border-radius: 999px;
    letter-spacing: 0.04em;
}

.capability-card strong {
    display: block;
    margin-top: 14px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.capability-card p {
    margin-top: 12px;
    color: var(--text-soft);
}

.business-head {
    padding-top: 110px;
    padding-bottom: 72px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.business-head h2 {
    max-width: 860px;
    margin-top: 18px;
    margin-bottom: 20px;
    font-size: clamp(30px, 3.4vw, 52px);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.15;
    color: var(--text);
}

.business-head > p {
    max-width: 620px;
    color: var(--text-soft);
    font-size: clamp(15px, 1.1vw, 17px);
    line-height: 1.7;
}

.business-panels {
    display: flex;
    gap: 0;
    min-height: 680px;
}

.business-panel {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    border-radius: 0;
    overflow: hidden;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    transition: flex 0.75s var(--ease), box-shadow 0.55s var(--ease);
}

.business-panel:last-child {
    border-right: none;
}

.business-panel.is-active,
.business-panel:hover,
.business-panel:focus-visible {
    flex: 1.5 1 0;
    box-shadow: inset 0 0 0 2px rgba(118, 196, 66, 0.36);
}

.business-panel__bg,
.business-panel__shade,
.business-panel__inner {
    position: absolute;
    inset: 0;
}

.business-panel__bg {
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    filter: grayscale(0) brightness(0.88) saturate(1.1);
    transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
}

.business-panel__shade {
    background: linear-gradient(170deg, rgba(6, 10, 8, 0.0) 0%, rgba(6, 10, 8, 0.35) 100%);
}

.business-panel.is-active .business-panel__bg,
.business-panel:hover .business-panel__bg,
.business-panel:focus-visible .business-panel__bg {
    transform: scale(1.02);
    filter: grayscale(0) brightness(1.0) saturate(1.15);
}

.business-panel__inner {
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 36px;
}

.panel-index {
    font-family: "Space Grotesk", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.36);
}

.panel-copy strong {
    display: block;
    font-size: clamp(20px, 1.8vw, 28px);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.panel-copy p {
    max-width: 360px;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.78);
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

.panel-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.34);
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

.business-panel.is-active .panel-copy p,
.business-panel.is-active .panel-link,
.business-panel:hover .panel-copy p,
.business-panel:hover .panel-link,
.business-panel:focus-visible .panel-copy p,
.business-panel:focus-visible .panel-link {
    opacity: 1;
    transform: translateY(0);
}

.global-network {
    background: #ffffff;
}

.global-network__frame {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    gap: clamp(28px, 4vw, 58px);
    min-height: 700px;
    padding: clamp(34px, 4vw, 54px);
    border-radius: 34px;
    background: #ffffff;
    border: 1px solid rgba(17, 23, 20, 0.1);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.global-network__frame::before {
    content: "";
    position: absolute;
    inset: auto auto -20% -12%;
    width: 48%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(118, 196, 66, 0.14), transparent 68%);
    pointer-events: none;
}

.global-network__map,
.global-network__content {
    position: relative;
    z-index: 1;
}

.global-network__map {
    min-height: 590px;
    border-radius: 28px;
    overflow: hidden;
    background: #f0f2f0;
}

.global-network__map-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.global-network__band {
    position: absolute;
    left: -4%;
    right: -4%;
    height: clamp(42px, 5vw, 62px);
    background: rgba(95, 104, 96, 0.08);
    border-top: 1px solid rgba(95, 104, 96, 0.08);
    border-bottom: 1px solid rgba(95, 104, 96, 0.08);
}

.global-network__band--top {
    top: 16%;
}

.global-network__band--mid {
    top: 27%;
}

.global-network__band--bottom {
    top: 54%;
}

.global-network__orbit {
    position: absolute;
    left: 36.6%;
    top: 31.2%;
    border-radius: 50%;
    border: 1px solid rgba(122, 158, 104, 0.18);
    transform: translate(-50%, -50%);
}

.global-network__orbit--outer {
    width: min(52vw, 520px);
    aspect-ratio: 1;
}

.global-network__orbit--inner {
    width: min(22vw, 220px);
    aspect-ratio: 1;
}

.network-point {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(17, 23, 20, 0.72);
    font-family: "Space Grotesk", "Pretendard", sans-serif;
    letter-spacing: -0.03em;
}

.network-point strong {
    font-size: clamp(14px, 1.2vw, 18px);
    font-weight: 700;
}

.network-point__dot {
    position: relative;
    z-index: 1;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(17, 23, 20, 0.56);
    background: #fff;
    flex: 0 0 auto;
}

.network-point--primary {
    color: var(--accent-dark);
}

.network-point--primary .network-point__dot {
    width: 18px;
    height: 18px;
    border: 0;
    background: var(--accent);
    box-shadow: 0 0 0 8px rgba(118, 196, 66, 0.22);
}

.network-point__pulse {
    position: absolute;
    left: 9px;
    top: 9px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid rgba(118, 196, 66, 0.3);
    transform: translate(-50%, -50%) scale(1);
    animation: network-ripple 3.4s ease-out infinite;
}

.network-point__pulse--delay {
    animation-delay: 1.7s;
}

.network-point--korea {
    left: 35.6%;
    top: 30.4%;
}

.network-point--china {
    left: 30.8%;
    top: 28.1%;
}

.network-point--japan {
    left: 41.6%;
    top: 31.7%;
}

.network-point--vietnam {
    left: 25.8%;
    top: 54.1%;
}

.network-point--usa {
    left: 86.2%;
    top: 27.9%;
}

.global-network__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 440px;
    padding-right: 34px;
}

.global-network__content h2 {
    margin-top: 16px;
    font-size: clamp(24px, 2.6vw, 40px);
    line-height: 1.14;
    letter-spacing: -0.04em;
    font-weight: 700;
    word-break: keep-all;
}

.global-network__content p:not(.section-label) {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.78;
    color: var(--text-soft);
}

.global-network__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.global-network__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 156px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    background: var(--text);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.35s var(--ease), background-color 0.35s var(--ease);
}

.global-network__button:hover,
.global-network__button:focus-visible {
    transform: translateY(-2px);
    background: #172019;
}

.global-network__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
}

.global-network__link::after {
    content: "";
    width: 22px;
    height: 1px;
    background: currentColor;
    transition: transform 0.35s var(--ease);
}

.global-network__link:hover::after,
.global-network__link:focus-visible::after {
    transform: translateX(6px);
}

.global-network__rail {
    position: absolute;
    right: 0;
    top: 50%;
    display: flex;
    flex-direction: column;
    transform: translateY(-50%);
    z-index: 2;
}

.global-network__rail a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    min-height: 114px;
    padding: 18px 0;
    background: rgba(8, 17, 13, 0.96);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transition: background-color 0.35s var(--ease);
}

.global-network__rail a + a {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.global-network__rail a:hover,
.global-network__rail a:focus-visible {
    background: var(--accent);
}

/* ──────────────────────────────────────────
   Partner Slider Section
────────────────────────────────────────── */
.partner-slider-section {
    background: #f3f6f3;
}
.partner-slider__head {
    max-width: 820px;
    margin: 0 auto 56px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.partner-slider__head .section-label {
    display: block;
    margin: 0 0 4px;
    font-size: 13px;
    letter-spacing: 0.18em;
}
.partner-slider__head h2 {
    display: block;
    margin: 0;
    font-size: 34px;
    line-height: 1.35;
    font-weight: 800;
    letter-spacing: -0.01em;
}
.partner-slider__head .highlight-text {
    background: none;
    transition: none;
}
.partner-slider__lede {
    display: block;
    margin: 0;
    color: rgba(0,0,0,0.6);
    line-height: 1.7;
    font-size: 15px;
    max-width: 640px;
}
@media (max-width: 720px) {
    .partner-slider__head h2 { font-size: 26px; }
    .partner-slider__lede { font-size: 14px; }
}
.partner-slider {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0 64px;
    box-sizing: border-box;
}
.partner-slider__viewport {
    position: relative;
    overflow: hidden;
}
.partner-slider__track {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
}
.partner-slide {
    position: relative;
    flex: 0 0 420px;
    width: 420px;
    margin-right: 28px;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 18px;
    background: transparent;
    cursor: pointer;
    box-shadow: none;
}
.partner-slide:last-child { margin-right: 0; }
.partner-slide__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
}
.partner-slide__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px 34px;
    background: linear-gradient(180deg,
        rgba(10, 20, 11, 0) 0%,
        rgba(10, 20, 11, 0) 40%,
        rgba(10, 20, 11, 0.92) 100%);
    color: #fff;
    opacity: 1;
    transition: background 0.4s ease, padding 0.4s ease;
}
.partner-slide__brand {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #81c784;
    margin-bottom: 12px;
    transform: translateY(0);
    transition: transform 0.4s ease;
}
.partner-slide__title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1.3;
    transform: translateY(0);
    transition: transform 0.4s ease;
}
.partner-slide__desc {
    font-size: 14.5px;
    line-height: 1.7;
    color: rgba(255,255,255,0.88);
    margin-top: 12px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.45s ease, opacity 0.35s ease, margin-top 0.4s ease;
}
/* 호버 효과 */
.partner-slide:hover .partner-slide__img {
    transform: scale(1.08);
    filter: brightness(0.75);
}
.partner-slide:hover .partner-slide__overlay {
    background: linear-gradient(180deg,
        rgba(10, 20, 11, 0.2) 0%,
        rgba(10, 20, 11, 0.8) 60%,
        rgba(10, 20, 11, 0.95) 100%);
}
.partner-slide:hover .partner-slide__desc {
    max-height: 200px;
    opacity: 1;
    margin-top: 12px;
}
/* 화살표 버튼 */
.partner-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.95);
    color: #1b5e20;
    cursor: pointer;
    z-index: 3;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, transform 0.25s ease;
}
.partner-slider__arrow:hover {
    background: #2e7d32;
    color: #fff;
    transform: translateY(-50%) scale(1.05);
}
.partner-slider__arrow svg { width: 22px; height: 22px; }
.partner-slider__arrow--prev { left: 12px; }
.partner-slider__arrow--next { right: 12px; }
/* 도트 인디케이터 */
.partner-slider__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}
.partner-slider__dot {
    width: 28px;
    height: 3px;
    border: none;
    background: rgba(0,0,0,0.15);
    cursor: pointer;
    border-radius: 2px;
    padding: 0;
    transition: background 0.25s ease, width 0.3s ease;
}
.partner-slider__dot.is-active {
    background: #2e7d32;
    width: 44px;
}
/* CTA */
.partner-slider__actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}
/* 태블릿 */
@media (max-width: 960px) {
    .partner-slider { padding: 0 40px; }
    .partner-slide {
        flex: 0 0 340px;
        width: 340px;
        margin-right: 22px;
        aspect-ratio: 4 / 5;
    }
    .partner-slider__arrow--prev { left: 6px; }
    .partner-slider__arrow--next { right: 6px; }
}
/* 모바일 */
@media (max-width: 640px) {
    .partner-slider { padding: 0 20px; }
    .partner-slide {
        flex: 0 0 78vw;
        width: 78vw;
        margin-right: 16px;
        aspect-ratio: 3 / 4;
    }
    .partner-slider__track > .partner-slide + .partner-slide { margin-left: 0; }
    .partner-slider__arrow {
        width: 40px;
        height: 40px;
    }
    .partner-slide__overlay {
        /* 모바일에선 설명 항상 표시 */
        background: linear-gradient(180deg,
            rgba(10, 20, 11, 0.15) 0%,
            rgba(10, 20, 11, 0.75) 55%,
            rgba(10, 20, 11, 0.95) 100%);
    }
    .partner-slide__desc {
        max-height: 120px;
        opacity: 1;
        margin-top: 10px;
    }
    .partner-slide__title { font-size: 17px; }
}

@keyframes network-ripple {
    0% {
        opacity: 0.72;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(8.8);
    }
}

.news {
    background: var(--bg);
}

.news-carousel {
    position: relative;
}

.news-controls {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 20px;
}

.news-arrow {
    min-width: 82px;
    min-height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(17, 23, 20, 0.12);
    background: #fff;
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.news-arrow:disabled {
    opacity: 0.32;
    cursor: default;
}

.news-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(300px, calc((100% - 48px) / 3));
    gap: 24px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

.news-track::-webkit-scrollbar {
    display: none;
}

.news-card {
    scroll-snap-align: start;
    min-height: 320px;
    padding: 34px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(17, 23, 20, 0.08);
    box-shadow: none;
    transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.news-card:hover,
.news-card:focus-within {
    transform: translateY(-8px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(118, 196, 66, 0.22);
}

.news-category {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 90px;
    min-height: 34px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(46, 125, 50, 0.08);
    color: var(--accent-dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.news-card h3 {
    margin-top: 18px;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.04em;
}

.news-card p {
    margin-top: 12px;
    font-size: 15px;
}

.cta-stack {
    --stack-progress: 0;
    position: relative;
    height: 320vh;
    height: 320svh;
    background: #ffffff;
}

.cta-stage {
    position: sticky;
    top: 0;
    height: 100vh;
    height: 100svh;
    overflow: clip;
}

.cta-card {
    position: absolute;
    left: 2.4vw;
    right: 2.4vw;
    overflow: hidden;
    border-radius: 36px;
    color: #fff;
}

.cta-card__media,
.cta-card__overlay,
.cta-card__content {
    position: absolute;
    inset: 0;
}

.cta-card__media {
    background-position: center;
    background-size: cover;
    transform: scale(1.04);
}

.cta-card__overlay {
    background: transparent;
}

.cta-card__content {
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: min(16vh, 140px);
}

.cta-card__content .section-label {
    background: transparent;
    padding: 0;
    border-radius: 0;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
    color: rgba(255, 255, 255, 0.85);
}

.cta-card__content h2 {
    max-width: 820px;
    margin-top: 16px;
    color: #fff;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55), 0 1px 3px rgba(0, 0, 0, 0.35);
}

.cta-card__content p:not(.section-label) {
    max-width: 620px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.cta-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.cta-card--primary {
    top: 4vh;
    height: 84vh;
    transform: translateY(calc(var(--stack-progress) * -10vh)) scale(calc(1 - (var(--stack-progress) * 0.06)));
    opacity: calc(1 - (var(--stack-progress) * 0.36));
    transform-origin: center top;
}

.cta-card--secondary {
    left: 3.5vw;
    right: 3.5vw;
    bottom: 5vh;
    height: calc(42vh + (var(--stack-progress) * 48vh));
    transform: translateY(calc((1 - var(--stack-progress)) * 46vh));
    transform-origin: center bottom;
}

.site-footer {
    padding: 48px 0 60px;
    background: var(--surface-dark);
    color: rgba(255, 255, 255, 0.72);
}

.footer-top,
.footer-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.footer-top {
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line-light);
}

.footer-brand {
    display: block;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.05em;
}

.footer-copy {
    margin-top: 16px;
    max-width: 560px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
}

.footer-links a {
    color: #fff;
    font-weight: 600;
}

.footer-bottom {
    padding-top: 24px;
    align-items: flex-start;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-info p {
    margin: 0;
    line-height: 1.6;
}

.footer-copyright {
    font-size: 14px;
    margin: 0;
    text-align: right;
    line-height: 1.6;
}

/* ── 노트북 화면에서는 히어로 UI/스크롤 인디케이터 숨김 (1600px 이하) ── */
@media (max-width: 1600px) {
    .hero-ui,
    .hero-scroll,
    .hero-arrows {
        display: none !important;
    }
}

/* ── 노트북 최적화 (1280px ~ 1440px) ── */
@media (max-width: 1440px) {
    .container {
        width: min(1200px, calc(100% - 60px));
    }

    .section-pad {
        padding: 90px 0;
    }

    .hero-inner {
        padding-bottom: 260px;
    }

    .hero-progress {
        width: auto;
    }

    .hero-arrow {
        min-width: 68px;
        min-height: 40px;
        font-size: 12px;
    }

    .overview-grid {
        gap: 36px;
    }

    .overview-stats {
        gap: 14px;
    }

    .stat-card {
        min-height: 240px;
        padding: 26px;
    }

    .business-head {
        padding-bottom: 56px;
    }

    .news-track {
        grid-auto-columns: minmax(280px, calc((100% - 40px) / 3));
        gap: 20px;
    }

    .global-network__frame {
        min-height: 620px;
        padding: clamp(28px, 3vw, 44px);
    }
}

/* ── 노트북 nav 밀집 대응 (1200px ~ 1340px) ── */
@media (min-width: 1101px) and (max-width: 1340px) {
    /* nav 아이템 5개+검색 버튼이 좁아지는 구간: 폰트 축소 + 간격 조정 */
    .main-nav > ul {
        gap: clamp(16px, 1.8vw, 28px);
    }

    .nav-item > a {
        font-size: 14px;
    }

    /* header-shell 가로 패딩 줄이기 */
    .header-shell {
        width: calc(100% - 48px);
        gap: 24px;
    }

    /* brand 폰트 약간 축소 */
    .brand {
        font-size: 21px;
    }

    /* header-actions 간격 */
    .header-actions {
        gap: 14px;
    }
}

@media (max-width: 1300px) {
    .overview-grid,
    .section-head__row {
        grid-template-columns: 1fr;
    }

    .overview-copy {
        position: static;
    }

    .overview-stats,
    .capability-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .business-panels {
        min-height: 540px;
    }

    .global-network__frame {
        grid-template-columns: 1fr;
    }

    .global-network__content {
        max-width: none;
        padding-right: 52px;
    }

    .global-network__map {
        min-height: 500px;
    }
}

@media (max-width: 1100px) {
    .main-nav {
        display: none;
    }

    .header-shell {
        width: calc(100% - 40px);
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .hero-inner {
        padding-bottom: 300px;
    }

    .hero-ui {
        width: calc(100% - 40px);
        bottom: 244px;
    }

    .hero-shortcuts {
        width: calc(100% - 24px);
        flex-direction: column;
    }

    .shortcut-card {
        backdrop-filter: none;
        background: #1a2b1c;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .shortcut-card--dark {
        background: #111c13;
    }

    .shortcut-card--accent {
        background: #76c442;
    }

    .shortcut-card:last-child {
        border-bottom: 0;
    }

    .business-panels {
        flex-direction: column;
        min-height: auto;
    }

    .business-panel,
    .business-panel.is-active,
    .business-panel:hover,
    .business-panel:focus-visible {
        flex: auto;
        min-height: 320px;
    }

    .business-panel {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .business-panel:last-child {
        border-bottom: none;
    }

    /* 모바일: hover 없으므로 모든 패널 내용 항상 표시 */
    .panel-copy p,
    .panel-link {
        opacity: 1;
        transform: translateY(0);
    }

    .business-panel__bg {
        transform: scale(1.02);
        filter: grayscale(0) brightness(0.78) saturate(1.1);
    }

    .business-head {
        padding-top: 80px;
        padding-bottom: 44px;
    }

    .global-network__frame {
        min-height: auto;
        padding: 30px 30px 86px;
    }

    .global-network__map {
        min-height: 440px;
    }

    .global-network__content {
        padding-right: 0;
    }

    .global-network__rail {
        top: auto;
        right: 30px;
        bottom: 30px;
        transform: none;
        flex-direction: row;
    }

    .global-network__rail a {
        width: auto;
        min-height: 42px;
        padding: 0 18px;
        writing-mode: initial;
        text-orientation: initial;
        border-radius: 999px;
    }

    .global-network__rail a + a {
        margin-left: 8px;
        border-top: 0;
    }

    .news-track {
        grid-auto-columns: minmax(300px, calc((100% - 24px) / 2));
    }
}

@media (max-width: 900px) {
    :root {
        --header-height: 76px;
    }

    .container {
        width: calc(100% - 32px);
    }

    .section-pad {
        padding: 80px 0;
    }

    .site-header.is-scrolled .header-shell,
    .site-header.is-nav-open .header-shell {
        height: 70px;
    }

    .brand {
        font-size: 22px;
    }

    .lang-toggle {
        display: none;
    }

    .hero {
        min-height: 880px;
        height: auto;
    }

    .hero-inner {
        min-height: 880px;
        padding-top: 110px;
        padding-bottom: 430px;
    }

    .hero-title {
        font-size: clamp(34px, 9vw, 56px);
    }

    .hero-copy {
        font-size: 15px;
    }

    .hero-ui {
        grid-template-columns: 1fr;
        justify-items: start;
        gap: 16px;
        bottom: 282px;
    }

    .hero-progress {
        width: 220px;
    }

    .hero-arrows {
        display: none;
    }

    .hero-scroll {
        display: none;
    }

    .overview-stats,
    .capability-strip {
        grid-template-columns: 1fr;
    }

    .stat-card {
        min-height: auto;
    }

    .global-network__frame {
        padding: 24px 24px 82px;
    }

    .global-network__map {
        min-height: 360px;
    }

    .global-network__content h2 {
        font-size: clamp(22px, 5vw, 36px);
    }

    .global-network__content p:not(.section-label) {
        font-size: 15px;
        line-height: 1.7;
    }

    .global-network__orbit--outer {
        width: min(74vw, 360px);
    }

    .global-network__orbit--inner {
        width: min(30vw, 150px);
    }

    .network-point {
        gap: 8px;
    }

    .network-point strong {
        font-size: 13px;
    }

    .news-track {
        grid-auto-columns: 82vw;
    }

    .cta-stack {
        height: auto;
        padding: 96px 0;
        background: #fff;
    }

    .cta-stage {
        position: static;
        height: auto;
        display: grid;
        gap: 18px;
    }

    .cta-card,
    .cta-card--primary,
    .cta-card--secondary {
        position: relative;
        inset: auto;
        height: 540px;
        transform: none;
        opacity: 1;
        border-radius: 28px;
    }

    .cta-card__content {
        padding-bottom: 36px;
    }

    .footer-top,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .header-shell {
        width: calc(100% - 24px);
    }

    .hero {
        min-height: 780px;
    }

    .hero-inner {
        min-height: 780px;
        padding-bottom: 410px;
    }

    .hero-title {
        font-size: 36px;
        line-height: 1.08;
    }

    .hero-copy,
    .section-head p,
    .overview-copy p,
    .global-network__content p:not(.section-label),
    .cta-card__content p:not(.section-label),
    .news-card p {
        font-size: 14px;
    }

    .button {
        min-width: 0;
        width: 100%;
    }

    .hero-actions,
    .cta-links {
        width: 100%;
    }

    .hero-actions {
        display: none;
    }

    .shortcut-card {
        padding: 24px 20px;
    }

    .shortcut-card strong {
        font-size: 18px;
    }

    .section-head,
    .news-controls {
        margin-bottom: 28px;
    }

    .section-head h2,
    .overview-copy h2,
    .cta-card__content h2 {
        font-size: 24px;
    }

    .global-network__frame {
        padding: 20px 20px 74px;
        border-radius: 28px;
    }

    .global-network__map {
        min-height: 300px;
        border-radius: 22px;
    }

    .global-network__content h2 {
        font-size: 22px;
    }

    .global-network__button,
    .global-network__rail a {
        min-height: 40px;
        font-size: 12px;
    }

    .global-network__rail {
        right: 20px;
        bottom: 20px;
    }

    .global-network__band {
        height: 34px;
    }

    .business-panel__inner,
    .news-card {
        padding: 24px;
    }

    .panel-copy strong,
    .news-card h3 {
        font-size: 24px;
    }

    .cta-card,
    .cta-card--primary,
    .cta-card--secondary {
        height: 500px;
    }

    .footer-brand {
        font-size: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Logo Image Sizing */
.brand img,
.mobile-brand img,
.footer-brand img,
.logo img,
.ft-logo img {
    height: 56px;
    width: auto;
    object-fit: contain;
    display: flex;
}

.mobile-brand img {
    height: 60px;
}

.footer-brand img,
.ft-logo img {
    height: 60px;
}

/* Scroll and Toggle States for Logo */
.site-header.is-scrolled .brand img,
.site-header.is-nav-open .brand img,
.site-header.is-menu-open .brand img {
    content: url("images/main_logo2.png");
}

/* Also apply to dark tone headers by default */
.site-header[data-tone="dark"]:not(.is-scrolled):not(.is-nav-open):not(.is-menu-open) .brand img {
    content: url("images/main_logo2.png");
}

/* ========================================================================= */
/* PREMIUM OVERHAUL CSS: Energy Canvas, Glassmorphism, Tilt, Micro-animations */
/* ========================================================================= */

/* 1. Energy Canvas Overlay */
.overview {
    position: relative;
    overflow: hidden;
}
#energyCanvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.85;
}
.overview-grid, .capability-strip {
    position: relative;
    z-index: 1;
}

/* 2. Standardize CTA width & Revert Effects to fix scrolling */
.cta-stage .cta-card,
.cta-card,
.cta-card--primary,
.cta-card--secondary {
    left: 0 !important;
    right: 0 !important;
    border-radius: 0 !important;
}
.cta-card__overlay { inset: 0 !important; }
.cta-card__content {
    border: none !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}
.cta-card__media {
    background-attachment: scroll !important;
    transform: none !important;
}

/* Business panel inner glass effect removed */
.business-panel__inner {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* 3. Global Network Map Pulse */
.global-network__frame {
    position: relative;
    overflow: hidden;
}
.network-point__pulse {
    position: absolute;
    border-radius: 50%;
    background: rgba(118, 196, 66, 0.4);
    box-shadow: 0 0 20px rgba(118, 196, 66, 0.8);
    transform: translate(-50%, -50%);
    animation: pulse-ring 3s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}
.network-point__pulse--delay {
    animation-delay: -1.5s;
}
.network-point__dot {
    position: absolute;
    top: 50%; left: 50%;
    width: 6px; height: 6px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px #fff;
}
@keyframes pulse-ring {
    0% { width: 10px; height: 10px; opacity: 1; }
    100% { width: 100px; height: 100px; opacity: 0; }
}

/* 4. Text Highlight Micro-Animations */
.highlight-text {
    background: linear-gradient(to right, rgba(118, 196, 66, 0.35) 0%, rgba(118, 196, 66, 0.35) 100%);
    background-size: 0% 18px;
    background-repeat: no-repeat;
    background-position: left 90%;
    transition: background-size 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline;
}
.is-visible .highlight-text,
.is-visible.highlight-text {
    background-size: 100% 18px;
    transition-delay: 0.3s;
}

/* 5. Stat Card Micro hover */
.stat-card {
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(118, 196, 66, 0.4);
}


/* ──────────────────────────────────────────
   Site Search
────────────────────────────────────────── */
.nav-item--search { display: flex; align-items: center; }
.nav-item--search .nav-search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.18);
    background: transparent;
    color: #1b1b1b;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
/* 다크 헤더 (서브페이지 등): 흰색 아이콘 */
.site-header[data-tone="dark"] .nav-item--search .nav-search-btn {
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}
/* 라이트 톤(히어로 위 오버레이) + 스크롤 전: 흰색 아이콘 */
.site-header[data-tone="light"]:not(.is-scrolled):not(.is-nav-open):not(.is-menu-open) .nav-item--search .nav-search-btn {
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
}
/* 스크롤 후 / 라이트 톤 기본: 어두운 아이콘 */
.site-header.is-scrolled .nav-item--search .nav-search-btn,
.site-header.is-nav-open .nav-item--search .nav-search-btn,
.site-header.is-menu-open .nav-item--search .nav-search-btn {
    border-color: rgba(0, 0, 0, 0.18);
    color: #1b1b1b;
}
.nav-item--search .nav-search-btn:hover {
    background: #2e7d32 !important;
    border-color: #2e7d32 !important;
    color: #fff !important;
    transform: translateY(-1px);
}
.nav-item--search .nav-search-btn svg { width: 17px; height: 17px; }

.mobile-search {
    padding: 16px 0 6px;
}
.mobile-search__btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    cursor: pointer;
    text-align: left;
}
.mobile-search__btn svg { width: 18px; height: 18px; }

/* 오버레이 */
.site-search {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: none;
}
.site-search.is-open { display: block; }
.site-search__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 11, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: searchFadeIn 0.2s ease;
}
.site-search__panel {
    position: relative;
    max-width: 720px;
    margin: 8vh auto 0;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    animation: searchSlideIn 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.site-search__head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.site-search__icon {
    width: 22px;
    height: 22px;
    color: #2e7d32;
    flex-shrink: 0;
}
.site-search__input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 18px;
    background: transparent;
    color: #212121;
    padding: 4px 0;
    font-family: inherit;
}
.site-search__input::placeholder { color: rgba(0,0,0,0.35); }
.site-search__close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.06);
    color: #333;
    cursor: pointer;
    font-size: 14px;
}
.site-search__close:hover { background: rgba(0, 0, 0, 0.12); }
.site-search__body {
    max-height: 62vh;
    overflow-y: auto;
    padding: 8px 0;
}
.site-search__hint {
    padding: 24px 28px;
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
    margin: 0;
}
.site-search__results {
    list-style: none;
    margin: 0;
    padding: 0;
}
.site-search__item { border-top: 1px solid rgba(0, 0, 0, 0.06); }
.site-search__item:first-child { border-top: none; }
.site-search__link {
    display: block;
    padding: 16px 28px;
    color: #212121;
    text-decoration: none;
    transition: background 0.15s ease;
}
.site-search__link:hover { background: rgba(46, 125, 50, 0.06); }
.site-search__tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #2e7d32;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.site-search__title {
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 4px;
}
.site-search__desc {
    display: block;
    font-size: 13.5px;
    color: rgba(0, 0, 0, 0.55);
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.site-search mark {
    background: rgba(46, 125, 50, 0.18);
    color: #1b5e20;
    padding: 0 2px;
    border-radius: 2px;
}
body.is-search-open { overflow: hidden; }

@keyframes searchFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes searchSlideIn { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 640px) {
    .site-search__panel { margin: 0; height: 100%; border-radius: 0; max-width: 100%; }
    .site-search__body { max-height: calc(100vh - 78px); }
    .site-search__head { padding: 16px; }
    .site-search__input { font-size: 16px; }
    .site-search__link { padding: 14px 18px; }
}

/* ────────────────────────────────────────────────
   RESOURCES (자료실) — 검색/필터/모델 카드
──────────────────────────────────────────────── */
.res-controls {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
    padding: 22px;
    background: #f6f8f6;
    border: 1px solid #e5ebe6;
    border-radius: 14px;
}
.res-search {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #dfe6e0;
    border-radius: 10px;
    padding: 0 14px;
    transition: border-color .2s, box-shadow .2s;
}
.res-search:focus-within {
    border-color: #2e7d32;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.12);
}
.res-search svg {
    width: 18px; height: 18px; color: #7a867c; flex-shrink: 0;
}
.res-search input {
    flex: 1;
    border: 0; outline: 0; background: transparent;
    padding: 14px 0;
    font-size: 15px; color: #1b1b1b;
    font-family: inherit;
}
.res-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}
.res-filter-group {
    display: flex; flex-wrap: wrap; gap: 8px;
}
.res-chip {
    border: 1px solid #d5dcd6;
    background: #fff;
    color: #3a4a3d;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all .18s;
    font-family: inherit;
}
.res-chip:hover { border-color: #2e7d32; color: #2e7d32; }
.res-chip.is-active {
    background: #2e7d32; border-color: #2e7d32; color: #fff;
}

.res-meta {
    font-size: 14px; color: #5a6b5c;
    margin-bottom: 18px;
}
.res-meta #resCount { font-weight: 700; color: #2e7d32; }

.res-list {
    display: flex; flex-direction: column; gap: 36px;
}
.res-series {
    background: #fff;
    border: 1px solid #e5ebe6;
    border-radius: 16px;
    overflow: hidden;
}
.res-series__head {
    display: flex; align-items: flex-start; justify-content: space-between;
    gap: 18px;
    padding: 22px 26px;
    background: linear-gradient(135deg, #f4f8f4 0%, #eaf2ea 100%);
    border-bottom: 1px solid #e5ebe6;
}
.res-series__kicker {
    font-size: 12px; font-weight: 600;
    color: #2e7d32; letter-spacing: .06em;
    margin: 0 0 6px;
    text-transform: uppercase;
}
.res-series__title {
    font-size: 20px; font-weight: 700;
    color: #1b1b1b; margin: 0;
    letter-spacing: -0.01em;
}
.res-series__type {
    font-size: 13px; color: #5a6b5c; margin: 4px 0 0;
}
.res-series__note {
    display: inline-block; margin: 8px 0 0;
    font-size: 12px; line-height: 1.4; color: #9a6a00;
    background: rgba(176,106,0,0.07);
    border: 1px solid rgba(176,106,0,0.18);
    padding: 5px 10px; border-radius: 8px;
}
.res-series__note::before {
    content: '\2139'; margin-right: 5px; font-weight: 700;
}
.res-series__link {
    font-size: 13px; font-weight: 600; color: #2e7d32;
    text-decoration: none; white-space: nowrap;
    padding: 6px 12px; border: 1px solid #cfe0d0; border-radius: 999px;
    transition: all .18s;
}
.res-series__link:hover { background: #2e7d32; color: #fff; border-color: #2e7d32; }

.res-models {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 0;
}
.res-model {
    border-right: 1px solid #eef2ef;
    border-bottom: 1px solid #eef2ef;
    padding: 20px 22px;
    display: flex; flex-direction: column; gap: 14px;
}
.res-model__head {
    display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.res-model__idwrap { display: flex; flex-direction: column; gap: 2px; }
.res-model__kva {
    font-size: 18px; font-weight: 700; color: #1b1b1b;
    line-height: 1.1;
}
.res-model__id {
    font-size: 12px; color: #7a867c; font-family: 'SF Mono', Consolas, monospace;
}
.res-model__all {
    display: inline-flex; align-items: center; gap: 6px;
    background: #2e7d32; color: #fff;
    border: 0; padding: 8px 12px; border-radius: 8px;
    font-size: 12px; font-weight: 600;
    cursor: pointer;
    transition: all .18s;
    font-family: inherit;
}
.res-model__all svg { width: 14px; height: 14px; }
.res-model__all:hover { background: #1f5a22; }
.res-model__all.is-done { background: #4caf50; }

.res-doclist {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 6px;
}
.res-doc {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px;
    background: #f9faf9;
    border: 1px solid #eef2ef;
    border-radius: 8px;
    transition: background .18s, border-color .18s;
}
.res-doc:hover { background: #f1f6f1; border-color: #d5e0d6; }
.res-doc__type {
    font-size: 11px; font-weight: 700;
    padding: 3px 8px; border-radius: 4px;
    flex-shrink: 0;
    color: #fff;
}
.res-doc__type--spec { background: #2e7d32; }
.res-doc__type--cat  { background: #1976d2; }
.res-doc__type--draw { background: #f57c00; }
.res-doc__type--man  { background: #6a1b9a; }
.res-doc__type--other { background: #546e7a; }
.res-doc__body { flex: 1; min-width: 0; }
.res-doc__title {
    margin: 0; font-size: 13px; font-weight: 600; color: #1b1b1b;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.res-doc__meta {
    margin: 2px 0 0; font-size: 11px; color: #7a867c;
    font-family: 'SF Mono', Consolas, monospace;
}
.res-doc__dl {
    display: inline-flex; align-items: center; justify-content: center;
    width: 32px; height: 32px;
    color: #5a6b5c;
    border: 1px solid #d5dcd6; border-radius: 6px;
    text-decoration: none;
    transition: all .18s;
    flex-shrink: 0;
}
.res-doc__dl svg { width: 15px; height: 15px; }
.res-doc__dl:hover { background: #2e7d32; color: #fff; border-color: #2e7d32; }

.res-empty {
    text-align: center; padding: 80px 20px;
    color: #7a867c; font-size: 15px;
}

@media (max-width: 720px) {
    .res-controls { padding: 16px; }
    .res-series__head { flex-direction: column; padding: 18px 20px; }
    .res-models { grid-template-columns: 1fr; }
    .res-model { padding: 16px 18px; }
    .res-model__kva { font-size: 16px; }
}

/* 검색 모달 결과에 다운로드 액션 추가 */
.site-search__item { position: relative; }
.site-search__dl {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex; align-items: center; gap: 6px;
    background: #2e7d32; color: #fff;
    border: 0; padding: 7px 12px; border-radius: 8px;
    font-size: 12px; font-weight: 600;
    cursor: pointer; text-decoration: none;
    transition: all .18s;
    font-family: inherit;
    z-index: 2;
}
.site-search__dl svg { width: 14px; height: 14px; }
.site-search__dl:hover { background: #1f5a22; }
.site-search__dl.is-done { background: #4caf50; }
.site-search__item .site-search__link { padding-right: 140px; }
.site-search__meta {
    display: block;
    margin-top: 4px;
    font-size: 11px; color: #8a968c;
    font-family: 'SF Mono', Consolas, monospace;
}
@media (max-width: 640px) {
    .site-search__dl { position: static; transform: none; margin: 10px 18px 14px; }
    .site-search__item .site-search__link { padding-right: 18px; }
}

/* ============================================================
   Mobile Polish (사용자 피드백 반영)
============================================================ */

/* 1. Footer mobile center alignment */
@media (max-width: 900px) {
    .footer-top,
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        gap: 18px;
    }
    .footer-top { border-bottom: 1px solid var(--line-light); padding-bottom: 24px; }
    .footer-bottom { padding-top: 20px; }
    .footer-copy { margin-left: auto; margin-right: auto; }
    .footer-info { align-items: center; }
    .footer-info p { text-align: center; }
    .footer-copyright { text-align: center; }
    .footer-links { justify-content: center; gap: 12px 20px; }
}

/* br-m: 모바일 전용 줄바꿈 */
.br-m { display: none; }
@media (max-width: 900px) {
    .br-m { display: inline; }
}

/* ──────────────────────────────────────────
   타이포그래피 단락 균형 (widow 방지)
   - 한글 단어 보존 + 마지막 줄이 너무 짧지 않도록
────────────────────────────────────────── */
p, li, dd, blockquote {
    word-break: keep-all;
    overflow-wrap: break-word;
    text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
    word-break: keep-all;
    text-wrap: balance;
}
/* 큰 화면에서 본문 단락이 한 줄에 펼쳐지지 않도록 적절한 폭 가이드 */
.section-head p,
.overview-copy p,
.news-card p,
.cta-card__content p:not(.section-label),
.global-network__content p:not(.section-label) {
    max-width: 56ch;
}

/* section-label 하단 간격 (모바일에서 너무 좁아 보이는 문제) */
.overview-copy .section-label,
.section-head .section-label,
.section-head__row + .section-label,
.business-head .section-label,
.partner-slider__head .section-label {
    margin-bottom: 18px;
}
@media (max-width: 900px) {
    .overview-copy .section-label,
    .section-head .section-label,
    .business-head .section-label,
    .partner-slider__head .section-label {
        margin-bottom: 22px;
    }
}

/* 모바일 — 히어로 이미지 (전용 _mo 자산 사용, cover 유지하되 scale 완화) */
@media (max-width: 768px) {
    .hero-media img,
    .hero-media video {
        object-fit: cover;
        object-position: center;
        transform: scale(1);
    }
    .hero-slide.is-active .hero-media img,
    .hero-slide.is-active .hero-media video {
        transform: scale(1);
    }
}

/* 2. CTA card — 흰색 여백 제거 (PC + 모바일 공통) */
.cta-card,
.cta-card--primary,
.cta-card--secondary,
.cta-stage .cta-card {
    left: 0 !important;
    right: 0 !important;
    border-radius: 0 !important;
}
.cta-card__overlay { inset: 0 !important; }

/* CTA 카드 — 텍스트 가독성 보강 (인증서 배경 위) */
.cta-card__overlay--light {
    background: linear-gradient(100deg, rgba(13,30,16,0.22) 0%, rgba(13,30,16,0.12) 45%, rgba(13,30,16,0) 100%) !important;
}
.cta-card__content--center {
    justify-content: center !important;
    padding-bottom: 0 !important;
    padding-top: 0 !important;
}
.cta-card__content--center h2,
.cta-card__content--center p:not(.section-label):not(.cta-stat) {
    text-shadow: 0 1px 6px rgba(0,0,0,0.3), 0 1px 2px rgba(0,0,0,0.2) !important;
}
/* 제품 자료실(ghost) 가독성 보강 */
.cta-card__content--center .button--ghost {
    background: rgba(255,255,255,0.92) !important;
    color: #1b5e20 !important;
    border-color: #1b5e20 !important;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.cta-card__content--center .button--ghost:hover {
    background: #1b5e20 !important;
    color: #fff !important;
}

/* 40+ 강조 스탯 — 단색 / 볼드 / 타이트 */
.cta-stat {
    display: inline-flex;
    align-items: flex-start;
    gap: 2px;
    font-family: 'Space Grotesk', 'Pretendard', sans-serif;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.08em;
    color: #1b5e20;
    margin-bottom: 18px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}
.cta-stat__num {
    font-size: clamp(72px, 9vw, 140px);
    color: #1b5e20;
    letter-spacing: -0.08em;
}
.cta-stat__plus {
    font-size: clamp(36px, 4vw, 64px);
    margin-top: 0.35em;
    color: #1b5e20;
    letter-spacing: -0.05em;
}
@media (max-width: 900px) {
    .cta-stat__num { font-size: 72px; }
    .cta-stat__plus { font-size: 36px; }
}

/* PC — 카드가 viewport를 가득 채우도록 상하 흰 여백 제거 */
.cta-card--primary {
    top: 0 !important;
    height: 100vh !important;
    height: 100svh !important;
}
.cta-card--secondary {
    bottom: 0 !important;
    height: calc(50vh + (var(--stack-progress) * 50vh)) !important;
}
/* container는 내부 콘텐츠만 가운데로, 카드 자체는 풀 폭 */
.cta-card__content.container {
    width: min(var(--container), calc(100% - 64px));
    margin: 0 auto;
    padding-bottom: min(14vh, 120px);
}

@media (max-width: 900px) {
    .cta-stack { padding: 0 !important; background: transparent !important; }
    .cta-stage { gap: 0 !important; }
    .cta-card,
    .cta-card--primary,
    .cta-card--secondary {
        height: 480px !important;
        border-radius: 0 !important;
    }
    .cta-card__content.container {
        width: calc(100% - 40px);
        padding-bottom: 40px;
    }
}

/* 3. highlight-text — 모바일 간격 보정 */
@media (max-width: 900px) {
    .highlight-text {
        background-size: 0% 10px;
        background-position: left 92%;
    }
    .is-visible .highlight-text,
    .is-visible.highlight-text {
        background-size: 100% 10px;
    }
}

/* 4. section-tabs 모바일 가운데 정렬 */
@media (max-width: 900px) {
    .section-tabs {
        justify-content: center;
        flex-wrap: wrap;
    }
    .section-tabs__item {
        flex: 0 0 auto;
        text-align: center;
    }
}

