/* ===========================
   HERO 2-koloms layout
   =========================== */

.hero {
  padding: 6rem 0 3rem;
  text-align: left;
}

/* wrapper binnen hero (zet links en rechts naast elkaar) */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

/* zet 2 kolommen aan vanaf tablet/klein desktop */
@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 2.5rem;
    align-items: start;
  }
}

/* linker kolom */
.hero-left {
  min-width: 0;
}

/* rechter kolom */
.hero-right {
  min-width: 0;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

/* subgrid rechts: 1/2/3 + demo */
.hero-media {
  width: 100%;
  max-width: 720px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  align-items: stretch;
  margin-left: auto; /* forceer rechts uitlijnen */
}

/* 1/2/3 kolom */
.hero-steps {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding-top: .25rem;
}

.hero-step {
  width: 44px;
  height: 44px;
  border-radius: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

/* demo frame */
.hero-demo {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  min-height: 420px;
}

.hero-demo img,
.hero-demo video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* mobiel: verberg steps en laat demo full width */
@media (max-width: 899px) {
  .hero-media {
    grid-template-columns: 1fr;
  }
  .hero-steps {
    display: none;
  }
  .hero-demo {
    min-height: 320px;
  }
}
/* Footer exact in lijn met FAQ/sections: gebruikt dezelfde .container rails */
.footer-inner{
  padding: 4rem 0 5rem;            /* vergelijkbaar met py-16/py-20 */
  border-top: 1px solid rgba(15, 23, 42, .10);
}

.feature-badge--eyebrow{
  /* minder “pill”/badge feeling */
  background: rgba(255,255,255,.55);
  border-color: rgba(15, 23, 42, .10);
  box-shadow: none;

  /* typografie rustiger */
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .005em;
  color: rgba(15, 23, 42, .62);

  /* optioneel: iets compacter */
  padding: .34rem .62rem;
}

:root{
  --accent: #271c8a;
}