* { font-family: 'Noto Sans KR', sans-serif; }

/* ── 공통 섹션 ─────────────────────────────────────────────── */
.py-section { padding-top: 5rem; padding-bottom: 5rem; }

.section-badge {
    display: inline-block;
    background: #e8f0fe;
    color: #1a56db;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: .75rem;
}
.section-badge.text-bg-primary { background: #1a56db; color: #fff; }
.section-badge.text-bg-success { background: #057a55; color: #fff; }

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: .75rem;
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero-section {
    min-height: 88vh;
    display: flex;
    align-items: center;
    background-color: #0f172a; /* dark fallback */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-badge {
    display: inline-block;
    background: rgba(255,193,7,.18);
    border: 1px solid rgba(255,193,7,.45);
    color: #ffc107;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: .875rem;
    font-weight: 500;
}
.fw-black { font-weight: 900; }
.text-white-75 { color: rgba(255,255,255,.75); }
.hero-stat {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 14px;
    padding: 1rem;
    backdrop-filter: blur(4px);
}

/* ── 사업소개 카드 ──────────────────────────────────────────── */
.feature-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    transition: transform .25s, box-shadow .25s;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,.1) !important;
}
.feature-img-wrap {
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.feature-img-wrap img { transition: transform .4s; }
.feature-card:hover .feature-img-wrap img { transform: scale(1.05); }

/* ── 로드맵 ─────────────────────────────────────────────────── */
.roadmap-card {
    background: #fff;
    transition: transform .25s, box-shadow .25s;
}
.roadmap-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0,0,0,.1) !important;
}
.roadmap-year {
    display: inline-block;
    padding: 4px 18px;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 700;
    background: #f3f4f6;
    color: #374151;
}
.roadmap-1 { border-top: 4px solid #93c5fd !important; }
.roadmap-2 { border-top: 4px solid #1d4ed8 !important; }
.roadmap-3 { border-top: 4px solid #111827 !important; }
.roadmap-icon { font-size: 2.4rem; line-height: 1; }

.roadmap-arrow-bar {
    background: linear-gradient(90deg, #3b82f6, #1d4ed8, #111827);
    color: #fff;
}
.roadmap-arrow-sep {
    display: flex;
    align-items: center;
    color: rgba(255,255,255,.5);
    font-size: 1.2rem;
    padding: 0 .5rem;
}

/* ── 지원 혜택 ──────────────────────────────────────────────── */
.benefit-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    transition: transform .2s, box-shadow .2s;
}
.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
}
.benefit-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

/* ── 슬라이더 ───────────────────────────────────────────────── */
.ax-slider-track { transition: transform .5s ease-in-out; }
.ax-slider-btn {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    z-index: 10;
    width: 42px; height: 42px;
    background: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    color: #374151;
    transition: background .2s;
}
.ax-slider-btn:hover { background: #f3f4f6; }
.ax-slider-btn-prev { left: -20px; }
.ax-slider-btn-next { right: -20px; }
.ax-slider-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    border: none;
    background: #d1d5db;
    cursor: pointer;
    padding: 0;
    transition: background .2s;
}
.ax-slider-dot.active { background: #1d4ed8; }

/* ── 참여 절차 ──────────────────────────────────────────────── */
.step-icon {
    width: 72px; height: 72px;
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
}

/* ── 참여 대상 ──────────────────────────────────────────────── */
.eligibility-card {
    background: #fff;
    border-color: #e5e7eb !important;
}
.eligibility-check {
    flex-shrink: 0;
    width: 22px; height: 22px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .7rem;
    font-weight: 700;
    margin-top: 2px;
}

/* ── CTA ────────────────────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 50%, #2563eb 100%);
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* ── 페이드인 애니메이션 ─────────────────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── 푸터 ───────────────────────────────────────────────────── */
.footer { background-color: #111827 !important; }

/* ── 로그인 카드 (공용) ─────────────────────────────────────── */
.login-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,.12);
}

/* ── 진단 플레이스홀더 ──────────────────────────────────────── */
.diagnosis-placeholder {
    background: linear-gradient(135deg, #f0f7ff, #e3f2fd);
    border: 2px dashed #90caf9;
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
}
