/* ============================================
   Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
     overflow-x: hidden;
 word-break: keep-all;
 overflow-wrap: break-word;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

/* ============================================
   Animations
   ============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(1.5rem);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Hero section should be visible immediately */
.hero .hero__content > * {
    opacity: 0;
    transform: translateY(1.5rem);
    animation: fadeUpHero 0.8s ease forwards;
}

.hero__title {
    animation-delay: 0.2s;
}

.hero__subtitle {
    animation-delay: 0.4s;
}

.hero__cta {
    animation-delay: 0.6s;
}

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

/* ============================================
   Container
   ============================================ */
.container {
    max-width: 75rem; /* 1200px */
    margin: 0 auto;
    padding: 0 1.25rem; /* 20px */
}

/* ============================================
   Section Titles
   ============================================ */
.section__title {
    font-size: 2.5rem; /* 40px */
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section__subtitle {
    font-size: 1.125rem; /* 18px */
    text-align: center;
    color: #666;
    margin-bottom: 3.75rem; /* 60px */
}

/* ============================================
   Header
   ============================================ */
   .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0; /* 20px */
}

.header__logo img {
    height: 3.2rem; /* 40px */
    width: auto;
}

.header__nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav__list {
    display: flex;
    gap: 3rem; /* 48px */
}

.nav__item {
    position: relative;
}

.nav__link {
    font-size: 1.25rem;
    font-weight: 500;
    color: #333;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0;
}

.nav__item--dropdown .nav__link::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 0.25rem solid transparent;
    border-right: 0.25rem solid transparent;
    border-top: 0.3125rem solid currentColor;
    transition: transform 0.3s;
}

.nav__item--dropdown:hover .nav__link::after {
    transform: rotate(180deg);
}

.nav__item:hover > .nav__link {
    color: #0076C3;
}

/* Dropdown Menu */
.nav__dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    min-width: 15rem; /* 240px */
    padding: 1rem 0;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    transform: translateX(-50%) translateY(-0.625rem);
    z-index: 100;
}

.nav__item--dropdown:hover .nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav__dropdown li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__dropdown a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem; /* 15px */
    color: #333;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
    width: 100%;
    box-sizing: border-box;
}

.nav__dropdown a:hover {
    background: #f5f8ff;
    color: #0076C3;
}

.header__mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 0.375rem; /* 6px */
    width: 1.875rem; /* 30px */
}

.header__mobile-toggle span {
    width: 100%;
    height: 0.1875rem; /* 3px */
    background: #333;
    border-radius: 0.125rem;
    transition: all 0.3s;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    height: 46.25rem; /* 900px */
    min-height: 37.5rem; /* 600px */
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.hero .container {
    width: 100%;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero__background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.35) 0%, rgba(2, 16, 51, 0.25) 100%);
    z-index: 1;
}

.hero__background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero__content {
    text-align: left;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero__title {
    font-size: 3.5rem; /* 56px */
    font-weight: 700;
    margin-bottom: 1.5rem; /* 24px */
    line-height: 1.3;
    max-width: 100%;
}

.hero__subtitle {
    font-size: 1.25rem; /* 20px */
    margin-bottom: 2.5rem; /* 40px */
    opacity: 0.9;
    max-width: 100%;
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem; /* 10px */
    padding: 1rem 2rem; /* 16px 32px */
    background: transparent;
    border: 0.125rem solid #fff; /* 2px */
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem; /* 8px */
    transition: all 0.3s;
}

.hero__cta:hover {
    background: #fff;
    color: #0076C3;
}

.hero__cta svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* ============================================
   About Section
   ============================================ */
.about {
    padding: 7.25rem 0; /* 140px */
    background: #fff;
}

.about__inner {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5rem; /* 80px */
    align-items: stretch;
}

.about__content {
    padding-right: 2rem;
}

.about__content .section__title {
    text-align: left;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.about__content .section__subtitle {
    text-align: left;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #111;
}

.about__description {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #555;
    margin-bottom: 3rem; /* 48px */
}

.about__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem; /* 32px */
}

.feature__card {
    text-align: center;
}

.feature__icon {
    width: 6rem;
    height: 6rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0076C3;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 118, 195, 0.2);
    transition: all 0.3s ease;
}

.feature__card:hover .feature__icon {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 118, 195, 0.3);
}

.feature__icon svg {
    width: 2.5rem;
    height: 2.5rem;
    fill: white;
}

.feature__icon img {
    width: 2.5rem;
    height: 2.5rem;
    filter: brightness(0) invert(1);
}

.feature__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #333;
}

.feature__text {
    font-size: 1.125rem;
    color: #666;
}

.about__visual {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    height: 100%;
    min-height: 31.25rem; /* 500px */
    display: flex;
    align-items: center;
}

.about__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ============================================
   Business Section
   ============================================ */
.business {
    padding: 6.25rem 0; /* 140px */
    background: url(../images/business-areas.png) no-repeat center center;
    background-size: cover;
    color: #fff;
}

.business .section__title,
.business .section__subtitle {
    color: #000;
}

.business__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem; /* 24px */
}

.business__card {
    position: relative;
    overflow: hidden;
    min-height: 22rem; /* 352px */
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.business__card:hover {
    transform: translateY(-0.5rem);
}

.business__card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.business__card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.business__card:hover .business__card-image::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.business__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.business__card:hover .business__card-image img {
    transform: scale(1.05);
}

.business__card-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
}

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

.business__card-title {
    font-size: 1.5rem; /* 24px */
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.business__card-link {
    display: flex;
    align-items: center;
    color: #fff;
    width: 1.5rem;
    height: 1.5rem;
}

.business__card-link svg {
    width: 100%;
    height: 100%;
}

.business__card-text {
    font-size: 0.9375rem; /* 15px */
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
}

/* ============================================
   Solutions Section
   ============================================ */
.solutions {
    padding: 7.25rem 0; /* 140px */
    background: #1a1a2e url(../images/solutions-bg.jpg) no-repeat center center;
    background-size: cover;
    position: relative;
    color: #fff;
}

.solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

.solutions .container {
    position: relative;
    z-index: 1;
}

.solutions .section__title,
.solutions .section__subtitle {
    color: #fff;
}

.solutions__slider {
    position: relative;
    padding: 0 4rem; /* 64px */
}

.solutions__slider-wrapper {
    overflow: hidden;
}

.solutions__slider-track {
    display: flex;
    gap: 2rem; /* 32px */
    transition: transform 0.5s ease;
}

.solution__card {
    flex: 0 0 calc(33.333% - 1.333rem); /* 3 cards visible */
    background: #fff;
    border-radius: 0.5rem;
    overflow: hidden;
    color: #333;
    display: flex;
    flex-direction: column;
}

.solution__card-content {
    padding: 2rem 1.5rem 1.5rem;
    flex: 1;
}

.solution__card-title {
    font-size: 1.375rem; /* 22px */
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.solution__card-text {
    font-size: 0.9375rem; /* 15px */
    color: #666;
    line-height: 1.6;
}

.solution__card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    order: 2;
}

.solution__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3.5rem; /* 56px */
    height: 3.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
    z-index: 10;
}

.slider__btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.slider__btn--prev {
    left: 0;
}

.slider__btn--next {
    right: 0;
}

.slider__btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* ============================================
   Partners Section
   ============================================ */
/* ============================================
   Vision Section
   ============================================ */
.vision-section {
    padding: 6.25rem 0;
    background: #f8f9fa;
}

.vision-grid {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.vision-item {
    position: relative;
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: 1rem;
    border: 1px solid #e5e5e5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    opacity: 1;
    text-align: center;
}

.vision-item.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.vision-item:nth-child(1) {
    transition-delay: 0s;
}

.vision-item:nth-child(2) {
    transition-delay: 0.1s;
}

.vision-item:nth-child(3) {
    transition-delay: 0.2s;
}

.vision-item:nth-child(4) {
    transition-delay: 0.3s;
}

.vision-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-8px);
    border-color: #0076C3;
}

.vision-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0076C3;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.vision-item__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
}

.vision-item__text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* ============================================
   CTA Section
   ============================================ */
.cta {
    position: relative;
    padding: 7.25rem 0; /* 140px */
    color: #fff;
    overflow: hidden;
 
}

.cta__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.cta__background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.cta__content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta .container {
    position: relative;
    z-index: 2;
}

.cta__title {
    font-size: 2.5rem; /* 40px */
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.cta__subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.95;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    border-top: 1px solid #e5e5e5;
    background: #fff;
    color: #555;
    padding: 3rem 0; /* 48px */
}

.footer__content {
    text-align: center;
}

.footer__text {
    font-size: 0.875rem; /* 14px */
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.footer__copyright {
    font-size: 0.875rem;
}

/* ============================================
   Scroll To Top Button
   ============================================ */
.scroll-to-top {
    position: fixed;
    bottom: 2rem; /* 32px */
    right: 2rem; /* 32px */
    width: 3.5rem; /* 56px */
    height: 3.5rem; /* 56px */
    background: #0066ff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 102, 255, 0.3);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(1rem);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: #0052cc;
    transform: translateY(-0.25rem);
    box-shadow: 0 0.75rem 2rem rgba(0, 102, 255, 0.4);
}

.scroll-to-top:active {
    transform: translateY(0);
}

.scroll-to-top svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* ============================================
   Responsive Design
   ============================================ */

/* Tablet (768px ~ 1024px) */
@media (max-width: 64rem) {
    .section__title {
        font-size: 2rem; /* 32px */
    }

    .section__subtitle {
        font-size: 1rem;
    }

    /* Header Navigation - Tablet */
    .nav__list {
        gap: 2rem; /* Reduced gap for tablet */
    }

    .nav__link {
        font-size: 0.9375rem; /* 15px */
    }

    .nav__dropdown {
        min-width: 12.5rem; /* 200px */
    }

    .nav__dropdown a {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }

    /* Hero - Tablet */
    .hero {
        height: 43.75rem; /* 700px */
    }

    /* About */
    .about__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about__content {
        padding-right: 0;
    }

    .about__features {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Business */
    .business__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Solutions */
    .solution__card {
        flex: 0 0 calc(50% - 1rem); /* 2 cards visible */
    }

    /* Partners */
    /* Vision Section */
    .vision-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .vision-item {
        padding: 2rem 1.5rem;
    }

    .vision-number {
        font-size: 2.5rem;
    }

    .vision-item__title {
        font-size: 1.2rem;
    }

    .vision-item__text {
        font-size: 0.9rem;
    }

    .partner__logo img {
        height: 5rem; /* 80px */
        max-width: 13rem;
    }

    /* CTA */
    .cta__title {
        font-size: 2rem;
    }

    .cta__subtitle {
        font-size: 1.125rem;
    }
}

/* Mobile (< 768px) */
@media (max-width: 48rem) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 1rem;
    }

    .header{
        width: 100vw;
    }
    /* Header */
    .header__nav {
        position: fixed;
        top: 5rem;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.3s;
        max-height: calc(100vh - 5rem);
        overflow-y: auto;
    }

    .header__nav.active {
        transform: translateY(0);
    }

    .nav__list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav__item {
        text-align: left;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav__item:last-child {
        border-bottom: none;
    }

    .nav__link {
        padding: 1rem 2.5rem 1rem 1rem;
        position: relative;
        display: block;
        width: 100%;
    }

    /* Hide desktop dropdown arrow on mobile */
    .nav__item--dropdown .nav__link::after {
        /* Desktop triangle arrow - hide on mobile */
        display: none;
    }

    /* Mobile dropdown arrow */
    .nav__item--dropdown .nav__link::before {
        content: '';
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%) rotate(-45deg);
        width: 0.5rem;
        height: 0.5rem;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transition: transform 0.3s;
    }

    .nav__item--dropdown.active .nav__link::before {
        transform: translateY(-50%) rotate(45deg);
    }

    /* Mobile Dropdown */
    .nav__dropdown {
        position: static !important;
        transform: none !important;
        box-shadow: none;
        border-radius: 0;
        background: transparent;
        padding: 0;
        min-width: auto;
        max-height: 0;
        overflow: hidden;
        opacity: 1 !important;
        visibility: visible !important;
        transition: max-height 0.25s ease;
        left: auto !important;
        top: auto !important;
    }

    /* Disable desktop hover on mobile */
    .nav__item--dropdown:hover .nav__dropdown {
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 0;
    }

    .nav__item--dropdown.active .nav__dropdown {
        max-height: 31.25rem; /* 500px */
        background: #f8f9fa;
        padding: 0.5rem 0;
        opacity: 1;
        visibility: visible;
    }

    .nav__dropdown li {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav__dropdown a {
        display: block !important;
        padding: 0.75rem 1.5rem 0.75rem 2.5rem;
        font-size: 0.875rem !important;
        color: #333 !important;
        width: 100%;
        box-sizing: border-box;
        word-break: keep-all;
        white-space: normal;
        line-height: 1.5;
        transition: background 0.2s ease;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .nav__dropdown a:hover {
        background: #e9ecef;
        color: #0066ff !important;
    }

    .header__mobile-toggle {
        display: flex;
    }

    .header__mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(0.375rem, 0.375rem);
    }

    .header__mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .header__mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(0.375rem, -0.375rem);
    }

    /* Hero */
    .hero {
        height: 100vh;
        min-height: 31.25rem; /* 500px */
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    /* About */
    .about {
        padding: 2.5rem 0;
    }

    .about__visual {
        min-height: 25rem; /* 400px */
    }

    .about__features {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    /* Business */
    .business {
        padding: 5rem 0;
    }

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

    /* Solutions */
    .solutions {
        padding: 5rem 0;
    }

    .solutions__slider {
        padding: 0 3rem;
    }

    .solutions__slider-wrapper {
        overflow: hidden;
        width: 100%;
        margin: 0;
    }

    .solutions__slider-track {
        gap: 1.5rem;
        padding: 0;
    }

    .solution__card {
        flex: 0 0 100%;
        scroll-snap-align: start;
    }

    .slider__btn {
        width: 2.5rem;
        height: 2.5rem;
        z-index: 10;
    }

    .slider__btn--prev {
        left: 0.25rem;
    }

    .slider__btn--next {
        right: 0.25rem;
    }

    /* Partners */
    /* Vision Section */
    .vision-section {
        padding: 5rem 0;
    }

    .vision-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .vision-item {
        padding: 2rem 1.5rem;
    }

    .vision-number {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .vision-item__title {
        font-size: 1.15rem;
    }

    .vision-item__text {
        font-size: 0.9rem;
    }

    .partner__logo img {
        height: 4rem; /* 64px */
        max-width: 10rem;
    }

    /* CTA */
    .cta {
        padding: 5rem 0;
        word-break: keep-all;
    }

    .cta__title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .cta__subtitle {
        font-size: 1rem;
    }

    /* Footer */
    .footer {
        padding: 2rem 0;
    }

    /* Scroll To Top - Mobile */
    .scroll-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 3rem; /* 48px */
        height: 3rem; /* 48px */
    }

    .scroll-to-top svg {
        width: 1.25rem;
        height: 1.25rem;
    }
}




/* 초기화 */

label, input, button, select, img {vertical-align:middle;font-size:1em}
input, button {margin:0;padding:0;font-family:'Malgun Gothic', dotum, sans-serif;font-size:1em}
input[type="submit"] {cursor:pointer}
button {cursor:pointer}

textarea, select {font-family:'Malgun Gothic', dotum, sans-serif;font-size:1em}
select {margin:0}
p {margin:0;padding:0;word-break:break-all}
hr {display:none}
pre {overflow-x:scroll;font-size:1.1em}
a {color:#000;text-decoration:none}

*, :after, :before {
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  box-sizing:border-box;
}

input[type=text],input[type=password], textarea {
-webkit-transition:all 0.30s ease-in-out;
-moz-transition:all 0.30s ease-in-out;
-ms-transition:all 0.30s ease-in-out;
-o-transition:all 0.30s ease-in-out;
outline:none;
}

input[type=text]:focus,input[type=password]:focus, textarea:focus,select:focus {
-webkit-box-shadow:0 0 5px #9ed4ff;
-moz-box-shadow:0 0 5px #9ed4ff;
box-shadow:0 0 5px #9ed4ff;
border:1px solid #558ab7 !important;
}

.placeholdersjs {color:#aaa !important}

/* 레이아웃 크기 지정 */
#hd, #wrapper, #ft {min-width:1200px}

#hd_pop,
#hd_wrapper,
#tnb .inner,

#gnb .gnb_wrap,
#container_wr,
#ft_wr {width:1200px}

/* 공통 - display none/block */
.is-hidden { display: none !important; }
.is-visible { display: block !important; }

/* 공통 - 뷰포트 (pc / mobile) 별 display none/block */
.pc-only { display: none; }
@media (min-width: 769px) { .pc-only { display: block !important; }}
.mobile-only { display: block; }
@media (min-width: 769px) { .mobile-only { display: none !important; }}

/* 팝업레이어 */
#hd_pop {z-index:1000;position:relative;margin:0 auto;height:0}
#hd_pop h2 {position:absolute;font-size:0;line-height:0;overflow:hidden}
.hd_pops {position:absolute;border:1px solid #e9e9e9;background:#fff}
.hd_pops img {max-width:100%}
.hd_pops_con {}
.hd_pops_footer {padding:0;background:#000;color:#fff;text-align:left;position:relative}
.hd_pops_footer:after {display:block;visibility:hidden;clear:both;content:""}
.hd_pops_footer button {padding:10px;border:0;color:#fff}
.hd_pops_footer .hd_pops_reject {background:#000;text-align:left}
.hd_pops_footer .hd_pops_close {background:#393939;position:absolute;top:0;right:0}

/* 상단 레이아웃 */
#hd {background:#212020}
#hd_h1 {position:absolute;font-size:0;line-height:0;overflow:hidden}

#tnb {border-bottom:1px solid #383838;margin:0 auto}
#tnb:after {display:block;visibility:hidden;clear:both;content:""}
#tnb .inner {margin:0 auto}

#hd_wrapper {position:relative;margin:0 auto;height:140px;zoom:1}
#hd_wrapper:after {display:block;visibility:hidden;clear:both;content:""}

#logo {float:left;padding:30px 0 0}

.hd_sch_wr {float:left;padding:30px 0;width:445px;margin-left:65px}
#hd_sch h3 {position:absolute;font-size:0;line-height:0;overflow:hidden}
#hd_sch {border-radius:30px;overflow:hidden}
#hd_sch #sch_stx {float:left;width:385px;height:45px;padding-left:10px;border-radius:30px 0 0 30px;background:#2c2c2c;border:0;border-right:0;font-size:1.25em;color:#fff}
#hd_sch #sch_submit {float:left;width:60px;height:45px;border:0;background:#2c2c2c;color:#fff;border-radius:0 30px 30px 0;cursor:pointer;font-size:16px}

#hd_define {float:left}
#hd_define:after {display:block;visibility:hidden;clear:both;content:""}
#hd_define li {float:left;font-size:1.083em;line-height:14px;border-right:1px solid #4a4a4a;position:relative;text-align:center;margin:15px 10px 15px 0;padding-right:10px}
#hd_define li:last-child {padding-right:0;margin-right:0;border-right:0}
#hd_define li a {display:inline-block;color:#919191}
#hd_define li.active a {color:#fff}

#hd_qnb {float:right;text-align:right}
#hd_qnb:after {display:block;visibility:hidden;clear:both;content:""}
#hd_qnb li {float:left;font-size:1.083em;line-height:14px;border-right:1px solid #4a4a4a;position:relative;text-align:center;margin:15px 10px 15px 0;padding-right:10px}
#hd_qnb li:last-child {padding-right:0;margin-right:0;border-right:0}
#hd_qnb li span {display:block;margin-top:5px;font-size:0.92em}
#hd_qnb li a {display:inline-block;color:#919191}
#hd_qnb .visit .visit-num {display:inline-block;line-height:16px;padding:0 5px;margin-left:5px;border-radius:10px;background:#da22f5;color:#fff;font-size:10px}


.hd_login {position:absolute;right:0;top:60px}
.hd_login li {float:left;margin:0 5px;border-left:1px solid #616161;padding-left:10px;line-height:13px}
.hd_login li:first-child {border-left:0}
.hd_login a {color:#fff}


/* 메인메뉴 */
#gnb {position:relative;background:#fff}
#gnb > h2 {position:absolute;font-size:0;line-height:0;overflow:hidden}
#gnb .gnb_wrap {margin:0 auto;position:relative}
#gnb .gnb_wrap:hover, #gnb .gnb_wrap:focus, #gnb .gnb_wrap:active{z-index:3}
#gnb #gnb_1dul {font-size:1.083em;padding:0;border-bottom:1px solid #e0e2e5;zoom:1}
#gnb ul:after {display:block;visibility:hidden;clear:both;content:""}
#gnb .gnb_1dli {float:left;line-height:55px;padding:0px;position:relative}
#gnb .gnb_1dli:hover > a {color:#3a8afd;
-webkit-transition:background-color 2s ease-out;
-moz-transition:background-color 0.3s ease-out;
-o-transition:background-color 0.3s ease-out;
transition:background-color 0.3s ease-out}

.gnb_1dli .bg {position:absolute;top:24px;right:8px;display:inline-block;width:10px;height:10px;overflow:hidden;background:url('./images/gnb_bg2.gif') no-repeat 50% 50%;text-indent:-999px}
.gnb_1da {display:block;font-weight:bold;padding:0 15px;color:#080808;text-decoration:none}
.gnb_1dli.gnb_al_li_plus .gnb_1da{padding-right:25px}
.gnb_2dli:first-child {border:0}
.gnb_2dul {display:none;position:absolute;top:54px;min-width:140px;padding-top:2px}
.gnb_2dul .gnb_2dul_box {border:1px solid #e0e2e5;border-top:0;padding:0;
-webkit-box-shadow:0px 1px 5px rgba(97, 97, 97, 0.2);
-moz-box-shadow:0px 1px 5px rgba(97, 97, 97, 0.2);
box-shadow:0px 1px 5px rgba(97, 97, 97, 0.2)}
.gnb_2da {display:block;padding:0 10px;line-height:40px;background:#fff;color:#080808;text-align:left;text-decoration:none}
a.gnb_2da:hover {color:#3a8afd;background:#f7f7f8;
-moz-transition:all 0.3s ease-out;
-o-transition:all 0.3s ease-out;
transition:all 0.3s ease-out}

.gnb_1dli_air .gnb_2da {}
.gnb_1dli_on .gnb_2da {}
.gnb_2da:focus, .gnb_2da:hover {color:#fff}
.gnb_1dli_over .gnb_2dul {display:block;left:0}
.gnb_1dli_over2 .gnb_2dul {display:block;right:0}
.gnb_wrap .gnb_empty {padding:10px 0;width:100%;text-align:center;line-height:2.7em;color:#080808}
.gnb_wrap .gnb_empty a {color:#3a8afd;text-decoration:underline}
.gnb_wrap .gnb_al_ul .gnb_empty, .gnb_wrap .gnb_al_ul .gnb_empty a {color:#555}

#gnb .gnb_menu_btn {background:#4158d1;color:#fff;width:50px;height:55px;border:0;vertical-align:top;font-size:18px}
#gnb .gnb_close_btn {background:#fff;color:#b6b9bb;width:50px;height:50px;border:0;vertical-align:top;font-size:18px;position:absolute;top:0;right:0}
#gnb .gnb_mnal {float:right;padding:0}

#gnb_all {display:none;position:absolute;border:1px solid #c5d6da;width:100%;background:#fff;z-index:1000;-webkit-box-shadow:0 2px 5px rgba(0,0,0,0.2);
-moz-box-shadow:0 2px 5px rgba(0,0,0,0.2);
box-shadow:0 2px 5px rgba(0,0,0,0.2)}
#gnb_all h2 {font-size:1.3em;padding:15px 20px;border-bottom:1px solid #e7eeef}
#gnb_all .gnb_al_ul:after {display:block;visibility:hidden;clear:both;content:""}
#gnb_all .gnb_al_ul > li:nth-child(5n+1) {border-left:0}
#gnb_all .gnb_al_li {float:left;width:20%;min-height:150px;padding:20px;border-left:1px solid #e7eeef}
#gnb_all .gnb_al_li .gnb_al_a {font-size:1.2em;display:block;position:relative;margin-bottom:10px;font-weight:bold;color:#3a8afd}
#gnb_all .gnb_al_li li {line-height:2em}
#gnb_all .gnb_al_li li a {color:#555}
#gnb_all_bg {display:none;background:rgba(0,0,0,0.1);width:100%;height:100%;position:fixed;left:0;top:0;z-index:999}

/* 중간 레이아웃 */
#wrapper {}
#container_wr:after {display:block;visibility:hidden;clear:both;content:""}
#container_wr {margin:0 auto;zoom:1}
#aside {float:right;width:235px;padding:0;height:100%;margin:20px 0 20px 20px}

#container {position:relative;float:left;min-height:500px;height:auto !important;margin:20px 0;height:500px;font-size:1em;width:930px;zoom:1}
#container:after {display:block;visibility:hidden;clear:both;content:""}
#container_title {font-size:1.333em;margin:0 auto;font-weight:bold}
#container_title span {margin:0 auto 10px;display:block;line-height:30px}

.lt_wr {width:32%}
.lt_wr:nth-child(3n+1) {clear:both}
.latest_wr {margin-bottom:20px}
.latest_wr:after {display:block;visibility:hidden;clear:both;content:""}
.latest_top_wr {margin:0 -10px 20px}
.latest_top_wr:after {display:block;visibility:hidden;clear:both;content:""}

/* 하단 레이아웃 */
#ft {background:#212020;margin:0 auto;text-align:center}
#ft h1 {position:absolute;font-size:0;line-height:0;overflow:hidden}
#ft_wr {max-width:1240px;margin:0;padding:40px 0;position:relative;display:inline-block;text-align:left}
#ft_wr:after {display:block;visibility:hidden;clear:both;content:""}
#ft_wr .ft_cnt {width:25%;float:left;padding:0 20px}

#ft_link {text-align:left}
#ft_link a {display:block;color:#fff;line-height:2em;font-weight:bold}
#ft_company h2 {font-size:1.2em;margin-bottom:20px}
#ft_company {font-weight:normal;color:#e3e3e3;line-height:2em}
#ft_catch {margin:20px 0 10px}
#ft_copy {text-align:center;width:1200px;margin:0 auto;padding:20px 0;color:#5b5b5b;font-size:0.92em;border-top:1px solid #383838}
#top_btn {position:fixed;bottom:20px;right:20px;width:50px;height:50px;line-height:46px;border:2px solid #333;color:#333;text-align:center;font-size:15px;z-index:90;background:rgba(255,255,255,0.5)}
#top_btn:hover {border-color:#3059c7;background:#3059c7;color:#fff}

/* 게시물 선택복사 선택이동 */
#copymove {}
#copymove .win_desc {text-align:center;display:block}
#copymove .tbl_wrap {margin:20px}
#copymove .win_btn {padding:0 20px 20px}
.copymove_current {float:right;background:#ff3061;padding:5px;color:#fff;border-radius:3px}
.copymove_currentbg {background:#f4f4f4}

/* 화면낭독기 사용자용 */
#hd_login_msg {position:absolute;top:0;left:0;font-size:0;line-height:0;overflow:hidden}
.msg_sound_only, .sound_only {display:inline-block !important;position:absolute;top:0;left:0;width:0;height:0;margin:0 !important;padding:0 !important;font-size:0;line-height:0;border:0 !important;overflow:hidden !important}

/* 본문 바로가기 */
#skip_to_container a {z-index:100000;position:absolute;top:0;left:0;width:1px;height:1px;font-size:0;line-height:0;overflow:hidden}
#skip_to_container a:focus, #skip_to_container a:active {width:100%;height:75px;background:#21272e;color:#fff;font-size:2em;font-weight:bold;text-align:center;text-decoration:none;line-height:3.3em}

/* ie6 이미지 너비 지정 */
.img_fix {width:100%;height:auto}

/* 캡챠 자동등록(입력)방지 기본 -pc */
#captcha {display:inline-block;position:relative}
#captcha legend {position:absolute;margin:0;padding:0;font-size:0;line-height:0;text-indent:-9999em;overflow:hidden}
#captcha #captcha_img {height:40px;border:1px solid #898989;vertical-align:top;padding:0;margin:0}
#captcha #captcha_mp3 {margin:0;padding:0;width:40px;height:40px;border:0;background:transparent;vertical-align:middle;overflow:hidden;cursor:pointer;background:url('../img/captcha2.png') no-repeat;text-indent:-999px;border-radius:3px}
#captcha #captcha_reload {margin:0;padding:0;width:40px;height:40px;border:0;background:transparent;vertical-align:middle;overflow:hidden;cursor:pointer;background:url('../img/captcha2.png') no-repeat 0 -40px;text-indent:-999px;border-radius:3px}
#captcha #captcha_key {margin:0 0 0 3px;padding:0 5px;width:90px;height:40px;border:1px solid #ccc;background:#fff;font-size:1.333em;font-weight:bold;text-align:center;border-radius:3px;vertical-align:top}
#captcha #captcha_info {display:block;margin:5px 0 0;font-size:0.95em;letter-spacing:-0.1em}

/* 캡챠 자동등록(입력)방지 기본 - mobile */
#captcha.m_captcha audio {display:block;margin:0 0 5px;width:187px}
#captcha.m_captcha #captcha_img {width:160px;height:60px;border:1px solid #e9e9e9;margin-bottom:3px;margin-top:5px;display:block}
#captcha.m_captcha #captcha_reload {position:static;margin:0;padding:0;width:40px;height:40px;border:0;background:transparent;vertical-align:middle;overflow:hidden;cursor:pointer;background:url('../img/captcha2.png') no-repeat 0 -40px;text-indent:-999px}
#captcha.m_captcha #captcha_reload span {display:none}
#captcha.m_captcha #captcha_key {margin:0;padding:0 5px;width:115px;height:29px;border:1px solid #b8c9c2;background:#f7f7f7;font-size:1.333em;font-weight:bold;text-align:center;line-height:29px;margin-left:3px}
#captcha.m_captcha #captcha_info {display:block;margin:5px 0 0;font-size:0.95em;letter-spacing:-0.1em}
#captcha.m_captcha #captcha_mp3 {width:31px;height:31px;background:url('../img/captcha2.png') no-repeat 0 0 ; vertical-align:top;overflow:hidden;cursor:pointer;text-indent:-9999px;border:none}

/* ckeditor 단축키 */
.cke_sc {margin:0 0 5px;text-align:right}
.btn_cke_sc {display:inline-block;padding:0 10px;height:23px;border:1px solid #ccc;background:#fafafa;color:#000;text-decoration:none;line-height:1.9em;vertical-align:middle;cursor:pointer}
.cke_sc_def {margin:0 0 5px;padding:10px;border:1px solid #ccc;background:#f7f7f7;text-align:center}
.cke_sc_def dl {margin:0 0 5px;text-align:left;zoom:1}
.cke_sc_def dl:after {display:block;visibility:hidden;clear:both;content:""}
.cke_sc_def dt, .cke_sc_def dd {float:left;margin:0;padding:5px 0;border-bottom:1px solid #e9e9e9}
.cke_sc_def dt {width:20%;font-weight:bold}
.cke_sc_def dd {width:30%}

/* ckeditor 태그 기본값 */
#bo_v_con ul {display:block;list-style-type:disc;margin-top:1em;margin-bottom:1em;margin-left:0;margin-right:0;padding-left:40px}
#bo_v_con ol {display:block;list-style-type:decimal;margin-top:1em;margin-bottom:1em;margin-left:0;margin-right:0;padding-left:40px}
#bo_v_con li {display:list-item}

/* 버튼 */
a.btn,.btn {line-height:35px;height:35px;padding:0 10px;text-align:center;font-weight:bold;border:0;font-size:1.4em;
-webkit-transition:background-color 0.3s ease-out;
-moz-transition:background-color 0.3s ease-out;
-o-transition:background-color 0.3s ease-out;
transition:background-color 0.3s ease-out}

a.btn01 {display:inline-block;padding:7px;border:1px solid #ccc;background:#fafafa;color:#000;text-decoration:none;vertical-align:middle}
a.btn01:focus, a.btn01:hover {text-decoration:none}
button.btn01 {display:inline-block;margin:0;padding:7px;border:1px solid #ccc;background:#fafafa;color:#000;text-decoration:none}
a.btn02 {display:inline-block;padding:7px;border:1px solid #3b3c3f;background:#4b545e;color:#fff;text-decoration:none;vertical-align:middle}
a.btn02:focus, .btn02:hover {text-decoration:none}
button.btn02 {display:inline-block;margin:0;padding:7px;border:1px solid #3b3c3f;background:#4b545e;color:#fff;text-decoration:none}

.btn_confirm {text-align:right} /* 서식단계 진행 */

.btn_submit {border:0;background:#3a8afd;color:#fff;cursor:pointer;border-radius:3px}
.btn_submit:hover {background:#2375eb}
.btn_close {border:1px solid #dcdcdc;cursor:pointer;border-radius:3px;background:#fff}
a.btn_close {text-align:center;line-height:50px}

a.btn_cancel {display:inline-block;background:#969696;color:#fff;text-decoration:none;vertical-align:middle}
button.btn_cancel {display:inline-block;background:#969696;color:#fff;text-decoration:none;vertical-align:middle}
.btn_cancel:hover {background:#aaa}
a.btn_frmline, button.btn_frmline {display:inline-block;width:128px;padding:0 5px;height:40px;border:0;background:#434a54;border-radius:3px;color:#fff;text-decoration:none;vertical-align:top} /* 우편번호검색버튼 등 */
a.btn_frmline {}
button.btn_frmline {font-size:1em}

/* 게시판용 버튼 */
a.btn_b01,.btn_b01 {display:inline-block;color:#bababa;text-decoration:none;vertical-align:middle;border:0;background:transparent}
.btn_b01:hover, .btn_b01:hover {color:#000}
a.btn_b02,.btn_b02 {display:inline-block;background:#253dbe;padding:0 10px;color:#fff;text-decoration:none;border:0;vertical-align:middle}
a.btn_b02:hover, .btn_b02:hover {background:#0025eb}
a.btn_b03, .btn_b03 {display:inline-block;background:#fff;border:1px solid #b9bdd3;color:#646982;text-decoration:none;vertical-align:middle}
a.btn_b03:hover, .btn_b03:hover {background:#ebedf6}
a.btn_b04, .btn_b04 {display:inline-block;background:#fff;border:1px solid #ccc;color:#707070;text-decoration:none;vertical-align:middle}
a.btn_b04:hover, .btn_b04:hover {color:#333;background:#f9f9f9}
a.btn_admin,.btn_admin {display:inline-block;color:#d13f4a;text-decoration:none;vertical-align:middle} /* 관리자 전용 버튼 */
.btn_admin:hover, a.btn_admin:hover {color:#ff3746}


/* 기본테이블 */
.tbl_wrap table {width:100%;border-collapse:collapse;border-spacing:0 5px;background:#fff;border-top:1px solid #ececec;border-bottom:1px solid #ececec} 
.tbl_wrap caption {padding:10px 0;font-weight:bold;text-align:left}
.tbl_head01 {margin:0 0 10px}
.tbl_head01 caption {padding:0;font-size:0;line-height:0;overflow:hidden}
.tbl_head01 thead th {padding:20px 0;font-weight:normal;text-align:center;border-bottom:1px solid #ececec;height:40px}
.tbl_head01 thead th input {vertical-align:top} /* middle 로 하면 게시판 읽기에서 목록 사용시 체크박스 라인 깨짐 */
.tbl_head01 tfoot th, .tbl_head01 tfoot td {padding:10px 0;border-top:1px solid #c1d1d5;border-bottom:1px solid #c1d1d5;background:#d7e0e2;text-align:center}
.tbl_head01 tbody th {padding:8px 0;border-bottom:1px solid #e8e8e8}
.tbl_head01 td {color:#666;padding:10px 5px;border-top:1px solid #ecf0f1;border-bottom:1px solid #ecf0f1;line-height:1.4em;height:60px;word-break:break-all}
.tbl_head01 tbody tr:hover td {background:#fafafa}
.tbl_head01 a:hover {text-decoration:underline}

.tbl_head02 {margin:0 0 10px}
.tbl_head02 caption {padding:0;font-size:0;line-height:0;overflow:hidden}
.tbl_head02 thead th {padding:5px 0;border-top:1px solid #d1dee2;border-bottom:1px solid #d1dee2;background:#e5ecef;color:#383838;font-size:0.95em;text-align:center;letter-spacing:-0.1em}
.tbl_head02 thead a {color:#383838}
.tbl_head02 thead th input {vertical-align:top} /* middle 로 하면 게시판 읽기에서 목록 사용시 체크박스 라인 깨짐 */
.tbl_head02 tfoot th, .tbl_head02 tfoot td {padding:10px 0;border-top:1px solid #c1d1d5;border-bottom:1px solid #c1d1d5;background:#d7e0e2;text-align:center}
.tbl_head02 tbody th {padding:5px 0;border-top:1px solid #e9e9e9;border-bottom:1px solid #e9e9e9;background:#fff}
.tbl_head02 td {padding:5px 3px;border-top:1px solid #e9e9e9;border-bottom:1px solid #e9e9e9;background:#fff;line-height:1.4em;word-break:break-all}
.tbl_head02 a {}

/* 폼 테이블 */
.tbl_frm01 {margin:0 0 20px}
.tbl_frm01 table {width:100%;border-collapse:collapse;border-spacing:0}
.tbl_frm01 th {width:70px;padding:7px 13px;border:1px solid #e9e9e9;border-left:0;background:#f5f8f9;text-align:left}
.tbl_frm01 td {padding:7px 10px;border-top:1px solid #e9e9e9;border-bottom:1px solid #e9e9e9;background:transparent}
.wr_content textarea,.tbl_frm01 textarea,.form_01 textarea, .frm_input {border:1px solid #d0d3db;background:#fff;color:#000;vertical-align:middle;border-radius:3px;padding:5px;
-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, .075);
-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, .075);
box-shadow:inset 0 1px 1px rgba(0, 0, 0, .075);
}
.tbl_frm01 textarea {padding:2px 2px 3px}
.frm_input {height:40px}

.full_input {width:100%}
.half_input {width:49.5%}
.twopart_input {width:385px;margin-right:10px}
.tbl_frm01 textarea, .write_div textarea {width:100%;height:100px}
.tbl_frm01 a {text-decoration:none}
.tbl_frm01 .frm_file {display:block;margin-bottom:5px}
.tbl_frm01 .frm_info {display:block;padding:0 0 5px;line-height:1.4em}
.frm_info.add_info { margin-top: 10px !important; padding: 8px 12px; background: #fff; border: 1px solid #ddd; border-radius: 6px; line-height: 1.6; }
.btn_info_toggle { display: block; margin: 5px 0 0 21px; font-size: 12px; color: #3f51b5; background: none; border: none; cursor: pointer; text-decoration: underline; }

/*기본 리스트*/
.list_01 ul {border-top:1px solid #ececec}
.list_01 li {border-bottom:1px solid #ececec;background:#fff;padding:10px 15px;list-style:none;position:relative}
.list_01 li:nth-child(odd) {background:#f6f6f6}
.list_01 li:after {display:block;visibility:hidden;clear:both;content:""}
.list_01 li:hover {background:#f9f9f9}
.list_01 li.empty_li {text-align:center;padding:20px 0;color:#666}

/*폼 리스트*/
.form_01 h2 {font-size:1.167em}
.form_01 li {margin-bottom:10px}
.form_01 ul:after,
.form_01 li:after {display:block;visibility:hidden;clear:both;content:""}
.form_01 .left_input {float:left}
.form_01 .margin_input {margin-right:1%}
.form_01 textarea {height:100px;width:100%}
.form_01 .frm_label {display:inline-block;width:130px}

/* 자료 없는 목록 */
.empty_table {padding:50px 0 !important;text-align:center}
.empty_list {padding:20px 0 !important;color:#666;text-align:center}

/* 필수입력 */
.required, textarea.required {background-image:url('../img/require.png') !important;background-repeat:no-repeat !important;background-position:right top !important}

/* 테이블 항목별 정의 */
.td_board {width:80px;text-align:center}
.td_category {width:80px;text-align:center}
.td_chk {width:30px;text-align:center}
.td_date {width:60px;text-align:center}
.td_datetime {width:110px;text-align:center}
.td_group {width:80px;text-align:center}
.td_mb_id {width:100px;text-align:center}
.td_mng {width:80px;text-align:center}
.td_name {width:100px;text-align:left}
.td_nick {width:100px;text-align:center}
.td_num {width:50px;text-align:center}
.td_numbig {width:80px;text-align:center}
.td_stat {width:60px;text-align:center}

.txt_active {color:#5d910b}
.txt_done {color:#e8180c}
.txt_expired {color:#ccc}
.txt_rdy {color:#8abc2a}

/* 새창 기본 스타일 */
.new_win {position:relative}
.new_win .tbl_wrap {margin:0 20px}
.new_win #win_title {font-size:1.3em;height:50px;line-height:30px;padding:10px 20px;background:#fff;color:#000;-webkit-box-shadow:0 1px 10px rgba(0,0,0,.1);
-moz-box-shadow:0 1px 10px rgba(0,0,0,.1);
box-shadow:0 1px 10px rgba(0,0,0,.1)}
.new_win #win_title .sv {font-size:0.75em;line-height:1.2em}
.new_win .win_ul {margin-bottom:15px;padding:0 20px}
.new_win .win_ul:after {display:block;visibility:hidden;clear:both;content:""}
.new_win .win_ul li {float:left;background:#fff;text-align:center;padding:0 10px;border:1px solid #d6e9ff;border-radius:30px;margin-left:5px}
.new_win .win_ul li:first-child {margin-left:0}
.new_win .win_ul li a {display:block;padding:8px 0;color:#6794d3}
.new_win .win_ul .selected {background:#3a8afd;border-color:#3a8afd;position:relative;z-index:5}
.new_win .win_ul .selected a {color:#fff;font-weight:bold}
.new_win .win_desc {position:relative;margin:10px;border-radius:5px;font-size:1em;background:#f2838f;color:#fff;line-height:50px;text-align:left;padding:0 20px}
.new_win .win_desc i {font-size:1.2em;vertical-align:baseline}
.new_win .win_desc:after {content:"";position:absolute;left:0;top:0;width:4px;height:50px;background:#da4453;border-radius:3px 0 0 3px}
.new_win .frm_info {font-size:0.92em;color:#919191}
.new_win .win_total {float:right;display:inline-block;line-height:30px;font-weight:normal;font-size:0.75em;color:#3a8afd;background:#f6f6f6;padding:0 10px;border-radius:5px}
.new_win .new_win_con {margin:20px 0;padding:20px}
.new_win .new_win_con:after {display:block;visibility:hidden;clear:both;content:""}
.new_win .new_win_con2 {margin:20px 0}
.new_win .btn_confirm:after {display:block;visibility:hidden;clear:both;content:""}
.new_win .win_btn {text-align:center}
.new_win .cert_btn {margin-bottom:30px;text-align:center}
.new_win .btn_close {padding:0 20px;height:45px;overflow:hidden;cursor:pointer}
.new_win .btn_submit {padding:0 20px;height:45px;font-weight:bold;font-size:1.083em}

/* 검색결과 색상 */
.sch_word {color:#fff;background:#ff005a;padding:2px 5px 3px;line-height:18px;margin:0 2px}

/* 자바스크립트 alert 대안 */
#validation_check {margin:100px auto;width:500px}
#validation_check h1 {margin-bottom:20px;font-size:1.3em}
#validation_check p {margin-bottom:20px;padding:30px 20px;border:1px solid #e9e9e9;background:#fff}

/* 사이드뷰 */
.sv_wrap {position:relative;font-weight:normal}
.sv_wrap .sv {z-index:1000;display:none;margin:5px 0 0;font-size:0.92em;background:#333;
-webkit-box-shadow:2px 2px 3px 0px rgba(0,0,0,0.2);
-moz-box-shadow:2px 2px 3px 0px rgba(0,0,0,0.2);
box-shadow:2px 2px 3px 0px rgba(0,0,0,0.2)}
.sv_wrap .sv:before {content:"";position:absolute;top:-6px;left:15px;width:0;height:0;border-style:solid;border-width:0 6px 6px 6px;border-color:transparent transparent #333 transparent}
.sv_wrap .sv a {display:inline-block;margin:0;padding:0 10px;line-height:30px;width:100px;font-weight:normal;color:#bbb}
.sv_wrap .sv a:hover {background:#000;color:#fff}
.sv_member {color:#333}
.sv_on {display:block !important;position:absolute;top:23px;left:0px;width:auto;height:auto}
.sv_nojs .sv {display:block}

/* 페이징 */
.pg_wrap {clear:both;float:left;display:inline-block}
.pg_wrap:after {display:block;visibility:hidden;clear:both;content:""} 
.pg {text-align:center}
.pg_page, .pg_current {display:inline-block;vertical-align:middle;background:#eee;border:1px solid #eee}
.pg a:focus, .pg a:hover {text-decoration:none}
.pg_page {color:#959595;font-size:1.083em;height:30px;line-height:28px;padding:0 5px;min-width:30px;text-decoration:none;border-radius:3px}
.pg_page:hover {background-color:#fafafa}
.pg_start {text-indent:-999px;overflow:hidden;background:url('../img/btn_first.gif') no-repeat 50% 50% #eee;padding:0;border:1px solid #eee}
.pg_prev {text-indent:-999px;overflow:hidden;background:url('../img/btn_prev.gif') no-repeat 50% 50% #eee;padding:0;border:1px solid #eee}
.pg_end {text-indent:-999px;overflow:hidden;background:url('../img/btn_end.gif') no-repeat 50% 50% #eee;padding:0;border:1px solid #eee}
.pg_next {text-indent:-999px;overflow:hidden;background:url('../img/btn_next.gif') no-repeat 50% 50% #eee;padding:0;border:1px solid #eee}
.pg_start:hover,.pg_prev:hover,.pg_end:hover,.pg_next:hover {background-color:#fafafa}

.pg_current {display:inline-block;background:#3a8afd;border:1px solid #3a8afd;color:#fff;font-weight:bold;height:30px;line-height:30px;padding:0 10px;min-width:30px;border-radius:3px}

/* cheditor 이슈 */
.cheditor-popup-window *, .cheditor-popup-window :after, .cheditor-popup-window :before {
-webkit-box-sizing:content-box;
-moz-box-sizing:content-box;
box-sizing:content-box;
}

/* Mobile화면으로 */
#device_change {display:block;margin:0.3em;padding:0.5em 0;border:1px solid #eee;border-radius:2em;background:#fff;color:#000;font-size:2em;text-decoration:none;text-align:center}
/* ============================================
   Sub Page Styles
   ============================================ */

/* Page Header */
.page-header {
    position: relative;
    padding: 10rem 0 4rem; /* 128px 64px */
    background: #f8f9fa;
    overflow: hidden;
}

.page-header__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-header__background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7),  rgba(0, 118, 195, 0.7));
    z-index: 1;
}

.page-header__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header__content {
    color: #fff;
}

.page-header__title {
    font-size: 3rem; /* 48px */
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header__breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem; /* 14px */
    opacity: 0.9;
}

.page-header__breadcrumb a {
    color: #fff;
    transition: opacity 0.3s;
}

.page-header__breadcrumb a:hover {
    opacity: 0.7;
}

.page-header__breadcrumb .divider {
    color: rgba(255, 255, 255, 0.5);
}

.page-header__breadcrumb .current {
    font-weight: 600;
}

/* Sub Content Layout */
.sub-content {
    background: #fff;
}

.sub-content__inner {
    display: block;
    padding: 3rem 0;
    margin-bottom: 2rem;
}

/* Tab Menu Container */
.tab-menu-container {
    background: #fff;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 3rem;
}

/* Tab Menu */
.tab-menu {
    background: #fff;
}



.tab-menu__list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 0;
}

.tab-menu__item {
    position: relative;
}

.tab-menu__item a {
    display: block;
    padding: 1rem 2rem; /* 16px 32px */
    font-size: 1.125rem; /* 18px */
    font-weight: 500;
    color: #666;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    white-space: nowrap;
}

.tab-menu__item a:hover {
    color: #0076C3;
    background: #f8f9fa;
}

.tab-menu__item.active a {
    color: #0076C3;
    font-weight: 700;
    border-bottom-color: #0076C3;
}

/* Main Content */
.sub-main {
    width: 100%;
}

.content-header {
    margin-bottom: 3rem; /* 48px */
}

.content-title {
    font-size: 2.25rem; /* 36px */
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.content-subtitle {
    font-size: 1.125rem; /* 18px */
    color: #666;
    line-height: 1.6;
}

/* Company Overview */
.company-overview {
    display: flex;
    flex-direction: column;
    gap: 4rem; /* 64px */
}

/* Company Info */
.company-info {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 2rem; /* 32px */
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 0.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.company-info.animate {
    opacity: 1;
    transform: translateY(0);
}

.company-info__image {
    width: 100%;
    height: 100%;
    min-height: 18.75rem; /* 300px */
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.company-info.animate .company-info__image {
    opacity: 1;
    transform: scale(1);
}

.company-info__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
}

.company-info__details {
    display: flex;
    align-items: center;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table tr {
    border-bottom: 1px solid #e0e0e0;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.company-info.animate .info-table tr {
    opacity: 1;
    transform: translateX(0);
}

.company-info.animate .info-table tr:nth-child(1) { transition-delay: 0.1s; }
.company-info.animate .info-table tr:nth-child(2) { transition-delay: 0.15s; }
.company-info.animate .info-table tr:nth-child(3) { transition-delay: 0.2s; }
.company-info.animate .info-table tr:nth-child(4) { transition-delay: 0.25s; }
.company-info.animate .info-table tr:nth-child(5) { transition-delay: 0.3s; }
.company-info.animate .info-table tr:nth-child(6) { transition-delay: 0.35s; }
.company-info.animate .info-table tr:nth-child(7) { transition-delay: 0.4s; }

.info-table tr:last-child {
    border-bottom: none;
}

.info-table th,
.info-table td {
    padding: 1rem 0.75rem; /* 16px 12px */
    text-align: left;
}

.info-table th {
    width: 30%;
    font-weight: 600;
    color: #555;
    font-size: 1rem;
}

.info-table td {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
}

/* Organization Section */
.organization-section {
    padding: 4rem 0;
    background: #f8f9fa;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    margin: 0 -50vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
}

.organization-section.animate {
    opacity: 1;
    transform: translateY(0);
}

.organization-section .section-title {
    font-size: 1.75rem; /* 28px */
    font-weight: 700;
    color: #222;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.organization-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #0076C3;
    border-radius: 2px;
}

.section-title {
    font-size: 1.75rem; /* 28px */
    font-weight: 700;
    color: #222;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #0076C3;
    border-radius: 2px;
}

/* New Organization Chart */
.organization-chart-new {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 600px;
    margin: 2rem auto 0;
    padding: 0;
}

.org-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.org-node {
    position: absolute;
    z-index: 1;
    animation: fadeInScale 0.6s ease backwards;
}

.org-node:nth-child(2) { animation-delay: 0.1s; }
.org-node:nth-child(3) { animation-delay: 0.2s; }
.org-node:nth-child(4) { animation-delay: 0.3s; }
.org-node:nth-child(5) { animation-delay: 0.4s; }
.org-node:nth-child(6) { animation-delay: 0.5s; }

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.org-node__circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.3;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* CEO Node - Blue */
.org-node--ceo .org-node__circle {
    background: #0076C3;
    color: #fff;
    border: none;
    font-size: 1.375rem;
    width: 140px;
    height: 140px;
    box-shadow: 0 6px 20px rgba(0, 118, 195, 0.3);
}

.org-node--ceo:hover .org-node__circle {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 118, 195, 0.4);
    background: #005a9e;
}

/* Department Nodes - Blue Variations */
.org-node--dept .org-node__circle {
    background: #fff;
    color: #333;
    border: 2px solid #c0d4e8;
    font-size: 1.125rem;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.org-node--dept:hover .org-node__circle {
    transform: scale(1.05);
    background: #f0f7ff;
    border-color: #0076C3;
    color: #0076C3;
    box-shadow: 0 6px 20px rgba(0, 118, 195, 0.2);
}

/* 연구소 - Darker Blue Border (Highlight) */
.org-node--dept-highlight .org-node__circle {
    border: 3px solid #0076C3;
    box-shadow: 0 4px 15px rgba(0, 118, 195, 0.2);
}

.org-node--dept-highlight:hover .org-node__circle {
    border-color: #005a9e;
    box-shadow: 0 6px 20px rgba(0, 118, 195, 0.3);
}

/* Sub Teams */
.org-node__subteams {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.subteam {
    background: #fff;
    border: 1px solid #d0d0d0;
    border-radius: 0.4rem;
    padding: 0.4rem 0.75rem;
    font-size: 0.85rem;
    color: #555;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.subteam:hover {
    background: #f0f7ff;
    border-color: #0076C3;
    color: #0076C3;
}

/* 위쪽 부서 (연구소) - 오른쪽에 표시 */
.org-node__subteams--top {
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0.75rem;
}

/* 오른쪽 위 부서 (경영지원) - 오른쪽에 표시 */
.org-node__subteams--right {
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0.75rem;
}

/* 왼쪽 위 부서 (Service) - 왼쪽에 표시 */
.org-node__subteams--left {
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 0.75rem;
}

/* 오른쪽 아래 부서 (ITO) - 오른쪽 아래에 표시 */
.org-node__subteams--bottom-right {
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0.75rem;
}

/* 왼쪽 아래 부서 (SI) - 왼쪽 아래에 표시 */
.org-node__subteams--bottom-left {
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 0.75rem;
}

/* Company Features */
.company-features {
    padding: 3rem 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.company-features.animate {
    opacity: 1;
    transform: translateY(0);
}

.company-features .section-title {
    font-size: 1.75rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #222;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid #e5e5e5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.company-features.animate .feature-card {
    opacity: 1;
    transform: translateY(0);
}

.company-features.animate .feature-card:nth-child(1) {
    transition-delay: 0.1s;
}

.company-features.animate .feature-card:nth-child(2) {
    transition-delay: 0.2s;
}

.company-features.animate .feature-card:nth-child(3) {
    transition-delay: 0.3s;
}

.company-features.animate .feature-card:nth-child(4) {
    transition-delay: 0.4s;
}

.feature-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-8px);
    border-color: #0076C3;
}

.feature-card__icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0076C3;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 118, 195, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-card__icon {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 118, 195, 0.3);
}

.feature-card__icon svg {
    width: 2.5rem;
    height: 2.5rem;
    fill: white;
}

.feature-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card__text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* ============================================
   History / Timeline
   ============================================ */

/* Timeline Container */
.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Timeline Header with Badge */
.timeline-header {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 3rem;
}

.timeline-badge {
    display: inline-block;
    width: 180px;
    height: 180px;
    background: #0076C3;
    border-radius: 50%;
    color: #fff;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 12px rgba(40, 139, 252, 0.3);
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.timeline-badge.animate {
    opacity: 1;
    transform: scale(1);
}

.timeline-badge-3year {
    margin-top: 100px;
    display: inline-block;
    width: 180px;
    height: 180px;
    background: #0089e0;
    border-radius: 50%;
    color: #fff;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 10, 0, 0.3);
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.timeline-badge-3year.animate {
    opacity: 1;
    transform: scale(1);
}


/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

/* Center Line */
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #0076C3;
    transform: translateX(-50%);
}

/* Timeline Item */
.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 50%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Left Side Items */
.timeline-item.left {
    padding-right: 3rem;
    text-align: right;
    transform: translate(-30px, 30px);
}

.timeline-item.left.animate {
    transform: translate(0, 0);
}

/* Right Side Items */
.timeline-item.right {
    padding-left: 3rem;
    margin-left: 50%;
    transform: translate(30px, 30px);
}

.timeline-item.right.animate {
    transform: translate(0, 0);
}

/* Timeline Dot */
.timeline-item::before {
    content: '';
    position: absolute;
    top: 0;
    width: 12px;
    height: 12px;
    background: #0076C3;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #0076C3;
    z-index: 1;
}

.timeline-item.left::before {
    right: -6px;
}

.timeline-item.right::before {
    left: -6px;
}

/* Timeline Content */
.timeline-content {
    background: #fff;
    padding: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.timeline-period {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 1rem 0;
}

.timeline-year {
    font-size: 1rem;
    font-weight: 700;
    color: #0076C3;
    margin: 1rem 0 0.5rem 0;
}

.timeline-year:first-of-type {
    margin-top: 0;
}

.timeline-content ul {
    list-style: none;
    margin: 0 0 0.5rem 0;
    padding: 0;
}

.timeline-content ul li {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0.25rem;
}

/* ============================================
   Vision / Company Features
   ============================================ */
.vision-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.vision-card {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(40px);
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 2.5rem 3rem;
}

.vision-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.vision-card:nth-child(1) { transition-delay: 0.1s; }
.vision-card:nth-child(2) { transition-delay: 0.2s; }
.vision-card:nth-child(3) { transition-delay: 0.3s; }

.vision-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    border-color: #0076C3;
}

.vision-card__icon {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    background: #f8f9fa;
    border: 3px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.vision-card__icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 118, 195, 0.15);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.vision-card:hover .vision-card__icon::after {
    opacity: 0.5;
}

.vision-card:hover .vision-card__icon {
    border-color: #0076C3;
    box-shadow: 0 4px 15px rgba(0, 118, 195, 0.2);
}

.vision-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vision-card__icon svg {
    color: #0076C3;
    transition: transform 0.3s ease;
}

.vision-card:hover .vision-card__icon svg {
    transform: scale(1.1);
}

.vision-card__content {
    flex: 1;
}

.vision-card__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #222;
    margin: 0 0 1.5rem 0;
    position: relative;
    padding-bottom: 1rem;
}

.vision-card__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #0076C3;
    border-radius: 2px;
}

.vision-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.vision-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #555;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.vision-list li:hover {
    background: #fafafa;
    padding-left: 0.75rem;
}

.vision-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: #0076C3;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    margin-top: 0.25rem;
}

/* ============================================
   Business / Service Pages
   ============================================ */

/* Business Content */
.business-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.content-description {
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 0.5rem;
    text-align: center;
}

.content-description p {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Business Flow */
.business-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 3rem 0;
}

.flow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.flow-circle {
    width: 160px;
    height: 160px;
    border: 3px solid #0076C3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 700;
    color: #0076C3;
    background: #fff;
    transition: all 0.3s ease;
}

.flow-circle:hover {
    background: #0076C3;
    color: #fff;
    transform: scale(1.05);
}

.flow-description h4 {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #333;
    text-align: center;
    line-height: 1.5;
    margin: 0;
}

.flow-arrow {
    font-size: 2rem;
    color: #0076C3;
    font-weight: 300;
}

/* Business Grid */
.business-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.business-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.business-box {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 0.5rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.business-box:hover {
    border-color: #0076C3;
    background: #f8fbff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 118, 195, 0.15);
}

.business-box h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.business-box:hover h4 {
    color: #0076C3;
}

/* ============================================
   Responsive
   ============================================ */

/* Tablet */
@media (max-width: 64rem) {
    .page-header {
        padding: 7rem 0 3rem;
    }

    .page-header__title {
        font-size: 2.5rem;
    }

    .tab-menu__item a {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .content-title {
        font-size: 2rem;
    }

    .company-info {
        grid-template-columns: 1fr;
    }

    .company-info__image {
        min-height: 15rem;
    }

    .organization-section {
        padding: 3.5rem 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .organization-chart-new {
        height: 500px;
        max-width: 500px;
        margin: 0;
    }

    .org-node__circle {
        width: 100px;
        height: 100px;
        font-size: 0.9rem;
    }

    .org-node--ceo .org-node__circle {
        width: 120px;
        height: 120px;
        font-size: 1.2rem;
    }

    .org-node--dept .org-node__circle {
        width: 105px;
        height: 105px;
        font-size: 0.95rem;
    }

    /* History Timeline */
    .timeline-header {
        justify-content: start;
    }
    .timeline-badge, .timeline-badge-3year {
        width: 150px;
        height: 150px;
        font-size: 1.5rem;
    }
    .timeline-badge-3year{
    margin-top: 30px;
    }
    .timeline-content {
        padding: 1.25rem;
    }

    .timeline-period {
        font-size: 1.125rem;
    }

    .timeline-year {
        font-size: 0.9375rem;
    }

    .timeline-content ul li {
        font-size: 0.875rem;
    }

    /* Vision */
    .vision-card {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1.5rem;
        text-align: left;
    }

    .vision-card__icon {
        width: 130px;
        height: 130px;
        margin: 0 auto;
    }

    .vision-card__icon svg {
        width: 56px;
        height: 56px;
    }

    .vision-card__title {
        font-size: 1.375rem;
        text-align: left;
    }

    .vision-card__title::after {
        left: 0;
        transform: none;
    }

    .vision-list li {
        font-size: 0.9375rem;
    }

    /* Business */
    .business-flow {
        gap: 1.5rem;
        padding: 2rem 0;
    }

    .flow-circle {
        width: 140px;
        height: 140px;
        font-size: 1rem;
    }

    .flow-description h4 {
        font-size: 0.875rem;
    }

    .flow-arrow {
        font-size: 1.5rem;
    }

    .business-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .business-box {
        padding: 1.5rem 1.25rem;
        min-height: 90px;
    }

    .business-box h4 {
        font-size: 0.9375rem;
    }
}

/* Mobile */
@media (max-width: 48rem) {
    .page-header {
        padding: 6rem 0 2.5rem;
    }

    .page-header__title {
        font-size: 1.75rem;
    }

    .page-header__breadcrumb {
        font-size: 0.75rem;
    }

    .sub-content {
        padding:  0;
    }

    .tab-menu-container {
        top: 5rem; /* Mobile header height */
    }

    .tab-menu {
        margin-bottom: 2rem;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }

    .tab-menu::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

    .tab-menu__list {
        justify-content: flex-start;
        flex-wrap: nowrap;
        padding: 0 1rem;
        min-width: min-content;
    }

    .tab-menu__item {
        flex-shrink: 0;
    }

    .tab-menu__item a {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
        white-space: nowrap;
    }

    .content-header {
        margin-bottom: 2rem;
    }

    .content-title {
        font-size: 1.5rem;
    }

    .content-subtitle {
        font-size: 1rem;
    }

    .company-overview {
        gap: 2.5rem;
    }

    .company-info {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .company-info__image {
        min-height: 12rem;
    }

    .info-table th,
    .info-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.875rem;
    }

    .info-table th {
        width: 35%;
    }

    .organization-section {
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }

    .section-title::after {
        width: 60px;
        height: 2px;
    }

    .organization-chart-new {
        height: 450px;
        max-width: 450px;
        transform: scale(0.8);
        transform-origin: center center;
    }

    .org-connections {
        opacity: 0.7;
    }

    .org-node__circle {
        width: 85px;
        height: 85px;
        font-size: 0.8rem;
    }

    .org-node--ceo .org-node__circle {
        width: 100px;
        height: 100px;
        font-size: 1.05rem;
    }

    .org-node--dept .org-node__circle {
        width: 90px;
        height: 90px;
        font-size: 0.875rem;
    }

    .org-node__subteams {
        display: none;
    }

    .company-features {
        padding: 2rem 1.5rem;
    }

    .company-features .section-title {
        font-size: 1.35rem;
        margin-bottom: 2rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.75rem 1.25rem;
    }

    .feature-card__icon {
        width: 4.5rem;
        height: 4.5rem;
    }

    .feature-card__icon svg {
        width: 2.25rem;
        height: 2.25rem;
    }

    .feature-card__title {
        font-size: 1.15rem;
    }

    .feature-card__text {
        font-size: 0.9rem;
    }

    /* History Timeline Mobile */
    .timeline-badge {
        width: 130px;
        height: 130px;
        font-size: 1.25rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        margin-bottom: 2rem;
    }

    .timeline-item.left,
    .timeline-item.right {
        padding-left: 50px;
        padding-right: 0;
        margin-left: 0;
        text-align: left;
        transform: translate(30px, 30px);
    }

    .timeline-item.left.animate,
    .timeline-item.right.animate {
        transform: translate(0, 0);
    }

    .timeline-item::before {
        left: 14px !important;
        right: auto !important;
    }

    .timeline-content {
        padding: 1rem;
    }

    .timeline-period {
        font-size: 1rem;
    }

    .timeline-year {
        font-size: 0.875rem;
    }

    .timeline-content ul li {
        font-size: 0.8125rem;
        line-height: 1.5;
    }

    /* Vision */
    .vision-content {
        gap: 2rem;
    }

    .vision-card {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1.25rem;
        text-align: left;
    }

    .vision-card__icon {
        width: 110px;
        height: 110px;
        margin: 0 auto;
    }

    .vision-card__icon svg {
        width: 48px;
        height: 48px;
    }

    .vision-card__title {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
        text-align: left;
    }

    .vision-card__title::after {
        left: 0;
        transform: none;
    }

    .vision-list {
        gap: 0.875rem;
    }

    .vision-list li {
        font-size: 0.875rem;
        line-height: 1.6;
    }

    .vision-icon {
        width: 18px;
        height: 18px;
        font-size: 0.7rem;
    }

    /* Business */
    .business-content {
        gap: 3rem;
    }

    .business-flow {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 0;
    }

    .flow-circle {
        width: 150px;
        height: 150px;
        font-size: 1rem;
    }

    .flow-description h4 {
        font-size: 0.875rem;
    }

    .flow-arrow {
        transform: rotate(90deg);
        font-size: 2rem;
    }

    .business-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .business-column {
        gap: 1rem;
    }

    .business-box {
        padding: 1.25rem 1rem;
        min-height: 80px;
    }

    .business-box h4 {
        font-size: 0.875rem;
    }
}

/* ============================================
   Software Business Page Styles
   ============================================ */

/* Business Introduction Section */
.business-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem;
    margin-bottom: 3rem;
    background: #fafafa;
    border-radius: 1rem;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
    border: 1px solid #e5e5e5;
}

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

.business-intro__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.business-intro__icon {
    width: 80px;
    height: 80px;
    background: #0076C3;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 118, 195, 0.15);
}

.business-intro__content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin: 0;
}

.business-intro__content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.business-intro__image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.business-intro__image-placeholder {
    width: 100%;
    height: 300px;
    background: white;
    border: 2px dashed #d0d0d0;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    transition: all 0.3s ease;
    overflow: hidden;
}

.business-intro__image-placeholder:hover {
    border-color: #0076C3;
    color: #0076C3;
}

.business-intro__image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: calc(1rem - 2px);
}

.business-intro__image-placeholder svg {
    opacity: 0.4;
    margin-bottom: 1rem;
}

.business-intro__image-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.6;
    margin: 0;
}

/* Enhanced Business Flow */
.business-flow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    padding: 3rem 2rem;
    margin-bottom: 4rem;
    background: white;
    border-radius: 1rem;
    border: 1px solid #e5e5e5;
}

.flow-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.flow-item:nth-child(1) { animation-delay: 0.1s; }
.flow-item:nth-child(3) { animation-delay: 0.2s; }
.flow-item:nth-child(5) { animation-delay: 0.3s; }

.flow-icon {
    width: 80px;
    height: 80px;
    background: #fafafa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0076C3;
    margin-bottom: 0.5rem;
    border: 2px solid #e5e5e5;
    transition: all 0.3s ease;
}

.flow-item:hover .flow-icon {
    background: #0076C3;
    color: white;
    border-color: #0076C3;
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 118, 195, 0.2);
}

.flow-circle {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    padding: 0.5rem 1.5rem;
    background: white;
    border-radius: 2rem;
    border: 2px solid #e5e5e5;
    transition: all 0.3s ease;
}

.flow-item:hover .flow-circle {
    background: #0076C3;
    color: white;
    border-color: #0076C3;
    transform: scale(1.05);
}

.flow-description {
    max-width: 200px;
}

.flow-description p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0076C3;
    font-size: 2rem;
    margin-top: 2.5rem;
    opacity: 0.6;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Business Category Section */
.business-category-section {
    margin-top: 4rem;
}

.business-category-title {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.business-category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #0076C3;
    border-radius: 2px;
}

/* Business Cards Grid */
.business-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.business-card {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.business-card:nth-child(1) { animation-delay: 0.1s; }
.business-card:nth-child(2) { animation-delay: 0.2s; }
.business-card:nth-child(3) { animation-delay: 0.3s; }

.business-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-color: #0076C3;
}

.business-card__header {
    padding: 2rem 1.5rem 1rem;
    background: #fafafa;
    border-bottom: 2px solid #e5e5e5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.business-card__icon {
    width: 70px;
    height: 70px;
    background: #0076C3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 118, 195, 0.15);
    transition: all 0.3s ease;
}

.business-card:hover .business-card__icon {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(0, 118, 195, 0.25);
}

.business-card__header h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    text-align: center;
}

.business-card__image {
    padding: 1.5rem;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.business-card__image-placeholder {
    width: 100%;
    height: 160px;
    background: white;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    transition: all 0.3s ease;
    overflow: hidden;
}

.business-card:hover .business-card__image-placeholder {
    border-color: #0076C3;
    background: white;
    color: #0076C3;
}

.business-card__image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: calc(0.5rem - 2px);
}

.business-card__image-placeholder svg {
    opacity: 0.4;
}

.business-card__content {
    padding: 2rem 1.5rem;
}

.business-card__content ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.business-card__content ul li {
    position: relative;
    padding-left: 1.75rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    transition: all 0.2s ease;
}

.business-card__content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0076C3;
}

.business-card__content ul li:hover {
    color: #0076C3;
    transform: translateX(5px);
}

/* Responsive Design for Business Cards */
@media (max-width: 64rem) {
    .business-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .business-intro__image {
        min-height: 250px;
    }

    .business-intro__image-placeholder {
        height: 250px;
    }

    .business-intro__content h3 {
        font-size: 1.6rem;
    }

    .business-intro__content p {
        font-size: 1rem;
    }

    .business-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .flow-arrow svg {
        transform: rotate(90deg);
    }
}

@media (max-width: 48rem) {
    .business-intro {
        padding: 1.5rem;
    }

    .business-intro__icon {
        width: 60px;
        height: 60px;
    }

    .business-intro__content h3 {
        font-size: 1.4rem;
    }

    .business-intro__content p {
        font-size: 0.95rem;
    }

    .business-intro__image {
        min-height: 200px;
    }

    .business-intro__image-placeholder {
        height: 200px;
    }

    .business-flow {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }

    .flow-arrow {
        margin-top: 0;
    }

    .flow-arrow svg {
        transform: rotate(90deg);
    }

    .flow-icon {
        width: 60px;
        height: 60px;
    }

    .flow-circle {
        font-size: 1.1rem;
        padding: 0.4rem 1.2rem;
    }

    .business-category-title {
        font-size: 1.5rem;
    }

    .business-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .business-card__header {
        padding: 1.5rem 1rem 0.75rem;
    }

    .business-card__icon {
        width: 60px;
        height: 60px;
    }

    .business-card__header h4 {
        font-size: 1.2rem;
    }

    .business-card__image {
        min-height: 150px;
        padding: 1rem;
    }

    .business-card__image-placeholder {
        height: 140px;
    }

    .business-card__content {
        padding: 1.5rem 1rem;
    }

    .business-card__content ul li {
        font-size: 0.9rem;
    }

    /* Solutions Section - Tablet */
    .solutions-list {
        gap: 3rem;
    }

    .solution-section {
        padding: 2.5rem;
    }

    .solution-section__content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .solution-section--reverse .solution-section__content {
        direction: ltr;
    }

    .solution-section__title {
        font-size: 2rem;
    }

    .solution-section__subtitle {
        font-size: 1rem;
        padding: 1.25rem;
    }

    .solution-section__details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .solution-section__image {
        height: 400px;
    }
}

/* ============================================
   Solutions Page Styles
   ============================================ */
.solutions-list {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.solution-section {
    position: relative;
    background: #fff;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.solution-section:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    border-color: #0076C3;
}

.solution-section__label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    background: #0076C3;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    margin-bottom: 2rem;
}

.solution-section__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solution-section--reverse .solution-section__content {
    direction: rtl;
}

.solution-section--reverse .solution-section__text {
    direction: ltr;
}

.solution-section__text {
    padding: 1rem 0;
}

.solution-section__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    position: relative;
    padding-bottom: 1rem;
}

.solution-section__title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #0076C3;
}

.solution-section__subtitle {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    border-radius: 0.5rem;
}

.solution-section__details {
    display: grid;
    grid-template-columns:  1fr;
    gap: 2rem;
}

.solution-detail {
    background: #fafafa;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.solution-detail:hover {
    background: #fff;
    border-color: #0076C3;
}

.solution-detail h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0076C3;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e5e5e5;
}

.solution-detail ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-detail ul li {
    padding: 0.625rem 0;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    padding-left: 1.75rem;
    position: relative;
    transition: all 0.2s ease;
}

.solution-detail ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.625rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0076C3;
}

.solution-detail ul li:hover {
    color: #0076C3;
    transform: translateX(5px);
}

.solution-section__image {
    width: 100%;
    height: 500px;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.solution-section:hover .solution-section__image {
    border-color: #0076C3;
}

.solution-section__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.solution-section:hover .solution-section__image img {
    transform: scale(1.02);
}

/* ============================================
   Location Page Styles
   ============================================ */
.location-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.location-map {
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.location-map iframe {
    display: block;
}

.location-map .root_daum_roughmap {
    width: 100% !important;
    height: 450px !important;
}

/* 카카오맵 하단 정보 영역 숨김 */
.location-map .root_daum_roughmap .wrap_map_info {
    display: none !important;
}

.location-map .root_daum_roughmap .wrap_controllers {
    display: none !important;
}

/* 카카오맵 저작권 정보만 유지 */
.location-map .root_daum_roughmap .wrap_copyright {
    background: transparent !important;
    padding: 0.5rem !important;
}

.location-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.location-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem 1rem;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 1rem;
    transition: all 0.3s;
}

.location-info-card:hover {
    border-color: #0076C3;
    box-shadow: 0 4px 20px rgba(0, 118, 195, 0.1);
    transform: translateY(-4px);
}

.location-info-card__icon {
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background:  #0076C3 ;
    border-radius: 1rem;
    color: #fff;
}

.location-info-card__content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #212529;
}

.location-info-card__content p {
    font-size: 0.825rem;
    color: #495057;
    line-height: 1.6;
}

.location-transport {
    background: #f8f9fa;
    border-radius: 1rem;
    padding: 3rem;
}

.location-transport__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 2rem;
    text-align: center;
}

.location-transport__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.transport-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.transport-item__icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    color: #fff;
}

.transport-item__icon.subway {
    background: #0076C3;
}

.transport-item__icon.bus {
    background: #28a745;
}

.transport-item__content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.75rem;
}

.transport-item__content p {
    font-size: 0.9375rem;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 0.25rem;
}

.transport-item__time {
    color: #6c757d;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* ============================================
   Partners Page Styles
   ============================================ */
.partners-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.partners-intro {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 1rem;
}

.partners-intro p {
    font-size: 1.0625rem;
    color: #495057;
    line-height: 1.8;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem;
}

.partner-card {
    background: #E0E0E0;
    border: 1px solid #e9ecef;
    border-radius: 1rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.partner-card:hover {
    border-color: #0076C3;
    box-shadow: 0 4px 20px rgba(0, 118, 195, 0.1);
    transform: translateY(-4px);
}

.partner-card__logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-card__logo img {
    max-width: 100%;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.partner-card:hover .partner-card__logo img {
    opacity: 1;
}

.partners-cta {
    margin-top: 2rem;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #0076C3 0%, #005a94 100%);
    border-radius: 1rem;
    color: #fff;
}

.partners-cta__content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.partners-cta__content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: #fff;
    color: #0076C3;
    border-radius: 3rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-contact:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* ============================================
   Responsive - Promotion Pages
   ============================================ */
@media (max-width: 768px) {
    /* Company Features - Mobile */
    .company-features {
        padding: 2rem 1rem;
    }

    .company-features .section-title {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-card__icon {
        width: 4rem;
        height: 4rem;
        margin-bottom: 1.25rem;
    }

    .feature-card__icon svg {
        width: 2rem;
        height: 2rem;
    }

    .feature-card__title {
        font-size: 1.125rem;
    }

    .feature-card__text {
        font-size: 0.875rem;
    }

    /* Solutions Section - Mobile */
    .solutions-list {
        gap: 2.5rem;
        margin-top: 2rem;
    }

    .solution-section {
        padding: 1.5rem;
        border-radius: 1rem;
    }

    .solution-section__label {
        font-size: 0.75rem;
        padding: 0.4rem 1.25rem;
        margin-bottom: 1.5rem;
    }

    .solution-section__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .solution-section--reverse .solution-section__content {
        direction: ltr;
    }

    .solution-section__title {
        font-size: 1.75rem;
    }

    .solution-section__title::after {
        width: 40px;
        height: 3px;
    }

    .solution-section__subtitle {
        font-size: 0.9375rem;
        margin-bottom: 2rem;
        padding: 1rem;
    }

    .solution-section__details {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .solution-detail {
        padding: 1.25rem;
    }

    .solution-detail h4 {
        font-size: 1rem;
    }

    .solution-detail h4::before {
        width: 1.25rem;
        height: 1.25rem;
        font-size: 0.75rem;
    }

    .solution-detail ul li {
        font-size: 0.875rem;
        padding: 0.5rem 0;
        padding-left: 1.5rem;
    }

    .solution-section__image {
        height: 250px;
        border-width: 2px;
    }

    .location-map .root_daum_roughmap {
        height: 300px !important;
    }

    .location-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .location-info-card {
        padding: 1.5rem;
    }

    .location-transport {
        padding: 2rem 1.5rem;
    }

    .location-transport__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .transport-item {
        padding: 1.5rem;
    }

    .partners-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 2fr));
        gap: 1.5rem;
    }

    .partner-card {
        padding: 1.5rem;
        min-height: 100px;
    }

    .partner-card__logo img {
        max-height: 80px;
    }

    .partners-cta {
        padding: 2rem 1.5rem;
    }

    .partners-cta__content h3 {
        font-size: 1.5rem;
    }

    .partners-cta__content p {
        font-size: 1rem;
    }

    .btn-contact {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .partners-intro p {
        font-size: 1rem;
    }
    .sub-content__inner {
    padding: 0;       
}
}


