/* ==========================================================================
   Above the Feed - Boven de feed
   Licht als drager, donkere feed-elementen als eilanden. 50-50 ritme:
   hero en herkenning licht, werkwijze donker, audit licht, samenwerking
   licht met donker storypaneel, Finn donker, contact teal, voet donker.
   ========================================================================== */

:root {
  /* Licht thema (drager) */
  --bg: #faf1e7;
  --vlak: #fffaf3;
  --tekst: #0c2b28;
  --tekst-2: #35524e;
  --tekst-zacht: #5d7773;
  --lijn: rgba(3, 58, 56, .16);

  /* Vast donker palet (de "vette" elementen) */
  --nacht: #081413;
  --paneel: #0e211f;
  --surface: #103330;
  --surface-2: #16443e;
  --lijn-d: #1d4742;
  --room: #fff0e5;
  --room-zacht: #93aca8;

  /* Merk */
  --merk: #033a38;
  --teal: #24b1b1;
  --op-teal: #04211f;

  --font-display: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Poppins", "Segoe UI", sans-serif;

  --wrap: 1200px;
  --gutter: clamp(20px, 5vw, 56px);
  --sectie: clamp(84px, 10.5vw, 128px);

  --r-sm: 8px;
  --r-base: 14px;
  --r-lg: 22px;
  --r-xl: 30px;
}

/* Donkere secties draaien de tekstrollen om. */
.donker {
  --bg: var(--nacht);
  --vlak: rgba(255, 240, 229, .03);
  --tekst: var(--room);
  --tekst-2: rgba(255, 240, 229, .86);
  --tekst-zacht: var(--room-zacht);
  --lijn: rgba(255, 240, 229, .12);
}

/* ---------- basis ---------- */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 104px; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: #faf1e7;
  color: var(--tekst-2);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { margin: 0; color: var(--tekst); }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; }

svg { display: block; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.donker { background: var(--nacht); color: var(--tekst-2); }

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--teal);
  color: var(--op-teal);
  padding: 12px 20px;
  border-radius: 0 0 var(--r-sm) 0;
  font-weight: 700;
}
.skip:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

/* ---------- typografie ---------- */

.d-xl {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.7vw, 80px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.d-lg {
  font-family: var(--font-display);
  font-size: clamp(29px, 3.6vw, 50px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.d-md {
  font-family: var(--font-display);
  font-size: clamp(25px, 2.8vw, 38px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.18;
  letter-spacing: -0.015em;
}

.lead {
  font-size: clamp(17px, 1.35vw, 19px);
  line-height: 1.6;
  color: var(--tekst-zacht);
  max-width: 50ch;
}

/* ---------- avatars ---------- */

.avatar {
  width: 28px;
  height: 28px;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--lijn-d);
  color: var(--room);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
}
.avatar--jou { background: var(--teal); color: var(--op-teal); }
.avatar--foto { padding: 0; overflow: hidden; background: var(--surface); }
.avatar--foto img { width: 100%; height: 100%; object-fit: cover; }
.avatar--chat { background: var(--surface-2); }
.avatar--groot { width: 44px; height: 44px; font-size: 18px; }

/* ---------- knoppen ---------- */

.knop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .28s ease, color .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.knop svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.knop--accent {
  background: var(--teal);
  color: var(--op-teal);
  box-shadow: 0 14px 30px -18px rgba(36, 177, 177, .9);
}
.knop--accent:hover { background: #1d9c9c; box-shadow: 0 18px 34px -16px rgba(36, 177, 177, 1); }

.knop--geest {
  background: transparent;
  color: var(--tekst);
  border-color: var(--lijn);
}
.knop--geest:hover { border-color: var(--teal); color: var(--teal); }

.knop--verstuur {
  background: var(--teal);
  color: var(--op-teal);
  width: 100%;
  margin-top: 4px;
}
.knop--verstuur:hover { background: #46c6c6; }

.knop--klein { padding: 11px 20px; font-size: 14px; }

/* ---------- header: drie losse eilanden ---------- */

.kop {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 60;
  padding-inline: clamp(14px, 3vw, 32px);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  pointer-events: none;
}
.kop > * { pointer-events: auto; }

.eiland {
  border: 1px solid var(--lijn);
  border-radius: 999px;
  background: rgba(255, 250, 243, .8);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 30px -22px rgba(3, 58, 56, .5);
  transition: background-color .3s ease, border-color .3s ease;
}
.kop.vast .eiland { background: rgba(255, 250, 243, .95); }

.eiland--merk {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px 10px 12px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--tekst);
  text-decoration: none;
  white-space: nowrap;
}
.merk__logo {
  width: 30px;
  height: 30px;
  flex: none;
  border-radius: 9px;
  object-fit: cover;
}

/* Het tekstmenu als profieltabs: tekstitems met een teal indicator. */
.eiland--tabs {
  display: flex;
  align-items: center;
  gap: clamp(6px, 1vw, 14px);
  padding: 6px 14px;
}
.tab {
  position: relative;
  padding: 9px 8px;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  color: var(--tekst-zacht);
  transition: color .24s ease;
}
.tab::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 3px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--teal);
  opacity: 0;
  transition: opacity .24s ease;
}
.tab:hover { color: var(--tekst); }
.tab:hover::after { opacity: .45; }
.tab.actief { color: var(--tekst); }
.tab.actief::after { opacity: 1; }

.kop__acties { display: flex; align-items: center; gap: 10px; }
.eiland--cta { box-shadow: 0 14px 30px -18px rgba(36, 177, 177, .9); }

.burger {
  display: none;
  width: 46px;
  height: 46px;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.burger i { display: block; width: 16px; height: 2px; border-radius: 2px; background: var(--tekst); }

.mobielmenu[hidden] { display: none; }
.mobielmenu {
  position: absolute;
  top: calc(100% + 8px);
  left: clamp(14px, 3vw, 32px);
  right: clamp(14px, 3vw, 32px);
  padding: 14px 22px 20px;
  border: 1px solid var(--lijn);
  border-radius: var(--r-lg);
  background: rgba(255, 250, 243, .98);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 44px -24px rgba(3, 58, 56, .4);
  display: flex;
  flex-direction: column;
}
.mobielmenu a {
  padding: 12px 0;
  text-decoration: none;
  color: var(--tekst);
  border-bottom: 1px solid var(--lijn);
  font-size: 16px;
  font-weight: 600;
}
.mobielmenu a:last-child { border-bottom: 0; }
.mobielmenu__cta {
  margin-top: 14px;
  text-align: center;
  background: var(--teal);
  color: var(--op-teal) !important;
  border-radius: 999px;
  font-weight: 700;
  border-bottom: 0 !important;
}

/* ==========================================================================
   S1 hero (licht): claim boven, donkere feedrij eronder
   ========================================================================== */

.hero {
  position: relative;
  padding-top: clamp(140px, 15.5vw, 192px);
  overflow: hidden;
  background:
    radial-gradient(100% 60% at 50% -8%, rgba(36, 177, 177, .16), transparent 62%),
    radial-gradient(70% 45% at 8% 6%, rgba(3, 58, 56, .07), transparent 70%);
}

.hero__tekst { text-align: center; }
.hero__tekst h1 { margin-inline: auto; max-width: 20ch; }
.hero__tekst .lead {
  margin: clamp(20px, 2.4vw, 30px) auto 0;
  max-width: 56ch;
}

.hero__acties {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: clamp(26px, 3vw, 38px);
}

/* De feedrij: vijf donkere posts op een baseline, jouw post is hoger. */

.feedrij {
  margin-top: clamp(44px, 5.5vw, 76px);
  padding-bottom: clamp(44px, 5.5vw, 80px);
}

.feedrij__spoor {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(12px, 1.6vw, 20px);
  align-items: end;
}

.post {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 330px;
  padding: 18px 18px 16px;
  border: 1px solid var(--lijn-d);
  border-radius: var(--r-lg);
  color: var(--room);
  background: linear-gradient(180deg, var(--surface), rgba(11, 34, 31, .96));
  box-shadow: 0 26px 44px -30px rgba(3, 58, 56, .55);
  opacity: 0;
  animation: postOp .7s cubic-bezier(.22, .61, .36, 1) both;
  animation-delay: calc(var(--k) * 90ms + 350ms);
}

.post--dim { filter: saturate(.55); }
.post--dim .post__tekst,
.post--dim .post__naam { color: rgba(255, 240, 229, .62); }

.post__kop {
  display: flex;
  align-items: center;
  gap: 9px;
}
.post__naam {
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.post__tijd { margin-left: auto; flex: none; font-size: 12px; color: var(--room-zacht); }

.post__tekst { font-size: 14.5px; line-height: 1.5; }
.post__tekst--groot {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.28;
  letter-spacing: -0.01em;
  color: var(--room);
}

.post__vlak {
  flex: 1;
  position: relative;
  display: flex;
  align-items: flex-end;
  border-radius: var(--r-base);
  padding: 12px;
  background:
    linear-gradient(160deg, rgba(36, 177, 177, .16), transparent 55%),
    linear-gradient(200deg, #14403a, #0a1c1a);
}
.post__vlak span { font-size: 12.5px; color: rgba(255, 240, 229, .72); }

.post__vlak--video { background: linear-gradient(195deg, #0e2724, #071211); }
.post__play {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 240, 229, .35);
  background: rgba(6, 16, 15, .65);
}
.post__play svg { width: 16px; height: 16px; fill: rgba(255, 240, 229, .85); }

.post__voet {
  margin-top: auto;
  display: flex;
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 240, 229, .09);
}
.post__voet svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: rgba(255, 240, 229, .5);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 240, 229, .55);
}
.post__voet--jou .stat { color: var(--room); }
.post__voet--jou .stat:first-child { color: var(--teal); }

/* De jou-kaart: structureel hoger, teal, gepind. */

.post--jou {
  min-height: 408px;
  border-color: rgba(36, 177, 177, .65);
  margin-bottom: 30px;
  background: linear-gradient(180deg, #0f4a44, #0b322e);
  box-shadow: 0 34px 60px -30px rgba(3, 58, 56, .6), 0 0 0 5px rgba(36, 177, 177, .14);
  animation-name: jouOp;
  animation-duration: .9s;
  animation-delay: 900ms;
}

.post__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  padding: 6px 13px;
  border-radius: 999px;
  background: var(--teal);
  color: var(--op-teal);
  font-size: 12.5px;
  font-weight: 700;
}
.post__badge svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.post__voet--jou svg.vol { fill: var(--teal); stroke: var(--teal); }

@keyframes postOp {
  from { opacity: 0; translate: 0 42px; }
  to   { opacity: 1; translate: 0 0; }
}
@keyframes jouOp {
  from { opacity: 0; translate: 0 120px; }
  60%  { opacity: 1; }
  to   { opacity: 1; translate: 0 0; }
}

/* ==========================================================================
   Telefoonpaneel (gedeeld donker component: chat, spiegel, audit)
   ========================================================================== */

.telefoon {
  border: 1px solid var(--lijn-d);
  border-radius: var(--r-xl);
  background: var(--paneel);
  color: var(--room);
  overflow: hidden;
  box-shadow: 0 30px 56px -34px rgba(3, 58, 56, .6);
}

.telefoon__balk {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 240, 229, .09);
  background: rgba(255, 240, 229, .03);
}
.telefoon__balk--accent { background: rgba(36, 177, 177, .12); }

.telefoon__titel {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--room);
}
.telefoon__titel em {
  font-style: normal;
  font-size: 12px;
  font-weight: 400;
  color: var(--room-zacht);
}

/* ==========================================================================
   S2 herkenning (licht): groepschat naast de kern
   ========================================================================== */

.herkenning { padding-block: var(--sectie); }

.herkenning__grid {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
}

.chatkaart { max-width: 400px; }

.chat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 18px 24px;
}

.bubbel {
  max-width: 82%;
  padding: 11px 16px;
  border-radius: 18px 18px 18px 5px;
  background: var(--surface-2);
  color: var(--room);
  font-size: 14.5px;
  line-height: 1.45;
}
.bubbel--eigen {
  align-self: flex-end;
  border-radius: 18px 18px 5px 18px;
  background: var(--teal);
  color: var(--op-teal);
}

.bubbel--typt {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  padding: 14px 18px;
}
.bubbel--typt i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--room-zacht);
  animation: typt 1.2s ease-in-out infinite;
}
.bubbel--typt i:nth-child(2) { animation-delay: .18s; }
.bubbel--typt i:nth-child(3) { animation-delay: .36s; }
@keyframes typt {
  0%, 60%, 100% { opacity: .35; }
  30% { opacity: 1; }
}

.herkenning__tekst h2 { max-width: 17ch; }
.herkenning__tekst .lead { margin-top: clamp(18px, 2vw, 26px); }

.punten {
  margin-top: clamp(24px, 2.6vw, 34px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.punten li {
  position: relative;
  padding-left: 26px;
  font-size: 16.5px;
  color: var(--tekst-2);
}
.punten li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 14px;
  height: 3px;
  border-radius: 2px;
  background: var(--teal);
}

/* ==========================================================================
   S3 werkwijze (donker): drie stappen, dan de omkering in twee telefoons
   ========================================================================== */

.methode { padding-block: var(--sectie); }

.methode__kop {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: end;
}
.methode__kop h2 { max-width: 9ch; }

.stappen {
  margin-top: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.8vw, 22px);
}

.stapkaart {
  padding: 24px 26px 26px;
  border: 1px solid var(--lijn);
  border-radius: var(--r-lg);
  background: var(--vlak);
}
.stapkaart__nr {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--op-teal);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
}
.stapkaart h3 {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.01em;
}
.stapkaart p { margin-top: 8px; font-size: 15.5px; color: var(--tekst-zacht); }

/* De spiegel: links zenden, rechts lezen, met de draai ertussen. */

.spiegel {
  margin-top: clamp(44px, 5.5vw, 72px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(16px, 2.4vw, 34px);
  align-items: center;
  max-width: 900px;
  margin-inline: auto;
}

.telefoon--dim { filter: saturate(.5); opacity: .82; }
.telefoon--licht { border-color: rgba(36, 177, 177, .5); }

.spiegel__draai {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(36, 177, 177, .5);
  background: rgba(36, 177, 177, .1);
}
.spiegel__draai svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.minifeed {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
}

.minipost {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 10px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(255, 240, 229, .08);
  border-radius: var(--r-base);
  background: rgba(255, 240, 229, .03);
}
.minipost--jou {
  border-color: rgba(36, 177, 177, .55);
  background: rgba(36, 177, 177, .09);
}

.minipost__regels {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.minipost__regels i {
  display: block;
  height: 7px;
  border-radius: 4px;
  background: rgba(255, 240, 229, .16);
}
.minipost__regels .ln-mark { background: rgba(36, 177, 177, .6); }

.minipost__onder {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--room-zacht);
}
.minipost__onder svg { width: 12px; height: 12px; fill: none; stroke: var(--teal); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.minipost--jou .minipost__onder { color: var(--teal); font-weight: 700; }

/* ==========================================================================
   S4 feed audit (licht): een gelezen post naast drie heldere punten
   ========================================================================== */

.audit { padding-block: var(--sectie); }

.audit__kop { max-width: 720px; }
.audit__kop h2 { max-width: 14ch; }
.audit__kop .lead { margin-top: clamp(16px, 1.8vw, 24px); max-width: 56ch; }

.audit__grid {
  margin-top: clamp(40px, 5vw, 60px);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(24px, 3.4vw, 52px);
  align-items: start;
}

.telefoon--audit { max-width: 400px; }

.auditpost {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px 20px 18px;
  border-bottom: 1px solid rgba(255, 240, 229, .08);
}
.auditpost__tekst { font-size: 15px; line-height: 1.55; }
.auditpost .post__voet { padding-top: 14px; }

.hl {
  font-style: normal;
  background-image: linear-gradient(
    180deg,
    transparent 62%,
    rgba(36, 177, 177, .55) 62%,
    rgba(36, 177, 177, .55) 92%,
    transparent 92%
  );
}

.auditpost--skelet {
  gap: 10px;
  border-bottom: 0;
  opacity: .45;
}
.auditpost--skelet .post__kop .minipost__regels { flex: 1; }

/* Wat je krijgt: drie gelijkvormige punten en één uitkomstkaart. */

.audit__lijst {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.krijg {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 26px;
  border: 1px solid var(--lijn);
  border-radius: var(--r-lg);
  background: var(--vlak);
  box-shadow: 0 18px 30px -26px rgba(3, 58, 56, .35);
}

.krijg__nr {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(36, 177, 177, .16);
  color: #0d7a7a;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
}

.krijg h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.01em;
}
.krijg div p { margin-top: 5px; font-size: 15.5px; color: var(--tekst-zacht); }

.krijg--uitkomst {
  border-color: var(--merk);
  background: var(--merk);
}
.krijg--uitkomst p {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--room);
}

/* ==========================================================================
   S5 samenwerking (licht): het storypaneel
   ========================================================================== */

.samenwerking { padding-block: var(--sectie); }

.samen__kop { max-width: 720px; }
.samen__kop h2 { max-width: 18ch; }
.samen__kop .lead { margin-top: clamp(16px, 1.8vw, 24px); }

/* Eén donker paneel met de voortgangsbalk van een story erboven. */
.storypaneel {
  margin-top: clamp(36px, 4.5vw, 56px);
  padding: clamp(24px, 3vw, 40px) clamp(24px, 3.4vw, 46px) clamp(28px, 3.2vw, 44px);
  border: 1px solid var(--lijn-d);
  border-radius: var(--r-xl);
  background: var(--nacht);
  box-shadow: 0 34px 60px -36px rgba(3, 58, 56, .6);
}

.storybalk {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 46px);
}
.seg {
  display: block;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 240, 229, .16);
}
.seg--vol { background: var(--teal); }
.seg--half { background: linear-gradient(90deg, var(--teal) 0 52%, rgba(255, 240, 229, .16) 52%); }

.storystappen {
  margin-top: clamp(22px, 2.6vw, 34px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 46px);
}

.storystap h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--room);
}
.storystap p { margin-top: 9px; font-size: 15.5px; color: var(--room-zacht); }

.storystap__onder {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px !important;
  font-size: 13px !important;
  font-weight: 700;
  color: var(--teal) !important;
}
.storystap__onder::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
}

.samen__cta {
  margin-top: clamp(26px, 3vw, 38px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.samen__cta p { font-size: 15px; color: var(--tekst-zacht); }

/* ==========================================================================
   S6 finn (donker): profielkaart naast het verhaal
   ========================================================================== */

.finn { padding-block: var(--sectie); }

.finn__grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.profiel {
  max-width: 360px;
  border: 1px solid var(--lijn-d);
  border-radius: var(--r-xl);
  background: var(--paneel);
  overflow: hidden;
  box-shadow: 0 30px 60px -34px rgba(0, 0, 0, .8);
}

/* Portret: zwart-wit met een groene grading tot de definitieve foto er is. */
.profiel__vlak {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #0a1c1a;
}
.profiel__foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
}

.profiel__onder {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 240, 229, .09);
}
.profiel__onder div { display: flex; flex-direction: column; line-height: 1.3; }
.profiel__onder strong { font-size: 15.5px; color: var(--room); }
.profiel__onder div span { font-size: 13px; color: var(--room-zacht); }

/* Profielstatistieken, zoals elk social-profiel ze toont. */
.profiel__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 16px 20px 20px;
}
.profiel__stats div { display: flex; flex-direction: column; line-height: 1.3; }
.profiel__stats strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--room);
}
.profiel__stats span { font-size: 11.5px; color: var(--room-zacht); }

.finn__tekst h2 { margin-bottom: 22px; }
.finn__tekst p { max-width: 54ch; color: var(--tekst-2); }
.finn__tekst p + p { margin-top: 16px; }
.finn__onderregel {
  margin-top: 24px !important;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  font-style: italic;
  color: var(--teal) !important;
}

/* ==========================================================================
   S7 contact (teal): het formulier als DM
   ========================================================================== */

.contact {
  padding-block: clamp(70px, 9vw, 110px);
  background: var(--teal);
  color: var(--op-teal);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.contact h2 { max-width: 13ch; color: var(--op-teal); }
.contact .lead { margin-top: 20px; color: rgba(4, 33, 31, .82); max-width: 42ch; }

.dm {
  border-radius: var(--r-xl);
  background: var(--paneel);
  color: var(--room);
  overflow: hidden;
  box-shadow: 0 34px 70px -34px rgba(4, 33, 31, .8);
}

.dm__balk {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(255, 240, 229, .09);
  background: rgba(255, 240, 229, .03);
}

.dm__velden {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
}

.veld { display: flex; flex-direction: column; gap: 6px; }
.veld label { font-size: 13.5px; font-weight: 500; color: var(--room-zacht); }
.veld input,
.veld textarea {
  font-family: var(--font-body);
  font-size: 15.5px;
  color: var(--room);
  background: rgba(255, 240, 229, .05);
  border: 1px solid rgba(255, 240, 229, .16);
  border-radius: var(--r-base);
  padding: 12px 15px;
  width: 100%;
  transition: border-color .24s ease, background-color .24s ease;
}
.veld textarea { resize: vertical; line-height: 1.5; }
.veld input:hover,
.veld textarea:hover { border-color: rgba(255, 240, 229, .32); }
.veld input:focus,
.veld textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: rgba(36, 177, 177, .06);
}

.dm__notitie { font-size: 12.5px; color: var(--room-zacht); }

/* ---------- voet (donker) ---------- */

.voet { padding-block: 48px 38px; }
.voet__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.merk--voet {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--room);
  text-decoration: none;
}
.voet__menu { display: flex; flex-wrap: wrap; gap: 22px; }
.voet__menu a {
  font-size: 14.5px;
  color: var(--room-zacht);
  text-decoration: none;
  transition: color .24s ease;
}
.voet__menu a:hover { color: var(--teal); text-decoration: underline; text-underline-offset: 4px; }
.voet__regel { font-size: 12.5px; color: rgba(147, 172, 168, .7); }

/* ---------- mobiele cta ---------- */

.mobielcta {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 55;
  padding: 15px 20px;
  border-radius: 999px;
  background: var(--teal);
  color: var(--op-teal);
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 16px 34px -14px rgba(3, 58, 56, .55);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.mobielcta.zichtbaar { opacity: 1; visibility: visible; }

/* ---------- intree ---------- */

.js .rv { opacity: 0; }
.js .rv.in {
  animation: opkomen .7s cubic-bezier(.22, .61, .36, 1) both;
  animation-delay: var(--d, 0ms);
}
@keyframes opkomen {
  from { opacity: 0; translate: 0 14px; }
  to   { opacity: 1; translate: 0 0; }
}

/* Bubbels binnen een al onthulde chat: eigen kleinere intree. */
.js .chat .rv.in { animation-name: bubbelOp; animation-duration: .45s; }
@keyframes bubbelOp {
  from { opacity: 0; translate: 0 8px; }
  to   { opacity: 1; translate: 0 0; }
}

/* ==========================================================================
   Responsief
   ========================================================================== */

@media (max-width: 1120px) {
  .eiland--tabs { display: none; }
  .burger { display: flex; }

  .feedrij { overflow-x: auto; scrollbar-width: none; }
  .feedrij::-webkit-scrollbar { display: none; }
  .feedrij__spoor { grid-template-columns: repeat(5, minmax(196px, 1fr)); }

  .herkenning__grid { grid-template-columns: 1fr; gap: 44px; }
  .chatkaart { margin-inline: auto; }
  .herkenning__tekst h2 { max-width: 20ch; }
}

@media (max-width: 900px) {
  .kop__acties .eiland--cta { display: none; }
  .mobielcta { display: block; }

  .methode__kop,
  .audit__grid,
  .finn__grid,
  .contact__grid { grid-template-columns: 1fr; }

  .methode__kop { gap: 18px; }
  .methode__kop h2 { max-width: 14ch; }

  .stappen { grid-template-columns: 1fr; }
  .stapkaart { display: grid; grid-template-columns: auto 1fr; gap: 4px 18px; align-items: center; padding: 18px 20px; }
  .stapkaart__nr { grid-row: 1 / 3; }
  .stapkaart h3 { margin-top: 0; }
  .stapkaart p { margin-top: 0; }

  .spiegel { grid-template-columns: 1fr; max-width: 420px; }
  .spiegel__draai { margin-inline: auto; }

  .telefoon--audit { margin-inline: auto; }
  .audit__lijst { max-width: 560px; }

  .storybalk,
  .storystappen { grid-template-columns: 1fr; }
  .storybalk { gap: 8px; grid-template-columns: repeat(3, 1fr); }
  .storystappen { gap: 26px; }

  .profiel { margin-inline: auto; }
  .finn__grid { gap: 40px; }

  .voet__grid { flex-direction: column; align-items: flex-start; gap: 20px; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .hero { padding-top: 118px; }
  .hero__acties .knop { width: 100%; }

  /* De feedrij wordt een swipebare strook, zoals een echte feed. */
  .feedrij { scroll-snap-type: x mandatory; padding-bottom: 4px; }
  .feedrij__spoor { grid-template-columns: repeat(5, 216px); }
  .post { scroll-snap-align: center; min-height: 300px; }
  .post--jou { min-height: 356px; margin-bottom: 18px; }

  .bubbel { max-width: 88%; }

  .krijg { padding: 18px 20px; }

  main { padding-bottom: 70px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .rv, .js .rv.in { opacity: 1; animation: none; }
  .post, .post--jou { opacity: 1; animation: none; }
  .bubbel--typt i { animation: none; }
  * { transition-duration: .01ms !important; }
}
