/* ============================================
   main.css – NEW BORN Homepage
   ============================================ */

/* --- Keyframes --- */
@keyframes nbLabelIn {
  from { opacity: 0; transform: translateY(8px) scale(.96); }
  to   { opacity: 1; transform: none; }
}
@keyframes nbScan {
  0%   { top: 8%; }
  50%  { top: 78%; }
  100% { top: 8%; }
}
@keyframes nbFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

/* --- Layout Helpers --- */
.nb-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
  width: 100%;
}

/* ===== HEADER ===== */
.nb-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 80px;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.nb-header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 #E1E6EE;
}
.nb-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nb-logo {
  font: 900 22px/1 'Pretendard';
  color: #fff;
  letter-spacing: -.01em;
  white-space: nowrap;
  text-decoration: none;
  transition: color .3s;
}
.nb-logo .accent { color: #4A8BFF; }
.nb-header.scrolled .nb-logo { color: #0A1F44; }

.nb-nav { display: flex; align-items: center; gap: 48px; }
.nb-nav-item { position: relative; display: flex; align-items: center; }
.nb-nav-item > a { white-space: nowrap; }
.nb-nav-dropdown {
  display: none; position: absolute; top: calc(100% + 10px); left: 0;
  background: #fff; border-radius: 10px; min-width: 160px;
  box-shadow: 0 8px 28px rgba(10,31,68,0.18); z-index: 1002;
  flex-direction: column; overflow: hidden;
}
.nb-nav-dropdown::before {
  content: ''; position: absolute; top: -5px; left: 18px;
  width: 10px; height: 10px; background: #fff;
  transform: rotate(45deg); box-shadow: -2px -2px 3px rgba(0,0,0,0.06);
}
.nb-nav-item.open .nb-nav-dropdown { display: flex; }
.nb-nav-dropdown a {
  display: block; padding: 11px 20px; font-size: 14px; font-weight: 500;
  color: #1A1F2E !important; white-space: nowrap;
  border-bottom: 1px solid #F0F2F6; position: relative; z-index: 1; background: #fff;
}
.nb-nav-dropdown a:last-child { border-bottom: none; }
.nb-nav-dropdown a:hover { background: #F0F6FF !important; color: #1E5EFF !important; }
.nb-nav a {
  font: 600 16px/1 'Pretendard';
  color: #fff;
  text-decoration: none;
  transition: color .2s;
  white-space: nowrap;
}
.nb-nav a:hover { color: #4A8BFF; }
.nb-header.scrolled .nb-nav a { color: #0A1F44; }
.nb-header.scrolled .nb-nav a:hover { color: #1E5EFF; }

.nb-header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nb-lang {
  font: 600 14px/1 'Pretendard';
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color .3s;
  cursor: pointer;
  background: none;
  border: none;
}
.nb-header.scrolled .nb-lang { color: #0A1F44; }
.nb-lang-btn {
  background: none; border: none; cursor: pointer;
  font: 600 13px/1 'Pretendard'; color: inherit;
  padding: 2px 3px; opacity: 0.55; transition: opacity .2s;
}
.nb-lang-btn:hover { opacity: 1; }
.nb-lang-btn.nb-lang-active { opacity: 1; text-decoration: underline; text-underline-offset: 3px; }
.nb-lang-sep { font-size: 11px; opacity: 0.3; }

.nb-btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  background: #1E5EFF;
  color: #fff;
  font: 600 15px/1 'Pretendard';
  text-decoration: none;
  transition: background .2s;
  border: none;
  cursor: pointer;
}
.nb-btn-cta:hover { background: #0A3FCC; }

/* Mobile menu toggle */
.nb-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nb-menu-toggle span {
  width: 22px;
  height: 2px;
  background: #fff;
  display: block;
  transition: background .3s;
}
.nb-header.scrolled .nb-menu-toggle span { background: #0A1F44; }

/* Mobile drawer */
.nb-mobile-drawer {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
  z-index: 99;
  padding: 24px 20px;
  flex-direction: column;
  gap: 16px;
}
.nb-mobile-drawer.open { display: flex; }
.nb-mobile-drawer a {
  font: 600 16px/1 'Pretendard';
  color: #0A1F44;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid #E1E6EE;
}

/* ===== HERO ===== */
.nb-hero {
  position: relative;
  min-height: 760px;
  padding: 140px 0 120px;
  background: linear-gradient(135deg, #001A4D 0%, #0A1F44 55%, #1E5EFF 130%);
  overflow: hidden;
}
.nb-hero-dots {
  position: absolute;
  inset: 0;
  opacity: .06;
  background-image: radial-gradient(#fff 1.4px, transparent 1.4px);
  background-size: 26px 26px;
}
.nb-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
}
.nb-hero-eyebrow {
  font: 700 16px/1 'Pretendard';
  color: #4A8BFF;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.nb-hero h1 {
  font: 800 56px/1.15 'Pretendard';
  letter-spacing: -.025em;
  color: #fff;
  margin: 0 0 28px;
}
.nb-hero h1 .accent { color: #4A8BFF; }
.nb-hero-desc {
  font: 400 18px/1.7 'Pretendard';
  color: #C8D2E4;
  margin: 0 0 40px;
  max-width: 440px;
}
.nb-hero-btns {
  display: flex;
  gap: 16px;
}
.nb-btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 64px;
  padding: 0 32px;
  border-radius: 8px;
  background: #1E5EFF;
  color: #fff;
  font: 600 18px/1 'Pretendard';
  text-decoration: none;
  transition: all .2s ease;
}
.nb-btn-hero-primary:hover {
  background: #0A3FCC;
  box-shadow: 0 8px 20px rgba(30,94,255,.35);
}
.nb-btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 64px;
  padding: 0 32px;
  border-radius: 8px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.7);
  color: #fff;
  font: 600 18px/1 'Pretendard';
  text-decoration: none;
  transition: all .2s ease;
}
.nb-btn-hero-outline:hover {
  background: #fff;
  color: #0A1F44;
  border-color: #fff;
}
.nb-hero-visual {
  position: relative;
  align-self: stretch;
  max-width: 720px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
.nb-hero-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
  animation: nbScan 4s ease-in-out infinite;
}
.nb-hero-visual-text {
  color: rgba(255,255,255,.85);
  font: 600 16px/1 'Pretendard';
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-label {
  position: absolute;
  padding: 5px 12px;
  border-radius: 6px;
  background: rgba(0,0,0,.4);
  color: #fff;
  font: 700 13px/1 'Pretendard';
  opacity: 0;
}
.hero-label-1 { top: 20%; left: 46%; border: 2px solid #FBBF24; }
.hero-label-2 { top: 62%; left: 18%; border: 2px solid #22C55E; }

/* ===== STATS BAR ===== */
.nb-stats { background: #fff; }
.nb-stats-inner {
  display: flex;
  height: 200px;
  align-items: center;
  border-bottom: 1px solid #E1E6EE;
}
.nb-stat-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 8px;
}
.nb-stat-item + .nb-stat-item { padding-left: 32px; }
.nb-stat-divider {
  width: 1px;
  height: 96px;
  background: #E1E6EE;
  flex: none;
}
.nb-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #E8F0FF;
  color: #1E5EFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.nb-stat-icon svg {
  width: 24px;
  height: 24px;
  stroke: #1E5EFF;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nb-stat-number {
  font: 800 56px/1 'Pretendard';
  letter-spacing: -.025em;
  color: #1E5EFF;
}
.nb-stat-number .accent { color: #0A1F44; }
.nb-stat-label {
  font: 600 16px/1.3 'Pretendard';
  color: #0A1F44;
  margin: 8px 0 4px;
}
.nb-stat-sub {
  font: 400 13px/1.4 'Pretendard';
  color: #6B7585;
}

/* ===== ABOUT ===== */
.nb-about { background: #F5F7FA; padding: 96px 0; }
.nb-about-card {
  background: #fff;
  border-radius: 16px;
  padding: 64px;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 56px;
  align-items: center;
  box-shadow: 0 8px 24px rgba(10,31,68,.04);
}
.nb-about-label {
  font: 700 16px/1 'Pretendard';
  color: #1E5EFF;
  letter-spacing: .04em;
  margin-bottom: 20px;
}
.nb-about h2 {
  font: 800 40px/1.3 'Pretendard';
  letter-spacing: -.01em;
  color: #0A1F44;
  margin: 0 0 24px;
}
.nb-about p {
  font: 400 16px/1.7 'Pretendard';
  color: #4A5468;
  margin: 0 0 32px;
  max-width: 460px;
}
.nb-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 56px;
  padding: 0 24px;
  border-radius: 8px;
  border: 1.5px solid #0A1F44;
  background: transparent;
  color: #0A1F44;
  font: 600 16px/1 'Pretendard';
  text-decoration: none;
  transition: all .2s;
}
.nb-btn-outline:hover { background: #0A1F44; color: #fff; }

.nb-about-img {
  aspect-ratio: 16/9;
  border-radius: 8px;
  background: linear-gradient(120deg, #3B7BFF, #22C55E);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.9);
  font: 600 15px/1 'Pretendard';
  overflow: hidden;
}

/* ===== SOLUTIONS ===== */
.nb-solutions { background: #fff; padding: 96px 0; }
.nb-section-header {
  text-align: center;
  margin-bottom: 56px;
}
.nb-section-label {
  font: 700 16px/1 'Pretendard';
  color: #1E5EFF;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.nb-section-title {
  font: 800 40px/1.25 'Pretendard';
  letter-spacing: -.01em;
  color: #0A1F44;
  margin: 0;
}
.nb-sol-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.nb-sol-card {
  border: 1px solid #E1E6EE;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.nb-sol-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10,31,68,.08);
  border-color: #1E5EFF;
}
.nb-sol-img-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.nb-sol-img {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.9);
  font: 500 14px/1 'Pretendard';
  transition: transform .4s ease;
}
.nb-sol-card:hover .nb-sol-img { transform: scale(1.05); }
.nb-sol-num {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 24px;
  border-radius: 999px;
  background: rgba(0,0,0,.3);
  color: #fff;
  font: 700 11px/24px 'Pretendard';
  text-align: center;
}
.nb-sol-body { padding: 24px; }
.nb-sol-tag {
  font: 700 13px/1 'Pretendard';
  color: #1E5EFF;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.nb-sol-body h3 {
  font: 800 22px/1.3 'Pretendard';
  color: #0A1F44;
  margin: 0 0 10px;
}
.nb-sol-body p {
  font: 400 14px/1.6 'Pretendard';
  color: #4A5468;
  margin: 0;
}

/* ===== CASE STUDIES ===== */
.nb-cases { background: #F5F7FA; padding: 96px 0; }
.nb-cases-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.nb-case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.nb-case-card {
  background: #fff;
  border: 1px solid #E1E6EE;
  border-radius: 12px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  text-decoration: none;
  display: block;
}
.nb-case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10,31,68,.08);
  border-color: #1E5EFF;
}
.nb-case-img {
  position: relative;
  height: 160px;
  overflow: hidden;
}
.nb-case-img-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #4A8BFF, #1E5EFF);
  transition: transform .4s ease;
}
.nb-case-card:hover .nb-case-img-bg { transform: scale(1.05); }
.nb-case-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(0,0,0,.4);
  color: #fff;
  font: 600 11px/1 'Pretendard';
}
.nb-case-body { padding: 20px; }
.nb-case-body h3 {
  font: 800 18px/1.4 'Pretendard';
  color: #0A1F44;
  margin: 0 0 16px;
}
.nb-case-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.nb-case-stat-val {
  font: 800 18px/1 'Pretendard';
  color: #1E5EFF;
  white-space: nowrap;
}
.nb-case-stat-val span { font-size: 11px; }
.nb-case-stat-lbl {
  font: 400 11px/1.4 'Pretendard';
  color: #6B7585;
  margin-top: 4px;
}

/* ===== NEWS + CTA ===== */
.nb-news-cta { background: #fff; padding: 96px 0; }
.nb-news-cta-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: stretch;
}
.nb-news-row {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 88px;
  padding: 0 12px;
  border-bottom: 1px solid #E1E6EE;
  text-decoration: none;
  border-radius: 8px;
  transition: background .2s;
}
.nb-news-row:hover { background: #F5F7FA; }
.nb-news-thumb {
  width: 80px;
  height: 50px;
  border-radius: 6px;
  background: #0A1F44;
  flex: none;
  overflow: hidden;
}
.nb-news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nb-news-badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  font: 600 11px/1 'Pretendard';
  margin-bottom: 8px;
}
.nb-news-badge-exhibit { background: #E8F0FF; color: #1E5EFF; }
.nb-news-badge-press   { background: #EAF0FF; color: #4A8BFF; }
.nb-news-badge-notice  { background: #EEF0F3; color: #6B7585; }
.nb-news-title {
  font: 600 16px/1.4 'Pretendard';
  color: #0A1F44;
  transition: color .2s;
}
.nb-news-row:hover .nb-news-title { color: #1E5EFF; }
.nb-news-date {
  font: 400 14px/1 'Pretendard';
  color: #6B7585;
  flex: none;
}
.nb-cta-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #001A4D, #0A1F44 60%, #13357A);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.nb-cta-dots {
  position: absolute;
  inset: 0;
  opacity: .07;
  background-image: radial-gradient(#fff 1.4px, transparent 1.4px);
  background-size: 24px 24px;
}
.nb-cta-content { position: relative; }
.nb-cta-label {
  font: 700 15px/1 'Pretendard';
  color: #4A8BFF;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.nb-cta-box h2 {
  font: 800 38px/1.3 'Pretendard';
  letter-spacing: -.01em;
  color: #fff;
  margin: 0 0 14px;
}
.nb-cta-box p {
  font: 400 16px/1.6 'Pretendard';
  color: #C8D2E4;
  margin: 0 0 32px;
}
.nb-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 56px;
  padding: 0 28px;
  border-radius: 8px;
  background: #fff;
  color: #0A1F44;
  font: 700 16px/1 'Pretendard';
  text-decoration: none;
  transition: all .2s;
}
.nb-btn-white:hover { background: #1E5EFF; color: #fff; }

/* ===== FOOTER ===== */
.nb-footer { background: #0A1F44; padding: 64px 0 32px; }
.nb-footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding-bottom: 48px;
}
.nb-footer-logo {
  font: 900 24px/1 'Pretendard';
  color: #fff;
  margin-bottom: 20px;
}
.nb-footer-logo .accent { color: #4A8BFF; }
.nb-footer-addr {
  font: 400 13px/1.8 'Pretendard';
  color: #8A99B8;
}
.nb-footer-col-title {
  font: 700 14px/1 'Pretendard';
  color: #fff;
  margin-bottom: 18px;
}
.nb-footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nb-footer-links a {
  font: 400 14px/1 'Pretendard';
  color: #A6B3CC;
  text-decoration: none;
  transition: color .2s;
}
.nb-footer-links a:hover { color: #fff; }
.nb-footer-sns {
  display: flex;
  gap: 12px;
}
.nb-footer-sns-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid #2A3F66;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A6B3CC;
  transition: border-color .2s, color .2s;
}
.nb-footer-sns-icon:hover { border-color: #4A8BFF; color: #4A8BFF; }
.nb-footer-bottom {
  border-top: 1px solid #1C3158;
  padding-top: 24px;
  font: 400 13px/1 'Pretendard';
  color: #6B7A99;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nb-container { padding: 0 40px; }
  .nb-hero h1 { font-size: 42px; }
  .nb-sol-grid,
  .nb-case-grid { grid-template-columns: repeat(2, 1fr); }
  .nb-news-cta-grid { grid-template-columns: 1fr; }
  .nb-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 48px; }
  .nb-about-card { grid-template-columns: 1fr; padding: 40px; }
  .nb-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .nb-stats-inner { flex-wrap: wrap; height: auto; padding: 32px 0; gap: 24px; }
  .nb-stat-divider { display: none; }
  .nb-stat-item { flex: 0 0 calc(50% - 12px); padding: 16px 0 !important; }
}

@media (max-width: 768px) {
  .nb-container { padding: 0 20px; }

  /* Header */
  .nb-header { height: 60px; }
  .nb-nav,
  .nb-header-actions .nb-lang,
  .nb-header-actions .nb-btn-cta { display: none; }
  .nb-menu-toggle { display: flex !important; }
  .nb-mobile-drawer { top: 60px; }

  /* Hero — 비주얼 카드 숨기고 텍스트만 */
  .nb-hero { min-height: auto; padding: 80px 0 40px; }
  .nb-hero-grid { grid-template-columns: 1fr; }
  .nb-hero-eyebrow { font-size: 13px; letter-spacing: .18em; margin-bottom: 14px; }
  .nb-hero h1 { font-size: 28px; line-height: 1.25; letter-spacing: -.02em; margin-bottom: 14px; }
  .nb-hero-desc { font-size: 14px; margin-bottom: 24px; }
  .nb-hero-btns { flex-direction: column; gap: 10px; }
  .nb-btn-hero-primary,
  .nb-btn-hero-outline { height: 48px; justify-content: center; font-size: 15px; padding: 0 20px; }
  .nb-hero-visual { display: flex; width: 100%; max-width: 100%; min-height: 220px; border-radius: 12px; }

  /* Stats — 2x2 그리드 */
  .nb-stats-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    height: auto; padding: 24px 0; gap: 16px;
  }
  .nb-stat-divider { display: none; }
  .nb-stat-item {
    padding: 12px 0 !important; gap: 0;
    flex-direction: column; text-align: center;
  }
  .nb-stat-icon { display: none; }
  .nb-stat-number { font-size: 28px; }
  .nb-stat-label { font-size: 12px; margin-top: 4px; }
  .nb-stat-sub { font-size: 11px; }

  /* About — 이미지 숨기고 텍스트만, 패딩 축소 */
  .nb-about { padding: 36px 0; }
  .nb-about-card { grid-template-columns: 1fr; padding: 20px; gap: 0; }
  .nb-about-card > div:last-child { display: none; }
  .nb-about-card > div:first-child { order: 1; }
  .nb-about-label { margin-bottom: 10px; }
  .nb-about h2 { font-size: 24px; margin-bottom: 12px; }
  .nb-about p { font-size: 14px; margin-bottom: 20px; }

  /* Solutions — 2열 그리드 유지, 컴팩트 카드 */
  .nb-solutions { padding: 36px 0; }
  .nb-section-header { margin-bottom: 20px; }
  .nb-section-label { font-size: 12px; margin-bottom: 8px; }
  .nb-section-title { font-size: 22px; }
  .nb-sol-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .nb-sol-img-wrap { height: 100px; }
  .nb-sol-num { width: 22px; height: 18px; font-size: 9px; line-height: 18px; top: 6px; right: 6px; }
  .nb-sol-body { padding: 12px; }
  .nb-sol-tag { font-size: 10px; margin-bottom: 4px; }
  .nb-sol-body h3 { font-size: 14px; margin-bottom: 4px; }
  .nb-sol-body p { font-size: 11px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .nb-sol-tab { height: 32px; padding: 0 14px; font-size: 12px; }

  /* Cases — 2열 그리드, 컴팩트 */
  .nb-cases { padding: 36px 0; }
  .nb-cases-header { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 20px; }
  .nb-cases-header h2 { font-size: 22px; }
  .nb-case-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .nb-case-img { height: 90px; }
  .nb-case-body { padding: 10px; }
  .nb-case-body h3 { font-size: 12px; margin-bottom: 6px; }
  .nb-case-stats { gap: 2px; padding: 6px 0; }
  .nb-case-stat-val { font-size: 13px; }
  .nb-case-stat-label { font-size: 8px; }

  /* News — 뉴스 2개만 + CTA 축소 */
  .nb-news-cta { padding: 36px 0; }
  .nb-news-cta > .nb-container { grid-template-columns: 1fr; gap: 24px; }
  .nb-news-row { height: auto; padding: 12px 0; gap: 12px; }
  .nb-news-row:nth-child(n+3) { display: none; }
  .nb-news-thumb { width: 56px; height: 38px; }
  .nb-news-title { font-size: 13px; }
  .nb-news-date { display: none; }
  .nb-news-date-mobile { display: block; font: 400 11px/1 'Pretendard'; color: #6B7585; margin-top: 4px; }
  .nb-cta-box { padding: 32px 20px; border-radius: 12px; }
  .nb-cta-box h2 { font-size: 22px; margin-bottom: 8px; }
  .nb-cta-box p { font-size: 13px; margin-bottom: 20px; }
  .nb-btn-white { width: 100%; justify-content: center; height: 48px; font-size: 15px; }

  /* Footer — 축소 */
  .nb-footer { padding: 32px 0 20px; }
  .nb-footer-grid { grid-template-columns: 1fr; gap: 20px; padding-bottom: 20px; }
  .nb-footer-logo { font-size: 18px; margin-bottom: 8px; }
  .nb-footer-addr { font-size: 11px; }
  .nb-footer-col-title { font-size: 12px; margin-bottom: 10px; }
  .nb-footer-col a { font-size: 12px; }
  .nb-footer-bottom { font-size: 10px; line-height: 1.5; padding-top: 16px; }
}

/* Hide mobile-only date on desktop */
@media (min-width: 769px) {
  .nb-news-date-mobile { display: none; }
}
