@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css');

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

body {
    font-family: 'Pretendard Variable', sans-serif;
    margin: 0;
    background-color: white;
    color: var(--text-main);
}


a:hover{
    text-decoration: none;
}

.page-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* 헤더 & 글로벌 네비게이션 */
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
}

.top-header {
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    padding : 0.5rem 0;
}

.top-header-inner,
.gnb-inner {
    max-width: 70rem;
    margin: 0 auto;
    padding: 0.6rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.top-logo-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.top-logo {
    font-weight: 700;
    font-size: 0.9rem;
}

.top-logo-separator{
    font-weight: 700;
    font-size: 1.1rem;
    color: black;
}
.top-logo-text{
    font-family: 'Pretendard Variable', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: black;
}


.gnb-bar {
    background: linear-gradient(90deg, var(--primary), #2D2A6F);
    color: white;
}

.header-inner {
    max-width: 70rem;
    margin: 0 auto;
    padding: 0.7rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.logo {
    font-weight: 800;
    font-size: 1.1rem;
    color: #e5e7eb;
    text-decoration: none;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* header-nav hover는 login-tab에서 개별 처리 */


.header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-tab {
    border: none;
    background: transparent;
    padding: 0.45rem 0.9rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(226, 232, 240, 0.85);
    cursor: pointer;
    text-decoration: none;
    border-bottom: 0.125rem solid transparent;
}

.nav-tab:hover {
    color: #ffffff;
}

.nav-tab.is-active {
    background-color: transparent;
    color: #ffffff;
    /* border-bottom-color: #ffffff; */
}

.login-tab {
    border: 1px solid rgba(191, 219, 254, 0.4);
    font-size: 0.85rem;
    padding: 0.45rem 1rem;
    transition: all 0.2s;
}

.login-tab:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.login-tab.is-active {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

.header-nav:hover .login-tab {
    border-color: rgba(191, 219, 254, 0.4);
}

.top-logo {
    height: 1.5rem;
    width : auto;
}

main {
    flex: 1;
}

/* 메인 히어로 영역 */
.hero {
    margin: 0 auto 0;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-image-area {
    width: 100%;
    max-height: none;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(0, 209, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;

}

.hero-image-area::before {
    /* content: '이미지 영역 (추후 회전목마 형태로 구현 예정)'; */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-content-area {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: 70rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    z-index: 10;
}


.hero-image{
    width : 100%;
    height : auto;
    display: block;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    flex: 1 1 50%;
    animation: heroFadeInUp 0.8s ease-out;
}

.hero-right {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 5rem;
}

.hero-right-image {
    width : auto;
    height: 10rem;
    animation: heroFadeInUp 0.8s ease-out 0.2s both;
}

/* 히어로 반응형 보정 - 태블릿 이하 */
@media (max-width: 768px) {
    .hero-content-area {
        max-width: 100%;
        padding: 0 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }

    .hero-right {
        padding-right: 0;
        justify-content: flex-start;
    }

    .hero-right-image {
        height: auto;
        max-width: 60%;
    }
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 9999px;
    border: none;
    background: rgba(0, 0, 0, 0.45);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.hero-nav-prev {
    left: 1.25rem;
}

.hero-nav-next {
    right: 1.25rem;
}

.hero-nav:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.05);
}

.hero-indicators {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 30;
}

.hero-indicator {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 9999px;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    padding: 0;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.hero-indicator.is-active {
    background: #ffffff;
    transform: scale(1.2);
}

@keyframes heroFadeInUp {
    from {
        opacity: 0;
        transform: translateY(2rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    animation: heroTextFadeIn 1s ease-out 0.2s both;
}

@keyframes heroTextFadeIn {
    from {
        opacity: 0;
        transform: translateY(1rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    padding-left: 0.5rem;
    font-size: 1.2rem;
    color: #999999;
    font-weight: 600;
    margin: 1rem 0 0 0;
    letter-spacing: -0.05em;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.0em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-cta {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    animation: heroCtaFadeIn 1s ease-out 0.4s both;
}

@keyframes heroCtaFadeIn {
    from {
        opacity: 0;
        transform: translateY(1rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary {
    background-color: #645FF9;
    color: white;
    border-radius: 1.5rem;
    padding: 0.875rem 2rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.2s;
    white-space: nowrap;
}



.btn-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-radius: 1.5rem;
    padding: 0.875rem 2rem;
    font-weight: 700;
    border: 0.125rem solid #ffffff;
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.2s, color 0.2s;
    white-space: nowrap;
}

/* Primary: 살짝 밝아지면서 그림자 추가 */
.btn-primary:hover {
    background-color: #7b77fb; /* 기존보다 살짝 밝은 색 */
    transform: translateY(-2px); /* 위로 2px 이동 */
    box-shadow: 0 5px 15px rgba(100, 95, 249, 0.4); /* 버튼 색상 계열의 그림자 */
}

/* Secondary: 배경이 살짝 더 불투명해지며 강조 */
.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

/* 공통: transition에 transform과 box-shadow 추가 필수 */
.btn-primary, .btn-secondary {
    transition: all 0.3s ease;
}

/* 탭 섹션 */
.tab-sections {
    max-width: 70rem;
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
}

.tab-section {
    display: block;
    padding: 1.75rem 1.5rem 1.75rem;
    margin-top: 1.5rem;
    border-radius: 1.25rem;
    background: white;
    border: 1px solid var(--border);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.04);
}

/* 사업 핵심 안내 전용 레이아웃 (백그라운드 이미지 + 텍스트 중앙 배치) */
.business-banner {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-height: 14rem;
    padding: 2.5rem 2rem;
    background: url("/images/main-sub-banner.png") center / cover no-repeat;
    color: #ffffff;
    text-align: center;
    border-radius: 1.5rem;
}

.business-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.35));
    pointer-events: none;
}

.business-content-area {
    font-family: 'Pretendard Variable', sans-serif;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    max-width: 60rem;
    text-align: center;
}

.business-content-area h2 {
    margin-bottom: 0.25rem;
    font-weight :700;
}

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

.business-content-area li {
    margin-bottom: 0.25rem;
    font-weight :400;
}

/* 어두운 배경 위 가독성 향상 */
.business-banner .business-content-area,
.business-banner .business-content-area h2,
.business-banner .business-content-area li {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

@media (max-width: 360px) {
    .business-banner {
        padding: 2rem 1.25rem;
    }
}

/* 기존 active 클래스는 호환용으로 유지 */
.tab-section h2 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.tab-section p,
.tab-section li {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.tab-section ul {
    margin-top: 0.75rem;
    padding-left: 1.2rem;
}

/* 신청 안내 / 지원 혜택 레이아웃 */
.benefits-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.benefits-row {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.benefits-col {
    display: flex;
    flex-direction: column;
    gap:0.75rem;
}


.benefits-label {
    font-family: 'Pretendard Variable', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #212121;
    margin-bottom: 0.5rem;
    letter-spacing: -0.05rem;
}

.benefits-card {
    font-family: 'Pretendard Variable', sans-serif;
    background: #F5F6FA;
    border-radius: 0.8rem;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.03);
    font-size: 1.25rem;
    font-weight: 700;
    color: #645FF9;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    letter-spacing: -0.05rem;
}

.benefits-card-sub {
    font-family: 'Pretendard Variable', sans-serif;
    margin-top: 0.35rem;
    font-size: 1rem;
    color: #212121;
    font-weight: 400;
}

.benefits-row-2col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    margin-bottom : 5rem;
}

.benefits-card-dark {
    background: #020617;
    color: #e5e7eb;
    border-color: transparent;
    padding : 3rem;
    min-height : 25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.benefits-card-dark .benefits-step-title {
    font-weight: 400;
    font-size:0.9rem;
    letter-spacing: -0.05rem;
    margin-bottom: 0.75rem;
    color: #999;
    text-align: center;
}

.benefits-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    font-size: 0.82rem;
}

.benefits-steps li {
    width : 100%;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #282F3C;
    padding : 1rem 1rem 1rem 1rem;
    border-radius: 0.5rem;
    gap : 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.benefits-links li:hover {
    transform: translateY(-2px); /* 위로 2px 이동 */
    transition: all 0.3s ease;
}

.step-badge {
    font-size: 0.9rem;
    font-weight: 600;
    color: #85879A;
}




.benefits-links a {
    width:100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: #1d4ed8;
    text-decoration: none;
}

.benefits-links a:hover {
    text-decoration: none;
}

.benefits-links a span {
    color:#212121;
    font-size:0.9rem;
    font-weight :600;
    letter-spacing: -0.05rem;
}



.benefits-cta {
    width: 100%;
    display: flex;
    justify-content: right;
    align-items : right;
    margin-top: 1.5rem;
}

.benefits-cta-primary {
    color : white;
    background-color: transparent;
    border: 1px solid white;
    border-radius: 1.5rem;
}


.benefits-cta-primary:hover {
    background-color: transparent;
    box-shadow : none;
}

.benefits-card-white {
    background: #F5F6FA;
    color: #212121;
    border-color: transparent;
    padding : 3rem;
    min-height : 25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width : 100%;
}




.benefits-card-white .benefits-step-title {
    font-weight: 400;
    font-size:0.9rem;
    letter-spacing: -0.05rem;
    margin-bottom: 0.75rem;
    color: #999;
    text-align: center;
}



.benefits-links {
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    font-size:0.82rem;
}

.benefits-links li {
    width : 100%;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background:white;
    padding : 1rem 1rem 1rem 1rem;
    border-radius: 0.5rem;
    gap : 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.benefits-links li a {
    text-decoration: none;  
    color : #212121;
}

.benefits-card-sub-warning {
    margin-top: 0.7rem;
    display:flex;
    align-items: top;
    gap:0.5rem;
    width : 100%;
    font-size: 0.85rem;
    color: #555;
    text-align: center;
    text-align: left;
    background-color: #E1E2E9;
    padding : 1rem 1rem 1rem 1rem;
    border-radius: 0.5rem;
    line-height: 1.5;
    letter-spacing: -0.05rem;
    font-weight: 400;
}

.benefits-card-sub-warning i {
    font-size: 0.9rem;
    color: #555;
    margin-top: 0.19rem;
}

/* 성장기업 핵심 혜택 영역 */
.feature-section {
    width: 100%;
    background-color: #FAFBFD;
    padding: 6.4rem 0 1.5rem 0;
}

.feature-inner {
    max-width: 70rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.feature-header h2 {
    font-family: 'Pretendard Variable', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #212121;
    margin-bottom: 0.5rem;
    letter-spacing: -0.05rem;
}

.feature-header p {
    font-family: 'Pretendard Variable', sans-serif;
    font-size: 1rem;
    color: #212121;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.feature-grid {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.feature-card {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 1.75rem 1.6rem;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(148, 163, 184, 0.25);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.feature-card:hover {
    border : 1px solid #645FF9;
    box-shadow: 0 12px 30px rgba(100, 95, 249, 0.4);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}


.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    background: #F1EFFC;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.feature-icon img {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}

.feature-card h3 {
    font-family: 'Pretendard Variable', sans-serif;
    color: #212121;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.04rem;
}

.feature-card p {
    font-size: 0.85rem;
    color: #999999;
    line-height: 1.5;
}

/* 디지털 혁신 기준 섹션 (AI 융합형 / 일반형 탭) */
.dx-section {
    width: 100%;
    background: #ffffff;
    padding: 4rem 0 15rem 0;
}

.dx-inner {
    max-width: 70rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: flex-start;
}

.dx-inner-content {
    width: 100%;
    display: grid;
    gap : 2.5rem;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.6fr);
    justify-content: space-between;
    align-items: center;
    height : 35rem;
}

.dx-inner-left {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1.5rem;
}

.dx-inner-right {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.dx-visual{
    padding-top : 1rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.dx-visual-image {
    width: 80%;
    height: auto;
    display: block;
}

.dx-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    height : 100%;
    width:100%;
}

.dx-header{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.dx-header h2 {
    font-family: 'Pretendard Variable', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #212121;
    margin-bottom: 0.5rem;
    letter-spacing: -0.05rem;
}

.dx-tab-toggle {
    max-width: 18rem;
    font-family: 'Pretendard Variable', sans-serif;
    color : #999999;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0.4rem 0.8rem;
    border-radius: 9999px;
    background: #f3f4f6;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.dx-tab {
    font-family: 'Pretendard Variable', sans-serif;
    border: none;
    background: transparent;
    padding: 1rem 1.8rem;
    border-radius: 9999px;
    font-size: 1.2rem;
    letter-spacing: -0.6px;
    font-weight: 700;
    color: #999999;;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dx-tab.is-active {
    background: black;
    color: #ffffff;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.4);
}

.dx-course-list {
    width:100%;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin:0;
    height : 100%;
}

.dx-course-item {
    width:100%;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.9rem 1.1rem;
    border-radius: 0.9rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.dx-course-item:hover {
    background: #EEF2FF;
    border-color: #645FF9;
    box-shadow: 0 10px 24px rgba(100, 95, 249, 0.25);
    transition: all 0.2s ease;
}


.dx-course-item:hover .dx-course-badge {
    background: linear-gradient(45deg, #645FF9 0.1%, #7CB2F8 99.89%);
    transition: all 0.2s ease;
}

.dx-course-item:hover .dx-course-body h3 {
    color : #645FF9;
}



.dx-course-badge {
    width: 4rem;
    height: 4rem;
    border-radius: 0.8rem;
    background: #D8D8D8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Pretendard Variable', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}


.dx-course-body {
    height: 100%;
    justify-content: center;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.dx-course-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color:#212121;
    margin-bottom: 0.15rem;
    font-family: 'Pretendard Variable', sans-serif;
}

.dx-course-body p {
    font-family: 'Pretendard Variable', sans-serif;
    font-size: 0.9rem;
    color: #999;
}

.dx-more-link {
    margin-top: 1.25rem;
}

.dx-more-anchor {
    color: #645FF9;
    font-family: 'Pretendard Variable', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.05rem;
    text-decoration: none;
    display: flex;
    gap : 0.5rem;
    padding-right: 0.5rem;
}

.dx-more-anchor i {
    padding-top : 0.2rem;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .dx-inner-content {
        grid-template-columns: minmax(0, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 360px) {
    .dx-tab {
        padding: 0.45rem 1rem;
        font-size: 0.85rem;
    }

    .dx-course-item {
        padding: 0.8rem 0.9rem;
    }
}

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

@media (max-width: 360px) {
    .feature-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* 공통 푸터 */
.site-footer {
    border-top: 1px solid var(--border);
    background: #2F2948;
}

.footer-inner {
    max-width: 70rem;
    margin: 0 auto;
    padding: 1.5rem 1.5rem;
    font-size: 0.8rem;
    color: #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-logo-text {
    display: flex;
    gap: 0.35rem;
    flex-direction: column;
}

.footer-logo {
    font-weight: 700;
    font-size: 0.9rem;
}

.footer-logo-group {
    display: flex;
    align-items: center;
    justify-content: left;
}

.footer-cta-btn{
    display: flex;
    gap: 0.85rem;
    align-items: center;
    justify-content: center;
}

.footer-cta-btn a {
    heigth: 2rem;
    width: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 0.5rem;
    padding: 0.5rem;
    font-size: 1rem;
    color: black;
    text-decoration: none;

}

.footer-cta-btn .instagram-btn {
    background: radial-gradient(circle farthest-corner at 32% 106%,#ffe17d 0%,#ffcd69 10%,#fa9137 28%,#eb4141 42%,transparent 82%) , linear-gradient(135deg,#234bd7 12%,#c33cbe 58%);
    color: white;
}

.footer-cta-btn .youtube-btn {
    background: #E01C28;
    color : white;
}

.footer-cta-btn a:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    transition: all 0.2s ease;
}



.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.78rem;
    color: white;
    margin-top: 0.5rem;
    justify-content: center;
}



.footer-info-item-contact {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.78rem;
    color: white;
    margin-top: 0.5rem;
}


.footer-info-item-copyright {
    display: flex;
    flex-direction: row;
    gap: 0.2rem;
    font-size: 0.78rem;
    color: white;
    align-items: center;
}


.footer-copy {
    padding-left: 0.5rem;
    font-size: 0.75rem;
    color: white;
}

.footer-divider {
    width: 100%;
    margin: 1.25rem 0 1rem 0;
    border: none;
    border-top: 1px solid rgba(226, 232, 240, 0.35);
}

.footer-operator {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: white;
}

.footer-operator-logo {
    width: 10rem;
    height: auto;
    display: block;
}




/* 회원 로그인 페이지 요소 */
.login-card {
    width: 100%;
    max-width: 23.75rem;
    background: white;
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid var(--border);
}

.login-card h1 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.login-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.login-card .form-group {
    margin-bottom: 1rem;
}

.login-card .form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.login-card .form-group input {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border-radius: 0.7rem;
    border: 1px solid var(--border);
    font-size: 0.9rem;
}

.login-card .btn-primary {
    width: 100%;
    margin-top: 0.75rem;
}

.login-helper {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .hero-image-area {
        height: 18rem;
    }

    .hero-content-area {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        max-width: 100%;
        padding: 0 1.5rem;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 1rem;
    }

    .hero-subtitle {
        font-size: 0.875rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .hero-nav {
        width: 2.25rem;
        height: 2.25rem;
    }

    .hero-indicators {
        bottom: 1rem;
    }

    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-nav {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
}

/* ===== 스크롤 등장 애니메이션 ===== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s ease-out, transform 0.65s ease-out;
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* 스태거: 혜택 섹션 행 단위 순차 등장 */
.scroll-reveal .benefits-row,
.scroll-reveal .benefits-row-2col {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.scroll-reveal.is-visible .benefits-row,
.scroll-reveal.is-visible .benefits-row-2col {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal.is-visible .benefits-row:nth-of-type(1) { transition-delay: 0.05s; }
.scroll-reveal.is-visible .benefits-row:nth-of-type(2) { transition-delay: 0.15s; }
.scroll-reveal.is-visible .benefits-row:nth-of-type(3) { transition-delay: 0.25s; }
.scroll-reveal.is-visible .benefits-row:nth-of-type(4) { transition-delay: 0.35s; }

/* 스태거: 핵심 혜택 헤더 + 카드 순차 등장 */
.scroll-reveal--stagger .feature-header,
.scroll-reveal--stagger .feature-card {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.scroll-reveal--stagger.is-visible .feature-header {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
}

.scroll-reveal--stagger.is-visible .feature-card:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.08s; }
.scroll-reveal--stagger.is-visible .feature-card:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.16s; }
.scroll-reveal--stagger.is-visible .feature-card:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.24s; }
.scroll-reveal--stagger.is-visible .feature-card:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.32s; }

/* 디지털 혁신 섹션: 내부 블록 약간 지연 */
.scroll-reveal.dx-section .dx-header,
.scroll-reveal.dx-section .dx-inner-content {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.scroll-reveal.dx-section.is-visible .dx-header {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
}

.scroll-reveal.dx-section.is-visible .dx-inner-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.12s;
}

/* prefers-reduced-motion: 사용자 설정 존중 */
@media (prefers-reduced-motion: reduce) {
    .scroll-reveal,
    .scroll-reveal .benefits-row,
    .scroll-reveal .benefits-row-2col,
    .scroll-reveal--stagger .feature-header,
    .scroll-reveal--stagger .feature-card,
    .scroll-reveal.dx-section .dx-header,
    .scroll-reveal.dx-section .dx-inner-content {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* 임시 */
.hero-cta-primary{
    background-color: transparent;
}