/* ===== 메인(home / index) 전용 스타일 ===== */

.hero {
  position: relative;
  background: var(--bg);
}

.hero-media {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 2;
  overflow: hidden;
}

.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-banner {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  transform: scale(1.03);
  animation: slowZoom 10s ease-out forwards;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(20, 26, 24, 0.66) 0%, rgba(20, 26, 24, 0.44) 30%, rgba(20, 26, 24, 0.06) 58%, rgba(20, 26, 24, 0) 72%),
    linear-gradient(180deg, rgba(20, 26, 24, 0.28) 0%, rgba(20, 26, 24, 0) 40%);
}

.hero-media-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding-bottom: 6rem;
}

.hero-media-overlay .wrap {
  width: calc(100% - 4rem);
  max-width: none;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(100%, 620px);
  max-width: 100%;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border: 0;
  background: rgba(250, 250, 248, 0.34);
  color: rgba(24, 30, 32, 0.86);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.hero-nav:hover {
  background: rgba(250, 250, 248, 0.54);
  color: rgba(24, 30, 32, 1);
}

.hero-nav--prev {
  left: 0.9rem;
}

.hero-nav--next {
  right: 0.9rem;
}

.hero-slider-ui {
  position: absolute;
  left: 2.4rem;
  right: 1.2rem;
  bottom: 1.45rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

@media (min-width: 761px) {
  .hero-slider-ui {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}

.hero-slider-track {
  position: relative;
  height: 4px;
  width: min(28vw, 340px);
  background: rgba(255, 255, 255, 0.38);
}

.hero-slider-progress {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: rgba(255, 255, 255, 0.98);
}

.hero-slider-toggle {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(10, 12, 16, 0.18);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.hero-slider-icon {
  display: inline-block;
  width: 8px;
  height: 10px;
  position: relative;
}

.hero-slider-icon::before,
.hero-slider-icon::after {
  content: "";
  position: absolute;
  top: 0;
  width: 3px;
  height: 100%;
  background: currentColor;
}

.hero-slider-icon::before {
  left: 0;
}

.hero-slider-icon::after {
  right: 0;
}

.hero-slider-toggle.is-paused .hero-slider-icon::before,
.hero-slider-toggle.is-paused .hero-slider-icon::after {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
  top: 0;
  left: 1px;
  right: auto;
  background: transparent;
}

.hero-slider-toggle.is-paused .hero-slider-icon::after {
  content: none;
}

.hero h1 {
  width: max-content;
  max-width: calc(100vw - 4rem);
  margin: 0.7rem 0 0;
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
  font-weight: 700;
  font-size: clamp(2.1rem, 4.6vw, 4rem);
  line-height: 1.18;
  letter-spacing: 0;
  color: #fafaf8;
  text-shadow: 0 2px 16px rgba(10, 15, 13, 0.52);
}

.hero h1 span,
.hero h1 em {
  display: block;
  white-space: nowrap;
}

.hero h1 em {
  color: #ffb5aa;
  font-style: normal;
  font-weight: 800;
}

.hero-description {
  margin: 0.9rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 500;
  line-height: 1.45;
}

.hero-description span {
  display: block;
  white-space: nowrap;
}

.hero-company-link {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 0;
  background: rgba(15, 20, 18, 0.34);
  color: #fff;
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.hero-company-link:hover,
.hero-company-link:focus-visible {
  border-color: #fff;
  background: rgba(15, 20, 18, 0.62);
}

/* ===== Customer concerns ===== */
.customer-concerns {
  position: relative;
  min-height: clamp(500px, 62vw, 690px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #050505;
  color: #f7f7f5;
}

.customer-concerns-inner {
  position: relative;
  width: min(100% - 2rem, 680px);
  padding: clamp(4.8rem, 9vw, 7rem) 0 clamp(6rem, 10vw, 8rem);
}

.customer-concerns-title {
  width: fit-content;
  margin: 0 auto clamp(2.5rem, 5vw, 3.8rem);
  padding: 0.65rem 1.4rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  color: #f7f7f5;
  font-family: "Song Myung", "Noto Serif KR", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  transform: translateY(-2.25rem);
}

.concern-list {
  display: grid;
  gap: clamp(1.7rem, 4vw, 2.7rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.concern-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.concern-row--left {
  justify-self: start;
}

.concern-row--right {
  justify-self: end;
}

.concern-row--indented {
  margin-left: 2rem;
}

.concern-avatar {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 5px solid #fff;
  border-radius: 50%;
  background: #ececec;
  font-size: 2.4rem;
  line-height: 1;
}

.concern-bubble {
  position: relative;
  min-width: 238px;
  margin: 0;
  padding: 0.75rem 1.8rem;
  border-radius: 34px;
  background: #393939;
  color: #f2f2f2;
  font-size: clamp(0.96rem, 1.7vw, 1.08rem);
  line-height: 1.35;
  text-align: center;
}

.concern-bubble strong {
  font-weight: 700;
}

.concern-row--left .concern-bubble::before,
.concern-row--right .concern-bubble::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 22px;
  background: #393939;
  transform: translateY(-50%) skewY(-24deg);
}

.concern-row--left .concern-bubble::before {
  left: -8px;
}

.concern-row--right .concern-bubble::after {
  right: -8px;
  transform: translateY(-50%) skewY(24deg);
}

/* ===== Trust promise ===== */
.trust-promise {
  position: relative;
  overflow: hidden;
  padding: clamp(17rem, 22vw, 20rem) 0 clamp(5rem, 9vw, 7.5rem);
  background: #fff;
}

.trust-promise::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: clamp(250px, 22vw, 330px);
  background:
    radial-gradient(ellipse 92% 96% at 50% 112%,
      #fff 0%,
      #fff 46%,
      rgba(255, 255, 255, 0.98) 55%,
      rgba(255, 255, 255, 0.88) 64%,
      rgba(255, 255, 255, 0.64) 73%,
      rgba(255, 255, 255, 0.34) 81%,
      rgba(255, 255, 255, 0.12) 88%,
      rgba(255, 255, 255, 0.03) 93%,
      rgba(255, 255, 255, 0) 97%),
    #050505;
  pointer-events: none;
}

.trust-promise::after {
  content: "";
  position: absolute;
  top: clamp(2.5rem, 4vw, 3.5rem);
  left: 50%;
  z-index: 2;
  width: 2px;
  height: clamp(120px, 10vw, 140px);
  background: #4f4f50;
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.86));
  transform: translateX(-50%);
  pointer-events: none;
}

.trust-promise-inner {
  position: relative;
  z-index: 1;
}

.trust-promise-head {
  margin-bottom: clamp(2.8rem, 5vw, 4.2rem);
  text-align: center;
}

.trust-promise-head p {
  margin: 0 0 0.45rem;
  color: var(--ink);
  font-family: "Song Myung", "Noto Serif KR", serif;
  font-size: clamp(1.45rem, 2.8vw, 2.15rem);
}

.trust-promise-head h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Song Myung", "Noto Serif KR", serif;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 600;
  line-height: 1.25;
}

.trust-promise-head h2 strong {
  color: var(--dc-green);
  font-weight: inherit;
}

.trust-promise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.8rem, 2vw, 1.5rem);
}

.trust-card {
  display: grid;
  grid-template-rows: auto 210px 1fr;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(49, 95, 85, 0.14);
  border-radius: var(--radius-lg);
  background: #f6f7f6;
}

.trust-card h3 {
  margin: 0;
  padding: 1rem 0.8rem;
  background: var(--dc-green);
  color: #fff;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.3;
  text-align: center;
}

.trust-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trust-card:nth-child(1) img {
  object-position: center 38%;
}

.trust-card:nth-child(2) img {
  object-position: center 48%;
}

.trust-card:nth-child(3) img {
  object-position: center 52%;
}

.trust-card p {
  margin: 0;
  padding: 1.8rem 1rem 2rem;
  color: var(--ink-dim);
  font-size: clamp(0.9rem, 1.4vw, 1.02rem);
  line-height: 1.65;
  text-align: center;
}

.trust-card strong,
.trust-card b {
  color: var(--ink);
  font-weight: 700;
}

.trust-card-key {
  color: var(--ink);
  font-weight: 600;
}

.trust-card .trust-card-highlight {
  color: var(--dc-green);
  font-weight: 800;
}

/* ===== Special products ===== */
.special-products {
  padding: clamp(5.5rem, 10vw, 8rem) 0;
  background: var(--panel);
}

.special-products-head {
  max-width: 1040px;
  margin: 0 auto clamp(2.8rem, 5vw, 4rem);
  text-align: center;
}

.special-products-head .eyebrow {
  justify-content: center;
}

.special-products-head h2 {
  margin: 0.7rem 0 0.8rem;
  color: var(--ink);
  font-family: "Song Myung", "Noto Serif KR", serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1.25;
}

.special-products-head > p:last-child {
  margin: 0;
  color: var(--ink-dim);
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
}

.special-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 1.7rem);
}

.special-product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.special-product-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

.special-product-media span {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-chip);
  background: rgba(250, 250, 248, 0.9);
  color: var(--dc-green);
  font-size: 0.78rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.special-product-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.9rem;
  padding: clamp(1rem, 1.6vw, 1.4rem);
}

.special-product-body h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Song Myung", "Noto Serif KR", serif;
  font-size: 1.45rem;
}

.special-product-body p {
  margin: 0.35rem 0 0;
  color: var(--ink-dim);
  font-size: 0.9rem;
  line-height: 1.6;
}

.special-product-body > strong {
  margin-top: auto;
  color: var(--dc-red);
  font-size: 1rem;
  white-space: nowrap;
}

.special-product-detail {
  display: none;
}

.special-products-action {
  margin-top: 2.4rem;
  text-align: center;
}

.special-products-more-card {
  display: none;
}

@media (min-width: 981px) {
  .special-products-grid {
    grid-template-areas:
      "mubinso more combined"
      "general more featured";
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr) minmax(0, 1fr);
    grid-template-rows: repeat(2, minmax(250px, 1fr));
    gap: 1rem;
    height: 580px;
  }

  .special-product-card--mubinso {
    grid-area: mubinso;
  }

  .special-product-card--featured {
    grid-area: featured;
  }

  .special-product-card--general {
    grid-area: general;
  }

  .special-product-card--combined {
    grid-area: combined;
  }

  .special-product-card {
    position: relative;
    display: block;
  }

  .special-product-card .special-product-media {
    position: absolute;
    inset: 0;
    height: auto;
    aspect-ratio: auto;
  }

  .special-product-card .special-product-media span {
    z-index: 2;
  }

  .special-product-card .special-product-body {
    position: relative;
    z-index: 1;
    height: 100%;
    justify-content: flex-end;
    gap: 0.45rem;
    padding: 3.6rem 1.2rem 1.1rem;
    background: linear-gradient(180deg, transparent 24%, rgba(12, 20, 18, 0.28) 52%, rgba(12, 20, 18, 0.92) 100%);
  }

  .special-product-card .special-product-body h3,
  .special-product-card .special-product-body p,
  .special-product-card .special-product-body > strong {
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  }

  .special-product-card .special-product-body h3 {
    font-size: 1.35rem;
  }

  .special-product-card .special-product-body p {
    margin-top: 0.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .special-product-card .special-product-body > strong {
    margin-top: 0.35rem;
    color: #f4d99f;
    font-size: 0.92rem;
  }

  .special-product-detail {
    display: inline-flex;
    width: fit-content;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    align-self: center;
    margin-top: 0.25rem;
    padding: 0.38rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1;
    backdrop-filter: blur(6px);
  }

  .special-products-more-card {
    grid-area: more;
    display: grid;
    grid-template-rows: auto 1fr;
    min-width: 0;
    border: 0;
    border-radius: 0;
    background: var(--bg);
    color: var(--ink);
    text-align: center;
  }

  .special-products-more-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
  }

  .special-products-more-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .special-products-more-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 0;
    padding: 1.2rem 2rem 1.5rem;
  }

  .special-products-more-body > span {
    color: var(--dc-red);
    font-size: 0.78rem;
    font-weight: 700;
  }

  .special-products-more-body h3 {
    margin: 0.35rem 0 0;
    font-family: "Song Myung", "Noto Serif KR", serif;
    font-size: clamp(1.8rem, 2.5vw, 2.35rem);
  }

  .special-products-more-body p {
    margin: 0.55rem 0 0;
    color: var(--ink-dim);
    font-size: 1rem;
    line-height: 1.6;
  }

  .special-products-more-body strong {
    margin-top: 0.75rem;
    display: inline-flex;
    min-width: 116px;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    align-self: center;
    padding: 0.55rem 1.25rem;
    border: 1px solid var(--dc-green);
    border-radius: 999px;
    background: var(--dc-green);
    color: #fff;
    font-size: 0.86rem;
  }

  .special-products-action {
    display: none;
  }
}

/* ===== Estimate builder ===== */
.estimate-builder {
  position: relative;
  overflow: hidden;
  padding: clamp(3.25rem, 5vw, 4rem) 0;
  background: var(--dc-green);
  color: #fff;
}

.estimate-builder-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(3rem, 7vw, 6.5rem);
  align-items: center;
}

.estimate-builder-copy .eyebrow {
  color: #e8d2a8;
}

.estimate-builder-copy h2 {
  margin: 0.8rem 0 1.2rem;
  color: #fff;
  font-family: "Song Myung", "Noto Serif KR", serif;
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1.18;
}

.estimate-builder-copy h2 em {
  color: #e8d2a8;
  font-style: normal;
}

.estimate-builder-copy > p {
  max-width: 42ch;
  margin: 0 0 1.35rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1rem;
}

.estimate-builder-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.estimate-builder-benefits li {
  position: relative;
  padding-left: 0.9rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
}

.estimate-builder-benefits li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.estimate-builder-start {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.9rem 1.15rem 0.9rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: #fafaf8;
  color: var(--dc-green);
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.estimate-builder-start:hover {
  transform: translateY(-2px);
  background: #ece3d1;
}

.estimate-builder-start span {
  font-size: 1.1rem;
}

.estimate-builder-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  width: min(100%, 490px);
}

.estimate-builder-visual img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 32px rgba(10, 25, 21, 0.24));
}

.estimate-builder-visual .estimate-builder-start {
  margin-top: 1rem;
}

/* ===== Honest reviews ===== */
.honest-reviews {
  padding: clamp(5.5rem, 10vw, 8rem) 0;
  overflow: hidden;
  background: #f4eae1;
}

.honest-reviews-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.7fr) minmax(0, 1.5fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.honest-reviews-intro {
  position: sticky;
  top: 150px;
  padding-top: 2.5rem;
}

.honest-reviews-intro h2 {
  margin: 1rem 0 1.2rem;
  color: var(--ink);
  font-family: "Song Myung", "Noto Serif KR", serif;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 600;
  line-height: 1.28;
}

.honest-reviews-intro > p:not(.eyebrow) {
  max-width: 30ch;
  margin: 0 0 2rem;
  color: var(--ink-dim);
  font-size: 0.95rem;
}

.honest-reviews-nav {
  display: none;
}

.honest-reviews-actions > a {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.honest-reviews-actions > a span {
  color: var(--dc-green);
  font-size: 1.1rem;
}

.honest-reviews-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.honest-reviews-column {
  display: grid;
  gap: 1.5rem;
}

.honest-reviews-column--offset {
  padding-top: 5rem;
}

.honest-review-card {
  min-width: 0;
  padding: clamp(1.5rem, 2.5vw, 2.1rem);
  border: 1px solid rgba(32, 39, 36, 0.08);
  border-radius: var(--radius-lg);
  background: #fff;
}

.honest-review-kicker {
  margin: 0 0 0.7rem;
  color: var(--dc-green);
  font-size: 0.76rem;
  font-weight: 700;
}

.honest-review-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.45;
}

.honest-review-card > p:not(.honest-review-kicker) {
  display: -webkit-box;
  margin: 0.8rem 0 0;
  overflow: hidden;
  color: var(--ink-dim);
  font-size: 0.9rem;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.honest-review-card footer {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.3rem;
  color: var(--ink-dim);
  font-size: 0.76rem;
}

.honest-review-card footer span::after {
  content: "\00B7";
  margin-left: 0.65rem;
}

@keyframes honestReviewRoll {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(var(--review-loop-offset, 0px));
  }
}

@media (min-width: 981px) {
  .honest-reviews {
    padding: 4.5rem 0;
  }

  .honest-reviews-layout {
    align-items: center;
  }

  .honest-reviews-intro {
    position: static;
    padding-top: 0;
  }

  .honest-reviews-columns {
    height: 600px;
    overflow: hidden;
    mask-image: linear-gradient(180deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  }

  .honest-reviews.is-rolling .honest-reviews-column {
    animation: honestReviewRoll 24s linear infinite;
    will-change: transform;
  }

  .honest-reviews.is-rolling .honest-reviews-column--offset {
    animation-duration: 28s;
  }

  .honest-reviews-columns:hover .honest-reviews-column {
    animation-play-state: paused;
  }
}

@media (min-width: 981px) and (prefers-reduced-motion: reduce) {
  .honest-reviews-columns {
    overflow-y: auto;
    mask-image: none;
  }

  .honest-reviews.is-rolling .honest-reviews-column {
    animation: none;
  }
}


/* ===== Minimal signup status ===== */
.signup-status {
  padding: clamp(5.5rem, 10vw, 8rem) 0;
  background: #fff;
}

.signup-status-inner {
  width: min(100% - 2rem, 680px);
}

.signup-status-head {
  text-align: center;
}

.signup-status-head .eyebrow {
  justify-content: center;
}

.signup-status-head h2 {
  margin: 0.75rem 0 1.4rem;
  color: var(--ink);
  font-family: "Song Myung", "Noto Serif KR", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.25;
}

.signup-status-head > p:not(.eyebrow) {
  margin: 0;
  color: var(--ink-dim);
  font-size: 0.96rem;
}

.signup-status-head .signup-status-benefit {
  margin-bottom: 0.2rem;
  color: var(--ink);
}

.signup-status-benefit strong {
  color: var(--gold);
}

.signup-status-head > a {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.4rem;
  color: var(--dc-green);
  font-size: 0.88rem;
  font-weight: 700;
}

.signup-status-dashboard {
  margin-top: clamp(2.8rem, 6vw, 4.5rem);
}

.signup-status .live-status-note {
  margin: 0 0 0.65rem;
  color: var(--ink-dim);
  font-size: 0.74rem;
  font-weight: 400;
  text-align: right;
}

.signup-status .live-status-list {
  max-height: none;
  margin: 0;
  padding: 0;
  list-style: none;
  will-change: transform;
}

.live-status-viewport {
  height: var(--live-status-viewport-height, auto);
  overflow: hidden;
  transition: height 0.3s ease;
}

.signup-status .live-status-list.is-rolling {
  transition: transform 0.5s ease;
}

.live-status-head {
  display: grid;
  grid-template-columns: 54px minmax(70px, 0.8fr) minmax(110px, 1.2fr) 48px;
  gap: 0.8rem;
  padding: 0.55rem 0.65rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink-dim);
  font-size: 0.68rem;
}

.signup-status .live-status-item {
  display: grid;
  grid-template-columns: 54px minmax(70px, 0.8fr) minmax(110px, 1.2fr) 48px;
  gap: 0.8rem;
  align-items: center;
  padding: 1rem 0.65rem;
  border-bottom: 1px solid var(--line);
}

.live-status-tag {
  padding: 0.22rem 0.45rem;
  border: 1px solid rgba(49, 95, 85, 0.3);
  border-radius: var(--radius-chip);
  color: var(--dc-green);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.35;
  white-space: nowrap;
}

.signup-status .live-status-item strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.live-status-detail {
  overflow: hidden;
  color: var(--ink-dim);
  font-size: 0.82rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.signup-status .live-status-item time {
  color: var(--ink-dim);
  font-size: 0.76rem;
  white-space: nowrap;
}

.signup-status .live-status-empty {
  padding: 1.2rem 0.65rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-dim);
  font-size: 0.82rem;
  text-align: center;
}

@media (max-width: 720px) {
  .signup-status {
    padding: 4.8rem 0 5rem;
  }

  .signup-status .live-status-note {
    text-align: left;
  }

  .signup-status .live-status-item {
    grid-template-columns: 47px minmax(55px, 0.75fr) minmax(85px, 1.1fr) 42px;
    gap: 0.5rem;
    padding-inline: 0.25rem;
  }

  .live-status-head {
    grid-template-columns: 47px minmax(55px, 0.75fr) minmax(85px, 1.1fr) 42px;
    gap: 0.5rem;
    padding-inline: 0.25rem;
    font-size: 0.62rem;
  }

  .live-status-tag {
    padding-inline: 0.35rem;
    font-size: 0.62rem;
  }

  .signup-status .live-status-item strong,
  .live-status-detail {
    font-size: 0.76rem;
  }

  .signup-status .live-status-item time {
    font-size: 0.68rem;
  }
}

/* ===== Director trust ===== */
.director-trust {
  padding: clamp(5.5rem, 10vw, 8rem) 0;
  background: #eef2f3;
}

.director-trust-layout {
  display: grid;
  grid-template-columns: minmax(380px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(3rem, 6vw, 5.5rem);
  align-items: stretch;
}

.director-trust-profile-card {
  display: grid;
  grid-template-rows: auto minmax(360px, 1fr) auto;
  min-width: 0;
  border-radius: var(--radius-lg);
  background: transparent;
}

.director-trust-profile-message {
  padding: 0 0 1.4rem;
}

.director-trust-profile-message p {
  margin: 0;
  color: var(--ink-dim);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.5;
}

.director-trust-profile-message p strong {
  margin-left: 0.25rem;
  color: var(--dc-red);
}

.director-trust-profile-message h3 {
  margin: 0.5rem 0 0;
  color: var(--ink);
  font-family: "Song Myung", "Noto Serif KR", serif;
  font-size: clamp(1.55rem, 2.6vw, 1.9rem);
  font-weight: 600;
  line-height: 1.4;
  word-break: keep-all;
}

.director-trust-company-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: fit-content;
  min-height: 44px;
  margin: 1.25rem 0 0 auto;
  padding: 0.65rem 1rem;
  border: 1px solid var(--dc-green);
  border-radius: var(--radius);
  color: var(--dc-green);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease;
}

.director-trust-company-link:hover {
  background: var(--dc-green);
  color: #fff;
}

.director-trust-company-link:focus-visible {
  outline: 3px solid rgba(49, 95, 85, 0.28);
  outline-offset: 3px;
}

.director-trust-media {
  overflow: hidden;
  min-height: 360px;
  background: transparent;
}

.director-trust-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: contain;
  object-position: center bottom;
}

.director-trust-pledge {
  padding: 1.2rem 1.5rem;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  background: var(--dc-green);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  line-height: 1.65;
  text-align: center;
}

.director-trust-pledge p {
  margin: 0;
  font-size: 0.78rem;
}

.director-trust-copy {
  align-self: start;
}

.director-trust-copy h2 {
  margin: 0.75rem 0 0;
  color: var(--ink);
  font-family: "Song Myung", "Noto Serif KR", serif;
  font-weight: 600;
  line-height: 1.2;
}

.director-trust-copy h2 span,
.director-trust-copy h2 em {
  display: block;
  word-break: keep-all;
}

.director-trust-copy h2 span {
  font-size: clamp(1.65rem, 2.5vw, 2.25rem);
}

.director-trust-copy h2 em {
  margin-top: 0.35rem;
  color: var(--dc-green);
  font-size: clamp(2.25rem, 3.5vw, 3.15rem);
  font-style: normal;
  line-height: 1.18;
}

.director-trust-steps {
  position: relative;
  display: grid;
  gap: 0;
  margin: 2.2rem 0 0;
  padding: 0;
  list-style: none;
}

.director-trust-steps::before {
  content: "";
  position: absolute;
  top: 25px;
  bottom: 25px;
  left: 25px;
  width: 2px;
  background: rgba(49, 95, 85, 0.25);
}

.director-trust-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: flex-start;
  gap: 1.15rem;
  padding: 0 0 1.85rem;
}

.director-trust-steps li:last-child {
  padding-bottom: 0;
}

.director-trust-marker {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 10px solid #f8faf9;
  border-radius: 50%;
  background: var(--dc-green);
  box-shadow: inset 0 0 0 1px #fff, 0 0 0 1px rgba(49, 95, 85, 0.08);
  color: #fff;
  font-family: "Song Myung", "Noto Serif KR", serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.director-trust-steps h3 {
  margin: 0.55rem 0 0;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 700;
}

.director-trust-steps p {
  margin: 0.5rem 0 0;
  color: var(--ink-dim);
  font-size: 0.86rem;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .director-trust-layout {
    grid-template-columns: 1fr;
  }

  .director-trust-profile-card {
    grid-template-rows: auto min(64vw, 520px) auto;
  }

  .director-trust-media,
  .director-trust-media img {
    min-height: min(64vw, 520px);
  }
}

@media (max-width: 720px) {
  .director-trust {
    padding: 4.8rem 0 5rem;
  }

  .director-trust-profile-message h3 {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .director-trust-layout {
    gap: 3.2rem;
  }

  .director-trust-profile-card {
    grid-template-rows: auto 300px auto;
  }

  .director-trust-media,
  .director-trust-media img {
    min-height: 300px;
  }

  .director-trust-copy h2 {
    line-height: 1.2;
  }

  .director-trust-copy h2 span {
    font-size: 1.55rem;
  }

  .director-trust-copy h2 em {
    margin-top: 0.3rem;
    font-size: 2.05rem;
  }

  .director-trust-steps {
    margin-top: 1.8rem;
  }

  .director-trust-steps h3 {
    margin-top: 0.4rem;
  }
}

@keyframes slowZoom {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-banner {
    animation: none;
    transform: none;
  }

  .honest-reviews.is-rolling .honest-reviews-column {
    animation: none;
  }

  .signup-status .live-status-list,
  .live-status-viewport {
    transition: none;
  }
}

@media (max-width: 980px) {
  .honest-reviews-column [data-review-clone] {
    display: none;
  }

  .honest-reviews-layout {
    grid-template-columns: 1fr;
  }

  .honest-reviews-intro {
    position: static;
    max-width: 620px;
    padding-top: 0;
  }

  .honest-reviews-intro h2 br {
    display: none;
  }

  .estimate-builder-layout {
    grid-template-columns: 1fr;
  }

  .estimate-builder-copy > p {
    max-width: 58ch;
  }

  .special-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-card {
    grid-template-rows: auto 180px 1fr;
  }

}

@media (max-width: 760px) {
  .hero-media {
    aspect-ratio: 2 / 2.5;
  }

  .hero-nav {
    display: inline-flex;
    width: 42px;
    height: 42px;
    font-size: 1.5rem;
  }

  .hero-nav--prev {
    left: 0.5rem;
  }

  .hero-nav--next {
    right: 0.5rem;
  }

  .hero-slider-ui {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    gap: 0.55rem;
  }

  .hero-slider-track {
    width: min(64vw, 220px);
  }

  .hero-media-overlay {
    padding-bottom: 5.25rem;
  }

  .hero-media-overlay .wrap {
    width: calc(100% - 2rem);
  }

  .hero h1 {
    max-width: calc(100vw - 2rem);
    font-size: clamp(1.25rem, 5.6vw, 1.5rem);
  }

  .hero-company-link {
    margin-top: 0.75rem;
    padding: 0.6rem 0.85rem;
    font-size: 0.82rem;
  }

  .hero-description {
    margin-top: 0.65rem;
    font-size: 0.92rem;
  }

  .customer-concerns {
    min-height: 520px;
  }

  .customer-concerns-inner {
    width: min(100% - 1.5rem, 480px);
    padding: 4.2rem 0 5.5rem;
  }

  .customer-concerns-title {
    transform: translateY(-1.25rem);
  }

  .concern-list {
    gap: 2rem;
  }

  .concern-row {
    gap: 0.65rem;
  }

  .concern-row--indented {
    margin-left: 0.8rem;
  }

  .concern-avatar {
    flex-basis: 52px;
    width: 52px;
    height: 52px;
    border-width: 4px;
    font-size: 1.95rem;
  }

  .concern-bubble {
    min-width: 0;
    max-width: calc(100vw - 5.8rem);
    padding: 0.72rem 1.2rem;
    font-size: 0.92rem;
  }

  .trust-promise {
    padding: 12.5rem 0 5rem;
  }

  .trust-promise::before {
    height: 210px;
    background:
      radial-gradient(ellipse 118% 94% at 50% 112%,
        #fff 0%,
        #fff 44%,
        rgba(255, 255, 255, 0.97) 54%,
        rgba(255, 255, 255, 0.84) 64%,
        rgba(255, 255, 255, 0.58) 74%,
        rgba(255, 255, 255, 0.28) 83%,
        rgba(255, 255, 255, 0.08) 91%,
        rgba(255, 255, 255, 0) 97%),
      #050505;
  }

  .trust-promise::after {
    top: 2rem;
    height: 110px;
  }

  .trust-promise-head h2 strong {
    display: block;
  }

  .trust-promise-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .trust-card {
    grid-template-rows: auto min(52vw, 230px) auto;
  }

  .trust-card p {
    padding: 1.45rem 0.9rem 1.65rem;
  }

  .special-products {
    padding: 4.8rem 0 5rem;
  }

  .special-products-head h2 {
    word-break: keep-all;
  }

  .special-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .estimate-builder {
    padding: 3.25rem 0 3.5rem;
  }

  .estimate-builder-layout {
    gap: 1.75rem;
  }

  .estimate-builder-visual {
    width: min(100%, 460px);
  }

  .honest-reviews {
    padding: 0 0 4.8rem;
    background: #f6f2ec;
  }

  .honest-reviews-layout {
    width: 100%;
    max-width: none;
    gap: 0;
  }

  .honest-reviews-intro {
    min-height: 360px;
    max-width: none;
    padding: 4.5rem 1.5rem 2rem;
    background:
      linear-gradient(90deg, rgba(255, 252, 246, 0.98) 0%, rgba(255, 252, 246, 0.88) 46%, rgba(255, 252, 246, 0.12) 100%),
      url("../img/002_banner.png") 58% center / cover no-repeat;
  }

  .honest-reviews-intro .eyebrow {
    color: #e7681c;
    letter-spacing: 0.18em;
  }

  .honest-reviews-intro h2 {
    max-width: 14ch;
    margin: 0.65rem 0 0.8rem;
    font-size: 2rem;
    line-height: 1.2;
    word-break: keep-all;
  }

  .honest-reviews-intro h2 br {
    display: initial;
  }

  .honest-reviews-intro > p:not(.eyebrow) {
    display: none;
  }

  .honest-reviews-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.35rem;
  }

  .honest-reviews-nav {
    display: flex;
    gap: 0.25rem;
  }

  .honest-reviews-nav button {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    border-bottom: 1px solid rgba(32, 39, 36, 0.4);
    border-radius: 0;
    background: transparent;
    color: var(--ink);
    font-size: 1.2rem;
    line-height: 1;
  }

  .honest-reviews-actions > a {
    gap: 0.5rem;
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(32, 39, 36, 0.4);
    background: transparent;
    font-size: 0.82rem;
  }

  .honest-reviews-columns {
    display: flex;
    gap: 0.85rem;
    overflow-x: auto;
    padding: 0 1rem 1rem;
    scroll-padding-inline: 1rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
  }

  .honest-reviews-columns::-webkit-scrollbar {
    display: none;
  }

  .honest-reviews-column {
    display: none;
  }

  .honest-reviews-column--offset {
    padding-top: 0;
  }

  .honest-review-card {
    position: relative;
    flex: 0 0 calc(100vw - 2rem);
    min-height: 270px;
    padding: 2.8rem 1.35rem 1.4rem;
    border-color: rgba(32, 39, 36, 0.16);
    border-radius: 20px;
    scroll-snap-align: start;
  }

  .honest-review-card::before {
    content: "\201C";
    position: absolute;
    top: 0.65rem;
    left: 1.25rem;
    color: #f06b20;
    font-family: Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
  }

  .honest-review-kicker {
    color: #e7681c;
  }

  .honest-review-card h3 {
    font-size: 1.08rem;
  }

  .honest-review-card > p:not(.honest-review-kicker) {
    -webkit-line-clamp: 4;
  }

  .honest-review-card footer {
    justify-content: flex-end;
    margin-top: 1.6rem;
  }

  .special-product-card {
    display: block;
    border: 0;
    border-radius: 0;
    background: #fff;
  }

  .special-product-media {
    aspect-ratio: 4 / 3;
  }

  .special-product-body {
    display: block;
    padding: 1.1rem 0.9rem 1.25rem;
    text-align: center;
  }

  .special-product-body h3 {
    font-size: 1.25rem;
  }

  .special-product-body p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.78rem;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .special-product-body > strong {
    display: inline-block;
    margin-top: 0.8rem;
    padding: 0.35rem 0.75rem;
    border: 1px solid rgba(49, 95, 85, 0.34);
    border-radius: var(--radius-chip);
    color: var(--ink);
    font-size: 0.76rem;
  }

  .special-product-media span {
    top: 0.65rem;
    left: 0.65rem;
    padding: 0.28rem 0.5rem;
    font-size: 0.68rem;
  }

  .special-products-more-card {
    display: flex;
    grid-column: 1 / -1;
    min-width: 0;
    min-height: 250px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background:
      linear-gradient(rgba(12, 23, 19, 0.72), rgba(12, 23, 19, 0.72)),
      url("../img/003_banner.png") center 42% / cover no-repeat;
    color: #fff;
    text-align: center;
  }

  .special-products-more-media {
    display: none;
  }

  .special-products-more-body {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .special-products-more-body > span {
    color: #e8d2a8;
    font-size: 0.74rem;
    font-weight: 700;
  }

  .special-products-more-card h3 {
    margin: 0.4rem 0 0;
    font-family: "Song Myung", "Noto Serif KR", serif;
    font-size: 1.75rem;
  }

  .special-products-more-card p {
    margin: 0.75rem 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.86rem;
    line-height: 1.6;
  }

  .special-products-more-card strong {
    margin-top: 1rem;
    padding: 0.42rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: var(--radius-chip);
    font-size: 0.8rem;
  }

  .special-products-action {
    display: none;
  }
}

@media (max-width: 480px) {
  .special-products-head h2 {
    font-size: 1.9rem;
  }
}
