/* =============================================
   (주)HNT 홈페이지 스타일시트
   파일: css/style.css
   수정 시: 이 파일에서 색상·폰트·레이아웃 등을 변경하세요.
   ============================================= */

/* ── 기본 리셋 ── */
*{ margin:0; padding:0; box-sizing:border-box; }

body{
  font-family:'Malgun Gothic', sans-serif;
  background:#f5f5f5;
  color:#222;
  line-height:1.7;
}

a{ text-decoration:none; color:inherit; }

/* ── 스크롤 페이드 ── */
.fade{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .6s ease, transform .6s ease;
}
.fade.show{ opacity:1; transform:none; }

/* ── 고정 네비 ── */
nav{
  position:fixed; top:0; left:0; width:100%; z-index:900;
  background:rgba(10,26,47,.95);
  backdrop-filter:blur(8px);
  display:flex; align-items:center; justify-content:space-between;
  padding:0 5%; height:62px;
}
.nav-logo{
  color:#fff; font-size:1.25rem; font-weight:900; letter-spacing:-.5px;
}
.nav-logo span{ color:#2563eb; }
.nav-menu{ display:flex; gap:1.8rem; list-style:none; }
.nav-menu a{
  color:rgba(255,255,255,.75); font-size:.88rem;
  transition:color .2s;
}
.nav-menu a:hover{ color:#fff; }
.nav-call-wrap{
  display:flex; flex-direction:column; align-items:center; gap:3px;
}
.nav-call{
  background:#2563eb; color:#fff;
  padding:.4rem 1.1rem; border-radius:6px;
  font-weight:700; font-size:.85rem;
  transition:background .2s;
}
.nav-call:hover{ background:#1d4ed8; }
.nav-call-hint{
  color:#ffe812; font-size:.68rem; font-weight:700;
  white-space:nowrap; letter-spacing:-.2px;
}

/* ── 히어로 ── */
.hero{
  background:
    linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
    url('https://images.unsplash.com/photo-1518770660439-4636190af475?q=80&w=1600&auto=format&fit=crop')
    center/cover no-repeat;
  color:#fff;
  padding:160px 20px 100px;
  text-align:center;
}
.hero-eyebrow{
  display:inline-block;
  background:#2563eb; color:#fff;
  font-size:.78rem; font-weight:700; letter-spacing:2px;
  padding:.3rem 1rem; border-radius:3px;
  margin-bottom:1.4rem;
}
.hero h1{
  font-size:clamp(1.8rem,4.5vw,3.2rem);
  line-height:1.25; margin-bottom:1rem;
}
.hero h1 em{ color:#ffe812; font-style:normal; }
.hero p{
  font-size:clamp(1rem,2vw,1.2rem);
  color:rgba(255,255,255,.8);
  margin-bottom:2.4rem;
}
.hero-buttons{
  display:flex; justify-content:center; gap:14px; flex-wrap:wrap;
}
.btn{
  padding:16px 32px; border-radius:10px;
  font-size:1rem; font-weight:700;
  border:none; cursor:pointer;
  transition:opacity .2s, transform .15s;
  display:inline-block; text-align:center;
}
.btn:hover{ opacity:.88; transform:translateY(-2px); }
.btn-blue{ background:#2563eb; color:#fff; }
.btn-yellow{ background:#ffe812; color:#222; }
.btn-white{ background:#fff; color:#2563eb; }

/* ── 공통 컨테이너 ── */
.wrap{
  width:92%; max-width:1280px;
  margin:0 auto; padding:80px 0;
}
.sec-title{
  text-align:center;
  font-size:clamp(1.5rem,3vw,2.2rem);
  margin-bottom:12px;
}
.sec-sub{
  text-align:center; color:#555; font-size:.95rem;
  margin-bottom:48px; line-height:1.8;
}

/* ── 신뢰 배너 ── */
.trust-banner{
  background:#b91c1c; color:#fff;
  padding:18px 5%; text-align:center;
  font-size:.93rem; line-height:1.75;
}
.trust-banner strong{ font-weight:900; }

/* ── 증상 섹션 ── */
.symptom-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:28px;
}
.symptom-card{
  background:#fff; border-radius:18px;
  overflow:hidden;
  box-shadow:0 4px 18px rgba(0,0,0,.07);
  transition:transform .2s, box-shadow .2s;
}
.symptom-card:hover{
  transform:translateY(-5px);
  box-shadow:0 12px 32px rgba(0,0,0,.12);
}
.symptom-card img{
  width:100%; height:210px; object-fit:cover;
}
.symptom-body{ padding:26px; }
.symptom-body h3{ font-size:1.2rem; margin-bottom:10px; }
.symptom-body p{ font-size:.92rem; color:#444; margin-bottom:6px; }
.symptom-body .highlight{ color:#2563eb; font-weight:700; }

/* ── 문제점 vs 해결책 (핵심 신뢰 섹션) ── */
.compare-section{ background:#0a1a2f; }
.compare-section .sec-title{ color:#fff; }
.compare-section .sec-sub{ color:rgba(255,255,255,.6); }

.compare-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}
.compare-col h3{
  font-size:1rem; font-weight:800;
  padding:.6rem 1rem; border-radius:6px;
  margin-bottom:16px; letter-spacing:.5px;
}
.col-bad h3{ background:#7f1d1d; color:#fca5a5; }
.col-good h3{ background:#14532d; color:#86efac; }

.compare-item{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  border-radius:12px; padding:18px 20px;
  margin-bottom:12px;
  display:flex; gap:14px; align-items:flex-start;
}
.c-icon{ font-size:1.3rem; flex-shrink:0; margin-top:2px; }
.compare-item strong{ color:#fff; display:block; margin-bottom:4px; font-size:.95rem; }
.compare-item p{ color:rgba(255,255,255,.55); font-size:.85rem; line-height:1.6; }

/* ── 출장 프로세스 ── */
.process-band{ background:#f0f6ff; }
.steps{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
  gap:0; position:relative;
}
.step{
  text-align:center; padding:2rem 1rem; position:relative;
}
.step:not(:last-child)::after{
  content:'›'; position:absolute;
  right:-6px; top:38px;
  color:#2563eb; font-size:2rem; font-weight:900;
}
.step-circle{
  width:54px; height:54px;
  background:#2563eb; color:#fff;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:1.2rem; font-weight:900;
  margin:0 auto 14px;
}
.step h4{ font-size:.92rem; font-weight:800; margin-bottom:5px; }
.step p{ font-size:.78rem; color:#555; line-height:1.5; }

/* ── 출장 서비스 카드 ── */
.service-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(270px,1fr));
  gap:22px;
}
.svc-card{
  background:#fff; border-radius:16px; padding:28px;
  box-shadow:0 4px 18px rgba(0,0,0,.06);
  border-top:4px solid #2563eb;
  transition:transform .2s;
}
.svc-card:hover{ transform:translateY(-4px); }
.svc-tag{
  font-size:.7rem; font-weight:700; letter-spacing:1px;
  background:#dbeafe; color:#1d4ed8;
  padding:.2rem .7rem; border-radius:3px;
  display:inline-block; margin-bottom:14px;
}
.svc-card h3{ font-size:1.1rem; font-weight:800; margin-bottom:8px; }
.svc-card p{ font-size:.88rem; color:#555; line-height:1.7; }
.svc-price{
  margin-top:14px; font-size:1.1rem; font-weight:900; color:#2563eb;
}
.svc-price small{ font-size:.78rem; color:#888; font-weight:400; }

/* ── 요금표 ── */
.price-section{ background:#f5f5f5; }
.price-table{
  width:100%; border-collapse:collapse;
  background:#fff; border-radius:14px;
  overflow:hidden;
  box-shadow:0 4px 20px rgba(0,0,0,.07);
}
.price-table th{
  background:#1e3a5f; color:#fff;
  padding:14px 18px; text-align:left; font-size:.88rem;
}
.price-table td{
  padding:13px 18px; border-bottom:1px solid #f0f0f0; font-size:.88rem;
}
.price-table tr:last-child td{ border-bottom:none; }
.price-table tr:hover td{ background:#f8faff; }
.hl-row td{ font-weight:700; background:#f0f6ff !important; }
.price-note{
  margin-top:14px; color:#666; font-size:.82rem; line-height:1.8;
}

/* ── PC 판매 ── */
.pc-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:22px;
}
.pc-card{
  background:#fff; border-radius:16px;
  overflow:hidden;
  box-shadow:0 4px 18px rgba(0,0,0,.07);
  transition:transform .2s, box-shadow .2s;
}
.pc-card:hover{ transform:translateY(-4px); box-shadow:0 10px 30px rgba(0,0,0,.12); }
.pc-thumb{
  background:linear-gradient(135deg,#1e3a5f,#0a1a2f);
  height:150px; display:flex; align-items:center;
  justify-content:center; font-size:3.5rem;
}
.pc-body{ padding:22px; }
.pc-badge{
  font-size:.7rem; font-weight:700;
  padding:.2rem .7rem; border-radius:3px;
  display:inline-block; margin-bottom:10px;
}
.badge-blue{ background:#2563eb; color:#fff; }
.badge-yellow{ background:#ffe812; color:#222; }
.badge-green{ background:#16a34a; color:#fff; }
.pc-body h3{ font-size:1.1rem; font-weight:800; margin-bottom:6px; }
.pc-spec{ color:#666; font-size:.83rem; line-height:1.7; margin-bottom:12px; }
.pc-price{ font-size:1.25rem; font-weight:900; color:#1e3a5f; }
.pc-price small{ font-size:.8rem; color:#888; font-weight:400; }
.pc-btn{
  display:block; text-align:center;
  background:#1e3a5f; color:#fff;
  padding:.6rem; border-radius:8px;
  font-weight:700; font-size:.88rem;
  margin-top:12px; transition:background .2s;
}
.pc-btn:hover{ background:#2563eb; }

/* ── 회사 소개 ── */
.company-wrap{
  background:#fff; border-radius:24px; overflow:hidden;
  display:grid; grid-template-columns:1fr 1fr;
  box-shadow:0 8px 28px rgba(0,0,0,.08);
}
.company-img img{
  width:100%; height:100%; object-fit:cover;
  display:block; min-height:400px;
}
.company-info{ padding:50px 44px; }
.company-info h2{
  font-size:clamp(1.3rem,2.5vw,1.8rem);
  margin-bottom:14px; line-height:1.35;
}
.company-info .brand{
  font-size:clamp(2rem,4vw,3rem);
  color:#2563eb; font-weight:900; margin-bottom:10px;
}
.company-info .meta{ font-size:.88rem; color:#666; margin-bottom:20px; }
.company-info ul{ list-style:none; margin-bottom:24px; }
.company-info ul li{
  font-size:.95rem; padding:.35rem 0;
  border-bottom:1px solid #f0f0f0;
}
.company-info ul li:last-child{ border:none; }
.trust-badge{
  display:inline-flex; align-items:center; gap:8px;
  background:#f0f6ff; border:1px solid #bfdbfe;
  padding:.5rem 1rem; border-radius:8px;
  font-size:.85rem; font-weight:700; color:#1d4ed8;
  margin-right:8px; margin-bottom:8px;
}

/* ── 문의 ── */
.contact-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:36px;
}
.form-box{
  background:#fff; padding:38px;
  border-radius:20px;
  box-shadow:0 4px 20px rgba(0,0,0,.07);
}
.form-box h2{ font-size:1.6rem; margin-bottom:24px; }
.form-group{ margin-bottom:18px; }
.form-group label{
  display:block; margin-bottom:7px;
  font-weight:700; font-size:.9rem;
}
.form-group input,
.form-group select,
.form-group textarea{
  width:100%; padding:13px 15px;
  border:1px solid #ddd; border-radius:10px;
  font-size:.92rem; font-family:inherit;
  transition:border .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  outline:none; border-color:#2563eb;
}
.form-group textarea{ resize:vertical; min-height:90px; }
.submit-btn{
  background:#2563eb; color:#fff;
  border:none; padding:16px;
  width:100%; border-radius:10px;
  font-size:1rem; font-weight:700;
  cursor:pointer; transition:background .2s;
}
.submit-btn:hover{ background:#1d4ed8; }
.map-box iframe{
  width:100%; height:100%; min-height:460px;
  border:none; border-radius:20px;
}

/* ── 전화 CTA ── */
.cta-section{
  margin:0 auto 80px;
  width:92%; max-width:1280px;
}
.cta-box{
  background:linear-gradient(135deg,#2563eb,#1e40af);
  color:#fff; border-radius:24px;
  padding:60px; text-align:center;
}
.cta-box h2{
  font-size:clamp(1.5rem,3vw,2.2rem); margin-bottom:12px;
}
.cta-box p{ color:rgba(255,255,255,.8); margin-bottom:8px; }
.cta-phone{
  font-size:clamp(2rem,5vw,3.2rem);
  font-weight:900; margin:18px 0 24px;
}
.cta-buttons{ display:flex; justify-content:center; gap:14px; flex-wrap:wrap; }

/* ── 푸터 ── */
footer{
  background:#111827; color:#fff;
  text-align:center; padding:40px 20px;
}
footer h3{ font-size:1.5rem; margin-bottom:8px; }
footer p{ color:rgba(255,255,255,.55); font-size:.85rem; margin-bottom:4px; }

/* ── 카카오 플로팅 ── */
.kakao-float{
  position:fixed; right:24px; bottom:24px;
  background:#ffe812; color:#222;
  padding:14px 22px; border-radius:50px;
  font-weight:700; font-size:.9rem;
  box-shadow:0 5px 18px rgba(0,0,0,.2);
  z-index:999; transition:transform .2s;
}
.kakao-float:hover{ transform:scale(1.05); }

/* ══ 3단 분할 패널 ══ */
.two-panel-section{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:0;
  background:#fff;
}
.panel{
  padding:56px 40px;
}
.panel-left{
  border-right:1px solid #e5e7eb;
  background:#f8faff;
}
.panel-mid{
  border-right:1px solid #e5e7eb;
  background:#fff;
}
.panel-right{
  background:#f0f8f0;
}
.panel-title{
  font-size:clamp(1.3rem,2.2vw,1.8rem);
  font-weight:900; margin-bottom:8px;
}
.panel-sub{
  color:#555; font-size:.88rem; margin-bottom:28px; line-height:1.7;
}

/* 좌: 증상 리스트 */
.sym-list{ display:flex; flex-direction:column; gap:18px; }
.sym-item{
  display:flex; gap:14px; align-items:flex-start;
  background:#f9fafb; border-radius:12px; padding:14px;
  border:1px solid #e5e7eb;
}
.sym-item img{
  width:90px; height:68px; object-fit:cover;
  border-radius:8px; flex-shrink:0;
}
.sym-text h3{ font-size:.92rem; font-weight:800; margin-bottom:4px; }
.sym-text p{ font-size:.82rem; color:#555; line-height:1.55; }
.sym-highlight{ color:#2563eb; font-weight:700; font-size:.82rem; }

/* 우: 추천 PC 그리드 */
.rec-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px; margin-bottom:24px;
}
.rec-card{
  background:#fff; border-radius:12px;
  overflow:hidden;
  box-shadow:0 2px 10px rgba(0,0,0,.07);
  transition:transform .2s;
}
.rec-card:hover{ transform:translateY(-3px); }
.rec-thumb{
  background:linear-gradient(135deg,#1e3a5f,#0a1a2f);
  height:80px; display:flex; align-items:center;
  justify-content:center; font-size:2rem;
}
.rec-body{ padding:12px; }
.rec-badge{
  font-size:.65rem; font-weight:700;
  padding:.15rem .5rem; border-radius:2px;
  display:inline-block; margin-bottom:6px;
}
.rec-body h3{ font-size:.82rem; font-weight:800; margin-bottom:4px; }
.rec-spec{ color:#777; font-size:.72rem; line-height:1.5; margin-bottom:8px; }
.rec-price{ font-size:.9rem; font-weight:900; color:#1e3a5f; margin-bottom:8px; }
.rec-price small{ font-size:.7rem; color:#888; font-weight:400; }
.rec-btn{
  display:block; width:100%; text-align:center;
  background:#1e3a5f; color:#fff;
  padding:.45rem; border-radius:6px;
  font-weight:700; font-size:.75rem;
  border:none; cursor:pointer; transition:background .2s;
}
.rec-btn:hover{ background:#2563eb; }

/* 하단 견적/예약 확인 버튼 */
.action-buttons{
  display:grid; grid-template-columns:1fr 1fr; gap:14px;
}
.action-btn{
  border:none; cursor:pointer;
  border-radius:14px; padding:20px 10px;
  display:flex; flex-direction:column;
  align-items:center; gap:8px;
  font-family:inherit;
  transition:transform .15s, box-shadow .15s;
  box-shadow:0 4px 16px rgba(0,0,0,.12);
}
.action-btn:hover{ transform:translateY(-3px); box-shadow:0 8px 24px rgba(0,0,0,.18); }
.ab-icon{ font-size:2.2rem; }
.ab-text{ font-size:.95rem; font-weight:900; text-align:center; line-height:1.4; }
.btn-estimate{ background:#1e3a5f; color:#fff; }
.btn-check{ background:#ffe812; color:#222; }

/* ══ 공통 모달 ══ */
.modal-overlay{
  display:none; position:fixed; inset:0;
  background:rgba(0,0,0,.55); z-index:1000;
  align-items:flex-start; justify-content:center;
  padding:30px 16px; overflow-y:auto;
}
.modal-overlay.open{ display:flex; }
.modal-box{
  background:#fff; border-radius:16px;
  width:100%; max-width:700px;
  padding:36px; position:relative;
  box-shadow:0 16px 48px rgba(0,0,0,.2);
  margin:auto;
}
.modal-wide{ max-width:860px; }
.modal-close{
  position:absolute; top:14px; right:18px;
  background:none; border:none; font-size:1.4rem;
  cursor:pointer; color:#888; line-height:1;
}
.modal-close:hover{ color:#222; }
.modal-title{
  font-size:1.4rem; font-weight:900;
  margin-bottom:10px; border-bottom:2px solid #e5e7eb;
  padding-bottom:12px;
}
.modal-desc{
  font-size:.85rem; color:#555; margin-bottom:16px; line-height:1.7;
}
.modal-link{ color:#2563eb; text-decoration:underline; }

/* ══ 견적 폼 ══ */
.est-notices{
  background:#f0f6ff; border:1px solid #bfdbfe;
  border-radius:10px; padding:14px 18px;
  margin-bottom:20px;
}
.est-notices p{ font-size:.83rem; color:#1e40af; line-height:1.8; }
.est-form{ display:flex; flex-direction:column; gap:14px; }
.est-row label{
  display:block; font-weight:700; font-size:.85rem;
  margin-bottom:6px; color:#333;
}
.est-row input[type="text"],
.est-row input[type="password"],
.est-row textarea,
.est-row select{
  width:100%; padding:10px 12px;
  border:1px solid #ddd; border-radius:8px;
  font-size:.88rem; font-family:inherit;
}
.est-row input:focus,
.est-row textarea:focus,
.est-row select:focus{
  outline:none; border-color:#2563eb;
}
.est-tel-row{
  display:flex; gap:8px;
}
.est-tel-row select{ width:90px; flex-shrink:0; }
.est-tel-row input{ flex:1; }
.est-section-title{
  font-weight:900; font-size:.9rem;
  background:#f1f5f9; padding:8px 12px;
  border-radius:6px; color:#1e3a5f;
}
.est-check-group{
  display:flex; flex-wrap:wrap; gap:12px;
}
.est-check-group label{
  font-size:.85rem; display:flex; align-items:center; gap:6px;
  cursor:pointer;
}
.file-row{
  display:flex; align-items:center; gap:10px;
}
.file-row input[type="file"]{ display:none; }
.file-btn{
  background:#e5e7eb; border:none; padding:8px 16px;
  border-radius:6px; cursor:pointer; font-size:.83rem;
}
.est-submit-btn{
  background:#1e3a5f; color:#fff;
  border:none; padding:16px;
  border-radius:10px; font-size:1rem; font-weight:700;
  cursor:pointer; transition:background .2s;
  margin-top:8px;
}
.est-submit-btn:hover{ background:#2563eb; }

/* ══ 견적/예약 목록 ══ */
.cl-filter-row{
  display:flex; align-items:center; gap:10px;
  margin-bottom:16px;
}
.cl-select{
  padding:8px 12px; border:1px solid #ddd;
  border-radius:6px; font-size:.85rem; font-family:inherit;
}
.cl-search-btn{
  background:#1e3a5f; color:#fff;
  border:none; padding:8px 14px;
  border-radius:6px; cursor:pointer;
}
.cl-table-wrap{
  overflow-x:auto; -webkit-overflow-scrolling:touch;
}
.cl-table{
  width:100%; border-collapse:collapse;
  font-size:.85rem;
  min-width:600px;
}
.cl-table th{
  background:#f1f5f9; padding:10px 12px;
  text-align:left; border-bottom:2px solid #e2e8f0;
  font-weight:700; color:#374151;
  white-space:nowrap;
}
.cl-table td{
  padding:10px 12px; border-bottom:1px solid #f0f0f0;
  color:#444;
}
.cl-table td:nth-child(3){
  max-width:280px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.cl-table td:not(:nth-child(3)){ white-space:nowrap; }
.cl-table tr:hover td{
  background:#f8faff; cursor:pointer;
}
.cl-table .cl-link{
  color:#2563eb; font-weight:600; cursor:pointer;
}
.cl-table .cl-link:hover{ text-decoration:underline; }
.cl-pagination{
  display:flex; justify-content:center;
  gap:6px; margin-top:20px;
}
.cl-pagination button{
  width:34px; height:34px; border:1px solid #ddd;
  background:#fff; border-radius:6px;
  cursor:pointer; font-size:.85rem; font-weight:600;
  transition:background .2s;
}
.cl-pagination button:hover,
.cl-pagination .pg-active{
  background:#2563eb; color:#fff; border-color:#2563eb;
}

/* ══ 견적 상세 ══ */
.det-header{
  display:flex; justify-content:space-between;
  align-items:flex-start; gap:12px; margin-bottom:6px;
}
.det-post-title{
  font-size:1.05rem; font-weight:800; color:#1e3a5f; flex:1;
}
.det-back{
  background:none; border:1px solid #ddd;
  padding:6px 14px; border-radius:6px;
  font-size:.82rem; cursor:pointer; white-space:nowrap;
}
.det-back:hover{ background:#f1f5f9; }
.det-meta{
  font-size:.8rem; color:#888; margin-bottom:20px;
  border-bottom:1px solid #e5e7eb; padding-bottom:12px;
}
.det-body{ margin-bottom:24px; }
.det-body p{ font-size:.9rem; line-height:1.8; color:#333; margin-bottom:6px; }

.det-quote-card{
  background:#fafafa; border:1px solid #e2e8f0;
  border-radius:12px; padding:24px; margin-top:16px;
}
.det-quote-header{
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom:16px;
}
.det-logo{
  background:#2563eb; color:#fff;
  font-weight:900; font-size:1.1rem;
  padding:6px 14px; border-radius:6px;
}
.det-quote-title{
  font-size:1.4rem; font-weight:900; color:#1e3a5f;
  letter-spacing:4px;
}
.det-quote-table{
  width:100%; border-collapse:collapse; font-size:.85rem;
  margin-bottom:16px;
}
.det-quote-table th{
  background:#1e3a5f; color:#fff;
  padding:8px 12px; text-align:left;
}
.det-quote-table td{
  padding:8px 12px; border-bottom:1px solid #e5e7eb;
}
.det-total td{
  font-weight:900; background:#f0f6ff;
  font-size:.9rem;
}
.det-quote-notes p{
  font-size:.8rem; color:#555; line-height:1.8;
}

.det-comment-area{
  background:#f8faff; border:1px solid #e2e8f0;
  border-radius:10px; padding:18px; margin-top:8px;
}
.det-comment-title{
  font-weight:700; font-size:.9rem; margin-bottom:10px;
}
.det-comment-input-row{
  display:flex; gap:8px;
}
.det-comment-input-row input{
  padding:9px 12px; border:1px solid #ddd;
  border-radius:6px; font-size:.85rem;
  font-family:inherit; flex:1;
}
.cmt-submit{
  background:#1e3a5f; color:#fff;
  border:none; padding:9px 18px;
  border-radius:6px; cursor:pointer; font-weight:700;
}
.cmt-submit:hover{ background:#2563eb; }
.det-back-btn{
  background:#e5e7eb; border:none;
  padding:10px 32px; border-radius:8px;
  font-size:.9rem; font-weight:700; cursor:pointer;
}
.det-back-btn:hover{ background:#d1d5db; }

/* ══ 출장서비스 신청 강조 버튼 ══ */
.visit-cta{
  margin-top:24px;
  background:linear-gradient(135deg,#dc2626,#b91c1c);
  border-radius:16px;
  padding:20px 18px;
  text-align:center;
  box-shadow:0 6px 20px rgba(220,38,38,.35);
  animation:pulse-red 2s infinite;
}
@keyframes pulse-red{
  0%,100%{ box-shadow:0 6px 20px rgba(220,38,38,.35); }
  50%{ box-shadow:0 8px 28px rgba(220,38,38,.6); }
}
.visit-cta p{
  color:rgba(255,255,255,.85); font-size:.82rem; margin-bottom:12px; line-height:1.6;
}
.visit-cta-btn{
  display:block; width:100%;
  background:#fff; color:#dc2626;
  border:none; border-radius:10px;
  padding:14px 10px;
  font-size:1rem; font-weight:900;
  cursor:pointer; letter-spacing:-.3px;
  transition:background .2s, transform .15s;
  box-shadow:0 2px 8px rgba(0,0,0,.12);
}
.visit-cta-btn:hover{ background:#fff7f7; transform:translateY(-2px); }
.visit-cta-label{
  color:#fff; font-size:1rem; font-weight:900;
  margin-bottom:6px; display:block;
}

/* ══ NAS 카드 ══ */
.nas-card{
  background:linear-gradient(135deg,#0f172a,#1e293b);
  border-radius:12px; overflow:hidden;
  box-shadow:0 2px 12px rgba(0,0,0,.18);
  transition:transform .2s, box-shadow .2s;
  cursor:pointer; border:2px solid #334155;
}
.nas-card:hover{
  transform:translateY(-3px);
  box-shadow:0 8px 24px rgba(0,0,0,.28);
  border-color:#60a5fa;
}
.nas-card img{
  width:100%; height:130px; object-fit:contain; background:#1e293b; opacity:.9;
}
.nas-body{ padding:12px 14px; }
.nas-body h3{ font-size:.88rem; font-weight:800; margin-bottom:4px; color:#e2e8f0; }
.nas-body p{ font-size:.78rem; color:#94a3b8; line-height:1.5; }
.nas-click-hint{ font-size:.75rem; color:#60a5fa; font-weight:700; margin-top:6px; }

/* ══ 복합기 렌탈 카드 ══ */
.copier-grid{
  display:flex; flex-direction:column; gap:14px;
  margin-bottom:24px;
}
.copier-card{
  background:#fff; border-radius:12px;
  overflow:hidden;
  box-shadow:0 2px 10px rgba(0,0,0,.08);
  transition:transform .2s, box-shadow .2s;
  cursor:pointer;
  border:2px solid transparent;
}
.copier-card:hover{
  transform:translateY(-3px);
  box-shadow:0 8px 24px rgba(0,0,0,.14);
  border-color:#16a34a;
}
.copier-card img{
  width:100%; height:130px; object-fit:contain; background:#f5f5f5;
}
.copier-body{ padding:12px 14px; }
.copier-body h3{ font-size:.88rem; font-weight:800; margin-bottom:4px; color:#1e3a5f; }
.copier-body p{ font-size:.78rem; color:#555; line-height:1.5; }
.copier-click-hint{
  font-size:.75rem; color:#16a34a; font-weight:700; margin-top:6px;
}

/* ══ 렌탈 견적 모달 ══ */
#modal-rental .modal-title{ color:#16a34a; }

/* ══ 반응형 ══ */
@media(max-width:900px){
  .two-panel-section{ grid-template-columns:1fr; }
  .panel-left{ border-right:none; border-bottom:1px solid #e5e7eb; }
  .panel-mid{ border-right:none; border-bottom:1px solid #e5e7eb; }
  .rec-grid{ grid-template-columns:1fr 1fr 1fr; }
  .compare-grid{ grid-template-columns:1fr; }
  .company-wrap{ grid-template-columns:1fr; }
  .company-img{ display:none; }
  .contact-grid{ grid-template-columns:1fr; }
  .nav-menu{ display:none; }
  .step:not(:last-child)::after{ display:none; }
  .steps{ grid-template-columns:1fr 1fr; }
}
@media(max-width:640px){
  .rec-grid{ grid-template-columns:1fr; }
  .panel{ padding:36px 20px; }
  .steps{ grid-template-columns:1fr; }
  .cta-box{ padding:36px 20px; }
  .action-buttons{ grid-template-columns:1fr 1fr; }
  .nav-call-hint{ font-size:.6rem; }
  .modal-box{ padding:24px 18px; }
}
