/* =====================================================================
   모바일 스타일 (≤768px)
   데스크톱은 1920 고정 캔버스 + zoom. 모바일은 zoom 해제 후 자연 흐름으로 재구성.
   모든 페이지에 style.css / sub.css / cases.css 뒤에 마지막으로 로드.
   ===================================================================== */
/* 햄버거 버튼: 데스크톱(769px+)에서만 숨김 */
@media (min-width: 769px) { .m-burger { display: none !important; } }

@media (max-width: 768px) {

  html, body { overflow-x: hidden; }

  /* ---------- 캔버스 → 흐름 리셋 ---------- */
  .hero, .sec02, .sec03, .sec04, .sec05, .sec06, .footer {
    display: block !important; height: auto !important; min-height: 0 !important;
    overflow: hidden !important;   /* 세로는 height:auto라 안 잘림, 가로 스필만 차단 */
  }
  .inner {
    position: static !important; width: 100% !important; height: auto !important;
    zoom: 1 !important; margin: 0 !important; padding: 0 20px !important;
    box-sizing: border-box; display: block !important;
  }
  .page {
    width: 100% !important; height: auto !important; zoom: 1 !important;
    overflow-x: hidden;
  }
  /* 서브: page 직계 콘텐츠 절대배치 해제 → DOM 순서대로 세로 흐름.
     static 이 아니라 relative 로 해야 내부 absolute 이미지가 컨테이너 안에 갇힘 */
  .page > *:not(.sub-header):not(.sub-footer) {
    position: relative !important;
    left: auto !important; right: auto !important; top: auto !important; bottom: auto !important;
    transform: none !important;
    width: auto !important; max-width: 100%;
  }

  /* =================================================================
     햄버거 헤더 (메인 .gnb / 서브 .sub-header 공통)
     ================================================================= */
  .m-burger {
    display: flex !important; flex-direction: column !important; justify-content: center !important; align-items: center !important; gap: 5px !important;
    position: fixed !important; top: 12px !important; right: 12px !important; left: auto !important; z-index: 9999 !important;
    width: 44px !important; height: 44px !important; padding: 0 !important; border: 0 !important; cursor: pointer;
    border-radius: 11px !important; background: rgba(0, 0, 0, .58) !important;
  }
  .m-burger span { display: block !important; width: 22px !important; height: 2.5px !important; border-radius: 2px; background: #fff !important; transition: transform .3s, opacity .3s; }
  .m-burger.is-x span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .m-burger.is-x span:nth-child(2) { opacity: 0; }
  .m-burger.is-x span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  /* 메인 헤더 바 */
  .gnb { position: absolute !important; height: 60px !important; background: linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.15)) !important; }
  .gnb-in { position: static !important; width: 100% !important; height: 60px !important; zoom: 1 !important; color: #fff; }
  /* 로고: 171:83 원본 비율 유지(82x40), 60px 바 안에 수직 중앙 */
  .gnb .logo { position: absolute !important; left: 16px !important; top: 10px !important; }
  .gnb .logo img { width: 82px !important; height: 40px !important; }

  /* 서브 헤더 바 (흰 배경, 검정 텍스트) */
  .sub-header { position: relative !important; height: 60px !important; color: var(--black); }
  .sub-header .logo { position: absolute !important; left: 16px !important; top: 10px !important; }
  .sub-header .logo img { width: 82px !important; height: 40px !important; }
  .sub-divider { top: 59px !important; width: 100vw !important; left: 50% !important; transform: translateX(-50%) !important; }

  /* 오버레이 메뉴 패널 (block + text-align 로 확실히 가운데) */
  .menu, .gnb-menu {
    position: fixed !important; top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important;
    width: 100% !important; height: 100% !important; margin: 0 !important;
    transform: none !important;   /* 데스크톱 translateX(-50%) 해제 — 패널이 좌측으로 밀리는 것 방지 */
    background: #141414 !important; z-index: 200 !important; display: none !important;
    text-align: center !important;
  }
  body.m-nav-open .menu, body.m-nav-open .gnb-menu { display: block !important; }
  body.m-nav-open { overflow: hidden; }
  .menu > ul, .gnb-menu > ul {
    position: fixed !important; top: 0 !important; left: 50% !important; transform: translateX(-50%) !important;
    display: block !important; width: 100% !important; height: auto !important;
    margin: 0 !important; padding: 130px 0 0 !important; text-align: center !important;
  }
  .menu > ul > li, .gnb-menu > ul > li { position: static !important; display: block !important; width: 100% !important; text-align: center !important; }
  .menu > ul > li > a, .gnb-menu > ul > li > a {
    display: block !important; width: 100% !important; box-sizing: border-box;
    padding: 16px 0 !important; font-size: 21px !important; color: #fff !important;
    letter-spacing: 0 !important; text-align: center !important;
  }
  .menu .chev-down, .gnb-menu .chev { display: none; }
  /* 데스크톱 GNB 장식(호버 언더라인·컬럼 디바이더)은 오버레이에서 숨김 */
  .menu > ul > li::before, .menu > ul > li:last-child::after,
  .gnb-menu > ul > li::before, .gnb-menu > ul > li:last-child::after,
  .menu > ul > li > a::after, .gnb-menu > ul > li > a::after { display: none !important; }
  /* 서브메뉴 (전 메뉴 아코디언) */
  .sub-menu, .sub-submenu {
    position: static !important; display: none !important; transform: none !important;
    width: 100% !important; background: none !important; box-shadow: none !important;
    padding: 0 0 10px !important; gap: 0 !important;
  }
  .sub-menu::before, .sub-submenu::before { display: none; }
  .has-sub.m-sub-open .sub-menu, .has-sub.m-sub-open .sub-submenu {
    display: flex !important; opacity: 1 !important; visibility: visible !important; pointer-events: auto !important;
  }
  .sub-menu a, .sub-submenu a { color: #cfe9f7 !important; font-size: 17px !important; padding: 14px 0 !important; }

  /* =================================================================
     푸터 (메인 .footer / 서브 .sub-footer 공통)
     ================================================================= */
  .footer, .sub-footer {
    position: static !important; width: 100% !important; height: auto !important; overflow: visible;
  }
  .footer-dark, .sub-footer .footer-dark {
    position: static !important; width: 100% !important; height: auto !important;
    background: var(--dark) !important; border-top-right-radius: 60px;
    padding: 44px 24px 36px; box-sizing: border-box; isolation: auto;
  }
  .footer-dark::before, .sub-footer .footer-dark::before,
  .footer-bar::before, .sub-footer .footer-bar::before { display: none !important; }
  .footer-dark .inner { position: static !important; width: 100% !important; padding: 0 !important; zoom: 1 !important; }
  .f-company { position: static !important; font-size: 24px !important; margin-bottom: 6px; }
  .f-tagline { position: static !important; font-size: 14px !important; margin-bottom: 22px; }
  .f-info { position: static !important; }
  .f-info > div { gap: 14px !important; margin-bottom: 3px; }
  .f-info dt { width: 60px !important; font-size: 13px !important; line-height: 1.6 !important; }
  .f-info dd { font-size: 13px !important; line-height: 1.6 !important; }
  .f-logo { position: static !important; width: 140px !important; height: 68px !important; margin-top: 24px; display: block; }

  .footer-bar, .sub-footer .footer-bar {
    position: static !important; width: 100% !important; height: auto !important;
    background: #1a1a1a !important; display: block !important;
  }
  .footer-bar .inner, .sub-footer .footer-bar > .bar-in {
    flex-direction: column; align-items: flex-start; gap: 8px;
    padding: 16px 24px !important; width: 100% !important; zoom: 1 !important;
  }
  .f-copy { font-size: 11px !important; }
  .f-links { gap: 18px; }
  .f-links a { font-size: 11px !important; }

  /* =================================================================
     메인 페이지
     ================================================================= */
  /* HERO — 풀스크린 슬라이더 */
  .hero { position: relative; height: 560px !important; min-height: 0 !important; background: #10161c; }
  .hero .inner {
    position: absolute !important; inset: 0 !important; width: 100% !important; height: 100% !important;
    padding: 100px 24px 96px !important;
    display: flex !important; flex-direction: column; justify-content: flex-end; align-items: flex-start;
    z-index: 2;
  }
  .hero-sub { position: static !important; font-size: 13px !important; letter-spacing: 3px !important; margin-bottom: 12px; }
  .hero-title { position: static !important; font-size: 36px !important; line-height: 1.22 !important; letter-spacing: -0.5px !important; white-space: normal !important; }
  .hero-desc { position: static !important; font-size: 15px !important; white-space: normal !important; margin-top: 14px; }
  .hero-indicator { position: absolute !important; left: 24px !important; bottom: 44px !important; }
  .hero-scroll { display: none !important; }

  /* SEC02 intro copy */
  .sec02 { padding: 72px 0 !important; }
  .sec02-copy { position: static !important; font-size: 20px !important; line-height: 1.9 !important; letter-spacing: -.3px !important; white-space: normal !important; text-align: center !important; padding: 0 10px; }

  /* SEC03 about slider → 세로 스택 */
  .sec03 { padding: 64px 0 !important; background: #fff; }
  .sec03 .inner > * { position: static !important; left: auto !important; top: auto !important; width: auto !important; }
  .sec03-title { position: static !important; font-size: 28px !important; margin-bottom: 12px; }
  .sec03-sub { position: static !important; font-size: 15px !important; line-height: 1.6 !important; margin-bottom: 28px; }
  .sec03-arrows { display: none !important; }
  .sec03-side, .sec05-word { display: none !important; }
  .sec-eyebrow { position: static !important; font-size: 12px !important; letter-spacing: 3px !important; margin-bottom: 8px; }
  .sec04 .sec-eyebrow { color: #009edd !important; }
  .vc-num { font-size: 48px !important; right: 20px !important; top: 12px !important; }
  .s3-slider {
    position: static !important; width: 100% !important; height: auto !important;
    display: flex !important; flex-direction: column; gap: 16px;
  }
  .s3-card {
    position: static !important; left: auto !important; top: auto !important;
    width: 100% !important; height: 200px !important; opacity: 1 !important;
    border-radius: 20px; overflow: hidden;
  }
  .s3-card .s3-imgbox { position: relative !important; width: 100% !important; height: 100% !important; border-radius: 0; }
  .s3-card .s3-dim { opacity: .3 !important; }
  .s3-card .s3-grad, .s3-card .s3-hover, .s3-card .s3-label.on { display: none !important; }
  .s3-card .s3-label {
    position: absolute !important; left: 24px !important; bottom: 22px !important; top: auto !important;
    font-size: 24px !important; color: #fff !important; opacity: 1 !important; transform: none !important;
  }

  /* SEC04 values → 세로 스택 */
  .sec04 { padding: 64px 0 !important; background: #fff; }
  .sec04::before { display: none; }
  .sec04 .inner > * { position: static !important; }
  .sec04-title { position: static !important; font-size: 28px !important; margin-bottom: 24px; color: #3b3b3b !important; }
  .values { position: static !important; width: 100% !important; height: auto !important; display: flex !important; flex-direction: column; gap: 16px; }
  .value-card {
    position: static !important; left: auto !important; top: auto !important;
    width: 100% !important; height: 220px !important; border-radius: 20px; overflow: hidden;
  }
  .value-card .vc-compact { position: absolute !important; left: 24px !important; bottom: 24px !important; top: auto !important; opacity: 1 !important; }
  .value-card .vc-big { font-size: 26px !important; }
  .value-card .vc-small { font-size: 13px !important; }
  .value-card .vc-expand { display: none !important; }

  /* SEC05 7단계 → 세로 스택 */
  .sec05 { padding: 64px 0 !important; background: #3a424b; }
  .sec05 .inner > * { position: static !important; }
  .sec05-title { position: static !important; font-size: 26px !important; line-height: 1.35 !important; margin-bottom: 24px; }
  .steps-track {
    position: static !important; width: 100% !important; height: auto !important;
    display: flex !important; flex-direction: column; gap: 14px;
  }
  .steps-track .step-card {
    position: static !important; left: auto !important; top: auto !important;
    width: 100% !important; height: 180px !important; border-radius: 18px; overflow: hidden; opacity: 1 !important;
  }
  .steps-track .step-card .dim { opacity: .4 !important; }
  .steps-track .step-card .step-name { position: absolute !important; left: 22px !important; top: 22px !important; opacity: 1 !important; font-size: 22px !important; }
  .steps-track .step-card .step-desc { position: absolute !important; left: 22px !important; top: 58px !important; opacity: 1 !important; font-size: 14px !important; line-height: 1.5 !important; }
  .steps-timeline, .step-labels { display: none !important; }

  /* SEC06 CTA → 세로 스택 */
  .sec06 { padding: 56px 0 64px !important; background: #fff !important; }
  .sec06 .inner { display: flex !important; flex-direction: column; gap: 16px; }
  .cta-card {
    position: static !important; left: auto !important; top: auto !important;
    width: 100% !important; height: 200px !important; border-radius: 24px;
  }
  .cta-title { position: absolute !important; left: 28px !important; top: 34px !important; font-size: 30px !important; }
  .cta-desc { position: absolute !important; left: 28px !important; top: 96px !important; font-size: 15px !important; line-height: 1.5 !important; }
  .cta-chev { right: 28px !important; bottom: 34px !important; }

  /* =================================================================
     서브페이지 공통 (title / sub / banner / tabs)
     ================================================================= */
  .page-title { position: static !important; width: 100% !important; font-size: 30px !important; line-height: 1.3 !important; text-align: center; padding: 40px 20px 6px !important; }
  .prod-sub { position: static !important; width: 100% !important; font-size: 14px !important; text-align: center; padding: 0 20px 26px !important; white-space: normal !important; }
  .prod-banner, .page-banner {
    position: static !important; width: 100% !important; height: 220px !important;
    left: auto !important; transform: none !important; margin-bottom: 8px;
  }
  .sub-tabs {
    position: static !important; width: 100% !important; height: auto !important;
    gap: 14px 30px !important; flex-wrap: wrap; justify-content: center;
    padding: 10px 16px 30px !important;
  }
  .sub-tabs a { font-size: 14px !important; }
  .sub-tabs a.active { padding: 0 6px !important; }
  .sub-tabs a.active::before { width: calc(100% + 22px) !important; height: 34px !important; }

  /* 공통 라벨/헤딩 (서브) */
  /* 섹션 시작 라벨 앞에 일정한 상단 여백 → 섹션 간 간격 통일 */
  .p-label, .sec-label { position: static !important; font-size: 15px !important; padding: 0 20px !important; margin-top: 52px !important; }
  .p-head, .sec-heading { position: static !important; font-size: 26px !important; line-height: 1.35 !important; padding: 6px 20px 0 !important; white-space: normal !important; letter-spacing: -.5px !important; }

  /* ---------- 인사말 ---------- */
  .greet-head { position: static !important; font-size: 24px !important; line-height: 1.45 !important; padding: 34px 20px 0 !important; white-space: normal !important; }
  .greet-text { position: static !important; padding: 22px 20px 0 !important; }
  .greet-text p { font-size: 15px !important; line-height: 1.75 !important; margin-bottom: 20px !important; white-space: normal !important; }
  .greet-text p br { display: none; }
  .greet-sign { position: static !important; padding: 10px 20px 0 !important; }
  .greet-sign .role { font-size: 15px !important; }
  .greet-sign .name { font-size: 24px !important; }
  .greet-photo { position: relative !important; width: calc(100% - 40px) !important; height: 300px !important; margin: 28px 20px 56px !important; border-radius: 20px; overflow: hidden; }
  .greet-photo img { width: 100% !important; height: 100% !important; object-fit: cover; }

  /* ---------- 회사연혁 ---------- */
  .gv-lead { position: static !important; font-size: 26px !important; line-height: 1.4 !important; padding: 10px 20px 0 !important; white-space: normal !important; }
  .gv-sub { position: static !important; font-size: 14px !important; line-height: 1.7 !important; padding: 10px 20px 0 !important; white-space: normal !important; }
  .gv-sub br { display: none; }
  .gv-cards { position: static !important; display: flex !important; flex-direction: column; gap: 14px; padding: 22px 20px 0 !important; }
  .gv-card { width: 100% !important; height: 300px !important; }
  .gv-card .gv-grad { opacity: 1 !important; }
  .gv-card .gv-name { opacity: 1 !important; top: 96px !important; font-size: 32px !important; line-height: 1.2 !important; transform: none !important; }
  .gv-card .gv-desc { opacity: 1 !important; top: 150px !important; font-size: 16px !important; line-height: 1.55 !important; white-space: normal !important; transform: none !important; padding: 0 24px !important; box-sizing: border-box; }
  .biz-img { position: static !important; width: calc(100% - 40px) !important; margin: 22px 20px 0 !important; }
  .biz-img img { width: 100% !important; height: auto !important; }
  .biz-name { position: static !important; font-size: 24px !important; padding: 12px 20px 0 !important; }
  .biz-desc { position: static !important; font-size: 15px !important; line-height: 1.6 !important; padding: 6px 20px 0 !important; white-space: normal !important; }
  .biz-desc br { display: none; }
  .hist-year { position: static !important; font-size: 20px !important; padding: 26px 20px 0 !important; }
  .hist-desc { position: static !important; font-size: 16px !important; color: #8b8b8b; padding: 6px 20px 22px !important; }
  .hist-line {
    display: block !important; position: static !important;
    width: calc(100% - 40px) !important; height: 1px !important;
    margin: 0 20px !important; background: #e3e3e3;
  }

  /* ---------- 오시는 길 ---------- */
  .loc-map { position: static !important; width: calc(100% - 40px) !important; height: 300px !important; margin: 6px 20px 0 !important; border-radius: 18px; overflow: hidden; }
  .loc-map img { width: 100% !important; height: 100% !important; object-fit: cover; }
  .loc-card { position: static !important; width: calc(100% - 40px) !important; height: auto !important; margin: 18px 20px 40px !important; padding: 28px 24px !important; display: block !important; }
  .loc-logo { position: static !important; width: 150px !important; height: 73px !important; margin-bottom: 22px; display: block; }
  .loc-info { position: static !important; }
  .loc-info .row { display: flex; gap: 16px; margin-bottom: 8px; }
  .loc-info dt { width: 78px !important; font-size: 14px !important; }
  .loc-info dd { font-size: 14px !important; }
  .loc-route { margin: 0 20px 40px !important; }
  .lr-head { font-size: 20px !important; }
  .lr-grid { margin-top: 14px; flex-direction: column; gap: 12px; }
  .lr-item { gap: 16px; padding: 18px 20px; border-radius: 18px; }
  .lr-ic { font-size: 14px; padding: 8px 16px; }
  .lr-way { font-size: 15px; white-space: normal; }
  .lr-sub { font-size: 12px; margin-top: 4px; white-space: normal; }

  /* ---------- 제품소개 ---------- */
  .prod-intro-img { position: relative !important; width: calc(100% - 40px) !important; height: 240px !important; margin: 10px 20px 0 !important; background: #fff; border: 1px solid #eee; border-radius: 16px; overflow: hidden; }
  .prod-intro-img img { width: 100% !important; height: 100% !important; object-fit: contain !important; padding: 18px !important; box-sizing: border-box; }
  .prod-intro-text, .prod-intro-desc, .prod-intro-body { position: relative !important; font-size: 15px !important; line-height: 1.7 !important; padding: 16px 20px 0 !important; white-space: normal !important; }
  .prod-intro-text br, .prod-intro-desc br, .prod-intro-body br { display: none; }
  .feat-card {
    position: static !important; left: auto !important; top: auto !important;
    width: calc(100% - 40px) !important; height: auto !important; min-height: 200px;
    margin: 16px 20px 0 !important; padding: 30px 26px 34px; box-sizing: border-box;
  }
  .feat-card .fc-icon { position: static !important; width: 72px !important; height: 72px !important; margin-bottom: 18px; }
  .feat-card .fc-title { position: static !important; font-size: 24px !important; margin-bottom: 10px; }
  .feat-card .fc-desc { position: static !important; font-size: 15px !important; line-height: 1.5 !important; white-space: normal !important; }
  .feat-card .fc-desc br { display: none; }
  /* 적용 현장 카드: 이미지 위 + 제목/설명 아래 세로 흐름 */
  .app-card { width: calc(100% - 40px) !important; height: auto !important; margin: 16px 20px 0 !important; }
  .app-card .ac-bg { display: none !important; }
  .app-card img { position: relative !important; left: auto !important; top: auto !important; width: 100% !important; height: 200px !important; border-radius: 16px !important; display: block; }
  .app-card .ac-title { position: relative !important; left: auto !important; top: auto !important; font-size: 22px !important; padding: 14px 4px 0 !important; letter-spacing: 0 !important; white-space: normal !important; }
  .app-card .ac-sub { position: relative !important; left: auto !important; top: auto !important; font-size: 15px !important; padding: 5px 4px 0 !important; white-space: normal !important; }
  /* 제품 라인업: 2열 그리드, 이미지 + 하단 라벨 */
  .pl-card { width: calc(50% - 24px) !important; height: auto !important; margin: 0 8px 16px !important; display: inline-block; vertical-align: top; border: .5px solid #ddd !important; border-radius: 16px !important; overflow: hidden; }
  .pl-card > img { position: relative !important; left: auto !important; top: auto !important; width: 100% !important; height: 150px !important; object-fit: contain !important; padding: 12px !important; box-sizing: border-box; background: #fff; display: block; }
  .pl-card .pl-label { position: relative !important; width: 100% !important; height: auto !important; padding: 11px 6px !important; font-size: 14px !important; line-height: 1.3 !important; }
  /* 규격표: 고정 px 컬럼 → 비율 컬럼으로 화면 안에 수납 */
  .spec-table { position: relative !important; width: calc(100% - 40px) !important; margin: 0 20px !important; border-radius: 16px !important; }
  .spec-row { grid-template-columns: 1.7fr 1.7fr 1fr 1.1fr !important; }
  .spec-row > div { white-space: normal !important; word-break: keep-all; }
  .spec-head { height: auto !important; }
  .spec-head > div { font-size: 13px !important; padding: 14px 4px; }
  .spec-body-row { height: auto !important; }
  .spec-body-row > div { font-size: 12px !important; padding: 12px 4px; }
  /* 참고 도면 아코디언: 헤더 축소 + 도면 이미지 폭 맞춤(잘림 방지) */
  .acc { position: static !important; width: calc(100% - 40px) !important; margin: 16px 20px 0 !important; }
  .acc-item { border-radius: 16px !important; margin-bottom: 12px !important; }
  .acc-head { height: 60px !important; padding-left: 20px !important; gap: 12px !important; }
  .acc-num { font-size: 20px !important; }
  .acc-title { font-size: 17px !important; }
  .acc-desc { display: none !important; }
  .acc-toggle { right: 18px !important; width: 20px !important; height: 20px !important; }
  .acc-toggle::before { height: 3px !important; }
  .acc-toggle::after { width: 3px !important; }
  .acc-body img { width: 100% !important; height: auto !important; padding: 14px !important; box-sizing: border-box; }

  /* ---------- 시공안내 ---------- */
  .ct7-track {
    position: static !important; width: 100% !important; height: auto !important;
    display: flex !important; flex-direction: column; gap: 14px; padding: 0 20px;
  }
  .ct7-track .step-card {
    position: static !important; left: auto !important; top: auto !important;
    width: 100% !important; height: 180px !important; border-radius: 18px; overflow: hidden; opacity: 1 !important;
  }
  .ct7-track .step-card .step-name { position: absolute !important; left: 22px !important; top: 22px !important; opacity: 1 !important; font-size: 22px !important; }
  .ct7-track .step-card .step-desc { position: absolute !important; left: 22px !important; top: 58px !important; opacity: 1 !important; font-size: 14px !important; line-height: 1.5 !important; }
  .ct-timeline, .ct-labels { display: none !important; }
  .step-row {
    position: static !important; left: auto !important; top: auto !important;
    width: calc(100% - 40px) !important; height: auto !important; margin: 14px 20px 0 !important;
    display: block !important; overflow: hidden;
  }
  .step-row .sr-img { position: static !important; width: 100% !important; height: 200px !important; }
  .step-row .sr-img img { position: static !important; width: 100% !important; height: 100% !important; object-fit: cover; }
  .step-row .sr-num { right: 20px !important; bottom: 12px !important; font-size: 80px !important; }
  .step-row .sr-text { position: static !important; opacity: 1 !important; transform: none !important; padding: 22px 24px 26px; }
  .step-row .sr-title { font-size: 26px !important; white-space: normal !important; }
  .step-row .sr-desc { font-size: 15px !important; line-height: 1.6 !important; margin-top: 14px !important; white-space: normal !important; }
  .step-row .sr-desc br { display: none; }

  /* ---------- 시공사례 목록 ---------- */
  .case-filter { position: static !important; flex-wrap: wrap; gap: 8px !important; padding: 0 20px 6px !important; }
  .case-filter a { width: auto !important; height: 42px !important; padding: 0 16px; font-size: 14px !important; }
  .case-card {
    position: static !important; left: auto !important; top: auto !important;
    width: calc(100% - 40px) !important; height: auto !important; margin: 16px 20px 0 !important;
  }
  .case-card .cc-img { position: static !important; width: 100% !important; height: 200px !important; }
  .case-card .cc-title { position: static !important; font-size: 22px !important; padding: 18px 22px 0; white-space: normal !important; }
  .case-card .cc-meta { position: static !important; font-size: 15px !important; padding: 6px 22px 0; }
  .case-card .cc-tag { position: static !important; display: inline-block; margin: 12px 22px 22px; }
  .case-page { position: static !important; margin: 30px 0 44px !important; }

  /* ---------- 시공사례 상세 ---------- */
  .cd-bc { position: static !important; font-size: 13px !important; padding: 8px 20px 0 !important; white-space: normal !important; }
  .cd-photo { position: static !important; width: calc(100% - 40px) !important; height: 220px !important; margin: 12px 20px 0 !important; }
  .cd-title { position: static !important; font-size: 26px !important; padding: 20px 20px 0 !important; white-space: normal !important; }
  .cd-tags { position: static !important; padding: 12px 20px 0 !important; gap: 10px; }
  .cd-tags span { font-size: 15px !important; padding: 6px 14px !important; }
  .cd-table { position: static !important; width: calc(100% - 40px) !important; margin: 18px 20px 0 !important; }
  .cd-row { height: auto !important; padding: 14px 0; flex-direction: column; align-items: flex-start; gap: 4px; }
  .cd-row .lbl { width: auto !important; padding-left: 0 !important; font-size: 17px !important; }
  .cd-row .val { font-size: 16px !important; }
  .cd-gallery { position: static !important; width: 100% !important; display: flex !important; flex-wrap: wrap; gap: 10px; padding: 22px 20px 0 !important; box-sizing: border-box; }
  .cd-gallery .cd-thumb { position: static !important; left: auto !important; top: auto !important; width: calc(50% - 5px) !important; height: 150px !important; }
  .cd-desc { position: static !important; width: calc(100% - 40px) !important; height: auto !important; margin: 26px 20px 40px !important; padding: 26px 24px; }
  .cd-desc p { position: static !important; font-size: 15px !important; line-height: 1.7 !important; white-space: normal !important; }
  .cd-desc p br { display: none; }

  /* ---------- 문의하기 ---------- */
  .inq-label { position: static !important; font-size: 15px !important; padding: 40px 20px 0 !important; }
  .inq-head { position: static !important; font-size: 30px !important; letter-spacing: -1px !important; padding: 6px 20px 0 !important; }
  .inq-req { position: static !important; font-size: 13px !important; padding: 8px 20px 0 !important; }
  form { display: block; padding: 6px 20px 0; }
  .inq-flabel { position: static !important; display: block; font-size: 19px !important; margin: 22px 0 10px; }
  .inq-input { position: static !important; width: 100% !important; height: 56px !important; font-size: 16px !important; padding: 0 18px !important; box-sizing: border-box; }
  .inq-textarea { position: static !important; width: 100% !important; height: 200px !important; font-size: 16px !important; padding: 18px !important; box-sizing: border-box; }
  .inq-type { position: static !important; flex-wrap: wrap; gap: 10px !important; }
  .inq-type button { width: calc(50% - 5px) !important; height: 52px !important; font-size: 16px !important; }
  .inq-agree { position: static !important; margin: 22px 0 0 !important; }
  .inq-agree label { font-size: 14px !important; }
  .inq-submit { position: static !important; width: 100% !important; height: 62px !important; font-size: 24px !important; letter-spacing: -.5px !important; margin: 26px 0 0 !important; }
  .inq-card {
    position: static !important; width: calc(100% - 40px) !important; height: auto !important;
    margin: 40px 20px 44px !important; padding: 34px 24px; box-sizing: border-box;
  }
  .inq-card .ic-head { position: relative !important; z-index: 1 !important; left: auto !important; top: auto !important; font-size: 22px !important; line-height: 1.45 !important; margin-bottom: 26px; }
  .inq-card .ic-head br { display: none; }
  .inq-card .ic-item { position: relative !important; z-index: 1 !important; left: auto !important; top: auto !important; margin-bottom: 20px; }
  .inq-card .ic-box { width: 56px !important; height: 56px !important; }
  .inq-card .ic-box svg { width: 28px !important; height: 28px !important; }
  .inq-card .ic-t { font-size: 15px !important; }
  .inq-card .ic-v { font-size: 16px !important; word-break: break-all; }
  .inq-card .ic-v small { font-size: 13px !important; }

  /* 내부 position:absolute 자식(card-img / 배너 img / 오버레이 / 라벨)을 담는
     컨테이너는 relative 로 유지해야 자식이 컨테이너 안에 갇힘 (static 이면 탈출) */
  .s3-card, .value-card, .cta-card,
  .steps-track .step-card, .ct7-track .step-card,
  .step-row, .inq-card, .gv-card, .greet-photo,
  .prod-banner, .page-banner, .loc-map, .cd-photo, .case-card .cc-img {
    position: relative !important;
    left: auto !important; right: auto !important; top: auto !important; bottom: auto !important;
    transform: none !important;
  }
}
