/* ================= GLOBAL RESET ================= */

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

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
}

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

ul {
    list-style: none;
}

/* ================= CONTAINER ================= */

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ================= HEADER ================= */

.main-header {
    background: #1f4a7c;
    padding: 15px 0;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===== CLEAN THIN WHITE BORDER (NO BOX EFFECT) ===== */

.logo img {
    width: 200px;
    height: auto;
    display: block;
    border: 1px solid #ffffff;
    border-radius: 3px;
}

/* ================= NAVIGATION ================= */

.main-nav ul {
    display: flex;
    gap: 25px;
}

.main-nav a {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s ease;
}

.main-nav a:hover {
    opacity: 0.7;
}

.main-nav a.active {
    border-bottom: 2px solid #f28c28;
    padding-bottom: 3px;
}

/* ================= HERO ================= */

.hero {
    background: linear-gradient(135deg, #162f52, #234f85);
    color: white;
    padding: 80px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero .container {
    width: 100%;
}

.hero h1 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 0 3px 10px rgba(0,0,0,0.75);
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    text-shadow: 0 3px 10px rgba(0,0,0,0.75);
}

/* ================= BUTTONS ================= */

.btn-primary {
    background: #f28c28;
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    font-size: 14px;
    margin-right: 10px;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: #d97706;
}

.btn-secondary {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    font-size: 14px;
    transition: 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

.btn-outline {
    border: 1px solid #1f4a7c;
    padding: 10px 20px;
    border-radius: 4px;
    color: #1f4a7c;
    display: inline-block;
    margin-top: 15px;
}

.btn-outline:hover {
    background: #1f4a7c;
    color: white;
}

/* ================= SECTIONS ================= */

.section {
    padding: 80px 0;
}

.bg-light {
    background: #f4f6f9;
}

.section h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #1f4a7c;
}

.section p {
    margin-bottom: 20px;
    font-size: 15px;
}

/* Intro paragraph — first substantive paragraph below hero */
.intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    max-width: 860px;
    margin-bottom: 14px;
}

.intro-text-kr {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    max-width: 860px;
    margin-bottom: 0;
}

/* ================= GRID ================= */

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.card {
    background: white;
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.card h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #1f4a7c;
}

.process-step {
    background: #1f4a7c;
    color: white;
    padding: 25px;
    text-align: center;
    border-radius: 6px;
}

.process-step h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* ================= LIST ================= */

.styled-list li {
    margin-bottom: 10px;
    font-size: 15px;
}

/* ================= FOOTER ================= */

.main-footer {
    background: #1f4a7c;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 13px;
}

/* ================= HAMBURGER MENU ================= */

.menu-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(255,255,255,0.5);
    color: white;
    font-size: 22px;
    padding: 5px 12px;
    cursor: pointer;
    border-radius: 4px;
}

/* ================= ACCORDION (FAQ) ================= */

.accordion {
    background: white;
    border: 1px solid #e0e6f0;
    border-radius: 6px;
    padding: 16px 20px;
    width: 100%;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: #1f4a7c;
    cursor: pointer;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease;
}

.accordion::after {
    content: '+';
    font-size: 20px;
    font-weight: 400;
    color: #f28c28;
    flex-shrink: 0;
}

.accordion.active {
    background: #f4f6f9;
}

.accordion.active::after {
    content: '−';
}

.accordion:hover {
    background: #f4f6f9;
}

.panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fafbfd;
    border-left: 3px solid #f28c28;
    border-radius: 0 0 6px 6px;
    margin-bottom: 12px;
}

.panel p {
    padding: 14px 18px;
    font-size: 14px;
    margin: 0;
    color: #444;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .header-flex {
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

    .main-nav {
        display: none;
        width: 100%;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 10px 0;
    }

    .hero h1 {
        font-size: 30px;
    }

    .grid-4,
    .grid-5 {
        grid-template-columns: 1fr;
    }
}
/* ================= ARTICLE PAGES ================= */

.article-body {
    background: #fff;
}

.article-container {
    max-width: 860px;
}

.article-section {
    padding: 50px 0;
    border-bottom: 1px solid #eef0f4;
}

.article-section.bg-light {
    background: #f4f6f9;
    padding: 50px 40px;
    border-radius: 8px;
    margin: 20px 0;
}

.article-section h2 {
    font-size: 22px;
    color: #1f4a7c;
    margin-bottom: 18px;
    line-height: 1.4;
}

.article-section h2 .kr {
    font-size: 0.75em;
    color: #555;
    font-weight: 400;
    display: block;
    margin-top: 4px;
}

.article-list {
    padding-left: 20px;
    margin: 15px 0;
}

.article-list li {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
}

.kr-block {
    margin-top: 16px;
    padding: 14px 18px;
    background: #f0f4fa;
    border-left: 3px solid #1f4a7c;
    border-radius: 0 4px 4px 0;
    font-size: 14px;
    color: #444;
    line-height: 1.7;
}

/* ================= ARTICLE INDEX ================= */

.article-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 30px;
}

.article-card {
    background: #fff;
    border: 1px solid #e0e6f0;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: box-shadow 0.2s ease;
}

.article-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.article-card-meta {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.article-tag {
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-lang {
    font-size: 12px;
    color: #666;
}

.article-card h3 {
    font-size: 16px;
    color: #1f4a7c;
    line-height: 1.4;
    margin: 0;
}

.article-card h3 a {
    color: inherit;
    text-decoration: none;
}

.article-card h3 a:hover {
    text-decoration: underline;
}

.article-desc {
    font-size: 13.5px;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

.article-desc-kr {
    font-size: 12.5px;
    color: #777;
    margin: 0;
}

.article-read-more {
    font-size: 13px;
    color: #f28c28;
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
}

.article-filter-row {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
    font-size: 13px;
    color: #555;
}

.filter-label {
    font-weight: 500;
}

/* ================= CTA SECTION ================= */

.cta-section {
    background: linear-gradient(135deg, #1f4a7c, #2f5f99);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
}

.cta-section p {
    color: rgba(255,255,255,0.88);
}

/* ================= TABLET FIXES (1024px) ================= */

@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-5 { grid-template-columns: repeat(2, 1fr); }
    .article-grid { grid-template-columns: repeat(2, 1fr); }

    .menu-toggle { display: block; }

    .header-flex {
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

    .main-nav {
        display: none;
        width: 100%;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 10px 0;
    }
}

/* ================= MOBILE FIXES (768px) ================= */

@media (max-width: 768px) {
    .hero h1 { font-size: 26px; }
    .hero p { font-size: 15px; }
    .grid-4, .grid-5 { grid-template-columns: 1fr; }
    .article-grid { grid-template-columns: 1fr; }
    .article-section.bg-light { padding: 30px 20px; }

    /* Safari flexbox fix */
    .header-flex { -webkit-flex-wrap: wrap; flex-wrap: wrap; }
    .main-nav ul { -webkit-flex-direction: column; flex-direction: column; }
    .btn-primary, .btn-secondary {
        display: block;
        width: 100%;
        text-align: center;
        margin: 8px 0;
        box-sizing: border-box;
    }
}

/* ================= SMALL PHONE (375px) ================= */

@media (max-width: 400px) {
    .hero h1 { font-size: 22px; }
    .container { width: 95%; }
    .section { padding: 50px 0; }
}

/* ================= INDUSTRY BANNER ================= */

.industry-banner {
    background: #162f52;
    color: rgba(255,255,255,0.92);
    text-align: center;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ================= HERO ENHANCEMENTS ================= */

.hero-kr {
    display: block;
    font-size: 0.62em;
    font-weight: 400;
    opacity: 0.88;
    margin-top: 8px;
}

.hero-sub-kr {
    display: block;
    font-size: 0.92em;
    opacity: 0.85;
    margin-top: 6px;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
}

.hero-response {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 14px;
}

/* ================= CREDIBILITY STRIP ================= */

.credibility-strip {
    background: #162f52;
    padding: 30px 0;
}

.credibility-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.cred-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.cred-number {
    font-size: 36px;
    font-weight: 700;
    color: #f28c28;
    line-height: 1;
}

.cred-label {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    text-align: center;
    line-height: 1.4;
}

/* ================= SERVICE BLOCKS ================= */

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-block {
    background: #f4f6f9;
    border-radius: 8px;
    padding: 30px;
    border-left: 4px solid #1f4a7c;
}

.service-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.service-block h3 {
    font-size: 17px;
    color: #1f4a7c;
    margin-bottom: 10px;
}

.kr-note {
    font-size: 13px;
    color: #666;
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid #dde2ec;
}

/* ================= ROLES GRID ================= */

.roles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 25px;
}

.roles-heading {
    font-size: 15px;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 4px;
    margin-bottom: 14px;
    color: white;
}

.e71 { background: #1f4a7c; }
.e73 { background: #2e7d32; }

.roles-list {
    list-style: none;
    padding: 0;
}

.roles-list li {
    padding: 8px 0;
    border-bottom: 1px solid #e8ecf2;
    font-size: 14px;
    color: #333;
}

.roles-list li::before {
    content: '→ ';
    color: #f28c28;
    font-weight: 600;
}

/* ================= INDUSTRY GRID ================= */

.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.industry-item {
    background: white;
    border: 1px solid #e0e6f0;
    border-radius: 6px;
    padding: 18px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #1f4a7c;
}

.industry-item span {
    display: block;
    font-size: 12px;
    color: #777;
    font-weight: 400;
    margin-top: 4px;
}

/* Sector card grid (Industries page) */
.sector-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 28px;
}

.sector-card {
    background: white;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.sector-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.sector-card-body {
    padding: 20px 22px;
}

.sector-card-body h3 {
    font-size: 16px;
    color: #1f4a7c;
    margin-bottom: 4px;
}

.sector-card-body p {
    font-size: 13.5px;
    color: #555;
    margin-bottom: 0;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .sector-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .sector-grid { grid-template-columns: 1fr; }
}

/* Service icon SVG sizing */
.service-icon svg {
    display: block;
    color: #1f4a7c;
}

/* ================= INTERNATIONAL GRID ================= */

.intl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.intl-block {
    background: white;
    border-radius: 6px;
    padding: 20px;
    border-top: 3px solid #f28c28;
}

.intl-block h3 {
    font-size: 15px;
    color: #1f4a7c;
    margin-bottom: 8px;
}

.intl-block p {
    font-size: 13px;
    color: #555;
}

/* ================= ETHICS GRID ================= */

.ethics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.ethics-item {
    background: #f4f6f9;
    border-radius: 6px;
    padding: 16px 20px;
    font-size: 14px;
    color: #333;
    border-left: 3px solid #2e7d32;
}

/* ================= FOOTER UPGRADE ================= */

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 40px 0 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.82);
}

.footer-brand {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding: 15px 0;
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

/* ================= POSITIONS PAGE ================= */

.visa-category-banner {
    border-radius: 8px;
    padding: 24px 28px;
    margin-bottom: 30px;
    color: white;
}

.e71-banner { background: linear-gradient(135deg, #1f4a7c, #2f5f99); }
.e73-banner { background: linear-gradient(135deg, #1b5e20, #2e7d32); }

.visa-category-banner h2 {
    color: white;
    font-size: 22px;
    margin-bottom: 8px;
}

.visa-category-banner p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 40px;
}

.position-card {
    background: white;
    border: 1px solid #e0e6f0;
    border-radius: 8px;
    padding: 22px;
    transition: box-shadow 0.2s;
}

.position-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.position-card h3 {
    font-size: 15px;
    color: #1f4a7c;
    margin-bottom: 4px;
}

.position-card > p {
    font-size: 12px;
    color: #888;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eef0f4;
}

.position-card ul {
    padding-left: 16px;
    margin: 0;
}

.position-card li {
    font-size: 13px;
    color: #444;
    margin-bottom: 6px;
    line-height: 1.4;
}

/* ================= CANDIDATE PROFILES PAGE ================= */

.candidate-db-note {
    background: #e8f0fe;
    border-left: 4px solid #1f4a7c;
    border-radius: 0 6px 6px 0;
    padding: 14px 18px;
    font-size: 14px;
    margin-bottom: 30px;
    color: #1a3a6b;
}

.candidate-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.candidate-card {
    background: white;
    border: 1px solid #e0e6f0;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.candidate-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.09);
}

.candidate-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 22px;
    background: #f4f6f9;
    border-bottom: 1px solid #e0e6f0;
}

.candidate-role {
    font-size: 16px;
    font-weight: 700;
    color: #1f4a7c;
}

.candidate-visa-tag {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    color: white;
    letter-spacing: 0.5px;
}

.e71-tag { background: #1f4a7c; }
.e73-tag { background: #2e7d32; }

.candidate-body {
    padding: 20px 22px;
}

.candidate-stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eef0f4;
}

.cstat {
    font-size: 12px;
    color: #555;
    line-height: 1.5;
}

.cstat strong {
    display: block;
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.candidate-skills h4,
.candidate-software h4,
.candidate-exposure h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #999;
    margin-bottom: 8px;
    margin-top: 14px;
}

.candidate-skills ul {
    padding-left: 16px;
    margin: 0;
}

.candidate-skills li {
    font-size: 13px;
    color: #444;
    margin-bottom: 5px;
    line-height: 1.4;
}

.candidate-software p,
.candidate-exposure p {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

.candidate-disclaimer {
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: 6px;
    padding: 18px 22px;
    margin-top: 30px;
    font-size: 13px;
    color: #5d4037;
    line-height: 1.6;
}

/* ================= RESPONSIVE ADDITIONS ================= */

@media (max-width: 1024px) {
    .credibility-grid { grid-template-columns: repeat(2, 1fr); }
    .positions-grid { grid-template-columns: repeat(2, 1fr); }
    .candidate-grid { grid-template-columns: 1fr; }
    .industry-grid { grid-template-columns: repeat(2, 1fr); }
    .intl-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 768px) {
    .grid-2 { grid-template-columns: 1fr; }
    .roles-grid { grid-template-columns: 1fr; }
    .industry-grid { grid-template-columns: 1fr; }
    .intl-grid { grid-template-columns: 1fr; }
    .ethics-grid { grid-template-columns: 1fr; }
    .credibility-grid { grid-template-columns: repeat(2, 1fr); }
    .positions-grid { grid-template-columns: 1fr; }
    .candidate-stat-row { grid-template-columns: 1fr; }
    .hero-ctas { flex-direction: column; align-items: center; }
    .candidate-header { flex-direction: column; align-items: flex-start; gap: 8px; }
}


/* ================= DROPDOWN NAVIGATION ================= */

.main-nav ul li {
    position: relative;
}

.main-nav ul li .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-top: 3px solid #f28c28;
    border-radius: 0 0 6px 6px;
    z-index: 1000;
    padding: 8px 0;
}

.main-nav ul li:hover .dropdown,
.main-nav ul li.active .dropdown {
    display: block;
}

.main-nav ul li .dropdown a {
    display: block;
    padding: 10px 18px;
    font-size: 13px;
    color: #333;
    white-space: nowrap;
    border-bottom: none;
}

.main-nav ul li .dropdown a:hover {
    background: #f4f6f9;
    color: #1f4a7c;
}

.main-nav ul li .has-dropdown > a::after {
    content: ' ▾';
    font-size: 10px;
    opacity: 0.7;
}

/* Mobile dropdown */
@media (max-width: 1024px) {
    .main-nav ul li .dropdown {
        position: static;
        box-shadow: none;
        border-top: none;
        border-left: 3px solid #f28c28;
        background: #f4f6f9;
        display: none;
        padding: 0;
        margin-left: 15px;
    }
    .main-nav ul li.open .dropdown {
        display: block;
    }
    .main-nav ul li .dropdown a {
        padding: 8px 14px;
        font-size: 13px;
    }
}

/* ================= PLAIN TEXT FAQ ================= */

.faq-category {
    margin-bottom: 50px;
}

.faq-category-title {
    font-size: 22px;
    color: #1f4a7c;
    border-bottom: 3px solid #f28c28;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #e8ecf2;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-size: 16px;
    font-weight: 700;
    color: #1f4a7c;
    margin-bottom: 10px;
    line-height: 1.4;
}

.faq-question .faq-q-kr {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1f4a7c;
    margin-top: 6px;
}

.faq-answer {
    font-size: 14px;
    color: #444;
    line-height: 1.75;
}

.faq-answer .faq-a-kr {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: #666;
    padding-top: 8px;
    border-top: 1px dashed #e0e6f0;
}

/* ================= EMPLOYER GUIDE IMPROVEMENTS ================= */

.guide-toc {
    background: #f4f6f9;
    border-left: 4px solid #1f4a7c;
    border-radius: 0 8px 8px 0;
    padding: 24px 28px;
    margin: 30px 0 40px;
}

.guide-toc h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #888;
    margin-bottom: 14px;
}

.guide-toc ol {
    padding-left: 20px;
    margin: 0;
    columns: 2;
    column-gap: 30px;
}

.guide-toc li {
    margin-bottom: 8px;
    font-size: 13px;
}

.guide-toc a {
    color: #1f4a7c;
    text-decoration: none;
}

.guide-toc a:hover {
    color: #f28c28;
    text-decoration: underline;
}

.guide-divider {
    border: none;
    border-top: 2px solid #e0e6f0;
    margin: 0;
}

.guide-page-light {
    background: #f8fafc;
}

.guide-section-num {
    font-size: 11px;
    font-weight: 700;
    color: #f28c28;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

/* ================= ABOUT PAGE ================= */

.founder-block {
    background: #f4f6f9;
    border-radius: 8px;
    padding: 28px 32px;
    border-left: 4px solid #f28c28;
    margin: 30px 0;
}

.founder-name {
    font-size: 20px;
    font-weight: 700;
    color: #1f4a7c;
    margin-bottom: 4px;
}

.founder-title {
    font-size: 13px;
    color: #888;
    margin-bottom: 14px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
    text-align: center;
}

.stat-box {
    background: #f4f6f9;
    border-radius: 8px;
    padding: 20px;
    border-bottom: 3px solid #1f4a7c;
}

.stat-box .num {
    font-size: 32px;
    font-weight: 700;
    color: #1f4a7c;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-box .lbl {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .guide-toc ol { columns: 1; }
}

/* ================= INSIGHTS FILTER ================= */

.filter-btn {
    cursor: pointer;
    padding: 8px 18px;
    border-radius: 20px;
    border: 2px solid #e0e6f0;
    background: white;
    font-size: 13px;
    color: #555;
    transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
    background: #1f4a7c;
    color: white;
    border-color: #1f4a7c;
}

.article-card[data-audience] {
    transition: opacity 0.2s, transform 0.2s;
}

.article-card.hidden {
    display: none;
}

/* ================= PDF DOWNLOAD BLOCK ================= */

.pdf-download-block {
    background: linear-gradient(135deg, #162f52, #1f4a7c);
    border-radius: 10px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.pdf-download-block .pdf-info h3 {
    color: white;
    font-size: 17px;
    margin-bottom: 6px;
}

.pdf-download-block .pdf-info p {
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    margin: 0;
}

.pdf-badge {
    background: #f28c28;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 3px;
    letter-spacing: 0.5px;
    margin-right: 8px;
}

.btn-download {
    background: white;
    color: #1f4a7c;
    padding: 11px 24px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
}

.btn-download:hover {
    background: #f28c28;
    color: white;
}

/* ─── CANDIDATE CARDS ─────────────────────────────────── */
.candidate-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.domain-heading {
    margin: 40px 0 18px;
}
.domain-heading h2 {
    font-size: 20px;
    color: #1f4a7c;
    border-bottom: 3px solid #f28c28;
    padding-bottom: 8px;
    display: inline-block;
}
.domain-heading h2 .domain-kr {
    display: block;
    font-size: 13px;
    color: #888;
    font-weight: 400;
    margin-top: 3px;
}

.candidate-card {
    background: #fff;
    border: 1px solid #e0e6f0;
    border-radius: 8px;
    padding: 22px 24px;
    margin-bottom: 16px;
    transition: box-shadow 0.2s;
}
.candidate-card:hover { box-shadow: 0 4px 18px rgba(31,74,124,0.10); }

.cand-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    gap: 12px;
}
.cand-title {
    font-size: 17px;
    font-weight: 700;
    color: #1f4a7c;
    line-height: 1.3;
}
.cand-title-kr {
    font-size: 13px;
    color: #555;
    margin-top: 3px;
}
.cand-badge {
    background: #1f4a7c;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    white-space: nowrap;
    flex-shrink: 0;
}
.hot-badge {
    display: inline-block;
    background: #fff3cd;
    color: #856404;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    border: 1px solid #ffc107;
}
.cand-stats {
    display: flex;
    gap: 24px;
    background: #f4f6f9;
    border-radius: 6px;
    padding: 10px 14px;
    margin-bottom: 14px;
    font-size: 13px;
}
.cand-stats div { display: flex; flex-direction: column; }
.cand-stats strong { font-size: 15px; color: #1f4a7c; }
.cand-stats span { font-size: 11px; color: #888; }
.cand-section {
    margin-bottom: 10px;
    font-size: 13px;
    color: #444;
    line-height: 1.6;
}
.cand-section strong {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
    margin-bottom: 4px;
}
.cand-kr {
    margin-top: 4px;
    font-size: 12px;
    color: #777;
    padding-top: 4px;
    border-top: 1px dashed #e8ecf2;
}

@media (max-width: 768px) {
    .cand-header { flex-direction: column; }
    .cand-stats { flex-wrap: wrap; gap: 12px; }
}

/* ─── FREQ BADGE ─────────────────────────────────────────── */
.freq-badge {
    display: inline-block;
    background: #fff3cd;
    color: #7a5800;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 10px;
    border: 1px solid #f5c842;
    margin-right: 6px;
    vertical-align: middle;
    white-space: nowrap;
    letter-spacing: 0.3px;
}
.role-kr {
    display: block;
    font-size: 11px;
    color: #888;
    margin-top: 2px;
    padding-left: 0;
}

/* ─── FAQ KOREAN QUESTION BOLD ─────────────── */
.faq-q-kr {
    font-weight: 700;
    color: #444;
}

/* ─── ROLES UNIFIED (homepage) ──────────────── */
.roles-unified {
    margin-top: 20px;
}
.roles-list-unified {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.roles-list-unified li {
    padding: 8px 0;
    border-bottom: 1px solid #e8ecf2;
    font-size: 14px;
    display: flex;
    flex-direction: column;
}
.roles-list-unified .role-kr {
    font-size: 11px;
    color: #888;
    margin-top: 2px;
}
.roles-list-unified .freq-badge {
    margin-bottom: 3px;
    display: inline-block;
    width: fit-content;
}

@media (max-width: 900px) {
    .roles-list-unified { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .roles-list-unified { grid-template-columns: 1fr; }
}

/* ─── ARTICLE TAGS (insights fix) ──────────── */
.article-tags {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

/* ─── PROMINENT CONTACT CARDS ─────────────────────────────── */
.contact-cards-prominent {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 28px;
}
.contact-card-big {
    background: white;
    border-radius: 10px;
    padding: 30px 26px;
    border-top: 4px solid #f28c28;
    box-shadow: 0 4px 18px rgba(31,74,124,0.09);
    text-align: center;
}
.contact-card-icon {
    font-size: 36px;
    margin-bottom: 12px;
}
.contact-card-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #888;
    margin-bottom: 10px;
}
.contact-card-value {
    font-size: 18px;
    font-weight: 700;
    color: #1f4a7c;
    text-decoration: none;
    display: block;
    line-height: 1.3;
    word-break: break-all;
}
.contact-card-value:hover { color: #f28c28; }
.contact-card-note {
    font-size: 12px;
    color: #888;
    margin-top: 10px;
    line-height: 1.5;
}
@media(max-width: 768px) {
    .contact-cards-prominent { grid-template-columns: 1fr; }
}

/* ─── CONTACT ACTION BUTTONS ────────────────────────────────── */
.contact-action-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.btn-action:hover {
    opacity: 0.85;
}

.btn-action-phone {
    background: #1f4a7c;
    color: white;
}

.btn-action-email {
    background: #f28c28;
    color: white;
}

.btn-action-whatsapp {
    background: #25D366;
    color: white;
}

.contact-address-block {
    background: #f4f6f9;
    border-left: 4px solid #1f4a7c;
    border-radius: 0 8px 8px 0;
    padding: 24px 28px;
}

.contact-address-block h3 {
    font-size: 15px;
    color: #1f4a7c;
    margin-bottom: 10px;
}

.contact-address-block p {
    font-size: 14px;
    color: #444;
    line-height: 1.9;
    margin-bottom: 0;
}

/* ─── FRAMEWORK PAGE ─────────────────────────────────────── */
.framework-flow {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    max-width: 900px;
    margin: 40px auto 0;
}
.framework-stage {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 0;
    position: relative;
}
.framework-stage-number {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.stage-circle {
    width: 52px;
    height: 52px;
    background: #1f4a7c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    z-index: 1;
    position: relative;
}
.stage-line {
    width: 3px;
    background: linear-gradient(to bottom, #1f4a7c, #e0e6f0);
    flex: 1;
    margin: 4px auto 0;
    min-height: 40px;
}
.framework-stage:last-child .stage-line { display: none; }
.framework-stage-content {
    padding: 0 0 48px 20px;
}
.framework-stage-title {
    font-size: 20px;
    font-weight: 700;
    color: #1f4a7c;
    margin-bottom: 4px;
    line-height: 1.3;
}
.framework-stage-title-kr {
    font-size: 13px;
    color: #888;
    font-weight: 400;
    margin-bottom: 14px;
    display: block;
}
.framework-activities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
    margin: 12px 0;
}
.framework-activity {
    font-size: 13px;
    color: #444;
    padding-left: 14px;
    position: relative;
    line-height: 1.5;
}
.framework-activity::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #f28c28;
    font-weight: 700;
}
.framework-outcome {
    background: #f4f6f9;
    border-left: 3px solid #f28c28;
    border-radius: 0 6px 6px 0;
    padding: 10px 16px;
    font-size: 13px;
    color: #444;
    margin-top: 12px;
}
.framework-outcome strong {
    color: #1f4a7c;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 4px;
}

/* ─── CASE STUDY CARDS ───────────────────────────────────── */
.case-study-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 28px;
}
.case-study-card {
    background: white;
    border-radius: 8px;
    border: 1px solid #e0e6f0;
    padding: 24px;
    border-top: 3px solid #1f4a7c;
}
.case-tag {
    display: inline-block;
    background: #f4f6f9;
    color: #1f4a7c;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 10px;
    margin-bottom: 12px;
}
.case-study-card h3 {
    font-size: 15px;
    color: #1f4a7c;
    margin-bottom: 14px;
}
.case-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
    gap: 10px;
}
.case-row:last-child { border-bottom: none; }
.case-row span:first-child { color: #888; flex-shrink: 0; }
.case-row span:last-child { color: #333; font-weight: 600; text-align: right; }
.case-outcome {
    margin-top: 14px;
    background: #f0f7f0;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 13px;
    color: #2e7d32;
    font-weight: 600;
}

/* ─── KOREAN LANDING PAGE ──────────────────────────────── */
.kr-hero {
    background: linear-gradient(135deg, #0d2b52, #1f4a7c);
    color: white;
    padding: 80px 40px;
    text-align: center;
}
.kr-hero h1 { font-size: 30px; line-height: 1.4; margin-bottom: 16px; }
.kr-hero p { font-size: 16px; opacity: 0.85; max-width: 700px; margin: 0 auto; }
.kr-trust-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 28px 0;
    text-align: center;
}
.kr-trust-box {
    background: white;
    border-radius: 8px;
    padding: 20px 14px;
    border-bottom: 3px solid #f28c28;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.kr-trust-box .num { font-size: 28px; font-weight: 700; color: #1f4a7c; }
.kr-trust-box .lbl { font-size: 12px; color: #666; margin-top: 4px; line-height: 1.4; }

@media(max-width: 768px) {
    .framework-activities { grid-template-columns: 1fr; }
    .case-study-grid { grid-template-columns: 1fr; }
    .kr-trust-row { grid-template-columns: repeat(2, 1fr); }
    .framework-stage { grid-template-columns: 50px 1fr; }
}

/* ─── RELATED ARTICLES ──────────────────────────────────── */
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.related-card {
    background: white;
    border-radius: 8px;
    padding: 16px 18px;
    border: 1px solid #e0e6f0;
    border-top: 3px solid #e0e6f0;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.related-card:hover {
    border-top-color: #f28c28;
    box-shadow: 0 3px 12px rgba(31,74,124,0.08);
}
@media(max-width: 768px) {
    .related-grid { grid-template-columns: 1fr; }
}


/* ================================================================
   SITE-WIDE STYLES — Global tokens, typography, layout components
   ================================================================ */

/* ── GLOBAL TOKENS ─────────────────────────────────────────── */
:root {
    --brand-primary: #1f4a7c;
    --brand-accent:  #f28c28;
    --brand-dark:    #162f52;
    --text-body:     #374151;
    --text-muted:    #6b7280;
    --bg-white:      #ffffff;
    --bg-grey:       #f7f7f7;
    --radius:        6px;
}

/* ── TYPOGRAPHY UPGRADE ─────────────────────────────────────── */
body {
    font-family: 'Open Sans', 'Segoe UI', Arial, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-body);
}

h1, h2, h3, h4, h5 {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}

/* ── SECTION BACKGROUND HELPERS ────────────────────────────── */
.section-white { background: var(--bg-white); }
.section-grey  { background: var(--bg-grey); }

/* ── SECTION HEADER ─────────────────────────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    font-size: 34px;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 12px;
}
.section-subtext {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
}

/* ── NEW HEADER ─────────────────────────────────────────────── */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--brand-primary);
    height: 70px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}
.main-header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.18);
}
.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* ── HEADER CTA BUTTON ──────────────────────────────────────── */
.btn-header-cta {
    background: var(--brand-accent);
    color: white;
    padding: 10px 22px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    transition: background 0.2s ease;
    flex-shrink: 0;
}
.btn-header-cta:hover {
    background: #d97706;
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
    position: relative;
    height: 60vh;
    min-height: 420px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    padding: 0;
    text-align: left;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}
.hero-content h1 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}
.hero-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.92;
    color: white;
    line-height: 1.65;
}
.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn-primary {
    background: var(--brand-accent);
    color: white;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    display: inline-block;
    transition: background 0.2s ease;
    text-align: center;
}
.btn-primary:hover { background: #d97706; }
.btn-primary.btn-large {
    padding: 16px 40px;
    font-size: 17px;
}
.btn-secondary-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.85);
    color: white;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    display: inline-block;
    transition: all 0.2s ease;
    text-align: center;
}
.btn-secondary-outline:hover {
    background: rgba(255,255,255,0.12);
}
.btn-outline-brand {
    border: 2px solid var(--brand-primary);
    color: var(--brand-primary);
    padding: 12px 28px;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    display: inline-block;
    transition: all 0.2s ease;
}
.btn-outline-brand:hover {
    background: var(--brand-primary);
    color: white;
}

/* ── CREDIBILITY BAR ────────────────────────────────────────── */
.credibility-section {
    padding: 50px 0 !important;
    border-bottom: 1px solid #eee;
}
.credibility-section .credibility-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.credibility-section .cred-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.credibility-section .cred-icon {
    width: 44px;
    height: 44px;
    color: var(--brand-primary);
    stroke-width: 1.5;
}
.credibility-section .cred-icon svg {
    width: 100%;
    height: 100%;
}
.credibility-section .cred-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--brand-primary);
    line-height: 1.4;
}

/* ── SERVICES GRID ──────────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.service-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.10);
}
.service-card .service-icon {
    width: 48px;
    height: 48px;
    color: var(--brand-primary);
    margin-bottom: 18px;
    font-size: inherit;
}
.service-card .service-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}
.service-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 10px;
    line-height: 1.3;
}
.service-card p {
    font-size: 15px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ── INDUSTRY TILES ─────────────────────────────────────────── */
.industry-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.industry-tile {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 1 / 1;
    cursor: pointer;
}
.industry-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.industry-tile:hover img {
    transform: scale(1.06);
}
.industry-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.68));
    padding: 30px 18px 18px;
}
.industry-overlay span {
    color: white;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    line-height: 1.3;
    display: block;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

/* ── PROCESS TIMELINE ───────────────────────────────────────── */
.process-grid-new {
    display: flex;
    align-items: flex-start;
    gap: 0;
}
.process-step-new {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 10px;
}
.process-icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--brand-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    flex-shrink: 0;
}
.process-icon-wrap svg {
    width: 28px;
    height: 28px;
    color: white;
    stroke-width: 1.5;
}
.process-num-new {
    font-size: 11px;
    font-weight: 700;
    color: var(--brand-accent);
    letter-spacing: 1px;
    margin-bottom: 6px;
    font-family: 'Inter', sans-serif;
}
.process-step-new h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-primary);
    line-height: 1.4;
    margin: 0;
}
.process-connector {
    flex: 0 0 30px;
    height: 2px;
    background: #d1d5db;
    margin-top: 30px;
    align-self: flex-start;
}

/* ── INSIGHTS / ARTICLE CARDS ───────────────────────────────── */
.article-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.article-card-new {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.article-card-new:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.09);
    transform: translateY(-2px);
}
.article-card-new .article-tag {
    display: inline-block;
    background: #dbeafe;
    color: #1e40af;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}
.article-card-new h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--brand-primary);
    line-height: 1.4;
    margin: 0;
}
.article-card-new h3 a {
    color: inherit;
    text-decoration: none;
}
.article-card-new h3 a:hover { color: var(--brand-accent); }
.article-card-new p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}
.read-more {
    font-size: 14px;
    color: var(--brand-accent);
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
}
.read-more:hover { color: #d97706; }
.insights-cta {
    text-align: center;
    margin-top: 40px;
}

/* ── LEADERSHIP SECTION ─────────────────────────────────────── */
.leadership-section {
    text-align: center;
}
.leadership-block {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px 0;
}
.leadership-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--brand-accent);
    margin-bottom: 10px;
}
.leadership-role {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.leadership-name {
    font-size: 34px;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 24px;
}
.leadership-bio {
    font-size: 17px;
    color: var(--text-body);
    line-height: 1.8;
    margin: 0;
}

/* ── CTA SECTION ────────────────────────────────────────────── */
.cta-section {
    text-align: center;
    background: white !important;
}
.cta-section h2 {
    font-size: 34px;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 16px;
}
.cta-section p {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 32px;
}

/* ── NEW FOOTER ─────────────────────────────────────────────── */
.main-footer {
    background: #111111 !important;
    color: #ffffff;
    text-align: left;
    padding: 0;
}
.footer-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 60px 0 40px;
}
.footer-logo {
    width: 160px;
    height: auto;
    margin-bottom: 14px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 3px;
}
.footer-company-name {
    font-size: 15px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}
.footer-company-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
}
.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-col ul li a:hover { color: white; }
.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255,255,255,0.75);
}
.footer-contact-list li svg {
    flex-shrink: 0;
    color: rgba(255,255,255,0.45);
}
.footer-cta-item { margin-top: 6px; }
.btn-footer-cta {
    display: inline-block;
    background: var(--brand-accent);
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    transition: background 0.2s;
}
.btn-footer-cta:hover { background: #d97706; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    flex-wrap: wrap;
    gap: 12px;
}
.footer-legal-links {
    display: flex;
    gap: 20px;
}
.footer-legal-links a {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
    text-decoration: none;
}
.footer-legal-links a:hover { color: rgba(255,255,255,0.75); }

/* ── MOBILE NAV OPEN STATE ──────────────────────────────────── */
.main-nav.open {
    display: block !important;
}

/* ── RESPONSIVE — TABLET (1024px) ──────────────────────────── */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .industry-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
    .article-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .process-grid-new {
        flex-wrap: wrap;
        justify-content: center;
    }
    .process-step-new {
        flex: 0 0 28%;
    }
    .process-connector {
        display: none;
    }
    .credibility-section .credibility-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── RESPONSIVE — MOBILE (768px) ───────────────────────────── */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 30px;
    }
    .hero-content p {
        font-size: 16px;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .btn-primary,
    .btn-secondary-outline {
        display: block;
        width: 100%;
        text-align: center;
    }
    .section-header h2 {
        font-size: 26px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .industry-grid-new {
        grid-template-columns: 1fr;
    }
    .article-grid-new {
        grid-template-columns: 1fr;
    }
    .process-grid-new {
        flex-direction: column;
        align-items: center;
    }
    .process-step-new {
        flex: unset;
        width: 100%;
        max-width: 280px;
        padding: 16px 0;
        border-bottom: 1px solid #e5e7eb;
    }
    .footer-grid-new {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 40px 0 28px;
    }
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
    .btn-header-cta {
        display: none;
    }
    .leadership-name {
        font-size: 26px;
    }
    .cta-section h2 {
        font-size: 26px;
    }
}



/* ================================================================
   HERO & HEADER ADJUSTMENTS
   ================================================================ */

/* ── #3 HERO IMAGE — SEO-FRIENDLY FILENAME ─────────────────── */
.hero {
    background-image: url('assets/industrial-workforce-recruitment-korea.webp');
}

/* ── #7 STICKY HEADER CONFIRMATION ─────────────────────────── */
/* Already set: position:sticky; top:0; z-index:1000 */
/* No margin/padding above header so zero layout shift */
body { margin-top: 0; }

/* ── #11 LOGO GLOW — transparent state only ─────────────────── */
.header-transparent .logo img {
    filter: drop-shadow(0 0 6px rgba(255,255,255,0.9));
    transition: filter 0.3s ease;
}
/* Remove glow once header scrolled (solid background) */
.main-header.scrolled .logo img {
    filter: none;
}

/* ── #1 BILINGUAL TYPOGRAPHY HELPERS ────────────────────────── */

/* Hero bilingual lines */
.hero-kr-line {
    display: block;
    font-size: 0.52em;
    font-weight: 400;
    opacity: 0.82;
    margin-top: 10px;
    line-height: 1.5;
}
.hero-sub-kr-line {
    display: block;
    font-size: 0.85em;
    opacity: 0.75;
    margin-top: 6px;
}

/* Credibility bar Korean sub-line */
.cred-kr {
    display: block;
    font-size: 12px;
    color: #6b7280;
    font-weight: 400;
    margin-top: 4px;
    line-height: 1.4;
}

/* Services card Korean sub-lines */
.service-kr {
    display: block;
    font-size: 13px;
    color: #6b7280;
    font-weight: 400;
    margin-top: 4px;
}
.service-desc-kr {
    display: block;
    font-size: 13px;
    color: #9ca3af;
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px solid #e5e7eb;
    line-height: 1.5;
}

/* Section subtext Korean line */
.subtext-kr {
    font-size: 0.88em;
    color: #9ca3af;
}

/* Industry tile Korean name */
.industry-kr {
    display: block;
    font-size: 12px;
    font-weight: 400;
    opacity: 0.82;
    margin-top: 3px;
}

/* Process step Korean sub-line */
.process-kr {
    display: block;
    font-size: 11px;
    color: #6b7280;
    font-weight: 400;
    margin-top: 4px;
    line-height: 1.4;
}

/* ── #4 INDUSTRY TILES — clickable <a> reset ────────────────── */
a.industry-tile {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
a.industry-tile:hover img {
    transform: scale(1.06);
}

/* ── #6 LEADERSHIP — corrected heading hierarchy ────────────── */
.leadership-section-heading {
    /* H2 — visually hidden as a label, screen-reader accessible */
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
}
.leadership-role {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #6b7280 !important;
    margin-bottom: 6px !important;
    font-family: 'Open Sans', sans-serif !important;
}
.leadership-name {
    font-size: 34px !important;
    font-weight: 700 !important;
    color: var(--brand-primary) !important;
    margin-bottom: 24px !important;
    font-family: 'Inter', sans-serif !important;
}

/* Bilingual biography */
.leadership-bio-kr {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.75;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ── CTA section bilingual sub-elements ────────────────────── */
.cta-kr-heading {
    display: block;
    font-size: 0.6em;
    font-weight: 400;
    color: #6b7280;
    margin-top: 6px;
}
.cta-kr-text {
    display: block;
    font-size: 0.85em;
    color: #9ca3af;
    margin-top: 8px;
}

/* ── #10 SECTION SPACING — ensure 80px top & bottom ────────── */
.section {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}
/* Credibility section slightly tighter but still consistent */
.credibility-section {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}



/* ================================================================
   PHASE 1 FINAL REFINEMENTS — Items 1–7
   ================================================================ */

/* ── #1 NOTO SANS KR — global Korean font fallback ─────────── */
body {
    font-family: 'Open Sans', 'Noto Sans KR', 'Segoe UI', Arial, sans-serif;
}
h1, h2, h3, h4, h5 {
    font-family: 'Inter', 'Noto Sans KR', 'Segoe UI', Arial, sans-serif;
}
/* Apply to Korean-specific elements explicitly */
.hero-kr-line,
.hero-sub-kr-line,
.cred-kr,
.service-kr,
.service-desc-kr,
.subtext-kr,
.industry-kr,
.process-kr,
.leadership-bio-kr,
.cta-kr-heading,
.cta-kr-text,
.main-nav a {
    font-family: 'Noto Sans KR', 'Open Sans', 'Segoe UI', Arial, sans-serif;
}

/* ── #2 INDUSTRY TILE HOVER — scale on img only, container fixed ── */
/* overflow:hidden on tile clips the scaled image — no layout shift */
.industry-tile {
    position: relative;
    overflow: hidden;       /* clips scaled image inside fixed container */
    border-radius: 6px;
    aspect-ratio: 1 / 1;   /* fixed square — never resizes on hover */
    display: block;
    cursor: pointer;
}
.industry-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;  /* GPU hint for smooth compositing */
}
.industry-tile:hover img,
.industry-tile:focus img {
    transform: scale(1.07);  /* only the img scales — container stays fixed */
}

/* ── #3 HERO TEXT — max-width 620px for readability on large screens ── */
.hero-content {
    max-width: 620px;
    position: relative;
    z-index: 2;
}

/* ── #4 MOBILE NAV — sticky header compatibility ───────────── */
/* Menu opens below the 70px sticky bar without overlap */
@media (max-width: 1024px) {
    .main-nav.open {
        display: block !important;
        position: absolute;
        top: 70px;           /* exactly header height — no overlap */
        left: 0;
        right: 0;
        background: #1a3d6e; /* slightly lighter than header for contrast */
        z-index: 999;
        box-shadow: 0 8px 20px rgba(0,0,0,0.25);
        padding: 12px 0 20px;
    }
    .main-nav.open ul {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }
    .main-nav.open ul li a {
        display: block;
        padding: 13px 24px;
        font-size: 15px;
        color: rgba(255,255,255,0.9);
        border-bottom: 1px solid rgba(255,255,255,0.08);
        font-family: 'Noto Sans KR', 'Open Sans', sans-serif;
    }
    .main-nav.open ul li a:hover {
        background: rgba(255,255,255,0.08);
        opacity: 1;
    }
    /* Ensure header is positioned so the dropdown is absolute to it */
    .main-header {
        position: sticky;
        top: 0;
        z-index: 1000;
    }
}

/* ── #6 MAILTO EMAIL LINK STYLE ─────────────────────────────── */
.footer-email-link {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-email-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* ── #7 KEYBOARD FOCUS — industry tiles ─────────────────────── */
.industry-tile:focus {
    outline: 3px solid #f28c28;
    outline-offset: 2px;
}
.industry-tile:focus img {
    transform: scale(1.07);
}



/* ================================================================
   LEADERSHIP, CREDIBILITY & PAGE COMPONENT REFINEMENTS
   ================================================================ */

/* ── #1 LEADERSHIP — name first, larger; role below, smaller ── */
.leadership-name {
    font-size: 38px !important;
    font-weight: 700 !important;
    color: var(--brand-primary) !important;
    margin-bottom: 8px !important;
    font-family: 'Inter', 'Noto Sans KR', sans-serif !important;
    line-height: 1.15 !important;
}
.leadership-role {
    font-size: 16px !important;
    font-weight: 500 !important;
    color: var(--text-muted) !important;
    margin-bottom: 28px !important;
    font-family: 'Noto Sans KR', 'Open Sans', sans-serif !important;
    letter-spacing: 0.01em !important;
}

/* ── #2 HERO SECONDARY BUTTON — tinted background for contrast ── */
.btn-secondary-outline {
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.90);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    display: inline-block;
    transition: background 0.25s ease, border-color 0.25s ease;
    text-align: center;
    backdrop-filter: blur(2px);
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus {
    background: rgba(255,255,255,0.24);
    border-color: #ffffff;
    outline: none;
}

/* ── #3 SERVICE CARDS — pure white on grey background ─────────── */
.service-card {
    background: #ffffff !important;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.10);
}

/* ── #4 INDUSTRY TILE TEXT — more bottom breathing room ──────── */
.industry-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.72));
    padding: 40px 20px 20px; /* increased bottom + side padding */
}
.industry-overlay span {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    line-height: 1.3;
    display: block;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* ── #5 KOREAN TYPOGRAPHY — font-weight 500 across all KR elements ── */
.hero-kr-line,
.hero-sub-kr-line,
.cred-kr,
.service-kr,
.service-desc-kr,
.subtext-kr,
.industry-kr,
.process-kr,
.leadership-bio-kr,
.cta-kr-heading,
.cta-kr-text,
.trust-statement-kr,
.footer-company-sub {
    font-weight: 500;
    font-family: 'Noto Sans KR', 'Open Sans', sans-serif;
}

/* ── #7 FOOTER LOGO — white border for visibility on dark bg ──── */
.footer-logo {
    width: 160px;
    height: auto;
    margin-bottom: 14px;
    border: 3px solid #ffffff !important;
    border-radius: 4px !important;
    display: block;
}

/* ── #8 INSIGHTS — tighter section-header margin ─────────────── */
.section-header {
    text-align: center;
    margin-bottom: 40px; /* reduced from 50px */
}

/* ── #9 MOBILE — process timeline stacks vertically ─────────── */
@media (max-width: 768px) {
    .process-grid-new {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .process-step-new {
        width: 100%;
        max-width: 320px;
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        padding: 16px 0;
        border-bottom: 1px solid #e5e7eb;
        gap: 16px;
    }
    .process-step-new:last-child {
        border-bottom: none;
    }
    .process-icon-wrap {
        flex-shrink: 0;
        margin-bottom: 0;
    }
    .process-step-new .process-num-new {
        margin-bottom: 2px;
    }
    .process-connector {
        display: none; /* hidden on mobile; replaced by border-bottom on steps */
    }
}

/* ── #10 TRUST STATEMENT — below credibility bar ─────────────── */
.trust-statement {
    text-align: center;
    margin-top: 28px;
    margin-bottom: 0;
    font-size: 15px;
    color: var(--text-muted);
    font-style: italic;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}
.trust-statement-kr {
    display: block;
    font-size: 13px;
    margin-top: 5px;
    color: #9ca3af;
    font-style: normal;
}



/* ================================================================
   TRUST SIGNAL REFINEMENTS — Items 2–5
   ================================================================ */

/* ── #2 Lighter divider above trust signal ──────────────────── */
/* ── #3 More spacing above ──────────────────────────────────── */
/* ── #4 Wider comfortable reading width, centred ────────────── */
/* ── #5 Korean line contrast improved ───────────────────────── */
.trust-statement {
    margin-top: 36px;
    margin-bottom: 0;
    padding-top: 28px;
    border-top: 1px solid rgba(0,0,0,0.08);   /* #2 subtle divider */
    text-align: center;
    font-size: 15px;
    font-style: italic;
    color: var(--text-muted);
    max-width: 700px;                          /* #4 comfortable width */
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}
.trust-statement-kr {
    display: block;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;                          /* #5 stronger weight */
    color: #555555;                            /* #5 higher contrast */
    margin-top: 6px;
    font-family: 'Noto Sans KR', 'Open Sans', sans-serif;
}



/* ================================================================
   ARTICLE PAGES & INSIGHTS LIBRARY
   ================================================================ */

/* ── ARTICLE HERO BANNER ─────────────────────────────────────── */
.article-hero-banner {
    background: linear-gradient(135deg, #1f4a7c 0%, #163b63 100%);
    padding: 72px 0 60px;
    color: #fff;
}
.article-hero-inner {
    max-width: 800px;
}
.article-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}
.article-breadcrumb a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
}
.article-breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { color: rgba(255,255,255,0.45); font-size: 16px; }
.article-tag-pill {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.03em;
    font-family: 'Inter', sans-serif;
}
.article-hero-banner h1 {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 12px;
    color: #fff;
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
}
.article-hero-kr {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 14px;
    font-family: 'Noto Sans KR', 'Open Sans', sans-serif;
    font-weight: 500;
    line-height: 1.5;
}
.article-hero-excerpt {
    font-size: 16px;
    color: rgba(255,255,255,0.82);
    line-height: 1.7;
    margin: 0;
    max-width: 680px;
}

/* ── ARTICLE PROSE ───────────────────────────────────────────── */
.article-main {
    background: #ffffff;
    padding: 60px 0 80px;
}
.article-prose-container {
    max-width: 760px;
}

/* Alternating section backgrounds */
.article-section-plain {
    margin-bottom: 0;
    padding: 36px 0;
    border-bottom: 1px solid #f0f0f0;
}
.article-section-alt {
    margin-bottom: 0;
    padding: 36px 32px;
    background: #f7f8fa;
    border-radius: 8px;
    margin-bottom: 8px;
    border-bottom: none;
}
.article-section-plain:last-of-type,
.article-section-alt:last-of-type {
    border-bottom: none;
}

.article-prose-container h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1f4a7c;
    margin: 0 0 14px;
    line-height: 1.3;
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
}
.article-prose-container p {
    font-size: 17px;
    line-height: 1.8;
    color: #374151;
    margin: 0 0 16px;
    font-family: 'Open Sans', 'Noto Sans KR', sans-serif;
}
.article-list {
    margin: 0 0 18px 0;
    padding-left: 22px;
}
.article-list li {
    font-size: 17px;
    line-height: 1.75;
    color: #374151;
    margin-bottom: 8px;
    font-family: 'Open Sans', 'Noto Sans KR', sans-serif;
}

/* ── RELATED GUIDES ──────────────────────────────────────────── */
.article-related-block {
    background: #eef3fb;
    border-left: 4px solid #1f4a7c;
    border-radius: 0 8px 8px 0;
    padding: 24px 28px;
    margin: 32px 0;
}
.article-related-block h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1f4a7c;
    margin: 0 0 14px;
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
}
.article-related-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.article-related-list li {
    margin-bottom: 8px;
}
.article-related-list a {
    color: #1f4a7c;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}
.article-related-list a:hover {
    text-decoration: underline;
    color: #f28c28;
}
.article-related-list li::before {
    content: "→ ";
    color: #f28c28;
    font-weight: 700;
}

/* ── ARTICLE CTA BLOCK ───────────────────────────────────────── */
.article-cta-block {
    background: linear-gradient(135deg, #1f4a7c 0%, #163b63 100%);
    border-radius: 12px;
    padding: 40px 36px;
    text-align: center;
    margin: 48px 0 32px;
}
.article-cta-block h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px;
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
}
.article-cta-block p {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    margin: 0 0 10px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}
.article-cta-block .cta-kr-text {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    font-family: 'Noto Sans KR', sans-serif;
    margin-bottom: 24px;
}
.article-cta-block .btn-primary {
    background: #f28c28;
    color: #fff;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s ease;
}
.article-cta-block .btn-primary:hover { background: #d97c1a; }

/* ── BACK LINK ───────────────────────────────────────────────── */
.article-back-link {
    text-align: center;
    margin-top: 0;
}
.article-back-link a {
    color: #6b7280;
    font-size: 14px;
    text-decoration: none;
    font-family: 'Noto Sans KR', 'Open Sans', sans-serif;
}
.article-back-link a:hover { color: #1f4a7c; }

/* ── INSIGHTS INDEX PAGE ─────────────────────────────────────── */
.insights-page-hero {
    background: linear-gradient(135deg, #1f4a7c 0%, #163b63 100%);
    padding: 80px 0 60px;
    text-align: center;
    color: #fff;
}
.insights-page-hero h1 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}
.insights-hero-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    max-width: 700px;
    margin: 0 auto 10px;
    line-height: 1.7;
}

/* Jump nav */
.insights-jump-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 28px;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
}
.insights-jump-nav a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.35);
    padding: 5px 14px;
    border-radius: 20px;
    transition: all 0.2s;
}
.insights-jump-nav a:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-color: rgba(255,255,255,0.6);
}

/* Insights card grid — 3 columns desktop */
.insight-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.insight-card-new {
    background: #ffffff;
    border-radius: 10px;
    padding: 26px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #e5e7eb;
}
.insight-card-new:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.11);
}
.insight-card-tag {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
    font-family: 'Inter', sans-serif;
    width: fit-content;
}
.insight-card-new h3 {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 10px;
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
}
.insight-card-new h3 a {
    color: #1f3a5f;
    text-decoration: none;
}
.insight-card-new h3 a:hover { color: #f28c28; }
.insight-card-excerpt {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.65;
    margin: 0 0 18px;
    flex: 1;
    font-family: 'Open Sans', sans-serif;
}
.insight-read-more {
    font-size: 14px;
    font-weight: 600;
    color: #1f4a7c;
    text-decoration: none;
    margin-top: auto;
    transition: color 0.2s;
    font-family: 'Inter', sans-serif;
}
.insight-read-more:hover { color: #f28c28; }

/* ── MOBILE RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 900px) {
    .insight-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .insight-cards-grid { grid-template-columns: 1fr; }
    .article-hero-banner { padding: 48px 0 40px; }
    .article-hero-banner h1 { font-size: 26px; }
    .article-hero-kr { font-size: 15px; }
    .article-section-alt { padding: 24px 20px; }
    .article-prose-container h2 { font-size: 20px; }
    .article-prose-container p,
    .article-list li { font-size: 16px; }
    .article-cta-block { padding: 28px 20px; }
    .article-cta-block h3 { font-size: 18px; }
    .insights-page-hero h1 { font-size: 30px; }
    .insights-hero-desc { font-size: 16px; }
    .insights-jump-nav { gap: 10px; }
}
@media (max-width: 480px) {
    .insight-cards-grid { gap: 16px; }
    .insight-card-new { padding: 20px 18px; }
    .article-related-block { padding: 18px 16px; }
}

/* ── Section article count badge ─────────────────────────────── */
.section-article-count {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    background: #f3f4f6;
    border-radius: 20px;
    padding: 2px 10px;
    margin-left: 10px;
    vertical-align: middle;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0;
}

/* ── ARTICLE KOREAN SUMMARY SECTION ─────────────────────────────── */
.article-summary-kr {
    background: #eef3fa;
    border-left: 4px solid #1f4a7c;
    border-radius: 0 6px 6px 0;
    padding: 28px 32px;
    margin: 32px 0;
    max-width: 760px;
}
.article-summary-kr h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f4a7c;
    margin-bottom: 16px;
    font-family: 'Noto Sans KR', 'Open Sans', sans-serif;
}
.article-summary-kr ul {
    margin: 0;
    padding-left: 20px;
}
.article-summary-kr ul li {
    font-size: 0.97rem;
    color: #374151;
    line-height: 1.75;
    margin-bottom: 8px;
    font-family: 'Noto Sans KR', 'Open Sans', sans-serif;
}
.article-summary-kr ul li:last-child {
    margin-bottom: 0;
}


/* ================================================================
   MOBILE & DEVICE COMPATIBILITY FIXES — v3
   Full responsive overhaul for all screen sizes
   ================================================================ */

/* ── 1. GLOBAL SAFE DEFAULTS ──────────────────────────────────── */
html {
    -webkit-text-size-adjust: 100%; /* prevent iOS font inflation */
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden; /* prevent horizontal scroll on all devices */
    min-width: 320px;   /* support iPhone SE and above */
}

/* All images: fluid and never overflow container */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Fluid embedded media */
video, iframe, embed, object {
    max-width: 100%;
}

/* ── 2. CONTENT CONTAINERS — fluid, never fixed-px overflow ────── */
/* Fix pages using hard-coded max-width in inline styles */
.prose-container,
.article-prose-container,
.guide-container,
.privacy-wrap,
.terms-wrap {
    width: 100%;
    max-width: 860px;
    box-sizing: border-box;
    padding-left: 20px;
    padding-right: 20px;
}

/* Any inline max-width should be capped by the viewport */
[style*="max-width"] {
    max-width: min(var(--mw, 1100px), 100%);
}

/* ── 3. NAVIGATION — Touch-friendly mobile menu ─────────────────── */

/* Hamburger: visible from 1024px down */
.menu-toggle {
    display: none;
    background: none;
    border: 1.5px solid rgba(255,255,255,0.55);
    color: white;
    padding: 8px 14px;
    cursor: pointer;
    border-radius: 4px;
    min-width: 44px;    /* 44px minimum touch target */
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

/* Nav links: 44px minimum touch height on mobile */
@media (max-width: 1024px) {
    .menu-toggle {
        display: flex;
    }

    .main-nav {
        display: none;
        width: 100%;
    }

    .main-nav.open,
    .main-nav.active {
        display: block !important;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #1a3d6e;
        z-index: 999;
        box-shadow: 0 8px 24px rgba(0,0,0,0.28);
        padding: 8px 0 16px;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }

    .main-nav ul li a {
        display: block;
        padding: 14px 24px;         /* min 44px touch height */
        font-size: 15px;
        color: rgba(255,255,255,0.92);
        border-bottom: 1px solid rgba(255,255,255,0.07);
        font-family: 'Noto Sans KR','Open Sans',sans-serif;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .main-nav ul li:last-child a {
        border-bottom: none;
    }

    .main-nav ul li a:hover,
    .main-nav ul li a.active {
        background: rgba(255,255,255,0.09);
        opacity: 1;
    }

    .main-header {
        position: sticky;
        top: 0;
        z-index: 1000;
    }
}

/* ── 4. HERO — responsive font scaling ──────────────────────────── */
@media (max-width: 768px) {
    .hero {
        min-height: 380px;
        padding: 48px 0;
    }
    .hero-content h1 {
        font-size: clamp(1.5rem, 5vw, 2rem);
        line-height: 1.25;
    }
    .hero-content p {
        font-size: clamp(0.95rem, 3vw, 1.1rem);
    }
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .btn-primary,
    .btn-secondary-outline,
    .btn-outline-brand {
        display: block;
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 320px;
    }
    .hero-content h1 {
        font-size: 1.4rem;
    }
}

/* ── 5. SECTION PADDING — tighter on mobile ──────────────────────── */
@media (max-width: 768px) {
    .section {
        padding-top: 48px !important;
        padding-bottom: 48px !important;
    }
    .credibility-section {
        padding-top: 36px !important;
        padding-bottom: 36px !important;
    }
    .section-header h2 {
        font-size: clamp(1.3rem, 4vw, 1.8rem);
    }
    .section-subtext {
        font-size: 1rem;
    }
}

/* ── 6. GRID SYSTEMS — responsive collapses ─────────────────────── */

/* Services */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .services-grid { grid-template-columns: 1fr; }
}

/* Industry tiles */
@media (max-width: 1024px) {
    .industry-grid-new { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .industry-grid-new { grid-template-columns: 1fr; }
    .industry-tile { aspect-ratio: 4 / 3; } /* shorter on small phones */
}

/* Credibility bar */
@media (max-width: 768px) {
    .credibility-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .cred-number { font-size: 28px; }
}
@media (max-width: 400px) {
    .credibility-grid { grid-template-columns: 1fr; }
}

/* Sector / positions / stats grids */
@media (max-width: 1024px) {
    .sector-grid { grid-template-columns: repeat(2, 1fr); }
    .positions-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .sector-grid { grid-template-columns: 1fr; }
    .positions-grid { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .contact-cards-prominent { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .stats-row { grid-template-columns: 1fr; }
}

/* Footer */
@media (max-width: 1024px) {
    .footer-grid-new { grid-template-columns: repeat(2, 1fr); gap: 28px; padding: 40px 0 28px; }
}
@media (max-width: 640px) {
    .footer-grid-new { grid-template-columns: 1fr; gap: 24px; padding: 32px 0 24px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; gap: 8px; }
    .footer-legal-links { gap: 12px; }
}

/* ── 7. ARTICLE PAGES — 2-col → 1-col layout ────────────────────── */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 24px 80px;
    box-sizing: border-box;
}

@media (max-width: 960px) {
    .article-layout {
        grid-template-columns: 1fr;
        padding: 36px 20px 64px;
        gap: 32px;
    }
    .article-sidebar {
        position: static !important;
    }
}

@media (max-width: 480px) {
    .article-layout {
        padding: 24px 16px 48px;
    }
    .article-body h3 {
        font-size: 1rem;
    }
    .article-body h2 {
        font-size: 1.1rem;
    }
    .article-body p,
    .article-body ul li {
        font-size: 0.97rem;
        line-height: 1.75;
    }
}

/* Article hero: tighter on small screens */
.article-hero-banner {
    padding: 56px 24px 48px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .article-hero-banner {
        padding: 40px 20px 36px;
    }
    .article-hero-banner h1 {
        font-size: clamp(1.25rem, 4.5vw, 1.75rem) !important;
    }
    .article-hero-kr {
        font-size: 0.9rem !important;
    }
    .article-hero-excerpt {
        font-size: 0.9rem !important;
    }
}

@media (max-width: 375px) {
    .article-hero-banner {
        padding: 32px 16px 28px;
    }
}

/* Sidebar boxes on mobile: horizontal scroll safe */
.sidebar-box, .sidebar-cta {
    box-sizing: border-box;
    width: 100%;
}

/* Korean summary block mobile */
@media (max-width: 640px) {
    .kr-summary {
        padding: 18px 16px;
    }
}

/* ── 8. INSIGHTS INDEX PAGE ──────────────────────────────────────── */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 24px auto 72px;
    padding: 0 20px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        padding: 0 16px;
        margin-bottom: 48px;
    }
}

@media (max-width: 520px) {
    .insights-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

/* Insights card: uniform height regardless of content length */
.insight-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

.insight-card h3 {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
}

/* Insights hero */
@media (max-width: 768px) {
    .insights-hero {
        padding: 48px 20px 40px;
    }
    .insights-hero h1 {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }
    .insights-filter {
        padding: 20px 16px 0;
        gap: 8px;
    }
    .filter-btn {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

/* Pillar banner: padding on mobile */
@media (max-width: 640px) {
    .insights-pillar-banner {
        margin-left: 16px !important;
        margin-right: 16px !important;
        padding: 18px 16px !important;
    }
}

/* ── 9. INSIGHTS KOREA PAGE — 2-col → 1-col ─────────────────────── */
.kr-cluster ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

@media (max-width: 640px) {
    .kr-cluster ul {
        grid-template-columns: 1fr;
    }
    .kr-hero {
        padding: 48px 20px 40px;
    }
    .kr-hero h1 {
        font-size: 1.5rem;
    }
    .kr-content {
        padding: 32px 16px 60px;
    }
}

/* ── 10. SPECIFIC PAGE FIXES ─────────────────────────────────────── */

/* Privacy & Terms: prevent 860px content from overflowing on narrow screens */
@media (max-width: 900px) {
    .privacy-content,
    .terms-content,
    [style*="max-width:860px"],
    [style*="max-width: 860px"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}

/* Solutions page center column */
@media (max-width: 600px) {
    [style*="max-width:560px"],
    [style*="max-width: 560px"] {
        max-width: 100% !important;
        width: 100% !important;
    }
}

/* Korea hiring framework */
@media (max-width: 820px) {
    [style*="max-width:780px"],
    [style*="max-width: 780px"],
    [style*="max-width:900px"],
    [style*="max-width: 900px"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .framework-stage {
        grid-template-columns: 50px 1fr;
    }
    .framework-activities {
        grid-template-columns: 1fr;
    }
}

/* Bilingual grid on employer guide */
@media (max-width: 768px) {
    .bilingual-grid {
        grid-template-columns: 1fr !important;
    }
    .guide-toc ol {
        columns: 1;
    }
}

/* Candidate cards */
@media (max-width: 768px) {
    .cand-header { flex-direction: column; gap: 6px; }
    .cand-stats { flex-wrap: wrap; gap: 12px; }
    .candidate-stat-row { grid-template-columns: 1fr; }
}

/* Contact action row */
@media (max-width: 540px) {
    .contact-action-row {
        flex-direction: column;
    }
    .btn-action {
        justify-content: center;
        width: 100%;
    }
}

/* PDF download block */
@media (max-width: 640px) {
    .pdf-download-block {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
}

/* ── 11. TYPOGRAPHY — readable on all screens ──────────────────── */

/* Body text: never below 15px on mobile */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    .article-desc,
    .insight-excerpt,
    .card p,
    .service-card p {
        font-size: 0.9rem;
    }
    .footer-col ul li a {
        font-size: 0.9rem;
    }
}

/* ── 12. TABLE — horizontal scroll on narrow screens ──────────── */
table {
    width: 100%;
    border-collapse: collapse;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* ── 13. PROCESS STEPS — horizontal → vertical on mobile ────────── */
@media (max-width: 768px) {
    .process-grid-new {
        flex-direction: column;
        align-items: center;
    }
    .process-step-new {
        width: 100%;
        max-width: 340px;
        flex-direction: row;
        text-align: left;
        padding: 14px 0;
        border-bottom: 1px solid #e5e7eb;
        gap: 14px;
    }
    .process-step-new:last-child { border-bottom: none; }
    .process-icon-wrap { flex-shrink: 0; margin-bottom: 0; }
    .process-connector { display: none; }
}

/* ── 14. CTA SECTION ─────────────────────────────────────────────── */
@media (max-width: 640px) {
    .cta-section h2 {
        font-size: clamp(1.3rem, 4vw, 1.8rem);
    }
    .article-cta-block {
        padding: 24px 18px;
        border-radius: 8px;
    }
    .article-cta-block h3 { font-size: 1.1rem; }
    .article-cta-block p { font-size: 0.95rem; }
}

/* ── 15. CASE STUDIES & FRAMEWORK ───────────────────────────────── */
@media (max-width: 768px) {
    .case-study-grid { grid-template-columns: 1fr; }
    .kr-trust-row { grid-template-columns: repeat(2, 1fr); }
    .related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 400px) {
    .kr-trust-row { grid-template-columns: 1fr; }
}

/* ── 16. ABOUT / LEADERSHIP ──────────────────────────────────────── */
@media (max-width: 768px) {
    .leadership-name { font-size: 1.8rem !important; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .founder-block { padding: 20px; }
    .ethics-grid { grid-template-columns: 1fr; }
}

/* ── 17. ROLES LIST ──────────────────────────────────────────────── */
@media (max-width: 900px) {
    .roles-list-unified { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
    .roles-list-unified { grid-template-columns: 1fr; }
}

/* ── 18. PRINT STYLES (bonus: clean print view) ──────────────────── */
@media print {
    .main-header,
    .main-footer,
    .menu-toggle,
    .article-sidebar,
    .sidebar-cta,
    .btn-primary,
    .btn-secondary-outline {
        display: none !important;
    }
    body {
        font-size: 12pt;
        color: #000;
    }
    .article-layout {
        grid-template-columns: 1fr;
    }
    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #555;
    }
}
