/* ============================================
   N&J Interpretation - Main Stylesheet
   Color System: Orange #FF6B00 + Black #111111
   ============================================ */

:root {
  --primary: #FF6B00;
  --primary-dark: #E05A00;
  --primary-light: #FF8C33;
  --black: #111111;
  --dark: #1A1A1A;
  --dark-2: #222222;
  --dark-3: #2D2D2D;
  --gray-1: #444444;
  --gray-2: #666666;
  --gray-3: #999999;
  --gray-4: #CCCCCC;
  --gray-5: #F5F5F5;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.25);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
}

/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Noto Sans KR', 'Inter', sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding { padding: 100px 0; }
.section-padding-sm { padding: 60px 0; }

/* ============ TYPOGRAPHY ============ */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 20px;
}

.section-title.white { color: var(--white); }

.section-desc {
  font-size: 16px;
  color: var(--gray-2);
  line-height: 1.8;
  max-width: 600px;
}

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

.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,107,0,0.4);
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--dark-3);
  transform: translateY(-2px);
}

/* ============ HEADER ============ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
}

#header.scrolled {
  background: var(--black);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

#header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 40px;
}

.smartlog-guard-badge {
  position: fixed;
  left: 40px;
  top: 76px;
  z-index: 990;
  line-height: 0;
  pointer-events: none;
}

.smartlog-guard-badge img {
  display: block;
  width: auto;
  height: 22px;
  max-width: 180px;
  object-fit: contain;
  opacity: 0.95;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.logo span { color: var(--primary); }

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  color: var(--white);
}

/* ===== GLOBAL LOGO (공통 헤더) ===== */
.logo-brand { display:flex; align-items:center; gap:10px; text-decoration:none; }
.logo-globe {
  width:42px; height:42px; border-radius:50%;
  border:2.5px solid var(--primary);
  display:flex; align-items:center; justify-content:center;
  color:var(--primary); font-size:20px;
  position:relative; flex-shrink:0;
  background:rgba(255,107,0,0.08);
}
.logo-globe::after {
  content:''; position:absolute; inset:3px;
  border-radius:50%; border:1.5px solid rgba(255,107,0,0.3);
}
.logo-text-wrap { display:flex; flex-direction:column; line-height:1.1; }
.logo-main { font-size:17px; font-weight:900; color:var(--primary); letter-spacing:-0.3px; }
.logo-sub { font-size:10px; font-weight:500; color:rgba(255,255,255,0.55); letter-spacing:1.5px; text-transform:uppercase; }

/* GNB */
.gnb {
  display: flex;
  align-items: center;
  gap: 4px;
}

.gnb > li { position: relative; }

.gnb > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  border-radius: var(--radius);
  transition: var(--transition);
}

.gnb > li > a:hover,
.gnb > li > a.active {
  color: var(--primary);
  background: rgba(255,107,0,0.1);
}

.gnb > li > a i { font-size: 10px; }

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 8px 0;
  border-top: 3px solid var(--primary);
}

.gnb > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(4px);
}

.dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 16px;
  color: var(--gray-1);
  transition: var(--transition);
}

.dropdown a:hover {
  color: var(--primary);
  background: var(--gray-5);
  padding-left: 28px;
}

/* Header Right */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Language Switcher */
.lang-switcher {
  position: relative;
}

/* 운영 배포 모드: 사이트 내 다국어 스위처 비활성화 */
.lang-switcher,
.mobile-lang {
  display: none !important;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
}

.lang-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  overflow: hidden;
  border-top: 3px solid var(--primary);
}

.lang-switcher:hover .lang-dropdown,
.lang-dropdown.active {
  opacity: 1;
  visibility: visible;
}

.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--gray-1);
  transition: var(--transition);
}

.lang-dropdown a:hover {
  background: var(--gray-5);
  color: var(--primary);
}

.lang-dropdown a.active {
  color: var(--primary);
  font-weight: 600;
  background: rgba(255,107,0,0.05);
}

.lang-flag { font-size: 18px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  height: calc(100vh - 72px);
  background: var(--black);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  padding: 24px;
}

.mobile-nav.active { transform: translateX(0); }

.mobile-nav-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav-item > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 8px;
  font-size: 16px;
  color: var(--white);
  font-weight: 500;
}

.mobile-sub {
  display: none;
  padding: 8px 0 16px 20px;
}

.mobile-sub a {
  display: block;
  padding: 8px 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.mobile-sub a:hover { color: var(--primary); }

.mobile-sub.active { display: block; }

.mobile-lang {
  display: flex;
  gap: 12px;
  padding: 24px 8px;
  flex-wrap: wrap;
}

.mobile-lang a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 13px;
  transition: var(--transition);
}

.mobile-lang a.active,
.mobile-lang a:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ============ HERO SECTION ============ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center center / cover no-repeat;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8, 8, 8, 0.76) 0%,
    rgba(12, 8, 4, 0.63) 45%,
    rgba(7, 7, 7, 0.52) 100%
  );
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,107,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 40px 80px;
}

.hero-text .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255,107,0,0.15);
  border: 1px solid rgba(255,107,0,0.4);
  border-radius: 20px;
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -1px;
  text-shadow: 0 6px 24px rgba(0,0,0,0.45);
}

.hero-title .highlight {
  color: var(--primary);
  position: relative;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.86);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 560px;
  text-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-item .num {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.hero-stat-item .label {
  font-size: 20px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  letter-spacing: 1px;
}

/* ============ QUICK QUOTE FORM ============ */
.quick-quote {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,107,0,0.2);
}

.quote-header {
  background: var(--primary);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.quote-header h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.quote-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
  border: none;
}

.quote-toggle:hover { background: rgba(255,255,255,0.35); }

.quote-body {
  overflow: hidden;
}

.quote-body.collapsed { display: none; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-2);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-group label span.required { color: var(--primary); margin-left: 2px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-4);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--black);
  background: var(--gray-5);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.1);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quote-submit {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

.quote-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,107,0,0.4);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2s infinite;
}

.scroll-indicator i { font-size: 16px; }

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

/* ============ SINCE SECTION ============ */
#since {
  background: var(--white);
  padding: 100px 0;
}

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

.since-text .year-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--black);
  border-radius: 30px;
  margin-bottom: 28px;
}

.since-text .year-badge span {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
}

.since-text .year-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.since-text h2 {
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.3;
  color: var(--black);
  margin-bottom: 20px;
}

.since-text h2 em {
  font-style: normal;
  color: var(--primary);
}

.since-text p {
  font-size: 16px;
  color: var(--gray-2);
  line-height: 1.9;
  margin-bottom: 32px;
}

.since-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.since-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.since-feature .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,107,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 16px;
  flex-shrink: 0;
}

.since-feature .text strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--black);
  margin-bottom: 4px;
}

.since-feature .text span {
  font-size: 15px;
  line-height: 1.55;
  color: var(--gray-3);
}

.since-visual {
  position: relative;
}

.since-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.since-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.since-badge-float {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  background: var(--primary);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.since-badge-float .big { font-size: 42px; font-weight: 900; line-height: 1; }
.since-badge-float .small { font-size: 12px; font-weight: 600; letter-spacing: 1px; opacity: 0.9; }

/* ============ BUSINESS SECTION ============ */
#business {
  background: var(--gray-5);
  padding: 100px 0;
}

/* ============ BUSINESS SLIDER (desktop) / GRID (mobile) ============ */
.biz-slider-wrap {
  position: relative;
  margin-top: 52px;
  display: flex;
  align-items: center;
  gap: 0;
}

/* 뷰포트: 카드 4개 보이게 */
.biz-slider-viewport {
  overflow: hidden;
  flex: 1;
}

.biz-slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.biz-slider-track .business-card {
  flex: 0 0 calc(25% - 15px);   /* 4개 보이기 (gap 20px × 3 / 4) */
  min-width: 0;
}

/* 화살표 버튼 */
.biz-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--gray-1);
  cursor: pointer;
  transition: all 0.25s;
  flex-shrink: 0;
  z-index: 2;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.biz-arrow:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.biz-arrow:disabled { opacity: 0.35; cursor: default; pointer-events: none; }
.biz-prev { margin-right: 12px; }
.biz-next { margin-left: 12px; }

/* 도트 인디케이터 */
.biz-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.biz-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  padding: 0;
}
.biz-dot.active { background: var(--primary); width: 24px; border-radius: 4px; }

/* 모바일: 슬라이더 감추고 기존 그리드로 */
@media (max-width: 768px) {
  .biz-arrow { display: none; }
  .biz-slider-viewport { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
  .biz-slider-track { transition: none; }
  .biz-slider-track .business-card {
    flex: 0 0 calc(50% - 10px);
    scroll-snap-align: start;
  }
  .biz-dots { display: flex; margin-top: 16px; }
}
@media (max-width: 480px) {
  .biz-slider-track .business-card { flex: 0 0 calc(100% - 0px); }
}

/* ── 구 business-grid 는 삭제(슬라이더로 대체) ── */
.business-grid {
  display: none;
}

.business-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  group: true;
}

.business-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.business-card:hover img { transform: scale(1.08); }

.business-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 20px;
  transition: var(--transition);
}

.business-card:hover .business-card-overlay {
  background: linear-gradient(to top, rgba(255,107,0,0.9) 0%, rgba(0,0,0,0.5) 100%);
}

.business-card-overlay .cat-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
  backdrop-filter: blur(4px);
}

.business-card-overlay h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.business-card-overlay p {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
}

/* ============ EXPERIENCE BANNER ============ */
#experience {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.experience-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--black) 0%, #2d1000 100%);
}

.experience-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  mix-blend-mode: luminosity;
}

.experience-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.experience-text {
  max-width: 600px;
}

.exp-number {
  font-size: 100px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -4px;
  margin-bottom: 8px;
  opacity: 0.9;
}

.exp-label {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.exp-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.9;
}

.experience-cta .btn { margin-top: 0; }

/* ============ TRANSLATION SECTION ============ */
#translation {
  background: var(--white);
  padding: 100px 0;
}

.flags-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 48px;
}

.flag-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--gray-5);
  border-radius: 30px;
  border: 1px solid transparent;
  transition: var(--transition);
  cursor: default;
}

.flag-item:hover {
  border-color: var(--primary);
  background: rgba(255,107,0,0.05);
  transform: translateY(-2px);
}

.flag-item .flag { font-size: 20px; }

.flag-item .lang-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-2);
}

.translation-count {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  margin: 40px auto 0;
  display: flex;
  width: fit-content;
}

/* ============ SERVICES GALLERY ============ */
#services-gallery {
  background: var(--gray-5);
  padding: 100px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
  border-color: var(--primary);
}

.service-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img { transform: scale(1.06); }

.service-card-img .tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 12px;
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-card-body {
  padding: 24px;
}

.service-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.service-card-body p {
  font-size: 13px;
  color: var(--gray-3);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

.service-card-link:hover { gap: 10px; }

/* ============ STATS SECTION ============ */
#stats {
  background: var(--black);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

#stats::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,0,0.08) 0%, transparent 70%);
}

#stats::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,0,0.06) 0%, transparent 70%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}

.stat-item:hover {
  background: rgba(255,107,0,0.08);
  border-color: rgba(255,107,0,0.3);
  transform: translateY(-4px);
}

.stat-item .stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255,107,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
  margin: 0 auto 20px;
}

.stat-item .stat-number {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -2px;
}

.stat-item .stat-number .stat-unit {
  font-size: 0.5em;
  color: var(--primary);
  font-weight: 700;
}

.stat-item .stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}

/* ============ OUR CLIENT ============ */
#clients {
  background: var(--white);
  padding: 100px 0;
}

/* marquee 제거됨 */

.client-logo {
  height: 60px;
  padding: 8px 24px;
  background: var(--gray-5);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  border: 1px solid transparent;
  transition: var(--transition);
  flex-shrink: 0;
}

.client-logo:hover {
  border-color: var(--primary);
  background: rgba(255,107,0,0.05);
  transform: translateY(-2px);
}

.client-logo span {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-3);
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.client-logo:hover span { color: var(--primary); }

/* ============ CTA BANNER ============ */
#cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

#cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-text h2 {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.cta-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

/* ============ SERVICE CENTER ============ */
#service-center {
  background: var(--gray-5);
  padding: 100px 0;
}

.service-center-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}

.sc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-top: 4px solid transparent;
  transition: var(--transition);
}

.sc-card:hover { border-top-color: var(--primary); }

.sc-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.sc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255,107,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary);
}

.sc-card-head h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
}

.sc-card-head p {
  font-size: 13px;
  color: var(--gray-3);
}

.sc-bank-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sc-bank-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sc-bank-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid #e9edf5;
  background: #fff;
  padding: 5px;
  flex-shrink: 0;
}

.sc-bank-phone {
  display: block;
  margin-top: 2px;
}

.sc-bank-owner {
  display: block;
  margin-top: 2px;
}

.sc-bank-phone i {
  color: var(--primary);
  margin-right: 6px;
}

.sc-bank-phone a {
  color: var(--primary);
  font-weight: 700;
  display: block;
  width: fit-content;
  margin: 8px auto 0;
  padding: 5px 12px;
  border: 1px solid rgba(255, 107, 0, 0.45);
  border-radius: 999px;
  background: rgba(255, 107, 0, 0.06);
  text-align: center;
}

.contact-list { display: flex; flex-direction: column; gap: 16px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--gray-5);
  border-radius: var(--radius);
  transition: var(--transition);
}

.contact-item:hover { background: rgba(255,107,0,0.05); }

.contact-item .ci-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  flex-shrink: 0;
}

.contact-item .ci-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2px;
}

.contact-item .ci-text span {
  font-size: 13px;
  color: var(--gray-2);
}

.inquiry-form { display: flex; flex-direction: column; gap: 16px; }

.inquiry-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-4);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--black);
  background: var(--gray-5);
  resize: vertical;
  min-height: 100px;
  outline: none;
  transition: var(--transition);
  font-family: inherit;
}

.inquiry-form textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.1);
}

/* ============ FOOTER ============ */
#footer {
  background: var(--dark);
  padding: 60px 0 0;
  border-top: 3px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 280px 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .logo { margin-bottom: 16px; }

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: var(--transition);
}

.footer-social a:hover {
  background: #03C75A;
  color: var(--white);
}

.footer-social .footer-call-link {
  width: auto;
  min-width: 120px;
  height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  gap: 7px;
  background: rgba(255,107,0,0.15);
  border: 1px solid rgba(255,107,0,0.35);
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  font-weight: 700;
}

.footer-social .footer-call-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.footer-social .naver-blog-link {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -1px;
  background: rgba(255,255,255,0.08);
  color: #03C75A;
  border: 1px solid rgba(3,199,90,0.3);
  box-shadow: inset 0 0 0 1px rgba(3,199,90,0.08);
}

.footer-social .naver-blog-link:hover {
  background: rgba(3,199,90,0.18);
  color: #eaffea;
  border-color: #70f3aa;
  animation: naverTwinkle 1.1s ease-in-out infinite alternate;
}

@keyframes naverTwinkle {
  0% { box-shadow: 0 0 0 rgba(112,243,170,0), 0 0 0 rgba(112,243,170,0); }
  100% { box-shadow: 0 0 10px rgba(112,243,170,0.55), 0 0 20px rgba(112,243,170,0.35); }
}

/* 네이버 블로그 N 아이콘 */
.footer-social a[aria-label="네이버 블로그"] {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -1px;
  background: rgba(3,199,90,0.15);
  color: #03C75A;
  border: 1px solid rgba(3,199,90,0.3);
}
.footer-social a[aria-label="네이버 블로그"]:hover {
  background: #03C75A;
  color: #fff;
  border-color: #03C75A;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a::before {
  content: '›';
  color: var(--primary);
  font-size: 16px;
}

.footer-col ul li a:hover {
  color: var(--primary);
  padding-left: 4px;
}

/* footer-links = footer-col alias (subpage footers) */
.footer-links h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; list-style: none; padding: 0; margin: 0; }
.footer-links ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links ul li a::before {
  content: '›';
  color: var(--primary);
  font-size: 16px;
}
.footer-links ul li a:hover { color: var(--primary); padding-left: 4px; }

/* footer-bottom-links */
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0 8px;
}

.footer-bottom p,
.footer-company-info p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-company-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-company-info p {
  margin: 0;
  line-height: 1.6;
}

.footer-bottom .footer-policy {
  display: flex;
  gap: 24px;
}

.footer-bottom .footer-policy a {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}

.footer-bottom .footer-policy a:hover { color: var(--primary); }

/* ===== SCROLL TO TOP BUTTON ===== */
#scrollTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(255,107,0,0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 900;
}
#scrollTop:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,107,0,0.5);
}

/* footer-bottom-links */
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--primary); }

/* ============ PAGE HERO (Sub pages) ============ */
.page-hero {
  background: linear-gradient(135deg, var(--black) 0%, #1a0800 100%);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(255,107,0,0.1) 0%, transparent 60%);
}

.page-hero-content { position: relative; z-index: 2; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.breadcrumb span {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.breadcrumb span.sep { color: rgba(255,107,0,0.5); }

.breadcrumb span.current { color: var(--primary); font-weight: 600; }

.page-hero h1 {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  line-height: 1.8;
}

/* ============ ANIMATIONS ============ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }

/* ============ NOTIFICATION TOAST ============ */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--black);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--primary);
  z-index: 9999;
  font-size: 14px;
  font-weight: 500;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 320px;
}

.toast.show { transform: translateX(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1200px) {
  .hero-content { grid-template-columns: 1fr 380px; gap: 40px; }
  .business-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 1024px) {
  .since-inner { grid-template-columns: 1fr; gap: 48px; }
  .since-visual { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .experience-content { grid-template-columns: 1fr; }
  .experience-cta { display: none; }
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .section-padding { padding: 64px 0; }

  #header .header-inner { padding: 0 16px; height: 64px; }
  .smartlog-guard-badge { left: 16px; top: 68px; }
  .smartlog-guard-badge img { height: 18px; max-width: 150px; }
  .mobile-nav {
    top: 64px;
    height: calc(100vh - 64px);
  }
  .gnb { display: none; }
  .header-right .lang-switcher { display: none; }
  .hamburger { display: flex; }

  /* 모바일 헤더 전화번호 숨김 */
  .header-right > a[href^="tel"] { display: none !important; }

  .hero-content {
    grid-template-columns: 1fr;
    padding: 100px 16px 60px;
    gap: 40px;
  }

  .quick-quote { max-width: 100%; }

  .hero-stats { gap: 24px; flex-wrap: wrap; }

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

  .stats-grid { grid-template-columns: 1fr; }

  .services-grid { grid-template-columns: 1fr; }

  .service-card-img { height: 200px; }

  .service-center-grid { grid-template-columns: 1fr; }

  .cta-content { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }

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

  .form-row { grid-template-columns: 1fr; }

  .exp-number { font-size: 72px; }
}

@media (max-width: 480px) {
  .business-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; }
}

/* ============ UTILITY ============ */
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-16 { gap: 16px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }

/* ============ COUNTER ANIMATION ============ */
.counting { display: inline-block; }

/* ============ STATS KOREAN LABEL ============ */
.stat-kr-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 2px;
  line-height: 1.3;
}

/* ============ CLIENTS IMAGE SECTION ============ */
.clients-img-wrap {
  width: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 24px;
  margin-top: 48px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border: 1px solid var(--gray-4);
}

.clients-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 8px;
}

/* ============ FLAGS GRID IMAGE ============ */
.flags-grid-image {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 40px 0 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border: 1px solid var(--gray-4);
  background: var(--white);
  padding: 16px;
}

.flags-grid-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* ============ STATS GRID 9 - 추가 반응형 ============ */
@media (max-width: 1024px) {
  .stats-grid-9 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .stats-grid-9 { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-item-v2 { padding: 24px 16px; }
  .stat-num-main { font-size: 32px !important; }
  .clients-img-wrap { padding: 16px; margin-top: 32px; }
  .flags-grid-image { margin: 24px 0 16px; }
}

@media (max-width: 480px) {
  .stats-grid-9 { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-kr-label { font-size: 13px; }
  .stat-item-v2 { padding: 20px 12px; }
}

/* ============ FEATURED COUNTRY 통역사 수 뱃지 ============ */
.fc-count {
  font-size: 10px !important;
  color: var(--primary) !important;
  font-weight: 700 !important;
  background: rgba(255,107,0,0.12);
  padding: 2px 7px;
  border-radius: 10px;
  display: inline-block;
  margin-top: 4px;
}

/* ============ 국가 섹션 반응형 보완 ============ */
@media (max-width: 640px) {
  .featured-countries {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 8px !important;
  }
  .featured-country { padding: 12px 6px; }
  .fc-flag { font-size: 24px !important; }
  .fc-name { font-size: 10px; }
  .fc-count { font-size: 9px !important; }
  .other-countries { gap: 6px; }
  .other-country { padding: 5px 10px; }
  .other-country .name { font-size: 11px; }
}

/* ============ QUOTE FORM 모바일 최적화 ============ */
@media (max-width: 768px) {
  .quick-quote { max-width: 100%; }
  .quote-body { padding: 16px !important; }
}

/* ============ 반응형 클라이언트 마퀴 ============ */
@media (max-width: 480px) {
  .client-logo-item { min-width: 100px; height: 52px; padding: 6px 12px; }
  .client-logo-item .logo-txt { font-size: 11px; }
}
