.hero {
  background: linear-gradient(180deg, #EAECF0 0%, #DFE2E8 100%);
  padding: 80px 0 64px;
  text-align: center;
}

.hero-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 브랜드 - 양쪽 라인 */
.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  color: #7C8494;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.hero-brand::before,
.hero-brand::after {
  content: "";
  width: 48px;
  height: 1px;
  background: #A0A7B5;
}

/* 캐치프레이즈 - 중간 크기 */
.hero-catchphrase {
  color: #374151;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
}

/* 메인 타이틀 - 제일 크게 */
.hero-title {
  color: #0B0F1A;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -2px;
  margin-bottom: 32px;
}

/* 설명 */
.hero-desc {
  color: #5E6577;
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: -0.2px;
}

.hero-desc + .hero-desc {
  margin-top: 2px;
}

/* 검색창 */
.hero-search {
  max-width: 540px;
  margin: 44px auto 0;
  background: #ffffff;
  border-radius: 60px;
  border: 1px solid #D1D5DB;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.04);
  transition: all 0.3s;
}

.hero-search:focus-within {
  box-shadow: 0 6px 32px rgba(0,0,0,0.09);
  border-color: #B0B6C1;
}

.hero-search input {
  width: 100%;
  padding: 18px 28px;
  border: none;
  outline: none;
  font-size: 15px;
  font-family: "SUIT", sans-serif;
  color: #111827;
  background: transparent;
  text-align: center;
}

.hero-search input::placeholder {
  color: #9CA3AF;
}

/* 카운트 */
.hero-count {
  margin-top: 24px;
  color: #7C8494;
  font-size: 14px;
  letter-spacing: -0.2px;
}

.hero-count strong {
  color: #0B0F1A;
  font-size: 20px;
  font-weight: 800;
  margin: 0 4px;
}
