/* Solivia — gedeelde stijl voor solivia.work (testversie)
   Merk-CSS overgenomen uit solivia-landingspagina.html (referentie). */

/* Design-tokens (kleuren, fonts, layout) komen uit het gedeelde bestand.
   Eén bron voor het hele platform — pas kleuren/contrast daar aan. */
@import url('solivia-tokens.css');

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--donker);
  color: var(--wit);
  font-family: var(--f-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Navigatie ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px var(--ruimte);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(20,20,20,0.97) 0%, transparent 100%);
}
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 10.5px; font-weight: 400; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--dim); text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--wit); }
.nav-cta { color: var(--donker) !important; background: var(--amber); padding: 11px 22px; border-radius: 1px; transition: background 0.2s; }
.nav-cta:hover { background: var(--amber-warm) !important; }

/* ── Hero (homepage) ── */
.hero {
  min-height: 100vh; display: grid; grid-template-columns: 58% 42%;
  align-items: center; padding: 110px var(--ruimte) 80px;
  position: relative; overflow: hidden; gap: 48px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 65% at 72% 48%, rgba(200,129,26,0.065) 0%, transparent 65%),
    radial-gradient(ellipse 35% 45% at 8%  75%, rgba(27,94,59,0.09) 0%, transparent 60%);
  pointer-events: none;
}
.hero-tekst { position: relative; z-index: 1; }
.eyebrow {
  display: flex; align-items: center; gap: 12px; font-size: 10px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--amber); font-weight: 500; margin-bottom: 30px;
  opacity: 0; animation: opDown 0.8s ease 0.1s forwards;
}
.eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--amber); opacity: 0.55; flex-shrink: 0; }
h1.hero-kop {
  font-family: var(--f-kop); font-weight: 200; font-size: clamp(40px, 5vw, 70px);
  line-height: 1.1; letter-spacing: -0.02em; color: var(--wit); margin-bottom: 28px;
  opacity: 0; animation: opDown 0.8s ease 0.25s forwards;
}
h1.hero-kop em { font-style: normal; color: var(--amber); }
.hero-intro {
  font-size: 17px; color: var(--dim); line-height: 1.78; max-width: 520px; margin-bottom: 44px;
  opacity: 0; animation: opDown 0.8s ease 0.4s forwards;
}
.hero-acties { display: flex; gap: 22px; align-items: center; opacity: 0; animation: opDown 0.8s ease 0.55s forwards; }
.btn { display: inline-block; font-family: var(--f-body); font-size: 10.5px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none; border-radius: 1px; transition: all 0.2s; }
.btn-vul { color: var(--donker); background: var(--amber); padding: 16px 36px; }
.btn-vul:hover { background: var(--amber-warm); transform: translateY(-1px); }
.btn-lijn { color: var(--dim); padding-bottom: 2px; border-bottom: 1px solid rgba(255,255,255,0.18); }
.btn-lijn:hover { color: var(--wit); border-color: rgba(255,255,255,0.45); }
.hero-beeld { position: relative; z-index: 1; display: flex; justify-content: center; opacity: 0; animation: opIn 1.2s ease 0.7s forwards; }

/* ── Pagina-header (diepe pagina's) ── */
.pagina-header {
  padding: 160px var(--ruimte) 64px; position: relative; overflow: hidden;
  border-bottom: 1px solid var(--rand);
}
.pagina-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 45% 60% at 78% 40%, rgba(200,129,26,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.pagina-header .inner { position: relative; z-index: 1; max-width: 820px; }
.pagina-header h1 {
  font-family: var(--f-kop); font-weight: 200; font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.12; letter-spacing: -0.02em; color: var(--wit); margin-bottom: 24px;
}
.pagina-header h1 em { font-style: normal; color: var(--amber); }
.pagina-intro { font-size: 18px; color: var(--dim); line-height: 1.8; max-width: 640px; }

/* ── Strip ── */
.strip { background: var(--groen); padding: 19px var(--ruimte); display: flex; gap: 0; overflow-x: auto; scrollbar-width: none; }
.strip::-webkit-scrollbar { display: none; }
.strip-item { display: flex; align-items: center; gap: 14px; flex-shrink: 0; padding-right: 44px; }
.strip-item span { font-size: 10.5px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.75); white-space: nowrap; }
.strip-stip { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.25); flex-shrink: 0; margin-right: 44px; }
.strip-stip:last-child { display: none; }

/* ── Sectie hulpklassen ── */
.sectie { padding: var(--ruimte-xl) var(--ruimte); }
.sectie-licht { background: var(--warm-wit); padding: var(--ruimte-xl) var(--ruimte); }
.sectie-groen { background: var(--groen); padding: var(--ruimte-xl) var(--ruimte); position: relative; overflow: hidden; }
.sectie-dimmer { background: var(--donker-zacht); border-top: 1px solid var(--rand); border-bottom: 1px solid var(--rand); padding: var(--ruimte-xl) var(--ruimte); }

.s-label { display: flex; align-items: center; gap: 12px; font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--amber); font-weight: 500; margin-bottom: 18px; }
.s-label::before { content: ''; width: 22px; height: 1px; background: var(--amber); opacity: 0.5; flex-shrink: 0; }
.s-kop { font-family: var(--f-kop); font-weight: 200; font-size: clamp(32px, 3.8vw, 56px); line-height: 1.11; letter-spacing: -0.015em; color: var(--wit); margin-bottom: 56px; max-width: 720px; }
.sectie-licht .s-kop { color: var(--donker); }
.sectie-groen .s-kop { color: var(--wit); }

/* ── Tweekolomlayout ── */
.tweekolom { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.tweekolom-breed { gap: 80px; }

/* ── Tekst hulpklassen ── */
.t-groot { font-size: 18px; color: var(--dim); line-height: 1.8; margin-bottom: 20px; }
.sectie-licht .t-groot { color: #5A5650; }
.t-normaal { font-size: 15px; color: var(--dim); line-height: 1.8; margin-bottom: 16px; }
.sectie-licht .t-normaal { color: #6A6560; }
.t-normaal strong, .t-groot strong { color: rgba(255,255,255,0.8); font-weight: 400; }
.sectie-licht .t-normaal strong, .sectie-licht .t-groot strong { color: #2A2520; }

/* ── Feitenblok met bron ── */
.feit { border-left: 2px solid var(--amber); padding: 18px 22px; margin: 24px 0 0; background: rgba(200,129,26,0.045); }
.feit p { font-family: var(--f-kop); font-weight: 300; font-size: 15.5px; color: rgba(255,255,255,0.6); line-height: 1.72; margin-bottom: 8px; }
.sectie-licht .feit p { color: #5A5650; }
.feit span { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dimmer); }
.sectie-licht .feit span { color: #AAA5A0; }

/* ── Hoe het werkt ── */
.stappen { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: #DDD9D2; }
.stap { background: var(--warm-wit); padding: 44px 38px 48px; }
.stap-nr { font-family: var(--f-kop); font-weight: 200; font-size: 52px; color: rgba(0,0,0,0.07); line-height: 1; margin-bottom: 20px; letter-spacing: -0.03em; }
.stap h3 { font-family: var(--f-kop); font-weight: 300; font-size: 19px; color: var(--donker); margin-bottom: 12px; line-height: 1.3; }
.stap p { font-size: 14px; color: #706B66; line-height: 1.75; }

/* ── Bedoeling: drie cirkels ── */
.bedoeling-beeld { display: flex; flex-direction: column; gap: 1px; background: var(--rand); border: 1px solid var(--rand); }
.bd-rij { background: var(--donker); padding: 22px 26px; display: grid; grid-template-columns: 120px 1fr; gap: 22px; align-items: baseline; }
.bd-rij .laag { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); font-weight: 500; padding-top: 3px; }
.bd-rij strong { display: block; font-size: 15px; font-weight: 400; color: var(--wit); margin-bottom: 4px; }
.bd-rij span.uitleg { font-size: 13.5px; color: var(--dim); line-height: 1.6; }
.bd-rij.kern { background: rgba(200,129,26,0.07); border-left: 2px solid var(--amber); }

/* ── Doorlink-kaarten ── */
.kaarten { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--rand); border: 1px solid var(--rand); }
.kaart { background: var(--donker); padding: 38px 34px; text-decoration: none; display: flex; flex-direction: column; gap: 10px; transition: background 0.2s; }
.kaart:hover { background: var(--donker-zacht); }
.kaart h3 { font-family: var(--f-kop); font-weight: 300; font-size: 22px; color: var(--wit); line-height: 1.25; }
.kaart p { font-size: 14px; color: var(--dim); line-height: 1.7; }
.kaart .meer { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); margin-top: 6px; }
.kaart:hover .meer { color: var(--amber-warm); }

/* ── Prijzen ── */
.prijzen { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--rand); border: 1px solid var(--rand); max-width: 780px; margin: 0 auto; }
.prijs { background: var(--donker); padding: 40px 36px 44px; display: flex; flex-direction: column; }
.prijs.hl { background: rgba(200,129,26,0.07); border-top: 2px solid var(--amber); }
.prijs.groen-acc { border-top: 2px solid var(--groen-licht); }
.prijs-badge { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber); font-weight: 500; min-height: 14px; margin-bottom: 20px; }
.prijs.groen-acc .prijs-badge { color: #4FAE7C; }
.prijs-naam { font-family: var(--f-kop); font-weight: 300; font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dim); margin-bottom: 14px; }
.prijs-n { font-family: var(--f-kop); font-weight: 200; font-size: 58px; color: var(--wit); line-height: 1; letter-spacing: -0.03em; }
.prijs-n sup { font-size: 22px; font-weight: 300; vertical-align: super; }
.prijs-p { font-size: 12px; color: var(--dimmer); letter-spacing: 0.08em; margin-bottom: 28px; }
.prijs-lijn { height: 1px; background: var(--rand); margin-bottom: 24px; }
.prijs-li { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; margin-bottom: 28px; }
.prijs-li li { font-size: 13px; color: var(--dim); padding-left: 16px; position: relative; line-height: 1.5; }
.prijs-li li::before { content: '—'; position: absolute; left: 0; color: var(--amber); opacity: 0.45; }
.prijs-btn { display: block; text-align: center; font-family: var(--f-body); font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; padding: 14px; text-decoration: none; border-radius: 1px; border: 1px solid rgba(255,255,255,0.1); color: var(--dim); transition: all 0.2s; }
.prijs-btn:hover { border-color: var(--amber); color: var(--amber); }
.prijs.hl .prijs-btn { background: var(--amber); border-color: var(--amber); color: var(--donker); }
.prijs.hl .prijs-btn:hover { background: var(--amber-warm); }

/* ── FAQ ── */
.faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 1px; background: var(--rand); border: 1px solid var(--rand); }
.faq-item { background: var(--donker); }
.faq-v { font-family: var(--f-kop); font-weight: 300; font-size: 18px; color: var(--wit); padding: 24px 28px 6px; line-height: 1.4; }
.faq-a { font-size: 14.5px; color: var(--dim); line-height: 1.75; padding: 0 28px 24px; }
.faq-a a { color: var(--amber); text-decoration: none; border-bottom: 1px solid rgba(200,129,26,0.4); }

/* ── Bewijs lijst ── */
.bewijs { display: flex; flex-direction: column; gap: 1px; background: var(--rand); }
.bewijs-item { background: var(--donker); padding: 20px 24px; border-left: 2px solid var(--amber); display: flex; flex-direction: column; gap: 3px; }
.bewijs-w { font-size: 13.5px; color: var(--wit); font-weight: 400; }
.bewijs-h { font-size: 12px; color: var(--dimmer); line-height: 1.5; }

/* ── CTA ── */
.sectie-groen::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 65% 75% at 50% 50%, rgba(200,129,26,0.11) 0%, transparent 65%); pointer-events: none; }
.sectie-groen .s-kop { margin-bottom: 20px; }
.cta-sub { font-size: 16px; color: rgba(255,255,255,0.5); max-width: 480px; margin: 0 auto 44px; line-height: 1.8; text-align: center; position: relative; }
.cta-wrap { text-align: center; position: relative; }
.cta-wrap .s-label { justify-content: center; }
.cta-wrap .s-kop { margin-left: auto; margin-right: auto; text-align: center; }

/* ── Footer ── */
footer { background: #0C0C0C; padding: 48px var(--ruimte); display: flex; justify-content: space-between; align-items: flex-end; gap: 28px; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,0.04); }
.f-links { display: flex; gap: 24px; flex-wrap: wrap; }
.f-links a { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.18); text-decoration: none; transition: color 0.2s; }
.f-links a:hover { color: rgba(255,255,255,0.45); }
.f-copy { font-size: 10.5px; color: rgba(255,255,255,0.12); letter-spacing: 0.04em; }

/* ── Animaties ── */
@keyframes opDown { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes opIn { from { opacity: 0; } to { opacity: 1; } }

/* ── Hamburger (alleen mobiel zichtbaar) ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px; height: 42px;
  background: none; border: none; cursor: pointer; padding: 0;
  position: relative; z-index: 2;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--wit);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Responsief ── */
@media (max-width: 860px) {
  :root { --ruimte: 22px; --ruimte-xl: 80px; }

  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 130px; }
  .hero-beeld { display: none; }
  .tweekolom, .tweekolom-breed { grid-template-columns: 1fr; gap: 40px; }
  .stappen { grid-template-columns: 1fr; }
  .prijzen { grid-template-columns: 1fr; }
  .kaarten { grid-template-columns: 1fr; }
  .bd-rij { grid-template-columns: 1fr; gap: 6px; }

  .pagina-header { padding-top: 120px; }

  /* Hamburger tonen, menu off-canvas */
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: min(82vw, 320px);
    height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    padding: 92px 28px 32px;
    background: var(--donker-zacht);
    border-left: 1px solid var(--rand);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1;
  }
  nav.open .nav-links { transform: translateX(0); }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; font-size: 13px; letter-spacing: 0.16em; padding: 12px 4px; }
  .nav-login, .nav-cta { text-align: center; padding: 14px 22px !important; margin-top: 8px; }

  footer { flex-direction: column; align-items: flex-start; }
}

/* ── Inlogknop (nav) ── */
.nav-login {
  color: var(--amber) !important;
  border: 1px solid rgba(200,129,26,0.5);
  padding: 10px 20px;
  border-radius: 1px;
  transition: all 0.2s;
}
.nav-login:hover { background: rgba(200,129,26,0.10); color: var(--amber-warm) !important; }

/* ── Taalstap-illustratie ── */
.taalstap { display: flex; flex-direction: column; gap: 1px; background: var(--rand); border: 1px solid var(--rand); }
.taalstap-rij { background: var(--donker); padding: 18px 22px; display: grid; grid-template-columns: 120px 1fr; gap: 18px; align-items: start; }
.taalstap-rij.accent { background: #221B10; border-left: 2px solid var(--amber); }
.taalstap-nr { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); font-weight: 500; padding-top: 3px; }
.taalstap-inhoud strong { display: block; font-size: 14px; font-weight: 400; color: var(--wit); margin-bottom: 4px; }
.taalstap-inhoud span { font-size: 13.5px; color: var(--dim); line-height: 1.6; }
@media (max-width: 860px) { .taalstap-rij { grid-template-columns: 1fr; gap: 4px; } }
