/* -----------------------
    히어로 섹션
------------------------ */
.hero {
  background-color: #fff;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-media {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  padding-bottom: 24px;
}

.hero-content-title {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 4px;
}

.hero-logo img {
  margin: 20px auto;
  width: 50%;
  max-width: 150px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 42px;
  border-radius: 12px;
  font-size: 12px;
  border: 1px solid #ccc;
  background-color: #fff;
  font-weight: 600;
}

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

/* QR 영역 */
.qr-section {
  background-color: #F9F9F9;
  padding: 24px 0 32px;
}

.qr-title {
  font-size: 16px;
  font-weight: 600;
  padding: 12px 0 24px;
}

.qr-grid {
  width: 90%;
  display: grid;
  margin: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.qr-card {
  border-radius: 12px;
  border: 1px solid var(--border-light);
  padding: 16px;
  text-align: center;
  font-size: 13px;
  color: var(--text-sub);
  background-color: #fff;
}

.qr-card img {
  width: 60%;
  margin: 12px auto 0;
}

.qr-box {
  width: 100%;
  padding-top: 100%;
  border-radius: 8px;
  border: 1px dashed #ccc;
}

/* -----------------------
    서비스 / 포인트 섹션
------------------------ */
.small-container {
  width: 100%;
  max-width: 960px;
  padding: 0 16px;
  margin: 0 auto;
}
.service-section {
  padding: 32px 0 0;
}

.section-title {
  padding: 10px 0;
  font-weight: 700;
  color: var(--color-primary);
}

.service-header .section-heading {
  font-size: 18px;
  line-height: 28px;
}

.section-heading {
  font-size: 22px;
  font-weight: 700;
}

.point {
  padding: 32px 0;
  background-color: #f5f5f8;
}

.point:nth-child(even) {
  background-color: #fff;
}

.point-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.point-text small {
  display: block;
  padding: 10px 0;
  font-weight: 700;
  color: var(--color-primary);
}

.point-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.point-description {
  font-size: 14px;
  line-height: 20px;
  color: var(--text-sub);
}

.point-media {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.point-media img {
  width: 100%;
}


/* -----------------------
    데스크톱 레이아웃
    (768px 이상)
------------------------ */
@media (min-width: 769px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 1120px;
    padding: 0 16px;
    margin: 0 auto;
  }

  .hero-media {
    flex: 0 0 60%;
    min-height: 340px;
  }

  .hero-content {
    flex: 0 0 40%;
  }

  .hero-logo img {
    width: 50%;
    max-width: 200px;
  }

  .hero-buttons {
    gap: 24px;
  }

  .btn {
    width: 150px;
    height: 42px;
    font-size: 15px;
  }

  .qr-section {
    padding: 48px 0;
  }

  .qr-section .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }

  .qr-title {
    font-size: 20px;
  }

  .qr-grid {
    width: 480px;
    margin: 0;
  }

  .service-section {
    padding: 64px 0 0;
  }

  .service-header .section-heading {
    font-size: 24px;
  }

  .point {
    padding: 64px 0;
  }

  .point.first {
    padding: 0 0 64px;
  }

  .point-inner {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0px;
  }

  .point-text small {
    font-size: 18px;
    padding: 14px 0;
  }

  .point-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .point-description {
    font-size: 16px;
    line-height: 24px;
    color: var(--text-sub);
  }

  .point-text {
    flex: 0 0 40%;
  }

  .point-media {
    width: 50%;
    min-height: 280px;
  }

  .point-media img {
    height: 100%;
    width: auto;
  }
}