/******************************************************
 * SECTION 00 레이아웃 (센터 공통 히어로)
 ******************************************************/
 .section-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0;
    max-width: 1820px;
    margin: 0 auto;
}

/* 전체 배경 */
.section-hero .hero-wrap {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 520px;
    overflow: hidden;
    border-radius: 24px;
}

.section-hero .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.section-hero .hero-caption {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 1.25rem;
    text-align: center;
    color: #fff;
}

/* 스크롤 안내 */
.section-hero .scroll-cue {
    background: none;
    border: none;
    margin-top: 36px;
    cursor: pointer;
}

.section-hero .scroll-icon {
    width: 38px;
    opacity: 0.9;
    animation: scrollBlink 1.4s infinite ease-in-out;
}

@keyframes scrollBlink {
    0% { opacity: 0.2; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(6px); }
    100% { opacity: 0.2; transform: translateY(0); }
}

/******************************************************
 * CENTER HERO TITLE
 ******************************************************/
.center-hero__caption {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.center-hero__line {
    color: #fff;
}

/* typing line */
.center-hero__line--typing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.center-hero__typing {
    display: inline-block;
    white-space: nowrap;
    font-weight: 700;
    font-size: 55px;
    letter-spacing: -0.04em;
}

.center-hero__after {
    display: inline-block;
    font-size: 30px;
}

.center-hero__cursor {
    display: inline-block;
    width: 2px;
    height: 1.1em;
    background: #fff;
    animation: centerHeroCursorBlink .7s steps(1) infinite;
}

@keyframes centerHeroCursorBlink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

/* title line */
.center-hero__line--title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.center-hero__title {
    font-size: 55px;
    font-weight: 800;
    line-height: 1.22;
    margin: 0 0 6px;
    letter-spacing: -0.04em;
}

.center-hero__sub {
    font-size: 30px;
    opacity: 0.9;
    margin: 0;
    letter-spacing: -0.03em;
}

/******************************************************
 * 📱 MOBILE RESPONSIVE (ONLY ONE BREAKPOINT: 1000px)
 ******************************************************/
@media (max-width: 1000px) {

    .section-hero .hero-wrap {
        height: 580px;
        min-height: 380px;
        border-radius: 0; /* 모바일은 양쪽 꽉 차게 */
    }

    .section-hero .hero-caption {
        padding: 1.5rem 1rem;
    }

    /* 타이핑 라인 */
    .center-hero__line--typing {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .center-hero__typing {
        font-size: 40px;
    }

    /* 타이틀 */
    .center-hero__title {
        font-size: 40px;
        line-height: 1.28;
    }

    .center-hero__sub,.center-hero__after {
        font-size: 22px;
    }

    /* 스크롤 아이콘 */
    .section-hero .scroll-icon {
        width: 30px;
    }
}







.bb-system-section{
    padding:80px 0;
    background:#FBFBFB;
  }
  .bb-left{
    width:55%;
  }
  .bb-right{
    width:45%;
  }
  .bb-system-section .row{gap:40px 0;}
  /* 왼쪽 */
  .bb-left .bb-kicker{
    font-size:24px;
    letter-spacing:.06em;
    color:#000;
    margin-bottom:16px;
  }
  .bb-left .bb-title{
    font-size:70px;
    font-weight:700;
    margin-bottom:100px;
  }
  .bb-left .bb-title-main{
    font-size:70px;
    font-weight:800;
  }
  .bb-left .bb-desc{
    font-size: 40px;
    /* line-height: 1.8; */
    color: #000;
    margin: 0;
  }
  
  /* 공통 카드 */
  .bb-right{display:flex;justify-content:flex-end;}
  .bb-card{
    width:100%;
    max-width:420px;
    background:#fff;
    border-radius:24px;
    padding:32px 28px 26px;
    box-shadow:0 24px 60px rgba(0,0,0,0.12);
    position:relative;
  }

  /* 질문 카드 */
  .bb-card-top{margin-bottom:28px;text-align: center;}
  .bb-step-badges{display:inline-flex;align-items:center;}
  .bb-badge-step{
    display:inline-flex;align-items:center;justify-content:center;
    width:40px;height:40px;border-radius:50%;
    background:#0f172a;color:#fff;font-weight:700;font-size:16px;
  }
  .bb-step-title{
    margin-top:14px;
    font-size:15px;
    color:#6b7280;
  }
  .bb-choice-list{
    list-style:none;
    padding:0;
    margin:0 0 28px;
    display:flex;
    flex-direction:column;
    gap:10px;
  }
  .bb-choice-btn{
    width:100%;
    border:none;
    border-radius:999px;
    padding:13px 18px;
    background:#f3f4f6;
    font-size:14px;
    color:#111827;
    text-align:center;
    cursor:pointer;
    transition:all .18s ease-out;
  }
  .bb-choice-btn:hover{background:#e5e7eb;}
  .bb-choice-btn.is-selected{
    background:#111827;
    color:#fff;
  }
  .bb-card-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
  }
  .bb-pagination{font-size:13px;color:#9ca3af;}
  .bb-page-current{font-weight:600;color:#111827;}
  .bb-page-divider{margin:0 4px;}
  .bb-nav-btns{display: flex; gap: 10px;}
  .bb-next-btn,.bb-prev-btn{
    width:40px;height:40px;border-radius:50%;
    border:none;background:#111827;color:#fff;
    display:flex;align-items:center;justify-content:center;
    cursor:pointer;
    box-shadow:0 10px 20px rgba(15,23,42,0.35);
    transition:transform .18s ease,box-shadow .18s ease,background .18s ease;
  }
  .bb-next-btn:hover{transform:translateY(-2px);background:#0b1120;}
  .bb-next-icon{display:inline-block;transform:translateX(1px);font-size:16px;}
  .blind{
    position:absolute;width:1px;height:1px;margin:-1px;padding:0;
    overflow:hidden;clip:rect(0,0,0,0);border:0;white-space:nowrap;
  }
  
  /* 결과 카드 */
  .bb-card-result{padding:28px 26px 24px;}
  .bb-result-tabs{
    display:flex;
    gap:4px;
    background:#e5e7eb;
    padding:3px;
    border-radius:999px;
    margin-bottom:18px;
  }
  .bb-result-tab{
    flex:1;
    border:none;
    border-radius:999px;
    background:transparent;
    font-size:13px;
    padding:8px 4px;
    cursor:pointer;
    color:#4b5563;
    font-weight:500;
  }
  .bb-result-tab.is-active{
    background:#0f172a;
    color:#fff;
  }
  .bb-result-inner{
    border-radius:16px;
    border:1px solid #e5e7eb;
    padding:18px 16px 16px;
  }
  .bb-result-header{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:12px;
  }
  .bb-result-avatar{
    width:44px;height:44px;border-radius:50%;
    border:2px solid #e5e7eb;
    display:flex;align-items:center;justify-content:center;
    background:#f9fafb;
  }
  .bb-result-letter{
    width:30px;height:30px;border-radius:50%;
    background:#111827;color:#fff;
    display:flex;align-items:center;justify-content:center;
    font-weight:700;font-size:14px;
  }
  .bb-result-caption{
    font-size:13px;
    color:#6b7280;
    margin:0;
  }
  .bb-result-panel{display:none;margin-bottom:10px;}
  .bb-result-panel.is-active{display:block;}
  .bb-result-list{
    list-style:none;
    padding-left:0;
    margin:0;
  }
  .bb-result-list li{
    font-size:13px;
    line-height:1.7;
    color:#111827;
    position:relative;
    padding-left:14px;
  }
  .bb-result-list li::before{
    content:"-";
    position:absolute;
    left:0;
    top:0;
  }
  .bb-result-cta{
    margin-top:8px;
  }
  .bb-result-cta-text{
    font-size:13px;
    color:#4b5563;
    margin-bottom:10px;
  }
  .bb-result-btns{
    display:flex;
    flex-direction:column;
    gap:8px;
  }
  .bb-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    height:42px;
    border-radius:999px;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
  }
  .bb-btn-blue{
    background:#111827;
    color:#fff;
  }
  .bb-btn-yellow{
    background:#ffd800;
    color:#111827;
  }
  
/* =============================== */
/* 모바일 최적화 (max-width:1000px) */
/* =============================== */

@media (max-width: 1000px) {

    .bb-system-section {
      padding: 48px 0;
    }
  
    /* 레이아웃: 한 줄 → 세로 */
    .bb-left,
    .bb-right {
      width: 100% !important;
      max-width: 100%;
      flex: 0 0 100%;
    }
  
    .bb-left {
        text-align: left;
        max-width: 90%;
        margin: 0 auto;
    }
  
    /* =============================== */
    /* 모바일 텍스트 스타일 */
    /* =============================== */
  
    .bb-left .bb-kicker {
        font-size: 16px;
        margin-bottom: 10px;
        /* line-height: 1.4; */
        width: 95%;
        margin-bottom:20px;
        text-align: left;
    }
  
    .bb-left .bb-title {
      font-size: 36px;
      margin-bottom: 40px;
    }
  
    .bb-left .bb-title-main {
      font-size: 26px;
    }
  
    .bb-left .bb-desc {
      font-size: 24px;
    }
  
    /* =============================== */
    /* 카드 영역 */
    /* =============================== */
  
    .bb-right {
      justify-content: flex-start;
    }
  
    .bb-card {
      max-width: 100%;
      width: 100%;
      padding: 24px 20px 22px;
      margin: 0 auto;
      border-radius: 20px;
    }
  
    .bb-card-top {
      margin-bottom: 20px;
    }
  
    .bb-badge-step {
      width: 34px;
      height: 34px;
      font-size: 14px;
    }
  
    .bb-step-title {
      font-size: 13px;
      margin-top: 10px;
    }
  
    .bb-choice-btn {
      font-size: 13px;
      padding: 12px 14px;
    }
  
    /* 하단 페이지 및 버튼 */
    .bb-pagination {
      font-size: 12px;
    }
  
    .bb-next-btn {
      width: 38px;
      height: 38px;
    }
  
    .bb-next-icon {
      font-size: 15px;
    }
  
    /* =============================== */
    /* 결과 카드 (모바일용) */
    /* =============================== */
  
    .bb-card-result {
      padding: 22px 18px;
    }
  
    .bb-result-tabs {
      padding: 2px;
      border-radius: 50px;
    }
  
    .bb-result-tab {
      font-size: 12px;
      padding: 7px 4px;
    }
  
    .bb-result-inner {
      padding: 14px 12px;
    }
  
    .bb-result-header {
      gap: 10px;
      margin-bottom: 10px;
    }
  
    .bb-result-avatar {
      width: 40px;
      height: 40px;
    }
  
    .bb-result-letter {
      width: 26px;
      height: 26px;
      font-size: 13px;
    }
  
    .bb-result-caption {
      font-size: 12px;
    }
  
    .bb-result-list li {
      font-size: 12px;
      line-height: 1.55;
    }
  
    .bb-result-cta-text {
      font-size: 12px;
      margin-bottom: 8px;
    }
  
    .bb-result-btns {
      gap: 6px;
    }
  
    .bb-btn {
      height: 40px;
      font-size: 13px;
    }
  }
  