/* ============================================
   하얀크리닝 - Main Stylesheet
   블루/화이트 미니멀 디자인
   ============================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue-100: #e0f0ff;
  --blue-200: #baddff;
  --blue-400: #4faaff;
  --blue-500: #1a8fff;
  --blue-600: #0070e0;
  --blue-700: #0057b0;
  --blue-800: #003f80;
  --navy:     #0c2d5e;
  --white:    #ffffff;
  --gray-50:  #f8fafc;
  --gray-100: #f0f4f8;
  --gray-200: #e2e8f0;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --kakao-yellow: #FEE500;
  --kakao-text:   #3C1E1E;
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --shadow-sm: 0 2px 8px rgba(0,80,180,0.08);
  --shadow-md: 0 4px 20px rgba(0,80,180,0.12);
  --shadow-lg: 0 8px 40px rgba(0,80,180,0.18);
  --transition: all 0.25s ease;
  --font: 'Noto Sans KR', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-kakao {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--kakao-yellow);
  color: var(--kakao-text);
  font-weight: 700;
  font-family: var(--font);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-kakao:hover {
  filter: brightness(0.94);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(254,229,0,0.45);
}

.btn-hero {
  font-size: 1.15rem;
  padding: 16px 36px;
  margin-top: 28px;
  box-shadow: 0 4px 20px rgba(254,229,0,0.4);
}

.btn-promo  { font-size: 1.05rem; padding: 14px 30px; margin-top: 24px; }
.btn-pricing { font-size: 1.05rem; padding: 14px 30px; }
.btn-bulk   { font-size: 1.05rem; padding: 14px 30px; }
.btn-bottom { font-size: 1.2rem;  padding: 18px 44px; box-shadow: 0 4px 20px rgba(254,229,0,0.4); }
.btn-footer { font-size: 0.9rem;  padding: 10px 20px; }

.link-blue {
  color: var(--blue-600);
  text-decoration: underline;
  font-weight: 600;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1.5px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* 네비바 텍스트 로고 - 2배 크기 */
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 52px;   /* 원래 26px의 2배 */
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-700);
  padding: 7px 14px;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue-600);
  background: var(--blue-100);
}

.nav-cta {
  font-size: 0.88rem;
  padding: 9px 18px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  /* 흰색~아주 연한 하늘색: PNG 흰 배경이 완전히 자연스럽게 녹아듦 */
  background: linear-gradient(160deg, #ffffff 0%, #f0f8ff 45%, #dff0ff 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 80px 20px 60px;
}

/* 버블 배경 애니메이션 */
.hero-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(150, 210, 255, 0.25);
  border: 1px solid rgba(100, 180, 255, 0.2);
  animation: floatBubble linear infinite;
}

.b1 { width: 80px;  height: 80px;  left: 8%;   bottom: -100px; animation-duration: 9s;  animation-delay: 0s; }
.b2 { width: 50px;  height: 50px;  left: 22%;  bottom: -80px;  animation-duration: 12s; animation-delay: 2s; }
.b3 { width: 120px; height: 120px; left: 55%;  bottom: -150px; animation-duration: 8s;  animation-delay: 1s; }
.b4 { width: 60px;  height: 60px;  left: 75%;  bottom: -80px;  animation-duration: 11s; animation-delay: 3s; }
.b5 { width: 90px;  height: 90px;  left: 88%;  bottom: -120px; animation-duration: 10s; animation-delay: 0.5s; }

@keyframes floatBubble {
  0%   { transform: translateY(0) scale(1);   opacity: 0.6; }
  50%  { opacity: 0.4; }
  100% { transform: translateY(-110vh) scale(1.15); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  width: 100%;
}

/* 히어로 로고 래퍼: 캐릭터 + 텍스트 로고 세로 정렬 */
.hero-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

/* 캐릭터를 감싸는 흰색 정원형 카드 */
.mascot-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 50%;
  width: 260px;
  height: 260px;
  box-shadow:
    0 8px 36px rgba(80, 140, 255, 0.18),
    0 2px 10px rgba(60, 120, 240, 0.10);
  animation: mascotFloat 4s ease-in-out infinite;
}

/* 캐릭터 마스코트 — 누끼(배경 제거) PNG 사용 */
.hero-mascot {
  width: 220px;
  height: 220px;
  object-fit: contain;
  display: block;
}

@keyframes mascotFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* 텍스트 로고 - 2배 크기 */
.hero-text-logo {
  width: 340px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,60,160,0.12));
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.hero-sub {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--blue-600);
  margin-bottom: 6px;
}

.hero-desc {
  font-size: 1rem;
  color: var(--gray-500);
  font-weight: 400;
}

/* ============================================
   PROMO SECTION
   ============================================ */
.promo-section {
  background: var(--white);
  padding: 80px 0;
  text-align: center;
  /* 히어로(흰~연하늘) → 프로모(흰) 경계를 부드럽게 */
  border-top: 1px solid rgba(180, 220, 255, 0.4);
}

.promo-badge {
  display: inline-block;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.promo-title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 40px;
}

.promo-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.promo-card {
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  min-width: 220px;
  flex: 1;
  max-width: 300px;
  transition: var(--transition);
}

.promo-card:hover {
  border-color: var(--blue-400);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.promo-card--blue {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  border-color: var(--blue-600);
  color: white;
}

.promo-card--blue h3,
.promo-card--blue .promo-sub {
  color: rgba(255,255,255,0.9);
}

.promo-icon { font-size: 2.5rem; margin-bottom: 12px; }
.promo-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.promo-discount { font-size: 1.1rem; font-weight: 600; }
.promo-discount strong { font-size: 1.5rem; color: var(--blue-500); }
.promo-card--blue .promo-discount strong { color: var(--kakao-yellow); }
.promo-sub { font-size: 0.85rem; color: var(--gray-500); margin-top: 4px; }

/* ============================================
   QUICK / SERVICES
   ============================================ */
.section-title {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: 12px;
}

.section-desc {
  text-align: center;
  color: var(--gray-500);
  font-size: 1rem;
  margin-bottom: 40px;
}

.quick-section {
  background: var(--blue-100);
  padding: 80px 0;
}

.quick-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.quick-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 160px;
  flex: 1;
  max-width: 220px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.quick-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.quick-icon { font-size: 2.2rem; }
.quick-name { font-size: 1rem; font-weight: 600; color: var(--gray-700); }
.quick-price { font-size: 1.3rem; font-weight: 800; color: var(--blue-600); }

/* ============================================
   HOW TO USE
   ============================================ */
.howto-section {
  background: var(--white);
  padding: 80px 0;
}

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px;
  flex: 1;
  min-width: 130px;
  max-width: 200px;
}

.step-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--blue-400);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
  background: var(--blue-100);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.step p { font-size: 0.85rem; color: var(--gray-500); }

.step-arrow {
  color: var(--blue-400);
  font-size: 1.3rem;
  padding: 0 4px;
  flex-shrink: 0;
}

/* ============================================
   SERVICE TYPES
   ============================================ */
.services-section {
  background: var(--gray-50);
  padding: 80px 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1.5px solid var(--gray-200);
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--blue-400);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-icon { font-size: 2.5rem; margin-bottom: 14px; }
.service-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.service-card p  { font-size: 0.875rem; color: var(--gray-500); }

/* ============================================
   AREA
   ============================================ */
.area-section {
  background: var(--white);
  padding: 80px 0;
  text-align: center;
}

.area-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.area-tag {
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 50px;
  border: 2px solid var(--blue-200);
}

.area-note {
  color: var(--gray-500);
  font-size: 0.9rem;
}

.area-note i { color: var(--blue-500); margin-right: 5px; }

/* ============================================
   PRICE PREVIEW
   ============================================ */
.price-section {
  background: var(--gray-50);
  padding: 80px 0;
  text-align: center;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.price-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border: 1.5px solid var(--gray-200);
  transition: var(--transition);
}

.price-item:hover {
  border-color: var(--blue-400);
  box-shadow: var(--shadow-sm);
}

.price-name { font-size: 0.9rem; color: var(--gray-700); font-weight: 500; }
.price-val  { font-size: 1.2rem; font-weight: 800; color: var(--blue-600); }

.price-note { font-size: 0.9rem; color: var(--gray-500); margin-top: 8px; }

/* ============================================
   BULK CTA
   ============================================ */
.bulk-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-700) 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}

.bulk-inner { max-width: 560px; margin: 0 auto; }
.bulk-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.bulk-section h2 { font-size: clamp(1.5rem, 3.5vw, 2rem); font-weight: 800; margin-bottom: 10px; }
.bulk-section p   { font-size: 1rem; opacity: 0.85; }
.bulk-sub { margin-top: 8px; margin-bottom: 0; }

/* ============================================
   BOTTOM CTA
   ============================================ */
.bottom-cta {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  padding: 80px 0;
  text-align: center;
  color: white;
}

.bottom-cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 10px;
}

.bottom-cta p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 4px;
}

/* ============================================
   PAGE HERO (pricing/bulk inner pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--blue-100) 0%, var(--blue-200) 100%);
  padding: 80px 20px 60px;
  text-align: center;
  margin-top: 0;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 10px;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--blue-700);
  font-weight: 500;
}

.page-hero--dark {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-700) 100%);
  color: white;
}

.page-hero--dark h1 { color: white; }
.page-hero--dark p  { color: rgba(255,255,255,0.85); }

.bulk-hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

/* ============================================
   DISCOUNT BANNER
   ============================================ */
.discount-banner {
  background: var(--blue-600);
  color: white;
  padding: 16px 20px;
  text-align: center;
}

.discount-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.discount-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.discount-divider {
  opacity: 0.5;
  display: none;
}

@media (min-width: 600px) {
  .discount-divider { display: block; }
}

/* ============================================
   PRICING PAGE
   ============================================ */
.pricing-section {
  padding: 60px 0 80px;
  background: var(--white);
}

.price-table-wrap {
  margin-bottom: 44px;
}

.price-table-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-title-icon { font-size: 1.4rem; }

.price-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  font-size: 0.95rem;
}

.price-table thead tr {
  background: var(--blue-600);
  color: white;
}

.price-table th,
.price-table td {
  padding: 14px 20px;
  text-align: left;
}

.price-table th { font-weight: 700; font-size: 0.95rem; }

.price-table tbody tr:nth-child(even) { background: var(--gray-50); }
.price-table tbody tr:hover { background: var(--blue-100); }

.price-table td:last-child {
  font-weight: 700;
  color: var(--blue-600);
  font-size: 1.05rem;
}

.pricing-note {
  background: var(--blue-100);
  border-left: 4px solid var(--blue-500);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--blue-800);
  font-size: 0.9rem;
  margin-bottom: 36px;
}

.pricing-note i { color: var(--blue-500); margin-right: 6px; }

.pricing-cta { text-align: center; }

/* ============================================
   BULK PAGE
   ============================================ */
.bulk-features-section {
  background: var(--white);
  padding: 80px 0;
}

.bulk-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.bulk-feature-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1.5px solid var(--gray-200);
  transition: var(--transition);
}

.bulk-feature-card:hover {
  border-color: var(--blue-400);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.bulk-feature-icon { font-size: 2.8rem; margin-bottom: 14px; }
.bulk-feature-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.bulk-feature-card p  { font-size: 0.875rem; color: var(--gray-500); }

.bulk-targets-section {
  background: var(--gray-50);
  padding: 80px 0;
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 16px;
}

.target-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  border: 1.5px solid var(--gray-200);
  transition: var(--transition);
}

.target-card:hover {
  border-color: var(--blue-500);
  box-shadow: var(--shadow-md);
}

.target-icon { font-size: 2.2rem; display: block; margin-bottom: 10px; }
.target-name { font-size: 1.05rem; font-weight: 700; color: var(--navy); display: block; margin-bottom: 6px; }
.target-card p { font-size: 0.85rem; color: var(--gray-500); }

.bulk-items-section {
  background: var(--white);
  padding: 80px 0;
}

.bulk-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.bulk-item-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1.5px solid var(--gray-200);
  transition: var(--transition);
}

.bulk-item-card:hover {
  border-color: var(--blue-400);
  box-shadow: var(--shadow-md);
}

.bulk-item-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.bulk-item-card p  { font-size: 0.875rem; color: var(--gray-500); margin-top: 8px; }

.bulk-price-badge {
  display: inline-block;
  background: var(--blue-600);
  color: white;
  font-size: 1rem;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 50px;
}

.bulk-items-note {
  background: var(--blue-100);
  border-left: 4px solid var(--blue-500);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--blue-800);
  font-size: 0.9rem;
  text-align: center;
}

.bulk-items-note i { margin-right: 8px; }

.bulk-process-section {
  background: var(--gray-50);
  padding: 80px 0;
}

.bulk-process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.bulk-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px;
  flex: 1;
  min-width: 130px;
  max-width: 200px;
}

.bulk-step-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--blue-400);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.bulk-step-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
  background: var(--blue-100);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.bulk-step h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.bulk-step p  { font-size: 0.85rem; color: var(--gray-500); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--gray-900);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  margin-bottom: 10px;
  /* 원본 PNG 컬러 유지 - 어두운 푸터 배경 위에서도 가독성 확보 */
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.4)) brightness(1.15);
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

/* 사업자 정보 섹션 */
.footer-biz-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.footer-biz-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-biz-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.8rem;
  line-height: 1.5;
}

.biz-label {
  flex-shrink: 0;
  color: rgba(255,255,255,0.5);
  min-width: 90px;
  font-size: 0.78rem;
}

.biz-val {
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
}

.footer-contact h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-hours {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 10px;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================
   SECTION BADGE (공통)
   ============================================ */
.section-badge {
  display: inline-block;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-badge--white {
  background: rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.95);
}

.section-badge--dark {
  background: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
}

.section-badge--hero {
  background: var(--blue-100);
  color: var(--blue-700);
}

.section-title-left {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 18px;
}

.section-title--white { color: #fff; }
.section-desc--white  { color: rgba(255,255,255,0.8); }

/* ============================================
   HERO: 추가 텍스트
   ============================================ */
.hero-desc2 {
  font-size: 0.88rem;
  color: var(--gray-500);
  font-weight: 400;
  margin-top: 4px;
  font-style: italic;
}

/* ============================================
   SECTION 2: 회사 소개 (INTRO)
   ============================================ */
.intro-section {
  background: var(--white);
  padding: 90px 0;
  border-top: 1px solid var(--gray-200);
}

.intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro-desc {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 28px;
}

.intro-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-100);
  color: var(--blue-800);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1.5px solid var(--blue-200);
}

.intro-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-img-placeholder {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--blue-100), var(--blue-200));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--blue-300, #90c4ff);
}

.intro-img-placeholder--dark {
  background: linear-gradient(135deg, var(--navy), var(--blue-700));
  border-color: rgba(255,255,255,0.2);
}

.img-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.img-placeholder-icon { font-size: 3rem; }
.img-placeholder-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue-700);
}

.intro-img-placeholder--dark .img-placeholder-text {
  color: rgba(255,255,255,0.7);
}

/* ============================================
   SECTION 3: 핵심 강점
   ============================================ */
.strengths-section {
  background: var(--gray-50);
  padding: 90px 0;
  text-align: center;
}

.strengths-section--gray { background: var(--gray-50); }

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.strength-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  border: 1.5px solid var(--gray-200);
  transition: var(--transition);
}

.strength-card:hover {
  border-color: var(--blue-400);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.strength-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 2rem;
}

.strength-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.strength-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ============================================
   SECTION 4: 서비스 지역 (COVERAGE)
   ============================================ */
.coverage-section {
  background: linear-gradient(135deg, var(--navy), var(--blue-700));
  padding: 90px 0;
  text-align: center;
  color: white;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.coverage-card {
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.coverage-card:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-4px);
}

.coverage-label {
  display: inline-block;
  background: var(--blue-400);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
  letter-spacing: 0.08em;
}

.coverage-label--b2b { background: var(--kakao-yellow); color: var(--kakao-text); }

.coverage-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.coverage-region {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  line-height: 1.6;
  margin-bottom: 8px;
}

.coverage-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

/* ============================================
   SECTION 5: 운영 프로세스 (PROCESS)
   ============================================ */
.process-section {
  background: var(--gray-50);
  padding: 90px 0;
  text-align: center;
}

.process-section--white { background: var(--white); }

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 48px;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px;
  flex: 1;
  min-width: 140px;
  max-width: 210px;
}

.process-step-num {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--blue-400);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.process-step-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
  background: var(--blue-100);
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.process-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.process-step p {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.process-arrow {
  color: var(--blue-300, #90c4ff);
  font-size: 1.8rem;
  padding: 0 4px;
  flex-shrink: 0;
  margin-top: 72px;
}

.process-closing {
  margin-top: 40px;
  font-size: 0.9rem;
  color: var(--gray-500);
  font-style: italic;
}

/* ============================================
   SECTION 6: 이런 고객 (CHECKLIST)
   ============================================ */
.target-section {
  background: var(--white);
  padding: 90px 0;
  text-align: center;
}

.target-checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 640px;
  margin: 40px auto 36px;
  text-align: left;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  border: 1.5px solid var(--gray-200);
  transition: var(--transition);
}

.check-item:hover {
  border-color: var(--blue-300, #90c4ff);
  background: var(--blue-100);
}

.check-mark {
  color: var(--blue-600);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.check-item span:last-child {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.6;
  font-weight: 500;
}

.btn-target {
  font-size: 1.05rem;
  padding: 14px 34px;
  margin-top: 8px;
}

/* ============================================
   SECTION 7: 이벤트 (EVENTS)
   ============================================ */
.events-section {
  background: var(--gray-50);
  padding: 90px 0;
  text-align: center;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.event-card {
  border-radius: var(--radius-xl);
  padding: 40px 28px;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.event-card--first {
  background: linear-gradient(135deg, #fff8dc, #fffbe5);
  border-color: #ffe566;
}

.event-card--wed {
  background: linear-gradient(135deg, var(--blue-100), var(--blue-200));
  border-color: var(--blue-300, #90c4ff);
}

.event-card--sat {
  background: linear-gradient(135deg, var(--navy), var(--blue-700));
  color: white;
  border-color: var(--blue-600);
}

.event-icon { font-size: 2.8rem; margin-bottom: 16px; }

.event-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.event-card--sat h3 { color: white; }

.event-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.event-card--sat p { color: rgba(255,255,255,0.85); }

/* ============================================
   SECTION 8: 서비스 권역 (REGION)
   ============================================ */
.region-section {
  background: var(--white);
  padding: 90px 0;
  text-align: center;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.region-card {
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: left;
  border: 2px solid var(--gray-200);
  transition: var(--transition);
}

.region-card:hover {
  border-color: var(--blue-400);
  box-shadow: var(--shadow-md);
}

.region-type {
  display: inline-block;
  background: var(--blue-600);
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
  letter-spacing: 0.08em;
}

.region-type--b2b {
  background: var(--navy);
}

.region-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.region-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 18px;
}

.region-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.region-tag {
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  border: 1.5px solid var(--blue-200);
}

.region-tag--b2b {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

/* ============================================
   SECTION 9: 최종 CTA (FINAL CTA)
   ============================================ */
.final-cta-section {
  background: linear-gradient(135deg, var(--blue-500) 0%, var(--navy) 100%);
  padding: 100px 0;
  text-align: center;
  color: white;
}

.final-cta-inner {
  max-width: 660px;
  margin: 0 auto;
}

.final-cta-lead {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 12px;
  font-weight: 500;
}

.final-cta-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 24px;
}

.final-cta-sub {
  font-size: 1rem;
  opacity: 0.85;
  line-height: 1.9;
  margin-bottom: 36px;
}

.btn-final {
  font-size: 1.15rem;
  padding: 18px 42px;
  box-shadow: 0 4px 20px rgba(254,229,0,0.4);
}

.final-cert-note {
  margin-top: 24px;
  font-size: 0.85rem;
  opacity: 0.65;
  font-weight: 500;
}

/* ============================================
   FOOTER: 인증 뱃지
   ============================================ */
.footer-cert {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-top: 8px;
}

/* ============================================
   FACTORY SLIDER (회사 소개 현장 이미지)
   ============================================ */
.factory-slider {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  background: var(--gray-100);
  user-select: none;
}

.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-slide {
  flex: 0 0 100%;
  position: relative;
  overflow: hidden;
}

.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(12, 45, 94, 0.82);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.06em;
  backdrop-filter: blur(4px);
}

/* 이전/다음 버튼 */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.88);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: var(--navy);
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
  transition: var(--transition);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
}

.slider-btn--prev { left: 12px; }
.slider-btn--next { right: 12px; }

/* 인디케이터 dots */
.slider-dots {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: flex;
  gap: 6px;
  z-index: 10;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.slider-dot.active {
  background: #fff;
  transform: scale(1.3);
}

/* intro-img-wrap이 슬라이더를 감쌀 때 중앙 정렬 */
.intro-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   SECTION BADGE & TITLE HELPERS
   ============================================ */
.section-badge {
  display: inline-block;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.section-badge--white {
  background: rgba(255,255,255,0.2);
  color: white;
}

.section-title-left {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 18px;
  text-align: left;
}

.section-title--white { color: white; }
.section-desc--white  { color: rgba(255,255,255,0.8); }

/* hero 추가 설명 줄 */
.hero-desc2 {
  font-size: 0.88rem;
  color: var(--gray-500);
  margin-top: 4px;
  font-style: italic;
}

/* ============================================
   PRICING PAGE: 이벤트 배너
   ============================================ */
.event-banners {
  background: var(--white);
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-200);
}

.event-banner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.event-banner-item {
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: var(--radius-md);
  padding: 18px 20px;
  font-size: 0.9rem;
}

.event-banner-item--first {
  background: #fffbde;
  border: 1.5px solid #ffe566;
}

.event-banner-item--wed {
  background: var(--blue-100);
  border: 1.5px solid var(--blue-200);
}

.event-banner-item--sat {
  background: var(--navy);
  border: 1.5px solid var(--blue-700);
  color: white;
}

.event-banner-icon { font-size: 1.8rem; flex-shrink: 0; }

.event-banner-item div { display: flex; flex-direction: column; gap: 2px; }

.event-banner-item strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}

.event-banner-item--sat strong { color: white; }

.event-banner-item span {
  font-size: 0.82rem;
  color: var(--gray-500);
}

.event-banner-item--sat span { color: rgba(255,255,255,0.75); }

/* ============================================
   PRICING PAGE: 검색 바
   ============================================ */
.price-search-section {
  background: var(--gray-50);
  padding: 32px 0 20px;
  border-bottom: 1px solid var(--gray-200);
}

.price-search-wrap {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}

.price-search-input {
  width: 100%;
  padding: 14px 52px 14px 20px;
  border: 2px solid var(--gray-200);
  border-radius: 50px;
  font-size: 0.95rem;
  font-family: var(--font);
  color: var(--gray-900);
  background: white;
  transition: var(--transition);
  outline: none;
}

.price-search-input:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(26,143,255,0.12);
}

.price-search-icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  pointer-events: none;
}

.price-search-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 10px;
}

/* ============================================
   PRICING PAGE: 탭
   ============================================ */
.pricing-tab-section {
  background: var(--white);
  padding: 48px 0 80px;
}

.tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  border-bottom: 2px solid var(--gray-200);
  padding-bottom: 0;
}

.tab-btn {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-500);
  cursor: pointer;
  font-family: var(--font);
  transition: var(--transition);
  white-space: nowrap;
  margin-bottom: -2px;
}

.tab-btn:hover {
  color: var(--blue-600);
}

.tab-btn.active {
  color: var(--blue-600);
  border-bottom-color: var(--blue-500);
}

.tab-content {
  display: none;
  animation: fadeIn 0.2s ease;
}

.tab-content.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.tab-intro {
  font-size: 0.88rem;
  color: var(--blue-700);
  background: var(--blue-100);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-weight: 600;
}

.price-table-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tab-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--blue-800);
  background: var(--blue-100);
  border-left: 4px solid var(--blue-500);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
}

/* ============================================
   PRICING PAGE: 대표 가격 요약
   ============================================ */
.rep-price-section {
  margin-top: 56px;
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  border: 1.5px solid var(--gray-200);
}

.rep-price-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 24px;
  text-align: center;
}

.rep-price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
}

.rep-price-item {
  background: white;
  border-radius: var(--radius-md);
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border: 1.5px solid var(--gray-200);
  transition: var(--transition);
}

.rep-price-item:hover {
  border-color: var(--blue-400);
  box-shadow: var(--shadow-sm);
}

.rep-item-name { font-size: 0.85rem; color: var(--gray-700); font-weight: 500; }
.rep-item-price { font-size: 1.1rem; font-weight: 800; color: var(--blue-600); }

.rep-price-note {
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-top: 16px;
  text-align: center;
}

/* ============================================
   PRICING PAGE: 하단 CTA
   ============================================ */
.pricing-footer-cta {
  background: linear-gradient(135deg, var(--blue-100), var(--blue-200));
  padding: 60px 0;
  text-align: center;
}

.pricing-cta-lead {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.pricing-cta-sub {
  font-size: 0.95rem;
  color: var(--gray-500);
  margin-bottom: 28px;
}

.btn-pricing-cta { font-size: 1.05rem; padding: 14px 34px; }

/* ============================================
   PAGE HERO: 추가 버튼 스타일
   ============================================ */
.page-hero .btn-hero {
  margin-top: 28px;
}

/* ============================================
   B2B TARGETS
   ============================================ */
.b2b-targets-section {
  background: linear-gradient(135deg, var(--navy), var(--blue-700));
  padding: 90px 0;
  text-align: center;
}

.b2b-target-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.b2b-target-card {
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-xl);
  padding: 32px 20px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.b2b-target-card:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-4px);
}

.b2b-target-icon { font-size: 2.4rem; display: block; margin-bottom: 14px; }

.b2b-target-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.b2b-target-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* ============================================
   B2B FIT SECTION
   ============================================ */
.b2b-fit-section {
  background: var(--white);
  padding: 90px 0;
  text-align: center;
}

/* ============================================
   B2B BULK ITEMS NEW
   ============================================ */
.bulk-items-section-new {
  background: var(--gray-50);
  padding: 90px 0;
  text-align: center;
}

.bulk-items-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
  margin-bottom: 28px;
}

.bulk-item-card-new {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 24px;
  text-align: center;
  border: 1.5px solid var(--gray-200);
  transition: var(--transition);
}

.bulk-item-card-new:hover {
  border-color: var(--blue-400);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.bulk-item-icon { font-size: 2.4rem; margin-bottom: 14px; }

.bulk-item-card-new h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.bulk-item-card-new p {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-top: 10px;
}

.bulk-items-note-new {
  background: var(--blue-100);
  border-left: 4px solid var(--blue-500);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--blue-800);
  font-size: 0.9rem;
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}

/* ============================================
   B2B INTRO
   ============================================ */
.b2b-intro-section {
  background: var(--white);
  padding: 90px 0;
  border-top: 1px solid var(--gray-200);
}

/* ============================================
   FLOATING KAKAO BUTTON
   ============================================ */
.floating-kakao {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 800;
  background: var(--kakao-yellow);
  color: var(--kakao-text);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: var(--transition);
}

.floating-kakao:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {

  /* 네비바 */
  .nav-toggle { display: flex; }
  .nav-logo-img { height: 42px; }

  nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1.5px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    padding: 16px 20px;
    z-index: 800;
  }

  nav.open { display: block; }

  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-left: 0;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 10px 14px;
  }

  .nav-cta { display: none; }

  /* 히어로 */
  .hero { padding: 60px 20px 50px; min-height: auto; }
  .mascot-card { width: 220px; height: 220px; }
  .hero-mascot { width: 160px; height: 160px; }
  .hero-text-logo { width: 260px; }

  /* 스텝 */
  .step-arrow { display: none; }
  .process-arrow { display: none; }
  .steps, .bulk-process-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .process-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  /* 프로모 */
  .promo-cards { flex-direction: column; align-items: center; }
  .promo-card { max-width: 100%; width: 100%; }

  /* 가격표 */
  .price-table th, .price-table td { padding: 10px 14px; font-size: 0.88rem; }

  /* 인트로 그리드 */
  .intro-inner { grid-template-columns: 1fr; gap: 40px; }

  /* 강점·커버리지 */
  .strengths-grid { grid-template-columns: 1fr 1fr; }
  .coverage-grid  { grid-template-columns: 1fr 1fr; }
  .events-grid    { grid-template-columns: 1fr; }
  .region-grid    { grid-template-columns: 1fr; }

  /* 탭 */
  .tab-btn { font-size: 0.8rem; padding: 8px 12px; }

  /* 푸터 */
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 480px) {
  .hero-text-logo { width: 200px; }
  .mascot-card { width: 190px; height: 190px; }
  .hero-mascot { width: 138px; height: 138px; }
  .hero-logo-wrap { gap: 12px; }

  .btn-hero   { font-size: 1rem; padding: 14px 28px; }
  .btn-final  { font-size: 1rem; padding: 15px 30px; }
  .btn-bottom { font-size: 1.05rem; padding: 15px 32px; }

  .steps, .bulk-process-steps, .process-steps {
    grid-template-columns: 1fr;
  }

  .strengths-grid { grid-template-columns: 1fr; }
  .coverage-grid  { grid-template-columns: 1fr; }
  .b2b-target-grid { grid-template-columns: 1fr 1fr; }
  .bulk-items-grid-new { grid-template-columns: 1fr 1fr; }

  .rep-price-grid { grid-template-columns: repeat(2, 1fr); }

  .event-banner-grid { grid-template-columns: 1fr; }

  .final-cta-title { font-size: 1.6rem; }
}
