:root{
  --bg: #F9FAFB;

  --primary: #1E3A8A;
  --primary-2: #2747B6; /* iets helderder blauw */
  --success: #10B981;

  --text: #0F172A;
  --muted: #475569;

  --card: #FFFFFF;
  --border: rgba(15, 23, 42, 0.08);

  --radius: 22px;

  --container: 1080px;

  --space-s: 12px;
  --space-m: 20px;
  --space-l: 32px;
  --space-xl: 56px;
  --space-2xl: 80px;

  /* Meer schaduw (helder maar rustig) */
  --shadow-soft: 0 10px 24px rgba(2, 6, 23, 0.08);
  --shadow-strong: 0 18px 40px rgba(2, 6, 23, 0.12);

  /* Panel kleuren */
  --panel-blue: rgba(30, 58, 138, 0.06);
  --panel-green: rgba(16, 185, 129, 0.08);
}

*{ box-sizing: border-box; }
html,
body{
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: #F4F6F8;
}

html{ scroll-behavior: smooth; }

body.oudtech-body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "Source Sans 3", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 20px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container{
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.section{
  padding: var(--space-2xl) 0;
}

@media (max-width: 920px){
  .section{ padding: var(--space-xl) 0; }
  body.oudtech-body{ font-size: 19px; }
}

/* Typografie */
.h1{
  font-size: clamp(36px, 3.3vw, 42px);
  line-height: 1.12;
  margin: 0 0 var(--space-m);
  letter-spacing: -0.02em;
}

.h2{
  font-size: 30px;
  line-height: 1.2;
  margin: 0 0 var(--space-m);
  letter-spacing: -0.01em;
}

.h3{
  font-size: 22px;
  line-height: 1.25;
  margin: 0 0 10px;
}

.lead{
  font-size: 20px;
  color: var(--muted);
  margin: 0 0 var(--space-l);
  max-width: 58ch; /* rust: niet te breed */
}

a{ color: var(--primary); text-decoration: none; }
a:hover{ text-decoration: underline; }
a:focus-visible{
  outline: 3px solid rgba(39,71,182,0.35);
  outline-offset: 4px;
  border-radius: 14px;
}

/* Header - simpeler en rustiger */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(249, 250, 251, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-m);
  padding: 14px 0;
}

.menu{
  list-style: none;
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.menu a{
  display: inline-block;
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--text);
  text-decoration: none;
}
.menu a:hover{
  background: rgba(15, 23, 42, 0.04);
  text-decoration: none;
}

.skip-link{
  position: absolute;
  left: -999px;
  top: 10px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 10px 12px;
  border-radius: 14px;
}
.skip-link:focus{ left: 12px; }

/* ========== HERO: meer kleur, meer orde, minder elementen ========== */
.hero{
  padding-top: calc(var(--space-2xl) - 12px);
  padding-bottom: var(--space-2xl);
  background:
    radial-gradient(900px 400px at 15% 10%, rgba(39, 71, 182, 0.14), transparent 60%),
    radial-gradient(700px 380px at 85% 20%, rgba(16, 185, 129, 0.10), transparent 55%),
    linear-gradient(to bottom, rgba(255,255,255,0.65), transparent 70%);
  border-bottom: 1px solid var(--border);
}

.hero-inner{
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

/* Choice card: één duidelijke “module” */
.choice-card{
  background: rgba(255,255,255,0.92);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  padding: 26px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  max-width: 860px; /* rust */
}

.choice-card--center{
  margin: 0 auto;
}

.choice-title{
  margin-bottom: 16px;
}

/* Buttons */
.choice-buttons{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 920px){
  .choice-buttons{ grid-template-columns: 1fr; }
}

/* Grote knoppen: minder randen, meer kleur, duidelijke hiërarchie */
.choice-btn{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;

  border-radius: 20px;
  padding: 20px 20px;
  min-height: 86px;

  text-decoration: none !important;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15, 23, 42, 0.06);

  transition: transform 120ms ease, box-shadow 120ms ease, filter 120ms ease;
}

.choice-btn:hover{
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: var(--shadow-strong);
}

.choice-main{
  font-weight: 850;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.choice-sub{
  font-size: 18px;
  color: rgba(255,255,255,0.92); /* bij primary overschreven, bij secondary later */
}

/* Primary knop: echt kleur + helder */
.choice-btn-primary{
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  color: #fff;
  border: 1px solid rgba(30, 58, 138, 0.28);
}

.choice-btn-primary .choice-sub{
  color: rgba(255,255,255,0.92);
}

/* Groene geruststelling IN de knop (geordend, niet los als badge) */
.choice-safe{
  margin-top: 10px;
  display: inline-block;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.18);
  border: 1px solid rgba(16, 185, 129, 0.28);
  color: #EFFFF8;
  font-size: 16px;
}

/* Secondary knop: rustig, maar duidelijk */
.choice-btn-secondary{
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.80));
  color: var(--text);
}

.choice-btn-secondary .choice-sub{
  color: var(--muted);
}

/* Panels: minder “kaartjes”, meer geordende secties */
.soft-panel{
  background: var(--panel-blue);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Cards & grids (minder borders: rust) */
.card{
  background: rgba(255,255,255,0.92);
  border-radius: var(--radius);
  padding: var(--space-l);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.grid-3{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-l);
}

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

/* Herkenning: maak het één panel met bullets (veel rustiger) */
.recognition{
  background: rgba(255,255,255,0.92);
  border-radius: var(--radius);
  padding: 22px 22px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15, 23, 42, 0.06);
  max-width: 860px;
}

.recognition p{
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid rgba(15,23,42,0.06);
}

.recognition p:last-child{
  border-bottom: none;
}

/* Feature icon: iets strakker */
.feature .icon{
  font-size: 34px;
  margin-bottom: 12px;
}

/* Steps */
.steps .step-number{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  background: rgba(39,71,182,0.10);
  color: var(--primary);
  margin-bottom: 12px;
}

/* Trust list: ook als panel, geen “drukke” losse items */
.trust-list{
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 860px;
  background: rgba(255,255,255,0.92);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.trust-list li{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(15,23,42,0.06);
}

.trust-list li:last-child{
  border-bottom: none;
}

.trust-icon{ margin-top: 2px; }

/* Footer */
.site-footer{
  border-top: 1px solid var(--border);
  padding: 28px 0;
}

.footer-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links{
  list-style: none;
  display: flex;
  gap: 16px;
  padding: 0;
  margin: 0;
}

.footer-note{
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

/* ===== START FLOW: FULLSCREEN SPREAD (geen container/card) ===== */

body.oudtech-start-takeover{
  background: #F4F6F8; /* wit/grijs */
}

/* Full takeover */
.takeover{
  min-height: 100svh; /* modern, mobiel correct */
  min-height: 100vh;  /* fallback */
  width: 100%;
  background: inherit;
}

body{
  overscroll-behavior: none;
}


/* Top bar blijft rustig */
.takeover-shell{
  width: 100%;
  max-width: none;
}

.takeover-top{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.takeover-note{
  margin: 0;
  color: rgba(15,23,42,0.65);
  font-size: 18px;
  line-height: 1.5;
  text-align: right;
}

@media (max-width: 820px){
  .takeover-top{ flex-direction: column; align-items: flex-start; }
  .takeover-note{ text-align: left; }
}

/* Flow takes the whole screen area */
.flow{
  width: 100%;
  min-height: calc(100vh - 110px);
  display: grid;
  align-items: center;
}

/* Step layout: vraag groot, boven; antwoorden groot onder */
.step-fullscreen{
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 10px 0;
}

/* Vraag gigantisch en luchtig */
.step-title{
  font-size: clamp(44px, 4.8vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
  color: #0F172A;
}

/* Subtekst (zoals “het geeft niets…”) */
.step-subtitle{
  margin: 0 0 28px;
  font-size: 22px;
  color: rgba(15,23,42,0.65);
  max-width: 70ch;
}

/* Buttons grid: groot en verspreid */
.btn-grid{
  display: grid;
  gap: 22px;
}

.btn-grid-2{
  grid-template-columns: 1fr 1fr;
}

.btn-grid-3{
  grid-template-columns: 1fr 1fr 1fr;
}

@media (max-width: 980px){
  .btn-grid-2, .btn-grid-3{
    grid-template-columns: 1fr;
  }
}

/* DE knoppen: extreem groot, Apple-achtig, geen glow */
.big-choice{
  width: 100%;
  border: 1px solid rgba(15,23,42,0.08);
  background: #ffffff;
  border-radius: 28px;

  padding: 34px 34px;
  min-height: 120px;

  text-align: left;
  cursor: pointer;

  box-shadow:
    0 18px 40px rgba(2, 6, 23, 0.08),
    0 2px 0 rgba(2, 6, 23, 0.05);

  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.big-choice:hover{
  transform: translateY(-2px);
  box-shadow:
    0 28px 70px rgba(2, 6, 23, 0.10),
    0 2px 0 rgba(2, 6, 23, 0.05);
  border-color: rgba(30,58,138,0.22);
}

.big-choice:active{
  transform: translateY(0px);
}

.big-choice:disabled{
  opacity: 0.7;
  cursor: default;
  transform: none;
}

/* Button label echt groot */
.big-choice-label{
  display:block;
  font-weight: 950;
  font-size: clamp(26px, 2.2vw, 34px);
  letter-spacing: -0.02em;
}

/* Intro: “Volgende” knop ook huge */
.primary-next{
  min-height: 86px;
  padding: 22px 30px;
  border-radius: 28px;
  border: 1px solid rgba(30,58,138,0.20);
  cursor: pointer;
  font-weight: 950;
  font-size: 22px;

  color: #fff;
  background: linear-gradient(135deg, #1E3A8A 0%, #2747B6 100%);
  box-shadow:
    0 22px 52px rgba(30,58,138,0.20),
    0 2px 0 rgba(2, 6, 23, 0.06);
}

.intro-actions{
  display:flex;
  align-items:center;
  gap: 18px;
  margin-top: 18px;
}

.intro-hint{
  font-size: 20px;
  color: var(--mutedText);
}


/* Result button */
.result-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 100%;
  min-height: 90px;
  padding: 22px 30px;
  border-radius: 28px;

  background: linear-gradient(135deg, #1E3A8A 0%, #2747B6 100%);
  color: #fff;
  font-weight: 950;
  font-size: 22px;
  text-decoration: none !important;

  box-shadow:
    0 22px 52px rgba(30,58,138,0.20),
    0 2px 0 rgba(2, 6, 23, 0.06);
}

/* Focus ring: Apple-achtig */
.big-choice:focus-visible,
.primary-next:focus-visible,
.result-btn:focus-visible{
  outline: 4px solid rgba(30,58,138,0.22);
  outline-offset: 6px;
}

/* Animations: alleen fade + kleine translate */
.step-enter{
  opacity: 0;
  transform: translateY(10px);
}
.step-in{
  opacity: 1;
  transform: translateY(0);
  transition: opacity 360ms ease-in-out, transform 360ms ease-in-out;
}
.step-out{
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 360ms ease-in-out, transform 360ms ease-in-out;
}

/* Overlay na test: clean, geen glow */
.overlay{
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.25);
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 260ms ease, transform 260ms ease;
  z-index: 9999;
}

.overlay-in{
  opacity: 1;
  transform: translateY(0);
}

.overlay-card{
  width: min(720px, 100%);
  background: #fff;
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 40px 120px rgba(2,6,23,0.22);
  border: 1px solid rgba(15,23,42,0.10);
}

.overlay-title{
  margin: 0 0 10px;
  font-size: 34px;
  letter-spacing: -0.03em;
}

.overlay-text{
  margin: 0 0 18px;
  color: rgba(15,23,42,0.65);
  font-size: 22px;
}

/* Hover kleur (subtiel blauw, geen glow) */
.big-choice:hover{
  background: rgba(30,58,138,0.06); /* zachte hover tint */
  border-color: rgba(30,58,138,0.22);
}

/* Vaste toggle rechtsonder */
.dark-toggle{
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 99999;

  font-size: 16px;
  color: rgba(15,23,42,0.70);
  background: rgba(255,255,255,0.80);
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 999px;
  padding: 12px 14px;

  box-shadow: 0 10px 24px rgba(2,6,23,0.08);
  cursor: pointer;
  text-decoration: none;
  user-select: none;

  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.dark-toggle:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.92);
  border-color: rgba(30,58,138,0.22);
}

.dark-toggle:focus-visible{
  outline: 4px solid rgba(30,58,138,0.22);
  outline-offset: 6px;
}

/* ===== Invert theme (wit<->zwart) =====
   We gebruiken CSS variables zodat "alles" omdraait, maar zonder rare filters.
*/
body.oudtech-start-takeover.invert{
  --bg: #0B0F19;
  --text: #F8FAFC;
  --mutedText: rgba(248,250,252,0.72);
  --surface: #0F1629;
  --borderDark: rgba(248,250,252,0.16);
  --hoverTint: rgba(255,255,255,0.06);
}

body.oudtech-start-takeover{
  --bg: #F4F6F8;
  --text: #0F172A;
  --mutedText: rgba(15,23,42,0.65);
  --surface: #FFFFFF;
  --borderDark: rgba(15,23,42,0.10);
  --hoverTint: rgba(30,58,138,0.06);
}

/* Gebruik vars in takeover */
body.oudtech-start-takeover .takeover{
  background: var(--bg);
}

body.oudtech-start-takeover .takeover-note{
  color: var(--mutedText);
}

body.oudtech-start-takeover .step-title{
  color: var(--text);
}

body.oudtech-start-takeover .step-subtitle{
  color: var(--mutedText);
}

/* Buttons in invert */
body.oudtech-start-takeover .big-choice{
  background: var(--surface);
  border-color: var(--borderDark);
  color: var(--text);
}

body.oudtech-start-takeover .big-choice:hover{
  background: var(--hoverTint);
  border-color: rgba(30,58,138,0.35);
}

body.oudtech-start-takeover.invert .big-choice:hover{
  border-color: rgba(248,250,252,0.30);
}

/* Intro + result buttons blijven blauw, maar tekst blijft leesbaar */
body.oudtech-start-takeover.invert .primary-next,
body.oudtech-start-takeover.invert .result-btn{
  box-shadow:
    0 22px 52px rgba(0,0,0,0.45),
    0 2px 0 rgba(0,0,0,0.25);
}

/* Toggle pill invert styling */
body.oudtech-start-takeover.invert .dark-toggle{
  color: rgba(248,250,252,0.78);
  background: rgba(15, 22, 41, 0.82);
  border-color: rgba(248,250,252,0.16);
}
body.oudtech-start-takeover.invert .dark-toggle:hover{
  background: rgba(15, 22, 41, 0.95);
  border-color: rgba(248,250,252,0.22);
}

html.invert,
body.invert{
  background: #0B0F19 !important;
}

.video-placeholder{
  width: 100%;
  height: 320px;
  border-radius: 28px;
  background: #e5e7eb;
  display: grid;
  place-items: center;
  font-size: 24px;
  color: rgba(15,23,42,0.6);
  margin-bottom: 32px;
}

#registerForm{
  display: grid;
  gap: 18px;
}

#registerForm input{
  font-size: 22px;
  padding: 18px 22px;
  border-radius: 22px;
  border: 1px solid rgba(15,23,42,0.2);
}

.video-placeholder{
  width: 100%;
  height: 340px;
  border-radius: 28px;
  background: #E6EAF0;
  display: grid;
  place-items: center;
  font-size: 24px;
  color: rgba(15,23,42,0.60);
  margin: 10px 0 28px;
}

.register-form{
  display: grid;
  gap: 18px;
  margin-top: 8px;
}

.register-form input{
  width: 100%;
  font-size: 22px;
  padding: 18px 22px;
  border-radius: 22px;
  border: 1px solid rgba(15,23,42,0.16);
  background: #fff;
}

.form-error{
  margin: 16px 0 0;
  font-size: 18px;
  color: #991B1B;
}

/* ===== PLATFORM ===== */
.oldies-platform.platform{
  min-height: 100vh;
  padding: 26px;
  background: #F6F7FB;
}

.platform-shell{
  width: min(1180px, 100%);
  margin: 0 auto;
}

.platform-top{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.platform-small{
  margin-top: 6px;
  color: rgba(15,23,42,0.65);
  font-size: 18px;
}

.platform-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

.platform-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15,23,42,0.10);
  box-shadow: 0 10px 24px rgba(2,6,23,0.08);
  color: rgba(15,23,42,0.85);
  text-decoration:none !important;
  font-weight: 750;
}
.platform-link:hover{
  transform: translateY(-1px);
}

.platform-link.danger{
  border-color: rgba(220,38,38,0.18);
  color: rgba(153,27,27,0.95);
}

.platform-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items:start;
}

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

.platform-h1{
  font-size: clamp(38px, 3.2vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}
.platform-h2{
  font-size: 28px;
  line-height: 1.15;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.platform-lead{
  font-size: 20px;
  color: rgba(15,23,42,0.70);
  margin: 0 0 14px;
}

.platform-muted{
  margin: 14px 0 0;
  color: rgba(15,23,42,0.62);
  font-size: 18px;
}

.platform-note{
  margin: 14px 0 0;
  color: rgba(15,23,42,0.62);
  font-size: 18px;
}

.platform-divider{
  height: 1px;
  background: rgba(15,23,42,0.08);
  margin: 18px 0;
}

.platform-tags{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag{
  display:inline-flex;
  align-items:center;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 18px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.90);
}
.tag-blue{
  border-color: rgba(30,58,138,0.18);
  background: rgba(30,58,138,0.10);
  color: rgba(30,58,138,0.95);
  font-weight: 800;
}
.tag-gray{
  color: rgba(15,23,42,0.70);
}

.card-strong{
  box-shadow: 0 26px 60px rgba(2,6,23,0.14), 0 10px 22px rgba(2,6,23,0.08);
  border-color: rgba(30,58,138,0.16);
}

.progress-wrap{
  margin: 14px 0 18px;
}
.progress-row{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.progress-text{
  font-size: 18px;
  color: rgba(15,23,42,0.72);
}
.progress-small{
  font-size: 18px;
  color: rgba(15,23,42,0.55);
}
.progress-bar{
  width: 100%;
  height: 14px;
  border-radius: 999px;
  background: rgba(15,23,42,0.08);
  overflow:hidden;
}
.progress-fill{
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(135deg, #1E3A8A 0%, #2747B6 100%);
}
.big-choice-sub{
  display:block;
  margin-top: 6px;
  font-size: 18px;
  color: rgba(15,23,42,0.62);
}

/* ===== LESSEN OVERZICHT ===== */
.lessons-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 12px;
}

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

.lesson-card{
  background: rgba(255,255,255,0.92);
  border-radius: 22px;
  padding: 18px;
  border: 1px solid rgba(15,23,42,0.10);
  box-shadow: 0 10px 24px rgba(2,6,23,0.08);
}

.lesson-card.next{
  border-color: rgba(30,58,138,0.22);
  box-shadow: 0 26px 60px rgba(2,6,23,0.14), 0 10px 22px rgba(2,6,23,0.08);
}

.lesson-card.done{
  opacity: 0.92;
}

.lesson-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.lesson-num{
  font-weight: 900;
  font-size: 18px;
  color: rgba(15,23,42,0.75);
}

.lesson-state{
  font-size: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15,23,42,0.06);
  color: rgba(15,23,42,0.72);
}

.lesson-title{
  font-weight: 950;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.lesson-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 100%;
  min-height: 58px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(15,23,42,0.10);
  box-shadow: 0 10px 24px rgba(2,6,23,0.08);
  color: rgba(15,23,42,0.88);
  text-decoration:none !important;
  font-weight: 850;
}
.lesson-btn:hover{
  transform: translateY(-1px);
  border-color: rgba(30,58,138,0.18);
}

.lesson-muted{
  display:block;
  color: rgba(15,23,42,0.55);
  font-size: 18px;
}

/* ===== ABONNEMENT KAART ===== */
.sub-card{
  margin-top: 14px;
  background: rgba(255,255,255,0.92);
  border-radius: 24px;
  padding: 18px;
  border: 1px solid rgba(15,23,42,0.10);
  box-shadow: 0 18px 40px rgba(2,6,23,0.10);
}
.sub-row{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  align-items:center;
  margin-bottom: 10px;
}
.sub-title{
  font-weight: 950;
  font-size: 22px;
}
.sub-tag{
  font-size: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(30,58,138,0.10);
  border: 1px solid rgba(30,58,138,0.16);
  color: rgba(30,58,138,0.95);
  font-weight: 850;
}
.sub-list{
  list-style:none;
  padding: 0;
  margin: 12px 0 16px;
  display:grid;
  gap: 10px;
}
.sub-list li{
  background: rgba(15,23,42,0.04);
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,0.06);
}
