/* =============================================================
   CROWN WATCH GROUP — Process & Protection Page
   /how-it-works
   Namespace: .cwg-hiw-*
   ============================================================= */

/* ── PAGE WRAPPER ──────────────────────────────────────────── */
.cwg-hiw-page {
  padding: 64px 0 80px;
}

/* ── PAGE HEADER ───────────────────────────────────────────── */
.cwg-hiw-header {
  text-align: center;
  margin-bottom: 56px;
}

.cwg-hiw-header__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 600;
  color: var(--cwg-black);
  margin: 8px 0 10px;
  letter-spacing: -0.01em;
}

.cwg-hiw-header__sub {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--cwg-midgray);
  margin: 0;
  font-style: italic;
}

/* ── SECTION ───────────────────────────────────────────────── */
.cwg-hiw-section {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0 48px;
  padding: 40px 0;
  border-top: 1px solid var(--cwg-lightgray);
  align-items: start;
}

/* ── SECTION LABEL (left column) ──────────────────────────── */
.cwg-hiw-section__label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cwg-green);
  padding-top: 3px;
  margin: 0;
}

/* ── STEPS LIST (Section 1) ────────────────────────────────── */
.cwg-hiw-steps {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cwg-hiw-step {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--cwg-lightgray);
}

.cwg-hiw-step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cwg-hiw-step__num {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--cwg-midgray);
  min-width: 22px;
}

.cwg-hiw-step__label {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: var(--cwg-black);
  line-height: 1.4;
}

/* ── STATEMENT LIST (Sections 2, 3, 4) ────────────────────── */
.cwg-hiw-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cwg-hiw-list li {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--cwg-darkgray);
  line-height: 1.5;
  padding: 9px 0;
  border-bottom: 1px solid var(--cwg-lightgray);
}

.cwg-hiw-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* ── Q&A (Section 5) ───────────────────────────────────────── */
.cwg-hiw-qa {
  display: flex;
  flex-direction: column;
}

.cwg-hiw-qa__item {
  padding: 14px 0;
  border-bottom: 1px solid var(--cwg-lightgray);
}

.cwg-hiw-qa__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cwg-hiw-qa__q {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  color: var(--cwg-black);
  margin: 0 0 5px;
}

.cwg-hiw-qa__a {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--cwg-darkgray);
  line-height: 1.55;
  margin: 0;
}

/* ── CTA BLOCK ─────────────────────────────────────────────── */
.cwg-hiw-cta {
  text-align: center;
  padding-top: 56px;
  border-top: 1px solid var(--cwg-lightgray);
  margin-top: 0;
}

.cwg-hiw-cta__heading {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  color: var(--cwg-black);
  margin: 0 0 20px;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .cwg-hiw-section {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 32px 0;
  }
}

@media (max-width: 640px) {
  .cwg-hiw-page {
    padding: 40px 0 60px;
  }

  .cwg-hiw-header {
    margin-bottom: 40px;
  }
}
