/* =================== 푸터 =================== */
.footer {
  background: #000;
  color: #fff;
  width: 100%;
  padding: 32px 0 24px 0;
  font-family: 'Pretendard', 'Noto Sans KR', 'Malgun Gothic', Arial, sans-serif;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0 24px;
}
.footer-left {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-top: 2px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.footer-brand-main {
  color: #FFD200;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -1px;
}
.footer-brand-sub {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin-left: 2px;
}
.footer-brand-desc {
  color: #ccc;
  font-size: 1.1rem;
  margin-top: 2px;
  margin-left: 2px;
}
.footer-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1.05rem;
  color: #ccc;
  gap: 2px;
  text-align: left;
}

@media (max-width: 900px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 0 10px;
  }
  .footer-left {
    justify-content: center;
  }
  .footer-right {
    align-items: center;
    text-align: center;
    font-size: 0.98rem;
  }
  .footer-logo {
    width: 100%;
    height: auto;
  }
  .footer-brand-main, .footer-brand-sub {
    font-size: 1.3rem;
  }
  .footer-brand-desc {
    font-size: 0.95rem;
  }
}
/* 현장갤러리 이미지 그리드 반응형 */
.gallery-images-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto 18px auto;
  padding: 0 20px;
}
.gallery-image-item {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  background: #f5f5f5;
}

@media (max-width: 768px) {
  .gallery-images-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 8px;
  }
}
/* 현장갤러리 안내 문구 반응형 스타일 */
.gallery-desc-text {
  margin: 0 0 18px 0;
  font-size: clamp(13px, 2.5vw, 17px);
  color: #333;
  text-align: center;
  line-height: 1.6;
}
/* 고객 만족도 설문조사 결과 문구 반응형 스타일 */
.survey-result-text {
  margin: 0;
  font-weight: 900;
  font-size: clamp(13px, 3vw, 18px);
  color: #222;
  text-align: center;
  line-height: 1.6;
}

/* ----------------------------------------------------------------- */

.price-header {
  text-shadow:
    0 2px 8px rgba(30, 30, 30, 0.32),
    0 1px 0 rgba(255,255,255,0.18);
}
@media (max-width: 768px) {
  .price-header {
    max-width: 155px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* 헤더 영역 */
.header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-top {
  background: #000DB3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.logo {
  height: 50px;
}

.call-btn {
  cursor: pointer;
  transition: transform 0.3s;
}
.call-btn:hover {
  transform: scale(1.05);
}
.call-btn img {
  height: 50px;
}

/* GNB 메뉴 */
.gnb {
  background: #FFD700;
  padding: 15px 0;
}
.gnb-menu {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  list-style: none;
  padding: 0 20px;
}
.gnb-menu li {
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  color: #000;
  transition: color 0.3s;
}
.gnb-menu li:hover {
  color: #0033CC;
}

@media (max-width: 768px) {
  .header-top {
    padding: 8px 10px;
  }
  .logo {
    height: 32px;
  }
  .call-btn img {
    height: 32px;
  }
  .gnb-menu {
    padding: 0 6px;
    font-size: 14px;
  }
  .gnb-menu li {
    font-size: 14px;
    padding: 0 4px;
  }
}
.price-header-layout img[alt="사람"] {
  max-width: 320px;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

@media (max-width: 1000px) {
  .price-header-layout img[alt="사람"] {
    max-width: 300px;
  }
}
@media (max-width: 768px) {
  .price-header-layout img[alt="사람"] {
    max-width: 250px;
  }
}
@media (max-width: 470px) {
  .price-header-layout img[alt="사람"] {
    max-width: 200px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Pretendard', 'Noto Sans KR', 'Malgun Gothic', Arial, sans-serif;
  overflow-x: hidden;
  @media (max-width: 768px) {
    .price-subtitle,
    .price-description {
      text-align: start;
    }
    /* ...existing code... */
  }
}

/* 섹션 공통 */
.section {
  width: 100%;
  margin: 0;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-title {
  font-family: 'Gmarket Sans', 'Pretendard', sans-serif;
  font-weight: 600;
  font-size: clamp(24px, 4vw, 32px);
  text-align: center;
  color: #0033CC;
}

.section-black-title {
  color: #000;
}

/* 넘버원하수구 소개 영역 */
#introduce {
  background-color: #000;
}
.introduce-container {
  display: flex;
  border-radius: 15px;
  overflow: hidden;
  min-height: 400px;
  width: 100%;
  max-width: 1100px;
  margin: 0 20px;
}

.introduce-left {
  flex: 1;
  background-color: #FFD200;
  display: flex;
  align-items: center;
  justify-content: center;
}

.introduce-text {
  width: 100%;
  max-width: 600px;
  color: #000;
  font-size: 18px;
  line-height: 1.8;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.introduce-text p {
  margin: 0;
}

.gmarket-text {
  font-family: 'Gmarket Sans', 'Pretendard', sans-serif;
  font-weight: 700;
}

.pretendard-text {
  font-family: 'Pretendard', 'Noto Sans KR', 'Malgun Gothic', Arial, sans-serif;
  font-weight: 400;
}

.intro-small {
  font-size: clamp(16px, 3.5vw, 24px);
  line-height: 1.5;
  margin-bottom: 10px;
}

.intro-large {
  font-size: clamp(35px, 7vw, 60px);
  line-height: 1.2;
  margin-bottom: 5px;
}

.intro-blue {
  color: #003DC9;
}

.intro-medium {
  font-size: clamp(20px, 4.5vw, 30px);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 5px;
}

.intro-call-btn {
  width: 100%;
  max-width: 400px;
  height: auto;
  border: 2px solid black;
  border-radius: 5px;
  margin-top: 15px;
  cursor: pointer;
  transition: transform 0.3s;
  display: block;
}

.intro-call-btn:hover {
  transform: scale(1.05);
}

.introduce-right {
  flex: 1;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  border-radius: 0;
  overflow: hidden;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 강조 텍스트 쉐도우 */
.price-highlight {
  text-shadow: 2px 2px 6px rgba(0,0,0,0.25), 0 1px 0 #2b2929;
}

#price {
  min-height: 600px;
  background-image: url('https://cdn.driven.co.kr/landing/baegwancare/4/02_bg_pc.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
}

.price-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.price-header {
  margin-bottom: 60px;
  margin-left: 5px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.price-subtitle {
  font-size: 20px;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 500;
}

.price-count {
  max-width: 600px;
  height: auto;
  margin-top: 20px;
  margin-bottom: 20px;
  display: block;
}

.price-count-pc {
  display: block;
}

/* PC에서는 숨김, 모바일에서만 보임 */
.price-count-mobile {
  display: none;
}

@media (max-width: 768px) {
  .price-count-mobile {
    display: block;
    max-width: 40px;
    width: 100%;
    height: auto;
    margin: 8px auto;
  }
}

@media (max-width: 768px) {
  .price-count-mobile {
    max-width: 18px;
    margin: 6px auto;
  }
}

@media (max-width: 470px) {
  .price-count-mobile {
    max-width: 10px;
    margin: 4px auto;
  }
}

.price-description {
  font-size: 22px;
  color: #fff;
  margin: 5px 0;
  font-weight: 500;
}

.price-call-btn {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin-top: 30px;
  display: block;
  cursor: pointer;
  transition: transform 0.3s;
}

.price-call-btn:hover {
  transform: scale(1.05);
}

.price-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.price-card {
  background-image: url('https://cdn.driven.co.kr/landing/baegwancare/4/02_cardBg.png');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px 20px;
  border-radius: 15px;
  text-align: center;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  display: block;
}

.card-title {
  font-family: 'Gmarket Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #FFD700;
  margin-bottom: 15px;
}

.card-desc {
  font-size: 14px;
  color: #fff;
  margin: 3px 0;
  line-height: 1.6;
}

/* 하단 고정 상담 신청 폼 */
.consultation-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0033CC;
  padding: 15px;
  z-index: 999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.consultation-form {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.form-title {
  color: #FFD700;
  font-weight: bold;
  font-size: 18px;
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}

.form-group {
  display: flex;
  align-items: center;
  gap: 5px;
}

.form-group label {
  color: #fff;
  font-weight: bold;
  min-width: 60px;
}

.form-input {
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
}

.name-input {
  width: 150px;
}

.phone-input {
  width: 60px;
  text-align: center;
}

.submit-btn {
  background: #FFD700;
  color: #000;
  font-family: 'Gmarket Sans', sans-serif;
  font-weight: 700;
  padding: 12px 30px;
  padding-top: 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
}

.submit-btn:hover {
  background: #FFA500;
}

/* 개인정보 동의 */
.privacy-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.privacy-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.privacy-label {
  color: #fff !important;
  font-weight: normal !important;
  font-size: 14px;
  min-width: auto !important;
  cursor: pointer;
  margin: 0;
}

.privacy-view-btn {
  background: #fff;
  color: #0033CC;
  font-weight: bold;
  padding: 5px 15px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-size: 12px;
  white-space: nowrap;
}

.privacy-view-btn:hover {
  background: #e0e0e0;
}

/* 모달 스타일 */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  animation: fadeIn 0.3s;
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 0;
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: slideDown 0.3s;
}

.modal-close {
  color: #999;
  float: right;
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
  padding: 15px 20px;
  cursor: pointer;
  transition: color 0.3s;
}

.modal-close:hover {
  color: #333;
}

.modal-title {
  font-size: 24px;
  font-weight: bold;
  color: #0033CC;
  padding: 20px 30px 10px;
  margin: 0;
  clear: both;
}

.modal-body {
  padding: 20px 30px;
  max-height: calc(80vh - 180px);
  overflow-y: auto;
}

.privacy-section {
  margin-bottom: 25px;
}

.privacy-section h3 {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.privacy-section p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.modal-confirm-btn {
  background: #0033CC;
  color: #fff;
  font-weight: bold;
  padding: 12px 40px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  display: block;
  margin: 20px auto;
  transition: background 0.3s;
}

.modal-confirm-btn:hover {
  background: #0026a3;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideDown {
  from { 
    transform: translateY(-50px);
    opacity: 0;
  }
  to { 
    transform: translateY(0);
    opacity: 1;
  }
}

/* 반응형 - 1000px 이하 */
@media (max-width: 1000px) {
  .introduce-container {
    flex-direction: column;
    width: 80%;
    margin: 0 auto;
    border-radius: 15px;
  }

  .introduce-left {
    width: 100%;
    padding: 40px 20px;
    border-radius: 15px 15px 0 0;
  }

  .introduce-text {
    max-width: 100%;
    padding: 0;
    align-items: center;
  }

  .intro-call-btn {
    max-width: 100%;
  }

  .introduce-right {
    width: 100%;
    min-height: 400px;
    border-radius: 0 0 15px 15px;
  }

  .video-wrapper {
    border-radius: 0 0 15px 15px;
  }

  .price-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .price-card {
    padding: 30px 15px;
  }

  .card-icon {
    width: 50px;
    height: 50px;
    font-size: 30px;
    margin-bottom: 15px;
  }

  .card-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .card-desc {
    font-size: 13px;
  }
}

/* 반응형 - 768px 이하 */
@media (max-width: 768px) {
  .header-top {
    padding: 10px;
  }

  .logo {
    height: 40px;
  }

  .call-btn img {
    height: 40px;
  }

  .gnb-menu {
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 10px;
  }

  .gnb-menu li {
    font-size: 14px;
  }

  .section-title {
    font-size: 24px;
  }

  .introduce-text {
    font-size: 16px;
  }

  .consultation-form {
    flex-direction: column;
    align-items: stretch;
  }

  .form-group {
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
  }

  .name-input {
    flex: 1;
  }

  .phone-input {
    flex: 1;
    padding: 12px 8px;
    font-size: 16px;
    min-width: 0;
  }

  .form-group label {
    min-width: auto;
    width: auto;
    font-size: 15px;
    flex-shrink: 0;
  }

  .privacy-group {
    flex-wrap: wrap;
    justify-content: center;
  }

  .privacy-label {
    font-size: 13px !important;
  }

  .privacy-view-btn {
    padding: 6px 18px;
    font-size: 13px;
  }

  .submit-btn {
    width: 100%;
    padding: 15px 30px;
    padding-top: 20px;
    font-size: 18px;
  }

  .modal-content {
    width: 95%;
    margin: 10% auto;
  }

  .modal-title {
    font-size: 20px;
    padding: 15px 20px 10px;
  }

  .modal-body {
    padding: 15px 20px;
  }

  .privacy-section h3 {
    font-size: 15px;
  }

  .privacy-section p {
    font-size: 13px;
  }

  #price {
    background-image: url('https://cdn.driven.co.kr/landing/baegwancare/4/02_bg_m.jpg');
    min-height: 400px;
    padding: 40px 0;
  }

  .price-header {
    margin-bottom: 40px;
  }

  .price-count {
    max-width: 400px;
  }

  .price-count-pc {
    display: none;
  }

  .price-count-mobile {
    display: block;
  }

  .price-description {
    font-size: 15px;
  }

  .price-subtitle {
    font-size: 14px;
  }

  .price-call-btn {
    max-width: 300px;
  }

  .review-images {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

/* 반응형 - 470px 이하 */
@media (max-width: 470px) {
  .introduce-container {
    width: 90%;
  }

  .introduce-left {
    padding: 30px 15px;
  }

  .introduce-right {
    min-height: 300px;
  }

  .price-container {
    padding: 0 10px;
  }

  .price-cards {
    gap: 10px;
  }

  .price-card {
    padding: 20px 10px;
  }

  .card-icon {
    width: 40px;
    height: 40px;
    font-size: 24px;
    margin-bottom: 10px;
  }

  .card-title {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .card-desc {
    font-size: 11px;
    line-height: 1.4;
  }

  .price-count {
    max-width: 300px;
  }

  .price-description {
    font-size: 13px;
  }

  .price-subtitle {
    font-size: 12px;
  }

  .price-call-btn {
    max-width: 250px;
  }

  .tech-title {
    font-size: 28px;
  }

  .tech-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .price-table {
    max-width: 100%;
  }

  .price-cell {
    padding: 15px 10px;
    font-size: 14px;
  }
}

/* 기술력 섹션 */
#tech {
  background-color: #000;
  padding: 80px 0;
}

.tech-container {
  max-width: 1200px;
  padding: 0 20px;
  text-align: center;
}

.tech-title {
  font-family: 'Gmarket Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 5vw, 42px);
  color: #FFD700;
  line-height: 1.3;
}

.tech-subtitle {
  font-size: clamp(12px, 2.5vw, 18px);
  color: #fff;
  margin-bottom: 20px;
  font-weight: 400;
}

.price-table {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-row {
  display: flex;
  border-bottom: none;
  overflow: hidden;
  border-radius: 5px;
  width: 100%;
}

.price-row:last-child {
  border-bottom: none;
}

.price-cell {
  flex: 1;
  padding: 20px;
  font-size: clamp(14px, 2.5vw, 18px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 500px;
  min-width: 150px;
}

.price-service {
  background-color: #FFD700;
  color: #000;
  font-weight: 900;
  border-right: 2px solid #fff;
  border: 2px solid #fff;
  border-right: 1px solid #fff;
}

.price-cost {
  background-color: #000;
  color: #FFD700;
  font-weight: 700;
  border: 2px solid #fff;
  border-left: 1px solid #fff;
}

/* 리뷰 이미지 그리드 */
.review-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.review-images img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

/* review section 텍스트 */
#review p {
  font-size: clamp(14px, 2.2vw, 18px);
  color: #333;
  text-align: center;
  margin: 10px 0;
  line-height: 1.6;
}

/* review section 텍스트 */
#review p {
  font-size: clamp(14px, 2.2vw, 18px);
  color: #333;
  text-align: center;
  margin: 10px 0;
  line-height: 1.6;
}

/* 임시 섹션 스타일 */
.temp-section {
  min-height: 400px;
  background: #f5f5f5;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #666;
}

.price-header-layout {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.price-highlight {
  color: #FFD200;
}

.view-more {
  cursor: pointer;
  background-color: #FFD200;
  color: #222;
  border-radius: 18px;
  font-weight: 700;
  width: 120px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  outline: none;
  border: none;
  margin: 0 auto;
  user-select: none;
}

.view-more:hover, .view-more:focus {
  background-color: #FFC300;
  color: #000;
  box-shadow: 0 4px 16px rgba(0,0,0,0.13);
  transform: translateY(-2px) scale(1.03);
}

.view-more:active {
  background-color: #FFD200;
  color: #333;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  transform: scale(0.98);
}

@media (max-width: 768px) {
  .view-more {
    width: 100px;
    height: 32px;
    font-size: 15px;
    border-radius: 14px;
  }
}
@media (max-width: 768px) {
  .footer {
    height: 400px;
  }
}