/* =========================================================
   중고차수출 사용자 스타일 — 반응형 (모바일 퍼스트)
   ========================================================= */
:root {
  --navy-900: #0b1220;
  --navy-800: #101c33;
  --navy-700: #17264a;
  --blue: #2f6bff;
  --blue-dark: #1d4ed8;
  --amber: #ffb020;
  --green: #22c55e;
  --text: #1e293b;
  --text-sub: #64748b;
  --line: #e2e8f0;
  --bg-gray: #f5f7fb;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(15, 23, 42, .08);
  --header-h: 60px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 10px); }
body {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 15px; }

.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 18px; }
.pc-br { display: none; }

/* ---------- 스크롤 리빌 ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- 헤더 ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(11, 18, 32, .92);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.logo { display: flex; align-items: center; gap: 8px; color: #fff; }
.logo-mark { width: 30px; height: 30px; display: grid; place-items: center; background: linear-gradient(135deg, var(--blue), #6d9bff); border-radius: 9px; color: #fff; }
.logo-mark svg { width: 19px; height: 19px; }
.logo-text { font-weight: 800; font-size: 17px; letter-spacing: -.02em; }
.gnb { display: none; gap: 28px; }
.gnb a { color: #cbd5e1; font-size: 15px; font-weight: 500; transition: color .2s; }
.gnb a:hover { color: #fff; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-call {
  display: flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff; font-weight: 700; font-size: 14px;
  padding: 8px 14px; border-radius: 99px;
  box-shadow: 0 4px 14px rgba(47, 107, 255, .35);
}
.header-call svg { width: 15px; height: 15px; }
.menu-btn { display: flex; flex-direction: column; justify-content: center; gap: 4.5px; width: 38px; height: 38px; background: transparent; border: 0; padding: 8px; }
.menu-btn span { display: block; height: 2px; background: #e2e8f0; border-radius: 2px; transition: .25s; }
.menu-btn.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-btn.is-open span:nth-child(2) { opacity: 0; }
.menu-btn.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-menu {
  display: none; flex-direction: column; padding: 8px 18px 16px;
  background: rgba(11, 18, 32, .97); border-top: 1px solid rgba(255,255,255,.06);
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a { color: #e2e8f0; padding: 12px 4px; font-size: 15px; border-bottom: 1px solid rgba(255,255,255,.05); }
.mobile-menu .mm-call { color: var(--amber); font-weight: 700; border-bottom: 0; }

/* ---------- 히어로 ---------- */
.hero { position: relative; padding: calc(var(--header-h) + 40px) 0 54px; overflow: hidden; color: #fff; }
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(800px 400px at 85% 10%, rgba(47, 107, 255, .28), transparent 60%),
    radial-gradient(600px 400px at 5% 90%, rgba(255, 176, 32, .12), transparent 55%),
    linear-gradient(160deg, var(--navy-900) 20%, var(--navy-800) 60%, var(--navy-700));
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: url('../img/hero_car.svg') no-repeat right -80px bottom -20px / 620px auto;
  opacity: .5; pointer-events: none;
}
.hero-inner { display: flex; flex-direction: column; gap: 30px; }
.hero-badge {
  display: inline-block; align-self: flex-start;
  background: rgba(255, 255, 255, .1); border: 1px solid rgba(255,255,255,.16);
  color: #dbeafe; font-size: 13px; font-weight: 600;
  padding: 6px 14px; border-radius: 99px; margin-bottom: 16px;
}
.hero h1 { font-size: 34px; line-height: 1.25; font-weight: 800; letter-spacing: -.02em; }
.hero h1 em { font-style: normal; color: var(--amber); }
.hero-sub { margin-top: 14px; color: #b6c2d6; font-size: 16px; }
.hero-sub b { color: #fff; }
.hero-points { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 9px; }
.hero-points li { display: flex; align-items: center; gap: 9px; color: #d7e0ee; font-size: 15px; }
.hero-points svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; }
.hero-points b { color: var(--amber); }
.hero-call { margin-top: 26px; display: flex; flex-direction: column; gap: 6px; }
.hero-call a {
  display: inline-flex; align-items: center; gap: 10px; align-self: flex-start;
  font-size: 26px; font-weight: 800; color: #fff; letter-spacing: .01em;
}
.hero-call a svg { width: 24px; height: 24px; color: var(--amber); }
.hero-call span { color: #8fa1bb; font-size: 13px; }

/* ---------- 견적 폼 ---------- */
.quote-form {
  background: #fff; border-radius: 18px; padding: 24px 20px;
  box-shadow: 0 24px 60px rgba(2, 8, 20, .45);
  color: var(--text);
}
.qf-head { display: flex; flex-direction: column; gap: 3px; margin-bottom: 16px; }
.qf-head strong { font-size: 19px; font-weight: 800; letter-spacing: -.01em; }
.qf-head span { font-size: 13px; color: var(--text-sub); }
.qf-head span b { color: var(--blue); }
.qf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 10px; }
.qf-field { display: flex; flex-direction: column; gap: 5px; }
.qf-field.qf-wide { grid-column: 1 / -1; }
.qf-field label { font-size: 13px; font-weight: 600; color: #475569; }
.qf-field label i { color: #ef4444; font-style: normal; }
.qf-field input, .qf-field select {
  height: 48px; border: 1.5px solid var(--line); border-radius: 11px;
  padding: 0 14px; background: #f8fafc; transition: border-color .2s, background .2s;
  appearance: none; -webkit-appearance: none;
}
.qf-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.qf-field input:focus, .qf-field select:focus { outline: none; border-color: var(--blue); background: #fff; }
.qf-field input.is-error { border-color: #ef4444; background: #fef2f2; }
.qf-agree { display: flex; align-items: center; gap: 7px; margin: 14px 0 4px; font-size: 13px; color: #475569; flex-wrap: wrap; }
.qf-agree input { width: 17px; height: 17px; accent-color: var(--blue); }
.qf-view { background: none; border: 0; color: var(--blue); font-size: 12.5px; padding: 2px; }
.qf-submit {
  width: 100%; height: 54px; margin-top: 10px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff; font-size: 17px; font-weight: 800; letter-spacing: -.01em;
  border: 0; border-radius: 12px;
  box-shadow: 0 8px 22px rgba(47, 107, 255, .38);
  transition: transform .15s, box-shadow .15s;
}
.qf-submit:active { transform: scale(.985); }
.qf-submit .qf-submit-loading { display: none; }
.qf-submit.is-loading { opacity: .75; pointer-events: none; }
.qf-submit.is-loading .qf-submit-text { display: none; }
.qf-submit.is-loading .qf-submit-loading { display: inline; }

/* ---------- 신뢰 지표 ---------- */
.stats-strip { background: var(--navy-900); border-top: 1px solid rgba(255,255,255,.06); padding: 22px 0; }
.stats-inner { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 8px; }
.stat { text-align: center; color: #93a5bf; }
.stat b { display: block; color: #fff; font-size: 24px; font-weight: 800; letter-spacing: -.01em; }
.stat b span { color: var(--amber); }
.stat > span { font-size: 12.5px; }

/* ---------- 공통 섹션 ---------- */
.section { padding: 64px 0; }
.section-gray { background: var(--bg-gray); }
.section-dark { background: linear-gradient(170deg, var(--navy-900), var(--navy-800)); color: #fff; }
.section-head { text-align: center; margin-bottom: 38px; }
.section-tag {
  display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .14em;
  color: var(--blue); background: rgba(47, 107, 255, .1);
  padding: 5px 13px; border-radius: 99px; margin-bottom: 12px;
}
.section-dark .section-tag { color: var(--amber); background: rgba(255, 176, 32, .12); }
.section-head h2 { font-size: 27px; font-weight: 800; letter-spacing: -.02em; line-height: 1.3; }
.section-head p { margin-top: 12px; color: var(--text-sub); font-size: 15px; }
.section-dark .section-head p { color: #9fb0c9; }

/* ---------- About 비교 ---------- */
.about-compare { display: flex; flex-direction: column; align-items: stretch; gap: 12px; max-width: 780px; margin: 0 auto 50px; }
.ac-item { flex: 1; border-radius: 16px; padding: 24px 20px; text-align: center; position: relative; }
.ac-low { background: var(--bg-gray); border: 1.5px solid var(--line); color: var(--text-sub); }
.ac-high { background: linear-gradient(140deg, #0f2a68, #1d4ed8); color: #fff; box-shadow: 0 14px 34px rgba(29, 78, 216, .3); }
.ac-label { display: inline-block; font-size: 12.5px; font-weight: 700; padding: 4px 12px; border-radius: 99px; margin-bottom: 12px; background: rgba(100, 116, 139, .12); }
.ac-high .ac-label { background: rgba(255, 255, 255, .16); }
.ac-label em { font-style: normal; color: var(--amber); margin-left: 4px; }
.ac-item b { display: block; font-size: 19px; margin-bottom: 8px; }
.ac-low b { color: var(--text); }
.ac-item p { font-size: 14px; line-height: 1.55; }
.ac-high p b { display: inline; font-size: inherit; color: var(--amber); }
.ac-vs { text-align: center; font-weight: 800; color: #cbd5e1; font-size: 15px; }

/* ---------- 절차 ---------- */
.process h3 { text-align: center; font-size: 20px; font-weight: 800; margin-bottom: 26px; letter-spacing: -.01em; }
.process-grid { display: flex; flex-direction: column; align-items: stretch; gap: 10px; max-width: 900px; margin: 0 auto; }
.pr-card {
  flex: 1; background: #fff; border: 1.5px solid var(--line); border-radius: 16px;
  padding: 26px 20px; text-align: center; transition: transform .2s, box-shadow .2s, border-color .2s;
}
.pr-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #c7d7ff; }
.pr-num { font-size: 12px; font-weight: 800; color: var(--blue); letter-spacing: .1em; margin-bottom: 10px; }
.pr-icon { width: 76px; height: 76px; margin: 0 auto 14px; }
.pr-icon img { width: 100%; height: 100%; }
.pr-card b { display: block; font-size: 17px; margin-bottom: 7px; }
.pr-card p { font-size: 13.5px; color: var(--text-sub); }
.pr-arrow { display: none; align-items: center; color: #cbd5e1; font-size: 26px; font-weight: 700; }

/* ---------- 실사례 (모바일 2열) ---------- */
.cases-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.case-card {
  background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 16px; overflow: hidden; transition: transform .2s, border-color .2s;
}
.case-card:hover { transform: translateY(-4px); border-color: rgba(255, 176, 32, .5); }
.case-img { position: relative; aspect-ratio: 16 / 9; background: #16223d; }
.case-img img { width: 100%; height: 100%; object-fit: cover; }
.case-badge {
  position: absolute; top: 10px; right: 10px;
  background: var(--amber); color: #33240a; font-size: 13px; font-weight: 800;
  padding: 4px 11px; border-radius: 99px; box-shadow: 0 4px 12px rgba(0,0,0,.3);
}
.case-body { padding: 12px 12px 14px; }
.case-name { font-size: 14.5px; font-weight: 700; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.case-meta { display: block; font-size: 11.5px; color: #8fa1bb; margin: 2px 0 10px; }
.case-prices { display: flex; flex-direction: column; gap: 5px; border-top: 1px dashed rgba(255,255,255,.14); padding-top: 10px; }
.cp-row { display: flex; align-items: center; justify-content: space-between; gap: 6px; font-size: 12px; flex-wrap: wrap; }
.cp-low { color: #7e8fa5; }
.cp-low span { color: #7d8ea8; }
.cp-low del { color: #66788f; }
.cp-high span { color: #c8d4e6; font-weight: 600; }
.cp-high b { color: var(--amber); font-size: 15.5px; font-weight: 800; letter-spacing: -.01em; }
.case-badge { font-size: 11.5px; padding: 3px 9px; top: 8px; right: 8px; }

/* ---------- 이런 차량도 매입 ---------- */
.buytype-grid { display: grid; grid-template-columns: 1fr; gap: 12px; max-width: 980px; margin: 0 auto; }
.buytype-card {
  display: flex; flex-direction: column; gap: 6px;
  background: #fff; border: 1.5px solid var(--line); border-radius: 16px;
  padding: 22px 20px; transition: transform .2s, box-shadow .2s, border-color .2s;
}
.buytype-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #c7d7ff; }
.bt-icon { font-size: 30px; line-height: 1; margin-bottom: 4px; }
.buytype-card b { font-size: 16px; }
.buytype-card p { font-size: 13.5px; color: var(--text-sub); }

/* ---------- 비교표 ---------- */
.compare-table-wrap { max-width: 860px; margin: 0 auto 34px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare-table { width: 100%; min-width: 560px; border-collapse: separate; border-spacing: 0; font-size: 14px; }
.compare-table thead th {
  padding: 14px 12px; font-size: 14.5px; font-weight: 800; text-align: center;
  background: var(--bg-gray); border-bottom: 2px solid var(--line);
}
.compare-table thead th:first-child { background: transparent; }
.compare-table thead th.ct-hl {
  background: linear-gradient(140deg, #10306f, #1d4ed8); color: #fff;
  border-radius: 12px 12px 0 0; border-bottom-color: #1d4ed8;
}
.compare-table thead th.ct-hl em { font-style: normal; color: var(--amber); font-size: 12px; margin-left: 5px; }
.compare-table tbody th {
  width: 26%; text-align: left; padding: 13px 12px;
  font-size: 13px; color: #475569; font-weight: 700;
  border-bottom: 1px solid #eef1f6;
}
.compare-table tbody td {
  padding: 13px 12px; text-align: center; color: var(--text-sub); font-size: 13.5px;
  border-bottom: 1px solid #eef1f6;
}
.compare-table tbody td.ct-hl {
  background: #f0f6ff; color: #1e3a8a; font-weight: 500;
  border-bottom-color: #dbe7ff;
}
.compare-table tbody td.ct-hl b { color: var(--blue-dark); }
.compare-table tbody tr:last-child td.ct-hl { border-radius: 0 0 12px 12px; }

/* ---------- 4대 보장 ---------- */
.guarantee-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; max-width: 860px; margin: 0 auto; }
.gr-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px; text-align: center;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-700));
  border-radius: 16px; padding: 20px 12px; color: #fff;
}
.gr-icon { font-size: 26px; }
.gr-item b { font-size: 15px; }
.gr-sub { font-size: 12px; color: #9fb0c9; }

/* ---------- 중간 CTA 밴드 ---------- */
.quote-band { background: linear-gradient(135deg, #f0f5ff, #e7efff); }
.qb-inner { display: flex; flex-direction: column; gap: 26px; }
.qb-copy h2 { font-size: 26px; font-weight: 800; letter-spacing: -.02em; line-height: 1.3; }
.qb-copy p { margin-top: 12px; color: #47566e; font-size: 15px; }
.qb-copy a b { color: var(--blue); font-size: 17px; }
.qb-form .quote-form { box-shadow: 0 18px 44px rgba(30, 64, 175, .16); }

/* ---------- 후기 ---------- */
.reviews-slider { padding: 0 18px; max-width: 1180px; margin: 0 auto; }
.reviews-slider .swiper { overflow: hidden; padding-bottom: 38px; }
.reviews-slider .swiper-slide { width: 100%; height: auto; }
.review-card {
  background: #fff; border: 1.5px solid var(--line); border-radius: 16px;
  padding: 20px; height: 100%; display: flex; flex-direction: column;
  box-shadow: 0 4px 14px rgba(15, 23, 42, .04);
}
.rv-photo { margin: -20px -20px 16px; aspect-ratio: 16/9; overflow: hidden; border-radius: 14px 14px 0 0; background: var(--bg-gray); }
.rv-photo img { width: 100%; height: 100%; object-fit: cover; }
.rv-top { display: flex; align-items: center; gap: 10px; }
.rv-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; font-weight: 800; color: #fff; font-size: 16px;
  background: linear-gradient(135deg, var(--blue), #7c3aed);
}
.rv-who { flex: 1; min-width: 0; }
.rv-who b { display: block; font-size: 15px; }
.rv-who span { font-size: 12.5px; color: var(--text-sub); }
.rv-gain { background: #ecfdf5; color: #059669; font-size: 12.5px; font-weight: 800; padding: 4px 10px; border-radius: 99px; white-space: nowrap; }
.rv-stars { color: var(--amber); font-size: 14px; margin: 10px 0 8px; letter-spacing: 2px; }
.rv-stars-off { color: #e2e8f0; }
.rv-content { font-size: 14px; color: #40506a; line-height: 1.65; flex: 1; }
.rv-date { margin-top: 12px; font-size: 12px; color: #a5b1c4; }
.reviews-slider .swiper-pagination-bullet { background: #94a3b8; opacity: .4; width: 7px; height: 7px; }
.reviews-slider .swiper-pagination-bullet-active { opacity: 1; background: var(--blue); width: 18px; border-radius: 4px; }
.reviews-more { text-align: center; margin-top: 8px; }
.btn-more {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1.5px solid var(--line); border-radius: 99px;
  padding: 11px 26px; font-size: 14px; font-weight: 700; color: #475569;
  transition: border-color .2s, color .2s;
}
.btn-more:hover { border-color: var(--blue); color: var(--blue); }

/* 후기 전체 페이지 */
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 34px; }
.pagination a, .pagination .pg-cur {
  min-width: 38px; height: 38px; display: grid; place-items: center;
  border-radius: 10px; font-size: 14px; font-weight: 600;
  border: 1.5px solid var(--line); color: #475569;
}
.pagination .pg-cur { background: var(--blue); border-color: var(--blue); color: #fff; }
.empty-note { text-align: center; color: var(--text-sub); padding: 60px 0; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 780px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: #fff; border: 1.5px solid var(--line); border-radius: 14px; overflow: hidden; }
.faq-q {
  display: flex; align-items: center; gap: 12px; width: 100%; text-align: left;
  background: none; border: 0; padding: 17px 18px;
  font-size: 15px; font-weight: 700; color: var(--text);
}
.faq-mark {
  width: 26px; height: 26px; border-radius: 8px; flex-shrink: 0;
  display: grid; place-items: center;
  background: rgba(47, 107, 255, .1); color: var(--blue); font-size: 13px; font-weight: 800;
}
.faq-chevron { width: 18px; height: 18px; margin-left: auto; color: #94a3b8; transition: transform .25s; flex-shrink: 0; }
.faq-item.is-open .faq-chevron { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 18px 18px 56px; font-size: 14px; color: var(--text-sub); line-height: 1.7; }

/* ---------- 서브 페이지 ---------- */
.page-hero {
  padding: calc(var(--header-h) + 44px) 0 40px;
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  color: #fff; text-align: center;
}
.page-hero h1 { font-size: 27px; font-weight: 800; letter-spacing: -.02em; }
.page-hero p { margin-top: 8px; color: #9fb0c9; font-size: 14px; }
.doc-body { max-width: 780px; font-size: 14.5px; color: #40506a; }
.doc-body h3 { margin: 26px 0 8px; font-size: 16.5px; color: var(--text); }
.doc-body ul { padding-left: 20px; margin: 6px 0; }
.doc-body li { margin: 4px 0; }
.doc-date { margin-top: 30px; color: var(--text-sub); font-size: 13px; }

/* ---------- 푸터 ---------- */
.site-footer { background: var(--navy-900); color: #7d8ea8; padding: 40px 0 110px; font-size: 13px; }
.footer-brand { color: #e2e8f0; font-weight: 800; font-size: 16px; margin-bottom: 14px; }
.footer-info { display: flex; flex-wrap: wrap; gap: 6px 16px; margin-bottom: 16px; line-height: 1.7; }
.footer-links { display: flex; gap: 18px; margin-bottom: 14px; }
.footer-links a { color: #9fb0c9; }
.footer-links b { color: #cbd5e1; }
.footer-copy { color: #56688a; font-size: 12px; }

/* ---------- 하단 고정 CTA (모바일) ---------- */
.bottom-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: flex; gap: 1px; background: rgba(11, 18, 32, .97);
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 24px rgba(2, 8, 20, .25);
}
.bc-item {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
  height: 48px; border-radius: 11px; font-size: 13.5px; font-weight: 700;
}
.bc-item svg { width: 17px; height: 17px; }
.bc-call { background: #1c2b4d; color: #dbe6f7; }
.bc-kakao { background: #fee500; color: #1f1f1f; }
.bc-quote { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: #fff; flex: 1.4; }

/* ---------- 모달 ---------- */
.cc-modal { position: fixed; inset: 0; z-index: 200; display: none; }
.cc-modal.is-open { display: block; }
.cc-modal-back { position: absolute; inset: 0; background: rgba(8, 12, 22, .6); backdrop-filter: blur(2px); }
.cc-modal-box {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: min(92vw, 460px); max-height: 82vh; overflow: auto;
  background: #fff; border-radius: 18px; box-shadow: 0 30px 80px rgba(2, 8, 20, .5);
}
.cc-modal-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--line);
  font-size: 16px; position: sticky; top: 0; background: #fff;
}
.cc-modal-x { background: none; border: 0; font-size: 26px; line-height: 1; color: #94a3b8; padding: 2px 6px; }
.cc-modal-body { padding: 18px 20px 22px; font-size: 13.5px; color: #475569; }
.cc-modal-body p { margin-bottom: 10px; }

/* 접수 완료 모달 */
.cc-done-box { text-align: center; padding: 34px 26px 26px; }
.done-icon { width: 64px; margin: 0 auto 16px; }
.done-icon circle { stroke-dasharray: 160; stroke-dashoffset: 160; animation: dash .7s ease forwards; }
.done-icon path { stroke-dasharray: 60; stroke-dashoffset: 60; animation: dash .5s .5s ease forwards; }
@keyframes dash { to { stroke-dashoffset: 0; } }
.cc-done-box h3 { font-size: 21px; font-weight: 800; margin-bottom: 8px; }
.cc-done-box p { color: var(--text-sub); font-size: 14.5px; margin-bottom: 18px; }
.cc-done-box p b { color: var(--text); }
.done-call {
  display: block; background: var(--bg-gray); border-radius: 12px;
  padding: 13px; font-size: 14px; color: #475569; margin-bottom: 12px;
}
.done-call b { color: var(--blue); }
.done-close {
  width: 100%; height: 50px; background: var(--navy-900); color: #fff;
  border: 0; border-radius: 12px; font-size: 15px; font-weight: 700;
}

/* =========================================================
   태블릿 이상 (768px~)
   ========================================================= */
@media (min-width: 768px) {
  .pc-br { display: inline; }
  .stats-inner { grid-template-columns: repeat(4, 1fr); }
  .about-compare { flex-direction: row; align-items: stretch; }
  .ac-vs { display: flex; align-items: center; }
  .process-grid { flex-direction: row; }
  .pr-arrow { display: flex; }
  .cases-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .case-body { padding: 16px 16px 18px; }
  .case-name { font-size: 16.5px; }
  .case-meta { font-size: 12.5px; margin: 3px 0 12px; }
  .cp-row { font-size: 13.5px; }
  .cp-high b { font-size: 18px; }
  .case-badge { font-size: 13px; padding: 4px 11px; top: 10px; right: 10px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .buytype-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .guarantee-grid { grid-template-columns: repeat(4, 1fr); }
  .qb-inner { flex-direction: row; align-items: center; }
  .qb-copy { flex: 1; }
  .qb-form { flex: 1; max-width: 460px; }
  .hero h1 { font-size: 44px; }
  .section-head h2 { font-size: 32px; }
}

/* =========================================================
   데스크탑 (1024px~)
   ========================================================= */
@media (min-width: 1024px) {
  .gnb { display: flex; }
  .menu-btn, .mobile-menu { display: none !important; }
  .hero { padding: calc(var(--header-h) + 70px) 0 80px; }
  .hero-inner { flex-direction: row; align-items: center; gap: 50px; }
  .hero-copy { flex: 1.2; }
  .hero-form { flex: 1; max-width: 440px; }
  .quote-form { padding: 28px 26px; }
  .cases-grid { grid-template-columns: repeat(4, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .buytype-grid { grid-template-columns: repeat(3, 1fr); }
  .bottom-cta { display: none; }
  .site-footer { padding-bottom: 40px; }
  .section { padding: 84px 0; }
}
