/* BNZ for Edu 랜딩 — 모바일·태블릿 반응형 (데스크톱 레이아웃 유지) */

/* 데스크톱 1920px 이상 — 브라우저 줌 80%와 동일한 전역 표시 스케일 */
@media (min-width: 1920px) {
  html.bnz-landing-scale {
    zoom: 0.8;
    background: #121212;
  }

  html.bnz-landing-scale body {
    background: #121212;
  }
}

/* Firefox 등 zoom 미지원 (1920px 이상만) */
@supports not (zoom: 1) {
  @media (min-width: 1920px) {
    html.bnz-landing-scale body {
      transform: scale(0.8);
      transform-origin: top center;
      width: 125%;
      min-height: 125vh;
    }
  }
}

html,
body {
  overflow-x: hidden;
}

@media (max-width: 600px) {
  .bnz-modal-two-col {
    grid-template-columns: 1fr !important;
  }
}

.bnz-inquiry-cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media (max-width: 900px) {
  .bnz-inquiry-cta {
    justify-content: flex-start;
  }

  .bnz-inquiry-cta__btn {
    width: 100%;
    justify-content: center;
  }
}

/* Features — PC: 3열 × 2행 */
@media (min-width: 901px) {
  .bnz-features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 900px) {
  .cta-grid {
    grid-template-columns: 1fr !important;
  }

  /* 상단 내비: 햄버거 + 드로어는 components-hero.jsx(B2BNav)에서 처리 */
  .bnz-nav.bnz-nav--compact {
    height: 56px !important;
    min-height: 56px;
    padding: 0 16px !important;
    flex-wrap: nowrap !important;
  }

  .bnz-hero-section {
    padding-top: 72px !important;
  }

  .bnz-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px 14px !important;
    margin-top: 56px !important;
  }
  .bnz-feature-card {
    min-height: 0 !important;
    padding: 16px 12px !important;
    gap: 12px !important;
  }
  .bnz-feature-card__title {
    font-size: clamp(15px, 3.8vw, 20px) !important;
    line-height: 1.25 !important;
  }
}

@media (max-width: 640px) {
  .bnz-hero-stats {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    padding-top: 28px !important;
  }
  .bnz-hero-stats > div {
    border-left: none !important;
    padding: 18px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  .bnz-hero-stats > div:first-child {
    border-top: none;
    padding-top: 0 !important;
  }
}

@media (max-width: 720px) {
  .bnz-dashboard-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-left: -8px;
    margin-right: -8px;
    padding-left: 8px;
    padding-right: 8px;
  }
  .bnz-dashboard-mock__body {
    display: grid !important;
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
  }
  .bnz-dashboard-mock__sidebar {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    padding-bottom: 12px !important;
  }
  .bnz-dash-kpis {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 720px) {
  .bnz-mission-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
}

@media (max-width: 600px) {
  .bnz-customers-quote {
    padding: clamp(24px, 6vw, 40px) clamp(16px, 4vw, 28px) clamp(32px, 7vw, 48px) !important;
  }
  .bnz-footer-inner {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
}

@media (max-width: 720px) {
  .bnz-eng-hero-line0 {
    white-space: normal !important;
  }
}
