* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
  color: #333;
  line-height: 1.7;
}

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

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ───── 히어로 ───── */
.hero {
  background-color: #1a2c4e;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.hero-region {
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: #93b4d8;
  margin-bottom: 14px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.hero-desc {
  font-size: 1.1rem;
  color: #c5d8ee;
  line-height: 1.8;
  margin-bottom: 36px;
}

.hero-info {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero-contact-item {
  font-size: 1rem;
  color: #e8f2ff;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  padding: 8px 20px;
  background-color: rgba(255, 255, 255, 0.07);
}

/* ───── 버튼 ───── */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn:hover {
  opacity: 0.85;
}

.btn-primary {
  background-color: #e07b2a;
  color: #fff;
}

.btn-kakao {
  background-color: #fee500;
  color: #3b1e08;
}

.btn-large {
  padding: 18px 48px;
  font-size: 1.1rem;
  margin-top: 36px;
}

/* ───── 소개 ───── */
.intro {
  padding: 70px 20px;
  text-align: center;
}

.intro .section-title {
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 28px;
  color: #1a2c4e;
}

.intro-text p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 10px;
}

/* ───── 작업과정 공통 ───── */
.process {
  padding: 70px 20px;
}

.bg-gray {
  background-color: #f4f6f9;
}

.process-label {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
}

.step-num {
  font-size: 3rem;
  font-weight: 900;
  color: #e07b2a;
  line-height: 1;
  flex-shrink: 0;
}

.process-label h2 {
  font-size: 1.45rem;
  font-weight: 700;
  color: #1a2c4e;
  line-height: 1.4;
  padding-top: 4px;
}

/* ───── 이미지 그리드 ───── */
.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}

.image-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
  background-color: #ddd;
  display: block;
}

/* ───── 작업 설명 텍스트 ───── */
.process-text p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 10px;
}

/* ───── 연락처 ───── */
.contact {
  background-color: #1a2c4e;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.contact h2 {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 44px;
}

.contact-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.contact-item {
  text-align: center;
}

.contact-label {
  font-size: 0.85rem;
  color: #93b4d8;
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

.contact-value {
  font-size: 1.2rem;
  font-weight: 700;
}

.contact-value a {
  color: #fff;
}

/* ───── 푸터 ───── */
footer {
  background-color: #111d2e;
  color: #7a92a8;
  text-align: center;
  padding: 36px 20px;
  font-size: 0.85rem;
  line-height: 1.9;
}

.footer-brand {
  font-size: 1rem;
  font-weight: 700;
  color: #c5d8ee;
  margin-bottom: 6px;
}

.footer-copy {
  margin-top: 12px;
  color: #4a6278;
}

/* ───── 모바일 대응 (600px 이하) ───── */
@media (max-width: 600px) {
  .hero {
    padding: 60px 20px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-desc {
    font-size: 0.95rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .intro .section-title {
    font-size: 1.2rem;
  }

  .process-label {
    flex-direction: column;
    gap: 8px;
  }

  .step-num {
    font-size: 2rem;
  }

  .process-label h2 {
    font-size: 1.15rem;
  }

  .image-grid {
    grid-template-columns: 1fr;
  }

  .image-grid img {
    height: 220px;
  }

  .contact h2 {
    font-size: 1.3rem;
  }

  .contact-grid {
    flex-direction: column;
    gap: 24px;
  }

  .btn-large {
    width: 100%;
    max-width: 320px;
    padding: 16px 20px;
    font-size: 1rem;
  }
}
