/* ============================================
   Bouwsteenwinkel — how-it-works.css
   Styles specific to hoe-werkt-huren.html
   ============================================ */

/* ============================================
   HERO
   ============================================ */
.hiw-hero {
  padding: 56px 0 40px;
  text-align: center;
  background: var(--bg-primary);
}

.hiw-hero h1 {
  max-width: 720px;
  margin: 0 auto 16px;
  font-size: 44px;
}

.hiw-hero p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto 22px;
}

.hiw-hero-ctas {
  display: flex;
  justify-content: center;
  gap: 12px;
}

/* ============================================
   4-STEP JOURNEY WITH TIMELINE
   ============================================ */
.hiw-journey {
  padding: 40px 0 64px;
  background: var(--bg-primary);
}

.hiw-journey-inner {
  position: relative;
}

.hiw-line {
  position: absolute;
  top: 54px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border);
}

.hiw-line-fill {
  position: absolute;
  top: -2px;
  left: 0;
  width: 35%;
  height: 6px;
  background: var(--brand-coral);
  border-radius: 3px;
}

.hiw-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.hiw-step-block {
  text-align: center;
}

.hiw-circle {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  margin: 0 auto 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hiw-circle-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 32px;
  height: 32px;
  background: #fff;
  border: 2px solid;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
}

/* Step color variants */
.hiw-1 { background: var(--brand-coral-light); }
.hiw-1 .hiw-circle-num {
  border-color: var(--brand-coral);
  color: var(--brand-coral);
}

.hiw-2 { background: var(--blue-50); }
.hiw-2 .hiw-circle-num {
  border-color: var(--blue-500);
  color: var(--blue-500);
}

.hiw-3 { background: var(--green-50); }
.hiw-3 .hiw-circle-num {
  border-color: var(--green-500);
  color: var(--green-500);
}

.hiw-4 { background: var(--amber-50); }
.hiw-4 .hiw-circle-num {
  border-color: var(--amber-500);
  color: var(--amber-600);
}

/* Inner decorative shapes */
.hiw-inner-shape {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  position: relative;
}

.hiw-shape-1 { background: var(--brand-coral); }

.hiw-shape-1::after {
  content: "";
  position: absolute;
  inset: 10px;
  background: var(--brand-coral-dark);
  border-radius: 6px;
}

.hiw-shape-2 {
  width: 70px;
  height: 50px;
  background: var(--blue-500);
  border-radius: 8px;
  position: relative;
}

.hiw-shape-2::before,
.hiw-shape-2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  width: 16px;
  height: 16px;
  background: var(--blue-900);
  border-radius: 50%;
  border: 2px solid var(--blue-50);
}

.hiw-shape-2::before { left: 10px; }
.hiw-shape-2::after  { right: 10px; }

.hiw-shape-3 {
  background: var(--green-500);
  border-radius: 50%;
}

.hiw-shape-4 {
  width: 60px;
  height: 44px;
  background: var(--amber-500);
  border-radius: 4px;
  position: relative;
}

.hiw-shape-4::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 12px;
  right: 12px;
  height: 12px;
  background: var(--amber-600);
  border-radius: 3px 3px 0 0;
}

.hiw-step-block h3 {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 8px;
}

.hiw-step-block > p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 14px;
}

.hiw-step-list {
  font-size: 12px;
  color: var(--text-tertiary);
  line-height: 1.7;
}

/* ============================================
   COMPARE: BUY VS RENT
   ============================================ */
.compare-section {
  padding: 56px 0;
  background: var(--bg-tertiary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.compare-head {
  text-align: center;
  margin-bottom: 28px;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}

.compare-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.compare-card.highlight {
  border: 2px solid var(--brand-coral);
  position: relative;
}

.compare-card.highlight::before {
  content: "Aanbevolen";
  position: absolute;
  top: -11px;
  left: 24px;
  background: var(--brand-coral);
  color: #fff;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 500;
}

.compare-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.compare-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.compare-icon-muted { background: var(--bg-secondary); }
.compare-icon-brand { background: var(--brand-coral-light); }

.compare-card-head h3 {
  font-size: 16px;
  font-weight: 500;
}

.compare-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
}

.compare-list li {
  display: flex;
  gap: 10px;
  align-items: start;
}

.compare-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dot-minus { background: var(--bg-secondary); }
.dot-minus::before {
  content: "";
  width: 7px;
  height: 2px;
  background: var(--text-tertiary);
}

.dot-check { background: var(--green-50); }
.dot-check::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--green-500);
  border-radius: 50%;
}

/* ============================================
   WHAT'S INCLUDED
   ============================================ */
.included-section {
  padding: 56px 0;
  background: var(--bg-primary);
}

.included-head {
  text-align: center;
  margin-bottom: 32px;
}

.usp-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.usp-card {
  padding: 22px;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
}

.usp-icon {
  width: 34px;
  height: 34px;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.usp-icon svg {
  width: 18px;
  height: 18px;
}

.usp-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}

.usp-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ============================================
   FAQ
   ============================================ */
.hiw-faq {
  padding: 56px 0;
  background: var(--bg-tertiary);
  border-top: 1px solid var(--border);
}

.hiw-faq-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.hiw-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
}

.hiw-faq-intro h2 {
  font-size: 24px;
  margin-bottom: 16px;
}

.hiw-faq-intro p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.service-card {
  margin-top: 20px;
  padding: 14px 18px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--border);
}

.service-card-title {
  font-size: 13px;
  font-weight: 500;
}

.service-card-sub {
  font-size: 11px;
  color: var(--text-tertiary);
}

/* ============================================
   FINAL CTA (reuses dark style)
   ============================================ */
.hiw-cta {
  padding: 56px 0;
  background: var(--bg-primary);
}

.cta-dark {
  padding: 48px;
  background: var(--dark-bg);
  color: #fff;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.cta-blob-1 {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 240px;
  height: 240px;
  background: var(--brand-coral);
  border-radius: 50%;
  opacity: 0.2;
}

.cta-blob-2 {
  position: absolute;
  bottom: -60px;
  right: 80px;
  width: 160px;
  height: 160px;
  background: var(--amber-500);
  border-radius: 50%;
  opacity: 0.15;
}

.cta-content {
  position: relative;
  max-width: 540px;
  z-index: 2;
}

.cta-content h2 {
  font-size: 32px;
  margin-bottom: 14px;
  line-height: 1.15;
}

.cta-content p {
  font-size: 15px;
  color: var(--dark-text);
  margin-bottom: 24px;
  line-height: 1.6;
}

.cta-ghost {
  padding: 12px 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
}

/* ============================================
   RESPONSIVE — how-it-works.css
   ============================================ */
@media (max-width: 960px) {
  .hiw-hero h1 { font-size: 30px; }
  .hiw-line { display: none; }
  .hiw-steps { grid-template-columns: repeat(2, 1fr); }
  .compare-grid { grid-template-columns: 1fr; }
  .usp-grid-4 { grid-template-columns: 1fr 1fr; }
  .hiw-faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-dark { padding: 32px 24px; }
}

@media (max-width: 620px) {
  .hiw-steps { grid-template-columns: 1fr; }
  .usp-grid-4 { grid-template-columns: 1fr; }
}
