/* ==========================================================
   HOW TO BUY — page-specific styles
   Builds on tokens already defined in style.css.
   ========================================================== */

.htb-section {
  background: var(--c-off-white, #f6f4f1);
  padding: 40px 24px 70px;
}

.htb-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.htb-process-head {
  text-align: center;
  margin-bottom: 36px;
}

.htb-eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: 8px;
}

.htb-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--c-ink);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* Steps list */
/* .htb-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 50px;
  counter-reset: none;
}

.htb-step {
  position: relative;
  display: flex;
  gap: 20px;
  padding: 0 0 30px;
}

.htb-step::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom, rgba(224,33,39,0.35) 0 6px, transparent 6px 12px
  );
}

.htb-step:last-child::before { display: none; }
.htb-step:last-child { padding-bottom: 0; }

.htb-step-pending {
  opacity: 0;
  transform: translateY(14px);
}

.htb-step-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.htb-step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-charcoal);
  color: var(--c-orange);
  border: 2px solid var(--c-orange);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  z-index: 1;
}

.htb-step-body {
  background: var(--c-panel);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 10px;
  padding: 16px 20px;
  flex: 1;
  min-width: 0;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.htb-step:hover .htb-step-body {
  border-color: rgba(224,33,39,0.3);
  transform: translateX(4px);
}

.htb-step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--c-ink);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.htb-step-text {
  font-size: 13px;
  line-height: 1.65;
  color: var(--c-ink-muted);
} */


.htb-process-graphic{
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  border: 1px solid rgba(0,0,0,0.06);
  
}

.htb-process-img{
  border-radius: 10px;
}
/* Payment + Terms grid */
.htb-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 46px;
}

.htb-info-panel {
  background: var(--c-panel);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 30px 28px;
}

.htb-info-panel-dark {
  background: var(--c-charcoal);
  border-color: var(--c-border);
}

.htb-info-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--c-ink);
  margin-bottom: 14px;
}

.htb-info-title-light { color: var(--c-white); }

.htb-info-text {
  font-size: 13px;
  line-height: 1.7;
  color: var(--c-ink-muted);
  margin-bottom: 20px;
}

.htb-payment-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.htb-payment-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.htb-payment-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--c-off-white);
  color: var(--c-red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.htb-payment-label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 2px;
}

.htb-payment-sub {
  font-size: 12px;
  line-height: 1.5;
  color: var(--c-ink-muted);
}

.htb-terms-list {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--c-text-muted);
  font-size: 13px;
  line-height: 1.65;
}

.htb-terms-list li::marker {
  color: var(--c-orange);
  font-weight: 700;
}

/* CTA panel (shared visual language with why-choose.css, kept local
   to avoid coupling two page stylesheets together) */
.htb-cta-panel {
  background: linear-gradient(160deg, var(--c-charcoal) 0%, var(--c-black) 100%);
  border-radius: 14px;
  padding: 34px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.htb-cta-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--c-white);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.htb-cta-sub {
  font-size: 13.5px;
  color: var(--c-text-muted);
}

.htb-cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.htb-cta-actions .back-to-results-btn {
  color: var(--c-white);
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 900px) {
  .htb-section { padding: 32px 18px 50px; }
  .htb-info-grid { grid-template-columns: 1fr; }
  .htb-cta-panel { padding: 28px 24px; justify-content: center; text-align: center; }
}

@media (max-width: 600px) {
  .htb-step { gap: 14px; }
  .htb-step-num { width: 38px; height: 38px; font-size: 14px; }
  .htb-step::before { left: 18px; top: 38px; }
  .htb-step-body { padding: 14px 16px; }
  .htb-info-panel { padding: 22px 20px; }
  .htb-cta-panel { flex-direction: column; align-items: stretch; text-align: center; }
  .htb-cta-actions { justify-content: center; }
  .htb-cta-actions .filter-search-btn,
  .htb-cta-actions .back-to-results-btn { width: 100%; justify-content: center; }
}
