/* =============================================
   BIZTICON - Main Stylesheet
   비즈티콘 메인 스타일시트
   ============================================= */

/* ---- CSS Variables ---- */
:root {
  --navy: #0d1b3e;
  --navy-light: #1a2d5a;
  --blue: #1e4db7;
  --blue-light: #2d62e8;
  --accent: #e8363d;
  --accent-hover: #c92930;
  --green: #00a651;
  --orange: #f97316;
  --purple: #7c3aed;
  --teal: #0891b2;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --font: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.15);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.20);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: all .3s cubic-bezier(.4,0,.2,1);
  --header-h: 36px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: var(--font); }

/* ---- Container ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Section Padding ---- */
.section-pad { padding: 100px 0; }
@media (max-width: 768px) { .section-pad { padding: 64px 0; } }

/* ---- Section Header ---- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-label {
  display: inline-block;
  background: rgba(30,77,183,.1);
  color: var(--blue);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.3;
}
.section-header h2 em {
  color: var(--blue);
  font-style: normal;
}
.section-header p {
  color: var(--gray-500);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}
.section-header.light .section-label {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
}
.section-header.light h2 { color: var(--white); }
.section-header.light h2 em { color: #7dd3fc; }
.section-header.light p { color: rgba(255,255,255,.7); }

/* ---- Background ---- */
.bg-light { background: var(--gray-50); }
.bg-navy { background: var(--navy); }
.bg-brand { background: linear-gradient(160deg, #f8fafc 0%, #f1f5f9 60%, #e8eef7 100%); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 600;
  font-family: var(--font);
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover { background: var(--blue-light); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover { background: var(--blue); color: var(--white); }
.btn-white {
  background: #ffffff;
  color: #000000;
}
.btn-white:hover { background: var(--gray-100); color: #000000; transform: translateY(-2px); }
.btn-cta-white {
  background: #ffffff !important;
  color: #000000 !important;
  box-shadow: 0 4px 20px rgba(0,0,0,.1) !important;
}
.btn-cta-white:hover {
  background: var(--gray-100) !important;
  color: #000000 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 24px rgba(0,0,0,.15) !important;
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; border-radius: var(--radius); }
.w-full { width: 100%; justify-content: center; }

/* ============================================
   HEADER
   ============================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}
#header.scrolled {
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  height: 20px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Header Right: 카카오 + 프로모션 + 전화번호 묶음 */
.header-right {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.header-kakao-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .75rem;
  font-weight: 500;
  color: var(--blue);
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
}
.header-kakao-link:hover { text-decoration: underline; }
.header-kakao-link .kakao-icon {
  width: 14px; height: 14px;
  background: #FEE500;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.header-promo {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.header-promo .promo-highlight {
  background: #FFE000;
  color: #111;
  padding: 1px 5px;
  border-radius: 3px;
  font-weight: 700;
  font-size: .72rem;
}
.header-divider {
  color: var(--gray-400);
  margin: 0 8px;
  font-size: .75rem;
  line-height: 1;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .75rem;
  font-weight: 500;
  color: var(--gray-700);
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
}
.header-phone i {
  color: var(--gray-600);
  font-size: .7rem;
}
.header-phone:hover { color: var(--blue); }

/* 모바일: 헤더 2줄 레이아웃 */
@media (max-width: 600px) {
  :root { --header-h: 52px; }
  .header-inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3px;
    padding: 6px 0;
  }
  .logo-img { height: 16px; }
  .header-right {
    gap: 0;
    flex-wrap: nowrap;
  }
  .header-kakao-link,
  .header-phone { font-size: .68rem; }
  .header-promo .promo-highlight { font-size: .65rem; padding: 1px 4px; }
  .header-divider { margin: 0 5px; font-size: .68rem; }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  margin-top: var(--header-h);
  position: relative;
}
.hero-slide {
  min-height: clamp(460px, calc(100vh - 220px), 700px);
  display: flex;
  align-items: center;
  width: 100%;
}
.hero-slide .container {
  width: 100%;
  padding-left: 100px;
  padding-right: 80px;
}
/* #heroSwiper 자체에 배경 적용 → pagination까지 이어짐 */
#heroSwiper.hero-bg-1 { background: linear-gradient(135deg, #eef3ff 0%, #f0f7ff 50%, #e8f4ff 100%); }
#heroSwiper.hero-bg-2 { background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #f0f9ff 100%); }
#heroSwiper.hero-bg-3 { background: linear-gradient(135deg, #fdf4ff 0%, #fdf2f8 50%, #fff1f2 100%); }
/* 배경 전환 부드럽게 */
#heroSwiper { transition: background 0.6s ease; }

.slide-1 { background: linear-gradient(135deg, #eef3ff 0%, #f0f7ff 50%, #e8f4ff 100%); }
.slide-2 { background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #f0f9ff 100%); }
.slide-3 { background: linear-gradient(135deg, #fdf4ff 0%, #fdf2f8 50%, #fff1f2 100%); }

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding-top: 40px;
  padding-bottom: 40px;
}


/* Hero Text */
.hero-badge {
  display: inline-block;
  background: rgba(30,77,183,.12);
  color: var(--blue);
  font-size: .8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: .06em;
  margin-bottom: 20px;
}
.hero-text h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 20px;
}
.hero-text h1 em {
  color: var(--blue);
  font-style: normal;
  white-space: nowrap;
}
/* 모바일 전용 줄바꿈 */
.mo-br { display: none; }
/* PC/태블릿 전용 줄바꿈 */
.pc-br { display: inline; }
.hero-text p {
  font-size: 1.05rem;
  color: var(--gray-600);
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-hero-primary {
  background: var(--blue);
  color: var(--white);
  padding: 15px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(30,77,183,.3);
}
.btn-hero-primary:hover {
  background: var(--blue-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(30,77,183,.4);
}
.btn-hero-outline {
  background: transparent;
  color: var(--navy);
  padding: 15px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--gray-300);
  transition: var(--transition);
}
.btn-hero-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-3px);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}
/* 슬라이드1 - 버블이 그리드 칸 너비에 영향 안 주도록 */
.hero-visual-phone {
  position: relative;
  overflow: hidden;
  padding: 60px 50px;
  margin: -60px -50px;
}
.hero-phone-wrap {
  position: relative;
  width: 182px;
}
.hero-phone {
  width: 182px;
  height: 364px;
  background: var(--navy);
  border-radius: 40px;
  padding: 16px 12px;
  box-shadow: var(--shadow-xl);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.hero-phone::before {
  content: '';
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 24px;
  background: var(--navy);
  border-radius: 0 0 16px 16px;
  z-index: 2;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: #f8fafc;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 14px;
  gap: 12px;
}
.phone-mockup-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.coupon-card {
  border-radius: 14px;
  padding: 16px;
  color: white;
  position: relative;
  overflow: hidden;
}
.coupon-card::after {
  content: '';
  position: absolute;
  right: -20px; top: -20px;
  width: 80px; height: 80px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
}
.coupon-card.starbucks {
  background: linear-gradient(135deg, #00704A, #1e9e65);
}
.coupon-card.baemin {
  background: linear-gradient(135deg, #23C4D0, #1aa8b3);
}
.coupon-brand {
  font-size: .75rem;
  font-weight: 600;
  opacity: .85;
  margin-bottom: 4px;
}
.coupon-name {
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.coupon-badge {
  display: inline-block;
  background: rgba(255,255,255,.25);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 700;
}

/* Hero Bubbles */
.hero-bubble {
  position: absolute;
  background: var(--white);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: .8rem;
  color: var(--navy);
  box-shadow: var(--shadow);
  white-space: nowrap;
  animation: float 3s ease-in-out infinite;
  z-index: 10;
}
.hero-bubble strong { color: var(--blue); }
.bubble1 { top: 20px;  left: -30px; animation-delay: 0s; }
.bubble2 { top: 50%;   right: -40px; animation-delay: 1s; }
.bubble3 { bottom: 40px; left: -20px; animation-delay: 2s; }

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

/* Hero image float */
.hero-img-float {
  max-width: 420px;
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.15));
  animation: floatImg 4s ease-in-out infinite;
}
@keyframes floatImg {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
/* ---- Slide 1 : 삼총사 컵 ---- */
.slide1-trio {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 420px;
  width: 460px;
}
.slide1-trio-cup {
  position: absolute;
  bottom: 0;
  transition: transform .35s ease, filter .35s ease;
}
.slide1-trio-cup img {
  display: block;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,.25));
}
/* 왼쪽 컵 - 살짝 기울어져 뒤에 */
.cup-left {
  left: 10px;
  z-index: 1;
  transform: rotate(-8deg) translateX(50px);
  transform-origin: bottom center;
}
.cup-left img { width: 200px; }

/* 가운데 컵 - 정면, 살짝 앞 */
.cup-center {
  left: 50%;
  transform: translateX(-50%) translateY(-30px);
  z-index: 3;
  animation: floatCupCenter 4s ease-in-out infinite;
}
.cup-center img { width: 220px; }

@keyframes floatCupCenter {
  0%, 100% { transform: translateX(-50%) translateY(-30px); }
  50%       { transform: translateX(-50%) translateY(-42px); }
}

/* 오른쪽 컵 - 반대로 기울어져 뒤에 */
.cup-right {
  right: 10px;
  z-index: 2;
  transform: rotate(8deg) translateX(-50px);
  transform-origin: bottom center;
}
.cup-right img { width: 190px; }

/* hover 시 살짝 들리는 효과 */
.cup-left:hover  { transform: rotate(-8deg) translateX(50px) translateY(-16px); filter: brightness(1.06); }
.cup-center:hover { animation: none; transform: translateX(-50%) translateY(-46px); filter: brightness(1.06); }
.cup-right:hover { transform: rotate(8deg) translateX(-50px) translateY(-16px); filter: brightness(1.06); }

/* ---- Slide 2 : 스타벅스 음료 3종 일러스트 ---- */
.slide2-drinks-img {
  width: 460px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.18));
  animation: floatImg 4s ease-in-out infinite;
}

/* ---- Slide 4 : Security ---- */
.slide-4 {
  background: linear-gradient(135deg, #e8f0fe 0%, #eef3ff 50%, #e6f4f1 100%);
}
.slide4-security {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.sec-icon-wrap {
  width: 120px; height: 120px;
  background: linear-gradient(135deg, var(--blue) 0%, #1e3a8a 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 16px 48px rgba(30,77,183,.35);
  animation: floatImg 4s ease-in-out infinite;
}
.sec-icon-wrap i {
  font-size: 3.2rem;
  color: #fff;
}
.sec-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.sec-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(30,77,183,.08);
  border: 1px solid rgba(30,77,183,.18);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}
.sec-badge i {
  color: var(--blue);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.slide3-coffee {
  max-width: 256px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
  object-fit: cover;
  aspect-ratio: 3/4;
}

/* ---- Slide 3 : 스타벅스 컵 ---- */
.slide3-cup-img {
  height: 400px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 28px 56px rgba(0, 0, 0, 0.25));
  animation: floatImg 4s ease-in-out infinite;
}

/* Swiper Hero */
#heroSwiper {
  width: 100%;
  height: clamp(460px, calc(100vh - 220px), 700px);
}
#heroSwiper .swiper-wrapper,
#heroSwiper .swiper-slide {
  height: 100%;
}
#heroSwiper .hero-slide {
  height: 100%;
  min-height: unset;
}

/* 모바일: 고정 높이 해제, 슬라이드 배경 전체 채우기 */
@media (max-width: 768px) {
  /* Swiper 자체에 pagination 공간(44px) 확보 → 콘텐츠와 점 안 겹침 */
  #heroSwiper {
    height: auto;
    padding-bottom: 44px !important;
    box-sizing: content-box;
  }
  /* 슬라이드1 이미지 상단 잘림 방지: visual 영역 위 여백 */
  .hero-visual { padding-top: 20px; }
  #heroSwiper .swiper-wrapper {
    height: auto;
    align-items: stretch;
  }
  /* swiper-slide: flex로 hero-slide 가득 채우기 */
  #heroSwiper .swiper-slide {
    height: auto;
    display: flex;
    flex-direction: column;
  }
  /* hero-slide가 slide 전체 높이 채워 배경 가득 */
  #heroSwiper .hero-slide {
    flex: 1;
    min-height: unset;
    display: flex;
    align-items: center;
  }
  /* pagination은 확보된 44px 영역 중앙에 위치 */
  #heroSwiper .swiper-pagination {
    bottom: 14px !important;
  }
}
.hero-prev, .hero-next {
  color: var(--navy) !important;
  background: rgba(255,255,255,.8);
  width: 44px !important; height: 44px !important;
  border-radius: 50%;
  box-shadow: var(--shadow);
  transition: var(--transition);
  /* PC: 컨테이너 안쪽 24px 여백 */
  left: max(24px, calc(50% - 600px + 24px)) !important;
}
.hero-next {
  left: auto !important;
  right: max(24px, calc(50% - 600px + 24px)) !important;
}
/* 태블릿: 화살표를 화면 안쪽(16px)에 위치, 화살표 크기는 유지 */
@media (max-width: 1024px) {
  .hero-prev { left: 12px !important; }
  .hero-next { right: 12px !important; left: auto !important; }
}
.hero-prev::after, .hero-next::after {
  font-size: 1rem !important;
}
.hero-prev:hover, .hero-next:hover {
  background: var(--white);
  transform: scale(1.1);
}
.swiper-pagination-bullet {
  background: var(--navy) !important;
  opacity: .3 !important;
}
.swiper-pagination-bullet-active {
  opacity: 1 !important;
  transform: scale(1.2);
}

/* ============================================
   STATS STRIP
   ============================================ */
.stats-strip {
  background: var(--navy);
  padding: 40px 0;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 20px;
}
.stat-item .stat-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}
.stat-item .stat-unit {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: #7dd3fc;
}
.stat-item p {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  margin-top: 6px;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  margin-bottom: 48px;
}
.how-step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
}
.how-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(30,77,183,.3);
}
.step-num {
  font-size: .75rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: .12em;
  margin-bottom: 10px;
}
.how-step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.how-step p {
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.7;
}
.step-arrow {
  position: absolute;
  right: -20px; top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: .85rem;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(30,77,183,.3);
}
.how-cta { text-align: center; }

/* ============================================
   DISCOUNT TABLE
   ============================================ */
.discount-wrap { overflow-x: auto; }
.discount-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.discount-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.discount-table thead tr {
  background: var(--navy);
}
.discount-table thead th {
  padding: 18px 20px;
  font-size: .88rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
}
.discount-table thead th:first-child { text-align: left; }
.discount-table thead th.bizticon {
  background: var(--blue);
  position: relative;
}
.best-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: .65rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: 8px;
  vertical-align: middle;
}
.discount-table thead th small {
  display: block;
  font-size: .73rem;
  font-weight: 400;
  opacity: .7;
  margin-top: 2px;
}
.discount-table tbody tr {
  border-bottom: 1px solid var(--gray-200);
  transition: background .2s;
}
.discount-table tbody tr:hover { background: var(--gray-50); }
.discount-table tbody tr:last-child { border-bottom: none; }
.discount-table tbody td {
  padding: 16px 20px;
  font-size: .9rem;
  text-align: center;
  color: var(--gray-600);
}
.brand-cell {
  display: flex !important;
  align-items: center;
  gap: 14px;
  text-align: left !important;
  font-weight: 500;
  color: var(--gray-800) !important;
}
.brand-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  color: white;
  flex-shrink: 0;
}
td.highlight {
  background: rgba(30,77,183,.06);
  color: var(--blue) !important;
  font-weight: 800 !important;
  font-size: 1rem !important;
}
.discount-note {
  font-size: .8rem;
  color: var(--gray-400);
  margin-top: 16px;
  text-align: center;
}
@media (max-width: 768px) {
  .discount-note { font-size: .68rem; }
}

/* ---- 모바일: 할인율 테이블 → 카드형 ---- */
@media (max-width: 640px) {
  /* 가로 스크롤 완전 제거 */
  .discount-wrap { overflow: visible; }
  .discount-table-wrap { overflow: visible; border-radius: 0; box-shadow: none; background: none; }

  /* 테이블 구조 완전 해제 */
  .discount-table,
  .discount-table thead,
  .discount-table tbody,
  .discount-table tr,
  .discount-table th,
  .discount-table td { display: block; width: 100%; min-width: 0; }

  /* 헤더 전체 숨김 */
  .discount-table thead { display: none; }

  /* A사·B사 comp 셀 숨김 */
  .discount-table tbody td.comp { display: none; }

  /* 각 행 = 한 줄 리스트 아이템 */
  .discount-table tbody tr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 10px;
    padding: 12px 14px;
    gap: 10px;
  }
  .discount-table tbody tr:last-child { margin-bottom: 0; }
  .discount-table tbody tr,
  .discount-table tbody tr:hover { background: var(--white) !important; }
  .discount-table tbody td.highlight,
  .discount-table tbody tr:hover td.highlight { background: var(--blue) !important; }
  .discount-table tbody td.highlight strong,
  .discount-table tbody tr:hover td.highlight strong { color: #fff !important; }

  /* 브랜드 셀: 좌측, 아이콘 + 텍스트 */
  .discount-table tbody td.brand-cell {
    display: flex !important;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
    padding: 0;
    border: none;
    margin: 0;
    font-size: .85rem;
    font-weight: 500;
    color: var(--gray-800) !important;
  }
  /* 브랜드명 텍스트 말줄임 */
  .discount-table tbody td.brand-cell > span:last-child {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .brand-icon { width: 30px; height: 30px; font-size: .78rem; flex-shrink: 0; }

  /* 비즈티콘 할인율 셀: 우측 뱃지 */
  .discount-table tbody td.highlight {
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: auto;
    min-width: 52px;
    padding: 5px 12px;
    background: var(--blue);
    border-radius: 100px;
    border: none;
    margin: 0;
  }
  .discount-table tbody td.highlight strong {
    font-size: .9rem;
    font-weight: 800;
    color: #fff;
  }
}

/* ============================================
   BRAND SECTION
   ============================================ */
.brand-swiper-wrap {
  margin-bottom: 60px;
  padding: 0 20px;
}
.brand-swiper .swiper-slide {
  width: auto;
}
.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px 24px;
  width: 130px;
  transition: var(--transition);
  cursor: default;
  box-shadow: var(--shadow-sm);
}
.brand-card:hover {
  background: #f0f5ff;
  border-color: rgba(30,77,183,.25);
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(30,77,183,.12);
}
.brand-card i {
  font-size: 1.8rem;
}
.brand-card span {
  font-size: .82rem;
  font-weight: 600;
  color: var(--gray-700);
  text-align: center;
}

.brand-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.brand-cat {
  text-align: center;
  padding: 28px 20px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.brand-cat:hover {
  background: #f0f5ff;
  border-color: rgba(30,77,183,.25);
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(30,77,183,.12);
}
.brand-cat-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(30,77,183,.1), rgba(30,77,183,.06));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--blue);
  margin: 0 auto 14px;
}
.brand-cat h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.brand-cat p {
  font-size: .83rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: rgba(30,77,183,.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.feature-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 20px;
}
.bg-blue { background: linear-gradient(135deg, var(--blue), var(--blue-light)); }
.bg-green { background: linear-gradient(135deg, #059669, #10b981); }
.bg-orange { background: linear-gradient(135deg, #d97706, #f59e0b); }
.bg-navy { background: linear-gradient(135deg, var(--navy), var(--navy-light)); }
.bg-purple { background: linear-gradient(135deg, #6d28d9, #8b5cf6); }
.bg-teal { background: linear-gradient(135deg, #0e7490, #0891b2); }

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.feature-card p {
  font-size: .88rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ============================================
   INFOGRAPHIC SECTION
   ============================================ */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.info-text .section-label {
  display: inline-block;
  background: rgba(30,77,183,.1);
  color: var(--blue);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.info-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.25;
}
.info-text h2 em { color: var(--blue); font-style: normal; }
.info-text h2 em.down { color: var(--accent); }
.info-text p {
  color: var(--gray-500);
  font-size: .97rem;
  line-height: 1.8;
  margin-bottom: 28px;
}
.info-list {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  color: var(--gray-700);
}
.info-list li i {
  color: var(--green);
  font-size: .85rem;
  flex-shrink: 0;
}

.info-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- Value Visual (핵심 가치 일러스트) ---- */
.value-visual {
  position: relative;
  width: 400px;
  height: 400px;
  flex-shrink: 0;
}

/* SVG 연결선 */
.vv-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* 중앙 원 */
.vv-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 140px; height: 140px;
  background: linear-gradient(135deg, var(--blue) 0%, #4a7fe5 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 8px 40px rgba(30,77,183,.35), 0 0 0 12px rgba(30,77,183,.08);
  z-index: 2;
}
.vv-logo {
  width: 90px;
  filter: brightness(0) invert(1);
  object-fit: contain;
}
.vv-center-label {
  font-size: .62rem;
  font-weight: 700;
  color: rgba(255,255,255,.75);
  letter-spacing: .06em;
  text-align: center;
  line-height: 1.3;
}

/* 수치 카드 공통 */
.vv-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 6px 24px rgba(0,0,0,.09);
  min-width: 130px;
  z-index: 3;
  transition: transform .3s ease, box-shadow .3s ease;
}
.vv-card:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 32px rgba(0,0,0,.14);
}

/* 카드 위치 (사분면) */
.vv-card-1 { top: 20px;  left: 14px;  }
.vv-card-2 { top: 20px;  right: 14px; }
.vv-card-3 { bottom: 20px; left: 14px;  }
.vv-card-4 { bottom: 20px; right: 14px; }

/* 카드 아이콘 */
.vv-card-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(30,77,183,.1);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
}
.vv-card-icon.accent { background: rgba(245,158,11,.12); color: #f59e0b; }
.vv-card-icon.green  { background: rgba(16,185,129,.12);  color: #10b981; }
.vv-card-icon.navy   { background: rgba(15,23,64,.08);    color: var(--navy); }

/* 카드 텍스트 */
.vv-card-body {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.vv-card-body strong {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--navy);
}
.vv-card-body span {
  font-size: .72rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* 카드 등장 애니메이션 */
.vv-card-1 { animation: vvFloat 3.5s ease-in-out infinite; }
.vv-card-2 { animation: vvFloat 3.5s ease-in-out infinite .8s; }
.vv-card-3 { animation: vvFloat 3.5s ease-in-out infinite 1.6s; }
.vv-card-4 { animation: vvFloat 3.5s ease-in-out infinite 2.4s; }

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

/* 반응형 */
@media (max-width: 768px) {
  .value-visual { width: 300px; height: 300px; }
  .vv-center { width: 110px; height: 110px; }
  .vv-logo { width: 70px; }
  .vv-card { min-width: 110px; padding: 10px 12px; }
  .vv-card-body strong { font-size: .95rem; }
  .vv-card-icon { width: 32px; height: 32px; font-size: .8rem; }
}

/* ============================================
   USE CASE SECTION
   ============================================ */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.usecase-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition);
  text-align: center;
}
.usecase-card:hover {
  border-color: rgba(30,77,183,.3);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.usecase-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(30,77,183,.1), rgba(30,77,183,.05));
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--blue);
  margin: 0 auto 18px;
  transition: var(--transition);
}
.usecase-card:hover .usecase-icon {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: white;
}
.usecase-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.usecase-card p {
  font-size: .87rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ============================================
   PIR SECTION
   ============================================ */
.pir-section {
  background: linear-gradient(160deg, #f8f9ff 0%, #eef2ff 100%);
}
/* 리스트형 텍스트 중심 디자인 */
.pir-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 44px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.pir-item {
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1.5px solid rgba(30,77,183,.1);
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
  transition: var(--transition);
  overflow: hidden;
}
.pir-item:hover {
  border-color: var(--blue);
  box-shadow: 0 6px 28px rgba(30,77,183,.12);
  transform: translateX(6px);
}
.pir-item-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
}
/* Q 뱃지 */
.pir-q {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: white;
  font-size: 1rem;
  font-weight: 900;
  font-style: italic;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(30,77,183,.3);
}
/* 질문 텍스트 */
.pir-item-inner p {
  flex: 1;
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--gray-700);
  line-height: 1.65;
  margin: 0;
}
.pir-item-inner p em {
  font-style: normal;
  font-weight: 800;
  color: var(--navy);
  background: linear-gradient(120deg, rgba(30,77,183,.12) 0%, rgba(30,77,183,.06) 100%);
  padding: 1px 6px;
  border-radius: 4px;
}
/* 맞아요 뱃지 */
.pir-check {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--blue);
  background: rgba(30,77,183,.07);
  border: 1px solid rgba(30,77,183,.18);
  border-radius: 999px;
  padding: 5px 14px;
  white-space: nowrap;
  transition: var(--transition);
}
.pir-item:hover .pir-check {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}
.pir-check i { font-size: .82rem; }

/* 하단 답변 배너 */
.pir-answer { margin-top: 48px; max-width: 860px; margin-left: auto; margin-right: auto; }
.pir-answer-inner {
  position: relative;
  background: linear-gradient(135deg, #0f1f5c 0%, #1e4db7 60%, #2563eb 100%);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  gap: 28px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(30,77,183,.35);
}
/* 배경 장식 원 */
.pir-answer-inner::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}
.pir-answer-inner::after {
  content: '';
  position: absolute;
  bottom: -60px; right: 80px;
  width: 160px; height: 160px;
  background: rgba(255,183,0,.08);
  border-radius: 50%;
}
.pir-answer-icon {
  position: relative;
  width: 64px; height: 64px;
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  color: white;
  flex-shrink: 0;
  animation: pulseGlow 2.4s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,.25); }
  50%       { box-shadow: 0 0 0 10px rgba(255,255,255,.0); }
}
.pir-answer-inner p {
  position: relative;
  font-size: 1.18rem;
  line-height: 1.8;
  color: rgba(255,255,255,.88);
  flex: 1;
  margin: 0;
}
.pir-answer-inner p strong {
  display: block;
  margin-top: 6px;
  font-size: 1.4rem;
  font-weight: 800;
  color: #FFD700;
  letter-spacing: -.01em;
  text-shadow: 0 0 24px rgba(255,215,0,.4);
}
.pir-answer-arrow {
  position: relative;
  font-size: 2rem;
  color: #FFD700;
  animation: bounceDown 1.5s ease-in-out infinite;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(255,215,0,.5));
}
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}
@media (max-width: 768px) {
  .pir-item-inner { padding: 18px 20px; gap: 14px; }
  .pir-item-inner p { font-size: .97rem; }
  .pir-check { display: none; }
  .pir-answer-inner { flex-direction: column; text-align: center; padding: 28px 24px; }
  .pir-answer-arrow { display: none; }
}

/* ============================================
   WHY BIZTICON SECTION
   ============================================ */
.why-section {
  background: var(--white);
}

/* 각 항목 행 */
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 36px 40px;
  margin-bottom: 16px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-200);
  background: #fafbff;
  transition: var(--transition);
  position: relative;
  overflow: hidden; /* 데스크탑: 왼쪽 파란 선(::before) 클리핑용 */
}
.why-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--blue), var(--blue-light));
  border-radius: 4px 0 0 4px;
  opacity: 0;
  transition: var(--transition);
}
.why-item:hover {
  border-color: rgba(30,77,183,.25);
  box-shadow: 0 8px 32px rgba(30,77,183,.08);
  background: #f4f7ff;
}
.why-item:hover::before { opacity: 1; }

/* 번호 + 아이콘 묶음 */
.why-badge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.why-badge {
  font-size: .72rem;
  font-weight: 900;
  color: var(--blue);
  background: rgba(30,77,183,.08);
  border-radius: 999px;
  padding: 3px 10px;
  letter-spacing: .06em;
}
.why-icon-wrap {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: white;
  flex-shrink: 0;
}
.why-icon-wrap.bg-blue   { background: linear-gradient(135deg, #1e4db7, #3b82f6); }
.why-icon-wrap.bg-orange { background: linear-gradient(135deg, #f37021, #f59e0b); }
.why-icon-wrap.bg-green  { background: linear-gradient(135deg, #16a34a, #22c55e); }
.why-icon-wrap.bg-teal   { background: linear-gradient(135deg, #0891b2, #22d3ee); }
.why-icon-wrap.bg-purple { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
.why-icon-wrap.bg-navy   { background: linear-gradient(135deg, #0f172a, #1e4db7); }

/* 텍스트 영역 */
.why-content {
  flex: 1;
  padding-top: 2px;
}
.why-content h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.why-content p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin: 0;
}
.why-content p em {
  font-style: normal;
  font-weight: 700;
  color: var(--blue);
}
/* 인용구 스타일 */
.why-quote {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  font-style: italic;
  border-left: 3px solid var(--blue);
  padding-left: 14px;
  margin-bottom: 8px !important;
}
/* NO 뱃지 */
.why-no {
  display: inline-block;
  background: #ef4444;
  color: white;
  font-size: .75rem;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: .04em;
}
/* 3단계 스텝 */
.why-steps {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.why-step-badge {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: white;
  font-size: .88rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 999px;
}
.why-steps .fa-arrow-right {
  color: var(--gray-400);
  font-size: .85rem;
}

/* 임베드 섹션 (할인율 테이블 / 이용방법) */
.why-embed {
  margin: 0 0 16px;
  padding: 0 0 0 calc(32px + 56px + 40px); /* 왼쪽 여백 = gap + 아이콘 + padding */
}

/* 할인율 테이블 - why-content 내부 임베드 */
.why-item-table { align-items: flex-start; }
.why-embed-inner { margin-top: 20px; }

/* 데스크탑: 테이블 표시 / 모바일 카드 숨김 */
.why-desktop-table { display: block; }
.why-mobile-cards  { display: none; }

@media (max-width: 768px) {
  .why-embed-inner { margin-top: 14px; }
}

/* ── 이용방법 임베드 (짧은 업무절차 하단) ── */
.why-how-embed {
  margin: -8px 0 24px;
}
.why-how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  background: linear-gradient(135deg, #f0f4ff, #e8efff);
  border: 1.5px solid rgba(30,77,183,.12);
  border-radius: 16px;
  padding: 28px 32px;
}
.why-how-step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}
.why-how-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e4db7, #3b82f6);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: white;
  margin: 0 auto 12px;
  box-shadow: 0 4px 14px rgba(30,77,183,.25);
}
.why-how-num {
  font-size: .72rem;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: .08em;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.why-how-step h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.why-how-step p {
  font-size: .86rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin: 0;
}
.why-how-arrow {
  display: flex;
  align-items: center;
  padding-top: 28px; /* 아이콘 높이 맞춤 */
  color: var(--blue);
  opacity: .4;
  font-size: 1rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  /* ── why-item: 아이콘 위, 텍스트 아래 세로 배치 ── */
  .why-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
    gap: 14px;
  }
  .why-badge-wrap {
    flex-direction: row;
    align-items: center;
  }
  .why-content h3 { font-size: 1.1rem; }
  .why-content p  { font-size: .95rem; }
  .why-embed { padding-left: 0; }

  /* ── why-item: overflow 허용 ── */
  .why-item { overflow: visible; }
  .why-content { width: 100%; min-width: 0; }

  /* ── 데스크탑 테이블 숨김 / 모바일 카드 표시 ── */
  .why-desktop-table { display: none; }
  .why-mobile-cards  { display: block; }

  /* 카드 래퍼: 좌우 페이드 + 오버플로 숨김 */
  .why-mobile-cards {
    overflow: hidden;
    margin-left: -20px;
    margin-right: -20px;
    padding-bottom: 6px;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 32px, #000 calc(100% - 32px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 32px, #000 calc(100% - 32px), transparent 100%);
  }

  /* 자동 스크롤 트랙 */
  .why-card-track {
    display: flex;
    gap: 10px;
    width: max-content;
    padding: 6px 32px;
    animation: whyCardScroll 20s linear infinite;
  }
  .why-card-track:hover { animation-play-state: paused; }

  @keyframes whyCardScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* 개별 카드 */
  .why-disc-card {
    width: 140px;
    flex-shrink: 0;
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    box-shadow: var(--shadow-sm);
  }

  /* 브랜드 헤더 */
  .why-disc-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--gray-100);
    font-size: .78rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
  }
  .wdc-icon {
    width: 28px; height: 28px;
    border-radius: 7px;
    display: flex; align-items: center; justify-content: center;
    font-size: .72rem;
    color: #fff;
    flex-shrink: 0;
  }
  .why-disc-brand small {
    font-size: .68rem;
    font-weight: 500;
    color: var(--gray-500);
  }

  /* A사·B사 행 */
  .wdc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .78rem;
  }
  .wdc-comp {
    color: var(--gray-500);
  }
  .wdc-comp span:first-child {
    color: var(--gray-400);
    font-size: .7rem;
  }

  /* 비즈티콘 행 강조 */
  .wdc-best {
    background: linear-gradient(135deg, #1e4db7, #2d62e8);
    border-radius: 6px;
    padding: 5px 8px;
    color: #fff;
    font-size: .78rem;
    margin-top: 2px;
  }
  .wdc-best span {
    color: rgba(255,255,255,.8);
    font-size: .68rem;
  }
  .wdc-best strong {
    color: #fff;
    font-size: .95rem;
    font-weight: 900;
  }

  /* ── 짧은 업무절차 3단계: 중앙정렬 수정 ── */
  .why-how-steps {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px;
  }
  .why-how-step {
    padding: 12px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    text-align: left;
  }
  .why-how-icon {
    margin: 0;
    flex-shrink: 0;
    width: 48px; height: 48px;
    font-size: 1.1rem;
  }
  .why-how-step-text { flex: 1; }
  .why-how-num { margin-bottom: 2px; }
  .why-how-step h4 { margin-bottom: 4px; }
  .why-how-arrow {
    transform: rotate(90deg);
    padding-top: 0;
    align-self: center;
    margin: 4px auto;
  }
}

/* ============================================
   TESTIMONIALS - 무한 스크롤 카드
   ============================================ */
.testimonial-section .section-header p {
  font-size: .95rem;
  color: rgba(255,255,255,.55);
  margin-top: 8px;
}

/* 스크롤 래퍼: 좌우 페이드 마스크 */
.review-scroll-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 80px, #000 calc(100% - 80px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 80px, #000 calc(100% - 80px), transparent 100%);
}

/* 트랙 공통 */
.review-track {
  display: flex;
  gap: 16px;
  width: max-content;
}

/* 좌→우 (←) 방향 */
.review-track-ltr {
  animation: reviewScrollLTR 35s linear infinite;
}
/* 우→좌 (→) 방향 */
.review-track-rtl {
  animation: reviewScrollRTL 35s linear infinite;
}
/* 느린 트랙 */
.review-track-slow {
  animation-duration: 50s;
}

/* hover 시 일시정지 */
.review-scroll-wrap:hover .review-track {
  animation-play-state: paused;
}

@keyframes reviewScrollLTR {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes reviewScrollRTL {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* 후기 카드 */
.review-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 14px;
  padding: 20px 24px;
  min-width: 240px;
  max-width: 260px;
  flex-shrink: 0;
  transition: background .2s, border-color .2s, transform .2s;
  cursor: default;
}
.review-card:hover {
  background: rgba(255,255,255,.13);
  border-color: rgba(255,255,255,.3);
  transform: translateY(-3px);
}
.review-card-wide {
  min-width: 320px;
  max-width: 380px;
}
.review-stars {
  color: #fbbf24;
  font-size: .85rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.review-text {
  font-size: .88rem;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  margin: 0 0 12px;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-card-wide .review-text {
  -webkit-line-clamp: 4;
}
.review-company {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  letter-spacing: .3px;
}

/* 모바일: 패딩만 줄임 */
@media (max-width: 480px) {
  .review-card { padding: 16px 18px; min-width: 200px; max-width: 220px; }
  .review-card-wide { min-width: 260px; max-width: 300px; }
  .review-text { font-size: .82rem; }
}

/* ============================================
   PARTNERSHIP SECTION
   ============================================ */
.partner-section {
  background: var(--gray-50);
  overflow: hidden;
  padding-bottom: 60px;
}
.partner-section .section-header {
  margin-bottom: 48px;
}

/* 트랙 래퍼: 좌우 fade 마스크 */
.partner-track-wrap {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  margin-bottom: 16px;
}
.partner-track-wrap:last-child { margin-bottom: 0; }

/* 트랙 자체 */
.partner-track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
}

/* 좌→우 */
.track-ltr {
  animation: scrollLTR 30s linear infinite;
}
/* 우→좌 */
.track-rtl {
  animation: scrollRTL 30s linear infinite;
}
/* 느린 트랙 */
.track-slow {
  animation-duration: 40s;
}

/* hover 시 일시정지 */
.partner-track-wrap:hover .partner-track {
  animation-play-state: paused;
}

@keyframes scrollLTR {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes scrollRTL {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* 개별 로고 카드 */
.partner-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 160px;
  height: 60px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 0 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
  transition: box-shadow .25s, border-color .25s, transform .25s;
  flex-shrink: 0;
  cursor: default;
}
.partner-logo-item:hover {
  box-shadow: 0 6px 20px rgba(30,77,183,.13);
  border-color: rgba(30,77,183,.3);
  transform: translateY(-2px);
}
.partner-logo-item img {
  height: 30px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  flex-shrink: 0;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: filter .25s, opacity .25s;
}
.partner-logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}
.partner-logo-item span {
  font-size: .78rem;
  font-weight: 600;
  color: var(--gray-500);
  white-space: nowrap;
  letter-spacing: -.01em;
  transition: color .25s;
}
.partner-logo-item:hover span {
  color: var(--gray-800);
}
.partner-logo-item.partner-logo-text span {
  font-size: .82rem;
  font-weight: 700;
  color: var(--gray-600);
  white-space: nowrap;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 50%, #4f8ef7 100%);
  padding: 80px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-text h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-text p {
  font-size: 1rem;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */
#footer {
  background: var(--gray-900);
}
.footer-top { padding: 64px 0 40px; }
.footer-top-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-logo .logo-text { color: var(--white); }
.footer-logo-img { height: 28px; filter: brightness(0) invert(1); }
.footer-brand p {
  font-size: .87rem;
  color: rgba(255,255,255,.45);
  margin-top: 16px;
  margin-bottom: 20px;
  line-height: 1.7;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  font-size: 1.1rem;
  color: rgba(255,255,255,.5);
  transition: var(--transition);
}
.footer-social a:hover { background: rgba(255,255,255,.15); color: var(--white); }

.footer-nav-group h4 {
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: .04em;
}
.footer-nav-group ul li {
  margin-bottom: 10px;
}
.footer-nav-group ul li a {
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  transition: color .2s;
}
.footer-nav-group ul li a:hover { color: rgba(255,255,255,.8); }
.footer-nav-group ul li i {
  width: 16px;
  color: rgba(255,255,255,.3);
  margin-right: 6px;
  font-size: .8rem;
}
.footer-nav-group ul li:not(:has(a)) {
  font-size: .85rem;
  color: rgba(255,255,255,.45);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.company-info {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  line-height: 1.7;
}
.copyright {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  flex-shrink: 0;
}

/* ============================================
   SEARCH BAR SECTION
   ============================================ */
.search-bar-section {
  background: linear-gradient(135deg, #0d1b3e 0%, #1e4db7 100%);
  padding: 32px 0 20px;
  position: relative;
  z-index: 10;
}
.search-bar-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='30'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

/* 전체 래퍼 */
.search-bar-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* 검색 필드 */
.search-field-wrap {
  flex: 1;
  position: relative;
}
.search-input-group {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(0,0,0,.25), 0 2px 8px rgba(0,0,0,.15);
  overflow: hidden;
  transition: box-shadow .3s;
}
.search-input-group:focus-within {
  box-shadow: 0 8px 40px rgba(30,77,183,.5), 0 2px 8px rgba(0,0,0,.15);
}
.search-icon-left {
  padding: 0 0 0 22px;
  color: var(--blue);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.search-input-main {
  flex: 1;
  border: none;
  outline: none;
  padding: 16px 14px;
  font-size: 1rem;
  font-family: var(--font);
  color: var(--gray-800);
  background: transparent;
}
.search-input-main::placeholder {
  color: var(--gray-400);
}
.search-btn-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  border: none;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s;
  margin: 3px;
  border-radius: 50%;
}
.search-btn-icon:hover {
  background: linear-gradient(135deg, var(--blue-light) 0%, #5b87f5 100%);
}

/* 자동완성 드롭다운 */
.search-autocomplete {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,.20);
  list-style: none;
  max-height: 320px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  border: 1px solid var(--gray-100);
}
.search-autocomplete.open { display: block; }
.search-autocomplete li {
  padding: 12px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  transition: background .15s;
}
.search-autocomplete li:last-child { border-bottom: none; }
.search-autocomplete li:hover,
.search-autocomplete li.active {
  background: var(--gray-50);
  color: var(--blue);
}
.search-autocomplete li i {
  color: var(--gray-400);
  font-size: .85rem;
  width: 16px;
}
.search-autocomplete .ac-badge {
  margin-left: auto;
  font-size: .75rem;
  color: var(--blue);
  background: rgba(30,77,183,.08);
  padding: 2px 8px;
  border-radius: 20px;
}
.search-autocomplete .ac-empty {
  padding: 20px;
  text-align: center;
  color: var(--gray-400);
  font-size: .9rem;
}

/* 액션 버튼 영역 */
.search-action-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.search-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 50px;
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-product-list {
  background: rgba(255,255,255,.15);
  color: #ffffff;
  border: 2px solid rgba(255,255,255,.4);
  backdrop-filter: blur(8px);
}
.btn-product-list:hover {
  background: rgba(255,255,255,.28);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-2px);
}
.btn-consultant {
  background: #FEE500;
  color: #3C1E1E;
  border: 2px solid #FEE500;
}
.btn-consultant:hover {
  background: #FFD700;
  border-color: #FFD700;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(254,229,0,.5);
}
.kakao-svg-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* 추천 검색 태그 */
.search-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.search-tag-label {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-right: 4px;
}
.search-tag-label i { color: #ff8c42; }
.search-tag {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.85);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: .8rem;
  cursor: pointer;
  font-family: var(--font);
  transition: var(--transition);
}
.search-tag:hover {
  background: rgba(255,255,255,.22);
  color: #fff;
  border-color: rgba(255,255,255,.6);
  transform: translateY(-1px);
}

/* ============================================
   QUOTE PANEL
   ============================================ */
.quote-panel {
  display: none;                          /* JS로 열림 */
  margin-top: 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  overflow: hidden;
  animation: quoteFadeIn .35s cubic-bezier(.4,0,.2,1);
}
@keyframes quoteFadeIn {
  from { opacity:0; transform:translateY(-12px); }
  to   { opacity:1; transform:translateY(0); }
}
.quote-panel.open { display: block; }

.quote-panel-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 0;
}

/* ── 좌측 테이블 영역 ── */
.quote-left {
  padding: 24px 28px;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.quote-table-head {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.quote-table-head i { color: #93c5fd; font-size: 1rem; }
.quote-table-head em {
  color: #fbbf24;
  font-style: normal;
  font-weight: 800;
}
.quote-clear-btn {
  margin-left: auto;
  background: rgba(239,68,68,.15);
  border: 1px solid rgba(239,68,68,.35);
  color: #fca5a5;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: .78rem;
  cursor: pointer;
  font-family: var(--font);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
}
.quote-clear-btn:hover {
  background: rgba(239,68,68,.3);
  color: #fff;
}

/* 테이블 */
.quote-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
}
.quote-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
  min-width: 480px;
}
.quote-table thead tr {
  background: rgba(255,255,255,0.12);
}
.quote-table thead th {
  padding: 11px 14px;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  text-align: left;
  white-space: nowrap;
}
.quote-table thead th:last-child { text-align: center; }
.quote-table tbody tr {
  border-top: 1px solid rgba(255,255,255,0.08);
  transition: background .15s;
}
.quote-table tbody tr:hover { background: rgba(255,255,255,0.05); }
.quote-table tbody td {
  padding: 10px 14px;
  color: #fff;
  vertical-align: middle;
}
.quote-table tbody td.td-name { font-weight: 500; }
.quote-table tbody td.td-sale { color: #34d399; font-weight: 700; }
.quote-table tbody td.td-price { font-weight: 600; }
.quote-table tbody td.td-total { font-weight: 700; color: #fbbf24; }
.quote-table tbody td.td-del { text-align: center; }

/* 수량 입력 */
.qty-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
}
.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
  flex-shrink: 0;
}
.qty-btn:hover { background: rgba(255,255,255,0.25); }
.qty-input {
  width: 52px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: .88rem;
  font-family: var(--font);
  padding: 4px 6px;
  outline: none;
}
.qty-input:focus { border-color: rgba(255,255,255,0.6); }
/* 숫자 입력 스피너 제거 */
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.qty-input[type=number] {
  -moz-appearance: textfield;
}

/* 삭제 버튼 */
.del-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(239,68,68,0.2);
  color: #fca5a5;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  margin: 0 auto;
  transition: background .15s;
}
.del-btn:hover { background: rgba(239,68,68,0.45); color:#fff; }

/* 합계 행 */
.quote-total-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  justify-content: flex-end;
  color: rgba(255,255,255,0.75);
  font-size: .92rem;
}
.quote-total-row strong {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fbbf24;
}

/* ── 우측 폼 영역 ── */
.quote-right {
  padding: 24px 24px;
  background: rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.quote-form-title {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.quote-form-title i { color: #93c5fd; }

.quote-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.quote-field label {
  font-size: .8rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}
.req { color: #f87171; }
.quote-field input {
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: .9rem;
  font-family: var(--font);
  padding: 10px 14px;
  outline: none;
  transition: border-color .2s;
}
.quote-field input::placeholder { color: rgba(255,255,255,0.35); }
.quote-field input:focus { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.15); }

.quote-submit-btn {
  width: 100%;
  padding: 13px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #f97316 0%, #ef4444 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(249,115,22,.4);
  margin-top: 4px;
}
.quote-submit-btn:hover {
  background: linear-gradient(135deg, #ea6c09 0%, #dc2626 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249,115,22,.55);
}
.quote-submit-btn:active { transform: translateY(0); }

.quote-notice {
  font-size: .76rem;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.5;
  margin-top: auto;
}
.quote-notice i { margin-top: 2px; flex-shrink: 0; color: #93c5fd; }

/* ── 반응형 ── */
@media (max-width: 900px) {
  .quote-panel-inner {
    grid-template-columns: 1fr;
  }
  .quote-left {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding: 20px 18px;
  }
  .quote-right { padding: 20px 18px; }
}
@media (max-width: 600px) {
  /* 패널 좌우 패딩 최소화 */
  .quote-left { padding: 16px 12px; }
  .quote-right { padding: 16px 12px; }

  /* 테이블 구조 해제 → 카드형 */
  .quote-table-wrap { overflow: visible; border: none; border-radius: 0; background: none; }

  .quote-table,
  .quote-table thead,
  .quote-table tbody,
  .quote-table tr,
  .quote-table th,
  .quote-table td { display: block; width: 100%; min-width: 0; }

  /* 헤더 숨김 */
  .quote-table thead { display: none; }

  /* 각 행 = 카드 */
  .quote-table tbody tr {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    margin-bottom: 10px;
    padding: 12px;
  }
  .quote-table tbody tr:last-child { margin-bottom: 0; }

  /* 상품명 */
  .quote-table tbody td.td-name {
    font-size: .9rem;
    font-weight: 600;
    color: #fff;
    padding: 0 0 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 8px;
  }

  /* 할인율 · 할인가 · 합계: 라벨 + 값 한 줄 */
  .quote-table tbody td.td-sale,
  .quote-table tbody td.td-price,
  .quote-table tbody td.td-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    font-size: .85rem;
  }
  .quote-table tbody td.td-sale::before   { content: '할인율'; color: rgba(255,255,255,0.5); font-size: .78rem; }
  .quote-table tbody td.td-price::before  { content: '할인가'; color: rgba(255,255,255,0.5); font-size: .78rem; }
  .quote-table tbody td.td-total::before  { content: '합계';   color: rgba(255,255,255,0.5); font-size: .78rem; }

  /* 수량 행: 라벨 + qty-wrap */
  .quote-table tbody td:has(.qty-wrap) {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
  }
  .quote-table tbody td:has(.qty-wrap)::before {
    content: '수량';
    color: rgba(255,255,255,0.5);
    font-size: .78rem;
  }

  /* 삭제 버튼: 우측 정렬 */
  .quote-table tbody td.td-del {
    padding: 8px 0 0 0;
    text-align: right;
  }
  .del-btn { margin: 0 0 0 auto; }

  .quote-total-row strong { font-size: 1.2rem; }
  .qty-input { width: 42px; }
}

/* ============================================
   QUOTE DONE POPUP (레이어 팝업)
   ============================================ */
.qpop-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 50, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
.qpop-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* 패널 */
.qpop-panel {
  position: relative;
  background: #fff;
  border-radius: 28px;
  padding: 48px 40px 36px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0,0,0,.28);
  transform: translateY(24px) scale(.96);
  transition: transform .38s cubic-bezier(.34,1.56,.64,1);
  overflow: hidden;
}
.qpop-overlay.open .qpop-panel {
  transform: translateY(0) scale(1);
}
/* 상단 그라데이션 바 */
.qpop-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, #1e4db7 0%, #f97316 50%, #10b981 100%);
}

/* 닫기 버튼 */
.qpop-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--gray-100);
  color: var(--gray-500);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}
.qpop-close:hover { background: var(--gray-200); color: var(--gray-800); }

/* 아이콘 */
.qpop-icon-wrap {
  margin-bottom: 20px;
}
.qpop-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  animation: popIconPop .5s cubic-bezier(.34,1.56,.64,1) .1s both;
}
@keyframes popIconPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.qpop-icon i {
  font-size: 2.4rem;
  color: #059669;
}

/* 텍스트 */
.qpop-title {
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 10px;
}
.qpop-sub {
  font-size: .95rem;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 20px;
}
.qpop-email {
  display: inline-block;
  margin-top: 6px;
  background: rgba(30,77,183,.08);
  color: var(--blue);
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 20px;
  font-size: .88rem;
}

/* 상품 요약 박스 */
.qpop-summary {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 18px;
  text-align: left;
  max-height: 160px;
  overflow-y: auto;
}
.qpop-summary:empty { display: none; }
.qpop-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 5px 0;
  font-size: .88rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-200);
}
.qpop-summary-row:last-child { border-bottom: none; }
.qpop-summary-row .sr-name { font-weight: 500; flex: 1; }
.qpop-summary-row .sr-qty  { color: var(--gray-400); white-space: nowrap; }
.qpop-summary-row .sr-amt  { font-weight: 700; color: var(--navy); white-space: nowrap; }
.qpop-summary-total {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 2px solid var(--gray-200);
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
}
.qpop-summary-total strong { color: var(--blue); font-size: 1.05rem; }

/* 안내 */
.qpop-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: .82rem;
  color: var(--gray-400);
  margin-bottom: 24px;
}
.qpop-info i { color: var(--orange); }
.qpop-info strong { color: var(--gray-600); }

/* 버튼 그룹 */
.qpop-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.qpop-btn {
  width: 100%;
  padding: 14px 20px;
  border-radius: 14px;
  font-size: .97rem;
  font-weight: 700;
  font-family: var(--font);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-decoration: none;
  transition: var(--transition);
}
/* 카카오 */
.qpop-btn-kakao {
  background: #FEE500;
  color: #3C1E1E;
  box-shadow: 0 4px 14px rgba(254,229,0,.45);
}
.qpop-btn-kakao:hover {
  background: #FFD700;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(254,229,0,.55);
}
/* 추가 견적 */
.qpop-btn-again {
  background: var(--gray-100);
  color: var(--gray-700);
  border: 1.5px solid var(--gray-200);
}
.qpop-btn-again:hover {
  background: var(--gray-200);
  color: var(--gray-900);
  transform: translateY(-2px);
}
/* 메인으로 */
.qpop-btn-close2 {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(30,77,183,.35);
}
.qpop-btn-close2:hover {
  opacity: .92;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30,77,183,.45);
}

/* ESC 힌트 */
.qpop-esc {
  margin-top: 14px;
  font-size: .75rem;
  color: var(--gray-300);
}

/* 반응형 */
@media (max-width: 520px) {
  .qpop-panel { padding: 40px 22px 28px; border-radius: 20px; }
  .qpop-title { font-size: 1.3rem; }
  .qpop-icon  { width: 68px; height: 68px; }
  .qpop-icon i { font-size: 2rem; }
}

/* ── 토스트 알림 ── */
.bz-toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: #1e293b;
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  opacity: 0;
  transition: opacity .3s, transform .3s;
  z-index: 9999;
  pointer-events: none;
}
.bz-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.bz-toast.toast-success { background: linear-gradient(135deg,#059669,#10b981); }
.bz-toast.toast-error   { background: linear-gradient(135deg,#b91c1c,#ef4444); }

/* ============================================
   SCROLL TOP BUTTON
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 50px; height: 50px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 14px rgba(0,0,0,.22);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  z-index: 999;
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scroll-top:hover {
  background: var(--blue-light);
  transform: translateY(-3px) scale(1.07);
  box-shadow: 0 8px 22px rgba(0,0,0,.28);
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.floating-btns {
  position: fixed;
  bottom: 92px;        /* scroll-top 버튼 위 */
  right: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 998;
}

.float-btn-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* 툴팁 */
.float-tooltip {
  position: absolute;
  right: calc(100% + 10px);
  background: #333;
  color: #fff;
  font-size: .75rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: opacity .2s, transform .2s;
}
.float-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #333;
}
.float-btn-wrap:hover .float-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* 버튼 공통 */
.float-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.22);
  transition: transform .2s, box-shadow .2s;
  flex-shrink: 0;
  text-decoration: none;
}
.float-btn:hover {
  transform: translateY(-3px) scale(1.07);
  box-shadow: 0 8px 22px rgba(0,0,0,.28);
}

/* 카카오톡 — 노란 배경 */
.float-kakao {
  background: #ffe123;
}
.float-kakao svg {
  width: 26px; height: 26px;
  fill: #000;
}

/* 엑셀 다운로드 — 초록 배경 */
.float-excel {
  background: #00bc16;
  color: #fff;
  font-size: 1.15rem;
}

/* 모바일: 동일 사이즈 유지 */
@media (max-width: 768px) {
  .floating-btns { right: 20px; bottom: 80px; }
  .float-btn { width: 50px; height: 50px; }
  .float-kakao svg { width: 26px; height: 26px; }
  .float-excel { font-size: 1.15rem; }
}

/* ============================================
   REVEAL ANIMATION
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE - Tablet (max 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .gnb { display: none; }
  .btn-outline-nav, .btn-primary-nav { display: none; }
  .hamburger { display: flex; }

  /* ── 태블릿 Hero: 2단 PC 레이아웃 유지 ── */
  /* 화살표(44px) + 여백(12px) = 56px 확보, 양쪽 합산 112px */
  .hero-slide .container { padding-left: 68px; padding-right: 68px; }
  .hero-content { gap: 28px; padding: 28px 0; }

  /* 이미지 크기 통일 */
  .slide1-trio    { width: 300px; height: 280px; }
  .cup-left img   { width: 130px; }
  .cup-center img { width: 145px; }
  .cup-right img  { width: 120px; }
  .cup-left  { transform: rotate(-8deg) translateX(35px); }
  .cup-right { transform: rotate(8deg) translateX(-35px); }
  .cup-center { transform: translateX(-50%) translateY(-20px); }

  .slide2-drinks-img { width: 320px; }
  .slide3-cup-img    { height: 280px; width: auto; }

  .hero-phone-wrap { width: 200px; }
  .hero-phone { width: 180px; height: 360px; }
  .hero-bubble { display: flex; font-size: .7rem; padding: 6px 12px; }
  .bubble1 { top: 10px; left: -10px; }
  .bubble2 { top: 50%; right: -10px; }
  .bubble3 { bottom: 20px; left: 0px; }

  .how-steps { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 48px; }
  .step-arrow { right: 50%; bottom: -20px; top: auto; transform: translateX(50%) rotate(90deg); }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .usecase-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-categories { grid-template-columns: repeat(2, 1fr); }

  .info-grid { grid-template-columns: 1fr; gap: 60px; }
  .info-img { max-width: 480px; margin: 0 auto; }

  .footer-top-inner { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .cta-inner { flex-direction: column; text-align: center; }

  /* Search bar tablet */
  .search-field-wrap { flex: 1; }
  .search-action-btn i,
  .search-action-btn svg { display: none; }
  .search-action-btn { padding: 14px 18px; }
}

/* ============================================
   RESPONSIVE - Mobile (max 768px)
   ============================================ */
@media (max-width: 768px) {
  :root { --header-h: 52px; }

  .section-pad { padding: 56px 0; }
  .section-header { margin-bottom: 40px; }

  .stats-grid { flex-wrap: wrap; }
  .stat-item { flex: 0 0 50%; }
  .stat-divider { display: none; }

  .features-grid { grid-template-columns: 1fr; }
  .usecase-grid { grid-template-columns: 1fr; }
  .brand-categories { grid-template-columns: 1fr 1fr; }

  .discount-table thead th { padding: 12px 10px; font-size: .8rem; }
  .discount-table tbody td { padding: 12px 10px; font-size: .85rem; }

  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; justify-content: center; padding: 16px 36px; font-size: 1.05rem; }

  .footer-top-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 8px; }

  .scroll-top { bottom: 20px; right: 20px; width: 50px; height: 50px; }

  .info-stat-cards { position: static; transform: none; justify-content: center; margin-top: 20px; }

  /* ── 모바일 Hero: 1단 세로 레이아웃 ── */
  /* 하단 padding은 콘텐츠 여백용 (pagination 공간은 #heroSwiper padding-bottom으로 처리) */
  .hero-slide { padding: 28px 0 24px; }
  .hero-content { grid-template-columns: 1fr; gap: 20px; text-align: center; padding: 0; }
  .hero-visual { order: -1; }
  .hero-cta { justify-content: center; }
  .hero-slide .container { padding-left: 20px; padding-right: 20px; }
  .hero-text h1 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .hero-text p { font-size: .92rem; margin-bottom: 20px; }
  .mo-br { display: block; }
  .pc-br { display: none; }
  .btn-hero-primary, .btn-hero-outline { padding: 13px 22px; font-size: .9rem; }

  /* 슬라이드 이미지 */
  .slide1-trio    { width: 240px; height: 200px; overflow: visible; margin-top: 20px; }
  .cup-left img   { width: 100px; }
  .cup-center img { width: 112px; }
  .cup-right img  { width: 95px; }
  .cup-left  { transform: rotate(-8deg) translateX(28px); }
  .cup-right { transform: rotate(8deg) translateX(-28px); }
  .cup-center { transform: translateX(-50%) translateY(-15px); }

  .slide2-drinks-img { width: 240px; }
  .slide3-cup-img    { height: 200px; width: auto; }

  .hero-text { padding: 0 4px; }
  .hero-phone-wrap { width: 160px; }
  .hero-phone { width: 150px; height: 300px; border-radius: 24px; }
  .coupon-card { padding: 10px; border-radius: 10px; }
  .coupon-brand { font-size: .62rem; }
  .coupon-name { font-size: .72rem; margin-bottom: 5px; }
  .coupon-badge { font-size: .62rem; padding: 2px 7px; }
  .phone-screen { padding: 14px 10px; gap: 8px; }
  .phone-mockup-inner { gap: 8px; }
  .bubble1 { top: 8px; left: -5px; font-size: .65rem; padding: 5px 10px; }
  .bubble2 { top: 50%; right: -5px; font-size: .65rem; padding: 5px 10px; }
  .bubble3 { bottom: 16px; left: 0px; font-size: .65rem; padding: 5px 10px; }

  /* Search bar responsive */
  .search-bar-wrap { flex-direction: column; gap: 12px; }
  .search-action-btns { width: 100%; }
  .search-action-btn { flex: 1; justify-content: center; padding: 12px 16px; font-size: .85rem; }
  .search-input-main { font-size: .9rem; padding: 13px 10px; }
  .search-btn-icon { width: 46px; height: 46px; }
  .search-action-btn i,
  .search-action-btn svg { display: none; }
  .search-action-btn span { display: inline; }
}

@media (max-width: 480px) {
  .stats-grid { gap: 0; }
  .stat-item { flex: 0 0 50%; padding: 16px 8px; }

  .brand-categories { grid-template-columns: 1fr; }

  .footer-top { padding: 48px 0 32px; }

  /* Hero 초소형 */
  .hero-slide { padding: 20px 0; }
  .hero-content { gap: 14px; }
  .hero-text h1 { font-size: clamp(1.3rem, 7vw, 1.6rem); }
  .hero-badge { font-size: .72rem; padding: 5px 11px; margin-bottom: 10px; }
  .slide1-trio    { width: 200px; height: 170px; }
  .cup-left img   { width: 84px; }
  .cup-center img { width: 94px; }
  .cup-right img  { width: 80px; }
  .cup-left  { transform: rotate(-8deg) translateX(22px); }
  .cup-right { transform: rotate(8deg) translateX(-22px); }
  .cup-center { transform: translateX(-50%) translateY(-12px); }
  .slide2-drinks-img { width: 200px; }
  .slide3-cup-img    { height: 170px; width: auto; }
}

/* ============================================
   SUBPAGE SHARED STYLES
   ============================================ */
.page-hero {
  margin-top: var(--header-h);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 0;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero h1 em { color: #7dd3fc; font-style: normal; }
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: .7rem; }
