@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Noto+Sans+SC:wght@400;500;600;700&display=swap');

:root {
    --main-orange: #F06522;
    --deep-orange: #C43D5A;
    --logo-purple: #9B4DCA;
    --accent-blue: #1A3A5C;
    --logo-gradient: linear-gradient(135deg, #E8651A 0%, #D44E3A 38%, #C43D5A 72%, #9B4DCA 100%);
    --logo-gradient-soft: linear-gradient(135deg, rgba(232, 101, 26, 0.12) 0%, rgba(196, 61, 90, 0.1) 55%, rgba(155, 77, 202, 0.08) 100%);
    --dark-gray: #1E293B;
    --mid-gray: #64748B;
    --light-gray: #F8FAFC;
    --border-gray: #E2E8F0;
    --white: #FFFFFF;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    font-family: 'Inter', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
    box-sizing: border-box;
}

body {
    color: var(--dark-gray);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* ── Navbar ── */
.navbar {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 0.5rem 0;
}
.logo-img { height: 72px; }
.nav-link {
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0 10px;
    padding: 8px 4px !important;
    position: relative;
    transition: color var(--transition);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--main-orange);
    transition: all var(--transition);
    transform: translateX(-50%);
}
.nav-link:hover, .nav-link.active {
    color: var(--main-orange);
}
.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Language Switch */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 20px;
    border: 1px solid var(--border-gray);
    border-radius: 20px;
    padding: 3px;
    background: var(--light-gray);
}
.lang-btn {
    border: none;
    background: transparent;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--mid-gray);
    transition: all var(--transition);
    letter-spacing: 0.02em;
}
.lang-btn.active {
    background: var(--white);
    color: var(--main-orange);
    box-shadow: var(--shadow-sm);
}

/* ── Section Titles ── */
.section-title {
    text-align: center;
    margin-bottom: 56px;
}
.section-title h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-gray);
    position: relative;
    display: inline-block;
    letter-spacing: -0.02em;
}
.section-title h2::after {
    content: "";
    width: 48px;
    height: 3px;
    background: var(--main-orange);
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}
.section-title .subtitle {
    color: var(--mid-gray);
    font-size: 1rem;
    margin-top: 24px;
    font-weight: 400;
}
.section-eyebrow {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--main-orange);
    margin-bottom: 12px;
}
.section-eyebrow,
.honor-cert-eyebrow,
.honor-label {
    display: none;
}
.section-title-left {
    text-align: left;
}
.section-title-left h2::after {
    left: 0;
    transform: none;
}

/* ── International Icon Style ── */
.icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(232,101,26,0.08), rgba(196,61,90,0.06));
    border: 1px solid rgba(232,101,26,0.12);
    transition: all var(--transition);
}
.icon-wrap svg {
    width: 28px;
    height: 28px;
    stroke: var(--main-orange);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.adv-card:hover .icon-wrap,
.culture-card:hover .icon-wrap {
    background: linear-gradient(135deg, var(--main-orange), var(--deep-orange));
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232,101,26,0.25);
}
.adv-card:hover .icon-wrap svg,
.culture-card:hover .icon-wrap svg {
    stroke: #fff;
}

/* ── Cards ── */
.adv-card, .culture-card, .contact-card, .award-card {
    background: #fff;
    padding: 36px 32px;
    border-radius: 16px;
    text-align: left;
    transition: all var(--transition);
    height: 100%;
    border: 1px solid rgba(26, 58, 92, 0.08);
    box-shadow: 0 10px 36px rgba(15, 23, 42, 0.05);
}
.adv-card .icon-wrap {
    margin: 0 0 22px;
}
.culture-card {
    position: relative;
    overflow: hidden;
    padding: 40px 36px 36px;
}
.culture-values-row {
    counter-reset: culture-card;
}
.culture-values-row .culture-card {
    padding-top: 48px;
}
.culture-values-row .culture-card::after {
    content: counter(culture-card, decimal-leading-zero);
    counter-increment: culture-card;
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(240, 101, 34, 0.12);
    letter-spacing: -0.04em;
    line-height: 1;
}
.culture-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--main-orange);
}
.culture-card h3 {
    color: var(--main-orange);
    font-size: 1.35rem;
    margin-bottom: 16px;
}
.culture-card p {
    color: var(--dark-gray);
    font-size: 1rem;
    line-height: 1.85;
    margin: 0;
}
.culture-activity-wrap {
    padding: 72px 0 48px;
    background: #fff;
}
.culture-video-section {
    padding-bottom: 72px;
}
.adv-card:hover, .culture-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: transparent;
}
.adv-card h4 {
    font-size: 1.12rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--accent-blue);
    letter-spacing: -0.01em;
}
.adv-card p {
    color: var(--mid-gray);
    font-size: 0.94rem;
    line-height: 1.8;
    margin: 0;
}

.advantage-box, .partner-box {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff 0%, #fff7f2 38%, #fff 100%);
    position: relative;
}
.value-box {
    padding: 80px 0;
    background: #fff;
    position: relative;
}
.advantage-box::before, .partner-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 12% 20%, rgba(232, 101, 26, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse at 88% 80%, rgba(196, 61, 90, 0.06) 0%, transparent 50%);
    pointer-events: none;
}
.advantage-box > .container,
.value-box > .container,
.partner-box > .container {
    position: relative;
    z-index: 1;
}
.about-box {
    padding: 80px 0;
    background: #fff;
}
.about-box > .container {
    position: relative;
    z-index: 1;
}
.about-section-head {
    margin-bottom: 40px;
    text-align: left;
}
.about-section-head h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 0;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}
.about-section-head h2::after {
    content: "";
    width: 48px;
    height: 3px;
    background: var(--main-orange);
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}
.about-text p {
    color: var(--mid-gray);
    line-height: 2;
    margin-bottom: 1.25em;
    font-size: 1rem;
    text-align: justify;
    text-align-last: left;
}
.about-text p:last-child {
    margin-bottom: 0;
}
.about-visual {
    position: relative;
    margin-top: 48px;
    border-radius: 4px;
    background: #0f172a;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.1);
}
.about-video-wrap {
    position: relative;
    width: 100%;
    line-height: 0;
    cursor: pointer;
}
.about-video {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}
.about-video-play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 72px;
    height: 72px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    color: var(--main-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    z-index: 2;
}
.about-video-play svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
    margin-left: 4px;
}
.about-video-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15,23,42,0.15);
    z-index: 1;
    transition: opacity var(--transition);
    pointer-events: none;
}
.about-video-wrap:hover .about-video-play {
    transform: scale(1.08);
    background: #fff;
    box-shadow: 0 12px 40px rgba(232,101,26,0.25);
}
.about-video-wrap.is-playing .about-video-play,
.about-video-wrap.is-playing::before {
    opacity: 0;
    pointer-events: none;
}
.about-video-wrap.is-playing {
    cursor: default;
}
.about-visual-logo {
    position: absolute;
    top: 28px;
    left: 32px;
    z-index: 3;
    transition: opacity var(--transition);
    pointer-events: none;
}
.about-visual.is-playing .about-visual-logo {
    opacity: 0;
}
.about-visual-logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

/* ── Page Banner ── */
.page-banner {
    padding: 48px 0;
    min-height: 200px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #fff;
}
.page-banner-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 73% 38%;
    opacity: 0.82;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}
.page-banner-mask {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.28)),
        radial-gradient(ellipse 48% 78% at 50% 48%, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.52) 58%, rgba(255, 255, 255, 0.14) 100%);
}
.page-banner .container {
    position: relative;
    z-index: 2;
    text-align: center;
}
.page-banner h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin: 0;
    color: var(--main-orange);
    display: inline-block;
    position: relative;
}
.page-banner h1::after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    background: var(--main-orange);
    margin: 12px auto 0;
}
.page-banner p {
    font-size: 1rem;
    color: var(--mid-gray);
    font-weight: 400;
    max-width: 680px;
    line-height: 1.8;
    margin: 18px auto 0;
}
html[lang="en"] .page-banner p {
    max-width: min(96vw, 1180px);
    white-space: nowrap;
    font-size: 0.93rem;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

/* ── Carousel Banner ── */
.top-carousel .carousel-item {
    overflow: hidden;
    background: #fff;
}
.top-carousel .carousel-item img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center center;
}

/* ── History Timeline ── */
.history-box {
    padding: 88px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    overflow: visible;
}
.runway-timeline {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    height: 880px;
    overflow: visible;
}
.runway-timeline svg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: block;
}
.runway-timeline .world-map-bg {
    z-index: 0;
    opacity: 0.85;
    mask-image: linear-gradient(to right, #000 0%, #000 88%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, #000 0%, #000 88%, transparent 100%);
}
.runway-timeline .runway-svg { z-index: 1; }
.runway-plane-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
    display: block;
}
.runway-fade {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}
.runway-fade-start {
    top: 0; left: 0;
    width: 38%; height: 42%;
    background: radial-gradient(ellipse at 0% 0%, #fff 0%, rgba(255,255,255,0.85) 35%, transparent 72%);
}
.runway-fade-bottom {
    bottom: 0; left: 0; right: 0;
    height: 22%;
    background: linear-gradient(to top, #fff 0%, rgba(255,255,255,0.6) 55%, transparent 100%);
}
.runway-fade-right {
    top: 0; right: 0;
    width: 22%; height: 100%;
    background: linear-gradient(to left, #fff 0%, rgba(255,255,255,0.45) 55%, transparent 100%);
}
.runway-glow {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}
.runway-glow-future {
    bottom: -8%;
    left: -8%;
    width: 58%;
    height: 58%;
    background: radial-gradient(ellipse at 0% 100%, rgba(232,101,26,0.12) 0%, rgba(232,101,26,0.05) 28%, transparent 62%);
}
.timeline-nodes {
    position: absolute;
    top: 0; left: 0;
    z-index: 3;
    width: 100%; height: 100%;
    pointer-events: none;
}
.timeline-nodes .node {
    position: absolute;
    width: 300px;
    pointer-events: auto;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.45s ease;
    z-index: 1;
    transform: translate(-50%, 0);
    height: 0;
}
.node-anchor-dot .node-stack {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.node-row-2,
.node-row-3,
.node-row-4 {
    width: 340px;
}
.node-row-2 .node-stack,
.node-row-3 .node-stack,
.node-row-4 .node-stack {
    bottom: 24px;
}
.node-row-2 .desc,
.node-row-3 .desc,
.node-row-4 .desc {
    max-width: 320px;
    font-size: 0.88rem;
    line-height: 1.5;
    word-break: keep-all;
}
.node-row-2 .desc.desc-split,
.node-row-3 .desc.desc-split,
.node-row-4 .desc.desc-split {
    max-width: 320px;
}
.node-row-4 .desc.desc-split {
    max-width: 320px;
}
.node-desc-left .node-stack {
    transform: translateX(-42%);
}
.node-desc-left .desc,
.node-desc-left .desc.desc-split {
    max-width: 228px;
    margin-left: 0;
    margin-right: auto;
    text-align: left;
}
.node-desc-right .node-stack {
    transform: translateX(-58%);
}
.node-desc-right .desc,
.node-desc-right .desc.desc-split {
    max-width: 228px;
    margin-left: auto;
    margin-right: 0;
    text-align: right;
}
html[lang="en"] .node-row-4 .desc.desc-split {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
html[lang="en"] .node-row-4 .desc.desc-split .desc-line {
    text-align: center;
    max-width: none;
}
html[lang="en"] .node-row-2 .desc.desc-split,
html[lang="en"] .node-row-4.node-future .desc.desc-split {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
html[lang="en"] .node-row-2 .desc.desc-split .desc-line,
html[lang="en"] .node-row-4.node-future .desc.desc-split .desc-line {
    text-align: center;
    max-width: none;
}
html[lang="en"] .node-row-3 .desc.desc-split {
    max-width: 228px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
html[lang="en"] .node-row-3 .desc.desc-split .desc-line {
    text-align: center;
    max-width: none;
}
html[lang="en"] .node-row-3.node-tight-left .desc.desc-split {
    max-width: 198px;
}
html[lang="en"] .node-row-3.node-tight-right .desc.desc-split {
    max-width: 198px;
}
html[lang="en"] .node.node-active .node-row-3 .desc.desc-split {
    max-width: 228px;
    font-size: 0.88rem;
}
html[lang="en"] .node.node-active .node-row-3.node-tight-left .desc.desc-split,
html[lang="en"] .node.node-active .node-row-3.node-tight-right .desc.desc-split {
    max-width: 188px;
    font-size: 0.84rem;
}
html[lang="en"] .node.node-active.node-row-3.node-tight-left,
html[lang="en"] .node.node-active.node-row-3.node-tight-right {
    transform: translate(-50%, 0) scale(1.06);
}
html[lang="en"] .node-desc-left .desc,
html[lang="en"] .node-desc-right .desc {
    font-size: 0.84rem;
}
html[lang="en"] .node.node-active.node-desc-left .desc,
html[lang="en"] .node.node-active.node-desc-right .desc {
    font-size: 0.92rem;
}
html[lang="en"] .node-desc-left .desc .desc-line,
html[lang="en"] .node-desc-right .desc .desc-line {
    max-width: 228px;
}
.desc .desc-line {
    display: block;
    white-space: nowrap;
}
.desc.desc-oneline {
    white-space: nowrap;
    max-width: none;
}
.node-anchor-dot .dot {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
    margin: 0;
}
.node .year {
    color: var(--main-orange);
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1;
    margin: 0 0 6px;
    transition: font-size 0.45s ease, color 0.45s ease, text-shadow 0.45s ease, opacity 0.45s ease;
}
.node .dot {
    width: 12px;
    height: 12px;
    background: var(--main-orange);
    border: 2px solid #fff;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(232,101,26,0.2);
    transition: transform 0.45s ease, box-shadow 0.45s ease, width 0.45s ease, height 0.45s ease;
}
.node .desc {
    color: var(--mid-gray);
    font-size: 0.92rem;
    line-height: 1.45;
    max-width: 300px;
    margin: 0 auto 8px;
    transition: color 0.45s ease, font-size 0.45s ease, font-weight 0.45s ease, opacity 0.45s ease;
}
.timeline-nodes .node.node-active {
    opacity: 1;
    z-index: 10;
    transform: translate(-50%, 0) scale(1.12);
    transform-origin: center top;
}
.node.node-active .year {
    font-size: 1.85rem;
    opacity: 1;
    text-shadow: 0 2px 10px rgba(232,101,26,0.35);
}
.node.node-active .dot {
    width: 16px;
    height: 16px;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 5px rgba(232,101,26,0.22), 0 4px 16px rgba(232,101,26,0.35);
}
.node.node-active .desc {
    color: var(--dark-gray);
    font-size: 1rem;
    font-weight: 600;
    opacity: 1;
}
.node-past {
    opacity: 0.72;
    transform: translate(-50%, 0) scale(0.92);
    transform-origin: center top;
}
.node-past.node-active {
    opacity: 1;
    transform: translate(-50%, 0) scale(1.12);
}
.node-past .year { opacity: 0.8; }
.node-past.node-active .year { opacity: 1; }
.node .desc.desc-split {
    max-width: 320px;
    line-height: 1.5;
    word-break: keep-all;
}
.node-past .dot {
    box-shadow: 0 0 0 3px rgba(232,101,26,0.1);
    transform: translate(-50%, -50%) scale(0.9);
}
.node-past.node-active .dot { transform: scale(1); }
.node-future {
    opacity: 1;
    z-index: 5;
    transform: translate(-50%, 0) scale(1.05);
    transform-origin: center top;
}
.node-future.node-active {
    transform: translate(-50%, 0) scale(1.18);
    z-index: 10;
}
.node-future .year {
    font-size: 1.85rem;
    color: var(--main-orange);
    text-shadow: 0 2px 8px rgba(232,101,26,0.35), 0 1px 2px rgba(0,0,0,0.1);
    -webkit-text-fill-color: var(--main-orange);
    background: none;
}
.node-future .dot {
    width: 16px;
    height: 16px;
    background: linear-gradient(145deg, #f5924a, var(--main-orange));
    border: 3px solid #fff;
    box-shadow:
        0 0 0 4px rgba(232,101,26,0.2),
        0 4px 14px rgba(232,101,26,0.45),
        0 8px 24px rgba(232,101,26,0.2);
    animation: futurePulse 2.5s ease-in-out infinite;
}
.node-future .desc {
    color: var(--dark-gray);
    font-weight: 500;
}
@keyframes futurePulse {
    0%, 100% {
        box-shadow:
            0 0 0 4px rgba(232,101,26,0.2),
            0 4px 14px rgba(232,101,26,0.45),
            0 8px 24px rgba(232,101,26,0.2);
    }
    50% {
        box-shadow:
            0 0 0 6px rgba(232,101,26,0.15),
            0 6px 20px rgba(232,101,26,0.55),
            0 12px 32px rgba(232,101,26,0.28);
    }
}

/* ── Honor Showcase ── */
.honor-showcase {
    padding: 80px 0;
}
.honor-showcase-featured {
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    padding-bottom: 64px;
}

/* Featured awards — text top, trophies bottom */
.honor-featured-panel {
    display: flex;
    flex-direction: column;
    gap: 48px;
    width: 100%;
}
.honor-featured-text {
    width: 100%;
}
.honor-featured-text .honor-header {
    margin-bottom: 28px;
}
.honor-featured-accent {
    position: relative;
    padding-left: 20px;
    margin-bottom: 24px;
}
.honor-featured-accent::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--main-orange), var(--deep-orange));
}
.honor-featured-lead {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark-gray);
    line-height: 1.75;
    margin: 0;
}
.honor-featured-body {
    font-size: 0.92rem;
    color: var(--mid-gray);
    line-height: 1.85;
    margin: 0;
    text-align: justify;
}
.honor-featured-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-top: 8px;
}
.honor-featured-grid {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 36px;
}
.honor-featured-group {
    background: #fff;
    border: 1px solid rgba(26, 58, 92, 0.08);
    border-radius: 16px;
    padding: 28px 24px 24px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.05);
    border-top: 4px solid var(--main-orange);
}
.honor-featured-group-head {
    text-align: center;
    margin-bottom: 24px;
}
.honor-featured-group-head h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-gray);
    letter-spacing: -0.02em;
}
.honor-featured-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}
.honor-featured-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    padding: 24px 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 12px;
    border: 1px solid rgba(26, 58, 92, 0.06);
    transition: box-shadow var(--transition), transform var(--transition);
}
.honor-featured-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.honor-featured-item img {
    width: 100%;
    max-height: 240px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 28px rgba(15, 23, 42, 0.08));
}
.honor-featured-visual img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 48px rgba(15,23,42,0.1));
}
.honor-featured-zoomable {
    cursor: zoom-in;
    transition: transform var(--transition), filter var(--transition);
}
.honor-featured-zoomable:hover {
    transform: scale(1.02);
}

/* Honor image lightbox */
.honor-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
}
.honor-lightbox[hidden] {
    display: none;
}
.honor-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15,23,42,0.88);
    backdrop-filter: blur(6px);
    cursor: zoom-out;
}
.honor-lightbox-dialog {
    position: relative;
    z-index: 1;
    max-width: min(1080px, 94vw);
    max-height: 90vh;
    animation: honorLightboxIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.honor-lightbox-dialog img {
    display: block;
    width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.honor-lightbox-close {
    position: absolute;
    top: -48px;
    right: 0;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}
.honor-lightbox-close:hover {
    background: rgba(255,255,255,0.28);
    transform: scale(1.05);
}
@keyframes honorLightboxIn {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
}
.honor-showcase-other {
    background: var(--white);
    padding-bottom: 100px;
}
.honor-showcase-cert {
    background: linear-gradient(180deg, #f8fafc 0%, #fff 42%, #fff9f5 100%);
    padding-bottom: 100px;
}
.honor-cert-text {
    width: 100%;
    margin-bottom: 48px;
}
.honor-cert-text .honor-header {
    margin-bottom: 28px;
}
.honor-cert-text .honor-header h2 {
    max-width: none;
}
.honor-cert-text .honor-featured-body {
    margin-bottom: 0;
}
.honor-marquee-wrap {
    margin-top: 48px;
    padding: 8px 0 16px;
}
.honor-marquee {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.honor-marquee-track {
    display: flex;
    align-items: center;
    gap: 36px;
    width: max-content;
    animation: honorMarqueeScroll 50s linear infinite;
}
.honor-marquee-img {
    height: 200px;
    width: auto;
    max-width: none;
    flex-shrink: 0;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.08));
    transition: transform 0.3s ease;
}
.honor-marquee-img:hover {
    transform: scale(1.04);
}
@keyframes honorMarqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.honor-cert-showcase {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.honor-cert-block {
    background: #fff;
    border: 1px solid rgba(26, 58, 92, 0.08);
    border-radius: 16px;
    padding: 32px 28px 28px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}
.honor-cert-block-intl,
.honor-cert-block-domestic {
    border-top: 4px solid var(--main-orange);
}
.honor-cert-block-head {
    margin-bottom: 28px;
    text-align: center;
}
.honor-cert-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--mid-gray);
    margin-bottom: 10px;
}
.honor-cert-block-head h3 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--accent-blue);
    letter-spacing: -0.02em;
}
.honor-cert-block-domestic .honor-cert-block-head h3 {
    color: var(--dark-gray);
}
.honor-cert-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.honor-cert-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.honor-cert-card-media {
    background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(26, 58, 92, 0.08);
    border-radius: 12px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    transition: box-shadow var(--transition), transform var(--transition);
}
.honor-cert-block-intl .honor-cert-card-media {
    background: linear-gradient(165deg, #ffffff 0%, #f3f7fb 100%);
    border-color: rgba(26, 58, 92, 0.12);
}
.honor-cert-block-domestic .honor-cert-card-media {
    background: linear-gradient(165deg, #ffffff 0%, #fff8f3 100%);
    border-color: rgba(232, 101, 26, 0.12);
}
.honor-cert-card:hover .honor-cert-card-media {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.honor-cert-card-portrait .honor-cert-card-media img {
    width: auto;
    max-width: 100%;
    max-height: 320px;
    aspect-ratio: 3 / 4;
    object-fit: contain;
}
.honor-cert-card-landscape .honor-cert-card-media {
    min-height: 210px;
}
.honor-cert-card-landscape .honor-cert-card-media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
}
.honor-cert-card-caption {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.honor-cert-card-caption strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-blue);
    letter-spacing: 0.01em;
}
.honor-cert-block-domestic .honor-cert-card-caption strong {
    color: var(--main-orange);
}
.honor-cert-card-caption span {
    font-size: 0.88rem;
    color: var(--mid-gray);
}
.honor-cert-zoomable {
    cursor: zoom-in;
    transition: transform var(--transition), box-shadow var(--transition);
}
.honor-cert-zoomable:hover {
    transform: scale(1.02);
}
.honor-header {
    margin-bottom: 40px;
}
.honor-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--main-orange);
    margin-bottom: 12px;
}
.honor-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-gray);
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}
.honor-header p {
    color: var(--mid-gray);
    font-size: 0.95rem;
    margin: 0;
    max-width: 520px;
}
.honor-stage {
    position: relative;
    padding: 0;
    overflow: visible;
}
.honor-carousel-wrap {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}
.honor-carousel-zone {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 8%;
    min-width: 48px;
    z-index: 5;
    border: none;
    padding: 0;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.honor-carousel-zone.prev { left: 0; }
.honor-carousel-zone.next { right: 0; }
.honor-carousel-zone svg {
    width: 44px;
    height: 44px;
    stroke: var(--mid-gray);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.45;
    transition: all var(--transition);
}
.honor-carousel-zone:hover svg {
    opacity: 1;
    stroke: var(--main-orange);
    transform: scale(1.12);
}
.honor-carousel-zone:hover {
    background: linear-gradient(to right, rgba(232,101,26,0.05), transparent);
}
.honor-carousel-zone.next:hover {
    background: linear-gradient(to left, rgba(232,101,26,0.05), transparent);
}
.honor-carousel {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
    height: 440px;
    overflow: hidden;
    padding: 0 7%;
}
.honor-slide {
    flex-shrink: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.honor-slide.side {
    width: 150px;
    height: 280px;
    opacity: 0.9;
    align-items: center;
}
.honor-slide.center {
    width: 280px;
    height: 320px;
    opacity: 1;
    z-index: 3;
    align-items: center;
}
.honor-slide img {
    max-width: 100%;
    max-height: 260px;
    object-fit: contain;
    transition: filter var(--transition);
}
.honor-slide-zoomable {
    cursor: zoom-in;
}
.honor-slide-zoomable:hover {
    filter: drop-shadow(0 8px 20px rgba(15,23,42,0.15));
}
.honor-slide.side img { max-height: 230px; }
.honor-slide.center img {
    max-height: 300px;
}

/* ── Contact ── */
.contact-page {
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}
.contact-card {
    text-align: left;
    border: 1px solid rgba(26, 58, 92, 0.08);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
    padding: 40px 36px;
    border-radius: 16px;
}
.contact-card-info,
.contact-card-coop {
    border-top: 4px solid var(--main-orange);
}
.contact-panels-row > [class*="col-"] {
    display: flex;
}
.contact-panels-row .contact-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}
.contact-panel-title {
    margin: 0 0 40px;
    text-align: left;
}
.contact-panel-title h2::after {
    left: 0;
    transform: none;
}
.contact-panel-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.contact-coop-desc {
    margin-bottom: 28px;
    line-height: 1.75;
    font-size: 0.92rem;
}
.contact-panel-action {
    margin-top: auto;
    padding-top: 28px;
}
.contact-item { display: flex; align-items: flex-start; margin-bottom: 28px; }
.contact-item:last-child { margin-bottom: 0; }
.contact-icon-wrap {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(232,101,26,0.08), rgba(196,61,90,0.06));
    border: 1px solid rgba(232,101,26,0.12);
}
.contact-icon-wrap svg {
    width: 22px; height: 22px;
    stroke: var(--main-orange);
    fill: none;
    stroke-width: 1.8;
}
.contact-text h4 { font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
.contact-text p { color: var(--mid-gray); margin: 0; font-size: 0.92rem; }
.coop-item {
    display: flex;
    align-items: center;
    padding: 16px 18px;
    margin-bottom: 12px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(26, 58, 92, 0.08);
    border-left: 4px solid var(--main-orange);
    transition: all var(--transition);
    font-size: 0.94rem;
    font-weight: 500;
    color: var(--dark-gray);
}
.coop-item:hover {
    background: #fffaf6;
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(232, 101, 26, 0.08);
}
.coop-item svg {
    width: 18px; height: 18px;
    stroke: var(--main-orange);
    fill: none;
    stroke-width: 1.8;
    margin-right: 12px;
    flex-shrink: 0;
}
.btn-primary-gradient {
    background: linear-gradient(135deg, var(--main-orange), var(--deep-orange));
    color: #fff;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition);
    width: 100%;
}
.btn-primary-gradient:hover {
    color: #fff;
    box-shadow: 0 6px 20px rgba(232,101,26,0.35);
    transform: translateY(-2px);
}

/* ── Activity / Culture ── */
.activity-img {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}
.activity-img img {
    width: 100%;
    transition: transform 0.5s ease;
}
.activity-img:hover img { transform: scale(1.05); }
.video-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    background: #000;
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    box-shadow: var(--shadow-md);
}
.video-wrap video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: contain;
}
.section-title.culture-video-title h2 {
    font-size: 2.25rem;
}
.culture-video-section {
    position: relative;
    width: 100%;
    padding-bottom: 64px;
}
.culture-video-section::before,
.culture-video-section::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 72px;
    height: 72px;
    transform: translateY(-50%);
    opacity: 0.35;
    pointer-events: none;
}
.culture-video-section::before {
    left: 0;
    border-left: 3px solid var(--main-orange);
    border-top: 3px solid var(--main-orange);
}
.culture-video-section::after {
    right: 0;
    border-right: 3px solid var(--main-orange);
    border-bottom: 3px solid var(--main-orange);
}
.culture-video-row .video-wrap {
    padding-top: 52%;
    box-shadow: var(--shadow-sm);
}
.culture-video-row .video-wrap video {
    object-fit: cover;
}

/* ── Footer ── */
footer {
    background: var(--accent-blue);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 30px;
}
footer h5 {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}
footer a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    line-height: 2.2;
    font-size: 0.9rem;
    transition: color var(--transition);
}
footer a:hover { color: var(--main-orange); }
.copyright {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .logo-img { height: 56px; }
    .section-title h2 { font-size: 1.5rem; }
    .section-title.culture-video-title h2 { font-size: 1.65rem; }
    .page-banner { padding: 40px 0; min-height: 180px; }
    .page-banner-bg { object-position: 73% 38%; }
    .page-banner h1 { font-size: 2rem; letter-spacing: 0.02em; }
    .page-banner p { font-size: 0.92rem; margin-top: 14px; }
    html[lang="en"] .page-banner p {
        white-space: normal;
        max-width: 680px;
        font-size: 0.88rem;
        line-height: 1.65;
    }
    .top-carousel .carousel-item img { height: 280px; }
    .honor-showcase { padding: 56px 0; }
    .honor-header h2 { font-size: 1.5rem; }
    .honor-featured-panel { gap: 32px; }
    .honor-featured-text .honor-header { margin-bottom: 20px; }
    .honor-featured-lead { font-size: 0.98rem; }
    .honor-featured-body { font-size: 0.88rem; text-align: left; }
    .honor-cert-text { margin-bottom: 32px; }
    .honor-cert-text .honor-header { margin-bottom: 20px; }
    .honor-featured-visual { min-height: auto; }
    .honor-featured-group { padding: 20px 16px 16px; }
    .honor-featured-row { grid-template-columns: 1fr; gap: 16px; }
    .honor-featured-item { min-height: 200px; }
    .honor-featured-item img { max-height: 200px; }
    .contact-card { padding: 28px 22px; }
    .honor-featured-visual img { max-width: 100%; }
    .honor-marquee-img { height: 140px; }
    .honor-cert-row { grid-template-columns: 1fr; gap: 20px; }
    .honor-cert-block { padding: 24px 18px 20px; }
    .honor-cert-card-portrait .honor-cert-card-media img { max-height: 280px; }
    .culture-video-section::before,
    .culture-video-section::after { display: none; }
    .honor-lightbox { padding: 16px; }
    .honor-lightbox-close {
        top: 8px;
        right: 8px;
        background: rgba(15,23,42,0.6);
    }
    .honor-carousel-wrap { padding: 0; }
    .honor-carousel-zone { width: 12%; min-width: 40px; }
    .honor-carousel-zone svg { width: 32px; height: 32px; }
    .honor-carousel { height: 300px; gap: 8px; padding: 0 10%; }
    .honor-slide.side {
        width: 88px;
        height: 190px;
    }
    .honor-slide.center {
        width: 168px;
        height: 210px;
    }
    .honor-slide.center img { max-height: 190px; }
    .honor-slide.side img { max-height: 155px; }
    .about-video-play { width: 56px; height: 56px; }
    .about-video-play svg { width: 22px; height: 22px; }
    .about-section-head h2 { font-size: 1.5rem; }
    .about-text p { font-size: 0.94rem; line-height: 1.85; }
    .about-visual { margin-top: 36px; }
    .about-visual-logo { top: 16px; left: 16px; }
    .about-visual-logo img { height: 32px; }
    .about-heading { font-size: 1.4rem; margin-bottom: 24px; }
    .runway-timeline { height: auto; overflow: visible; }
    .runway-timeline svg { display: none; }
    .runway-plane-layer { display: none; }
    .runway-fade { display: none; }
    .runway-glow { display: none; }
    .timeline-nodes {
        position: static;
        height: auto;
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
        padding: 20px 10px;
    }
    .timeline-nodes .node {
        position: relative;
        left: auto !important;
        top: auto !important;
        transform: none;
        width: 45%;
    }
    .node-row-2,
    .node-row-3,
    .node-row-4 {
        width: 45%;
    }
    .desc .desc-line,
    .desc.desc-oneline {
        white-space: normal;
    }
    .lang-switch { margin-left: 0; margin-top: 12px; }
}
