:root{
  --bg: #f6faf7;
  --card: rgba(255,255,255,.88);
  --text:#0f172a;
  --muted:#475569;

  --border: rgba(15, 23, 42, .10);
  --border2: rgba(15, 23, 42, .14);

  --accent:#22c55e;
  --accent2:#86efac;

  --shadow: 0 14px 40px rgba(2, 6, 23, .08);
  --radius: 18px;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1100px 600px at 20% 0%, rgba(34,197,94,.18), transparent 55%),
    radial-gradient(900px 520px at 80% 10%, rgba(134,239,172,.20), transparent 55%),
    radial-gradient(800px 520px at 60% 90%, rgba(34,197,94,.10), transparent 60%),
    var(--bg);
}

a{ color: inherit; }

section{ padding: 14px 0; }
@media (max-width:900px){ section{ padding: 26px 0; } }

/* =========================
   NAVBAR (logo groter + knoppen rechts)
   (markup staat in public_base.html)
========================= */
header .brand-logo{
  height: 38px; /* groter dan 28 */
  width: auto;
  opacity: .98;
}

/* knoppen in navbar */
.nav-actions{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}

.btn{
  padding:12px 18px;
  border-radius:999px;
  border: 1px solid var(--border);
  text-decoration:none;
  font-weight: 800;
  color: var(--text);
  background: rgba(255,255,255,.80);
  box-shadow: 0 10px 24px rgba(2,6,23,.05);
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
}
.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(2,6,23,.08);
  border-color: var(--border2);
}
.btn.primary{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #06210f;
  border-color: transparent;
}
.btn.ghost{
  background: rgba(255,255,255,.55);
}
.btn.outline{
  background: transparent;
  border-color: rgba(15,23,42,.18);
  box-shadow: none;
}
.btn.small{
  padding: 10px 14px;
  font-weight: 850;
}

/* =========================
   HERO SPLIT (tekst links, laptop rechts)
========================= */
.hero-split{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items: center;
}

@media (max-width: 980px){
  .hero-split{
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.hero-text{
  max-width: 760px;
}

.h1{
  font-size: 44px;
  line-height: 1.06;
  margin: 8px 0 0;
  letter-spacing: -0.02em;
}
@media (max-width:900px){ .h1{ font-size: 38px; } }

.h1 .sub{
  display:block;
  font-size: 15px;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.lead{
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.75;
  max-width: 70ch;
  margin-top: 12px;
}
.sublead{
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  max-width: 70ch;
  margin-top: 10px;
}

/* laptop rechts */
.hero-media{
  display:flex;
  justify-content: flex-end;
}
@media (max-width: 980px){
  .hero-media{ justify-content: center; }
}

.hero-img{
  width: 100%;
  max-width: 520px;
  height: auto;
  display:block;
}

/* dashboard breed (horizontaal onder trust) */
.hero-image{
  margin: 46px 0;
  display:flex;
  justify-content:center;
}
.hero-img-wide{
  width: 100%;
  max-width: 980px;
  height: auto;
  display:block;
}
@media (max-width:900px){
  .hero-image{ margin: 30px 0; }
}

/* badges */
.badges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 18px;
}
.badge{
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--border);
  font-weight: 800;
  font-size: 13px;
  color: rgba(15,23,42,.78);
}

/* =========================
   TRUST (horizontaal)
========================= */
.trust{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width:980px){
  .trust{ grid-template-columns: 1fr; }
}

.trust-item{
  display:grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.78);
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(2,6,23,.05);
}

.trust-ico{ width: 34px; height: 34px; }
.trust-title{ font-weight: 900; margin-bottom: 4px; }
.trust-text{ color: var(--muted); font-size: 14.5px; line-height: 1.6; }

/* =========================
   CARDS / GRIDS
========================= */
.section-head{ margin: 0 0 14px; }
.section-head h2{ margin: 0 0 8px; font-size: 28px; letter-spacing: -0.01em; }
.section-head p{ margin: 0; color: var(--muted); line-height: 1.65; max-width: 70ch; }

.card{
  border: 1px solid var(--border);
  background: rgba(255,255,255,.82);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(2,6,23,.05);
}

.grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width:980px){ .grid{ grid-template-columns:1fr; } }

.how-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 12px;
}
@media (max-width:980px){ .how-grid{ grid-template-columns:1fr; } }

.card.step{ padding: 20px; }
.step-ico{ width: 38px; height: 38px; margin-bottom: 10px; }
.card.step h3{ margin: 0 0 8px; }
.card.step p{ margin: 0; color: var(--muted); line-height: 1.7; }

.card.module{
  padding: 20px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.module-top{
  display:flex;
  align-items:center;
  gap: 10px;
}
.module-ico{ width: 34px; height: 34px; }
.card.module h3{ margin: 0; }
.card.module p{ margin: 0; color: var(--muted); line-height: 1.7; }

.list{
  margin: 8px 0 0;
  padding-left: 18px;
  color: rgba(15,23,42,.85);
}
.list li{ margin: 6px 0; }

.card-actions{
  margin-top:auto;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 6px;
}

.module-preview{
  margin-top: 14px;
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border);
  display:block;
}

/* =========================
   PUBLIC BASE LAYOUT
========================= */
.public-header{
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 0;
}

.public-header-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.public-main{
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px;
}

.public-footer{
  max-width: 1200px;
  margin: 40px auto 20px;
  padding: 0 20px;
  color: #64748b; /* iets vriendelijker dan het oude blauwgrijs */
}

.public-footer-inner{
  display:flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.public-footer-links{
  display:flex;
  gap: 14px;
}

.public-footer-links a{
  color: #64748b;
  text-decoration: none;
}

.public-footer-links a:hover{
  text-decoration: underline;
}

/* Logo groter in navbar */
header .brand-logo{
  height: 40px; /* pas aan: 36-44 is mooi */
  width: auto;
}

/* =========================
   SPLIT SECTION: MODULES + HOW (strakker)
========================= */

.split-section{
  margin: 30px 0;
}

.split-grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: start;
}

/* Titles iets compacter */
.split-col h2{
  margin: 0 0 10px;
}

.section-intro{
  color: var(--muted);
  max-width: 52ch;
  margin: 0 0 18px;
  line-height: 1.6;
}

/* Links: afbeelding hoger + minder zweven */
.split-image-wrap{
  margin-top: 18px;
}

.split-image{
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
}

/* Rechts: stappen compacter en strakker */
.steps{
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.step-card{
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 16px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  box-shadow: 0 10px 26px rgba(2,6,23,.05);
}

.step-card img{
  width: 34px;
  height: 34px;
  display: block;
}

/* Titel + tekst binnen kaart */
.step-card strong{
  display: block;
  margin: 0 0 3px;
  font-size: 18px;
}

.step-card p{
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

/* Mobiel: onder elkaar, image eerst, stappen daarna */
@media (max-width: 900px){
  .split-grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .split-image{
    max-width: 100%;
  }
}

