:root {
  --purple: #6b3fa0;
  --purple-dark: #5a3486;
  --orange: #f2a93b;
  --orange-dark: #e09422;
  --yellow: #f7d046;
  --dark: #1f2024;
  --text: #2b2b2e;
  --text-light: #6b6b70;
  --bg-soft: #faf9f7;
  --radius: 14px;
  --max-width: 1100px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  line-height: 1.55;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid #eee;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img { height: 36px; width: auto; }

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn-purple { background: var(--purple); color: #fff; }
.btn-purple:hover { background: var(--purple-dark); }

.btn-orange { background: var(--orange); color: #1f1f1f; }
.btn-orange:hover { background: var(--orange-dark); }

.btn-block { display: block; width: 100%; text-align: center; }

/* Hero */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 110px 0 90px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero .wrap { position: relative; z-index: 1; }

.hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  margin: 0 0 14px;
  max-width: 700px;
}

.hero p.lead {
  font-size: 1.25rem;
  margin: 0;
  max-width: 600px;
}

/* Opt-in card, used in hero or standalone */
.optin-card {
  background: #fff;
  color: var(--text);
  border-radius: var(--radius);
  padding: 32px;
  max-width: 380px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

.optin-card .check { color: #2da44e; font-weight: 700; }

.optin-card .small-print {
  font-weight: 800;
  text-align: center;
  margin: 6px 0 16px;
}

.optin-card input[type="text"],
.optin-card input[type="email"] {
  width: 100%;
  padding: 13px 14px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 800px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.9rem; }
}

/* Sections */
section { padding: 70px 0; }

.section-soft { background: var(--bg-soft); }

h2.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 50px;
}

/* Feature grid (3 cols) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 800px) {
  .feature-grid { grid-template-columns: 1fr; }
}

.feature-card {
  text-align: center;
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ece1f7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.6rem;
}

img.feature-icon {
  background: none;
  border-radius: 0;
  width: 80px;
  height: 80px;
}

.feature-card h3 { margin: 0 0 10px; }
.feature-card p { color: var(--text-light); margin: 0; }

/* Product cards (homepage) */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media (max-width: 800px) {
  .product-grid { grid-template-columns: 1fr; }
}

.product-card {
  border-radius: var(--radius);
  padding: 34px;
  background: #fff;
  border: 1px solid #eee;
  text-align: center;
}

.product-card h3 { font-size: 1.4rem; margin: 0 0 12px; }
.product-card p { color: var(--text-light); margin: 0 0 22px; }

/* Stats counter */
.stats-banner {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 40px 0;
}

.stats-banner h2 { font-size: 1.6rem; margin: 0 0 6px; }
.stats-banner p { color: #999; margin: 0; font-size: 0.9rem; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.stats-row .num { font-size: 1.8rem; font-weight: 800; color: var(--purple); }
.stats-row .label { color: var(--text-light); }

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 800px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

.testimonial {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.testimonial .quote { margin: 0 0 14px; }
.testimonial .author { font-weight: 700; color: var(--text-light); font-size: 0.9rem; }

/* Founder story */
.founder {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 800px) {
  .founder { grid-template-columns: 1fr; }
}

.founder img { border-radius: var(--radius); }
.founder ul { padding-left: 20px; }

/* FAQ */
.faq-item { border-bottom: 1px solid #eee; padding: 24px 0; }
.faq-item h3 { margin: 0 0 10px; }
.faq-item p, .faq-item li { color: var(--text-light); }

/* CTA banner */
.cta-banner {
  text-align: center;
  background: var(--purple);
  color: #fff;
  border-radius: var(--radius);
  padding: 50px 30px;
}

.cta-banner h2 { margin: 0 0 24px; }

/* Footer */
footer.site-footer {
  background: var(--dark);
  color: #ccc;
  padding: 50px 0;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

footer.site-footer a { color: #ccc; display: block; margin-bottom: 10px; }
footer.site-footer a:hover { color: #fff; }

/* Plain list page (overzicht) */
.opdrachten-list {
  max-width: 700px;
  margin: 0 auto;
  padding-left: 20px;
}

.opdrachten-list li { margin-bottom: 10px; }

.center { text-align: center; }
