/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&family=Inter:wght@300;400;600;700;800&display=swap');

/* --- CSS Variables --- */
:root {
    /* Brand Colors */
    --primary-navy: #151515;
    --brand-navy: #041E42;
    --primary-blue: #0066FF;
    --brand-black: #111111;

    /* Semantic Colors */
    --secondary-teal: #00BFA5;
    --primary-emerald: #34d399;

    /* Gray Scale */
    --gray-50: #F7F8F9;
    --gray-100: #F0F4F8;
    --gray-200: #DEE2E6;
    --gray-400: #ADB5BD;
    --gray-600: #6C757D;
    --gray-700: #495057;
    --gray-800: #343A40;

    /* Text */
    --text-dark: var(--brand-black);
    --text-light: var(--gray-600);
    --text-white: #FFFFFF;

    /* Layout */
    --header-height: 80px;
    --container-width: 1240px;
}

/* --- Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    max-width: 100%;
    scroll-padding-top: var(--header-height);
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    color: var(--text-dark);
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100%;
    padding-top: var(--header-height);
    letter-spacing: -0.02em;
    word-break: keep-all;
    overflow-wrap: break-word;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* --- Layout Utilities --- */
.container {
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

section {
    max-width: 100%;
    overflow-x: hidden;
    padding: 8rem 0;
}

/* Background Helpers */
.bg-navy {
    background-color: var(--brand-navy);
    color: white;
}

.bg-navy .main-title,
.bg-navy .description {
    color: white !important;
}

.bg-light {
    background-color: var(--gray-50);
}

.bg-white {
    background-color: #fff;
}

.main-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1.2rem;
    color: var(--brand-black);
    letter-spacing: -0.01em;
    word-break: keep-all;
}

.description {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--gray-600);
    line-height: 1.7;
    word-break: keep-all;
}

.section-header {
    margin-bottom: 4rem;
}

/* --- Common Grid Patterns --- */
.grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* --- Flex Grid Patterns (Center Alignment) --- */
.flex-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

/* PC: 3 Columns */
.flex-grid>.card-base {
    width: calc(33.333% - 1.34rem);
    flex-grow: 0;
}

/* --- Common Card --- */
.card-base {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid var(--gray-200);
}

.card-base:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gray-300);
}

/* 안내/소개용 대형 공통 UI 카드 컨테이너 */
.info-card-container {
    background: #ffffff;
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.03);
    padding: 5rem 6rem;
    margin: 0 auto;
    max-width: 1200px;
    width: 90%;
}

/* --- Common Buttons --- */
.btn-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--primary-blue);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.6);
    background: #0052CC;
}

.btn-secondary {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    color: white;
}

.hero-actions {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Common Form Styles --- */
.form-group-common {
    margin-bottom: 1.5rem;
}

.form-group-common label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--brand-black);
    font-size: 0.9rem;
}

.form-group-common input,
.form-group-common textarea,
.form-group-common select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group-common input:focus,
.form-group-common textarea:focus,
.form-group-common select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-group-common textarea {
    resize: vertical;
    min-height: 120px;
}

/* --- Header --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Logo */
.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-blue);
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.logo img {
    height: 40px;
    width: auto;
}

/* Main Navigation */
.main-links {
    display: flex;
    gap: 3.5rem;
}

.main-links>li {
    position: relative;
    padding: 1rem 0;
}

.main-links>li>a {
    font-weight: 500;
    font-size: 1rem;
    color: var(--gray-700);
    position: relative;
    padding: 0.5rem 0;
}

.main-links>li>a:hover,
.main-links>li>a.active {
    color: var(--primary-blue);
}

/* Underline indicator */
.main-links>li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s;
}

.main-links>li:hover>a::after,
.main-links>li>a.active::after {
    width: 100%;
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    min-width: 180px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    color: var(--gray-600);
    transition: all 0.2s;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    color: var(--primary-blue);
    background: var(--gray-50);
}

/* Nav Utilities (Language, Search) */
.nav-utilities {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-wrapper {
    position: relative;
}

.lang-btn {
    font-weight: 600;
    color: var(--gray-600);
    padding: 0.5rem 0;
    transition: color 0.2s;
    display: flex;
    align-items: center;
}

.lang-btn:hover {
    color: var(--primary-blue);
}

/* Mobile Hamburger (hidden on desktop) */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 0.25rem;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    display: block;
    transition: all 0.3s;
}

/* --- Language Dropdown (Header & Footer 공통) --- */
.lang-dropdown {
    position: absolute;
    right: 0;
    min-width: 120px;
    padding: 0.5rem 0;
    list-style: none;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    display: none;
    animation: fadeIn 0.2s ease;
}

/* Hover bridge to prevent gap flicker */
.lang-dropdown::before {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 30px;
    background: transparent;
}

/* Light (Header) */
.lang-dropdown.light {
    top: 120%;
    background: white;
    border: 1px solid var(--gray-200);
}

.lang-dropdown.light::before {
    bottom: 100%;
}

.lang-dropdown.light li a {
    color: var(--text-dark);
}

.lang-dropdown.light li a:hover {
    background: var(--gray-50);
    color: var(--primary-blue);
}

/* Dark (Footer) */
.lang-dropdown.dark {
    bottom: 100%;
    margin-bottom: 5px;
    background: #222;
    border: 1px solid #444;
    border-radius: 4px;
}

.lang-dropdown.dark::before {
    top: 100%;
}

.lang-dropdown.dark li a {
    color: #aaa;
}

.lang-dropdown.dark li a:hover {
    background: #333;
    color: white;
}

/* Common link style */
.lang-dropdown li a {
    display: block;
    padding: 0.8rem 1.2rem;
    text-decoration: none !important;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
    white-space: nowrap;
}

.lang-dropdown li a.selected-lang {
    font-weight: bold;
}

.lang-dropdown.dark li a.selected-lang {
    color: white;
}

/* Hover open (pointer device) */
@media (pointer: fine) {

    .lang-wrapper:hover .lang-dropdown,
    .lang-selector:hover .lang-dropdown {
        display: block;
    }
}

/* JS toggle class */
.lang-dropdown.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Footer --- */
footer {
    background: #151515;
    color: #e0e0e0;
    font-size: 0.85rem;
    padding: 0;
}

/* Sitemap */
.footer-sitemap-area {
    padding: 3rem 0;
    border-bottom: 1px solid #2a2a2a;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    align-items: start;
    margin-bottom: 0;
}

.link-col h4 {
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.link-col a {
    display: block;
    color: #999;
    margin-bottom: 0.6rem;
    transition: color 0.2s;
    font-size: 0.85rem;
}

.link-col a:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom-area {
    padding: 2rem 0;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.bottom-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.legal-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.legal-line a {
    color: #b0b0b0;
    margin-right: 10px;
    font-size: 0.8rem;
}

.legal-line a:hover {
    color: white;
}

.legal-line .bold-text {
    font-weight: 700;
    color: #d1d5db;
}

.legal-line .divider {
    color: #444;
    margin-right: 10px;
    font-size: 0.7rem;
}

.wa-mark {
    margin-left: 10px;
    cursor: default;
    opacity: 0.7;
}

.wa-badge {
    border: 1px solid #666;
    padding: 0 4px;
    font-size: 10px;
    border-radius: 2px;
    vertical-align: middle;
    display: inline-block;
    color: #ccc;
}

.address-line p {
    color: #666;
    margin-bottom: 0.3rem;
    font-size: 0.8rem;
    line-height: 1.5;
}

.address-line .copyright {
    color: #555;
    margin-top: 0.5rem;
    font-family: 'Inter', sans-serif;
}

/* Footer Language Selector */
.bottom-right {
    display: flex;
    align-items: center;
}

.lang-selector {
    position: relative;
}

.lang-btn-footer {
    background: transparent;
    border: 1px solid #444;
    color: #ccc;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
    min-width: 140px;
    justify-content: space-between;
    cursor: pointer;
}

.lang-btn-footer:hover {
    border-color: #888;
    color: white;
    background: rgba(255, 255, 255, 0.05);
}


/* --- Vision Section (Common for About & potentially others) --- */
.vision-header {
    text-align: center;
    margin-bottom: clamp(3rem, 8vw, 6rem);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.vision-header h2 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    font-weight: 900;
    color: var(--brand-black);
    line-height: 1.3;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.vision-slogan {
    font-size: clamp(1.4rem, 4.5vw, 2.22rem);
    font-weight: 800;
    color: var(--brand-navy);
    line-height: 1.4;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    word-break: keep-all;
}

.vision-desc {
    font-size: clamp(0.95rem, 2.5vw, 1.15rem);
    color: var(--gray-600);
    line-height: 1.8;
    word-break: keep-all;
    max-width: 680px;
    margin: 0 auto;
}

.vision-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 900px) {
    .vision-values {
        grid-template-columns: 1fr;
    }
}

/* --- CTA Section (공통 - 모든 페이지 하단) --- */
.section-cta {
    background: var(--gray-50);
    padding: 5rem 0;
    text-align: center;
}

.section-cta .cta-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--brand-black);
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.section-cta .cta-desc {
    font-size: 1.05rem;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* btn-cta는 btn-primary를 그대로 재사용 — 별도 스타일 불필요 */

/* --- Hero Section --- */

.section-hero {
    position: relative;
    height: 100vh;
    min-height: 100dvh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
    padding: 0 0 5rem 0;
    /* 하단 패딩 추가하여 콘텐츠를 중심보다 위로 살짝 올림 */
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.65) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: -0.02em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}


.hero-desc {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3.5rem;
    /* 기존 5rem에서 줄여 버튼을 더 위로 밀착시킴 */
    line-height: 1.8;
    max-width: 560px;
    font-weight: 400;
    margin-left: auto;
    margin-right: auto;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 1.5rem;
    /* 기존 2rem에서 약간 더 내려서 여유 공간 확보 */
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    /* 확실히 최상위에 위치하도록 z-index 상향 */
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.scroll-indicator .mouse {
    width: 20px;
    height: 32px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator .mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    margin-left: -2px;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: scrollMouse 2s infinite;
}

@keyframes scrollMouse {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(10px);
        opacity: 0;
    }
}

/* --- Responsive: ~1024px (Tablet/Mobile) --- */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    /* Hide desktop nav links */
    .main-links {
        display: none;
    }

    /* Show icons + hamburger */
    .nav-utilities {
        display: flex;
        margin-left: auto;
        margin-right: 1.5rem;
    }

    .mobile-menu-btn {
        display: flex;
    }

    /* Mobile Menu Overlay */
    .nav-menu.active {
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: white;
        padding: 1rem 0;
        z-index: 1000;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        display: block !important;
    }

    .nav-menu.active .main-links {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .nav-menu.active .main-links li {
        width: 100%;
    }

    .nav-menu.active .main-links li a {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--gray-100);
        color: var(--text-dark);
        font-size: 1.1rem;
    }

    /* Hamburger → X animation */
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Footer: 2 columns */
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem;
    }

    .bottom-flex {
        flex-direction: column;
        gap: 2rem;
    }

    .bottom-right {
        width: 100%;
        justify-content: flex-start;
    }

    /* Hero */
    .hero-title {
        font-size: clamp(2.2rem, 10vw, 3.2rem);
        margin-bottom: 2rem;
    }

    .hero-desc {
        font-size: clamp(1.0rem, 4vw, 1.2rem);
        line-height: 1.6;
        margin-bottom: 3rem;
    }
}

/* --- Responsive: ~768px (Tablet) --- */
@media (max-width: 768px) {
    section {
        padding: 4rem 0 !important;
    }

    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    h1,
    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    h2,
    .main-title {
        font-size: clamp(1.5rem, 6vw, 2.0rem);
        margin-bottom: 1.5rem;
    }

    h3 {
        font-size: clamp(1.1rem, 5vw, 1.3rem);
    }

    p,
    .description {
        font-size: 1rem;
        line-height: 1.6;
    }

    .grid-3col,
    .grid-4col {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .flex-grid>.card-base {
        width: calc(50% - 1rem);
    }

    .card-base {
        padding: 2rem 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-actions a {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .form-group-common input,
    .form-group-common textarea,
    .form-group-common select {
        font-size: 0.95rem;
        padding: 0.875rem 1rem;
    }
}

/* --- Responsive: ~576px (Small Mobile) --- */
@media (max-width: 576px) {
    section {
        padding: 4rem 0 !important;
    }

    .hero-title {
        font-size: 1.9rem !important;
        /* KO 기준 기본 */
        line-height: 1.25;
        margin-bottom: 1.5rem !important;
    }

    .hero-desc {
        font-size: 0.95rem !important;
        line-height: 1.6;
        margin-bottom: 2.5rem !important;
        padding: 0 0.5rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 320px;
        padding: 1.1rem 1.5rem;
        font-size: 1rem;
    }

    .info-card-container {
        padding: 3.5rem 1.5rem;
    }

    .card-base {
        padding: 2rem 1.5rem;
    }
}

/* --- Responsive: ~480px (Mobile) --- */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem !important;
    }
}

/* --- Responsive: ~375px (Very Small) --- */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.6rem !important;
    }
}


/* ==========================================================================
   Bilingual Visual Parity (English Optimization)
   한국어 원본의 디자인 밸런스를 영문에서도 유지하기 위한 전용 스타일
   ========================================================================== */

body.lang-en {
    word-break: normal;
    overflow-wrap: break-word;
}

/* Hero Section Parity */
body.lang-en .hero-title {
    font-size: 3.8rem;
    letter-spacing: -0.035em;
    line-height: 1.15;
    max-width: 880px;
}

body.lang-en .hero-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 720px;
    opacity: 0.9;
}

/* EN Mobile Optimization Overrides */
@media (max-width: 576px) {
    body.lang-en .hero-title {
        font-size: 1.65rem !important;
        /* 영문 긴 제목을 위한 과감한 축소 */
        line-height: 1.2;
        letter-spacing: -0.01em;
        /* 모바일 가독성 확보 */
    }

    body.lang-en .hero-desc {
        font-size: 0.9rem !important;
        line-height: 1.55;
        max-width: 100%;
    }
}

/* Common UI Parity */
body.lang-en .main-title {
    font-size: 2.4rem;
    /* 섹션 타이틀 크기 최적화 */
    letter-spacing: -0.02em;
}

body.lang-en .description {
    font-size: 1.1rem;
    line-height: 1.65;
}

body.lang-en .btn-primary,
body.lang-en .btn-secondary {
    padding-left: 2.2rem;
    /* 길어지는 영문 버튼의 비정상적 가로 비대 방지 */
    padding-right: 2.2rem;
    letter-spacing: -0.01em;
}

body.lang-en .highlight {
    font-weight: 800;
    text-shadow: 0 0 15px rgba(0, 102, 255, 0.15);
}

/* Platform Architecture Parity */
body.lang-en .arch-card p {
    font-size: 0.95rem;
    /* 카드 내 긴 설명문 넘침 방지 */
    line-height: 1.5;
}