/* ===============================
   기본 리셋 & 공통
================================ */
#content_wrap {
  font-size: 1rem; /* = 14px */
  line-height: 1.7;
  color: #111;
  text-align: center;
}

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

ul, ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

/* ===============================
   레이아웃 래퍼
================================ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===============================
   HEADER / FOOTER
================================ */
#head_wrap {
  position: relative;
  z-index: 100;
  width: 100%;
  border-bottom: 1px solid #eee;
  background: #fff;
}

/* 내부 정렬 */
.head-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 16px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* 로고 영역 */
.logo-area {
  display: flex;
  align-items: center;
}

.logo-placeholder {
  font-size: 16px;
  font-weight: 700;
}

.logo-placeholder img{height:40px;}

/* 버튼 영역 */
.head-actions {
  display: flex;
  gap: 8px;
}

/* 버튼 공통 */
.btn-head {
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid #ddd;
  color: #333;
}

/* 버튼 스타일 */
.btn-head.primary {
  background: #222;
  color: #fff;
  border-color: #222;
}

.btn-head.kakao {
  background: #fee500;
  color: #000;
  border-color: #fee500;
}

.btn-head.call {
  background: #fff;
}

/* 모바일 버튼 정리 */
@media (max-width: 768px) {
  .head-actions {
    gap: 6px;
  }

  .btn-head {
    padding: 6px 8px;
    font-size: 13px;
  }


  .head-inner {
    flex-wrap: nowrap;
  }

  /* 로고 영역 줄바꿈 방지 */
  .logo-area a {
    display: flex;
    align-items: center;
    white-space: nowrap;
  }

  /* 모바일에서 텍스트 숨김 */
  .logo-area a {
    font-size: 0;
  }

  .logo-area img {
    height: 36px;
  }


}


#footer_wrap {
  background: #111;
  color: #ccc;
  padding: 30px 15px;
  font-size: 14px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

#footer_wrap p {
  margin: 6px 0;
  line-height: 1.6;
}

.footer-contact strong {
  color: #fff;
}

.footer-copy {
  margin-top: 12px;
  font-size: 13px;
  color: #888;
}


/* ===============================
   HERO
================================ */
.hero {
  position: relative;
  padding: 90px 0 80px;
  background-image: url("/image/bg/img_bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.65); /* 어두운 네이비 */
  z-index: 1;
}

.hero h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 strong {
  color: #38bdf8;
}

.hero p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 28px;
}

.btn-primary {
  display: inline-block;
  padding: 14px 30px;
  background: #38bdf8;
  color: #020617;
  font-weight: 700;
  border-radius: 6px;
  transition: 0.2s;
}

.btn-primary:hover {
  background: #0ea5e9;
}

/* ===============================
   SECTION 공통
================================ */
.section {
  padding: 60px 0;
}

.section h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 22px;
}

.bg-light {
  background: #f8fafc;
}


/* ===============================
   SERVICE PRICE
================================ */
.service-price h2 {
  margin-bottom: 10px;
}

.section-desc {
  font-size: 0.95rem;
  color: #475569;
  margin-bottom: 35px;
}

/* 카드 그리드 */
.price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* 카드 */
.price-card {
  background: #fff;
  border-radius: 10px;
  padding: 24px 22px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  transition: all 0.25s ease;
  border:2px solid #ddd;
}

/* 기본 버튼 (비활성) */
.price-card .price-btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 6px;
  background: transparent;
  color: #38bdf8;
  border: 1px solid #38bdf8;
  transition: background-color 0.2s ease, color 0.2s ease;
}

/* 활성 카드 버튼 */
.price-card.highlight .price-btn {
  background: #38bdf8;
  color: #020617;
}

.price-card a {
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

/* 비활성 버튼 */
.price-card .btn-outline {
  background: transparent;
  color: #38bdf8;
  border: 1px solid #38bdf8;
}

/* 활성 버튼 */
.price-card.highlight .btn-outline,
.price-card.highlight .btn-primary {
  background: #38bdf8;
  color: #020617;
  border-color: #38bdf8;
}

.price-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.price {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 14px;
}

/* 강조 카드 */
.price-card.highlight {
  border: 2px solid #38bdf8;
  background: #f0f9ff;
}

.price-card ul {
  margin-bottom: 18px;
}

.price-card li {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.price-card li.sub {
  font-size: 0.85rem;
  color: #64748b;
}

/* 버튼 */
.btn-outline {
  display: inline-block;
  padding: 12px 22px;
  border: 1px solid #38bdf8;
  border-radius: 6px;
  color: #38bdf8;
  font-weight: 600;
}

.btn-outline:hover {
  background: #38bdf8;
  color: #020617;
}

/* hover 시 강조 */
.price-card.hover-active {
  border: 2px solid #0ea5e9;
  background: #e0f2fe;
}

/* PC */
@media (min-width: 768px) {
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .price-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero {
    padding: 120px 0 110px;
  }

}


/* ===============================
   텍스트 스타일
================================ */
.check-list {
  display: flex;
  flex-direction: column;
  align-items: center;   /* 리스트 전체 중앙 */
  gap: 10px;
}

.check-list li {
  display: flex;
  align-items: center;
  justify-content: center; /* 한 줄 자체를 중앙 */
  gap: 8px;
  padding: 0;
  margin: 0;
  text-align: center;
}

.list li,
.check-list li,
.service-list li {
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
}

.check-list li::before {
  content: "✔";
  color: #38bdf8;
  font-weight: 700;
  font-size: 0.9rem;
}

.quote {
  margin-top: 20px;
  font-weight: 600;
  color: #334155;
}

.emphasis {
  margin-top: 25px;
  font-weight: 700;
  color: #020617;
}

.small {
  margin-top: 15px;
  font-size: 0.9rem;
  color: #475569;
}

/* ===============================
   요즘 손님은 이렇게 찾아옵니다
================================ */
.how-find {
  background: #fff;
}

.how-find-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.how-text {
  text-align: left;
}

/* 좌측 텍스트 */
.how-text h2 {
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.how-text h2 strong {
  color: #22c55e; /* 네이버 느낌 그린 */
}

.how-text .desc {
  font-size: 16px;
  color: #475569;
  margin-bottom: 32px;
}

/* 리스트 */
.how-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.how-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  align-items: center;
}

.how-list .num {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #22c55e;      /* 네이버 느낌 그린 */
	color: #fff;
	font-size: 14px;
	font-weight: 700;

	display: flex;
	align-items: center;
	justify-content: center;

	flex-shrink: 0;     
}

.how-list strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.how-list p {
  font-size: 14px;
  color: #64748b;
}

/* 우측 비주얼 */
.how-visual {
  position: relative;
}

.phone-mock {
  width: 280px;
  height: 520px;
  background: url('/image/banner/image_6.webp') center / cover;
  border-radius: 26px;
  box-shadow: 0 30px 50px rgba(0,0,0,0.15);
  position: relative;
}

/* 뱃지 */
.phone-mock .badge {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
}

.phone-mock .badge.n {
  background: #03c75a;
  top: 80px;
  left: -28px;
}

.phone-mock .badge.map {
  background: #22c55e;
  bottom: 100px;
  right: -28px;
}

/* ===============================
   모바일 대응
================================ */
@media (max-width: 991px) {
  .how-find-wrap {
    flex-direction: column;
    text-align: center;
  }

  .how-list li {
    justify-content: center;
    text-align: left;
  }

  .phone-mock {
    margin-top: 40px;
  }

  .how-text {
    text-align: center;
  }

}



/* ===============================
   WHY MLPO
================================ */
.reason {
  background: #fff;
  border-radius: 8px;
  padding: 18px 20px;
  margin-bottom: 15px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}

.reason strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.why-mlpo {
  position: relative;
  background: url('/image/bg/why_bg.webp') center / cover no-repeat;
  background-attachment: fixed; /* 🔥 스크롤 고정 */
  color: #020617;
}

/* 어두운 오버레이 */
.why-mlpo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7); /* 밝은 톤 */
  z-index: 1;
}

/* 내용 위로 */
.why-mlpo .container {
  position: relative;
  z-index: 2;
}

/* reason 카드 살짝 강조 */
.why-mlpo .reason {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
}


/* ===============================
   MLPO SERVICE VISUAL
================================ */
.mlpo-service {
  background: #fff;
}

.service-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* 좌측 텍스트 */
.service-text {
  flex: 1;
  text-align: left;
}

.service-step {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #22c55e;
  margin-bottom: 12px;
}

.service-text h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
}

.service-text p {
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
}

/* 우측 비주얼 */
.service-visual {
  flex: 1.2;
}

.service-mock {
  background: #e5e7eb;
  padding: 20px;
}

.service-mock img {
  width: 100%;
  display: block;
}

@media (max-width: 991px) {
  .service-wrap {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
	
  .service-text {
    text-align: center;
  }

  .service-text h2 {
    font-size: 24px;
  }

  .service-visual {
    width: 100%;
  }
}




/* ===============================
   problem
================================ */

.problem-section {
  padding: 140px 0;
  background:#fafafa;
}

.problem-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

/* 좌측 타이틀 */
.problem-title h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.3;
}

/* 중앙 카드 */
.problem-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.problem-card {
  background: #000;
  color: #fff;
  padding: 36px;
  border-radius: 20px;
}

.problem-card h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
}

.problem-card p {
  font-size: 15px;
  opacity: 0.85;
}

.more-link {
  font-weight: 700;
  color: #22c55e;
}

.problem-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

/* 우측 상단 문제 문구 */
.problem-eyebrow {
  font-size: 15px;
  font-weight: 700;
  color: #22c55e;
  display: block;
  margin-bottom: 4px;
}

.problem-more {
  text-align: right;
}

.problem-more h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 28px;
}

/* 서비스 더 알아보기 */
.problem-more h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.3;
}

.problem-more p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}


@media (max-width: 991px) {
  .problem-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .problem-cards {
    order: 2;
  }

  .problem-more {
    order: 3;
  }
}




/* ===============================
   PROCESS
================================ */
.process li {
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
}

.process li::before {
  content: counter(step);
}

/* ===============================
   CONSULT (문의폼)
================================ */
.consult {
  background: #020617;
  color: #fff;
}

.consult h2 {
  margin-bottom: 30px;
}

.consult input,
.consult textarea,
.consult select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: none;
  margin-bottom: 12px;
}

.consult button,
.consult .btn_submit {
  width: 100%;
  padding: 14px;
  background: #38bdf8;
  color: #020617;
  font-weight: 700;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

/* ===============================
   상담 진행 절차 (원형)
================================ */
.process-circle {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin-top: 40px;
}

.process-circle .step {
  flex: 1;
  text-align: center;
  position: relative;
  cursor: pointer;
}

/* 원 */
.process-circle .circle {
  width: 52px;
  height: 52px;
  line-height: 52px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: #e2e8f0;
  font-weight: 700;
  z-index: 2;
  position: relative;
  transition: all 0.2s ease;
}

/* PC 가로 점선 */
.process-circle .step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 26px;
  left: 50%;
  width: 100%;
  border-top: 1px dashed #cbd5e1;
  z-index: 1;
}

/* hover */
.process-circle .step:hover .circle {
  background: #38bdf8;
}

/* 단계 이미지 영역 */
.step-image {
  width: 100%;
  max-width: 250px;   /* 이미지 최대 폭 */
  height: 250px;       /* 자리 높이 */
  margin: 10px auto 0;
  background: #f1f5f9; /* 자리 표시용 (나중에 제거 가능) */
  border-radius: 18px;
  overflow:hidden;
}

/* 실제 이미지 넣을 경우 */
.step-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ===============================
   모바일 (세로 + 세로 점선)
================================ */
@media (max-width: 767px) {

  .process-circle {
    flex-direction: column;
    align-items: center;
    gap: 36px;
  }

  .process-circle .step {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  /* 모바일 점선 전부 제거 */
  .process-circle .step::before,
  .process-circle .step::after {
    display: none !important;
  }


}


/* ===============================
   상담문의
================================ */
.consult-form {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.consult-form input[type="radio"] {
  display: none;
}

.form-group {
  margin-bottom: 16px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.price-view {
  margin-top: 8px;
  font-weight: bold;
  color: #2f6fff;
}

.btn-primary.full {
  width: 100%;
  padding: 12px;
  font-size: 15px;
}

.service-select input[type="radio"] {
  display: none;
}

.service-card {
  display: block;
  padding: 14px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}

.service-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

.service-card span {
  font-size: 13px;
  color: #666;
}

.service-select input:checked + .service-card {
  border-color: #2f6fff;
  background: #f4f7ff;
}

.service-card.highlight {
  border-color: #2f6fff;
}

/* radio 숨김 */
.service-grid input[type="radio"] {
  display: none;
}

/* grid 레이아웃 */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

/* 카드 스타일 */
.service-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.service-card strong {
  font-size: 14px;
}

.service-card span {
  font-size: 13px;
  color: #666;
}

/* 선택됨 */
.service-grid input:checked + .service-card {
  border-color: #2f6fff;
  background: #f4f7ff;
  color:#000;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px 20px;
}

.form-group textarea,
.btn-primary.full {
  width: 100%;
}

/* PC 이상 */
@media (min-width: 768px) {
  .service-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}


/* ===============================
   PC 반응형
================================ */
@media (min-width: 768px) {

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero p {
    font-size: 1.05rem;
  }

  .section h2 {
    font-size: 1.8rem;
  }

  .reason {
    display: flex;
    flex-direction: column;
  }
}

@media (min-width: 1024px) {

  .hero {
    padding: 120px 0 110px;
  }

  .section {
    padding: 80px 0;
  }
}
