/* Krinq minisite - huisstijl: diep paars, Baloo, het ringmotief. */
:root {
  --paars: #3B1E7A;
  --paars-diep: #2A1558;
  --roze: #FF4E8E;
  --lila: #7A5CFF;
  --blauw: #3C8CFF;
  --inkt: #26222E;
  --grijs: #6E6879;
  --wash: #F7F6FB;
  --wit: #FFFFFF;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--inkt);
  background: var(--wash);
  line-height: 1.65;
}
.baloo { font-family: "Baloo 2", -apple-system, sans-serif; }
header.site {
  background: var(--paars);
  padding: 16px 24px;
}
header.site .binnen {
  max-width: 860px; margin: 0 auto;
  display: flex; align-items: center; gap: 12px;
}
header.site a { color: var(--wit); text-decoration: none; }
.woordmerk {
  font-family: "Baloo 2", sans-serif;
  font-weight: 800; font-size: 26px; letter-spacing: 1px;
  color: var(--wit);
}
main { max-width: 860px; margin: 0 auto; padding: 40px 24px 64px; }
h1 {
  text-wrap: balance;
  font-family: "Baloo 2", sans-serif; font-weight: 800;
  font-size: clamp(30px, 5vw, 44px); color: var(--paars);
  line-height: 1.2; margin-bottom: 12px;
}
h2 {
  text-wrap: balance;
  font-family: "Baloo 2", sans-serif; font-weight: 700;
  font-size: 22px; color: var(--paars);
  margin: 36px 0 8px;
}
p { margin-bottom: 14px; }
.gedempt { color: var(--grijs); }
.hero { text-align: center; padding: 24px 0 8px; }
.hero .ring { margin-bottom: 18px; }
.payoff {
  font-family: "Baloo 2", sans-serif; font-weight: 700;
  font-size: clamp(20px, 3.5vw, 28px); color: var(--paars);
}
.kaart {
  background: var(--wit); border: 1px solid #E7E3F0;
  border-radius: 16px; padding: 24px 28px; margin-top: 20px;
}
.zinnen { list-style: none; margin-top: 8px; }
.zinnen li {
  padding: 10px 0 10px 26px; position: relative;
  border-bottom: 1px solid #EFECF6; color: var(--inkt);
}
.zinnen li:last-child { border-bottom: none; }
.zinnen li::before {
  content: ""; position: absolute; left: 0; top: 18px;
  width: 12px; height: 12px; border-radius: 50%;
  border: 3px solid var(--lila);
}
.knop {
  display: inline-block; background: var(--paars); color: var(--wit);
  font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 18px;
  padding: 14px 28px; border-radius: 999px; text-decoration: none;
  margin: 8px 8px 8px 0;
}
.knop.blauw { background: var(--blauw); }
.knop.groot { font-size: 22px; padding: 18px 40px; }
.stappen { counter-reset: stap; list-style: none; margin-top: 12px; }
.stappen li {
  counter-increment: stap; position: relative;
  padding: 8px 0 8px 44px; margin-bottom: 4px;
}
.stappen li::before {
  content: counter(stap); position: absolute; left: 0; top: 8px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--paars); color: var(--wit);
  font-family: "Baloo 2", sans-serif; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
/* De vette hero: het kleurverloop van linksboven (blauw) naar
   rechtsonder (roze), met het echte merkteken erop. */
.hero-vet {
  background: linear-gradient(135deg, #3C8CFF 0%, #7A5CFF 48%, #FF4E8E 100%);
  color: var(--wit);
  text-align: center;
  padding: 28px 24px 64px;
}
.hero-binnen { max-width: 720px; margin: 0 auto; }
.woordmerk.groot {
  font-family: "Baloo 2", sans-serif; font-weight: 800;
  font-size: 30px; letter-spacing: 2px; color: var(--wit);
  text-align: left; margin-bottom: 28px;
}
.icoon-tegel {
  display: inline-flex; align-items: center; justify-content: center;
  width: 140px; height: 140px;
  background: var(--paars);
  border-radius: 32px;
  box-shadow: 0 12px 36px rgba(20, 10, 50, 0.35);
}
.hero-vet h1 {
  color: var(--wit);
  text-shadow: 0 2px 14px rgba(42, 21, 88, 0.25);
  margin-top: 20px;
}
.hero-sub {
  font-size: 19px; max-width: 540px; margin: 10px auto 0;
  color: rgba(255, 255, 255, 0.92);
}
.hero-noot { font-size: 14px; color: rgba(255, 255, 255, 0.75); margin-top: 14px; }
.badges {
  display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: center; margin-top: 28px;
}
.badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: #14111C; color: var(--wit); text-decoration: none;
  border-radius: 14px; padding: 12px 22px 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 24px rgba(42, 21, 88, 0.3);
}
.badge span { display: flex; flex-direction: column; text-align: left; line-height: 1.25; }
.badge small { font-size: 12px; color: #C9C4D6; }
.badge strong { font-family: "Baloo 2", sans-serif; font-weight: 700; font-size: 18px; }
footer.site {
  border-top: 1px solid #E7E3F0; padding: 24px;
  text-align: center; color: var(--grijs); font-size: 14px;
}
footer.site a { color: var(--paars); text-decoration: none; margin: 0 10px; }
.midden { text-align: center; }

/* De app-schermen: drie telefoontjes naast elkaar. */
.schermen {
  display: flex; flex-wrap: wrap; gap: 22px;
  justify-content: center; margin-top: 16px;
}
.telefoon { text-align: center; }
.telefoon img {
  width: 220px; max-width: 70vw;
  border-radius: 26px;
  border: 5px solid #14111C;
  box-shadow: 0 10px 30px rgba(42, 21, 88, 0.22);
  display: block;
}
.telefoon figcaption {
  margin-top: 10px; font-size: 13px; color: var(--grijs);
}
