/* ==========================================================================
   OUR DNA — Extended Styles (Small Rounded Style, No Shadow)
   ========================================================================== */

/* ── Section Label ─────────────────────────────────────────────────────── */
.hwt-section-label {
  display: block;
  font-size: var(--fs-label);
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.hwt-section-h2 {
  font-size: var(--fs-h2-sticky);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin: 0;
}

/* Nav menu link styling */
.hwt-menu-link {
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: var(--fs-menu);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color var(--transition-normal);
}

.hwt-menu-item.active .hwt-menu-link {
  color: var(--accent-gold);
}

.hwt-menu-link:hover {
  color: var(--accent-gold-hover, var(--accent-gold));
}

/* ── Chapter Headings & Text ───────────────────────────────────────────── */
.hwt-step-h3 {
  font-size: var(--fs-h3);
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

/* Body paragraf standar */
.hwt-body-text {
  color: var(--text-dim);
  font-size: var(--fs-body);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.hwt-body-text--spaced {
  margin-bottom: 2rem;
}

/* Italic highlight / closing line */
.hwt-closing-line {
  color: var(--text-main);
  font-size: var(--fs-body-lg);
  font-weight: 600;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ── Blockquote ───────────────────────────────────────────────────────── */
.hwt-blockquote {
  border-left: 3px solid var(--accent-gold);
  padding-left: 1.5rem;
  margin: 0;
}

.hwt-blockquote p {
  color: var(--text-main);
  font-size: var(--fs-body);
  font-style: italic;
  font-weight: 600;
  line-height: 1.7;
  margin: 0;
}

/* ── Key Differentiators ───────────────────────────────────────────────── */
.hwt-diff-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hwt-diff-list p {
  color: var(--text-dim);
  font-size: var(--fs-body);
  line-height: 1.8;
  margin: 0;
}

/* ── Services — Numbered List Editorial Layout ───────────────────────── */
.hwt-service-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.hwt-service-item {
  display: flex;
  align-items: flex-start;
  gap: 1.75rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-color);
  transition: padding-left 0.3s ease;
}

.hwt-service-item:hover {
  padding-left: 0.75rem;
}

.hwt-service-icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(196, 147, 45, 0.08);
  border: 1px solid rgba(196, 147, 45, 0.25);
  border-radius: var(--radius-sm, 6px);
  padding: 10px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.hwt-service-item:hover .hwt-service-icon-wrap {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
}

.hwt-service-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hwt-service-content {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.hwt-service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  letter-spacing: -0.3px;
  transition: color 0.3s ease;
}

.hwt-service-item:hover .hwt-service-title {
  color: var(--accent-gold);
}

.hwt-service-desc {
  font-size: var(--fs-body-sm);
  color: var(--text-dim);
  line-height: 1.6;
  margin: 0;
}

/* ── Foreword Image — Small Rounded Framing ──────────────────────────── */
.hwt-foreword-img-wrapper {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  max-height: 240px;
  overflow: hidden;
  border-radius: var(--radius-md, 8px);
  border: 1px solid var(--border-color);
  margin: 1.5rem 0 2rem;
  box-shadow: none;
}

.hwt-foreword-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 991px) {
  .hwt-progress-menu {
    position: static;
    margin-bottom: 24px;
    display: flex;
    flex-direction: row;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  
  .hwt-progress-menu::-webkit-scrollbar {
    display: none;
  }

  .hwt-nav-item {
    white-space: nowrap;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    font-size: 11px;
  }
}

@media (max-width: 576px) {
  .hwt-service-item {
    gap: 1.25rem;
    padding: 1.2rem 0;
  }
  .hwt-service-icon-wrap {
    width: 40px;
    height: 40px;
    padding: 8px;
  }
  .hwt-service-title {
    font-size: 1.15rem;
  }
}
