/* ================================================================
   S1 Security — service.css (서비스 소개 페이지 공통)
================================================================ */

/* ── 브레드크럼 ──────────────────────────────────────────── */
.breadcrumb-section {
  background: var(--navy);
  padding: 80px 0 32px;       /* 고정 헤더 높이 보정 */
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.breadcrumb-wrap { display: flex; align-items: center; gap: 8px; }
.breadcrumb-wrap a  { font-size: .85rem; color: rgba(255,255,255,.5); transition: color .2s; }
.breadcrumb-wrap a:hover { color: var(--red); }
.breadcrumb-wrap .sep { color: rgba(255,255,255,.25); font-size: .8rem; }
.breadcrumb-wrap .current { font-size: .85rem; color: rgba(255,255,255,.8); font-weight: 500; }
.breadcrumb-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900; color: #fff; margin-top: 12px; line-height: 1.25; }
.breadcrumb-subtitle { font-size: .95rem; color: rgba(255,255,255,.6); margin-top: 8px; }

/* ── 서비스 히어로 (브레드크럼 아래 시각 블록) ────────────── */
.service-hero {
  position: relative;
  min-height: 360px;
  display: flex; align-items: center;
  overflow: hidden;
}
.service-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.service-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(26,26,46,.9) 0%, rgba(26,26,46,.5) 100%);
}
.service-hero-content { position: relative; z-index: 2; padding: 60px 0; }
.service-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff;
  font-size: .78rem; font-weight: 700; letter-spacing: 1px;
  padding: 5px 16px; border-radius: 30px; margin-bottom: 18px;
}
.service-hero-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900; color: #fff; line-height: 1.25; margin-bottom: 16px;
}
.service-hero-content h2 span { color: #e74c3c; }
.service-hero-content p { font-size: 1rem; color: rgba(255,255,255,.8); max-width: 520px; line-height: 1.8; }
.service-hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.service-hero-visual {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  padding: 40px 0;
}
.hero-icon-circle {
  width: 200px; height: 200px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; color: #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  position: relative;
}
.hero-icon-circle::before {
  content: '';
  position: absolute; inset: -12px;
  border: 2px solid rgba(192,57,43,.4);
  border-radius: 50%;
  animation: pulse-ring 3s ease-out infinite;
}
.hero-icon-circle::after {
  content: '';
  position: absolute; inset: -24px;
  border: 1px solid rgba(192,57,43,.2);
  border-radius: 50%;
  animation: pulse-ring 3s ease-out .6s infinite;
}
@keyframes pulse-ring {
  0%   { transform: scale(1);   opacity: 1; }
  100% { transform: scale(1.15); opacity: 0; }
}

/* ── 서비스 개요 카드 행 ──────────────────────────────────── */
.overview-cards { margin-top: -30px; position: relative; z-index: 10; }
.overview-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: var(--transition);
}
.overview-card:hover { transform: translateY(-4px); border-color: var(--red); }
.overview-card-icon {
  width: 56px; height: 56px;
  background: #fdeded; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--red);
  margin: 0 auto 14px;
}
.overview-card h5 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.overview-card p  { font-size: .85rem; color: var(--gray); margin: 0; line-height: 1.6; }

/* ── 특장점 그리드 ───────────────────────────────────────── */
.feature-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 22px;
  border: 1.5px solid #eee;
  border-radius: var(--radius-md);
  transition: var(--transition);
  height: 100%;
}
.feature-card:hover { border-color: var(--red); box-shadow: var(--shadow-sm); }
.feature-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: #fdeded; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--red);
}
.feature-body h5 { font-size: .95rem; font-weight: 700; margin-bottom: 5px; }
.feature-body p  { font-size: .85rem; color: var(--gray); margin: 0; line-height: 1.6; }

/* ── 작동 방식 타임라인 ──────────────────────────────────── */
.how-step {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid #eee;
  position: relative;
}
.how-step:last-child { border-bottom: none; }
.step-num {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--red); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 900;
}
.step-body h5 { font-size: 1rem; font-weight: 700; margin-bottom: 5px; }
.step-body p  { font-size: .875rem; color: var(--gray); margin: 0; line-height: 1.7; }

/* ── 장비/제품 카드 ──────────────────────────────────────── */
.equipment-card {
  border: 1px solid #eee;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}
.equipment-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--red); }
.equipment-img {
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: #fff;
}
.equipment-body { padding: 20px; }
.equipment-body h5 { font-size: .95rem; font-weight: 700; margin-bottom: 8px; }
.equipment-body p  { font-size: .85rem; color: var(--gray); margin-bottom: 12px; line-height: 1.6; }
.equipment-specs { display: flex; flex-wrap: wrap; gap: 6px; }
.spec-badge {
  display: inline-block;
  background: var(--bg-light); color: var(--dark);
  font-size: .75rem; font-weight: 600;
  padding: 3px 10px; border-radius: 30px;
  border: 1px solid #ddd;
}

/* ── 업종 탭 ────────────────────────────────────────────── */
.industry-tabs .nav-link {
  font-size: .9rem; font-weight: 600; color: var(--gray);
  padding: 10px 18px; border-radius: var(--radius-sm);
  border: 1.5px solid #ddd; margin-right: 8px; margin-bottom: 8px;
  transition: var(--transition);
  background: #fff;
}
.industry-tabs .nav-link.active,
.industry-tabs .nav-link:hover {
  background: var(--red); color: #fff; border-color: var(--red);
}
.industry-tab-content {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 32px;
  margin-top: 16px;
}
.industry-tab-content h5 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.industry-tab-content p  { font-size: .9rem; color: var(--gray); line-height: 1.8; }
.industry-solution-list  { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.industry-solution-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: .875rem;
}
.industry-solution-list li i { color: var(--red); }

/* ── 사양 비교표 (CCTV) ──────────────────────────────────── */
.spec-table { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.spec-table table { margin: 0; }
.spec-table th { background: var(--navy); color: #fff; font-size: .875rem; font-weight: 600; text-align: center; }
.spec-table td { font-size: .875rem; text-align: center; vertical-align: middle; }
.spec-table td:first-child { text-align: left; font-weight: 600; }
.spec-table tr:nth-child(even) td { background: var(--bg-light); }
.badge-check  { color: #27ae60; font-size: 1rem; }
.badge-cross  { color: #adb5bd; font-size: 1rem; }

/* ── 패키지 카드 ────────────────────────────────────────── */
.package-card {
  border: 2px solid #eee;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  position: relative;
}
.package-card:hover,
.package-card.popular { border-color: var(--red); box-shadow: 0 8px 30px rgba(192,57,43,.15); }
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: #fff;
  font-size: .78rem; font-weight: 700; padding: 4px 16px; border-radius: 30px;
  white-space: nowrap;
}
.package-name { font-size: 1rem; font-weight: 700; color: var(--gray); margin-bottom: 8px; }
.package-price { margin-bottom: 4px; }
.package-price .price-from { font-size: .8rem; color: var(--gray); }
.package-price .price-val  {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900; color: var(--red); line-height: 1.1;
}
.package-price .price-unit { font-size: .8rem; color: var(--gray); }
.package-desc { font-size: .85rem; color: var(--gray); margin-bottom: 20px; }
.package-divider { border: none; border-top: 1px solid #eee; margin: 16px 0; }
.package-features { text-align: left; }
.package-features li {
  display: flex; align-items: center; gap: 8px;
  font-size: .875rem; padding: 5px 0;
}
.package-features li i { font-size: .8rem; }
.feat-yes  { color: var(--red); }
.feat-no   { color: #ddd; }
.btn-package {
  display: block; width: 100%;
  background: var(--red); color: #fff;
  font-weight: 700; font-size: .9rem;
  padding: 12px; border-radius: var(--radius-sm);
  margin-top: 20px; transition: var(--transition);
}
.btn-package:hover { background: var(--red-dark); color: #fff; }
.btn-package-outline {
  background: #fff; color: var(--red);
  border: 2px solid var(--red);
}
.btn-package-outline:hover { background: var(--red); color: #fff; }

/* ── FAQ 아코디언 ────────────────────────────────────────── */
.faq-section .accordion-button {
  font-size: .95rem; font-weight: 600; color: var(--dark);
  background: #fff; padding: 18px 20px;
}
.faq-section .accordion-button:not(.collapsed) {
  color: var(--red); background: #fdeded;
  box-shadow: none;
}
.faq-section .accordion-button::after { filter: none; }
.faq-section .accordion-button:not(.collapsed)::after {
  filter: invert(29%) sepia(95%) saturate(1000%) hue-rotate(342deg) brightness(90%) contrast(110%);
}
.faq-section .accordion-body {
  font-size: .9rem; color: var(--gray); line-height: 1.8;
  padding: 16px 20px 20px;
}
.faq-section .accordion-item {
  border: 1px solid #eee; border-radius: var(--radius-sm) !important;
  margin-bottom: 8px; overflow: hidden;
}

/* ── 서비스 CTA ──────────────────────────────────────────── */
.service-cta {
  background: var(--navy);
  padding: 64px 0;
  position: relative; overflow: hidden;
}
.service-cta::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(192,57,43,.2), transparent 70%);
  border-radius: 50%;
}
.service-cta h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; color: #fff; }
.service-cta p  { color: rgba(255,255,255,.65); font-size: 1rem; margin-top: 8px; }

/* ── 섹션 구분 ───────────────────────────────────────────── */
.section-alt { background: var(--bg-light); }

/* ================================================================
   요금제 비교 (pricing) — 추가 스타일
================================================================ */

/* ── 탭 네비게이션 ───────────────────────────────────────────── */
.pricing-tab-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.ptab-btn {
  padding: 10px 24px;
  border: 2px solid var(--border);
  border-radius: 50px;
  background: #fff;
  color: var(--text);
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: all .25s;
}
.ptab-btn:hover { border-color: var(--red); color: var(--red); }
.ptab-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 4px 16px rgba(192,57,43,.3);
}

/* ── 요금 카드 ───────────────────────────────────────────────── */
.pricing-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  transition: box-shadow .25s, transform .25s;
  position: relative;
}
.pricing-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
  transform: translateY(-4px);
}
.pricing-card.popular {
  border-color: var(--red);
  box-shadow: 0 8px 32px rgba(192,57,43,.18);
}
.pricing-popular-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--red);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}
.pricing-header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid rgba(255,255,255,.15);
  color: #fff;
}
.pricing-eng    { font-size: .78rem; font-weight: 700; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .08em; }
.pricing-name   { font-size: 1.25rem; font-weight: 700; margin: 4px 0 6px; color: #fff; }
.pricing-target { font-size: .85rem; color: rgba(255,255,255,.75); line-height: 1.5; }
.pricing-tier { font-size: .78rem; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: .08em; }
.pricing-desc { font-size: .85rem; color: var(--gray); line-height: 1.5; }
.pricing-body { padding: 24px 28px; }
.pricing-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 20px;
}
.pricing-currency { font-size: 1rem; font-weight: 700; color: var(--navy); }
.pricing-amount   { font-size: 2.4rem; font-weight: 900; color: var(--navy); line-height: 1; }
.pricing-unit     { font-size: .85rem; color: var(--gray); }
.pricing-features { list-style: none; padding: 0; margin: 0 0 24px; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 0;
  font-size: .88rem;
  color: var(--text);
  border-bottom: 1px dashed var(--border);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i { color: var(--red); margin-top: 2px; flex-shrink: 0; }
.pricing-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: background .2s;
  font-size: .92rem;
}
.pricing-btn:hover { background: var(--red); color: #fff; }
.pricing-card.popular .pricing-btn { background: var(--red); }
.pricing-card.popular .pricing-btn:hover { background: #a93226; }

/* ── 번들 카드 (통합패키지) ─────────────────────────────────── */
.bundle-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  height: 100%;
  position: relative;
  transition: box-shadow .25s, transform .25s;
}
.bundle-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
  transform: translateY(-4px);
}
.bundle-card.popular { border-color: var(--red); }
.bundle-save-badge {
  display: inline-block;
  background: #e8f5e9;
  color: #27ae60;
  font-size: .78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.bundle-card h4 { font-size: 1.2rem; font-weight: 700; margin-bottom: 4px; }
.bundle-card .bundle-price {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin: 12px 0 4px;
}
.bundle-price-sub { font-size: .8rem; color: var(--gray); margin-bottom: 16px; }
.bundle-includes { list-style: none; padding: 0; margin: 0 0 20px; }
.bundle-includes li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  padding: 5px 0;
  border-bottom: 1px dashed var(--border);
}
.bundle-includes li:last-child { border-bottom: none; }
.bundle-includes li i { color: var(--red); }

/* ── 애드온 ──────────────────────────────────────────────────── */
.pricing-addon-wrap {
  margin-top: 40px;
  background: var(--bg-light);
  border-radius: 12px;
  padding: 28px;
}
.pricing-addon-wrap h5 { font-weight: 700; margin-bottom: 16px; }
.addon-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.addon-icon {
  width: 42px; height: 42px;
  border-radius: 8px;
  background: rgba(192,57,43,.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.addon-name { font-weight: 700; font-size: .88rem; }
.addon-price { font-size: .8rem; color: var(--red); font-weight: 700; margin-top: 2px; }

/* ── 견적 계산기 ─────────────────────────────────────────────── */
.calc-wrap {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.1);
}
.calc-input-panel {
  padding: 36px 32px;
  border-right: 1px solid var(--border);
}
.calc-panel-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--navy);
}
.calc-section { margin-bottom: 24px; }
.calc-label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 8px;
}
.calc-label .required { color: var(--red); }

/* 서비스 선택 그리드 */
.calc-service-grid { display: flex; gap: 10px; flex-wrap: wrap; }
.calc-service-item {
  flex: 1;
  min-width: 90px;
  border: 2px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: all .2s;
  overflow: hidden;
}
.calc-service-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.calc-service-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 8px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gray);
  text-align: center;
  transition: all .2s;
}
.calc-service-content i { font-size: 1.3rem; }
.calc-service-item.active,
.calc-service-item:has(input:checked) {
  border-color: var(--red);
  background: rgba(192,57,43,.05);
}
.calc-service-item.active .calc-service-content,
.calc-service-item:has(input:checked) .calc-service-content {
  color: var(--red);
}

/* 규모 라디오 그리드 */
.calc-size-grid { display: flex; gap: 10px; flex-wrap: wrap; }
.calc-size-item {
  flex: 1;
  min-width: 80px;
  border: 2px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: all .2s;
}
.calc-size-item input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.calc-size-content {
  padding: 12px 8px;
  text-align: center;
}
.calc-size-name { font-weight: 700; font-size: .88rem; }
.calc-size-sub  { font-size: .75rem; color: var(--gray); margin-top: 2px; }
.calc-size-item:has(input:checked) {
  border-color: var(--red);
  background: rgba(192,57,43,.05);
}
.calc-size-item:has(input:checked) .calc-size-name { color: var(--red); }

/* 채널 카운터 */
.calc-channels-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.calc-btn-minus,
.calc-btn-plus {
  width: 40px; height: 40px;
  border: 2px solid var(--border);
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  font-size: .9rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.calc-btn-minus:hover, .calc-btn-plus:hover {
  border-color: var(--red);
  color: var(--red);
}
.calc-btn-minus:disabled, .calc-btn-plus:disabled {
  opacity: .35;
  cursor: not-allowed;
}
.calc-channel-display {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--navy);
  min-width: 60px;
  justify-content: center;
}
.calc-channel-display span:last-child { font-size: .85rem; font-weight: 400; }

/* 관제 방식 라디오 */
.calc-control-grid { display: flex; gap: 10px; flex-wrap: wrap; }
.calc-control-item {
  flex: 1;
  min-width: 130px;
  border: 2px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  padding: 12px 16px;
  transition: all .2s;
}
.calc-control-item input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.calc-control-item div {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-weight: 700;
  font-size: .88rem;
}
.calc-control-item div span { font-size: .78rem; color: var(--gray); font-weight: 400; }
.calc-control-item:has(input:checked) {
  border-color: var(--red);
  background: rgba(192,57,43,.05);
  color: var(--red);
}

/* ── 결과 패널 ───────────────────────────────────────────────── */
.calc-result-panel {
  background: var(--navy);
  padding: 36px 32px;
  height: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
}
.calc-result-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  opacity: .85;
}
.calc-result-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,.4);
  text-align: center;
}
.calc-result-empty i { font-size: 2.8rem; }
.calc-result-empty p { font-size: .9rem; line-height: 1.6; }
.calc-result-detail { flex: 1; display: flex; flex-direction: column; }
.calc-result-items { flex: 1; }

.calc-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  gap: 8px;
}
.calc-item-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  color: rgba(255,255,255,.85);
}
.calc-item-name i { color: var(--red); width: 16px; text-align: center; }
.calc-item-price { text-align: right; font-size: .85rem; font-weight: 600; }
.calc-item-install { font-size: .75rem; color: rgba(255,255,255,.5); font-weight: 400; }
.discount-item .calc-item-name { color: #2ecc71; }

.calc-total-wrap {
  margin-top: 16px;
}
.calc-total-label {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 4px;
}
.calc-total-amount {
  display: flex;
  align-items: baseline;
  gap: 3px;
  font-weight: 900;
}
.calc-total-amount span:first-child { font-size: 1.2rem; }
.calc-total-amount span:nth-child(2) { font-size: 2.6rem; line-height: 1; }
.calc-total-amount span:last-child   { font-size: .9rem; color: rgba(255,255,255,.65); }

.calc-install-total {
  display: flex;
  justify-content: space-between;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed rgba(255,255,255,.2);
}
.calc-bundle-tip {
  background: rgba(46,204,113,.15);
  border: 1px solid rgba(46,204,113,.3);
  color: #2ecc71;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: .8rem;
  margin-top: 12px;
}
.calc-notice {
  font-size: .75rem;
  color: rgba(255,255,255,.35);
  margin-top: 12px;
  line-height: 1.6;
}
.calc-inquiry-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding: 14px;
  background: var(--red);
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s;
  font-size: .92rem;
}
.calc-inquiry-btn:hover { background: #a93226; color: #fff; }

/* ── 혜택 카드 ───────────────────────────────────────────────── */
.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  height: 100%;
  transition: box-shadow .2s;
}
.benefit-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.08); }
.benefit-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: rgba(192,57,43,.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.benefit-card h5 { font-size: .95rem; font-weight: 700; margin-bottom: 4px; }
.benefit-card p  { font-size: .83rem; color: var(--gray); margin: 0; line-height: 1.5; }

/* ── 반응형 ──────────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .calc-input-panel { border-right: none; border-bottom: 1px solid var(--border); }
  .calc-result-panel { min-height: 320px; }
}
@media (max-width: 575.98px) {
  .pricing-tab-nav { gap: 6px; }
  .ptab-btn { padding: 8px 16px; font-size: .82rem; }
  .calc-input-panel { padding: 24px 20px; }
  .calc-result-panel { padding: 24px 20px; }
  .pricing-body { padding: 20px; }
  .pricing-header { padding: 20px; }
}

/* ================================================================
   FAQ 페이지
================================================================ */

/* ── 히어로 ─────────────────────────────────────────────────── */
.faq-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #2c3e6e 100%);
  padding: 80px 20px 60px;
  position: relative;
  overflow: hidden;
}
.faq-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(192,57,43,.25), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.faq-hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(192,57,43,.2);
  color: #e88;
  border: 1px solid rgba(192,57,43,.35);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.faq-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}
.faq-hero p {
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ── 검색 박스 ──────────────────────────────────────────────── */
.faq-search-wrap {
  max-width: 560px;
  margin: 0 auto;
}
.faq-search-box {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  padding: 0 20px;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,.25);
}
.faq-search-box i { color: var(--gray); font-size: .95rem; }
.faq-search-box input {
  flex: 1;
  border: none;
  outline: none;
  padding: 16px 0;
  font-size: .95rem;
  font-family: var(--font-base);
  color: var(--text);
  background: transparent;
}
.faq-search-box input::placeholder { color: #bbb; }
.faq-search-box button {
  background: none;
  border: none;
  color: var(--gray);
  cursor: pointer;
  padding: 4px;
  font-size: .9rem;
  display: flex;
  align-items: center;
  transition: color .2s;
}
.faq-search-box button:hover { color: var(--red); }
.faq-search-count {
  text-align: center;
  color: rgba(255,255,255,.65);
  font-size: .82rem;
  margin-top: 10px;
}

/* ── 카테고리 탭 ─────────────────────────────────────────────── */
.faq-cat-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.faq-cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border: 2px solid var(--border);
  border-radius: 50px;
  background: #fff;
  color: var(--gray);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .22s;
}
.faq-cat-btn:hover { border-color: var(--red); color: var(--red); }
.faq-cat-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 4px 14px rgba(192,57,43,.28);
}
.faq-cat-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  background: rgba(0,0,0,.1);
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
}
.faq-cat-btn.active .faq-cat-count { background: rgba(255,255,255,.25); }

/* ── FAQ 그룹 ────────────────────────────────────────────────── */
.faq-group { margin-bottom: 32px; }
.faq-group-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0 14px;
  font-weight: 700;
  font-size: .9rem;
  color: var(--navy);
  border-bottom: 2px solid var(--border);
  margin-bottom: 4px;
}
.faq-group-header i { color: var(--red); font-size: 1rem; }
.faq-group-count {
  margin-left: auto;
  font-size: .78rem;
  color: var(--gray);
  font-weight: 400;
}

/* ── 아코디언 오버라이드 ─────────────────────────────────────── */
.faq-list .accordion-item {
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0 !important;
  background: transparent;
}
.faq-list .accordion-button {
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: .95rem;
  padding: 18px 48px 18px 0;
  box-shadow: none;
  position: relative;
  gap: 12px;
}
.faq-list .accordion-button::before {
  content: 'Q';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  background: rgba(192,57,43,.08);
  color: var(--red);
  border-radius: 6px;
  font-size: .8rem;
  font-weight: 900;
  flex-shrink: 0;
}
.faq-list .accordion-button::after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background-size: 14px;
  background-position: center;
}
.faq-list .accordion-button:not(.collapsed) {
  color: var(--red);
  background: transparent;
}
.faq-list .accordion-button:not(.collapsed)::before {
  background: var(--red);
  color: #fff;
}
.faq-list .accordion-body {
  padding: 4px 0 20px 40px;
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.75;
}
.faq-list .accordion-body strong { color: var(--navy); }

/* 검색 결과 없음 */
.faq-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray);
}
.faq-empty i { font-size: 3rem; opacity: .35; display: block; margin-bottom: 16px; }
.faq-empty p { font-size: .95rem; line-height: 1.7; }

/* ── 추가 문의 카드 ──────────────────────────────────────────── */
.faq-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.faq-contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  transition: box-shadow .25s, transform .25s;
}
.faq-contact-card:hover {
  box-shadow: 0 10px 36px rgba(0,0,0,.1);
  transform: translateY(-4px);
}
.faq-contact-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(192,57,43,.08);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
}
.faq-contact-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.faq-contact-card p  { font-size: .85rem; color: var(--gray); margin-bottom: 16px; line-height: 1.5; }
.faq-contact-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  transition: color .2s;
}
.faq-contact-link:hover { color: #a93226; }
.faq-contact-link span { font-size: .78rem; color: var(--gray); font-weight: 400; }

/* ── 반응형 ──────────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .faq-contact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767.98px) {
  .faq-hero { padding: 60px 20px 48px; }
  .faq-cat-nav { gap: 6px; }
  .faq-cat-btn { padding: 7px 14px; font-size: .8rem; }
}
@media (max-width: 575.98px) {
  .faq-contact-grid { grid-template-columns: 1fr; }
  .faq-list .accordion-button { font-size: .88rem; padding-right: 36px; }
}

/* ================================================================
   고객 사례 (case) 페이지
================================================================ */

/* ── 목록 히어로 ────────────────────────────────────────────── */
.case-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #2c3e6e 100%);
  padding: 80px 20px 60px;
  position: relative;
  overflow: hidden;
}
.case-hero::before {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(192,57,43,.2), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.case-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  margin: 8px 0 12px;
}
.case-hero p {
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  line-height: 1.7;
}
.case-hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.case-stat-item { text-align: left; }
.case-stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.case-stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── 업종 필터 ──────────────────────────────────────────────── */
.case-filter-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.case-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border: 2px solid var(--border);
  border-radius: 50px;
  background: #fff;
  color: var(--gray);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .22s;
}
.case-filter-btn:hover { border-color: var(--red); color: var(--red); }
.case-filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.case-filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: rgba(0,0,0,.12);
  border-radius: 50px;
  font-size: .7rem;
  font-weight: 700;
}
.case-filter-btn.active .case-filter-count { background: rgba(255,255,255,.2); }

/* ── 사례 카드 ──────────────────────────────────────────────── */
.case-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  transition: box-shadow .25s, transform .25s;
}
.case-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
  transform: translateY(-4px);
}
.case-thumb {
  height: 180px;
  position: relative;
  overflow: hidden;
}
.case-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.case-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55), transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.case-result-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
}
.case-ind-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}
.case-card-body { padding: 20px; }
.case-service-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.case-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
}
.tag-security { background: rgba(192,57,43,.1); color: var(--red); }
.tag-cctv     { background: rgba(41,128,185,.1); color: #2980b9; }
.tag-control  { background: rgba(26,26,46,.1);  color: var(--navy); }
.case-card-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--navy);
}
.case-card-location {
  font-size: .8rem;
  color: var(--gray);
  margin-bottom: 10px;
}
.case-card-period {
  font-size: .75rem;
  color: #bbb;
}
.case-card-summary {
  font-size: .83rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.case-read-more {
  font-size: .85rem;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}
.case-read-more:hover { color: #a93226; gap: 10px; }

/* ── 도입 프로세스 스텝 카드 ──────────────────────────────── */
.case-step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  height: 100%;
  text-align: center;
  transition: box-shadow .25s;
}
.case-step-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.08); }
.case-step-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: rgba(192,57,43,.12);
  line-height: 1;
  margin-bottom: 12px;
}
.case-step-icon {
  width: 50px; height: 50px;
  background: rgba(192,57,43,.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  font-size: 1.2rem;
  margin: 0 auto 14px;
}
.case-step-card h4 { font-size: .95rem; font-weight: 700; margin-bottom: 6px; }
.case-step-card p  { font-size: .82rem; color: var(--gray); line-height: 1.55; margin: 0; }

/* ================================================================
   고객 사례 상세 (case/view)
================================================================ */

/* ── 상세 히어로 ────────────────────────────────────────────── */
.case-view-hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.case-view-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
}
.case-view-hero .container { position: relative; z-index: 1; }
.case-view-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.case-ind-tag-lg {
  background: rgba(255,255,255,.2);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}
.case-view-period { font-size: .8rem; color: rgba(255,255,255,.5); }
.case-view-hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 6px;
}
.case-view-location { font-size: .9rem; color: rgba(255,255,255,.6); }
.case-result-hero-card {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  color: #fff;
}
.case-result-hero-icon {
  width: 56px; height: 56px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 12px;
}
.case-result-hero-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.55);
  margin-bottom: 6px;
}
.case-result-hero-text {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.3;
}

/* ── 핵심 지표 바 ───────────────────────────────────────────── */
.case-numbers-bar {
  background: var(--navy);
  padding: 28px 0;
}
.case-numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.case-number-val {
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}
.case-number-label {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ── 본문 블록 ──────────────────────────────────────────────── */
.case-section-block {
  margin-bottom: 36px;
}
.case-section-tag {
  display: inline-flex;
  align-items: center;
  font-size: .82rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 6px;
  margin-bottom: 14px;
}
.case-section-tag.challenge { background: rgba(231,76,60,.08);  color: #e74c3c; }
.case-section-tag.solution  { background: rgba(39,174,96,.08);  color: #27ae60; }
.case-section-tag.result    { background: rgba(41,128,185,.08); color: #2980b9; }
.case-section-block p {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--text);
  margin: 0;
}

/* ── 인용구 ─────────────────────────────────────────────────── */
.case-quote {
  background: var(--bg-light);
  border-left: 4px solid var(--red);
  border-radius: 0 12px 12px 0;
  padding: 24px 28px;
  margin: 32px 0;
  position: relative;
}
.case-quote-icon {
  font-size: 2rem;
  color: var(--red);
  opacity: .25;
  position: absolute;
  top: 14px; left: 16px;
}
.case-quote p {
  font-size: .95rem;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
  margin-bottom: 10px;
  padding-left: 8px;
}
.case-quote cite {
  font-size: .82rem;
  color: var(--gray);
  font-style: normal;
}

/* ── 사이드바 ───────────────────────────────────────────────── */
.case-sidebar {
  background: var(--bg-light);
  border-radius: 14px;
  padding: 28px;
  position: sticky;
  top: 90px;
}
.case-sidebar h5 {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray);
  margin-bottom: 14px;
}
.case-sidebar-services,
.case-sidebar-tips {
  list-style: none;
  padding: 0;
  margin: 0;
}
.case-sidebar-services li,
.case-sidebar-tips li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: .88rem;
  border-bottom: 1px dashed var(--border);
}
.case-sidebar-services li:last-child,
.case-sidebar-tips li:last-child { border-bottom: none; }
.case-sidebar-services li i { color: var(--red); width: 16px; }
.case-sidebar-tips li i { color: #27ae60; width: 16px; }
.case-sidebar-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding: 13px;
  background: var(--red);
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  font-size: .88rem;
  text-decoration: none;
  transition: background .2s;
}
.case-sidebar-cta:hover { background: #a93226; color: #fff; }
.case-sidebar-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  padding: 12px;
  background: #fff;
  border: 2px solid var(--border);
  color: var(--navy);
  border-radius: 10px;
  font-weight: 700;
  font-size: .88rem;
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.case-sidebar-tel:hover { border-color: var(--navy); color: var(--navy); }

/* ── 연관 사례 카드 ─────────────────────────────────────────── */
.case-related-card {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: box-shadow .25s, transform .25s;
}
.case-related-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.1);
  transform: translateY(-3px);
  color: inherit;
}
.case-related-thumb {
  height: 120px;
}
.case-related-body { padding: 16px; }
.case-related-body h4 { font-size: .9rem; font-weight: 700; margin: 8px 0 6px; }
.case-related-result {
  font-size: .78rem;
  color: var(--red);
  font-weight: 600;
  margin: 0;
}

/* ── 반응형 ─────────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .case-numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .case-sidebar { position: static; margin-top: 32px; }
}
@media (max-width: 767.98px) {
  .case-hero { padding: 60px 20px 48px; }
  .case-hero-stats { gap: 20px; }
  .case-stat-num { font-size: 1.6rem; }
  .case-view-hero { padding: 60px 0 48px; }
}
@media (max-width: 575.98px) {
  .case-filter-nav { gap: 6px; }
  .case-filter-btn { padding: 7px 12px; font-size: .78rem; }
  .case-numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ================================================================
   견적 신청 (inquiry) 페이지
================================================================ */

/* ── 히어로 ─────────────────────────────────────────────────── */
.inq-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #16213e 100%);
  padding: 72px 20px 52px;
  text-align: center;
}
.inq-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  margin: 8px 0 12px;
}
.inq-hero p { color: rgba(255,255,255,.65); font-size: 1rem; }
.inq-hero-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
.inq-hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.15);
}
.inq-hero-badges span i { color: #2ecc71; }

/* ── 폼 영역 ─────────────────────────────────────────────────── */
.inq-form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
}
.inq-form-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--navy);
}
.inq-step { margin-bottom: 28px; }
.inq-step-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: 14px;
  color: var(--navy);
}
.inq-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  font-size: .78rem;
  font-weight: 900;
  flex-shrink: 0;
}
.required { color: var(--red); }

/* 서비스 선택 그리드 */
.inq-service-grid { display: flex; flex-direction: column; gap: 10px; }
.inq-service-item {
  border: 2px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: all .2s;
}
.inq-service-item input[type="checkbox"] { display: none; }
.inq-service-content {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
}
.inq-service-content i {
  font-size: 1.3rem;
  color: var(--gray);
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}
.inq-svc-name { font-weight: 700; font-size: .9rem; }
.inq-svc-sub  { font-size: .78rem; color: var(--gray); margin-top: 2px; }
.inq-service-item.active { border-color: var(--red); background: rgba(192,57,43,.04); }
.inq-service-item.active .inq-service-content i,
.inq-service-item.active .inq-svc-name { color: var(--red); }

/* 개인정보 */
.inq-privacy-wrap {
  background: var(--bg-light);
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 20px;
}
.privacy-toggle-btn {
  background: none;
  border: none;
  color: var(--red);
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0 0 0 8px;
}
.privacy-detail {
  margin-top: 12px;
  font-size: .82rem;
  color: var(--gray);
}
.privacy-table { width: 100%; border-collapse: collapse; margin-bottom: 8px; }
.privacy-table th, .privacy-table td {
  padding: 6px 10px;
  border: 1px solid var(--border);
  font-size: .8rem;
}
.privacy-table th { background: #f8f9fa; font-weight: 600; width: 100px; }
.privacy-detail p { font-size: .78rem; margin: 6px 0 0; }

/* 제출 버튼 */
.btn-inq-submit {
  padding: 16px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}
.btn-inq-submit:hover { background: #a93226; }

/* ── 완료 화면 ───────────────────────────────────────────────── */
.inq-success-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px 36px;
  text-align: center;
}
.inq-success-icon {
  font-size: 4rem;
  color: #27ae60;
  margin-bottom: 16px;
}
.inq-success-wrap h2 { font-size: 1.6rem; font-weight: 900; margin-bottom: 12px; }
.inq-success-wrap p  { color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
.inq-success-info {
  background: var(--bg-light);
  border-radius: 10px;
  padding: 16px 20px;
  display: inline-block;
  text-align: left;
  min-width: 240px;
  line-height: 2;
  font-size: .9rem;
}

/* ── 사이드 카드 ─────────────────────────────────────────────── */
.inq-side-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
}
.inq-side-card h5 {
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--navy);
}
.inq-process-list {
  padding-left: 20px;
  margin: 0;
}
.inq-process-list li {
  font-size: .85rem;
  color: var(--gray);
  padding: 4px 0;
  line-height: 1.5;
}
.inq-process-list li strong { color: var(--text); }
.inq-tel-link {
  display: block;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--red);
  text-decoration: none;
  margin-bottom: 2px;
}
.inq-tel-link:hover { color: #a93226; }
.inq-benefit-list { list-style: none; padding: 0; margin: 0; }
.inq-benefit-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: .87rem;
  border-bottom: 1px dashed var(--border);
}
.inq-benefit-list li:last-child { border-bottom: none; }
.inq-benefit-list li i { color: #27ae60; }

/* ── 반응형 ──────────────────────────────────────────────────── */
@media (max-width: 575.98px) {
  .inq-form-wrap { padding: 24px 18px; }
  .inq-success-wrap { padding: 36px 20px; }
}

/* ================================================================
   공지사항 페이지
================================================================ */
.notice-list-wrap {
  max-width: 860px;
  margin: 0 auto;
}
.notice-table {
  width: 100%;
  border-collapse: collapse;
}
.notice-table thead th {
  padding: 12px 14px;
  border-top: 2px solid var(--navy);
  border-bottom: 1px solid var(--border);
  font-size: .82rem;
  font-weight: 700;
  color: var(--gray);
  text-align: left;
}
.notice-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.notice-table tbody tr:hover td { background: var(--bg-light); }
.notice-table tbody td { padding: 14px; vertical-align: middle; }
.notice-pinned td { background: #fffaf9; }
.notice-title-link {
  color: var(--text);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 500;
  transition: color .2s;
}
.notice-title-link:hover { color: var(--red); }
.notice-pinned .notice-title-link { font-weight: 700; }
.notice-num   { font-size: .82rem; color: var(--gray); }
.notice-date  { font-size: .8rem; color: var(--gray); white-space: nowrap; }
.notice-views { font-size: .8rem; color: #bbb; text-align: center; }

/* 페이지네이션 */
.notice-pagination { display: flex; gap: 4px; justify-content: center; }
.notice-page-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 34px; height: 34px; padding: 0 8px;
  border: 1px solid var(--border); border-radius: 6px;
  font-size: .85rem; color: var(--text); text-decoration: none;
  transition: all .2s;
}
.notice-page-btn:hover { border-color: var(--red); color: var(--red); }
.notice-page-btn.active { background: var(--red); border-color: var(--red); color: #fff; }

/* 상세 */
.notice-view-wrap { max-width: 860px; margin: 0 auto; }
.notice-view-header {
  padding-bottom: 20px;
  border-bottom: 2px solid var(--navy);
  margin-bottom: 32px;
}
.notice-pin-badge {
  display: inline-block;
  background: var(--red); color: #fff;
  font-size: .72rem; font-weight: 700;
  padding: 3px 10px; border-radius: 4px;
  margin-bottom: 10px;
}
.notice-view-header h1 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.notice-view-meta {
  display: flex; gap: 20px;
  font-size: .82rem; color: var(--gray);
}
.notice-view-body {
  min-height: 200px;
  font-size: .95rem;
  line-height: 1.85;
  color: var(--text);
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.notice-view-body p { margin-bottom: 12px; }

/* 이전/다음 */
.notice-nav { margin-top: 0; }
.notice-nav-item {
  display: flex; align-items: center; gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: .88rem;
}
.notice-nav-label {
  min-width: 50px; font-weight: 700;
  color: var(--gray); font-size: .78rem;
  text-transform: uppercase; letter-spacing: .04em;
}
.notice-nav-item a { color: var(--text); text-decoration: none; transition: color .2s; }
.notice-nav-item a:hover { color: var(--red); }

@media (max-width: 575.98px) {
  .notice-table thead th:first-child,
  .notice-table tbody td:first-child,
  .notice-views { display: none; }
}
