/* 어디든 사이트 공용 스타일. 13개 페이지가 전부 이 파일 하나를 함께 씁니다 */
/* ⚠ 여기를 고치면 13개 페이지 전부에 반영됩니다. 한 페이지만 바꿔야 하면 그 페이지의 style 안에서 고치세요 */
/* 파일 순서. 1) 색과 기본값 2) 메인 홈 부품 3) 홈 반응형 4) 공용 견적폼 5) 공용 서비스 상세 부품 */

/* [색과 기본값] 사이트 전체 색과 가로 폭 기준. 여기 값을 바꾸면 모든 페이지 색이 한 번에 바뀝니다 */
:root {
  --purple: #6847e8;
  --purple-deep: #5535d0;
  --blue: #3166ed;
  --blue-pale: #eaf2ff;
  --ink: #1f2429;
  --muted: #6b7280;
  --line: #e7e9ef;
  --asset-gray: #f1f1f6;
  --section-gray: #f4f6fa;
  --footer-gray: #eef1f5;
  --container: 1200px;
  --shadow: 0 6px 24px rgba(16, 22, 40, .06);
}

/* [기본 정리와 본문 글꼴] 모든 페이지의 글꼴과 글자 크기 기준 */
/* ⚠ body의 overflow-x hidden은 가로 스크롤 방지용입니다. 지우면 여러 페이지에서 화면이 옆으로 밀립니다 */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: #fff;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: normal;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img, svg { display: block; }
img { max-width: 100%; }
h1, h2, h3 { letter-spacing: normal; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
:focus-visible { outline: 3px solid rgba(49, 102, 237, .28); outline-offset: 3px; }

/* [상단 공지 띠] 모든 페이지 맨 위 보라색 띠 */
.top-notice {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 42px;
  color: #fff;
  background: var(--purple);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}
.notice-dot { width: 7px; height: 7px; flex: 0 0 7px; margin-right: 8px; border-radius: 50%; background: #ffe64b; box-shadow: 0 0 0 3px rgba(255, 230, 75, .18); }

/* [헤더 윗줄] 로고, 유틸 메뉴, 로그인 칩. 모바일에서는 유틸 메뉴가 숨고 아이콘 두 개만 남습니다 */
.utility { height: 64px; border-bottom: 1px solid #f0f1f4; background: #fff; }
.utility-inner { height: 100%; display: flex; align-items: center; }
.brand { min-width: 200px; display: flex; align-items: center; gap: 9px; color: var(--purple); font-size: 23px; font-weight: 700; letter-spacing: normal; }
.brand-badge { min-width: 45px; height: 28px; display: grid; place-items: center; color: #fff; border-radius: 8px 8px 8px 3px; background: var(--purple); font-size: 12px; font-weight: 700; letter-spacing: normal; box-shadow: 0 5px 12px rgba(104, 71, 232, .2); }
.utility-links { display: flex; align-items: center; gap: 34px; color: var(--ink); font-size: 15px; font-weight: 700; }
.utility-links a, .category-tabs a { transition: color .2s ease; }
.utility-links a:hover, .category-tabs a:hover { color: var(--purple); }
.utility-account { margin-left: auto; display: flex; align-items: center; gap: 15px; }
.bell-link { width: 34px; height: 34px; display: grid; place-items: center; color: #858b96; }
.login-chip { padding: 7px 13px; color: #30343d; border: 1px solid #dfe2e8; border-radius: 10px; background: #fff; font-size: 13px; font-weight: 700; }
.mobile-head-actions { display: none; margin-left: auto; align-items: center; gap: 7px; }
.mobile-head-actions button, .all-menu { display: grid; place-items: center; padding: 0; border: 0; background: transparent; }
.mobile-head-actions button { width: 34px; height: 34px; }

/* [카테고리 탭 줄] 12개 서비스 탭. PC는 12칸 균등, 모바일은 옆으로 밀어 보는 줄입니다 */
.category-nav { height: 60px; border-bottom: 1px solid #e9ebef; background: #fff; }
.category-row { height: 100%; display: flex; align-items: center; }
.category-tabs { flex: 1; height: 100%; display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); align-items: center; }
.category-tabs a { position: relative; height: 100%; display: flex; align-items: center; justify-content: center; padding: 0 7px; color: var(--ink); font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 18px; line-height: 26px; font-weight: 700; letter-spacing: normal; white-space: nowrap; }
.category-tabs a::after { position: absolute; right: 22%; bottom: 0; left: 22%; height: 3px; border-radius: 4px 4px 0 0; background: var(--purple); content: ""; opacity: 0; transform: scaleX(.45); transition: opacity .2s ease, transform .2s ease; }
.category-tabs a:hover::after, .category-tabs a:focus-visible::after { opacity: 1; transform: scaleX(1); }
.b2b-label { margin-left: 5px; padding: 2px 6px; color: var(--purple); border-radius: 8px; background: #eee9ff; font-size: 10px; font-weight: 700; letter-spacing: 0; }
.all-menu { width: 42px; height: 42px; margin-left: 8px; color: #333842; }

/* [홈 카드 공통] 아래 마우스 올림 효과(그림자와 살짝 뜨기)는 홈의 카드 6종에 한꺼번에 걸립니다 */
main { overflow: clip; }
.hero-card,
.problem-card,
.solution-card,
.benefit-card,
.promo-banner,
.review-card {
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: transform .24s ease, box-shadow .24s ease;
}
@media (hover: hover) {
  .hero-card:hover,
  .problem-card:hover,
  .solution-card:hover,
  .benefit-card:hover,
  .promo-banner:hover,
  .review-card:hover {
    box-shadow: 0 10px 30px rgba(16, 22, 40, .09);
    transform: translateY(-4px);
  }
}
/* [홈 히어로 배너] index.html 전용. 슬라이드 전환은 is-active 클래스로 합니다 */
.hero-section { padding: 24px 0 0; }
.hero-card { position: relative; height: 320px; overflow: hidden; background: linear-gradient(120deg, #f4f5f9 0%, #eceef4 100%); }
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; visibility: hidden; opacity: 0; transform: translateX(18px); transition: opacity .45s ease, transform .45s ease, visibility .45s; }
.hero-slide.is-active { visibility: visible; opacity: 1; transform: translateX(0); }
.hero-copy { position: relative; z-index: 3; width: 51%; height: 100%; display: flex; flex-direction: column; justify-content: center; padding: 0 0 0 62px; }
.hero-kicker { margin: 0 0 10px; color: var(--purple); font-size: 13px; font-weight: 700; }
.hero-copy h1, .hero-copy h2 { margin: 0; color: var(--ink); font-family: "SUIT", sans-serif; font-size: 30px; line-height: 1.4; font-weight: 700; letter-spacing: normal; }
.hero-copy p:last-child { margin: 14px 0 0; color: var(--muted); font-size: 15px; font-weight: 700; }
.hero-visual { position: absolute; inset: 0 0 0 auto; width: 56%; display: flex; align-items: center; justify-content: center; padding: 18px 42px 18px 18px; }
.hero-visual::after { position: absolute; right: 13%; bottom: 31px; width: 66%; height: 22px; border-radius: 50%; background: rgba(37, 43, 63, .12); filter: blur(10px); content: ""; }
.hero-visual img { position: relative; z-index: 2; width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 12px 12px rgba(37, 43, 63, .1)); }
.hero-duo { gap: 0; padding-right: 34px; }
.hero-duo::after { right: 10%; width: 72%; }
.hero-duo img { width: 48%; height: 82%; }
.hero-duo img + img { margin-left: -5%; transform: translateY(12px); }
.hero-arrow { position: absolute; z-index: 4; top: 50%; width: 40px; height: 40px; display: grid; place-items: center; padding: 0; color: #606775; border: 0; border-radius: 50%; background: rgba(255, 255, 255, .72); box-shadow: 0 4px 14px rgba(16, 22, 40, .08); transform: translateY(-50%); transition: background .2s ease, color .2s ease; }
.hero-arrow:hover { color: var(--purple); background: rgba(255, 255, 255, .94); }
.hero-arrow.prev { left: 16px; }
.hero-arrow.next { right: 16px; }
.pager { position: absolute; z-index: 4; right: 22px; bottom: 18px; display: flex; align-items: center; gap: 7px; }
.hero-dot { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 999px; background: rgba(104, 71, 232, .28); transition: width .2s ease, background .2s ease; }
.hero-dot.is-active { width: 20px; background: var(--purple); }

/* [홈 빠른 서비스 12칸] index.html 전용 아이콘 줄 */
.quick-services { padding: 88px 0; }
.quick-grid { display: grid; grid-template-columns: repeat(12, 1fr); align-items: start; gap: 16px; }
.quick-item { font-family: "SUIT", sans-serif; min-width: 0; display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--ink); font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 18px; line-height: 26px; font-weight: 700; letter-spacing: normal; white-space: nowrap; }
.quick-icon { width: 64px; height: 64px; transition: transform .2s ease; }
.quick-icon img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 5px 5px rgba(56, 61, 84, .12)); }
.quick-item:hover .quick-icon { transform: translateY(-4px); }

/* [홈 섹션 제목] 가운데 정렬 제목 묶음 */
.section-heading { margin: 0 auto 40px; text-align: center; }
.section-heading p { margin: 0 0 5px; color: #5c6270; font-size: 16px; font-weight: 700; }
.section-heading h2 { margin: 0; color: var(--ink); font-family: "SUIT", sans-serif; font-size: 24px; line-height: 33.6px; font-weight: 700; letter-spacing: normal; }
.section-heading strong { color: var(--purple); font-weight: 700; }

/* [홈 고민 3카드] ⚠ 쪽지(paper-tag) 위치가 카드 순서별 좌표로 박혀 있어 카드 순서를 바꾸면 어긋납니다 */
.problem-section { padding: 88px 0; border-top: 1px solid #f2f3f5; }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.problem-card { position: relative; height: 390px; overflow: hidden; padding: 32px 24px; background: linear-gradient(155deg, #f5f5f8 0%, #f1eff9 100%); text-align: center; }
.problem-card h3 { position: relative; z-index: 3; margin: 0 0 8px; color: var(--ink); font-family: "SUIT", sans-serif; font-size: 20px; line-height: 1.45; font-weight: 700; letter-spacing: normal; }
.problem-card > p { position: relative; z-index: 3; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.58; }
.problem-image { position: absolute; z-index: 1; right: 50%; bottom: 16px; width: 190px; height: 190px; transform: translateX(50%); }
.problem-image img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 10px 10px rgba(47, 52, 74, .14)); }
.paper-tag { position: absolute; z-index: 3; padding: 7px 10px; color: #4160bd; border: 1px solid rgba(199, 208, 237, .85); border-radius: 999px; background: rgba(255, 255, 255, .94); box-shadow: 0 6px 14px rgba(56, 64, 91, .08); font-size: 12.5px; font-weight: 700; line-height: 1.3; white-space: nowrap; }
.tag-a { left: 20px; bottom: 142px; transform: rotate(-5deg); }
.tag-b { right: 18px; bottom: 91px; transform: rotate(4deg); }
.tag-c { left: 27px; bottom: 40px; transform: rotate(-3deg); }
.problem-card:nth-child(2) .tag-a { left: 17px; bottom: 142px; transform: rotate(-4deg); }
.problem-card:nth-child(2) .tag-b { right: 17px; bottom: 91px; transform: rotate(5deg); }
.problem-card:nth-child(2) .tag-c { left: 31px; bottom: 40px; transform: rotate(3deg); }
.problem-card:nth-child(3) .tag-a { left: 17px; bottom: 142px; }
.problem-card:nth-child(3) .tag-b { right: 14px; bottom: 91px; }
.problem-card:nth-child(3) .tag-c { left: 26px; bottom: 40px; }

/* [홈 해결 소개] 겹쳐 쌓은 체크 카드 4장. 기울기와 아이콘 색이 카드 순서별로 지정돼 있습니다 */
.solution-section { padding: 88px 0; }
.solution-card { min-height: 360px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; overflow: hidden; background: linear-gradient(118deg, #eef3ff 0%, #dfeaff 100%); }
.solution-copy { padding-left: 72px; }
.solution-copy .mini { margin: 0 0 8px; color: var(--purple); font-size: 14px; font-weight: 700; }
.solution-copy h3 { margin: 0 0 13px; font-family: "SUIT", sans-serif; font-size: 25px; line-height: 1.4; font-weight: 700; letter-spacing: normal; }
.solution-copy p:last-child { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.check-stack { position: relative; width: 350px; display: flex; flex-direction: column; align-items: center; gap: 8px; margin-inline: auto; padding: 2px 0; }
.check-item { position: relative; width: 305px; min-height: 52px; display: flex; align-items: center; gap: 12px; padding: 8px 14px; border: 1px solid rgba(255, 255, 255, .9); border-radius: 16px; background: rgba(255, 255, 255, .96); box-shadow: var(--shadow); }
.check-item:nth-child(1) { z-index: 1; transform: translateX(-14px) rotate(-.7deg); }
.check-item:nth-child(2) { z-index: 2; transform: translateX(10px) rotate(.5deg); }
.check-item:nth-child(3) { z-index: 3; transform: translateX(-8px) rotate(-.4deg); }
.check-item:nth-child(4) { z-index: 4; transform: translateX(14px) rotate(.6deg); }
.check-icon { width: 36px; height: 36px; display: grid; flex: 0 0 36px; place-items: center; color: var(--blue); border-radius: 50%; background: #e8efff; }
.check-item:nth-child(2) .check-icon { color: #7355df; background: #eeeaff; }
.check-item:nth-child(3) .check-icon { color: #d17c20; background: #fff1dc; }
.check-item:nth-child(4) .check-icon { color: #218c70; background: #def7ed; }
.check-line { display: block; font-size: 14px; font-weight: 600; }
.check-line strong { font-weight: 700; }
.check-item small { display: block; margin-top: 1px; color: var(--muted); font-size: 11px; }
.all-connected { position: relative; z-index: 5; width: 305px; margin-top: 4px; padding: 8px 13px; color: #fff; border-radius: 999px; background: var(--blue); box-shadow: 0 10px 20px rgba(49, 102, 237, .19); text-align: center; font-size: 12px; font-weight: 700; }

/* [홈 서비스 12카드] ⚠ 카드 순서에 따라 모바일 버튼 문구가 달라집니다. 아래 모바일 구역의 nth-child 규칙과 함께 보세요 */
.benefit-section { padding: 88px 0; background: var(--section-gray); }
.benefit-title { margin-bottom: 28px; }
.benefit-title p { margin: 0 0 2px; font-size: 15px; font-weight: 700; }
.benefit-title h2 { margin: 0; font-family: "SUIT", sans-serif; font-size: 24px; font-weight: 700; letter-spacing: normal; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px 16px; } .benefit-grid:has(> :nth-child(4):last-child) { grid-template-columns: repeat(4, 1fr); }
.benefit-card { position: relative; min-height: 220px; overflow: hidden; padding: 24px 22px 52px; border: 1px solid #e9ebf0; background: #fff; }
.benefit-card h3 { position: relative; z-index: 2; margin: 0 0 7px; color: var(--ink); font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 20px; line-height: 28px; font-weight: 700; letter-spacing: normal; }
.benefit-card p { position: relative; z-index: 2; width: calc(100% - 112px); height: 45.6px; display: -webkit-box; overflow: hidden; margin: 0; color: #565e66; font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 16px; line-height: 24px; font-weight: 400; letter-spacing: normal; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.service-picto { position: absolute; z-index: 1; top: 24px; right: 22px; width: 96px; height: 96px; }
.service-picto::after { position: absolute; z-index: -1; right: 13%; bottom: 7px; left: 13%; height: 10px; border-radius: 50%; background: rgba(42, 47, 67, .13); filter: blur(6px); content: ""; }
.service-picto img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 6px 6px rgba(42, 47, 67, .09)); }
.card-link { position: absolute; z-index: 4; right: 0; bottom: 0; left: 0; height: 52px; display: flex; align-items: center; padding: 0 22px; color: var(--ink); background: var(--blue-pale); font-family: "SUIT", sans-serif; font-size: 16px; line-height: 24px; font-weight: 400; letter-spacing: -.3px; }
.card-link svg { margin-left: auto; color: var(--blue); }
.promo-banner { position: relative; min-height: 220px; display: flex; align-items: center; overflow: hidden; margin-top: 34px; background: #eef0f5; }
.promo-banner::before { position: absolute; z-index: 2; inset: 0 auto 0 0; width: 68%; background: linear-gradient(90deg, rgba(255, 255, 255, .46) 0%, rgba(255, 255, 255, .24) 58%, rgba(255, 255, 255, 0) 100%); content: ""; pointer-events: none; }
.promo-copy { position: relative; z-index: 3; width: 52%; padding-left: 54px; }
.promo-copy p { margin: 0 0 7px; color: var(--purple); font-size: 14px; font-weight: 700; }
.promo-copy h3 { margin: 0; font-size: 22px; line-height: 1.4; font-weight: 700; letter-spacing: normal; }
.promo-visual { position: absolute; inset: 0 0 0 auto; width: 53%; padding: 10px 24px 8px 0; }
.promo-visual::after { position: absolute; right: 12%; bottom: 24px; width: 68%; height: 17px; border-radius: 50%; background: rgba(42, 47, 67, .11); filter: blur(8px); content: ""; }
.promo-visual img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 9px 9px rgba(42, 47, 67, .08)); }

/* [후기 카드] 홈과 서비스 페이지가 함께 씁니다. 모바일에서는 옆으로 넘기는 줄로 바뀝니다 */
.review-section { padding: 88px 0; }
.section-topline { display: flex; align-items: center; justify-content: space-between; margin-bottom: 23px; }
.section-topline h2 { margin: 0; font-size: 24px; font-weight: 700; }
.section-topline a { color: var(--muted); font-size: 14px; }
.reviews-wrap { position: relative; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.review-card { min-height: 240px; display: flex; flex-direction: column; align-items: flex-start; padding: 25px; border: 1px solid #e9ebf0; background: #fff; }
.review-pill { display: inline-flex; padding: 5px 10px; color: #3166ed; border-radius: 9px; background: #eaf2ff; font-size: 11px; font-weight: 700; }
.review-card h3 { margin: 16px 0 9px; font-size: 17px; line-height: 1.45; font-weight: 700; }
.review-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.review-mask { width: 124px; height: 18px; flex: 0 0 18px; margin-top: auto; border-radius: 9px; background: linear-gradient(90deg, #e5e7eb 0 25%, #f3f4f6 25% 32%, #e5e7eb 32% 68%, #f3f4f6 68% 75%, #e5e7eb 75%); }
.review-arrow { position: absolute; z-index: 5; top: 50%; width: 38px; height: 38px; display: grid; place-items: center; padding: 0; color: #777e8d; border: 1px solid #e0e4eb; border-radius: 50%; background: #fff; box-shadow: 0 6px 17px rgba(40, 48, 72, .09); transform: translateY(-50%); }
.review-arrow.prev { left: -50px; }
.review-arrow.next { right: -50px; }

/* [홈 카톡 상담 띠] 오른쪽 캐릭터는 그림 파일이 아니라 CSS로 그린 도형입니다 */
.contact-banner { background: linear-gradient(105deg, #dfeeff, #d6e6ff); }
.contact-inner { position: relative; height: 280px; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.contact-copy { position: relative; z-index: 3; }
.contact-copy p { margin: 0 0 4px; color: var(--ink); font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 20px; line-height: 28px; font-weight: 700; letter-spacing: normal; }
.contact-copy h2 { margin: 0 0 16px; color: #285fdc; font-size: 32px; line-height: 1.3; font-weight: 700; letter-spacing: normal; }
.kakao-btn { width: 196px; height: 46px; display: flex; align-items: center; justify-content: center; gap: 9px; color: #fff; border-radius: 24px; background: var(--blue); box-shadow: 0 10px 22px rgba(49, 102, 237, .2); font-size: 15px; font-weight: 700; }
.contact-art { position: absolute; right: 64px; bottom: -34px; width: 285px; height: 245px; }
.contact-bubble { position: absolute; top: 15px; left: 0; width: 158px; padding: 16px 18px; border-radius: 19px 19px 5px 19px; background: #fff; box-shadow: 0 14px 28px rgba(54, 83, 143, .11); font-size: 12px; font-weight: 700; }
.contact-bubble span { display: block; width: 66px; height: 7px; margin-top: 8px; border-radius: 5px; background: #d9e5ff; }
.contact-character { position: absolute; right: 0; bottom: 0; width: 170px; height: 170px; border-radius: 49% 51% 44% 56%; background: linear-gradient(145deg, #785bed, #416ef3); box-shadow: inset -18px -20px 30px rgba(39, 46, 156, .2), 0 18px 35px rgba(60, 78, 170, .19); transform: rotate(-8deg); }
.contact-character::before { position: absolute; top: 58px; left: 55px; width: 10px; height: 10px; border-radius: 50%; background: #fff; box-shadow: 44px 0 0 #fff; content: ""; }
.contact-character::after { position: absolute; top: 82px; left: 70px; width: 31px; height: 14px; border-bottom: 4px solid #fff; border-radius: 50%; content: ""; }

/* [푸터] 모든 페이지 공통 */
.footer { padding: 40px 0 52px; color: var(--muted); background: var(--footer-gray); font-size: 12px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-bottom: 18px; color: #4f5663; font-size: 13px; font-weight: 700; }
.footer-info { line-height: 1.65; }
.footer-info p { margin: 0 0 2px; }
.footer-disclaimer { max-width: 900px; margin: 13px 0 0; padding-top: 13px; border-top: 1px solid #dce0e6; line-height: 1.62; }
.sns-row { display: flex; gap: 8px; margin-top: 15px; }
.sns-row a { width: 29px; height: 29px; display: grid; place-items: center; color: #969da9; border-radius: 50%; background: #fff; font-size: 10px; font-weight: 700; }
.copyright { margin: 14px 0 0; color: var(--muted); }

/* [PC 우측 고정 버튼] 홈 전용. 가로 1180px 이하에서는 숨깁니다 */
.floating { position: fixed; z-index: 40; top: 205px; right: max(18px, calc((100vw - 1260px) / 2)); width: 62px; display: flex; flex-direction: column; align-items: center; padding: 9px 0; border: 1px solid #e5e7ed; border-radius: 17px; background: #fff; box-shadow: 0 10px 28px rgba(37, 45, 70, .1); }
.floating a { width: 42px; height: 42px; display: grid; place-items: center; color: #5640ba; border-radius: 12px; background: #f1f3f8; }
.floating a + a { margin-top: 5px; }
.floating .kakao-float { color: var(--ink); border-radius: 50%; background: #ffe100; }
.floating .estimate-float { color: #fff; background: #3166ed; }
.floating .top-float { color: #4a505c; background: #f0f2f6; }
.mobile-bottom-nav, .mobile-floating-actions { display: none; }

/* [반응형 1180px] 좁은 노트북. 고정 버튼을 숨기고 간격을 줄입니다 */
@media (max-width: 1180px) {
  .category-tabs a { font-size: 18px; }
  .quick-grid { gap: 5px; }
  .quick-item { font-family: "SUIT", sans-serif; font-size: 18px; }
  .review-arrow.prev { left: -13px; }
  .review-arrow.next { right: -13px; }
  .floating { display: none; }
}

/* [반응형 900px, 모바일] 홈 전체 배치가 바뀌는 구역 */
/* ⚠ 여기서 히어로가 보라색 카드로, 카드 버튼이 짧은 문구로 바뀝니다. PC만 보고 고치면 모바일이 깨집니다 */
@media (max-width: 900px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
  .top-notice { min-height: 31px; justify-content: flex-start; padding: 6px 36px 6px 15px; font-size: 10px; text-align: left; }
  header { position: sticky; z-index: 70; top: -52px; background: #fff; }
  .utility { height: 52px; }
  .utility-inner { width: 100%; padding: 0 14px; }
  .brand { min-width: 0; gap: 7px; font-size: 19px; }
  .brand-badge { min-width: 40px; height: 24px; font-size: 10px; }
  .utility-links, .utility-account { display: none; }
  .mobile-head-actions { display: flex; }
  .category-nav { position: sticky; z-index: 1; top: 0; height: 46px; }
  .category-row { width: 100%; }
  .category-tabs { display: flex; overflow-x: auto; scrollbar-width: none; }
  .category-tabs::-webkit-scrollbar { display: none; }
  .category-tabs a { flex: 0 0 auto; padding: 0 15px; font-family: "SUIT", sans-serif; font-size: 16px; line-height: 22.4px; font-weight: 700; }
  .category-tabs a::after { right: 15px; left: 15px; }
  .category-tabs a.is-active { color: var(--purple); }
  .category-tabs a.is-active::after { height: 2px; opacity: 1; transform: scaleX(1); }
  .all-menu { display: none; }

  .hero-section { padding-top: 12px; }
  .hero-card { height: 348px; border-radius: 18px; background: linear-gradient(135deg, #6c4cf1 0%, #7d63f5 100%); box-shadow: 0 12px 30px rgba(92, 65, 216, .24); }
  .hero-copy { width: 100%; height: auto; display: block; padding: 24px 22px 0; }
  .hero-kicker { margin-bottom: 7px; color: rgba(255, 255, 255, .76); font-size: 12px; line-height: 1.45; }
  .hero-copy h1, .hero-copy h2 { max-width: 100%; color: #fff; font-family: "SUIT", sans-serif; font-size: 20px; line-height: 1.4; font-weight: 700; }
  .hero-copy p:last-child { margin-top: 7px; color: rgba(255, 255, 255, .76); font-size: 13px; line-height: 1.45; }
  .hero-slide:nth-child(n + 2) .hero-copy::before { display: block; margin-bottom: 7px; color: rgba(255, 255, 255, .76); font-size: 12px; line-height: 1.45; font-weight: 700; content: "생활서비스 무료 비교"; }
  .hero-slide:nth-child(3) .hero-copy::before { content: "사업 서비스 한국어 안내"; }
  .hero-slide:nth-child(n + 2) .hero-copy h2::after { display: block; margin-top: 7px; color: rgba(255, 255, 255, .76); font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 13px; line-height: 1.45; font-weight: 700; content: "견적과 상담은 전부 무료"; }
  .hero-copy::after { width: fit-content; min-height: 34px; display: inline-flex; align-items: center; margin-top: 14px; padding: 6px 13px; color: #fff; border: 1px solid rgba(255, 255, 255, .82); border-radius: 999px; font-size: 12px; line-height: 20px; font-weight: 700; white-space: nowrap; content: "무엇이 되는지 보기 →"; }
  .hero-visual { inset: auto 14px 34px auto; width: min(46%, 226px); height: 118px; justify-content: flex-end; padding: 0; }
  .hero-visual::after { right: 7%; bottom: 3px; width: 82%; height: 12px; background: rgba(35, 22, 102, .18); }
  .hero-duo { gap: 0; padding: 0; }
  .hero-duo::after { right: 2%; width: 92%; }
  .hero-duo img { width: 53%; height: 100%; }
  .hero-duo img + img { margin-left: -9%; transform: translateY(7px); }
  .hero-arrow { display: none; }
  .pager { right: 16px; bottom: 14px; gap: 6px; }
  .hero-dot { width: 7px; height: 7px; background: rgba(255, 255, 255, .38); }
  .hero-dot.is-active { width: 18px; background: #fff; }

  .quick-services { padding: 48px 0; }
  .quick-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px 6px; }
  .quick-item { font-family: "SUIT", sans-serif; gap: 7px; font-family: "SUIT", sans-serif; font-size: 16px; line-height: 22.4px; font-weight: 700; }
  .quick-icon { width: 56px; height: 56px; aspect-ratio: auto; border-radius: 14px; }

  .section-heading { margin-bottom: 25px; }
  .section-heading p { font-size: 13px; }
  .section-heading h2 { font-family: "SUIT", sans-serif; font-size: 20px; font-weight: 700; }
  .problem-section { padding: 56px 0; border-top: 8px solid #f5f6f8; }
  .problem-grid { grid-template-columns: 1fr; gap: 13px; }
  .problem-card { height: 350px; padding: 32px 20px; border-radius: 16px; }
  .problem-card h3 { font-size: 20px; }
  .problem-card > p { font-size: 13px; }
  .problem-image { width: 190px; height: 190px; }

  .solution-section { padding: 56px 0; }
  .solution-card { min-height: 500px; display: flex; flex-direction: column; justify-content: center; border-radius: 16px; }
  .solution-copy { padding: 0 22px 30px; text-align: center; }
  .solution-copy .mini { font-size: 12px; }
  .solution-copy h3 { margin-bottom: 8px; font-size: 21px; }
  .solution-copy p:last-child { font-size: 12px; }
  .check-stack { width: 304px; max-width: 100%; height: auto; margin: 0; }
  .check-item { width: 278px; min-height: 50px; padding: 7px 11px; }
  .check-item:nth-child(1) { top: auto; left: auto; transform: translateX(-10px) rotate(-.7deg); }
  .check-item:nth-child(2) { top: auto; left: auto; transform: translateX(8px) rotate(.5deg); }
  .check-item:nth-child(3) { top: auto; left: auto; transform: translateX(-6px) rotate(-.4deg); }
  .check-item:nth-child(4) { top: auto; left: auto; transform: translateX(10px) rotate(.6deg); }
  .check-line { font-size: 12px; }
  .check-item small { font-size: 9px; }
  .all-connected { top: auto; left: auto; width: 278px; padding: 7px 10px; font-size: 10px; }

  .benefit-section { padding: 56px 0; }
  .benefit-title { margin-bottom: 21px; }
  .benefit-title p { font-size: 13px; }
  .benefit-title h2 { font-family: "SUIT", sans-serif; font-size: 20px; font-weight: 700; }
  .benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .benefit-card { min-height: 150px; height: auto; padding: 15px 12px 46px; border-radius: 16px; }
  .benefit-card h3 { min-height: 56px; margin-bottom: 5px; padding-right: 58px; font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 16px; line-height: 22px; font-weight: 700; }
  .benefit-card p { width: 100%; height: auto; display: block; overflow: visible; margin: 0; font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 13px; line-height: 20px; font-weight: 400; white-space: normal; text-overflow: clip; -webkit-line-clamp: unset; }
  .service-picto { top: 13px; right: 10px; bottom: auto; width: 56px; height: 56px; border-radius: 12px; }
  .card-link { height: 42px; overflow: hidden; padding: 0 12px; font-size: 0; line-height: 1; white-space: nowrap; }
  /* ⚠ 모바일 버튼 문구는 카드 순서(nth-child)로 정합니다. 홈 카드 순서를 바꾸면 여기도 같이 고쳐야 합니다 */
  .card-link::before { overflow: hidden; font-family: "SUIT", sans-serif; font-size: 13px; line-height: 20px; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; content: "무료 상담"; }
  .benefit-card:first-child .card-link::before { content: "무료 안내"; }
  .benefit-card:nth-child(3) .card-link::before,
  .benefit-card:nth-child(4) .card-link::before,
  .benefit-card:nth-child(7) .card-link::before { content: "무료 견적"; }
  .card-link svg { flex: 0 0 auto; }
  .promo-banner { min-height: 260px; display: block; margin-top: 22px; border-radius: 16px; }
  .promo-banner::before { inset: 0; width: 100%; background: linear-gradient(180deg, rgba(255,255,255,.56) 0%, rgba(255,255,255,.32) 38%, rgba(255,255,255,0) 72%); }
  .promo-copy { width: 100%; padding: 28px 22px 0; }
  .promo-copy p { font-size: 14px; }
  .promo-copy h3 { font-size: 22px; }
  .promo-visual { inset: auto 0 0; width: 100%; height: 58%; padding: 0 24px 8px; }
  .promo-visual::after { right: 22%; bottom: 20px; width: 56%; }

  .review-section { padding: 56px 0; }
  .section-topline h2 { font-family: "SUIT", sans-serif; font-size: 20px; font-weight: 700; }
  .section-topline a { font-size: 12px; }
  .review-grid { width: 100%; display: flex; gap: 10px; overflow-x: auto; padding: 0 14px 7px 0; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .review-grid::-webkit-scrollbar { display: none; }
  .review-card { min-width: 82vw; min-height: 240px; flex: 0 0 82vw; padding: 22px; border-radius: 16px; scroll-snap-align: start; }
  .review-card h3 { font-size: 15px; }
  .review-card p { font-size: 12px; }
  .review-arrow { display: none; }

  .contact-inner { height: 255px; justify-content: flex-start; padding-top: 38px; }
  .contact-copy p { font-size: 20px; line-height: 28px; }
  .contact-copy h2 { max-width: 320px; margin-bottom: 16px; font-family: "SUIT", sans-serif; font-size: 20px; font-weight: 700; }
  .kakao-btn { width: 174px; height: 42px; font-size: 13px; }
  .contact-art { right: -48px; bottom: -46px; transform: scale(.72); transform-origin: right bottom; }

  .footer { padding: 34px 0 42px; font-size: 10px; }
  .footer-links { gap: 8px 15px; margin-bottom: 16px; font-size: 11px; }
  .footer-info { line-height: 1.7; }
  .footer-disclaimer { margin-top: 11px; padding-top: 11px; }
  .sns-row { margin-top: 14px; }
  .copyright { margin-top: 12px; }

  /* [모바일 하단 탭과 떠 있는 버튼] 가로 900px 이하에서만 나타납니다. 5칸 기준이라 메뉴를 늘리면 배치도 고쳐야 합니다 */
  .mobile-bottom-nav { position: fixed; z-index: 90; right: 0; bottom: 0; left: 0; height: calc(60px + env(safe-area-inset-bottom)); display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); padding: 0 4px env(safe-area-inset-bottom); border-top: 1px solid var(--line); background: #fff; }
  .mobile-bottom-nav a { min-width: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; color: #9aa0a8; font-family: "SUIT", sans-serif; font-size: 10px; line-height: 14px; font-weight: 400; white-space: nowrap; }
  .mobile-bottom-nav svg { width: 22px; height: 22px; flex: 0 0 22px; }
  .mobile-bottom-nav a.is-active { color: var(--purple); font-weight: 700; }
  .mobile-floating-actions { position: fixed; z-index: 85; right: 16px; bottom: calc(76px + env(safe-area-inset-bottom)); display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
  .mobile-estimate-pill { min-height: 40px; display: inline-flex; align-items: center; justify-content: center; padding: 9px 16px; color: #fff; border-radius: 999px; background: var(--purple); box-shadow: 0 8px 22px rgba(104, 71, 232, .28); font-family: "SUIT", sans-serif; font-size: 13px; line-height: 20px; font-weight: 700; white-space: nowrap; }
  .mobile-chat-float { width: 52px; height: 52px; display: grid; place-items: center; color: #fff; border-radius: 50%; background: var(--purple); box-shadow: 0 8px 22px rgba(104, 71, 232, .32); }
}

/* [반응형 400px] 홈의 아주 좁은 화면 보정 */
@media (max-width: 400px) {
  .container { width: min(calc(100% - 22px), var(--container)); }
  .hero-copy { padding-right: 18px; padding-left: 18px; }
  .quick-icon { width: 56px; height: 56px; }
  .benefit-card { min-height: 150px; height: auto; padding-right: 10px; padding-left: 10px; }
  .benefit-card h3 { padding-right: 56px; }
  .service-picto { right: 8px; width: 56px; height: 56px; }
  .card-link { padding-inline: 10px; font-size: 0; }
}

/* [움직임 줄이기] 기기에서 애니메이션 끄기를 켠 손님에게 전환 효과를 없앱니다. 접근성 항목이라 지우지 마세요 */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* [공용 견적폼] ⚠ 12개 서비스 페이지가 똑같은 폼을 씁니다. 여기를 고치면 12곳 접수폼이 전부 바뀝니다 */
/* 폼 안 순서. 제목, 입력칸, 선택 버튼, 동의 묶음, 제출 버튼, 완료 카드 */
.quote-section {
  padding: 88px 0;
  background: var(--section-gray);
}
.quote-shell {
  width: min(100%, 760px);
  margin-inline: auto;
}
.quote-heading {
  margin: 0 0 28px;
  text-align: center;
}
.quote-heading .eyebrow {
  margin: 0 0 6px;
  color: var(--purple);
  font-size: 14px;
  font-weight: 700;
}
.quote-heading h2 {
  margin: 0;
  font-family: "SUIT", sans-serif;
  font-size: 28px;
  line-height: 1.4;
  font-weight: 700;
}
.quote-heading p:last-child {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.quote-form-card {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}
.quote-form {
  display: grid;
  gap: 24px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 16px;
}
.form-field {
  min-width: 0;
}
.form-field--full {
  grid-column: 1 / -1;
}
.form-label,
.form-legend {
  display: block;
  margin: 0 0 9px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}
.form-required {
  margin-left: 3px;
  color: var(--purple);
}
.form-help,
.form-error {
  display: block;
  margin: 7px 0 0;
  font-size: 12px;
  line-height: 1.5;
}
.form-help {
  color: var(--muted);
}
.form-error {
  color: #d53f4c;
}
.quote-form input[type="text"],
.quote-form input[type="tel"],
.quote-form input[type="email"],
.quote-form input[type="date"],
.quote-form input[type="number"],
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 52px;
  margin: 0;
  padding: 13px 15px;
  color: var(--ink);
  border: 1px solid #dfe2e8;
  border-radius: 12px;
  background: #fff;
  font: inherit;
  font-size: 14px;
  line-height: 1.5;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.quote-form textarea {
  min-height: 120px;
  resize: vertical;
}
.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #a3a8b1;
}
.quote-form input:hover,
.quote-form select:hover,
.quote-form textarea:hover {
  border-color: #c9cdd6;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(104, 71, 232, .1);
}
.quote-form input[aria-invalid="true"],
.quote-form select[aria-invalid="true"],
.quote-form textarea[aria-invalid="true"] {
  border-color: #d53f4c;
  background: #fffafb;
}
/* [드롭다운 껍데기] 기본 화살표를 지우고 CSS로 그린 화살표를 씁니다 */
.select-wrap {
  position: relative;
}
.select-wrap::after {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #777e8d;
  border-bottom: 2px solid #777e8d;
  content: "";
  pointer-events: none;
  transform: translateY(-70%) rotate(45deg);
}
.select-wrap select {
  padding-right: 42px;
  appearance: none;
}
.form-fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
/* [선택 버튼] 체크박스와 라디오를 숨기고 옆 글상자를 버튼처럼 보이게 합니다 */
/* ⚠ input을 숨기는 규칙을 지우면 12개 폼 전부에서 동그라미가 그대로 노출됩니다 */
.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.choice-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.choice-option {
  position: relative;
  min-width: 0;
}
.choice-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.choice-option span {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  color: #565e66;
  border: 1px solid #dfe2e8;
  border-radius: 12px;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.choice-option input:checked + span {
  color: var(--purple-deep);
  border-color: var(--purple);
  background: #f4f1ff;
  box-shadow: inset 0 0 0 1px var(--purple);
}
.choice-option input:focus-visible + span {
  outline: 3px solid rgba(49, 102, 237, .28);
  outline-offset: 3px;
}
.check-list {
  display: grid;
  gap: 10px;
}
.check-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #454b55;
  font-size: 14px;
  line-height: 1.5;
  cursor: pointer;
}
.check-option input {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin: 1px 0 0;
  accent-color: var(--purple);
}
.check-option strong {
  color: var(--ink);
  font-weight: 700;
}
.cross-sell-block {
  padding: 20px;
  border: 1px solid #e5e0fb;
  border-radius: 16px;
  background: #faf9ff;
}
.cross-sell-block .form-legend {
  margin-bottom: 5px;
}
.cross-sell-copy {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 12px;
}
/* [동의 묶음] 전체 동의와 개별 항목. 법적 필수 항목이라 구조를 함부로 줄이지 마세요 */
.agreement-block {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.agreement-all {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: #f8f9fb;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.agreement-list {
  display: grid;
  gap: 12px;
  padding: 16px 18px;
}
.agreement-block input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin: 0;
  accent-color: var(--purple);
}
.agreement-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #565e66;
  font-size: 13px;
  line-height: 1.45;
  cursor: pointer;
}
.agreement-row a {
  margin-left: auto;
  color: #858b96;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}
/* [제출 버튼과 상태 안내] 실패 안내(form-status)는 빨간 박스로 나옵니다 */
.form-submit {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  color: #fff;
  border: 0;
  border-radius: 14px;
  background: var(--purple);
  box-shadow: 0 10px 22px rgba(104, 71, 232, .22);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.form-submit:hover {
  background: var(--purple-deep);
  box-shadow: 0 12px 26px rgba(104, 71, 232, .28);
  transform: translateY(-1px);
}
.form-submit:disabled {
  color: #8f95a0;
  background: #e3e5e9;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}
.form-submit-note {
  margin: -14px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}
.form-status {
  margin: 0;
  padding: 12px 14px;
  color: #b4232f;
  border: 1px solid #f1c8cd;
  border-radius: 12px;
  background: #fff5f6;
  font-size: 13px;
  text-align: center;
}
/* [접수 완료 카드] 전송이 연결되면 폼 자리에 대신 나오는 화면 */
.completion-card {
  width: min(100%, 640px);
  margin-inline: auto;
  padding: 46px 34px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}
.completion-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  color: #fff;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 8px 20px rgba(104, 71, 232, .22);
}
.completion-card h2,
.completion-card h3 {
  margin: 0;
  font-family: "SUIT", sans-serif;
  font-size: 24px;
  line-height: 1.45;
  font-weight: 700;
}
.completion-card p {
  margin: 10px 0 22px;
  color: var(--muted);
  font-size: 14px;
}
.completion-card .kakao-btn {
  margin-inline: auto;
}

/* [반응형 720px] 견적폼을 한 줄 배치로 바꿉니다 */
@media (max-width: 720px) {
  .quote-section {
    padding: 56px 0;
  }
  .quote-heading {
    margin-bottom: 22px;
  }
  .quote-heading h2 {
    font-size: 22px;
  }
  .quote-form-card {
    padding: 24px 18px;
    border-radius: 16px;
  }
  .quote-form {
    gap: 20px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .form-field--full {
    grid-column: auto;
  }
  .choice-grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .agreement-all,
  .agreement-list {
    padding-right: 14px;
    padding-left: 14px;
  }
  .completion-card {
    padding: 38px 20px;
    border-radius: 16px;
  }
  .completion-card h2,
  .completion-card h3 {
    font-size: 21px;
  }
}

/* [반응형 400px] 선택 버튼을 한 줄에 하나씩 세웁니다 */
@media (max-width: 400px) {
  .choice-grid,
  .choice-grid--three {
    grid-template-columns: 1fr;
  }
}

/* [공용 서비스 상세 부품] ⚠ 12개 서비스 상세 페이지가 함께 쓰는 조각 모음. 여기를 고치면 상세 페이지가 전부 바뀝니다 */
/* ⚠ hidden이 붙은 요소는 무조건 숨김. 자바스크립트가 이 규칙으로 완료 화면과 조건부 칸을 켜고 끕니다 */
[hidden] { display: none !important; }

/* [상세 히어로] 서비스 페이지 첫 화면 카드. 모바일에서는 보라색 카드로 바뀝니다 */
.service-hero-section { padding: 24px 0 88px; }
.service-hero-card {
  position: relative;
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, .88fr);
  align-items: center;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(125deg, #f5f3ff 0%, #eef5ff 100%);
  box-shadow: var(--shadow);
}
.service-hero-copy { position: relative; z-index: 2; padding: 62px 40px 62px 64px; }
.service-eyebrow { margin: 0 0 10px; color: var(--purple); font-size: 14px; font-weight: 700; }
.service-hero-copy h1 { max-width: 680px; margin: 0; font-family: "SUIT", sans-serif; font-size: clamp(34px, 3.2vw, 48px); line-height: 1.28; font-weight: 700; }
.service-hero-copy .hero-description { max-width: 670px; margin: 20px 0 0; color: #565e66; font-size: 17px; line-height: 1.75; }
.service-cta { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; margin-top: 28px; padding: 13px 22px; color: #fff; border-radius: 14px; background: var(--purple); box-shadow: 0 10px 22px rgba(104, 71, 232, .22); font-size: 15px; font-weight: 700; }
.service-cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.service-cta-row .service-cta { margin-top: 0; }
.service-cta--secondary { color: var(--purple-deep); border: 1px solid #d9d1fa; background: rgba(255, 255, 255, .84); box-shadow: none; }
.service-hero-visual { position: relative; align-self: stretch; display: grid; place-items: center; padding: 44px; }
.service-hero-visual::before { position: absolute; width: min(360px, 82%); aspect-ratio: 1; border-radius: 50%; background: rgba(255, 255, 255, .72); content: ""; }
.service-hero-visual::after { position: absolute; bottom: 74px; width: 54%; height: 22px; border-radius: 50%; background: rgba(37, 43, 63, .1); filter: blur(10px); content: ""; }
.service-hero-visual img { position: relative; z-index: 1; width: min(320px, 92%); filter: drop-shadow(0 18px 18px rgba(45, 51, 76, .14)); }

/* [상세 섹션 틀과 제목] 각 구간의 위아래 여백과 가운데 제목 */
.service-section { padding: 88px 0; }
.service-section--soft { background: var(--section-gray); }
.service-section-heading { max-width: 760px; margin: 0 auto 36px; text-align: center; }
.service-section-heading .eyebrow { margin: 0 0 6px; color: var(--purple); font-size: 14px; font-weight: 700; }
.service-section-heading h2 { margin: 0; font-family: "SUIT", sans-serif; font-size: 30px; line-height: 1.4; font-weight: 700; }
.service-section-heading > p:last-child { margin: 12px 0 0; color: var(--muted); font-size: 15px; line-height: 1.7; }

/* [비교 2단 카드] 기존 방식과 어디든 방식을 나란히 보여주는 카드 */
.compare-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.compare-card { min-width: 0; padding: 32px; border: 1px solid var(--line); border-radius: 20px; background: #f8f9fb; }
.compare-card.is-solution { border-color: #dcd4ff; background: #f7f4ff; }
.compare-label { display: inline-flex; margin-bottom: 20px; padding: 6px 12px; color: #686f7b; border-radius: 999px; background: #e8eaee; font-size: 13px; font-weight: 700; }
.compare-card.is-solution .compare-label { color: var(--purple-deep); background: #e9e3ff; }
.plain-list { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.plain-list li { position: relative; padding-left: 20px; color: #4f5663; font-size: 15px; line-height: 1.65; }
.plain-list li::before { position: absolute; top: .68em; left: 2px; width: 7px; height: 7px; border-radius: 50%; background: #b3b8c1; content: ""; }
.compare-card.is-solution .plain-list li::before { background: var(--purple); }

/* [4칸 카드] 신뢰 포인트와 선택 버튼 배치에 함께 쓰입니다. 법인 페이지는 진행 단계 선택에 사용 */
.trust-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.trust-card { min-width: 0; padding: 26px 20px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow); }
.trust-icon { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 18px; color: var(--purple); border-radius: 13px; background: #f0ecff; }
.trust-card h3 { margin: 0 0 8px; font-size: 17px; line-height: 1.4; }
.trust-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

/* [렌탈 전용] 렌탈 페이지의 품목 탭과 상품 카드 */
.rental-catalog { display: grid; gap: 24px; }
.rental-category-tabs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.rental-category-tab { min-width: 0; min-height: 118px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; padding: 16px; color: #565e66; border: 1px solid var(--line); border-radius: 18px; background: #fff; font-size: 15px; font-weight: 700; cursor: pointer; transition: color .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.rental-category-tab:hover, .rental-category-tab.is-active { color: var(--purple-deep); border-color: #cfc3ff; background: #f7f4ff; box-shadow: var(--shadow); }
.rental-category-icon { width: 48px; height: 48px; display: grid; place-items: center; color: var(--purple); border-radius: 15px; background: #eee9ff; }
.rental-product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.rental-product-card { min-width: 0; display: flex; flex-direction: column; overflow: hidden; padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow); }
.rental-product-visual { height: 190px; display: grid; place-items: center; margin: -20px -20px 20px; padding: 24px; background: #f5f4fa; }
.rental-product-visual img { width: 150px; height: 150px; object-fit: contain; }
.rental-product-brand { margin: 0 0 5px; color: var(--muted); font-size: 12px; }
.rental-product-card h3 { margin: 0; font-size: 18px; line-height: 1.45; }
.rental-product-price { margin: 13px 0; color: var(--purple-deep); font-size: 17px; font-weight: 700; }
.rental-product-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.rental-product-badges span { padding: 5px 8px; color: #565e66; border-radius: 8px; background: #f1f3f7; font-size: 11px; font-weight: 700; }
.rental-product-card .form-submit { min-height: 48px; margin-top: auto; font-size: 14px; }
.rental-pending-card { min-height: 220px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 34px; border: 1px solid #ddd6fa; border-radius: 20px; background: linear-gradient(145deg, #faf9ff, #f0f5ff); text-align: center; box-shadow: var(--shadow); }
.rental-pending-card .pending-chip { margin-bottom: 16px; }
.rental-pending-card h3 { margin: 0; font-family: "SUIT", sans-serif; font-size: 23px; line-height: 1.45; }
.rental-pending-card p { max-width: 590px; margin: 10px 0 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.rental-pending-card .service-cta { margin-top: 20px; }

/* [청소와 방역 전용] 요금표, 점검 카드, AS 띠 */
.cleaning-feature-stack { display: grid; gap: 22px; }
.feature-panel { padding: 34px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow); }
.feature-panel-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.feature-panel-kicker { margin: 0 0 5px; color: var(--purple); font-size: 13px; font-weight: 700; }
.feature-panel h3 { margin: 0; font-family: "SUIT", sans-serif; font-size: 23px; line-height: 1.45; }
.feature-panel-copy { max-width: 820px; margin: 11px 0 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.pending-chip { flex: 0 0 auto; padding: 7px 11px; color: #685728; border: 1px solid #eadca9; border-radius: 999px; background: #fff9df; font-size: 12px; font-weight: 700; white-space: nowrap; }
.principle-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.principle-card { min-width: 0; padding: 18px; border-radius: 15px; background: #f7f8fb; }
.principle-card strong { display: block; margin-bottom: 5px; font-size: 14px; }
.principle-card span { color: var(--muted); font-size: 13px; line-height: 1.55; }
.rate-table-wrap { overflow: hidden; border: 1px solid var(--line); border-radius: 16px; }
.rate-table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.rate-table th, .rate-table td { padding: 15px 12px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; font-size: 13px; line-height: 1.5; }
.rate-table th { background: #f7f8fb; font-weight: 700; }
.rate-table tr:last-child td { border-bottom: 0; }
.rate-table th:last-child, .rate-table td:last-child { border-right: 0; }
.rate-mobile-grid { display: none; }
.inspection-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; }
.inspection-card { min-width: 0; padding: 18px 15px; border: 1px solid #e6e1fb; border-radius: 15px; background: #faf9ff; }
.inspection-card strong { display: block; margin-bottom: 7px; color: var(--purple-deep); font-size: 14px; }
.inspection-card span { color: #565e66; font-size: 12px; line-height: 1.6; }
.inspection-note { margin: 20px 0 0; padding-top: 18px; border-top: 1px solid var(--line); color: #4f5663; font-size: 14px; line-height: 1.7; }
.as-badge { position: relative; overflow: hidden; padding: 27px 30px 27px 96px; color: #fff; border-radius: 20px; background: linear-gradient(120deg, #6443dc, #446ce8); box-shadow: 0 12px 28px rgba(79, 69, 202, .2); }
.as-badge-icon { position: absolute; top: 26px; left: 28px; width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .38); border-radius: 50%; background: rgba(255, 255, 255, .13); }
.as-badge strong { display: block; margin-bottom: 7px; font-family: "SUIT", sans-serif; font-size: 19px; }
.as-badge p { margin: 0; color: rgba(255, 255, 255, .9); font-size: 14px; line-height: 1.7; }
.as-badge small { display: block; margin-top: 8px; color: rgba(255, 255, 255, .72); font-size: 11px; }

/* [단계 카드] 번호는 CSS가 자동으로 매깁니다. 카드를 지우면 번호가 알아서 다시 매겨집니다 */
.steps-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; counter-reset: service-step; }
.steps-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.step-card { position: relative; min-width: 0; padding: 28px 22px 24px; border: 1px solid var(--line); border-radius: 18px; background: #fff; counter-increment: service-step; }
.step-card::before { width: 34px; height: 34px; display: grid; place-items: center; margin-bottom: 18px; color: #fff; border-radius: 50%; background: var(--purple); font-size: 13px; font-weight: 700; content: counter(service-step); }
.step-card h3 { margin: 0 0 8px; font-size: 16px; }
.step-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.external-link-label { width: fit-content; display: flex; align-items: center; gap: 5px; margin-top: 10px; color: var(--purple); font-size: 12px; line-height: 1.5; font-weight: 700; }
.external-link-label svg { flex: 0 0 auto; }
.external-arrow { flex: 0 0 auto; margin-left: 7px; }

/* [자주 묻는 질문] details 태그 기반. 접힘 화살표는 CSS로 그립니다 */
.faq-list { width: min(100%, 900px); display: grid; gap: 10px; margin-inline: auto; }
.faq-item { overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.faq-item summary { position: relative; padding: 20px 56px 20px 22px; font-size: 15px; font-weight: 700; line-height: 1.55; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { position: absolute; top: 50%; right: 22px; width: 10px; height: 10px; border-right: 2px solid #7c828d; border-bottom: 2px solid #7c828d; content: ""; transform: translateY(-70%) rotate(45deg); transition: transform .2s ease; }
.faq-item[open] summary::after { transform: translateY(-25%) rotate(225deg); }
.faq-answer { padding: 0 22px 21px; color: #565e66; font-size: 14px; line-height: 1.75; }
.faq-answer p { margin: 0; }

/* [연계 배너] 다른 서비스로 넘기는 카드 */
.related-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.related-card { min-width: 0; display: flex; align-items: center; gap: 18px; padding: 26px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow); }
.related-icon { width: 50px; height: 50px; display: grid; flex: 0 0 50px; place-items: center; color: var(--purple); border-radius: 15px; background: #f0ecff; }
.related-copy { min-width: 0; }
.related-copy p { margin: 0 0 6px; color: #343a44; font-size: 15px; line-height: 1.6; font-weight: 700; }
.related-copy span { color: var(--purple); font-size: 13px; font-weight: 700; }

/* [조건부 입력칸과 오류 안내] 특정 항목을 골랐을 때만 열리는 묶음 */
.conditional-panel { grid-column: 1 / -1; padding: 18px; border: 1px solid #e5e0fb; border-radius: 16px; background: #faf9ff; }
.conditional-panel .form-grid { gap: 18px 16px; }
.form-subheading { margin: 0 0 15px; color: var(--purple-deep); font-size: 13px; font-weight: 700; }
.form-inline-status { min-height: 20px; margin: -8px 0 0; color: #b4232f; font-size: 12px; text-align: center; }
.retry-button { margin-top: 8px; padding: 8px 12px; color: #b4232f; border: 1px solid #e9b7bd; border-radius: 9px; background: #fff; font: inherit; font-size: 12px; font-weight: 700; cursor: pointer; }
/* [전송 중과 전송 성공] 접수를 보내는 동안에는 버튼을 잠그고, 간이 폼은 성공했을 때만 초록 문구를 보여줍니다 */
.is-sending button[type="submit"] { cursor: progress; }
.form-inline-status.is-ok { color: #1a7a4e; }

/* [상세 페이지 고정 상담] PC 우측 카드와 모바일 하단 띠. 접수폼이 화면에 들어오면 form-in-view로 숨깁니다 */
.service-floating { position: fixed; z-index: 45; top: 190px; right: max(18px, calc((100vw - 1200px) / 2 - 230px)); width: 210px; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 12px 32px rgba(26, 32, 52, .12); }
.rental-page .service-floating { top: auto; bottom: 72px; }
.service-floating h2 { margin: 0 0 3px; font-size: 15px; }
.service-floating > p { margin: 0 0 13px; color: var(--muted); font-size: 11px; }
.quick-lead-form { display: grid; gap: 8px; }
.quick-lead-form input { width: 100%; min-width: 0; height: 38px; padding: 8px 10px; border: 1px solid #dfe2e8; border-radius: 10px; font: inherit; font-size: 12px; }
.quick-lead-form button { height: 38px; color: #fff; border: 0; border-radius: 10px; background: var(--purple); font-size: 12px; font-weight: 700; cursor: pointer; }
.quick-kakao-link { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 10px; color: #382f00; border-radius: 10px; background: #ffe100; font-size: 11px; font-weight: 700; line-height: 34px; }
.mobile-lead-bar { display: none; }
.form-in-view .service-floating,
.form-in-view .mobile-lead-bar { visibility: hidden; opacity: 0; pointer-events: none; }

/* 화면이 이보다 좁으면 우측 고정 카드는 숨깁니다 */
@media (max-width: 1699px) {
  .service-floating { display: none; }
}

/* [반응형 900px, 모바일] 서비스 상세 페이지 배치 */
/* ⚠ 여기서 PC용 표를 숨기고 모바일용 카드 목록을 켭니다. 표만 고치고 이 구역을 안 고치면 모바일에 반영되지 않습니다 */
@media (max-width: 900px) {
  body.service-page { padding-bottom: calc(134px + env(safe-area-inset-bottom)); }
  .service-hero-section { padding: 12px 0 56px; }
  .service-hero-card { min-height: 430px; display: block; border-radius: 18px; background: linear-gradient(135deg, #6c4cf1 0%, #7d63f5 100%); box-shadow: 0 12px 30px rgba(92, 65, 216, .24); }
  .service-hero-copy { padding: 28px 22px 160px; }
  .service-eyebrow { margin-bottom: 7px; color: rgba(255, 255, 255, .76); font-size: 12px; }
  .service-hero-copy h1 { color: #fff; font-size: 26px; line-height: 1.35; }
  .service-hero-copy .hero-description { margin-top: 12px; color: rgba(255, 255, 255, .82); font-size: 13px; line-height: 1.65; }
  .service-cta { min-height: 42px; margin-top: 18px; padding: 9px 15px; color: var(--purple-deep); background: #fff; box-shadow: none; font-size: 12px; }
  .service-cta-row { gap: 8px; margin-top: 18px; }
  .service-cta-row .service-cta { margin-top: 0; }
  .service-cta--secondary { color: #fff; border-color: rgba(255, 255, 255, .54); background: transparent; }
  .service-hero-visual { position: absolute; right: 16px; bottom: 20px; width: 180px; height: 138px; padding: 8px; }
  .service-hero-visual::before { width: 132px; }
  .service-hero-visual::after { bottom: 11px; width: 65%; height: 12px; background: rgba(35, 22, 102, .18); }
  .service-hero-visual img { width: 132px; }

  .service-section { padding: 56px 0; }
  .service-section-heading { margin-bottom: 25px; }
  .service-section-heading .eyebrow { font-size: 12px; }
  .service-section-heading h2 { font-size: 22px; }
  .service-section-heading > p:last-child { margin-top: 9px; font-size: 13px; }

  .compare-grid { grid-template-columns: 1fr; gap: 12px; }
  .compare-card { padding: 22px 18px; border-radius: 16px; }
  .compare-label { margin-bottom: 14px; }
  .plain-list { gap: 9px; }
  .plain-list li { font-size: 13px; }

  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .trust-card { padding: 18px 15px; border-radius: 15px; box-shadow: none; }
  .trust-icon { width: 36px; height: 36px; margin-bottom: 12px; }
  .trust-card h3 { min-height: 44px; margin-bottom: 5px; font-size: 14px; }
  .trust-card p { font-size: 11px; line-height: 1.6; }

  .rental-catalog { gap: 18px; }
  .rental-category-tabs { gap: 7px; }
  .rental-category-tab { min-height: 92px; gap: 7px; padding: 12px 4px; border-radius: 14px; font-size: 12px; }
  .rental-category-icon { width: 40px; height: 40px; border-radius: 12px; }
  .rental-category-icon svg { width: 22px; height: 22px; }
  .rental-product-grid { display: flex; gap: 10px; overflow-x: auto; padding: 0 14px 8px 0; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .rental-product-grid::-webkit-scrollbar { display: none; }
  .rental-product-card { min-width: 82%; flex: 0 0 82%; padding: 18px; scroll-snap-align: start; }
  .rental-product-visual { height: 160px; margin: -18px -18px 18px; }
  .rental-pending-card { min-height: 210px; padding: 28px 18px; border-radius: 17px; box-shadow: none; }
  .rental-pending-card h3 { font-size: 19px; }
  .rental-pending-card p { font-size: 12px; }

  .cleaning-feature-stack { gap: 14px; }
  .feature-panel { padding: 22px 18px; border-radius: 17px; box-shadow: none; }
  .feature-panel-head { display: block; margin-bottom: 18px; }
  .feature-panel h3 { font-size: 19px; }
  .feature-panel-copy { margin-top: 8px; font-size: 12px; }
  .pending-chip { width: fit-content; margin-top: 13px; font-size: 10px; }
  .principle-grid { grid-template-columns: 1fr; gap: 8px; }
  .principle-card { padding: 14px; }
  .principle-card strong { font-size: 13px; }
  .principle-card span { font-size: 11px; }
  .rate-table-wrap { display: none; }
  .rate-mobile-grid { display: grid; gap: 10px; }
  .rate-mobile-card { overflow: hidden; border: 1px solid var(--line); border-radius: 14px; }
  .rate-mobile-card h4 { margin: 0; padding: 12px 14px; background: #f7f8fb; font-size: 13px; }
  .rate-mobile-card dl { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px 12px; margin: 0; padding: 14px; }
  .rate-mobile-card dt, .rate-mobile-card dd { min-width: 0; margin: 0; font-size: 11px; line-height: 1.5; }
  .rate-mobile-card dd { text-align: right; }
  .inspection-grid { grid-template-columns: 1fr; gap: 8px; }
  .inspection-card { display: grid; grid-template-columns: 78px minmax(0, 1fr); align-items: start; gap: 8px; padding: 14px; }
  .inspection-card strong { margin: 0; font-size: 13px; }
  .inspection-card span { font-size: 11px; }
  .inspection-note { margin-top: 16px; padding-top: 14px; font-size: 12px; }
  .as-badge { padding: 72px 18px 20px; border-radius: 17px; }
  .as-badge-icon { top: 18px; left: 18px; width: 40px; height: 40px; }
  .as-badge strong { font-size: 17px; }
  .as-badge p { font-size: 12px; }

  .steps-grid { grid-template-columns: 1fr; gap: 9px; }
  .step-card { display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 3px 13px; padding: 17px; border-radius: 15px; }
  .step-card::before { grid-row: 1 / 3; margin: 0; }
  .step-card h3 { margin: 0; font-size: 14px; }
  .step-card p { font-size: 11px; }

  .faq-list { gap: 8px; }
  .faq-item { border-radius: 14px; }
  .faq-item summary { padding: 17px 46px 17px 16px; font-size: 13px; }
  .faq-item summary::after { right: 18px; }
  .faq-answer { padding: 0 16px 17px; font-size: 12px; }

  .related-grid { grid-template-columns: 1fr; gap: 10px; }
  .related-card { gap: 13px; padding: 18px; border-radius: 15px; box-shadow: none; }
  .related-icon { width: 42px; height: 42px; flex-basis: 42px; }
  .related-copy p { font-size: 13px; }
  .related-copy span { font-size: 11px; }
  .related-grid--dense { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .related-grid--dense .related-card { min-height: 164px; flex-direction: column; align-items: flex-start; gap: 10px; padding: 15px; }
  .related-grid--dense .related-copy p { font-size: 12px; line-height: 1.55; }

  .conditional-panel { padding: 15px; }
  .mobile-floating-actions { display: none; }
  .mobile-lead-bar { position: fixed; z-index: 86; right: 12px; bottom: calc(72px + env(safe-area-inset-bottom)); left: 12px; min-height: 46px; display: flex; align-items: center; justify-content: center; padding: 10px 16px; color: #fff; border-radius: 14px; background: var(--purple); box-shadow: 0 8px 24px rgba(104, 71, 232, .3); font-family: "SUIT", sans-serif; font-size: 14px; font-weight: 700; transition: opacity .2s ease, visibility .2s ease; }
}

/* [반응형 400px] 서비스 상세의 아주 좁은 화면 보정 */
@media (max-width: 400px) {
  .service-hero-card { min-height: 446px; }
  .service-hero-copy { padding-right: 18px; padding-bottom: 166px; padding-left: 18px; }
  .service-hero-copy h1 { font-size: 23px; }
  .service-cta-row { align-items: flex-start; }
  .service-cta-row .service-cta { padding-right: 12px; padding-left: 12px; }
  .trust-card { padding: 16px 12px; }
  .trust-card h3 { font-size: 13px; }
  .feature-panel { padding-right: 15px; padding-left: 15px; }
  .inspection-card { grid-template-columns: 70px minmax(0, 1fr); padding: 12px; }
  .agreement-row { font-size: 12px; }
}

/* [전체 메뉴 판] 헤더 오른쪽 햄버거 버튼이 여는 12칸 목록. site-common.js가 판을 만들어 넣습니다 */
/* ⚠ 이 판은 13개 페이지가 함께 씁니다. 서비스 이름과 설명은 site-common.js의 SERVICES 목록에서 고치세요 */
body.all-menu-open { overflow: hidden; }
.all-menu-panel { position: fixed; inset: 0; z-index: 300; display: flex; justify-content: center; align-items: flex-start; padding: 24px 16px; background: rgba(16, 22, 40, .45); overflow-y: auto; }
.all-menu-panel[hidden] { display: none; }
.all-menu-sheet { width: 100%; max-width: 760px; padding: 22px; border-radius: 18px; background: #fff; box-shadow: 0 24px 60px rgba(16, 22, 40, .22); }
.all-menu-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.all-menu-title { margin: 0; font-family: "SUIT", "Pretendard", sans-serif; font-size: 20px; font-weight: 700; }
.all-menu-close { width: 40px; height: 40px; display: grid; place-items: center; color: #333842; border: 0; border-radius: 10px; background: #f4f6fa; cursor: pointer; }
.all-menu-close:hover { background: #e9ecf3; }
.all-menu-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.all-menu-item { display: flex; flex-direction: column; gap: 3px; padding: 13px 14px; border: 1px solid var(--line); border-radius: 12px; transition: border-color .18s ease, background .18s ease; }
.all-menu-item strong { font-size: 15px; font-weight: 700; }
.all-menu-item span { color: var(--muted); font-size: 12px; line-height: 1.4; }
.all-menu-item:hover { border-color: var(--purple); background: #faf9ff; }
.all-menu-item[aria-current="page"] { border-color: var(--purple); background: #f2eeff; }
.all-menu-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.all-menu-home { padding: 9px 16px; color: #fff; border-radius: 10px; background: var(--purple); font-size: 14px; font-weight: 700; }
.all-menu-support { display: flex; gap: 14px; color: var(--muted); font-size: 13px; }
.all-menu-support a:hover { color: var(--purple); }
@media (max-width: 720px) {
  .all-menu-panel { padding: 0; }
  .all-menu-sheet { min-height: 100%; border-radius: 0; }
  .all-menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .all-menu-item span { display: none; }
}
