/* ===== HERO ===== */
.bn-hero {
    background-image: url('/img/ev.png');
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    padding: 70px 56px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.bn-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background: linear-gradient(120deg, rgba(10,30,80,0.82) 50%, rgba(10,30,80,0.3) 100%); */
    border-radius: 16px;
}
.bn-hero-inner {
    position: relative;
    z-index: 1;
    /* max-width: 520px; */
    width: 100%;
}
.bn-hero-sub {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 12px;
}
.bn-hero-title {
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 16px;
}
.bn-hero-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    line-height: 1.75;
    margin-bottom: 28px;
}
.bn-hero-btn {
    display: inline-block;
    background: #fff;
    color: #1255a4;
    font-size: 14px;
    font-weight: 800;
    padding: 13px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: opacity 0.2s;
}
.bn-hero-btn:hover { opacity: 0.85; }

/* ===== 배지 ===== */
.bn-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 52px;
}
.bn-badge {
    background: #fff;
    border: 1.5px solid #e4eaf5;
    border-radius: 14px;
    padding: 26px 16px 20px;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
}
.bn-badge:hover {
    box-shadow: 0 6px 24px rgba(18,85,164,0.1);
    transform: translateY(-3px);
}
.bn-badge-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 14px;
}
.bn-badge-icon svg { width: 100%; height: 100%; }
.bn-badge strong {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: #1a2a4a;
    margin-bottom: 5px;
}
.bn-badge span { font-size: 12px; color: #999; }

/* ===== 섹션 타이틀 ===== */
.bn-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.bn-section-tag {
    background: #1255a4;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
}
.bn-section-title h3 {
    font-size: 22px;
    font-weight: 800;
    color: #1a2a4a;
    margin: 0;
}

/* ===== 카드 3열 ===== */
.bn-card-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 52px;
}
.bn-card {
    background: linear-gradient(145deg, #1255a4, #1a7ed8);
    border-radius: 14px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.bn-card-icon svg { width: 52px; height: 52px; }
.bn-card-body strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}
.bn-card-body p {
    font-size: 13px;
    color: rgba(255,255,255,0.78);
    line-height: 1.68;
}

/* ===== 혜택 리스트 ===== */
.bn-benefit-list {
    border: 1.5px solid #e4eaf5;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 52px;
}
.bn-benefit-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 26px 32px;
    background: #fff;
    border-bottom: 1px solid #f0f4fb;
    transition: background 0.15s;
}
.bn-benefit-item:last-child { border-bottom: none; }
.bn-benefit-item:hover { background: #f6f9ff; }
.bn-benefit-num {
    font-size: 30px;
    font-weight: 900;
    color: #dde6f5;
    min-width: 48px;
    line-height: 1;
    flex-shrink: 0;
}
.bn-benefit-content { flex: 1; }
.bn-benefit-content strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: #1a2a4a;
    margin-bottom: 5px;
}
.bn-benefit-content p { font-size: 13px; color: #777; line-height: 1.65; }
.bn-benefit-deco svg {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

/* ===== 장르 그리드 ===== */
.bn-genre-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-bottom: 52px;
}
.bn-genre-card {
    background: #fff;
    border: 1.5px solid #e4eaf5;
    border-radius: 14px;
    padding: 24px 10px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.bn-genre-card:hover {
    border-color: #1255a4;
    box-shadow: 0 4px 16px rgba(18,85,164,0.1);
    transform: translateY(-3px);
}
.bn-genre-card svg { width: 40px; height: 40px; }
.bn-genre-card span {
    font-size: 13px;
    font-weight: 700;
    color: #1a2a4a;
}

/* ===== CTA ===== */
.bn-cta-wrap { margin-bottom: 16px; }
.bn-cta {
    background: linear-gradient(135deg, #0a1e50, #1255a4);
    border-radius: 16px;
    padding: 42px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.bn-cta-text strong {
    display: block;
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 8px;
}
.bn-cta-text p { font-size: 13px; color: rgba(255,255,255,0.65); }
.bn-cta-btns { display: flex; gap: 12px; flex-shrink: 0; }
.bn-cta-btn-main {
    background: #fff;
    color: #1255a4;
    font-size: 14px;
    font-weight: 800;
    padding: 13px 28px;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s;
}
.bn-cta-btn-main:hover { opacity: 0.88; }
.bn-cta-btn-sub {
    background: transparent;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,0.45);
    text-decoration: none;
    white-space: nowrap;
    transition: border-color 0.2s;
}
.bn-cta-btn-sub:hover { border-color: #fff; }

/* ===== 반응형 ===== */
@media (max-width: 1024px) {
    .bn-genre-grid { grid-template-columns: repeat(3, 1fr); }
    .bn-hero { padding: 52px 40px; }
    .bn-hero-title { font-size: 28px; }
}
@media (max-width: 768px) {
    .bn-hero { padding: 40px 28px; }
    .bn-hero-title { font-size: 24px; }
    .bn-badges { grid-template-columns: repeat(2, 1fr); }
    .bn-card-row { grid-template-columns: 1fr; }
    .bn-genre-grid { grid-template-columns: repeat(3, 1fr); }
    .bn-cta { flex-direction: column; text-align: center; padding: 32px 24px; }
    .bn-cta-btns { flex-direction: column; width: 100%; }
    .bn-cta-btn-main, .bn-cta-btn-sub { text-align: center; }
    .bn-benefit-item { padding: 20px 18px; gap: 16px; }
    .bn-benefit-deco { display: none; }
    .bn-benefit-num { font-size: 22px; min-width: 34px; }
}
@media (max-width: 480px) {
    .bn-hero {padding: 32px 20px;background-position: right;}
    .bn-hero-title { font-size: 20px; }
    .bn-badges { grid-template-columns: repeat(2, 1fr); }
    .bn-genre-grid { grid-template-columns: repeat(2, 1fr); }
    .bn-section-title h3 { font-size: 17px; }
    .bn-cta { padding: 28px 20px; }
    .bn-cta-text strong { font-size: 18px; }
}
