/* 1st theme style - 글자 크기 수정 */
:root {
    --primary-color: #0052cc;
    --secondary-color: #00a3ff;
    --accent-color: #ff6b35;
    --dark-blue: #001f3f;
    --light-gray: #f8fafc;
    --medium-gray: #64748b;
    --text-dark: #1e293b;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #0052cc 0%, #00a3ff 100%);
    --gradient-secondary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --shadow-soft: 0 4px 20px rgba(0, 82, 204, 0.15);
    --shadow-strong: 0 8px 40px rgba(0, 82, 204, 0.25);
}

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

body {
    font-family: "Noto Sans KR", "Inter", -apple-system, BlinkMacSystemFont,
        sans-serif;
    line-height: 1.5;
    color: var(--text-dark);
    overflow-x: hidden;
    word-break: keep-all;
    overflow-wrap: break-word;
    font-size: 14px;
    /* 3rd theme와 동일 */
}

.en-font {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 31, 63, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled {
    background: rgba(0, 31, 63, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    /* 3rd theme와 동일 */
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    /* 3rd theme와 동일 */
}

.logo {
    font-size: 1.6rem;
    /* 3rd theme와 동일 */
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.02em;
}

.logo-image {
    height: 36px;
    /* 3rd theme와 동일 */
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    /* 3rd theme와 동일 */
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.875rem;
    /* 3rd theme와 동일 */
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: white;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.lang-toggle {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem;
    border-radius: 6px;
    /* 3rd theme와 동일 */
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    width: 36px;
    /* 3rd theme와 동일 */
    height: 36px;
    /* 3rd theme와 동일 */
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    /* 3rd theme와 동일 */
    color: white;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="0.3" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.4" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

/* ✅ Hero 배경 영상 요소 스타일 */
.hero video.hero-bg-video {
    position: absolute;
    inset: 0; /* top, right, bottom, left 0 */
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15; /* 부드럽게 보이도록 */
    z-index: 0;
    pointer-events: none;
}
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    /* 3rd theme와 동일 */
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    /* 3rd theme와 동일한 비율 */
    gap: 3rem;
    /* 3rd theme와 동일 */
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    /* 3rd theme와 동일 */
    font-weight: 700;
    color: white;
    margin-bottom: 1.2rem;
    /* 3rd theme와 동일 */
    line-height: 1.1;
    /* 3rd theme와 동일 */
}

.hero-content .slogan {
    font-size: 1.1rem;
    /* 3rd theme와 동일 */
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    /* 3rd theme와 동일 */
    font-weight: 500;
    /* 3rd theme와 동일 */
}

.hero-content .description {
    font-size: 0.95rem;
    /* 3rd theme와 동일 */
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    /* 3rd theme와 동일 */
    line-height: 1.6;
    /* 3rd theme와 동일 */
    word-break: keep-all;
    overflow-wrap: break-word;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 0.875rem 1.75rem;
    /* 3rd theme와 동일 */
    border-radius: 6px;
    /* 3rd theme와 동일 */
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    /* 3rd theme와 동일 */
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 140px;
    /* 3rd theme와 동일 */
    justify-content: center;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    /* 3rd theme와 동일 */
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

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

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-graphic {
    width: 300px;
    /* 3rd theme와 동일 */
    height: 300px;
    /* 3rd theme와 동일 */
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    /* 3rd theme와 동일 */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-graphic::before {
    content: "🌐";
    font-size: 6rem;
    /* 3rd theme와 동일 */
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
        /* 3rd theme와 동일한 움직임 */
    }
}

/* Section Common Styles */
.section {
    padding: 4rem 0;
    /* 3rd theme와 동일 */
    position: relative;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    /* 3rd theme와 동일 */
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    /* 3rd theme와 동일 */
}

.section-title {
    font-size: 2.25rem;
    /* 3rd theme와 동일 */
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    font-size: 1rem;
    /* 3rd theme와 동일 */
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(0, 82, 204, 0.2),
        transparent
    );
    margin: 2.5rem 0;
    /* 3rd theme와 동일 */
}

/* About Section */
.about {
    background: var(--light-gray);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    /* 3rd theme와 동일 */
    align-items: start;
    margin-bottom: 3rem;
    /* 3rd theme와 동일 */
}

.about-content h3 {
    font-size: 1.25rem;
    /* 3rd theme와 동일 */
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-content p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    /* 3rd theme와 동일 */
    word-break: keep-all;
    overflow-wrap: break-word;
    font-size: 0.9rem;
    /* 3rd theme와 동일 */
}

.services-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 3rd theme와 동일한 레이아웃 */
    gap: 0.75rem;
    /* 3rd theme와 동일 */
}

.services-list li {
    padding: 0.75rem 1rem;
    /* 3rd theme와 동일 */
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    /* 3rd theme와 동일 */
    font-weight: 500;
    background: white;
    border-radius: 6px;
    /* 3rd theme와 동일 */
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    font-size: 0.875rem;
    /* 3rd theme와 동일 */
}

.services-list li:hover {
    transform: translateY(-1px);
    /* 3rd theme와 동일 */
    box-shadow: var(--shadow-strong);
}

.services-list li::before {
    content: "▸";
    color: var(--accent-color);
    font-size: 0.875rem;
    /* 3rd theme와 동일 */
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* 3rd theme와 동일 */
    gap: 1.5rem;
    /* 3rd theme와 동일 */
}

.strength-card {
    background: white;
    padding: 1.5rem;
    /* 3rd theme와 동일 */
    border-radius: 8px;
    /* 3rd theme와 동일 */
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 82, 204, 0.1);
    text-align: center;
    /* 3rd theme와 동일 */
}

.strength-card:hover {
    transform: translateY(-4px);
    /* 3rd theme와 동일 */
    box-shadow: var(--shadow-strong);
}

.strength-card .icon {
    font-size: 2rem;
    /* 3rd theme와 동일 */
    margin-bottom: 0.75rem;
    /* 3rd theme와 동일 */
    display: block;
}

.strength-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    /* 3rd theme와 동일 */
    font-size: 1rem;
    /* 3rd theme와 동일 */
    font-weight: 600;
}

.strength-card p {
    color: var(--medium-gray);
    line-height: 1.5;
    word-break: keep-all;
    overflow-wrap: break-word;
    font-size: 0.8rem;
    /* 3rd theme와 동일 */
}

/* Mission & Vision Section */
.mission-vision {
    background: var(--white);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    /* 3rd theme와 동일 */
    margin-bottom: 3rem;
    /* 3rd theme와 동일 */
}

.mv-card {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    /* 3rd theme와 동일 */
    border-radius: 8px;
    /* 3rd theme와 동일 */
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    /* 3rd theme와 동일한 스타일 */
    background: var(--gradient-primary);
}

.mv-card h3 {
    font-size: 1.4rem;
    /* 3rd theme와 동일 */
    margin-bottom: 1rem;
    /* 3rd theme와 동일 */
    position: relative;
    z-index: 2;
}

.mv-card p {
    font-size: 0.9rem;
    /* 3rd theme와 동일 */
    line-height: 1.6;
    position: relative;
    z-index: 2;
    opacity: 0.9;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.mission-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    /* 3rd theme와 동일 */
}

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

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

.mission-item {
    background: var(--light-gray);
    padding: 1.5rem;
    /* 3rd theme와 동일 */
    border-radius: 8px;
    /* 3rd theme와 동일 */
    border-left: 3px solid var(--accent-color);
    /* 3rd theme와 동일한 두께 */
    transition: all 0.3s ease;
}

.mission-item:hover {
    transform: translateY(-3px);
    /* 3rd theme와 동일 */
    box-shadow: var(--shadow-soft);
}

.mission-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    /* 3rd theme와 동일 */
    font-weight: 700;
    /* 3rd theme와 동일 */
    font-size: 1.4rem;
    /* 3rd theme와 동일 */
}

.mission-item p {
    color: var(--medium-gray);
    line-height: 1.5;
    word-break: keep-all;
    overflow-wrap: break-word;
    font-size: 0.875rem;
    /* 3rd theme와 동일 */
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    /* 3rd theme와 동일 */
    margin-top: 3rem;
    /* 3rd theme와 동일 */
}

.value-item {
    text-align: center;
    padding: 1.5rem 1rem;
    /* 3rd theme와 동일 */
    background: white;
    border-radius: 8px;
    /* 3rd theme와 동일 */
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    /* 3rd theme와 동일 */
    box-shadow: var(--shadow-strong);
}

.value-item .icon {
    font-size: 2.5rem;
    /* 3rd theme와 동일 */
    margin-bottom: 0.75rem;
    /* 3rd theme와 동일 */
    display: block;
}

.value-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    /* 3rd theme와 동일 */
}

.value-item .en-text {
    color: var(--medium-gray);
    font-size: 0.8rem;
    /* 3rd theme와 동일 */
    font-weight: 500;
    /* 3rd theme와 동일 */
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Services Section */
.services {
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    /* 3rd theme와 동일 */
}

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

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

.service-card {
    background: white;
    padding: 1.75rem;
    /* 3rd theme와 동일 */
    border-radius: 8px;
    /* 3rd theme와 동일 */
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    /* 3rd theme와 동일 */
    background: var(--gradient-primary);
}

.service-card:hover {
    transform: translateY(-5px);
    /* 3rd theme와 동일 */
    box-shadow: var(--shadow-strong);
}

.service-card .number {
    font-size: 1.75rem;
    /* 3rd theme와 동일 */
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    /* 3rd theme와 동일 */
    font-family: "JetBrains Mono", "Courier New", monospace;
    /* 3rd theme와 동일 */
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    /* 3rd theme와 동일 */
    font-size: 1.1rem;
    /* 3rd theme와 동일 */
    font-weight: 600;
    line-height: 1.3;
    /* 3rd theme와 동일 */
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    color: var(--medium-gray);
    padding: 0.4rem 0;
    /* 3rd theme와 동일 */
    position: relative;
    padding-left: 1.2rem;
    /* 3rd theme와 동일 */
    line-height: 1.4;
    /* 3rd theme와 동일 */
    font-size: 0.8rem;
    /* 3rd theme와 동일 */
}

.service-card li::before {
    content: "•";
    color: var(--accent-color);
    position: relative;
    left: 0;
    font-weight: bold;
}

/* Roadmap Section */
.roadmap {
    background: white;
}

.roadmap-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    /* 3rd theme와 동일 */
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    /* 3rd theme와 동일 */
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    /* 3rd theme와 동일 */
    border-radius: 8px;
    /* 3rd theme와 동일 */
    box-shadow: var(--shadow-soft);
    width: 45%;
    position: relative;
    border: 1px solid rgba(0, 82, 204, 0.1);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    width: 16px;
    /* 3rd theme와 동일 */
    height: 16px;
    /* 3rd theme와 동일 */
    background: var(--accent-color);
    border-radius: 50%;
    transform: translateX(-50%);
    border: 3px solid white;
    /* 3rd theme와 동일 */
    box-shadow: var(--shadow-soft);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    /* 3rd theme와 동일 */
}

.timeline-content .period {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
    /* 3rd theme와 동일 */
    font-size: 0.8rem;
    /* 3rd theme와 동일 */
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.timeline-content p {
    color: var(--medium-gray);
    line-height: 1.5;
    word-break: keep-all;
    overflow-wrap: break-word;
    font-size: 0.875rem;
    /* 3rd theme와 동일 */
}

/* Contact Section */
.contact {
    background: var(--gradient-primary);
    color: white;
}

.contact-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.25rem;
    /* 3rd theme와 동일 */
}

.contact p {
    font-size: 1rem;
    /* 3rd theme와 동일 */
    margin-bottom: 2rem;
    opacity: 0.9;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    /* 3rd theme와 동일 */
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-email {
    font-size: 1.2rem;
    /* 3rd theme와 동일 */
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    /* 3rd theme와 동일 */
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    /* 3rd theme와 동일 */
    transition: all 0.3s ease;
}

.contact-email:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: white;
    padding: 2.5rem 0 1.5rem;
    /* 3rd theme와 동일 */
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    /* 3rd theme와 동일 */
    text-align: center;
}

.footer-info {
    margin-bottom: 1.5rem;
    /* 3rd theme와 동일 */
    line-height: 1.6;
    /* 3rd theme와 동일 */
}

.footer-info h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    /* 3rd theme와 동일 */
}

.footer-info p {
    font-size: 0.875rem;
    /* 3rd theme와 동일 */
    margin-bottom: 0.4rem;
    /* 3rd theme와 동일 */
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    /* 3rd theme와 동일 */
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.875rem;
    /* 3rd theme와 동일 */
}

.footer-links a:hover {
    color: white;
}

.footer-copyright {
    padding-top: 1.5rem;
    /* 3rd theme와 동일 */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    /* 3rd theme와 동일 */
}

/* Language Toggle */
.lang-hidden {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-container {
        height: 65px;
        /* 3rd theme와 동일 */
        padding: 0 1rem;
        /* 3rd theme와 동일 */
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 20, 40, 0.98);
        /* 3rd theme와 유사한 투명도 */
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1.5rem;
        /* 3rd theme와 동일 */
        gap: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-right {
        gap: 0.5rem;
    }

    .logo {
        font-size: 1.4rem;
        /* 3rd theme와 동일 */
    }

    .logo-image {
        height: 32px;
        /* 3rd theme와 동일 */
    }

    .lang-toggle {
        width: 32px;
        /* 3rd theme와 동일 */
        height: 32px;
        /* 3rd theme와 동일 */
        font-size: 0.875rem;
        /* 3rd theme와 동일 */
    }

    .btn-primary,
    .btn-secondary {
        min-width: 120px;
        /* 3rd theme와 동일 */
        padding: 0.75rem 1.25rem;
        /* 3rd theme와 동일 */
        font-size: 0.8rem;
        /* 3rd theme와 동일 */
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
        /* 3rd theme와 동일 */
    }

    .hero-content h1 {
        font-size: 2.2rem;
        /* 3rd theme와 동일 */
    }

    .hero-content .slogan {
        font-size: 1rem;
        /* 3rd theme와 동일 */
    }

    .hero-content .description {
        font-size: 0.875rem;
        /* 3rd theme와 동일 */
    }

    .hero-graphic {
        width: 250px;
        /* 3rd theme와 동일 */
        height: 250px;
        /* 3rd theme와 동일 */
        order: -1;
    }

    .hero-graphic::before {
        font-size: 4rem;
        /* 3rd theme와 동일 */
    }

    /* Sections Mobile */
    .section {
        padding: 3rem 0;
        /* 3rd theme와 동일 */
    }

    .section-container {
        padding: 0 1rem;
        /* 3rd theme와 동일 */
    }

    .section-header {
        margin-bottom: 2rem;
        /* 3rd theme와 동일 */
    }

    .section-title {
        font-size: 1.75rem;
        /* 3rd theme와 동일 */
    }

    .section-subtitle {
        font-size: 0.9rem;
        /* 3rd theme와 동일 */
    }

    /* About Mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        /* 3rd theme와 동일 */
        margin-bottom: 2rem;
        /* 3rd theme와 동일 */
    }

    .about-content {
        padding: 1.5rem;
        /* 3rd theme와 동일 */
    }

    .services-list {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        /* 3rd theme와 동일 */
    }

    .services-list li {
        padding: 0.6rem 0.8rem;
        /* 3rd theme와 동일 */
        font-size: 0.8rem;
        /* 3rd theme와 동일 */
    }

    .strengths-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        /* 3rd theme와 동일 */
    }

    .strength-card {
        padding: 1.25rem;
        /* 3rd theme와 동일 */
        text-align: center;
    }

    .strength-card .icon {
        font-size: 1.75rem;
        /* 3rd theme와 동일 */
        margin-bottom: 0.5rem;
        /* 3rd theme와 동일 */
    }

    .strength-card h4 {
        font-size: 0.9rem;
        /* 3rd theme와 동일 */
        margin-bottom: 0.5rem;
        /* 3rd theme와 동일 */
    }

    .strength-card p {
        font-size: 0.75rem;
        /* 3rd theme와 동일 */
    }

    /* Mission & Vision Mobile */
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        /* 3rd theme와 동일 */
        margin-bottom: 2rem;
        /* 3rd theme와 동일 */
    }

    .mv-card {
        padding: 1.5rem;
        /* 3rd theme와 동일 */
    }

    .mv-card h3 {
        font-size: 1.2rem;
        /* 3rd theme와 동일 */
        margin-bottom: 0.75rem;
        /* 3rd theme와 동일 */
    }

    .mv-card p {
        font-size: 0.8rem;
        /* 3rd theme와 동일 */
    }

    .mission-list {
        grid-template-columns: 1fr;
        gap: 1rem;
        /* 3rd theme와 동일 */
    }

    .mission-item {
        padding: 1.25rem;
        /* 3rd theme와 동일 */
    }

    .mission-item h4 {
        font-size: 1.2rem;
        /* 3rd theme와 동일 */
        margin-bottom: 0.5rem;
        /* 3rd theme와 동일 */
    }

    .mission-item p {
        font-size: 0.8rem;
        /* 3rd theme와 동일 */
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        /* 3rd theme와 동일 */
        margin-top: 2rem;
        /* 3rd theme와 동일 */
    }

    .value-item {
        padding: 1.25rem 0.75rem;
        /* 3rd theme와 동일 */
    }

    .value-item .icon {
        font-size: 2rem;
        /* 3rd theme와 동일 */
        margin-bottom: 0.5rem;
        /* 3rd theme와 동일 */
    }

    .value-item h4 {
        font-size: 0.9rem;
        /* 3rd theme와 동일 */
        margin-bottom: 0.4rem;
        /* 3rd theme와 동일 */
    }

    .value-item .en-text {
        font-size: 0.75rem;
        /* 3rd theme와 동일 */
    }

    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        /* 3rd theme와 동일 */
    }

    .service-card {
        padding: 1.5rem;
        /* 3rd theme와 동일 */
    }

    .service-card .number {
        font-size: 1.5rem;
        /* 3rd theme와 동일 */
        margin-bottom: 0.5rem;
        /* 3rd theme와 동일 */
    }

    .service-card h3 {
        font-size: 1rem;
        /* 3rd theme와 동일 */
        margin-bottom: 0.75rem;
        /* 3rd theme와 동일 */
    }

    .service-card li {
        font-size: 0.75rem;
        /* 3rd theme와 동일 */
        padding: 0.3rem 0;
        /* 3rd theme와 동일 */
        line-height: 1.3;
        /* 3rd theme와 동일 */
    }

    /* Roadmap Mobile */
    .roadmap-timeline {
        max-width: 100%;
        padding: 0 1.5rem;
        /* 3rd theme와 동일 */
    }

    .roadmap-timeline::before {
        left: 1.5rem;
        /* 3rd theme와 동일 */
        width: 2px;
    }

    .timeline-item {
        flex-direction: column !important;
        margin-bottom: 2rem;
        /* 3rd theme와 동일 */
        align-items: flex-start;
    }

    .timeline-content {
        width: 100% !important;
        margin: 0 !important;
        margin-left: 2.5rem !important;
        /* 3rd theme와 동일 */
        padding: 1.25rem;
        /* 3rd theme와 동일 */
    }

    .timeline-dot {
        left: 1.5rem !important;
        /* 3rd theme와 동일 */
        transform: translateX(-50%);
        width: 14px;
        /* 3rd theme와 동일 */
        height: 14px;
        /* 3rd theme와 동일 */
        border: 2px solid white;
        /* 3rd theme와 동일 */
    }

    .timeline-content h3 {
        font-size: 1rem;
        /* 3rd theme와 동일 */
    }

    .timeline-content .period {
        font-size: 0.75rem;
        /* 3rd theme와 동일 */
        margin-bottom: 0.5rem;
        /* 3rd theme와 동일 */
    }

    .timeline-content p {
        font-size: 0.8rem;
        /* 3rd theme와 동일 */
        line-height: 1.4;
        /* 3rd theme와 동일 */
    }

    /* Contact Mobile */
    .contact-container {
        padding: 0 1rem;
        /* 3rd theme와 동일 */
    }

    .contact h2 {
        font-size: 1.75rem;
        /* 3rd theme와 동일 */
        margin-bottom: 0.75rem;
        /* 3rd theme와 동일 */
    }

    .contact p {
        font-size: 0.9rem;
        /* 3rd theme와 동일 */
        margin-bottom: 1.5rem;
        /* 3rd theme와 동일 */
    }

    .contact-info {
        padding: 1.5rem;
        /* 3rd theme와 동일 */
    }

    .contact-email {
        font-size: 1rem;
        /* 3rd theme와 동일 */
        padding: 0.875rem 1.25rem;
        /* 3rd theme와 동일 */
        flex-direction: column;
        gap: 0.3rem;
        /* 3rd theme와 동일 */
    }

    /* Footer Mobile */
    .footer {
        padding: 2rem 0 1.25rem;
        /* 3rd theme와 동일 */
    }

    .footer-content {
        padding: 0 1rem;
        /* 3rd theme와 동일 */
    }

    .footer-info {
        margin-bottom: 1.25rem;
        /* 3rd theme와 동일 */
        line-height: 1.5;
        /* 3rd theme와 동일 */
    }

    .footer-info h3 {
        font-size: 1rem;
        /* 3rd theme와 동일 */
        margin-bottom: 0.75rem;
        /* 3rd theme와 동일 */
    }

    .footer-info p {
        font-size: 0.8rem;
        /* 3rd theme와 동일 */
        margin-bottom: 0.3rem;
        /* 3rd theme와 동일 */
    }

    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
        /* 3rd theme와 동일 */
        margin-bottom: 1.25rem;
        /* 3rd theme와 동일 */
    }

    .footer-links a {
        font-size: 0.8rem;
        /* 3rd theme와 동일 */
    }

    .footer-copyright {
        font-size: 0.75rem;
        /* 3rd theme와 동일 */
        padding-top: 1.25rem;
        /* 3rd theme와 동일 */
    }

    .cta-buttons {
        justify-content: center;
        gap: 0.75rem;
        /* 3rd theme와 동일 */
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 0.75rem;
        /* 3rd theme와 동일 */
        height: 60px;
        /* 3rd theme와 동일 */
    }

    .logo {
        font-size: 1.25rem;
        /* 3rd theme와 동일 */
    }

    .logo-image {
        height: 28px;
        /* 3rd theme와 동일 */
    }

    .lang-toggle {
        width: 30px;
        /* 3rd theme와 동일 */
        height: 30px;
        /* 3rd theme와 동일 */
        font-size: 0.8rem;
        /* 3rd theme와 동일 */
    }

    .btn-primary,
    .btn-secondary {
        min-width: 110px;
        /* 3rd theme와 동일 */
        padding: 0.7rem 1rem;
        /* 3rd theme와 동일 */
        font-size: 0.75rem;
        /* 3rd theme와 동일 */
    }

    .section-container {
        padding: 0 0.75rem;
        /* 3rd theme와 동일 */
    }

    .hero-content h1 {
        font-size: 1.9rem;
        /* 3rd theme와 동일 */
    }

    .hero-graphic {
        width: 220px;
        /* 3rd theme와 동일 */
        height: 220px;
        /* 3rd theme와 동일 */
    }

    .hero-graphic::before {
        font-size: 3.5rem;
        /* 3rd theme와 동일 */
    }

    .section-title {
        font-size: 1.5rem;
        /* 3rd theme와 동일 */
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-item {
        padding: 1rem 0.5rem;
        /* 3rd theme와 동일 */
    }

    .service-card {
        padding: 1.25rem;
        /* 3rd theme와 동일 */
    }

    .mv-card {
        padding: 1.25rem;
        /* 3rd theme와 동일 */
    }

    .mission-item {
        padding: 1rem;
        /* 3rd theme와 동일 */
    }

    .strength-card {
        padding: 1rem;
        /* 3rd theme와 동일 */
    }

    .timeline-content {
        margin-left: 2.25rem !important;
        /* 3rd theme와 동일 */
        padding: 1rem;
        /* 3rd theme와 동일 */
    }

    .contact-info {
        padding: 1.25rem;
        /* 3rd theme와 동일 */
    }

    .contact-email {
        font-size: 0.9rem;
        /* 3rd theme와 동일 */
        padding: 0.75rem 1rem;
        /* 3rd theme와 동일 */
    }
}

/* Tablet Landscape (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-container {
        padding: 0 1.25rem;
        /* 3rd theme와 동일 */
    }

    .nav-menu {
        gap: 1.5rem;
        /* 3rd theme와 동일 */
    }

    .hero-container {
        gap: 2.5rem;
        /* 3rd theme와 동일 */
    }

    .hero-content h1 {
        font-size: 2.5rem;
        /* 3rd theme와 동일 */
    }

    .hero-graphic {
        width: 280px;
        /* 3rd theme와 동일 */
        height: 280px;
        /* 3rd theme와 동일 */
    }

    .section-title {
        font-size: 2rem;
        /* 3rd theme와 동일 */
    }

    .about-grid {
        gap: 2.5rem;
        /* 3rd theme와 동일 */
    }

    .strengths-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
        /* 3rd theme와 동일 */
    }

    .mv-grid {
        gap: 2rem;
        /* 3rd theme와 동일 */
    }

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

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

    .roadmap-timeline {
        max-width: 700px;
        /* 3rd theme와 동일 */
    }

    .timeline-content {
        width: 42%;
        /* 3rd theme와 동일 */
        padding: 1.75rem;
        /* 3rd theme와 동일 */
    }

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

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .nav-container {
        max-width: 1400px;
        padding: 0 3rem;
        /* 3rd theme와 동일 */
    }

    .section-container {
        max-width: 1400px;
        padding: 0 3rem;
        /* 3rd theme와 동일 */
    }

    .hero-container {
        max-width: 1400px;
        padding: 0 3rem;
        /* 3rd theme와 동일 */
        gap: 4rem;
        /* 3rd theme와 동일 */
    }

    .hero-content h1 {
        font-size: 3.5rem;
        /* 3rd theme와 동일 */
    }

    .hero-graphic {
        width: 350px;
        /* 3rd theme와 동일 */
        height: 350px;
        /* 3rd theme와 동일 */
    }

    .section-title {
        font-size: 2.5rem;
        /* 3rd theme와 동일 */
    }

    .strengths-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 2rem;
        /* 3rd theme와 동일 */
    }

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        /* 3rd theme와 동일 */
    }

    .roadmap-timeline {
        max-width: 1000px;
        /* 3rd theme와 동일 */
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    /* 3rd theme와 동일 */
    animation: fadeInUp 0.6s ease forwards;
    /* 3rd theme와 동일한 애니메이션 */
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Focus States for Accessibility - 3rd theme와 동일 */
.nav-link:focus,
.btn-primary:focus,
.btn-secondary:focus,
.lang-toggle:focus,
.contact-email:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Custom Scrollbar - 3rd theme와 유사하게 */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--medium-gray);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Selection Color */
::selection {
    background: var(--primary-color);
    color: white;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cta-buttons,
    .contact {
        display: none;
    }

    .section {
        padding: 1rem 0;
    }

    body {
        font-size: 10pt;
        line-height: 1.3;
        color: #000;
        background: #fff;
    }

    .section-title {
        font-size: 16pt;
        color: #000;
    }

    .strength-card,
    .service-card,
    .mission-item,
    .value-item,
    .mv-card,
    .timeline-content {
        background: #fff;
        border: 1px solid #ccc;
        color: #000;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #0066ff;
        --accent-color: #ff4400;
        --text-dark: #000000;
        --medium-gray: #333333;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-graphic::before {
        animation: none;
    }
}
