
/* ------- Rijschool Sams ------- */
:root {
  --navy: #0B1F5C;
  --navy-700: #0F2A78;
  --navy-deep: #060E33;
  --gold: #F5C842;
  --gold-600: #E8B833;
  --bg: #FAFBFD;
  --surface: #FFFFFF;
  --border: #E6E9F2;
  --border-strong: #D2D7E5;
  --text: #0B1F5C;
  --body: #4A5168;
  --muted: #6B7280;
  --shadow-sm: 0 1px 2px rgba(11,31,92,.06), 0 2px 8px rgba(11,31,92,.04);
  --shadow-md: 0 4px 14px rgba(11,31,92,.07), 0 12px 36px rgba(11,31,92,.06);
  --shadow-lg: 0 10px 28px rgba(11,31,92,.10), 0 30px 80px rgba(11,31,92,.10);
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', 'Plus Jakarta Sans', sans-serif;
  font-variation-settings: 'wdth' 95, 'opsz' 32;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 .4em;
  text-wrap: balance;
}
h1 { font-size: clamp(40px, 5.8vw, 84px); font-weight: 700; }
h2 { font-size: clamp(30px, 3.6vw, 52px); font-weight: 700; }
h3 { font-size: clamp(22px, 2.2vw, 30px); font-weight: 600; }
h4 { font-size: clamp(18px, 1.4vw, 22px); font-weight: 600; }

p { margin: 0 0 1em; text-wrap: pretty; }
a { color: var(--navy); text-decoration: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 880px; margin: 0 auto; padding: 0 24px; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 14px 26px; border-radius: var(--radius-pill);
  font-family: inherit; font-weight: 600; font-size: 16px;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold); color: var(--navy);
  box-shadow: 0 6px 18px rgba(245, 200, 66, .35);
}
.btn-primary:hover { background: var(--gold-600); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: white; }
.btn-ghost { background: transparent; color: var(--navy); padding: 10px 18px; }
.btn-ghost:hover { background: var(--border); }
.btn-light { background: white; color: var(--navy); border-color: var(--border); }
.btn-light:hover { background: var(--bg); border-color: var(--border-strong); }
.btn-lg { padding: 18px 32px; font-size: 17px; }
.btn-sm { padding: 8px 14px; font-size: 14px; }

/* ----- Pills, badges ----- */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px 7px 12px; border-radius: var(--radius-pill);
  background: white; border: 1px solid var(--border);
  font-size: 13px; font-weight: 600; color: var(--navy);
  letter-spacing: .02em;
}
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.pill-gold { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.pill-navy { background: var(--navy); color: white; border-color: var(--navy); }

/* ----- Header ----- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 251, 253, .85);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; max-width: var(--container); margin: 0 auto; padding: 0 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--navy); font-weight: 700;
}
.brand-mark {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--navy);
  display: grid; place-items: center;
  position: relative; overflow: hidden;
}
.brand-mark svg { width: 26px; height: 26px; color: var(--gold); }
.brand-name { font-family: 'Bricolage Grotesque'; font-size: 18px; line-height: 1; letter-spacing: .02em; }
.brand-name small { display: block; font-size: 10px; letter-spacing: .14em; opacity: .65; font-weight: 600; margin-top: 4px; text-transform: uppercase; }

.nav-main { display: flex; align-items: center; gap: 4px; }
.nav-main a {
  font-size: 15px; font-weight: 500; color: var(--navy);
  padding: 10px 14px; border-radius: 10px;
  transition: background .15s;
}
.nav-main a:hover { background: var(--border); }
.nav-main a.active { background: var(--navy); color: white; }
.nav-main .dropdown { position: relative; }
.nav-main .dropdown-trigger { display: flex; align-items: center; gap: 4px; cursor: pointer; }
.nav-main .dropdown-menu {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: white; border: 1px solid var(--border); border-radius: 14px;
  padding: 8px; min-width: 220px; box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity .18s, transform .18s, visibility .18s;
}
.nav-main .dropdown:hover .dropdown-menu,
.nav-main .dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-main .dropdown-menu a { display: block; padding: 10px 12px; }

.header-cta { display: flex; align-items: center; gap: 10px; }
.menu-btn {
  display: none; background: white; border: 1px solid var(--border);
  width: 44px; height: 44px; border-radius: 12px; cursor: pointer;
  align-items: center; justify-content: center; color: var(--navy);
}
.menu-btn svg { width: 22px; height: 22px; }

@media (max-width: 940px) {
  .nav-main { display: none; }
  .menu-btn { display: inline-flex; }
  .header-cta .btn:not(.menu-btn) { display: none; }
}

/* ----- Mobile drawer ----- */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 100;
  background: var(--navy); color: white;
  padding: 24px;
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .3s ease;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer .top { display: flex; justify-content: space-between; align-items: center; }
.mobile-drawer .close {
  background: rgba(255,255,255,.1); border: none; color: white;
  width: 44px; height: 44px; border-radius: 12px; cursor: pointer;
  display: grid; place-items: center;
}
.mobile-drawer nav { display: flex; flex-direction: column; gap: 4px; margin-top: 40px; }
.mobile-drawer nav a {
  color: white; font-family: 'Bricolage Grotesque'; font-size: 28px;
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; align-items: center;
  letter-spacing: -.01em;
}
.mobile-drawer nav a svg {
  width: 20px; height: 20px; flex-shrink: 0; opacity: .5;
}
.mobile-drawer nav a:hover svg { opacity: 1; }
.mobile-drawer .footer-cta { margin-top: auto; display: flex; flex-direction: column; gap: 10px; padding-top: 30px; }

/* ----- Hero ----- */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.hero h1 { margin-bottom: 22px; }
.hero h1 .gold { color: var(--gold); position: relative; display: inline-block; }
.hero h1 .gold::after {
  content: ""; position: absolute; left: 4%; right: 4%; bottom: -.04em; height: .07em;
  background: var(--gold); opacity: .35; border-radius: 3px;
}
.hero p.lead { font-size: clamp(17px, 1.5vw, 20px); max-width: 540px; color: var(--body); margin-bottom: 32px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }

.hero-image {
  aspect-ratio: 4/5; border-radius: var(--radius-lg);
  background: var(--navy); color: var(--gold);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image .img-placeholder {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background-image:
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(245,200,66,.06) 18px 19px),
    radial-gradient(circle at 70% 30%, rgba(245,200,66,.18), transparent 60%);
}
.hero-image .img-placeholder .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: .1em;
  padding: 8px 12px; border-radius: 8px;
  background: rgba(245,200,66,.15); color: var(--gold);
  text-transform: uppercase;
}
.hero-image .badge-card {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--gold); color: var(--navy);
  padding: 18px 22px; border-radius: 18px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-md);
}
.hero-image .badge-card .num { font-family: 'Bricolage Grotesque'; font-size: 40px; font-weight: 700; line-height: 1; }
.hero-image .badge-card .lbl { font-size: 12px; font-weight: 600; line-height: 1.2; max-width: 90px; }

.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: white; padding: 28px; max-width: 540px;
}
.hero-stats .stat { text-align: left; padding: 0 18px; }
.hero-stats .stat:not(:last-child) { border-right: 1px solid var(--border); }
.hero-stats .stat .num { font-family: 'Bricolage Grotesque'; font-size: 38px; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 6px; }
.hero-stats .stat .lbl { font-size: 13px; color: var(--muted); }

@media (max-width: 880px) {
  .hero { padding: 50px 0 70px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { aspect-ratio: 3/4; max-width: 460px; }
  .hero-stats { padding: 18px; max-width: none; }
  .hero-stats .stat { padding: 0 8px; }
  .hero-stats .stat .num { font-size: 28px; }
}

/* ----- Section ----- */
section { padding: 90px 0; }
section.compact { padding: 60px 0; }
.section-head { text-align: left; max-width: 820px; margin: 0 0 56px; }
.section-head .eyebrow {
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-600); margin-bottom: 14px;
  display: inline-block; padding: 6px 12px;
  border-radius: var(--radius-pill); background: rgba(245, 200, 66, .15);
  font-weight: 600;
}
.section-head p { font-size: 18px; color: var(--body); margin-top: 16px; max-width: 620px; }

@media (max-width: 700px) {
  section { padding: 60px 0; }
  .section-head { margin-bottom: 36px; text-align: left; }
}

/* ----- Cards ----- */
.card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card.hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.card-navy { background: var(--navy); color: white; border-color: var(--navy); }
.card-navy h2, .card-navy h3 { color: white; }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(245,200,66,.16); color: var(--gold-600);
  display: grid; place-items: center; margin-bottom: 18px;
}
.card-navy .card-icon { background: rgba(245,200,66,.2); color: var(--gold); }
.card-icon svg { width: 26px; height: 26px; }

/* ----- Feature grid ----- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 880px) { .feature-grid { grid-template-columns: 1fr; } }

/* ----- Pricing ----- */
.pricing-grid {
  display: flex; flex-wrap: wrap; gap: 22px; justify-content: center; align-items: stretch;
}
.pricing-grid .price-card {
  flex: 1 1 calc(33.333% - 22px); min-width: 260px; max-width: 340px;
}
@media (max-width: 940px) { .pricing-grid .price-card { flex: 1 1 100%; max-width: 100%; } }

.price-card {
  background: white; border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 32px;
  display: flex; flex-direction: column;
  position: relative;
}
.price-card.featured {
  background: var(--navy); color: white; border-color: var(--navy);
  transform: scale(1.02);
}
.price-card.featured h3 { color: white; }
.price-card.featured ul li { color: rgba(255,255,255,.85); }
.price-card.featured ul li svg { color: var(--gold); }
.price-card .ribbon {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy); padding: 4px 14px;
  border-radius: var(--radius-pill); font-size: 12px; font-weight: 700;
  letter-spacing: .04em;
}
.price-card .name { font-family: 'Bricolage Grotesque'; font-size: 22px; font-weight: 600; margin-bottom: 6px; }
.price-card .summary { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.price-card.featured .summary { color: rgba(255,255,255,.7); }
.price-card .price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 24px; }
.price-card .price .amount { font-family: 'Bricolage Grotesque'; font-size: 52px; font-weight: 700; line-height: 1; }
.price-card .price .unit { font-size: 14px; color: var(--muted); margin-left: 4px; }
.price-card.featured .price .unit { color: rgba(255,255,255,.7); }
.price-card ul { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 12px; }
.price-card ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--body); }
.price-card ul li svg { width: 18px; height: 18px; color: var(--gold-600); flex-shrink: 0; margin-top: 3px; }
.price-card .cta { margin-top: auto; }

/* ----- Steps ----- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative;
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
}
.step .num {
  position: absolute; top: -18px; left: 24px;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--gold); color: var(--navy);
  font-family: 'Bricolage Grotesque'; font-weight: 700; font-size: 20px;
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
}
.step h4 { margin-top: 14px; margin-bottom: 6px; }
.step p { font-size: 14px; margin: 0; color: var(--body); }

/* ----- FAQ ----- */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 820px; margin: 0 auto; }
.faq-item {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-weight: 600; color: var(--navy); font-size: 17px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .ico {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 50%; background: var(--bg); color: var(--navy);
  display: grid; place-items: center; transition: transform .2s, background .2s;
}
.faq-item[open] summary .ico { transform: rotate(45deg); background: var(--gold); }
.faq-item .body { padding: 0 26px 24px; color: var(--body); }
.faq-item .body p:last-child { margin-bottom: 0; }

/* ----- Reviews ----- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 940px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .reviews-grid { grid-template-columns: 1fr; } }
.review {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px;
  display: flex; flex-direction: column; gap: 14px;
}
.review .stars { color: var(--gold-600); font-size: 18px; letter-spacing: 2px; }
.review .text { font-size: 16px; color: var(--text); line-height: 1.55; }
.review .person { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border); }
.review .avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  display: grid; place-items: center;
  font-family: 'Bricolage Grotesque'; font-weight: 700;
}
.review .person .meta { font-size: 13px; color: var(--muted); }
.review .person .name { font-size: 15px; color: var(--navy); font-weight: 600; }

/* ----- CTA banner ----- */
.cta-banner {
  background: var(--navy); color: white; border-radius: var(--radius-lg);
  padding: 56px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(245,200,66,.25), transparent 60%);
}
.cta-banner h2 { color: white; margin-bottom: 10px; }
.cta-banner p { color: rgba(255,255,255,.78); margin-bottom: 0; max-width: 460px; }
.cta-banner .actions { display: flex; flex-direction: column; gap: 12px; position: relative; }
.cta-banner .actions .btn-outline { color: white; border-color: rgba(255,255,255,.4); }
.cta-banner .actions .btn-outline:hover { background: white; color: var(--navy); border-color: white; }
@media (max-width: 800px) {
  .cta-banner { grid-template-columns: 1fr; padding: 36px; }
}

/* ----- Footer ----- */
.site-footer {
  background: var(--navy-deep); color: rgba(255,255,255,.7);
  padding: 70px 0 30px; margin-top: 60px;
}
.site-footer .grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
@media (max-width: 880px) { .site-footer .grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 540px) { .site-footer .grid { grid-template-columns: 1fr; } }
.site-footer h5 {
  color: white; font-family: 'Bricolage Grotesque'; font-size: 15px;
  margin: 0 0 18px; letter-spacing: .04em; text-transform: uppercase;
}
.site-footer a { color: rgba(255,255,255,.7); display: block; padding: 6px 0; font-size: 15px; }
.site-footer a:hover { color: var(--gold); }
.site-footer .brand-name { color: white; }
.site-footer .brand-name small { opacity: .6; }
.site-footer .bottom { padding-top: 30px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 13px; }

/* ----- Contact form ----- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 30px; } }
.contact-info-card {
  background: var(--navy); color: white; border-radius: var(--radius-lg);
  padding: 40px; display: flex; flex-direction: column; gap: 26px;
  position: relative; overflow: hidden;
}
.contact-info-card h3 { color: white; }
.contact-info-card .row { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-card .ico {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(245,200,66,.18); color: var(--gold);
  display: grid; place-items: center; flex-shrink: 0;
}
.contact-info-card .ico svg { width: 20px; height: 20px; }
.contact-info-card .label { font-size: 13px; color: rgba(255,255,255,.6); margin: 0; }
.contact-info-card .value { font-size: 17px; color: white; font-weight: 500; margin: 2px 0 0; }
.contact-info-card .value a { color: white; text-decoration: underline; text-decoration-color: rgba(245,200,66,.5); text-underline-offset: 4px; }

form.contact-form { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; }
.field { display: flex; flex-direction: column; margin-bottom: 18px; }
.field label { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 15px; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: 12px;
  background: var(--bg); color: var(--text);
  transition: border-color .15s, background .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--navy); background: white;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }
.form-message {
  background: rgba(245, 200, 66, .15); border-left: 3px solid var(--gold);
  padding: 14px 18px; border-radius: 10px; margin-bottom: 20px;
  color: var(--navy); font-size: 14px;
  display: none;
}
.form-message.show { display: block; }

/* ----- Util ----- */
.gold-text { color: var(--gold-600); }
.navy-text { color: var(--navy); }
.center { text-align: center; }
.tight { letter-spacing: -.02em; }
.bg-navy { background: var(--navy); color: white; }
.bg-navy h2, .bg-navy h3, .bg-navy h4 { color: white; }
.bg-soft { background: var(--bg); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 880px) { .grid-2 { grid-template-columns: 1fr; gap: 30px; } }
.divider-line { height: 1px; background: var(--border); margin: 0; }

/* image placeholder */
.img-ph {
  position: relative; overflow: hidden;
  background: var(--navy); color: var(--gold);
  border-radius: var(--radius-lg);
}
.img-ph::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, transparent 0 18px, rgba(245,200,66,.05) 18px 19px);
}
.img-ph .label {
  position: absolute; bottom: 16px; left: 16px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .1em;
  padding: 6px 10px; border-radius: 8px; background: rgba(245,200,66,.15);
  text-transform: uppercase;
}

/* Logos / icons */
.lucide { width: 1em; height: 1em; }

/* whatsapp float */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 40;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: white;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  transition: transform .15s;
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 28px; height: 28px; }

/* fade-in on page */
.page { animation: fadeIn .25s ease both; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* schedule list */
.schedule { display: flex; flex-direction: column; gap: 14px; }
.schedule .row { display: flex; justify-content: space-between; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.08); }
.schedule .row:last-child { border-bottom: none; }
.schedule .day { color: rgba(255,255,255,.7); }
.schedule .hrs { color: white; font-variant-numeric: tabular-nums; }

/* page hero */
.page-hero { padding: 80px 0 50px; text-align: center; }
.page-hero p.lead { font-size: 19px; max-width: 600px; margin: 16px auto 0; color: var(--body); }

/* prose */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; }
.prose ul { padding-left: 22px; }
.prose ul li { margin-bottom: .5em; }
.prose blockquote {
  border-left: 3px solid var(--gold); margin: 1.5em 0; padding: 6px 0 6px 20px;
  font-size: 19px; color: var(--navy); font-style: italic;
}

/* small */
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }

/* checklist */
.checklist { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; }
.checklist li .check {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold); color: var(--navy);
  display: grid; place-items: center; margin-top: 2px;
}
.checklist li .check svg { width: 14px; height: 14px; }

/* timeline */
.timeline { position: relative; padding-left: 30px; }
.timeline::before { content: ""; position: absolute; left: 9px; top: 4px; bottom: 4px; width: 2px; background: var(--border); }
.tl-item { position: relative; padding-bottom: 30px; }
.tl-item::before {
  content: ""; position: absolute; left: -27px; top: 6px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--gold); border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--navy);
}
.tl-item .label { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--gold-600); margin-bottom: 4px; letter-spacing: .1em; }
.tl-item h4 { margin: 0 0 6px; }

/* breakouts */
.kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-600); margin-bottom: 14px;
  display: inline-block;
}


/* ===== ANIMATIONS ===== */

/* Scroll reveal base */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: none; }

/* Hero entrance */
@keyframes heroUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}
.hero-anim {
  opacity: 0;
  animation: heroUp .75s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-anim:nth-child(1) { animation-delay: .05s; }
.hero-anim:nth-child(2) { animation-delay: .15s; }
.hero-anim:nth-child(3) { animation-delay: .25s; }
.hero-anim:nth-child(4) { animation-delay: .35s; }
.hero-anim:nth-child(5) { animation-delay: .45s; }

/* Gold underline draw-on */
.hero h1 .gold::after {
  transform-origin: left center;
  transform: scaleX(0);
  animation: drawLine .7s .6s cubic-bezier(.16,1,.3,1) forwards;
}
@keyframes drawLine {
  from { transform: scaleX(0); opacity: 1; }
  to   { transform: scaleX(1); opacity: .35; }
}

/* Stat counter pop */
@keyframes statPop {
  0%   { opacity: 0; transform: scale(.7) translateY(8px); }
  65%  { transform: scale(1.06); }
  100% { opacity: 1; transform: none; }
}
.stat-pop .num {
  animation: statPop .55s cubic-bezier(.34,1.56,.64,1) both;
}
.stat-pop:nth-child(1) .num { animation-delay: .55s; }
.stat-pop:nth-child(2) .num { animation-delay: .68s; }
.stat-pop:nth-child(3) .num { animation-delay: .81s; }

/* WhatsApp float bounce in */
@keyframes waBounceIn {
  0%   { opacity: 0; transform: scale(.4) translateY(16px); }
  65%  { transform: scale(1.12); }
  100% { opacity: 1; transform: scale(1); }
}
.wa-float {
  animation: waBounceIn .6s 1.8s cubic-bezier(.34,1.56,.64,1) both;
}

/* Page fade upgrade existing */
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}
.page { animation: pageFadeIn .38s cubic-bezier(.16,1,.3,1) both; }

/* Card hover lift already partly there, just reinforce */
.card.hover:hover,
.review:hover,
.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(11,31,92,.10);
  border-color: var(--border-strong);
}

/* ===== TRUST TICKER ===== */
.ticker-wrap {
  overflow: hidden;
  background: var(--navy);
  padding: 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  user-select: none;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 22s linear infinite;
}
.ticker-wrap:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  white-space: nowrap;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  letter-spacing: .01em;
}
.ticker-item .tick-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  background: var(--gold);
  border-radius: 50%;
  display: grid; place-items: center;
}
.ticker-item .tick-icon svg {
  width: 13px; height: 13px;
  stroke: var(--navy); stroke-width: 2.5;
}
.ticker-sep {
  color: rgba(255,255,255,.2);
  font-size: 20px;
  padding: 16px 0;
  align-self: center;
}

/* ===== LIGHTBOX ===== */
.lb-trigger { cursor: zoom-in; position: relative; }
.lb-trigger::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(11,31,92,0);
  transition: background .2s;
  border-radius: inherit;
  pointer-events: none;
}
.lb-trigger:hover::after { background: rgba(11,31,92,.12); }
.lb-trigger:hover .lb-icon { opacity: 1; }
.lb-icon {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.92); color: var(--navy);
  display: grid; place-items: center;
  opacity: 0; transition: opacity .2s;
  pointer-events: none; z-index: 2;
  box-shadow: 0 4px 18px rgba(11,31,92,.2);
}
.lb-icon svg { width: 22px; height: 22px; }

.lb-backdrop {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(6,14,51,.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
  padding: 24px;
  backdrop-filter: blur(8px);
}
.lb-backdrop.open { opacity: 1; pointer-events: all; }
.lb-backdrop img {
  max-width: min(90vw, 900px); max-height: 88vh;
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
  transform: scale(.9);
  transition: transform .35s cubic-bezier(.16,1,.3,1);
  object-fit: contain;
}
.lb-backdrop.open img { transform: scale(1); }
.lb-close {
  position: fixed; top: 20px; right: 20px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.15); border: 1.5px solid rgba(255,255,255,.3);
  color: white; cursor: pointer;
  display: grid; place-items: center;
  transition: background .15s, transform .15s;
}
.lb-close:hover { background: rgba(255,255,255,.25); transform: scale(1.08); }
.lb-close svg { width: 20px; height: 20px; }

/* ===== MOBILE NAV FIX ===== */
.mobile-quickbar {
  display: none;
  align-items: center;
  gap: 6px;
}
@media (max-width: 940px) {
  .mobile-quickbar { display: flex; }
}
.mobile-icon-btn {
  width: 40px; height: 40px; border-radius: 11px;
  background: var(--border); color: var(--navy);
  display: grid; place-items: center;
  transition: background .15s;
  flex-shrink: 0;
}
.mobile-icon-btn svg { width: 19px; height: 19px; }
.mobile-icon-btn:hover { background: var(--border-strong); }

/* Drawer: maak links iets kleiner op kleine schermen */
@media (max-width: 400px) {
  .mobile-drawer nav a { font-size: 26px; }
}

/* Drawer: zorg dat footer-cta altijd onderaan blijft */
.mobile-drawer { overflow-y: auto; }
.mobile-drawer .footer-cta { border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; }
  