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

body {
  font-family: "Pretendard", "Noto Sans KR", Arial, sans-serif;
  color: #222;
  background: #f6f3ee;
  line-height: 1.7;
}

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

.hero {
  min-height: 560px;
  background:
    linear-gradient(
      rgba(35, 24, 16, 0.72),
      rgba(35, 24, 16, 0.72)
    ),
    url("main-bg.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  color: #fff;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.08), rgba(0,0,0,0.35));
  z-index: 1;
}

.hero {
  position: relative;
  overflow: hidden;
}

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

.hero-inner {
  max-width: 980px;
}

.badge {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 999px;
  margin-bottom: 22px;
  font-size: 15px;
}

.hero h1 {
  font-size: 58px;
  margin-bottom: 22px;
  letter-spacing: -2px;
}

.hero-text {
  font-size: 22px;
  margin-bottom: 34px;
  color: #f7f1e8;
}

.main-btn,
.cta a {
  display: inline-block;
  background: #8b5e34;
  color: #fff;
  padding: 16px 30px;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px;
}

.section h2 {
  font-size: 34px;
  margin-bottom: 26px;
  color: #3b2a1c;
  letter-spacing: -1px;
}

.section p {
  font-size: 18px;
  color: #444;
}

.intro {
  text-align: center;
}

.card-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.card {
  background: #fff;
  padding: 30px 24px;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  border: 1px solid #eee2d5;
}

.card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: #7a4f2a;
}

.card p {
  font-size: 16px;
}

.price-box {
  background: #fff;
  border-radius: 18px;
  padding: 34px 38px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  border: 1px solid #ead8c4;
}

.price-main {
  font-size: 26px !important;
  color: #3b2a1c !important;
  margin-bottom: 18px;
  font-weight: 700;
}

.price-main strong {
  color: #8b5e34;
  font-size: 34px;
}

.price-box ul {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
}

.price-box li {
  background: #f6f3ee;
  padding: 14px 16px;
  border-radius: 10px;
  font-weight: 700;
  color: #5c3c20;
}

/* 진행 과정 */
.process {
  max-width: 1200px;
}

.process-head {
  text-align: center;
  margin-bottom: 50px;
}

.process-head span {
  display: block;
  color: #9a6a3a;
  font-weight: 800;
  letter-spacing: 5px;
  font-size: 14px;
  margin-bottom: 8px;
}

.process-head h2 {
  font-size: 38px;
  color: #3b2a1c;
  margin-bottom: 14px;
}

.process-head p {
  font-size: 18px;
  color: #555;
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 70px;
}

.process-card {
  position: relative;
  background: linear-gradient(145deg, #ffffff, #fbf7f1);
  border: 1px solid #e4cbb1;
  border-radius: 20px;
  padding: 44px 26px 34px;
  text-align: center;
  min-height: 270px;
  box-shadow: 0 14px 30px rgba(61, 42, 28, 0.09);
}

.process-card::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -48px;
  transform: translateY(-50%);
  font-size: 34px;
  color: #8b5e34;
  font-weight: 800;
}

.process-card:nth-child(3)::after,
.process-card:nth-child(6)::after {
  display: none;
}

.process-num {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background: #8b5e34;
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(61, 42, 28, 0.2);
}

.process-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: #3b2a1c;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.process-card h3 {
  font-size: 23px;
  color: #2d1f15;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #ead8c4;
}

.process-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

.area {
  background: #efe5d8;
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.area h2,
.area p,
.region-box {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.region-box {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.region-box a {
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
  color: #5c3c20;
  border: 1px solid #dcc6ac;
}

.faq-item {
  background: #fff;
  padding: 26px;
  border-radius: 16px;
  margin-bottom: 18px;
  border-left: 6px solid #8b5e34;
}

.faq-item h3 {
  font-size: 21px;
  margin-bottom: 10px;
  color: #3b2a1c;
}

.cta {
  background: #3b2a1c;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.cta h2 {
  font-size: 34px;
  margin-bottom: 14px;
}

.cta p {
  font-size: 19px;
  margin-bottom: 28px;
  color: #f2e8dc;
}

footer {
  background: #241911;
  color: #d8c7b4;
  text-align: center;
  padding: 34px 20px;
  font-size: 15px;
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 42px;
  }

  .hero-text {
    font-size: 18px;
  }

  .card-wrap,
  .region-box {
    grid-template-columns: repeat(2, 1fr);
  }

  .section h2 {
    font-size: 28px;
  }

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

  .process-card::after {
    display: none;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 500px;
  }

  .hero h1 {
    font-size: 34px;
  }

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

  .card-wrap,
  .region-box,
  .price-box ul,
  .process-flow {
    grid-template-columns: 1fr;
  }

  .main-btn,
  .cta a {
    width: 100%;
    font-size: 18px;
  }

  .section {
    padding: 60px 18px;
  }

  .price-box {
    padding: 28px 22px;
  }

  .price-main {
    font-size: 22px !important;
  }

  .price-main strong {
    font-size: 30px;
  }

  .process-head h2 {
    font-size: 30px;
  }

  .process-card {
    min-height: auto;
  }
}
/* =========================
   폐기물처리 진행 과정 수정
========================= */

.process {
  max-width: 1200px;
}

.process h2 {
  text-align: center;
  font-size: 38px;
  margin-bottom: 14px;
}

.process-desc {
  text-align: center;
  font-size: 18px;
  color: #555;
  margin-bottom: 55px;
}

.process-diagram {
  display: grid !important;
  grid-template-columns: 1fr 48px 1fr 48px 1fr !important;
  gap: 0 !important;
  align-items: center;
}

.process-step {
  position: relative;
  background: linear-gradient(145deg, #ffffff, #fbf7f1);
  border: 1px solid #e4cbb1;
  border-radius: 20px;
  padding: 44px 26px 34px;
  text-align: center;
  min-height: 260px;
  box-shadow: 0 14px 30px rgba(61, 42, 28, 0.09);
}

.step-number {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background: #8b5e34;
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: #3b2a1c;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.process-step h3 {
  font-size: 23px;
  color: #2d1f15;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #ead8c4;
}

.process-step p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

.process-arrow {
  text-align: center;
  font-size: 34px;
  color: #8b5e34;
  font-weight: 800;
}

/* 6개를 안정적으로 3개씩 2줄로 보이게 */
.process-diagram .process-step:nth-of-type(4) {
  grid-column: 1;
}

@media (max-width: 900px) {
  .process-diagram {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .process-arrow {
    transform: rotate(90deg);
    margin: 4px 0;
  }

  .process-step {
    min-height: auto;
  }
}
.process {
  max-width: 1200px;
}

.process h2,
.process-desc {
  text-align: center;
}

.process-desc {
  margin-bottom: 50px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 70px;
}

.process-card {
  position: relative;
  background: #fff;
  border: 1px solid #e4cbb1;
  border-radius: 20px;
  padding: 46px 28px 34px;
  text-align: center;
  min-height: 260px;
  box-shadow: 0 14px 30px rgba(61, 42, 28, 0.09);
}

.process-card::after {
  content: "→";
  position: absolute;
  right: -48px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 34px;
  color: #8b5e34;
  font-weight: 800;
}

.process-card:nth-child(3)::after,
.process-card:nth-child(6)::after {
  display: none;
}

.step-number {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background: #8b5e34;
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: #3b2a1c;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.process-card h3 {
  font-size: 23px;
  color: #2d1f15;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #ead8c4;
}

.process-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-card::after {
    display: none;
  }
}

@media (max-width: 560px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-card {
    min-height: auto;
  }
}
/* ===========================
   상담 접수 폼
=========================== */

.contact-form-section {
  max-width: 1000px;
}

.contact-form-section h2 {
  text-align: center;
}

.form-desc {
  text-align: center;
  margin-bottom: 40px;
  color: #666;
}

.contact-form {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  border: 1px solid #ead8c4;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.form-row {
  display: flex;
  flex-direction: column;
}

.form-row.full {
  grid-column: 1 / -1;
}

.form-row label {
  margin-bottom: 8px;
  font-weight: 700;
  color: #3b2a1c;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid #d8c4ad;
  border-radius: 12px;
  background: #faf8f5;
  font-size: 16px;
  transition: all 0.2s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: #8b5e34;
  background: #ffffff;
}

.form-row textarea {
  resize: vertical;
}

.form-btn {
  grid-column: 1 / -1;

  background: #8b5e34;
  color: #fff;

  border: none;
  border-radius: 14px;

  padding: 18px;

  font-size: 20px;
  font-weight: 700;

  cursor: pointer;
  transition: all 0.2s ease;
}

.form-btn:hover {
  background: #734b28;
}

.form-notice {
  grid-column: 1 / -1;
  text-align: center;
  color: #555;
  margin-top: 10px;
}

.form-notice strong {
  color: #8b5e34;
}
/* ===========================
   개인정보 동의
=========================== */

.privacy-box {
  grid-column: 1 / -1;

  background: #f8f2ea;

  border: 2px solid #d9c1a6;
  border-radius: 18px;

  padding: 24px;
}

.privacy-title {
  display: flex;
  align-items: center;
  gap: 10px;

  font-size: 20px;
  font-weight: 800;

  color: #3b2a1c;

  margin-bottom: 16px;
}

.privacy-title::before {
  content: "🔒";
  font-size: 24px;
}

.privacy-content {
  background: #ffffff;
  border-radius: 12px;
  padding: 18px;
  border: 1px solid #ead8c4;
}

.privacy-content p {
  margin-bottom: 10px;
  color: #444;
}

.privacy-content ul {
  margin-left: 20px;
}

.privacy-content li {
  margin-bottom: 6px;
  color: #555;
}

.privacy-check {
  margin-top: 18px;

  display: flex;
  align-items: center;
  gap: 10px;

  font-weight: 700;
  color: #3b2a1c;
}

.privacy-check input {
  width: 20px;
  height: 20px;
}