/* ════════════════════════════════════════
   나임무역 메인 스타일
   ════════════════════════════════════════ */

/* 리셋 & 기본 */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
  color: #1a1a2e; background: #fff;
  line-height: 1.7; overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: opacity .2s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
input, textarea, button { font-family: inherit; }

/* ── 로고 SVG 크기 ── */
.logo-svg { width: 48px; height: 48px; display: block; }
.logo-mark.sm .logo-svg { width: 40px; height: 40px; }

/* ── CSS 변수 ── */
:root {
  --dark:      #0d1b35;
  --navy:      #1a2f5a;
  --blue:      #1e5fcb;
  --blue-lt:   #3575e6;
  --gold:      #d4920e;
  --gold-lt:   #f0b429;
  --white:     #ffffff;
  --gray-bg:   #f4f6fb;
  --gray-line: #e4e8f0;
  --text:      #1a1a2e;
  --text-sub:  #5a6380;
  --radius:    14px;
  --shadow:    0 4px 28px rgba(13,27,53,.10);
  --shadow-lg: 0 12px 48px rgba(13,27,53,.18);
  --hdr-h:     72px;
  --transition: all .3s cubic-bezier(.25,.8,.25,1);
}

.section-inner { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ════════════════════════════════
   로고
════════════════════════════════ */
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; gap: 1px; }
.lt-main { font-size: 20px; font-weight: 900; color: var(--dark); letter-spacing: -0.5px; line-height: 1.1; }
.lt-sub  { font-size: 10px; font-weight: 500; color: var(--text-sub); letter-spacing: 1.5px; }

/* ════════════════════════════════
   헤더
════════════════════════════════ */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(12px);
  transition: var(--transition);
  height: var(--hdr-h);
}
#header.scrolled {
  border-bottom-color: var(--gray-line);
  box-shadow: 0 2px 20px rgba(13,27,53,.08);
}
.hd-wrap {
  max-width: 1240px; margin: 0 auto; padding: 0 28px;
  height: 100%; display: flex; align-items: center; gap: 28px;
}
.gnb { flex: 1; }
.gnb ul { display: flex; gap: 2px; }
.gnb ul li a {
  display: block; padding: 8px 18px; border-radius: 8px;
  font-size: 15px; font-weight: 600; color: var(--text);
  transition: var(--transition);
}
.gnb ul li a:hover { background: var(--gray-bg); color: var(--blue); }
.hd-call {
  display: flex; align-items: center; gap: 9px;
  padding: 10px 22px; border-radius: 50px;
  background: var(--blue); color: #fff;
  font-size: 15px; font-weight: 700;
  transition: var(--transition); white-space: nowrap;
}
.hd-call:hover { background: var(--navy); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(30,95,203,.35); }
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 6px; flex-direction: column; gap: 5px;
  margin-left: auto;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 모바일 메뉴 */
.mobile-menu {
  display: none; position: fixed; top: var(--hdr-h);
  left: 0; right: 0; z-index: 999;
  background: var(--dark); padding: 20px 0 28px;
  transform: translateY(-8px); opacity: 0;
  pointer-events: none; transition: var(--transition);
}
.mobile-menu.open { display: block; transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu ul li a {
  display: block; padding: 14px 28px;
  color: rgba(255,255,255,.85); font-size: 16px; font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-menu ul li a:hover { color: var(--gold-lt); }
.mobile-call {
  display: block; margin: 20px 28px 0;
  background: var(--blue); color: #fff;
  padding: 14px; border-radius: 10px;
  font-size: 16px; font-weight: 700; text-align: center;
}

/* ════════════════════════════════
   히어로
════════════════════════════════ */
#hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #060f25 0%, #0d1b35 45%, #0e2a52 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding-top: var(--hdr-h);
}
.hero-bg-grad {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 70% 50%, rgba(30,95,203,.18) 0%, transparent 70%);
}
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative; max-width: 1140px; margin: 0 auto;
  padding: 80px 24px; width: 100%;
  display: grid; grid-template-columns: 1fr 420px;
  gap: 60px; align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.9); font-size: 13px; font-weight: 600;
  padding: 8px 18px; border-radius: 30px;
  margin-bottom: 28px; letter-spacing: .3px;
}
.hero-title {
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 900; color: #fff; line-height: 1.15;
  letter-spacing: -2.5px; margin-bottom: 24px;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold-lt), #ffd166);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 18px; color: rgba(255,255,255,.75);
  margin-bottom: 32px; line-height: 1.9;
}
.hero-desc strong { color: var(--gold-lt); font-weight: 700; }
.hero-checks {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px;
}
.hero-checks span {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.88); font-size: 13px; font-weight: 500;
  padding: 7px 15px; border-radius: 30px;
}
.hero-checks span i { color: var(--gold-lt); font-size: 12px; }
.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: #fff; font-size: 17px; font-weight: 800;
  padding: 17px 40px; border-radius: 50px;
  box-shadow: 0 8px 32px rgba(212,146,14,.45);
  transition: var(--transition);
}
.hero-cta:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(212,146,14,.55); }

/* 히어로 카드 */
.hero-card {
  background: #fff; border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 24px 64px rgba(0,0,0,.35);
}
.hc-label {
  font-size: 13px; font-weight: 600; color: var(--text-sub);
  margin-bottom: 8px;
}
.hc-title {
  font-size: 22px; font-weight: 900; color: var(--dark);
  margin-bottom: 24px; letter-spacing: -.5px;
}
.hc-form { display: flex; flex-direction: column; gap: 12px; }
.hc-form input {
  width: 100%; padding: 13px 16px;
  border: 2px solid var(--gray-line); border-radius: 10px;
  font-size: 14px; color: var(--text);
  transition: border-color .2s;
}
.hc-form input:focus { outline: none; border-color: var(--blue); }
.hc-agree {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text-sub); cursor: pointer;
}
.hc-agree input { width: auto; }
.hc-form button {
  width: 100%; padding: 15px;
  background: linear-gradient(135deg, var(--blue), var(--blue-lt));
  color: #fff; border: none; border-radius: 10px;
  font-size: 16px; font-weight: 800; cursor: pointer;
  transition: var(--transition);
}
.hc-form button:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,95,203,.4); }

/* 히어로 스크롤 화살표 */
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.4); font-size: 22px;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ════════════════════════════════
   공통 섹션
════════════════════════════════ */
#cars    { background: var(--gray-bg); padding: 96px 0; }
#why     { background: var(--dark); padding: 96px 0; }
#process { background: #fff; padding: 96px 0; }
#review  { background: var(--gray-bg); padding: 96px 0; }
#contact { background: var(--navy); padding: 96px 0; }

.section-head { text-align: center; margin-bottom: 56px; }
.section-head.light h2, .section-head.light p { color: #fff; }
.section-head.light p  { color: rgba(255,255,255,.65); }
.sec-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue), var(--blue-lt));
  color: #fff; font-size: 11px; font-weight: 800;
  padding: 5px 16px; border-radius: 30px;
  letter-spacing: 2px; margin-bottom: 16px;
}
#why .sec-badge { background: linear-gradient(135deg, var(--gold), var(--gold-lt)); }
#contact .sec-badge { background: linear-gradient(135deg, var(--gold), var(--gold-lt)); }
.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900; color: var(--dark);
  letter-spacing: -1.5px; margin-bottom: 12px;
}
.section-head p { font-size: 16px; color: var(--text-sub); }

/* ════════════════════════════════
   탭 & 거래 카드
════════════════════════════════ */
.tab-wrap {
  display: flex; justify-content: center; gap: 10px;
  margin-bottom: 36px;
}
.tab-btn {
  padding: 11px 30px; border-radius: 50px;
  border: 2px solid var(--gray-line);
  background: #fff; color: var(--text-sub);
  font-size: 14px; font-weight: 700; cursor: pointer;
  transition: var(--transition);
}
.tab-btn.active {
  background: var(--blue); border-color: var(--blue);
  color: #fff; box-shadow: 0 6px 20px rgba(30,95,203,.3);
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
.cases-grid.hidden { display: none; }
.case-card {
  background: #fff; border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--blue);
  transition: var(--transition);
}
.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cc-img {
  width: 100%; height: 160px; overflow: hidden;
  border-radius: 8px; margin-bottom: 16px;
  background: var(--gray-bg);
}
.cc-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform .4s;
}
.case-card:hover .cc-img img { transform: scale(1.05); }
.cc-img-damage img { filter: grayscale(30%); }

.cc-top {
  display: flex; justify-content: space-between;
  align-items: baseline; margin-bottom: 20px;
}
.cc-car { font-size: 17px; font-weight: 800; color: var(--dark); }
.cc-car.cc-damage { color: #e03737; }
.cc-year { font-size: 12px; color: var(--text-sub); }
.cc-compare {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 16px;
}
.cc-dealer, .cc-export { text-align: center; flex: 1; }
.cc-dealer span, .cc-export span { display: block; font-size: 11px; color: var(--text-sub); margin-bottom: 4px; }
.cc-dealer strong { font-size: 18px; font-weight: 700; color: #999; text-decoration: line-through; }
.cc-export strong { font-size: 22px; font-weight: 900; color: var(--blue); }
.cc-arrow { color: var(--gold); font-size: 18px; flex-shrink: 0; }
.cc-bonus {
  background: linear-gradient(135deg, #e8f3ff, #ddeeff);
  color: var(--blue); font-size: 13px; font-weight: 800;
  padding: 9px 14px; border-radius: 8px; text-align: center;
  margin-bottom: 12px;
}
.cc-stars { text-align: right; color: var(--gold-lt); font-size: 14px; }

/* ════════════════════════════════
   수출이란 강점
════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px; margin-bottom: 48px;
}
.why-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 36px 28px;
  transition: var(--transition);
}
.why-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.why-num {
  font-size: 12px; font-weight: 800; color: var(--gold-lt);
  letter-spacing: 2px; margin-bottom: 14px;
}
.why-icon { font-size: 36px; color: var(--gold-lt); margin-bottom: 16px; }
.why-card h3 { font-size: 19px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.why-card p  { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.8; }

/* 비교 배너 */
.compare-banner {
  display: grid; grid-template-columns: 1fr 60px 1fr;
  gap: 0; border-radius: var(--radius); overflow: hidden;
}
.cb-left  { background: rgba(255,255,255,.06); padding: 36px 32px; }
.cb-right { background: linear-gradient(135deg, rgba(30,95,203,.3), rgba(30,95,203,.15)); padding: 36px 32px; }
.cb-label { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 20px; }
.cb-left ul li, .cb-right ul li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: rgba(255,255,255,.8);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.cb-left ul li i  { color: #e03737; }
.cb-right ul li i { color: #4cde8a; }
.cb-vs {
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08);
  font-size: 22px; font-weight: 900; color: rgba(255,255,255,.4);
  letter-spacing: 1px;
}

/* ════════════════════════════════
   진행 절차
════════════════════════════════ */
.process-wrap {
  display: flex; align-items: center; gap: 0;
  justify-content: center; flex-wrap: wrap;
}
.proc-step {
  background: #fff; border: 1px solid var(--gray-line);
  border-radius: var(--radius); padding: 40px 28px;
  text-align: center; flex: 1; min-width: 200px; max-width: 240px;
  transition: var(--transition); position: relative;
}
.proc-step:hover {
  border-color: var(--blue);
  box-shadow: 0 12px 40px rgba(30,95,203,.15);
  transform: translateY(-6px);
}
.ps-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--blue), var(--blue-lt));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 26px; color: #fff;
}
.ps-num {
  font-size: 11px; font-weight: 800; color: var(--blue);
  letter-spacing: 2px; margin-bottom: 10px;
}
.proc-step h3 { font-size: 19px; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.proc-step p  { font-size: 13px; color: var(--text-sub); line-height: 1.8; }
.proc-line {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--gold-lt));
  flex-shrink: 0;
}

/* ════════════════════════════════
   이용후기
════════════════════════════════ */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.review-card {
  background: #fff; border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 4px solid var(--blue);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.rv-stars { color: var(--gold-lt); font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.review-card h4 { font-size: 17px; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.review-card p  { font-size: 14px; color: var(--text-sub); line-height: 1.85; margin-bottom: 16px; }
.rv-name { font-size: 12px; color: var(--blue); font-weight: 700; }

/* ════════════════════════════════
   상담 신청
════════════════════════════════ */
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 64px; align-items: start;
}
.ct-left .sec-badge { margin-bottom: 20px; display: inline-block; }
.ct-left h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900; color: #fff;
  letter-spacing: -1.5px; margin-bottom: 16px; line-height: 1.2;
}
.ct-left > p { font-size: 16px; color: rgba(255,255,255,.7); margin-bottom: 36px; line-height: 1.9; }
.ct-info { display: flex; flex-direction: column; gap: 18px; }
.ct-info li { display: flex; align-items: flex-start; gap: 16px; }
.ct-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--gold-lt);
}
.ct-icon.kakao { background: rgba(254,229,0,.15); color: #f7e02e; }
.ct-info li > div strong { display: block; font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 3px; }
.ct-info li > div a,
.ct-info li > div span { font-size: 16px; color: #fff; font-weight: 600; }
.ct-info li > div a:hover { color: var(--gold-lt); }

.ct-form-box {
  background: #fff; border-radius: 20px;
  padding: 40px 36px; box-shadow: var(--shadow-lg);
}
.ct-form-box h3 {
  font-size: 20px; font-weight: 900; color: var(--dark);
  margin-bottom: 28px;
}
.fg { margin-bottom: 18px; }
.fg label {
  display: block; font-size: 13px; font-weight: 700; color: var(--text-sub);
  margin-bottom: 7px;
}
.fg label em { color: var(--blue); font-style: normal; }
.fg input, .fg textarea {
  width: 100%; padding: 13px 16px;
  border: 2px solid var(--gray-line); border-radius: 10px;
  font-size: 14px; color: var(--text);
  transition: border-color .2s;
}
.fg input:focus, .fg textarea:focus { outline: none; border-color: var(--blue); }
.fg textarea { min-height: 110px; resize: vertical; }
.agree-check {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; color: var(--text-sub);
  cursor: pointer; margin-bottom: 20px;
}
.agree-check input { width: auto; accent-color: var(--blue); }
.submit-btn {
  width: 100%; padding: 16px;
  background: linear-gradient(135deg, var(--blue), var(--blue-lt));
  color: #fff; border: none; border-radius: 10px;
  font-size: 17px; font-weight: 800; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: var(--transition);
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(30,95,203,.45); }

/* ════════════════════════════════
   푸터
════════════════════════════════ */
#footer {
  background: #060e20; padding: 52px 0 36px;
  text-align: center;
}
.ft-inner { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.ft-top {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 28px; margin-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.ft-logo { display: flex; align-items: center; gap: 12px; }
.ft-logo .lt-main { color: #fff; font-size: 18px; }
.ft-logo .lt-sub  { color: rgba(255,255,255,.4); }
.ft-links { display: flex; gap: 20px; }
.ft-links a { font-size: 13px; color: rgba(255,255,255,.4); }
.ft-links a:hover { color: var(--gold-lt); }
.ft-info { margin-bottom: 20px; }
.ft-info p { font-size: 13px; color: rgba(255,255,255,.35); margin-bottom: 5px; }
.ft-copy { font-size: 12px; color: rgba(255,255,255,.25); }
#year {}

/* ════════════════════════════════
   우측 플로팅 사이드바
════════════════════════════════ */
.float-side {
  position: fixed; right: 24px; top: 50%;
  transform: translateY(-50%);
  z-index: 900; display: flex;
  flex-direction: column; gap: 8px;
  opacity: 0; pointer-events: none;
  transition: opacity .4s;
}
.float-side.show { opacity: 1; pointer-events: auto; }
.fs-btn {
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 3px;
  color: #fff; font-size: 9px; font-weight: 700;
  box-shadow: 0 4px 18px rgba(0,0,0,.22);
  transition: var(--transition); text-align: center;
}
.fs-btn:hover { transform: scale(1.14); box-shadow: 0 8px 28px rgba(0,0,0,.35); }
.fs-btn i, .fs-btn svg { font-size: 22px; }
.fs-phone   { background: linear-gradient(135deg, #1e5fcb, #3575e6); }
.fs-kakao   { background: #fee500; color: #3c1e1e; }
.fs-kakao span { color: #3c1e1e; }
.fs-blog    { background: #03c75a; }
.fs-consult { background: linear-gradient(135deg, var(--gold), var(--gold-lt)); }

/* ════════════════════════════════
   모바일 하단 바
════════════════════════════════ */
.mobile-bottom-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 950;
  height: 58px;
}
.mbb-btn {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; width: 50%; height: 100%; float: left;
  font-size: 15px; font-weight: 800; color: #fff;
}
.mbb-call    { background: var(--navy); }
.mbb-consult { background: linear-gradient(135deg, var(--gold), var(--gold-lt)); }

/* ════════════════════════════════
   상단 이동 버튼
════════════════════════════════ */
.top-btn {
  position: fixed; right: 24px; bottom: 36px; z-index: 900;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--dark); color: #fff; border: none;
  font-size: 16px; cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  transition: var(--transition);
  opacity: 0; pointer-events: none;
}
.top-btn.show { opacity: 1; pointer-events: auto; }
.top-btn:hover { background: var(--blue); transform: translateY(-3px); }

/* ════════════════════════════════
   등장 애니메이션
════════════════════════════════ */
[data-aos] {
  opacity: 0; transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
[data-aos].aos-on { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════
   반응형
════════════════════════════════ */
@media (max-width: 1000px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { max-width: 480px; margin: 0 auto; width: 100%; }
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .compare-banner { grid-template-columns: 1fr; }
  .cb-vs { padding: 10px; writing-mode: horizontal-tb; }
}
@media (max-width: 860px) {
  .gnb, .hd-call { display: none; }
  .hamburger { display: flex; }
  .process-wrap { flex-direction: column; align-items: center; }
  .proc-line { width: 2px; height: 36px; }
  .proc-step { max-width: 100%; width: 100%; }
  .float-side { display: none; }
  .mobile-bottom-bar { display: flex; }
  .top-btn { right: 16px; bottom: 72px; }
  #footer { padding-bottom: 72px; }
}
@media (max-width: 560px) {
  .hero-title { font-size: 38px; }
  .cases-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .ft-top { flex-direction: column; gap: 20px; }
}
