/**
 * haeso main page sections — 2026-09-11 redesign
 */

/* —— Hero —— */
.haeso-hero .copy_area {
  color: var(--haeso-white);
  text-align: center;
  padding: 24px 16px;
  max-width: 860px;
  margin: 0 auto;
}

.haeso-hero .hero-kicker {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.haeso-hero .hero-title {
  margin: 0 0 12px;
  color: var(--haeso-white);
  font-size: clamp(30px, 4.4vw, 52px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.haeso-hero .hero-title em {
  font-style: normal;
  color: #ffd6a8;
}

.haeso-hero .hero-desc {
  margin: 0 auto 20px;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(16px, 2.1vw, 19px);
  line-height: 1.55;
  font-weight: 500;
}

.haeso-hero .hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.haeso-hero .hero-badges li {
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--haeso-white);
  font-size: 14px;
  font-weight: 700;
}

.haeso-hero .hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.haeso-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none !important;
  transition: background 0.2s ease, transform 0.15s ease;
}

.haeso-btn:hover {
  transform: translateY(-1px);
}

.haeso-btn--accent {
  background: var(--haeso-accent);
  color: var(--haeso-white) !important;
}

.haeso-btn--accent:hover {
  background: var(--haeso-accent-dark);
}

.haeso-btn--naver {
  background: var(--haeso-success);
  color: var(--haeso-white) !important;
}

.haeso-btn--naver:hover {
  background: var(--haeso-success-dark);
}

.haeso-btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--haeso-white) !important;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.haeso-btn--outline {
  background: transparent;
  color: var(--haeso-primary) !important;
  border: 1px solid var(--haeso-primary);
}

.haeso-btn--outline:hover {
  background: var(--haeso-primary);
  color: var(--haeso-white) !important;
}

.haeso-hero .hero-meta {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

/* Slide 2/3 simpler copy */
.haeso-hero .hero-title--sm {
  font-size: clamp(24px, 3.6vw, 40px);
}

/* —— Trust strip —— */
.haeso-trust {
  background: var(--haeso-primary-dark);
  color: var(--haeso-white);
}

.haeso-trust .inner {
  max-width: var(--haeso-max);
  margin: 0 auto;
  padding: 18px 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  text-align: center;
}

.haeso-trust strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 4px;
}

.haeso-trust span {
  font-size: 13px;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .haeso-trust .inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* —— Phone band —— */
.haeso-phone-band {
  background: #2a2a2a;
  text-align: center;
  padding: 22px 16px;
}

.haeso-phone-band .band-label {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 600;
}

.haeso-phone-band a {
  color: var(--haeso-white);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.haeso-phone-band a:hover {
  color: var(--haeso-accent);
}

/* —— Section common —— */
.haeso-section {
  padding: 56px 0;
}

.haeso-section--bg {
  background: var(--haeso-bg);
}

.haeso-section .inner {
  max-width: var(--haeso-max);
  margin: 0 auto;
  padding: 0 16px;
}

.haeso-section-head {
  margin: 0 0 28px;
  text-align: center;
}

.haeso-section-head h2 {
  margin: 0 0 8px;
  color: var(--haeso-text);
  font-size: clamp(24px, 3.1vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.haeso-section-head p {
  margin: 0;
  color: var(--haeso-text-muted);
  font-size: 16px;
  line-height: 1.55;
}

/* —— Service cards —— */
.haeso-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.haeso-services li {
  background: var(--haeso-white);
  border: 1px solid var(--haeso-border);
  border-radius: var(--haeso-radius);
  padding: 24px 18px;
  text-align: center;
  transition: border-color 0.2s ease, transform 0.15s ease;
}

.haeso-services li:hover {
  border-color: var(--haeso-primary);
  transform: translateY(-2px);
}

.haeso-services .svc-num {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--haeso-primary);
  font-size: 14px;
  font-weight: 800;
}

.haeso-services dt {
  margin: 0 0 8px;
  color: var(--haeso-text);
  font-size: 19px;
  font-weight: 800;
}

.haeso-services dd {
  margin: 0 0 14px;
  color: var(--haeso-text-muted);
  font-size: 15px;
  line-height: 1.5;
  min-height: 42px;
}

.haeso-services a {
  color: var(--haeso-primary);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.haeso-services a:hover {
  text-decoration: underline;
}

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

@media (max-width: 768px) {
  .haeso-hero .hero-title {
    font-size: 26px;
  }

  .haeso-hero .hero-desc {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .haeso-hero .hero-badges li {
    font-size: 12px;
    padding: 6px 10px;
  }

  .haeso-hero .hero-cta .haeso-btn {
    width: 100%;
    max-width: 320px;
  }

  .haeso-hero .hero-meta {
    font-size: 11px;
  }

  .haeso-phone-band a {
    font-size: 26px;
  }

  .right_quick {
    display: none !important;
  }
}

/* —— Process —— */
.haeso-process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}

.haeso-process li {
  position: relative;
  background: var(--haeso-white);
  border: 1px solid var(--haeso-border);
  border-radius: var(--haeso-radius);
  padding: 20px 12px;
  text-align: center;
}

.haeso-process li::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  margin-bottom: 8px;
  color: var(--haeso-primary);
  font-size: 14px;
  font-weight: 800;
}

.haeso-process strong {
  display: block;
  margin-bottom: 4px;
  color: var(--haeso-text);
  font-size: 16px;
}

.haeso-process span {
  color: var(--haeso-text-muted);
  font-size: 13px;
  line-height: 1.4;
}

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

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

/* —— Cases more CTA —— */
.haeso-more-cta {
  margin: 28px auto 0;
  max-width: 520px;
  border-radius: var(--haeso-radius);
  background: var(--haeso-success);
  text-align: center;
  overflow: hidden;
}

.haeso-more-cta a {
  display: block;
  padding: 18px 16px;
  text-decoration: none;
}

.haeso-more-cta .t1 {
  margin: 0 0 4px;
  color: var(--haeso-white);
  font-size: 18px;
  font-weight: 800;
}

.haeso-more-cta .t2 {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
}

/* —— Bottom CTA band —— */
.haeso-cta-band {
  background: var(--haeso-primary-dark);
  color: var(--haeso-white);
  text-align: center;
  padding: 48px 16px;
}

.haeso-cta-band h2 {
  margin: 0 0 8px;
  color: var(--haeso-white);
  font-size: clamp(24px, 3.1vw, 32px);
  font-weight: 800;
}

.haeso-cta-band p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
}

.haeso-cta-band .hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

/* Soften existing section heads toward brand */
.tl_business_now_box_warp > .inner > h2,
.tl_product_box_wrap > .inner > h2,
.tl_company_box_wrap > .inner > h2 {
  color: var(--haeso-text);
}

.tl_company_box_wrap ul li:hover a {
  background: var(--haeso-primary);
}

.tl_main_gallery_wrap a:hover {
  color: var(--haeso-primary);
}

.tl_main_gallery_wrap li:hover .one_box {
  background-color: var(--haeso-primary-dark);
}
