/* ===== How It Works — Aligned with /clusters design ===== */
html, body { background: #0B1120 !important; margin: 0; overflow-x: hidden !important; max-width: 100vw !important; }

.hiw-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.hiw-content-narrow { max-width: 800px; margin: 0 auto; }

/* ===== Hero (cl-hero) ===== */
.cl-hero {
  padding: 108px 0 40px;
  text-align: center;
  position: relative;
  background: linear-gradient(327deg,rgba(33,0,75,0.20) 3%,rgba(60,0,136,0) 40%),linear-gradient(246deg,rgba(236,90,34,0.08) 0%,rgba(209,25,80,0) 36%),linear-gradient(148deg,rgba(0,169,234,0.04) 0%,transparent 60%),#0B1120;
  display: block;
  width: 100%;
  overflow: hidden;
}
.cl-hero .hiw-container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cl-hero h1 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: -1.5px;
}
.hiw-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(236,90,34,0.3);
  font-size: 13px;
  color: rgba(226,232,240,0.6);
  margin-bottom: 32px;
  background: rgba(236,90,34,0.06);
}
.hiw-hero-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #EC5A22;
  display: inline-block;
  animation: hiw-pulse 2s ease-in-out infinite;
}
@keyframes hiw-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hiw-hero-label-text {
  color: #EC5A22;
  font-weight: 600;
}
.hiw-hero-desc {
  font-size: clamp(15px, 1.5vw, 17px);
  color: rgba(226,232,240,0.5);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

/* ===== Section common ===== */
.hiw-section-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #EC5A22;
  margin: 0 0 12px;
}
.hiw-step, .hiw-managed, .hiw-faq {
  padding: 80px 0;
}
.hiw-step h2, .hiw-managed h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: #1E293B;
  letter-spacing: -1px;
  line-height: 1.15;
  margin: 0 0 20px;
}
.hiw-step p {
  font-size: 16px;
  line-height: 1.7;
  color: #64748B;
  margin: 0 0 16px;
}

/* Step number badge */
.hiw-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

/* Alternating step colors */
.hiw-step-1 { background: #F8FAFC; }
.hiw-step-1 .hiw-step-number { background: rgba(236,90,34,0.1); color: #EC5A22; }

.hiw-step-2 { background: #FFFFFF; }
.hiw-step-2 .hiw-step-number { background: rgba(0,169,234,0.1); color: #00A9EA; }

.hiw-step-3 { background: #F8FAFC; }
.hiw-step-3 .hiw-step-number { background: rgba(22,163,74,0.1); color: #16A34A; }

.hiw-step-4 { background: #FFFFFF; }
.hiw-step-4 .hiw-step-number { background: rgba(139,92,246,0.1); color: #8B5CF6; }

/* CTA button */
.hiw-cta { margin-top: 28px; }
.hiw-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 12px;
  background: #EC5A22;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s;
}
.hiw-btn:hover {
  background: #D4501E;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(236,90,34,0.4);
}

/* ===== Step highlight points ===== */
.hiw-step-points {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hiw-step-points li {
  font-size: 14px;
  line-height: 1.6;
  color: #64748B;
  padding: 16px 20px 16px 40px;
  position: relative;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  transition: all 0.3s;
}
.hiw-step-points li:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.hiw-step-points li::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 22px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #EC5A22;
}
.hiw-step-points li strong {
  color: #1E293B;
}
.hiw-step-1 .hiw-step-points li,
.hiw-step-3 .hiw-step-points li { background: #FFFFFF; }
.hiw-step-2 .hiw-step-points li,
.hiw-step-4 .hiw-step-points li { background: #F8FAFC; }

/* ===== Managed section — #F8FAFC ===== */
.hiw-managed {
  background: #F8FAFC;
}
.hiw-managed > .hiw-container > p {
  font-size: 16px;
  line-height: 1.7;
  color: #64748B;
  margin-bottom: 32px;
}
.hiw-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hiw-features li {
  font-size: 14px;
  line-height: 1.6;
  color: #64748B;
  padding: 16px 20px;
  padding-left: 40px;
  position: relative;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  transition: all 0.3s;
}
.hiw-features li:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.hiw-features li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 22px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #EC5A22;
}
.hiw-features li strong {
  color: #1E293B;
}

/* ===== FAQ — #FFFFFF ===== */
.hiw-faq {
  padding: 80px 0;
  background: #FFFFFF;
}
.hiw-faq-header { text-align: center; margin-bottom: 48px; }
.hiw-faq-header h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: #1E293B;
  letter-spacing: -1px;
  margin: 0 0 12px;
}
.hiw-faq-header p { font-size: 16px; color: #64748B; margin: 0; }
.hiw-faq-list { max-width: 800px; margin: 0 auto; list-style: none; padding: 0; }
.hiw-faq-item {
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  margin-bottom: 8px;
  overflow: hidden;
  background: #F8FAFC;
  transition: all 0.2s;
}
.hiw-faq-item:hover { border-color: rgba(236,90,34,0.3); }
.hiw-faq-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  transition: background 0.2s;
}
.hiw-faq-title:hover { background: rgba(0,0,0,0.02); }
.hiw-faq-title span { font-size: 15px; font-weight: 600; color: #1E293B; line-height: 1.4; }
.hiw-faq-icon { width: 24px; height: 24px; flex-shrink: 0; color: #EC5A22; transition: transform 0.3s; }
.hiw-faq-item.active .hiw-faq-icon { transform: rotate(45deg); }
.hiw-faq-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.hiw-faq-body-inner { padding: 12px 24px 20px; }
.hiw-faq-body p { font-size: 14px; color: #64748B; line-height: 1.7; margin: 0 0 12px; }
.hiw-faq-body p:last-child { margin-bottom: 0; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hiw-features { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .cl-hero { padding: 88px 0 40px; }
  .hiw-step, .hiw-managed, .hiw-faq { padding: 60px 0; }
  .hiw-features, .hiw-step-points { grid-template-columns: 1fr; }
  .hiw-faq-title { padding: 14px 18px; }
  .hiw-faq-body-inner { padding: 8px 18px 16px; }
}
@media (max-width: 480px) {
  .hiw-container { padding: 0 16px; }
}
