@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css');

:root {
    --primary-color: #ff473e;
    /* Adjust major map red */
    --text-primary: #1a1a1a;
    --text-secondary: #757575;
    --bg-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.5;
}

.container {
    width: 100%;
    margin: 0 auto;
    background-color: #ffffff;
    min-height: 100vh;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1380px;
    width: 100%;
    height: 80px;
    padding: 0 50px;
    margin: 0 auto;
    background: white;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: auto;
}

nav.gnb {
    display: flex;
    gap: 64px;
    /* 늘어난 메뉴 간 여백 */
}

nav.gnb a {
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    position: relative;
    /* 위아래 여백 증가 */
}

nav.gnb a.active {
    color: var(--text-primary);
}

nav.gnb a.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    /* 밑줄 위치 조정 */
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
}

.btn-contact {
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.btn-contact i {
    font-size: 12px;
}

/* Hero Section */
.hero-section {
    max-width: 1380px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.hero-card {
    position: relative;
    width: 100%;
    height: 540px;
    padding: 80px 0;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    padding: 0 80px;
    max-width: 600px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 20px;
}



.hero-info-list {
    list-style: none;
    /*margin-bottom: 60px;*/
    margin-bottom: 150px;

    padding: 12px;
    border-width: 1px 0;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.12);
    width: 311px;
}

.hero-info-list li {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 5px;
    display: flex;
}

.hero-info-list li span.label {
    display: inline-block;
    width: 65px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn-hero {
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s;
    min-width: 240px;
}

.btn-disabled {
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(4px);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: white;
    background-color: transparent;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Training Program Section */
.training-program-section {
    max-width: 1280px;
    width: 100%;
    margin: 100px auto;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
    color: #222222;
}

.program-cards-container {
    display: flex;
    gap: 40px;
}

.card {
    border-radius: 24px;
    padding: 60px 40px;
}

/* Left Card */
.program-status-card {
    background-color: #CAFAEC;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 740px;
    width: 620px;
}

.preparing-image {
    margin-bottom: 44px;
}

.preparing-image img {
    width: 400px;
    height: auto;
    display: block;
}

.text-center {
    text-align: center;
}

.program-status-card .card-title {
    font-size: 30px;
    font-weight: 800;
    color: #403A21;
    line-height: 42px;
    margin-bottom: 12px;
}

.program-status-card .card-desc {
    font-size: 20px;
    color: #7D7A6B;
    font-weight: 400;
}

/* Right Card */
.program-info-card {
    background-color: #F7F8FD;
    padding: 50px;
    height: 740px;
    width: 620px;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.card-title-inline {
    font-size: 32px;
    color: #222222;
    font-weight: 700;
    position: relative;
    line-height: 48px;
    display: inline-block;
    z-index: 1;
}

.card-title-inline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 10px;
    background-color: #00eda3;
    z-index: -1;
}

.program-info-card .badge {
    background-color: #e9ecef;
    color: #666;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.info-list li {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.info-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
}

.number-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: #00eda3;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
}

.info-value {
    padding-left: 28px;
    font-size: 15px;
    color: #495057;
    line-height: 1.5;
}

/* Benefits Section */
.benefits-section {
    max-width: 1000px;
    width: 100%;
    margin: 100px auto 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefits-section .section-title {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.4;
    text-align: center;
    color: #222;
}

.benefits-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    max-width: 900px;
}

.benefit-row {
    display: flex;
    gap: 20px;
    height: 160px;
}

.benefit-card {
    border-radius: 40px;
    display: flex;
    align-items: center;
}

.benefit-card.text-card {
    flex: 1;
    background-color: #F4F5F7;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.benefit-card.text-card.right-aligned-text-card {
    justify-content: space-between;
}

.benefit-card.image-card {
    width: 160px;
    justify-content: center;

}

.benefit-card.image-card img {
    border-radius: 50px;
}

.benefit-card.image-card.green-bg {
    background-color: #82C8A0;
}

.benefit-card.image-card.red-bg {
    background-color: #FF6B6B;
}

.benefit-number {
    width: 76px;
    height: 76px;
    background-color: #222;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.benefit-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.benefit-info h4 {
    font-size: 22px;
    font-weight: 800;
    color: #222;
}

.benefit-info p {
    font-size: 16px;
    color: #444;
    font-weight: 500;
}

.benefits-footer {
    width: 100%;
    max-width: 900px;
    text-align: right;
    margin-top: 16px;
    color: #999;
    font-size: 13px;
}

/* Instructor Story Section */
.instructor-story-section {
    background-color: #F8F9FA;
    padding: 100px 0 80px;
    width: 100%;
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.instructor-story-section .section-header {
    margin-bottom: 40px;
    text-align: center;
}

.instructor-story-section .section-title {
    font-size: 34px;
    font-weight: 800;
    color: #222;
}

.story-cards-container {
    display: flex;
    gap: 30px;
    width: 100%;
    max-width: 1100px;
    padding: 0 20px;
}

.story-card {
    flex: 1;
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.story-image {
    width: 100%;
    height: 240px;
    background-color: #E9ECEF;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.story-badge {
    background-color: #F4F5F7;
    color: #333;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.story-desc {
    font-size: 16px;
    color: rgba(34, 34, 34, 1);
    font-weight: 400;
    line-height: 28px;
    margin: 0;
}

/* Footer Section */
.site-footer {
    background-color: #2b2b2b;
    color: #888888;
    padding: 50px 0;
    width: 100%;
}

.footer-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 50px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.2s;
}

.social-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.social-icon:hover img {
    opacity: 1;
}

.footer-controls {
    display: flex;
    gap: 12px;
}

.related-sites {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #888888;
    padding: 8px 16px;
    border-radius: 4px;
    outline: none;
    font-size: 13px;
    appearance: none;
    width: 140px;
}

.btn-top {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: #bbb;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    transition: background-color 0.2s;
}

.btn-top:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    font-size: 12px;
    line-height: 1.6;
}

.company-info {
    margin-bottom: 10px;
}

.company-info .divider {
    margin: 0 8px;
    color: #555;
}

.copyright {
    color: #666;
}

/* ============================================================
   MOBILE RESPONSIVE — 768px 단일 브레이크포인트 (2026-06 추가)
   ============================================================ */
@media (max-width: 768px) {

    /* Hero */
    .hero-section {
        padding: 0 16px;
    }

    .hero-card {
        height: auto;
        min-height: 440px;
        padding: 56px 0;
        border-radius: 24px;
        display: block;
    }

    .hero-content {
        padding: 0 10px;
        max-width: 100%;
    }

    .hero-title {
        font-size: 30px;
        margin-bottom: 16px;
    }

    .hero-info-list {
        width: 100%;
        margin-bottom: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-hero {
        min-width: 0;
        width: 100%;
    }

    /* Program section */
    .training-program-section {
        margin: 60px auto;
        padding: 0 16px;
    }

    .section-title {
        font-size: 26px;
        line-height: 1.35;
    }

    .program-cards-container {
        flex-direction: column;
        gap: 20px;
    }

    .program-status-card,
    .program-info-card {
        width: 100%;
        height: auto;
    }

    .program-status-card {
        padding: 48px 24px;
    }

    .preparing-image {
        margin-bottom: 28px;
    }

    .preparing-image img {
        width: 220px;
    }

    .program-status-card .card-title {
        font-size: 24px;
        line-height: 1.35;
    }

    .program-status-card .card-desc {
        font-size: 17px;
    }

    .program-info-card {
        padding: 36px 24px;
    }

    .card-title-inline {
        font-size: 24px;
        line-height: 1.4;
    }

    /* Benefits */
    .benefits-section {
        margin: 60px auto 80px;
        padding: 0 16px;
    }

    .benefits-section .section-title {
        font-size: 26px;
    }

    .benefit-row {
        flex-direction: column;
        height: auto;
        gap: 16px;
        position: relative;
    }

    .benefit-card.text-card {
        padding: 24px;
        gap: 16px;
    }

    .benefit-card.image-card {
        position: absolute;
        right: 0;
        top: -30px;

        width: 60px;
        height: 60px;
        border-radius: 10px;
    }

    .benefit-number {
        width: 60px;
        height: 60px;
        font-size: 16px;
    }

    .benefit-info h4 {
        font-size: 17px;
    }

    .benefits-footer {
        padding: 0 16px;
    }

    /* Instructor stories */
    .instructor-story-section {
        padding: 60px 0 56px;
        margin-top: 60px;
    }

    .instructor-story-section .section-title {
        font-size: 26px;
    }

    .story-cards-container {
        flex-direction: column;
        gap: 24px;
        padding: 0 16px;
    }

    .story-image {
        height: 200px;
    }

    /* Footer */
    .footer-container {
        padding: 0 20px;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}