/* ── /professional/css/layout.css ────────────────────────────────────────────── */
:root {
  --g:        #3d5a3e;
  --g-dark:   #2b3f2c;
  --g-mid:    #4d6639;
  --g-light:  #6b8f5e;
  --g-pale:   #e8f0e3;
  --g-xpale:  #f3f7f0;
  --cream:    #faf8f4;
  --white:    #ffffff;
  --ink:      #111714;
  --ink-60:   rgba(17,23,20,.6);
  --ink-30:   rgba(17,23,20,.3);
  --gold:     #c8a96e;
  --gold-lt:  #f0e4cc;
  --r:        8px;
  --r-lg:     16px;
  --r-xl:     24px;
  --ease:     cubic-bezier(.25,.46,.45,.94);
  --max:      1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── NAV ────────────────────────────────────────────────── */

.nav-language-select-wrap{
  margin:6px 0 14px;
}

.nav-language-select{
  width:100%;
  min-height:44px;
  padding:0 14px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:12px;
  background:rgba(255,255,255,.08);
  color:#fff;
  font:inherit;
  outline:none;
  appearance:none;
  cursor:pointer;
}

.nav-language-select option{
  color:#111;
  background:#fff;
}

.nav-language-select:focus{
  border-color:rgba(255,255,255,.35);
}
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--g);
  height: 58px;
  display: flex; align-items: center;
  box-shadow: 0 2px 20px rgba(0,0,0,.18);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.nav-logo {
  display: flex; align-items: center; gap: .65rem;
  text-decoration: none;
  min-width: 0;
}
.nav-logo img {
  height: 50px; width: 50px; object-fit: contain;
  border-radius: 50%; background: var(--g-dark); padding: 0;
  flex-shrink: 0;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; min-width: 0; }
.nav-logo-text strong { font-size: .95rem; font-weight: 600; color: var(--cream); letter-spacing: .06em; }
.nav-logo-text small { font-size: .65rem; color: rgba(255,255,255,.55); font-weight: 300; letter-spacing: .08em; text-transform: uppercase; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-left: auto;
}

.nav-links {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 54px;
  right: 0;
  width: min(300px, calc(100vw - 24px));
  background: var(--g-dark);
  padding: 1.1rem;
  gap: .35rem;
  list-style: none;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
}

.nav-links.open { display: flex; }

.nav-group {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  width: 100%;
}

.nav-submenu-title {
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.42);
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem .95rem .15rem;
}

.nav-main-link {
  border: 1px solid rgba(255,255,255,.12);
}

.nav-links a {
  display: block;
  width: 100%;
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.78);
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background .2s, color .2s;
  padding: .35rem 2.5rem;
  border-radius: 8px;
  text-align: left;
}
.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,.08); 
}

.nav-cta {
  display: inline-flex;
  align-items: center; 
  justify-content: center;
  background: var(--gold);
  color: var(--g-dark) !important;
  padding: .55rem 1rem;
  border-radius: 4px;
  font-size: .8rem;
  font-weight: 600 !important;
  transition: background .2s, transform .2s !important;
  white-space: nowrap;
  line-height: 1;
}
.nav-cta:hover { background: var(--gold-lt) !important; transform: translateY(-1px); }

.nav-links .nav-cta {
  width: 100%;
  margin-top: .35rem;
  min-height: 44px;
	padding-top: .95rem;
}

.nav-cta-header {
  min-width: 168px;
}

.hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,.88);
  border-radius: 2px;
  transition: .3s;
}

.hide{
	display:none;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  padding-top: 58px;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  position: relative;
  overflow: hidden;
}

.hero-left {
  background: var(--g-dark);
  padding: 5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
}

.hero-left::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero-sub,
.hero-ctas,
.hero-disclaimer {
  max-width: 380px;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .7rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 3.6vw, 3.6rem) !important; 
  font-weight: 600; line-height: 1.08; letter-spacing: -.02em;
  color: var(--white); margin-bottom: 1.25rem;
}
.hero h1 em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: 1rem; font-weight: 300; line-height: 1.7;
  color: rgba(255,255,255,.65); max-width: 370px; margin-bottom: 2.5rem;
}

.hero-ctas { display: grid; grid-template-columns: 1fr; gap: .75rem; max-width: 380px; margin-top: 10px;}

.cta-primary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem; border-radius: var(--r);
  font-size: .875rem; font-weight: 600; transition: transform .2s var(--ease), box-shadow .2s;
  cursor: pointer; text-decoration: none;
}
.cta-primary:hover { transform: translateX(4px); }

.cta-1 { background: var(--gold); color: var(--g-dark); box-shadow: 0 8px 24px rgba(200,169,110,.3); }
.cta-1:hover { box-shadow: 0 12px 32px rgba(200,169,110,.45); }
.cta-2 { background: rgba(255,255,255,.1); color: var(--white); border: 1px solid rgba(255,255,255,.2); }
.cta-2:hover { background: rgba(255,255,255,.16); }
.cta-3 { background: rgba(255,255,255,.06); color: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.12); }
.cta-3:hover { background: rgba(255,255,255,.11); }

.cta-label { display: flex; flex-direction: column; }
.cta-label small { font-size: .7rem; font-weight: 400; opacity: .7; margin-top: .15rem; }
.cta-arrow { font-size: 1rem; opacity: .6; }

.hero-disclaimer {
  margin-top: 2rem;
  font-size: .72rem; color: rgba(255,255,255,.35); line-height: 1.5;
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 1rem; max-width: 380px;
}

.hero-right {
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.hero-right img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}

.hero-right::after {
  content: '';
  position: absolute; inset: 0;
}

.hero-badge {
  position: absolute;
  left: 5px;
  right: 5px;
  bottom: 5px;
  z-index: 10;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 -8px 24px rgba(0,0,0,.08);
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 8px;
  padding: 1rem 1.25rem;
}

.hero-badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--g-pale);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.hero-badge-icon svg { width: 20px; height: 20px; stroke: var(--g); fill: none; stroke-width: 1.8; }

.hero-badge > div:last-child {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-wrap: wrap;
  min-width: 0;
}

.hero-badge strong {
  font-size: .95rem;
  color: var(--g-dark);
  display: inline;
  margin: 0;
  line-height: 1.2;
  white-space: nowrap;
}

.hero-badge span {
  font-size: .82rem;
  color: var(--ink-60);
  line-height: 1.35;
  display: inline;
}

/* ── TRUST BAR ──────────────────────────────────────────── */
.trust-bar {
  background: var(--g-xpale);
  border-top: 1px solid var(--g-pale);
  border-bottom: 1px solid var(--g-pale);
  padding: 1.25rem 2rem;
}
.trust-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: .6rem;
  font-size: .8rem; font-weight: 500; color: var(--g-dark);
}
.trust-item svg { width: 16px; height: 16px; stroke: var(--g-light); fill: none; stroke-width: 2; flex-shrink: 0; }
.trust-divider { width: 1px; height: 24px; background: var(--g-pale); }

/* ── SECTION SHARED ─────────────────────────────────────── */
.section { padding: 6rem 2rem; }
.section-inner { max-width: var(--max); margin: 0 auto; }

.eyebrow {
  font-size: .7rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--g-light); margin-bottom: .75rem;
  display: flex; align-items: center; gap: .5rem;
}
.eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--g-light); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600; line-height: 1.15; letter-spacing: -.02em;
  color: var(--ink); margin-bottom: 1rem;
}
.section-sub { font-size: 1rem; font-weight: 300; color: var(--ink-60); max-width: 560px; line-height: 1.7; }

/* ── METHODE ─────────────────────────────────────────────── */
.methode { background: var(--white); }

.methode-grid {
  margin-top: 3.5rem;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start;
}

.methode-steps { display: flex; flex-direction: column; gap: 1px; }

.step {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.5rem 1.25rem; border-radius: var(--r);
  cursor: pointer; transition: background .2s;
  position: relative;
}
.step::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: transparent; border-radius: 3px; transition: background .2s;
}
.step:hover { background: var(--g-xpale); }
.step:hover::before { background: var(--g-light); }
.step.active { background: var(--g-xpale); }
.step.active::before { background: var(--g); }

.step-num {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--g-pale); color: var(--g-dark);
  font-size: .75rem; font-weight: 700;
  display: grid; place-items: center; flex-shrink: 0;
  transition: background .2s;
}
.step.active .step-num { background: var(--g); color: var(--white); }

.step-text h4 { font-size: .95rem; font-weight: 600; color: var(--ink); margin-bottom: .3rem; }
.step-text p { font-size: .85rem; color: var(--ink-60); line-height: 1.6; }

.methode-output {
  background: var(--g-dark);
  border-radius: var(--r-xl); padding: 2.5rem;
  position: sticky; top: 80px;
}
.methode-output h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; color: var(--white); margin-bottom: .5rem;
}
.methode-output p { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.6; margin-bottom: 2rem; }

.output-items { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.output-item {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r); padding: .875rem 1rem;
  display: flex; align-items: center; gap: .6rem;
}
.output-item::before { content: '✓'; color: var(--gold); font-size: .8rem; font-weight: 700; flex-shrink: 0; }
.output-item span { font-size: .8rem; color: rgba(255,255,255,.8); }

.rapport-badge {
  margin-top: 1.5rem;
  background: var(--gold);
  border-radius: var(--r); padding: .875rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
}
.rapport-badge span { font-size: .8rem; font-weight: 600; color: var(--g-dark); }
.rapport-badge small { font-size: .7rem; color: rgba(43,63,44,.7); }

/* ── PIJLERS ─────────────────────────────────────────────── */
.pijlers { background: var(--cream); }

.pijlers-grid {
  margin-top: 3.5rem;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}

.pijler-card {
  background: var(--white); border-radius: var(--r-xl);
  border: 1px solid rgba(0,0,0,.07);
  padding: 2rem; overflow: hidden; position: relative;
  transition: transform .25s var(--ease), box-shadow .25s;
  cursor: pointer;
}
.pijler-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(61,90,62,.1); }

.pijler-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem; font-weight: 600; line-height: 1;
  color: var(--g-pale); position: absolute; top: 1rem; right: 1.5rem;
  user-select: none;
}

.pijler-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--g-pale); display: grid; place-items: center; margin-bottom: 1.25rem;
}
.pijler-icon svg { width: 22px; height: 22px; stroke: var(--g); fill: none; stroke-width: 1.8; }

.pijler-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 600; color: var(--ink); margin-bottom: .3rem;
}
.pijler-tag { font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--g-light); margin-bottom: .75rem; }
.pijler-card p { font-size: .875rem; color: var(--ink-60); line-height: 1.65; margin-bottom: 1.25rem; }

.pijler-bullets { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.pijler-bullets li {
  font-size: .8rem; color: var(--ink-60); padding-left: 1.1rem; position: relative;
}
.pijler-bullets li::before {
  content: ''; position: absolute; left: 0; top: .5rem;
  width: 5px; height: 5px; border-radius: 50%; background: var(--g-light);
}

.pijler-link {
  margin-top: 1.5rem; display: inline-flex; align-items: center; gap: .4rem;
  font-size: .8rem; font-weight: 600; color: var(--g);
  transition: gap .2s;
}
.pijler-link:hover { gap: .7rem; }

/* ── DOELGROEPEN ─────────────────────────────────────────── */
.doelgroepen { background: var(--g-dark); }
.doelgroepen .section-title { color: var(--white); }
.doelgroepen .section-sub { color: rgba(255,255,255,.55); }
.doelgroepen .eyebrow { color: var(--gold); }
.doelgroepen .eyebrow::before { background: var(--gold); }

.dg-grid {
  margin-top: 3.5rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}

.dg-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl); padding: 2rem;
  transition: background .2s, transform .2s var(--ease);
}
.dg-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }

.dg-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(255,255,255,.08); display: grid; place-items: center;
  margin-bottom: 1.25rem;
}
.dg-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.7; }

.dg-card h3 { font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: .4rem; }
.dg-card p { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.65; margin-bottom: 1.5rem; }

.dg-cta {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 600; color: var(--gold);
  transition: gap .2s;
}
.dg-cta:hover { gap: .8rem; }

/* ── VISIE STRIP ─────────────────────────────────────────── */
.visie {
  background: linear-gradient(135deg, var(--g) 0%, var(--g-dark) 100%);
  padding: 5rem 2rem; position: relative; overflow: hidden;
}
.visie::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 32px 32px;
}
.visie-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
  position: relative; z-index: 1;
}
.visie h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 600; color: var(--white);
  line-height: 1.12; margin-bottom: 1rem;
}
.visie h2 em { font-style: italic; color: var(--gold); }
.visie p { font-size: .95rem; color: rgba(255,255,255,.6); line-height: 1.7; }

.visie-items { display: flex; flex-direction: column; gap: 1.25rem; }
.visie-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem; border-radius: var(--r-lg);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
}
.visie-item-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: rgba(200,169,110,.18); display: grid; place-items: center;
}
.visie-item-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 2; }
.visie-item h4 { font-size: .9rem; font-weight: 600; color: var(--white); margin-bottom: .25rem; }
.visie-item p { font-size: .82rem; color: rgba(255,255,255,.5); line-height: 1.55; margin: 0; }

/* ── STATS ───────────────────────────────────────────────── */
.stats { background: var(--white); padding: 4rem 2rem; }
.stats-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  text-align: center;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 600; color: var(--g);
  line-height: 1; display: block;
}
.stat-label { font-size: .8rem; color: var(--ink-60); margin-top: .35rem; line-height: 1.4; }

/* ── JURIDISCH ───────────────────────────────────────────── */
.juridisch {
  background: var(--g-xpale);
  border-top: 1px solid var(--g-pale);
  border-bottom: 1px solid var(--g-pale);
  padding: 2.5rem 2rem;
}
.juridisch-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: flex-start; gap: 1.25rem;
}
.juridisch-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--g-pale); display: grid; place-items: center; flex-shrink: 0; margin-top: 2px;
}
.juridisch-icon svg { width: 18px; height: 18px; stroke: var(--g); fill: none; stroke-width: 2; }
.juridisch-text { font-size: .82rem; color: var(--ink-60); line-height: 1.7; max-width: 900px; }
.juridisch-text strong { color: var(--ink); font-weight: 600; }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-section { background: var(--white); }

.contact-grid {
  margin-top: 3.5rem;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: var(--g-pale); display: grid; place-items: center;
}
.contact-item-icon svg { width: 16px; height: 16px; stroke: var(--g); fill: none; stroke-width: 2; }
.contact-item strong { font-size: .85rem; color: var(--ink); display: block; margin-bottom: .2rem; }
.contact-item span { font-size: .85rem; color: var(--ink-60); }

.contact-form { display: grid; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.field-group { display: flex; flex-direction: column; gap: .4rem; }
.field-group label { font-size: .75rem; font-weight: 600; color: var(--ink); letter-spacing: .04em; text-transform: uppercase; }

input[type=text], input[type=email], input[type=password], input[type=date], input[type=tel], select, textarea {
  width: 100%; padding: .85rem 1rem;
  border: 1.5px solid rgba(0,0,0,.1); border-radius: var(--r);
  font-family: 'DM Sans', sans-serif; font-size: .875rem; color: var(--ink);
  background: var(--g-xpale); outline: none;
  transition: border-color .2s, box-shadow .2s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--g-light);
  box-shadow: 0 0 0 3px rgba(107,143,94,.15);
  background: var(--white);
}
textarea { resize: vertical; min-height: 120px; }
select { appearance: none; cursor: pointer; }

.submit-btn {
  width: 100%; padding: 1rem;
  background: var(--g); color: var(--white); border: none;
  border-radius: var(--r); font-family: 'DM Sans', sans-serif;
  font-size: .9rem; font-weight: 600; cursor: pointer;
  transition: background .2s, transform .2s;
  display: flex; align-items: center; justify-content: center; gap: .6rem;
}
.submit-btn:hover { background: var(--g-dark); transform: translateY(-2px); }

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--g-dark); padding: 3rem 2rem 2rem;
}
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-brand img { height: 70px; width: 70px; border-radius: 50%; background: var(--g); padding: 2px; }
.footer-brand p { font-size: .82rem; color: rgba(255,255,255,.45); line-height: 1.65; max-width: 260px; }

.footer-col h4 { font-size: .8rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul a { font-size: .82rem; color: rgba(255,255,255,.45); transition: color .2s; }
.footer-col ul a:hover { color: rgba(255,255,255,.85); }

.footer-bottom {
  max-width: var(--max); margin: 1.5rem auto 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: .75rem; color: rgba(255,255,255,.3);
}
.footer-bottom a { color: rgba(255,255,255,.4); transition: color .2s; }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* ── TOAST ───────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(1rem);
  background: var(--g-dark); color: var(--white);
  padding: .75rem 1.5rem; border-radius: 999px;
  font-size: .85rem; font-weight: 500;
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
  opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s; z-index: 999;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── ANIMATIONS ──────────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    width: 100%;
    max-width: none;
    padding: 4rem 2rem;
  }

  .hero-right {
    height: 50vw;
    min-height: 300px;
  }

  .hero-badge {
    padding: 1rem 1.25rem;
  }

  .hero-badge > div:last-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .1rem;
  }

  .hero-badge strong {
    font-size: clamp(.95rem, 1.8vw, 1.1rem);
    white-space: normal;
  }

  .hero-badge span {
    font-size: clamp(.8rem, 1.4vw, .95rem);
  }

  .methode-grid { grid-template-columns: 1fr; }
  .methode-output { position: static; }
  .visie-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-inner {
    padding: 0 1rem;
    gap: .5rem;
  }

  .nav-logo-text strong { font-size: .88rem; }
  .nav-logo-text small { font-size: .58rem; }

  .nav-cta-header {
    display: none;
  }

  .nav-links {
    right: 8px;
    width: calc(100vw - 16px);
  }

  .pijlers-grid { grid-template-columns: 1fr; }
  .dg-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-ctas { max-width: 100%; }
  .output-items { grid-template-columns: 1fr; }
  .trust-inner { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .trust-divider { display: none; }
}

@media (max-width: 480px) {
  .section { padding: 4rem 1.25rem; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .hero-left { padding: 3rem 1.25rem; }
  .nav-logo-text small { display: none; }
}


/* ── FRANCHISE EXTRA ───────────────────────────────────── */

.anchor-nav {
  background: var(--g-xpale);
  border-bottom: 1px solid var(--g-pale);
  padding: .875rem 2rem;
  position: sticky;
  top: 58px;
  z-index: 100;
}

.anchor-nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  overflow-x: auto;
}

.anchor-nav a {
  font-size: .78rem;
  font-weight: 500;
  color: var(--ink-60);
  padding: .4rem .9rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: background .2s, color .2s;
}

.anchor-nav a:hover,
.anchor-nav a.active {
  background: var(--g);
  color: var(--white);
}

.section-alt { background: var(--cream); }
.section-dark { background: var(--g-dark); }

.eyebrow-gold { color: var(--gold); }
.eyebrow-gold::before { background: var(--gold); }

.section-title-white { color: var(--white); }
.section-sub-white {
  color: rgba(255,255,255,.55);
  margin-bottom: 3rem;
}

.stats-strip {
  background: #fff;
  padding: 3rem 2rem;
}

.stats-inner-light {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-num-light {
    color: #2b3f2c;
    font-size: 2.8rem;
}

.stat-label-light {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  margin-top: .3rem;
  line-height: 1.4;
}

.formule-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.formule-block {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  transition: background .2s;
}

.formule-block:hover { background: rgba(255,255,255,.1); }

.formule-block-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(200,169,110,.15);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.formule-block-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
}

.formule-block h4 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .4rem;
}

.formule-block p {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
}

.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.card-inner { padding: 2rem; }

.usp-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  transition: transform .25s var(--ease), box-shadow .25s;
}

.usp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(61,90,62,.1);
}

.usp-icon {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: var(--g-pale);
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
}

.usp-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--g);
  fill: none;
  stroke-width: 1.8;
}

.usp-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .5rem;
}

.usp-card p {
  font-size: .85rem;
  color: var(--ink-60);
  line-height: 1.65;
}

.steps-grid { display: flex; flex-direction: column; gap: 1px; }

.journey-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.journey-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.75rem 1.5rem;
  border-radius: var(--r-lg);
  transition: background .2s;
  position: relative;
}

.journey-step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 3px;
  background: transparent;
  transition: background .2s;
}
/*
.journey-step:hover { background: var(--g-xpale); }
.journey-step:hover::before { background: var(--g-light); }
*/
.journey-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 30px;
  bottom: -20px;
  width: 2px;
  height: 20px;
  background: var(--g-pale);
  z-index: 0;
}

.step-num-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--g-pale);
  border: 2px solid var(--g-pale);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--g-dark);
  transition: background .2s, border-color .2s;
  z-index: 1;
  position: relative;
}
/*
.journey-step:hover .step-num-circle {
  background: var(--g);
  border-color: var(--g);
  color: var(--white);
}
*/
.journey-step h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #757575;
  margin-bottom: .4rem;
}

.journey-step p {
  font-size: .875rem;
  color: #757575;
  line-height: 1.65;
}

.quote-card {
  background: var(--g-xpale);
  border: 1px solid var(--g-pale);
  border-radius: var(--r-xl);
  padding: 2rem;
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  line-height: .8;
  color: var(--g-pale);
  margin-bottom: .5rem;
}

.quote-text {
  font-size: .95rem;
  color: var(--ink);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: .875rem;
}

.quote-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--g-pale);
  border: 2px solid var(--g-pale);
  flex-shrink: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.quote-avatar svg {
  width: 20px;
  height: 20px;
  stroke: var(--g-light);
  fill: none;
  stroke-width: 1.5;
}

.quote-name {
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink);
}

.quote-role {
  font-size: .75rem;
  color: var(--ink-60);
}

.faq-wrap { max-width: 760px; }

.faq-item {
  border: 1.5px solid var(--g-pale);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .2s;
}

.faq-item + .faq-item { margin-top: .75rem; }
.faq-item:hover { border-color: var(--g-light); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--white);
  user-select: none;
  gap: 1rem;
}

.faq-question:hover { background: var(--g-xpale); }

.faq-chevron {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--g-pale);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform .3s var(--ease), background .2s;
}

.faq-chevron svg {
  width: 14px;
  height: 14px;
  stroke: var(--g);
  fill: none;
  stroke-width: 2;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--g);
}

.faq-item.open .faq-chevron svg { stroke: var(--white); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease), padding .2s;
  background: var(--g-xpale);
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: .875rem;
  color: var(--ink-60);
  line-height: 1.7;
}

.faq-item.open .faq-answer { max-height: 400px; }

.invest-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--g-pale);
  gap: 1rem;
}

.invest-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.invest-label {
  font-size: .875rem;
  color: var(--ink);
  font-weight: 500;
}

.invest-placeholder {
  font-size: .8rem;
  color: var(--ink-30);
  font-style: italic;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1rem;
}

.chip {
  padding: .45rem .875rem;
  border-radius: 999px;
  border: 1px solid var(--g-pale);

  background: var(--g-xpale);
  font-size: .78rem;
  font-weight: 500;
  color: var(--g-dark);
}

.note {
  border-left: 3px solid var(--g-light);
  background: var(--g-xpale);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 1rem 1.25rem;
  font-size: .82rem;
  color: var(--ink-60);
  line-height: 1.65;
}

.note-gold {
  border-left-color: var(--gold);
  background: rgba(200,169,110,.07);
}

.bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .875rem;
  color: var(--ink-60);
  line-height: 1.6;
}

.bullet-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--g-light);
  flex-shrink: 0;
  margin-top: .45rem;
}

.btn-row {
  display: flex;
  align-items: center;
  gap: .875rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 1.5rem;
  border-radius: var(--r);
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s, background .2s;
  text-decoration: none;
}

.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: var(--gold);
  color: var(--g-dark);
  box-shadow: 0 6px 20px rgba(200,169,110,.25);
}

.btn-gold:hover { box-shadow: 0 10px 28px rgba(200,169,110,.4); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.3);
}

.btn-outline-white:hover { background: rgba(255,255,255,.08); }

.btn-outline-green {
  background: transparent;
  color: #fff;
  border: 1.5px solid var(--g-pale);
}

.btn-outline-green:hover { background: var(--g-xpale); }

.btn-green {
  background: var(--g);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(61,90,62,.2);
}

.btn-green:hover {
  background: var(--g-dark);
  box-shadow: 0 10px 28px rgba(61,90,62,.3);
}

.cta-banner {
  background: var(--g-dark);
  border-radius: var(--r-xl);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-banner h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .4rem;
}

.cta-banner p {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  max-width: 480px;
  line-height: 1.6;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4rem;
  align-items: start;
}

.contact-step-row {
  display: flex;
  gap: .875rem;
  align-items: flex-start;
  padding: .875rem 0;
  border-bottom: 1px solid var(--g-pale);
}

.contact-step-row-last {
  border-bottom: none;
}

.contact-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--g);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-step-num span {
  font-size: .75rem;
  font-weight: 700;
  color: var(--white);
}

.direct-contact-card {
  background: var(--white);
  border: 1px solid var(--g-pale);
  border-radius: var(--r-lg);
  padding: 1.25rem;
}

.direct-contact-title {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--g);
  margin-bottom: .75rem;
}

.direct-contact-link {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .875rem;
  color: var(--g-dark);
  padding: .6rem .875rem;
  background: var(--g-xpale);
  border-radius: 6px;
  border: 1px solid var(--g-pale);
}

.brochure-card {
  background: var(--g-xpale);

  border-color: var(--g-pale);
}

.brochure-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.brochure-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--g);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .formule-grid { grid-template-columns: repeat(2, 1fr); }
  .grid2 { grid-template-columns: 1fr; }
  .grid3 { grid-template-columns: 1fr; }
  .stats-inner-light { grid-template-columns: repeat(2, 1fr); }
  .cta-banner-inner { flex-direction: column; }
}

@media (max-width: 768px) {
  .anchor-nav { display: none; }
  .formule-grid { grid-template-columns: 1fr; }
  .journey-step { grid-template-columns: 48px 1fr; }
}

@media (max-width: 900px) {
  .journey-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

/* ── CARE EXTRA ─────────────────────────────────────── */

.feature-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  transition: transform .25s var(--ease), box-shadow .25s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(61,90,62,.1);
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: var(--g-pale);
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--g);
  fill: none;
  stroke-width: 1.8;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .5rem;
}

.feature-card p {
  font-size: .85rem;
  color: var(--ink-60);
  line-height: 1.65;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.plan-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--r-xl);
  padding: 2rem;
  position: relative;
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(61,90,62,.1);
  border-color: rgba(61,90,62,.18);
}

.plan-card.featured {
  border: 1.5px solid rgba(200,169,110,.75);
  box-shadow: 0 20px 50px rgba(200,169,110,.12);
}

.plan-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: var(--g-dark);
  padding: .35rem .65rem;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.plan-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--g-dark);
  margin-bottom: .3rem;
  line-height: 1.1;
}

.plan-sub {
  font-size: .82rem;
  color: var(--ink-60);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  min-height: 40px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: .35rem;
  margin-bottom: .25rem;
}

.plan-price strong {
  font-size: 2rem;
  line-height: 1;
  color: var(--g-dark);
  font-weight: 700;
}

.plan-price span {
  font-size: .85rem;
  color: var(--ink-60);
}

.plan-note {
  font-size: .72rem;
  color: var(--ink-30);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--g-pale);
  border-radius: var(--r-xl);
  background: var(--white);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}

.compare-table th,
.compare-table td {
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--g-pale);
  text-align: left;
  vertical-align: top;
  font-size: .84rem;
  line-height: 1.6;
}

.compare-table th {
  background: var(--g-xpale);
  color: var(--g-dark);
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table td:first-child {
  font-weight: 600;
  color: var(--ink);
  width: 28%;
}

.faq-wrap-wide {
  max-width: 820px;
}

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

/* ── GENERAL TERMS EXTRA ───────────────────────────── */

.legal-section-sub {
  max-width: 860px;
}

.legal-summary-grid {
  margin-top: 3rem;
}

.legal-card-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.legal-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--r-xl);
  padding: 2rem;
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}

.legal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(61,90,62,.10);
  border-color: rgba(61,90,62,.16);
}

.legal-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--g-dark);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.legal-card p,
.legal-card li {
  font-size: .875rem;
  color: var(--ink-60);
  line-height: 1.72;
}

.legal-card p + p {
  margin-top: .9rem;
}

.legal-card ol,
.legal-card ul {
  margin: 1rem 0 0 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.legal-card li strong,
.legal-card p strong {
  color: var(--ink);
}

.legal-card code {
  display: inline-block;
  padding: .15rem .45rem;
  border-radius: 6px;
  background: var(--g-xpale);
  border: 1px solid var(--g-pale);
  color: var(--g-dark);
  font-size: .78rem;
}

#samenvatting .usp-card p {
  min-height: 0;
}

@media (max-width: 1024px) {
  .legal-card-grid {
    grid-template-columns: 1fr;
  }
}

  .webshop-page {
    padding: 0;
    margin: 0;
  }

  .webshop-shell {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
  }

  .webshop-card {
    position: relative;
    width: 100%;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.06);
  }

  .webshop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
    background: #f7f7f7;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }

  .webshop-toolbar h1 {
    margin: 0;
    font-size: 20px;
    line-height: 1.2;
  }

  .webshop-toolbar p {
    margin: 4px 0 0;
    font-size: 13px;
    color: #666;
  }

  .webshop-open-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: 10px 14px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    background: #111;
    color: #fff;
    transition: opacity .2s ease;
  }

  .webshop-open-link:hover {
    opacity: .88;
    color: #fff;
  }

  .webshop-frame-wrap {
    position: relative;
    width: 100%;
    height: calc(100vh - 190px);
    min-height: 900px;
    background: #fff;
  }

  .webshop-frame {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    background: #fff;
  }

  .webshop-loader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    z-index: 2;
    transition: opacity .25s ease, visibility .25s ease;
  }

  .webshop-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .webshop-loader-box {
    text-align: center;
    padding: 24px;
  }

  .webshop-spinner {
    width: 42px;
    height: 42px;
    margin: 0 auto 14px;
    border: 3px solid rgba(0,0,0,0.12);
    border-top-color: #111;
    border-radius: 50%;
    animation: webshopSpin 0.8s linear infinite;
  }

  .webshop-note {
    padding: 14px 18px 18px;
    font-size: 13px;
    color: #666;
    border-top: 1px solid rgba(0,0,0,0.06);
    background: #fcfcfc;
  }

  @keyframes webshopSpin {
    to { transform: rotate(360deg); }
  }

  @media (max-width: 991px) {
    .webshop-shell {
      padding: 12px;
    }

    .webshop-toolbar {
      flex-direction: column;
      align-items: flex-start;
    }

    .webshop-open-link {
      width: 100%;
    }

    .webshop-frame-wrap {
      height: calc(100vh - 160px);
      min-height: 700px;
    }
  }

  @media (max-width: 640px) {
    .webshop-frame-wrap {
      min-height: 620px;
    }

    .webshop-toolbar h1 {
      font-size: 18px;
    }
  }
	
	/* ── WEBSHOP CART BUTTON ─────────────────────────────── */

.nav-cta-cart {	 
	display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--g);
  color: var(--white) !important;
  padding: .32rem 1rem;
  border-radius: 4px;
  font-size: .8rem;
  font-weight: 600 !important;
  transition: background .2s, transform .2s !important;
  white-space: nowrap;
  line-height: 1;
	border:1px solid #c8a96e; 
}

.nav-cta-cart:hover {
  background: var(--g-dark) !important;
  color: var(--white) !important;
  box-shadow: 0 12px 28px rgba(43,63,44,.24);
}

.nav-cta-cart svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.nav-cta-cart span {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  line-height: 1;
}

.nav-cta-cart strong {
  font-weight: 700;
  color: inherit;
}

@media (max-width: 768px) {
  .nav-cta-cart {
    min-width: auto;
    padding: .58rem .9rem;
		display:block;
		border:none;
  }

  .nav-cta-cart svg {
    width: 17px;
    height: 17px;
  }
	
}

.home-section-alt{
    background:var(--g-xpale);
  }

  .home-grid-2,
  .home-grid-3,
  .home-grid-4{
    display:grid;
    gap:1.5rem;
  }

  .home-grid-2{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .home-grid-3{ grid-template-columns:repeat(3,minmax(0,1fr)); }
  .home-grid-4{ grid-template-columns:repeat(4,minmax(0,1fr)); }

  .home-card,
  .route-card-new,
  .blog-card-new,
  .step-card-new,
  .proof-card-new,
  .offer-card-new,
  .faq-card-new{
    background:#fff;
    border:1px solid rgba(43,63,44,.08);
    border-radius:18px;
    padding:1.5rem;
    transition:transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
  }

  .home-card:hover,
  .route-card-new:hover,
  .blog-card-new:hover,
  .step-card-new:hover,
  .proof-card-new:hover,
  .offer-card-new:hover,
  .faq-card-new:hover{
    transform:translateY(-4px);
    box-shadow:0 16px 38px rgba(43,63,44,.08);
    border-color:rgba(61,90,62,.18);
  }

  .icon-box-new{
    width:50px;
    height:50px;
    border-radius:12px;
    background:var(--g-pale);
    display:grid;
    place-items:center;
    margin-bottom:1rem;
  }

  .icon-box-new svg{
    width:22px;
    height:22px;
    stroke:var(--g);
    fill:none;
    stroke-width:1.9;
  }

  .mini-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:.45rem;
    font-size:.68rem;
    font-weight:700;
    letter-spacing:.11em;
    text-transform:uppercase;
    color:var(--g-light);
    margin-bottom:.8rem;
  }

  .mini-eyebrow::before{
    content:'';
    width:18px;
    height:1px;
    background:var(--g-light);
  }

  .card-title-new{
    font-family:'Cormorant Garamond', serif;
    color:var(--ink);
    font-size:1.6rem;
    line-height:1.12;
    margin-bottom:.6rem;
  }

  .card-copy-new{
    color:var(--ink-60);
    font-size:.9rem;
    line-height:1.72;
  }

  .card-list-new{
    list-style:none;
    display:grid;
    gap:.55rem;
    margin:1rem 0 1.2rem;
  }

  .card-list-new li{
    position:relative;
    padding-left:1rem;
    color:var(--ink-60);
    font-size:.84rem;
    line-height:1.6;
  }

  .card-list-new li::before{
    content:'';
    width:5px;
    height:5px;
    border-radius:50%;
    background:var(--g-light);
    position:absolute;
    left:0;
    top:.5rem;
  }

  .text-link-new{
    display:inline-flex;
    align-items:center;
    gap:.45rem;
    color:var(--g);
    font-size:.84rem;
    font-weight:700;
    transition:gap .2s var(--ease);
  }

  .text-link-new:hover{
    gap:.7rem;
  }

  .hero-extra{
    margin-top:1.15rem;
    display:flex;
    flex-wrap:wrap;
    gap:.6rem;
    max-width:390px;
  }

  .hero-chip{
    display:inline-flex;
    align-items:center;
    min-height:34px;
    padding:.55rem .8rem;
    border-radius:999px;
    background:rgba(255,255,255,.07);
    border:1px solid rgba(255,255,255,.1);
    color:rgba(255,255,255,.78);
    font-size:.75rem;
    line-height:1;
  }

  .hero-quickproof{
    margin-top:1.2rem;
    display:grid;
    gap:.75rem;
    max-width:390px;
  }

  .hero-quickproof-item{
    display:grid;
    grid-template-columns:18px 1fr;
    gap:.7rem;
    align-items:start;
    color:rgba(255,255,255,.78);
    font-size:.82rem;
    line-height:1.55;
  }

  .hero-quickproof-item svg{
    width:18px;
    height:18px;
    stroke:var(--gold);
    fill:none;
    stroke-width:2;
    margin-top:.15rem;
  }

  .hero-badge{
    left:12px;
    right:12px;
    bottom:12px;
  }

  .trust-bar{
    padding:1.1rem 2rem;
  }

  .route-card-new{
    position:relative;
    overflow:hidden;
  }

  .route-card-new::after{
    content:'';
    position:absolute;
    inset:0 auto 0 0;
    width:4px;
    background:linear-gradient(180deg,var(--gold),var(--g-light));
    opacity:.9;
  }

  .benefit-strip{
    background:#fff;
    border-top:1px solid var(--g-pale);
    border-bottom:1px solid var(--g-pale);
    padding:3rem 2rem;
  }

  .benefit-strip-inner{
    max-width:var(--max);
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:1.2rem;
  }

  .benefit-stat{
    text-align:center;
    padding:1rem;
  }

  .benefit-stat strong{
    display:block;
    font-family:'Cormorant Garamond', serif;
    font-size:2.6rem;
    line-height:1;
    color:var(--g-dark);
    margin-bottom:.35rem;
  }

  .benefit-stat span{
    display:block;
    color:var(--ink-60);
    font-size:.82rem;
    line-height:1.55;
  }

  .steps-layout-new{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:2rem;
    align-items:start;
    margin-top:3rem;
  }

  .steps-stack-new{
    display:grid;
    gap:1rem;
  }

  .step-card-new{
    display:grid;
    grid-template-columns:56px 1fr;
    gap:1rem;
    align-items:start;
  }

  .step-num-new{
    width:44px;
    height:44px;
    border-radius:12px;
    background:var(--g);
    color:#fff;
    display:grid;
    place-items:center;
    font-weight:700;
    font-size:.82rem;
  }

  .step-card-new h3{
    color:var(--ink);
    font-size:1rem;
    margin-bottom:.3rem;
  }

  .step-card-new p{
    color:var(--ink-60);
    font-size:.86rem;
    line-height:1.68;
  }

  .method-panel-new{
    background:var(--g-dark);
    color:#fff;
    border-radius:22px;
    padding:2rem;
  }

  .method-panel-new h3{
    font-family:'Cormorant Garamond', serif;
    font-size:2rem;
    line-height:1.08;
    margin-bottom:.7rem;
  }

  .method-panel-new p{
    color:rgba(255,255,255,.64);
    font-size:.9rem;
    line-height:1.72;
  }

  .method-points-new{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:.75rem;
    margin:1.3rem 0 1.5rem;
  }

  .method-point-new{
    background:rgba(255,255,255,.07);
    border:1px solid rgba(255,255,255,.1);
    border-radius:12px;
    padding:.85rem .95rem;
    color:rgba(255,255,255,.88);
    font-size:.8rem;
    line-height:1.5;
  }

  .dark-proof-section{
    background:var(--g-dark);
  }

  .dark-proof-section .section-title,
  .dark-proof-section .section-sub{
    color:#fff;
  }

  .dark-proof-section .section-sub{
    color:rgba(255,255,255,.58);
  }

  .dark-proof-section .eyebrow{
    color:var(--gold);
  }

  .dark-proof-section .eyebrow::before{
    background:var(--gold);
  }

  .proof-card-new{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
  }

  .proof-card-new .card-title-new,
  .proof-card-new .card-copy-new{
    color:#fff;
  }

  .proof-card-new .card-copy-new{
    color:rgba(255,255,255,.62);
  }

  .proof-card-new .icon-box-new{
    background:rgba(255,255,255,.08);
  }

  .proof-card-new .icon-box-new svg{
    stroke:var(--gold);
  }

  .blog-card-new .mini-eyebrow{
    margin-bottom:.6rem;
  }

  .cta-banner-home-wrap{
    background:#fff;
    padding:0 2rem 5.5rem;
  }

  .cta-banner-home-wrap .cta-banner{
    max-width:var(--max);
    margin:0 auto;
  }

  .contact-home-grid{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:2rem;
    margin-top:3rem;
  }

  .contact-box-new{
    background:#fff;
    border:1px solid var(--g-pale);
    border-radius:20px;
    padding:1.75rem;
  }

  .contact-box-new h3{
    font-family:'Cormorant Garamond', serif;
    color:var(--ink);
    font-size:1.8rem;
    line-height:1.1;
    margin-bottom:.7rem;
  }

  .contact-box-new p{
    color:var(--ink-60);
    font-size:.9rem;
    line-height:1.72;
  }

  .contact-links-new{
    display:grid;
    gap:.8rem;
    margin-top:1.2rem;
  }

  .contact-links-new a{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:1rem;
    min-height:52px;
    border-radius:12px;
    border:1px solid var(--g-pale);
    background:var(--g-xpale);
    padding:.9rem 1rem;
    color:var(--g-dark);
    font-size:.86rem;
    font-weight:600;
    transition:transform .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
  }

  .contact-links-new a:hover{
    transform:translateX(3px);
    border-color:rgba(61,90,62,.22);
    background:#eef5ea;
  }

  .contact-note-list{
    display:grid;
    gap:1rem;
    margin-top:1.3rem;
  }

  .contact-note-item{
    display:grid;
    grid-template-columns:48px 1fr;
    gap:1rem;
    align-items:start;
    border:1px solid var(--g-pale);
    background:var(--g-xpale);
    border-radius:14px;
    padding:1rem;
  }

  .contact-note-icon{
    width:48px;
    height:48px;
    border-radius:12px;
    background:#fff;
    display:grid;
    place-items:center;
  }

  .contact-note-icon svg{
    width:20px;
    height:20px;
    stroke:var(--g);
    fill:none;
    stroke-width:1.8;
  }

  .contact-note-item strong{
    display:block;
    color:var(--g-dark);
    margin-bottom:.2rem;
    font-size:.92rem;
  }

  .contact-note-item span{
    display:block;
    color:var(--ink-60);
    font-size:.84rem;
    line-height:1.62;
  }

  @media (max-width: 1100px){
    .home-grid-4{ grid-template-columns:repeat(2,minmax(0,1fr)); }
    .home-grid-3{ grid-template-columns:1fr; }
    .steps-layout-new,
    .contact-home-grid{ grid-template-columns:1fr; }
    .benefit-strip-inner{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  }

  @media (max-width: 768px){
    .home-grid-2,
    .home-grid-4{ grid-template-columns:1fr; }
    .method-points-new{ grid-template-columns:1fr; }
    .benefit-strip{
      padding:2.5rem 1.25rem;
    }
    .benefit-strip-inner{
      grid-template-columns:1fr 1fr;
      gap:.75rem;
    }
    .cta-banner-home-wrap{
      padding:0 1.25rem 4.5rem;
    }
  }

  @media (max-width: 480px){
    .benefit-strip-inner{ grid-template-columns:1fr; }
  }

.center-map-section {
  background: var(--white);
  border-top: 1px solid var(--g-pale);
}

.center-map-wrap {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1.5fr .8fr;
  gap: 1.5rem;
  align-items: stretch;
}

.center-map {
  width: 100%;
  min-height: 460px;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 18px 40px rgba(61,90,62,.08);
  background: var(--g-xpale);
}

.center-map-legend {
  background: var(--cream);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.center-map-legend-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: 1rem;
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid rgba(0,0,0,.06);
}

.center-map-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--g);
  margin-top: .3rem;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(61,90,62,.12);
}

.center-map-legend-item strong {
  display: block;
  font-size: .92rem;
  color: var(--ink);
  margin-bottom: .2rem;
}

.center-map-legend-item span {
  display: block;
  font-size: .82rem;
  color: var(--ink-60);
  line-height: 1.6;
}

.leaflet-popup-content-wrapper {
  border-radius: 12px;
}

.leaflet-popup-content {
  font-family: 'DM Sans', sans-serif;
  font-size: .84rem;
  line-height: 1.55;
  color: var(--ink);
}

@media (max-width: 900px) {
  .center-map-wrap {
    grid-template-columns: 1fr;
  }

  .center-map {
    min-height: 360px;
  }
}

.bloedanalyse-section {
  position: relative;
}

.bloedanalyse-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.bloedanalyse-card {
  background: #fff;
  border: 1px solid var(--border, rgba(0,0,0,.08));
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 18px 50px rgba(0,0,0,.06);
}

.bloedanalyse-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.2rem;
  height: 2rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(20, 75, 90, .10);
  color: var(--g-dark);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.bloedanalyse-card h3,
.bloedanalyse-highlight h3 {
  margin: 0 0 .75rem;
  color: var(--g-dark);
  font-size: 1.25rem;
}

.bloedanalyse-card p,
.bloedanalyse-highlight p {
  margin: 0;
  color: var(--ink-60);
  font-size: .9rem;
  line-height: 1.75;
}

.bloedanalyse-highlight {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.4rem;
  margin-top: 1.5rem;
  padding: 2rem;
  border-radius: 1.7rem;
  background: linear-gradient(135deg, rgba(20,75,90,.09), rgba(255,255,255,.9));
  border: 1px solid rgba(20,75,90,.14);
}

.bloedanalyse-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--g-dark);
  color: #fff;
  flex: 0 0 auto;
}

.bloedanalyse-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bloedanalyse-note {
  margin-top: 1rem;
}

@media (max-width: 800px) {
  .bloedanalyse-layout {
    grid-template-columns: 1fr;
  }

  .bloedanalyse-highlight {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
}


/* =====================================================
   FOOTER SITES & FOOTER OFFICES
   Uit layout.css van tcm-food.com
   ===================================================== */


/* FOOTER OFFICES */
.footer-offices {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 34px 20px;
  color: #fff;
}

.footer-offices-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  color: #fff;
}

.footer-office,
.footer-office h5,
.footer-office p,
.footer-office a {
  color: #fff;
}

.footer-office h5 {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 700;
}

.footer-office p {
  margin: 0 0 12px;
  line-height: 1.65;
  font-size: 14px;
}

.footer-office a {
  text-decoration: none;
}

.footer-office a:hover {
  text-decoration: underline;
}

/* Footer sites - logo links */
.footer-sites {
  max-width: 1320px;
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1rem;
}

.footer-site-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  padding: 0.75rem;
  border-radius: 16px;
  transition: background 0.2s;
  text-decoration: none;
  color: inherit;
}

.footer-site-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.footer-site-card img {
  height: 80px;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.footer-site-card span {
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.03em;
}

.footer-site-card:hover span {
  color: #ffffff;
}

/* Tablet */
@media (max-width: 1100px) {
  .footer-sites {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Mobiel */
@media (max-width: 768px) {
  .footer-sites {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Kleine mobiel */
@media (max-width: 480px) {
  .footer-sites {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Tablet */
@media (max-width: 900px) {
  .footer-offices-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobiel */
@media (max-width: 640px) {
  .footer-offices-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-office {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .footer-office:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
}

/* ── HERO BADGE ONDER FOTO OP MOBIEL ───────────────────── */

@media (max-width: 768px) {
  .hero-right {
    height: auto;
    min-height: 0;
    overflow: visible;
    display: flex;
    flex-direction: column;
  }

  .hero-right img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center top;
  }

  .hero-badge {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0;
    border-radius: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    border-bottom: 1px solid var(--g-pale);
  }

  .hero-badge-product {
    padding: 1rem 1.25rem;
  }

  .hero-badge-product .hero-badge-text strong {
    font-size: .95rem;
  }

  .hero-badge-product .hero-badge-text span {
    font-size: .8rem;
    line-height: 1.45;
  }
}

.agendaGrid{ display:grid; grid-template-columns: 1fr 1fr; gap:16px; }
    @media (max-width: 980px){ .agendaGrid{ grid-template-columns:1fr; } }
    .agendaCol{ display:grid; gap:16px; align-content:start; }
    .agendaBlock{ border:1px solid rgba(0,0,0,.10); background: rgba(0,0,0,.03); border-radius: 18px; padding:14px; }
    .agendaBlockTitle{ font-weight: 900; margin-bottom:10px; color: rgba(0,0,0,.92); }
    .slotsWrap{ display:flex; flex-wrap:wrap; gap:10px; }
    .slotBtn{
      border:1px solid rgba(0,0,0,.14);
      background: rgba(255,255,255,.22);
      border-radius: 14px;
      padding: 10px 12px;
      font-weight: 900;
      cursor:pointer;
    }
    .slotBtn[aria-pressed="true"]{
      border-color: rgba(77,102,57,.75);
      box-shadow: 0 0 0 4px rgba(77,102,57,.18);
      background: rgba(77,102,57,.10);
    }
    .authRow{ display:flex; flex-wrap:wrap; gap:10px; align-items:center; }
    .authBox{ margin-top:12px; border-top:1px solid rgba(0,0,0,.10); padding-top:12px; }
    .myItem{
      border:1px solid rgba(0,0,0,.10);
      background: rgba(255,255,255,.18);
      border-radius: 18px;
      padding: 12px;
      margin-bottom: 10px;
      display:grid;
      gap: 8px;
    }
    .myTop{ display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap; }
    .badge{ font-weight:900; font-size:12px; padding:6px 10px; border-radius:999px; border:1px solid rgba(0,0,0,.12); background: rgba(0,0,0,.05); }
		
		/* =========================================================
   CHIMEDICS NAV RTL FIX
   Nav-structuur blijft stabiel, menu-tekst volgt Arabisch
========================================================= */

/* De navigatiebalk zelf nooit laten spiegelen */
.site-nav,
.site-nav .nav-inner,
.site-nav .nav-logo,
.site-nav .nav-actions {
  direction: ltr;
}

/* Logo blijft links, acties/hamburger blijven rechts */
.site-nav .nav-inner {
  display: flex;
  align-items: center;
}

.site-nav .nav-logo {
  margin-right: auto;
}

.site-nav .nav-actions {
  margin-left: auto;
  margin-right: 0;
  display: flex;
  align-items: center;
}

/* Hamburger altijd aan de rechterkant houden */
.site-nav .hamburger {
  margin-left: 0;
  margin-right: 0;
  flex-shrink: 0;
}

/* Uitklapmenu blijft gekoppeld aan rechterkant van de nav */
.site-nav .nav-links {
  right: 0;
  left: auto;
  direction: ltr;
}

/* Alleen de inhoud/tekst in het menu volgt RTL */
html[dir="rtl"] .site-nav .nav-links,
html[dir="rtl"] .site-nav .nav-group {
  direction: rtl;
  text-align: right;
}

/* Menu-links netjes rechts uitlijnen bij Arabisch */
html[dir="rtl"] .site-nav .nav-links a,
html[dir="rtl"] .site-nav .nav-main-link,
html[dir="rtl"] .site-nav .nav-submenu-title {
  text-align: right;
}

/* Taalkeuze liever LTR houden, anders ziet de select rommelig uit */
html[dir="rtl"] .site-nav .nav-language-select-wrap,
html[dir="rtl"] .site-nav .nav-language-select {
  direction: ltr;
  text-align: left;
}

/* Cart/account knoppen in header niet spiegelen */
html[dir="rtl"] .site-nav .nav-cta-header,
html[dir="rtl"] .site-nav .nav-cta-cart {
  direction: ltr;
}

/* Mobiel: menu breed onder de header houden */
@media (max-width: 768px) {
  .site-nav .nav-links {
    right: 8px;
    left: 8px;
    width: auto;
  }

  html[dir="rtl"] .site-nav .nav-links {
    right: 8px;
    left: 8px;
  }
}

/* ─────────────────────────────────────────────
   PROFESSIONAL OVERRIDES
   Voor /professional zelfstandige website
───────────────────────────────────────────── */

body {
  background: var(--white);
}

.hero {
  min-height: auto;
  padding-top: 58px;
  grid-template-columns: minmax(0, 460px) minmax(0, 1fr);
}

.hero-left {
  min-height: calc(100vh - 58px);
}

.hero-right {
  min-height: calc(100vh - 58px);
}

.section {
  padding: 4.5rem 2rem;
}

.pijlers-grid,
.dg-grid,
.methode-grid {
  margin-top: 2.5rem;
}

.visie {
  margin-top: 0;
}

/* Geen enorme lege ruimte als een section weinig content heeft */
.section-inner {
  min-height: 0;
}

/* Professional index: compactere hero op normale schermen */
@media (min-width: 861px) {
  .hero.professional-hero {
    min-height: auto;
  }

  .hero.professional-hero .hero-left,
  .hero.professional-hero .hero-right {
    min-height: 620px;
  }
}

/* Mobiel */
@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    min-height: auto;
    width: 100%;
    max-width: none;
    padding: 5rem 1.25rem 3rem;
  }

  .hero-right {
    min-height: auto;
  }

  .hero-right img {
    min-height: 360px;
  }

  .section {
    padding: 3.5rem 1.25rem;
  }
}

/* Professional: toon fade-up blokken altijd */
.fade-up {
  opacity: 1;
  transform: none;
}

  .professional-page {
    padding-top: 58px;
    background:
      radial-gradient(circle at top right, rgba(200,169,110,.16), transparent 34rem),
      linear-gradient(180deg, var(--g-xpale), var(--white));
    min-height: 100vh;
  }

  .professional-shell {
    max-width: var(--max);
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
  }

  .page-hero {
    background: linear-gradient(135deg, var(--g-dark), var(--g));
    border-radius: var(--r-xl);
    padding: 2.5rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 22px 60px rgba(43,63,44,.18);
  }

  .page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
  }

  .page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
  }

  .page-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--gold);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-weight: 700;
    margin-bottom: 1rem;
  }

  .page-eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--gold);
  }

  .page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.05;
    margin: 0 0 1rem;
    font-weight: 600;
  }

  .page-hero p {
    color: rgba(255,255,255,.72);
    line-height: 1.7;
    max-width: 700px;
    margin: 0;
  }

  .page-actions {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-top: 1.6rem;
  }

  .page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: .8rem 1rem;
    border-radius: var(--r);
    font-size: .85rem;
    font-weight: 700;
    text-decoration: none;
		cursor:pointer;
  }

  .page-btn.primary {
    background: var(--gold);
    color: var(--g-dark);
  }

  .page-btn.secondary {
    background: rgba(255,255,255,.1);
    color: var(--white);
    border: 1px solid rgba(255,255,255,.18);
  }

  .filter-panel,
  .content-panel {
    margin-top: 1.25rem;
    background: var(--white);
    border: 1px solid rgba(0,0,0,.07);
    border-radius: var(--r-xl);
    padding: 1.5rem;
    box-shadow: 0 16px 40px rgba(61,90,62,.08);
  }

  .filter-form {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    align-items: end;
  }

  .form-field label {
    display: block;
    font-size: .74rem;
    font-weight: 800;
    color: var(--g);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .45rem;
  }

  .form-field input {
    width: 100%;
    min-height: 44px;
    border: 1px solid rgba(0,0,0,.12);
    border-radius: var(--r);
    padding: .65rem .75rem;
    font: inherit;
    color: var(--ink);
    background: var(--white);
    outline: none;
  }

  .filter-submit,
  .pin-submit {
    min-height: 44px;
    border: 0;
    border-radius: var(--r);
    background: var(--g);
    color: var(--white);
    font-weight: 800;
    cursor: pointer;
    padding: .65rem 1rem;
  }

  .panel-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
  }

  .panel-head h2 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--ink);
    font-size: 1.8rem;
    line-height: 1.15;
    margin: 0;
    font-weight: 600;
  }

  .muted {
    color: var(--ink-60);
    font-size: .86rem;
    line-height: 1.55;
  }

  .table-wrap {
    overflow-x: auto;
  }

  .reception-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 980px;
  }

  .reception-table th,
  .reception-table td {
    text-align: left;
    padding: .95rem .75rem;
    border-bottom: 1px solid rgba(0,0,0,.07);
    vertical-align: top;
    font-size: .88rem;
  }

  .reception-table th {
    color: var(--g);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .72rem;
    font-weight: 800;
  }

  .main-text {
    color: var(--ink);
    font-weight: 800;
  }

  .sub-text {
    display: block;
    color: var(--ink-60);
    font-size: .8rem;
    margin-top: .2rem;
    line-height: 1.4;
  }

  .success-box {
    margin-top: 1.25rem;
    padding: 1.4rem;
    border-radius: var(--r-xl);
    background: #f4fbf3;
    border: 1px solid #cbe6c8;
    color: #245c2d;
  }

  .error-box {
    margin-top: 1.25rem;
    padding: 1rem 1.25rem;
    border-radius: var(--r-lg);
    background: #fff1f1;
    border: 1px solid #ffd1d1;
    color: #8a1f1f;
  }

  .pin-code-box {
    margin-top: 1rem;
    background: var(--white);
    border: 2px dashed #245c2d;
    border-radius: var(--r-lg);
    padding: 1.2rem;
    display: inline-block;
  }

  .pin-code {
    font-family: monospace;
    font-size: 3rem;
    letter-spacing: .18em;
    color: var(--g-dark);
    font-weight: 900;
  }

  .empty-state {
    padding: 1.25rem;
    border-radius: var(--r-lg);
    background: var(--g-xpale);
    color: var(--ink-60);
    line-height: 1.65;
  }

  @media (max-width: 920px) {
    .professional-shell {
      padding: 2rem 1rem 4rem;
    }

    .page-hero {
      padding: 2rem 1.25rem;
    }

    .filter-form {
      grid-template-columns: 1fr;
    }

    .panel-head {
      flex-direction: column;
    }
  }
	
	/* ─────────────────────────────────────────────
   TERMINAL INTAKE
   /professional/terminal.php
───────────────────────────────────────────── */

.terminal-page {
  min-height: 100vh;
  padding-top: 58px;
  background:
    radial-gradient(circle at top right, rgba(200,169,110,.18), transparent 34rem),
    linear-gradient(180deg, var(--g-xpale), var(--white));
}

.terminal-shell {
  max-width: 980px;
  margin: 0 auto;
  padding: 3rem 1.25rem 5rem;
}

.terminal-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--r-xl);
  box-shadow: 0 24px 70px rgba(61,90,62,.13);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.terminal-logo {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 2rem;
}

.terminal-logo img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 999px;
  background: var(--g-dark);
}

.terminal-logo strong {
  display: block;
  color: var(--g-dark);
  font-weight: 800;
  letter-spacing: .08em;
}

.terminal-logo span {
  display: block;
  color: var(--ink-60);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .15rem;
}

.terminal-card h1 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--ink);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.terminal-sub,
.terminal-confirm {
  color: var(--ink-60);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 720px;
  margin-bottom: 1.5rem;
}

.terminal-confirm {
  background: var(--g-xpale);
  border: 1px solid var(--g-pale);
  border-radius: var(--r-lg);
  padding: 1rem 1.25rem;
}

.terminal-confirm strong {
  display: block;
  color: var(--g-dark);
  font-size: 1.25rem;
  margin-top: .3rem;
}

.terminal-error,
.terminal-success {
  border-radius: var(--r-lg);
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
  font-weight: 700;
}

.terminal-error {
  background: #fff1f1;
  border: 1px solid #ffd1d1;
  color: #8a1f1f;
}

.terminal-success {
  background: #f4fbf3;
  border: 1px solid #cbe6c8;
  color: #245c2d;
}

.terminal-pin-form {
  max-width: 420px;
}

.terminal-pin-form label,
.terminal-form label {
  display: block;
  font-size: .74rem;
  font-weight: 800;
  color: var(--g);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .45rem;
}

.terminal-pin-form input {
  width: 100%;
  min-height: 72px;
  border: 1px solid rgba(0,0,0,.14);
  border-radius: var(--r-lg);
  padding: .8rem 1rem;
  font: inherit;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: .25em;
  text-align: center;
  color: var(--ink);
  background: var(--white);
  outline: none;
}

.terminal-pin-form input:focus,
.terminal-form input:focus,
.terminal-form select:focus,
.terminal-form textarea:focus {
  border-color: var(--g);
  box-shadow: 0 0 0 4px rgba(61,90,62,.08);
}

.terminal-pin-form button,
.terminal-submit-row button {
  width: 100%;
  min-height: 52px;
  margin-top: 1rem;
  border: 0;
  border-radius: var(--r);
  background: var(--g);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
  font-size: 1rem;
}

.terminal-section {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,.08);
}

.terminal-section h2 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.terminal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.terminal-full {
  grid-column: 1 / -1;
}

.terminal-form input,
.terminal-form select,
.terminal-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: var(--r);
  padding: .75rem .85rem;
  font: inherit;
  color: var(--ink);
  background: var(--white);
  outline: none;
}

.terminal-form textarea {
  min-height: 112px;
  resize: vertical;
}

.terminal-submit-row {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,.08);
}

@media (max-width: 760px) {
  .terminal-shell {
    padding: 2rem 1rem 4rem;
  }

  .terminal-grid {
    grid-template-columns: 1fr;
  }

  .terminal-pin-form input {
    font-size: 1.7rem;
  }
}

/* ─────────────────────────────────────────────
   PROFESSIONAL SHARED PANELS
───────────────────────────────────────────── */

.professional-page {
  padding-top: 58px;
  background:
    radial-gradient(circle at top right, rgba(200,169,110,.16), transparent 34rem),
    linear-gradient(180deg, var(--g-xpale), var(--white));
  min-height: 100vh;
}

.professional-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

.page-hero {
  background: linear-gradient(135deg, var(--g-dark), var(--g));
  border-radius: var(--r-xl);
  padding: 2.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(43,63,44,.18);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--gold);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  font-weight: 600;
}

.page-hero p {
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  max-width: 700px;
  margin: 0;
}

.page-actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .8rem 1rem;
  border-radius: var(--r);
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
}

.page-btn.primary {
  background: var(--gold);
  color: var(--g-dark);
}

.page-btn.secondary {
    background: rgb(61 90 62);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .18);
}

.page-btn:hover {
  transform: translateY(-2px);
}

.filter-panel,
.content-panel {
  margin-top: 1.25rem;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  box-shadow: 0 16px 40px rgba(61,90,62,.08);
}

.filter-form {
  display: grid;
  gap: 1rem;
  align-items: end;
}

.filter-form-3 {
  grid-template-columns: minmax(0, 1fr) 220px auto;
}

.form-field label {
  display: block;
  font-size: .74rem;
  font-weight: 800;
  color: var(--g);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .45rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: var(--r);
  padding: .65rem .75rem;
  font: inherit;
  color: var(--ink);
  background: var(--white);
  outline: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--g);
  box-shadow: 0 0 0 4px rgba(61,90,62,.08);
}

.filter-submit {
  min-height: 44px;
  border: 0;
  border-radius: var(--r);
  background: var(--g);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
  padding: .65rem 1rem;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.panel-head h2 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1.15;
  margin: 0;
  font-weight: 600;
}

.muted {
  color: var(--ink-60);
  font-size: .86rem;
  line-height: 1.55;
}

.count-badge,
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: .35rem .75rem;
  border-radius: 999px;
  background: var(--g-pale);
  color: var(--g-dark);
  font-size: .78rem;
  font-weight: 800;
  white-space: nowrap;
}

.status-pill.draft {
  background: #eef0f2;
  color: #50565c;
}

.status-pill.submitted {
  background: #fff8e8;
  color: #7b5a12;
}

.status-pill.reviewed {
  background: #eef7ee;
  color: #245c2d;
}

.status-pill.archived {
  background: #f1f1f1;
  color: #666;
}

.error-box {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: var(--r-lg);
  background: #fff1f1;
  border: 1px solid #ffd1d1;
  color: #8a1f1f;
}

.empty-state {
  padding: 1.25rem;
  border-radius: var(--r-lg);
  background: var(--g-xpale);
  color: var(--ink-60);
  line-height: 1.65;
}

/* ─────────────────────────────────────────────
   INTAKES OVERVIEW
───────────────────────────────────────────── */

.intake-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.intake-card {
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--r-xl);
  background: var(--g-xpale);
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
}

.intake-card::after {
  content: '';
  position: absolute;
  right: -30px;
  top: -30px;
  width: 90px;
  height: 90px;
  border-radius: 999px;
  background: rgba(200,169,110,.18);
}

.intake-card-inner {
  position: relative;
  z-index: 1;
}

.intake-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.intake-top h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  line-height: 1.1;
  color: var(--ink);
  margin: 0;
  font-weight: 600;
}

.intake-top p {
  color: var(--ink-60);
  font-size: .82rem;
  line-height: 1.5;
  margin-top: .25rem;
}

.intake-main-complaint {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--r-lg);
  padding: 1rem;
  margin-bottom: 1rem;
}

.intake-main-complaint span {
  display: block;
  color: var(--g);
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .35rem;
}

.intake-main-complaint strong {
  color: var(--ink);
  line-height: 1.5;
}

.intake-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: .55rem;
}

.detail-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: .75rem;
  font-size: .86rem;
  line-height: 1.5;
}

.detail-label {
  color: var(--g);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .68rem;
}

.detail-value {
  color: var(--ink);
  min-width: 0;
  word-break: break-word;
}

.intake-actions {
  margin-top: 1.25rem;
}

@media (max-width: 920px) {
  .professional-shell {
    padding: 2rem 1rem 4rem;
  }

  .page-hero {
    padding: 2rem 1.25rem;
  }

  .filter-form-3,
  .intake-grid {
    grid-template-columns: 1fr;
  }

  .panel-head,
  .intake-top {
    flex-direction: column;
  }

  .detail-row {
    grid-template-columns: 1fr;
    gap: .15rem;
  }
}

/* ─────────────────────────────────────────────
   INTAKE VIEW
───────────────────────────────────────────── */

.success-box {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: var(--r-lg);
  background: #f4fbf3;
  border: 1px solid #cbe6c8;
  color: #245c2d;
  line-height: 1.6;
  font-weight: 700;
}

.intake-view-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.intake-view-card {
  background: var(--g-xpale);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--r-lg);
  padding: 1rem;
}

.intake-view-card-highlight {
  grid-column: span 2;
  background: var(--white);
  border-color: rgba(200,169,110,.45);
}

.intake-view-label {
  display: block;
  color: var(--g);
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .4rem;
}

.intake-view-card strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.5;
}

.detail-list {
  display: grid;
  gap: .7rem;
}

.preserve-text {
  white-space: pre-wrap;
}

.pathway-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: end;
  margin-top: 1rem;
}

.selected-pathways {
  display: grid;
  gap: .8rem;
  margin-bottom: 1.25rem;
}

.selected-pathway-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: var(--g-xpale);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--r-lg);
  padding: 1rem;
}

.selected-pathway-card strong {
  display: block;
  color: var(--ink);
  font-weight: 800;
}

.selected-pathway-card span {
  display: block;
  color: var(--ink-60);
  font-size: .82rem;
  line-height: 1.5;
  margin-top: .2rem;
}

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

  .intake-view-card-highlight {
    grid-column: auto;
  }

  .pathway-form {
    grid-template-columns: 1fr;
  }

  .selected-pathway-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ─────────────────────────────────────────────
   MEDICAL RECORD
───────────────────────────────────────────── */

.medical-intake-summary {
  background: var(--g-xpale);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--r-lg);
  padding: 1.25rem;
}

.medical-intake-summary h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1rem;
}

.medical-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.medical-summary-grid div {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--r);
  padding: .9rem;
}

.medical-summary-grid span {
  display: block;
  color: var(--g);
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .35rem;
}

.medical-summary-grid strong {
  display: block;
  color: var(--ink);
  line-height: 1.45;
}

.medical-step-list {
  display: grid;
  gap: 1rem;
}

.medical-step-card {
  background: var(--g-xpale);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--r-xl);
  padding: 1.25rem;
}

.medical-step-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.medical-step-head h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: .25rem;
}

.medical-step-head p {
  color: var(--ink-60);
  font-size: .86rem;
  line-height: 1.55;
}

.medical-step-fields {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 1rem;
}

.medical-step-fields textarea {
  min-height: 80px;
  resize: vertical;
}

.medical-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.medical-full {
  grid-column: 1 / -1;
}

.medical-record-form textarea {
  min-height: 120px;
  resize: vertical;
}

.medical-submit-row {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0,0,0,.08);
}

.medical-lock-form {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0,0,0,.08);
}

.medical-lock-form button {
  min-height: 44px;
  border: 0;
  border-radius: var(--r);
  background: #8a1f1f;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  padding: .75rem 1rem;
}

.status-pill.pending {
  background: #eef0f2;
  color: #50565c;
}

.status-pill.discussed {
  background: #fff8e8;
  color: #7b5a12;
}

.status-pill.completed,
.status-pill.active {
  background: #eef7ee;
  color: #245c2d;
}

.status-pill.skipped {
  background: #f1f1f1;
  color: #666;
}

.status-pill.locked {
  background: #eef0f2;
  color: #50565c;
}

@media (max-width: 920px) {
  .medical-summary-grid,
  .medical-step-fields,
  .medical-form-grid {
    grid-template-columns: 1fr;
  }

  .medical-step-head {
    flex-direction: column;
  }
}

/* ─────────────────────────────────────────────
   TERMINAL LOCAL PREFILL
───────────────────────────────────────────── */

.terminal-notice {
  border-radius: var(--r-lg);
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
  font-weight: 700;
  background: #fff8e8;
  border: 1px solid #ead8a8;
  color: #7b5a12;
}

.terminal-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.terminal-section-head h2 {
  margin-bottom: .35rem;
}

.terminal-section-head p {
  color: var(--ink-60);
  font-size: .9rem;
  line-height: 1.55;
  max-width: 520px;
}

.terminal-secondary-btn {
  border: 1px solid var(--g);
  border-radius: var(--r);
  background: var(--white);
  color: var(--g);
  font-weight: 800;
  cursor: pointer;
  min-height: 44px;
  padding: .7rem 1rem;
  white-space: nowrap;
}

.terminal-secondary-btn:hover {
  background: var(--g-xpale);
}

@media (max-width: 760px) {
  .terminal-section-head {
    flex-direction: column;
  }

  .terminal-secondary-btn {
    width: 100%;
    white-space: normal;
  }
}

/* ─────────────────────────────────────────────
   PROFESSIONAL TABLE / AGENDA FIX
───────────────────────────────────────────── */

.table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(21, 88, 88, .14);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(0, 0, 0, .06);
  margin-top: 1rem;
}

.professional-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  background: #ffffff;
}

.professional-table thead th {
  background: #f3f8f6;
  color: #0f4040;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .045em;
  text-align: left;
  padding: .95rem 1rem;
  border-bottom: 1px solid rgba(21, 88, 88, .16);
  white-space: nowrap;
}

.professional-table tbody td {
  padding: 1rem;
  border-bottom: 1px solid rgba(21, 88, 88, .10);
  color: #111714;
  font-size: .94rem;
  line-height: 1.45;
  vertical-align: top;
}

.professional-table tbody tr:last-child td {
  border-bottom: 0;
}

.professional-table tbody tr:hover td {
  background: rgba(21, 88, 88, .035);
}

.professional-table strong {
  color: #111714;
  font-weight: 850;
}

.professional-table .muted,
.professional-table span.muted {
  display: inline-block;
  margin-top: .2rem;
  color: rgba(17, 23, 20, .58);
  font-size: .84rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: .25rem .7rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  border: 1px solid rgba(21, 88, 88, .15);
  background: #e5f1ee;
  color: #3d5a3e;
}

.status-pill.planned {
  background: #e8f4ff;
  color: #15527a;
  border-color: #bddcf2;
}

.status-pill.confirmed {
  background: #e7f8ef;
  color: #0f6b37;
  border-color: #bfe8d0;
}

.status-pill.completed {
  background: #eef0f2;
  color: #39424c;
  border-color: #d7dde2;
}

.status-pill.warning {
  color: #39424c;
  border-color: #d7dde2;
}
.status-pill.cancelled {
  background: #fff0f0;
  color: #9a1f1f;
  border-color: #ffd0d0;
}

.status-pill.no_show {
  background: #fff7e5;
  color: #8a5a00;
  border-color: #ead197;
}

/* Referentie en bron beter leesbaar */
.professional-table td:nth-child(5) {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: .86rem;
  color: #0f4040;
  white-space: nowrap;
}

.professional-table td:nth-child(6) {
  color: rgba(17, 23, 20, .62);
  font-size: .86rem;
  white-space: nowrap;
}

/* Mobiel */
@media (max-width: 760px) {
  .table-wrap {
    border-radius: 14px;
  }

  .professional-table {
    min-width: 760px;
  }

  .professional-table thead th,
  .professional-table tbody td {
    padding: .8rem;
    font-size: .86rem;
  }
}

/* ─────────────────────────────────────────────
   PROFESSIONAL FILTER GRID - FIX BINNEN BLOK
───────────────────────────────────────────── */

.filter-grid {
  display: grid;
  grid-template-columns: 170px 170px 190px 140px;
  gap: 1rem;
  align-items: end;

  width: fit-content;
  max-width: 100%;

  margin: 1.25rem 0 2rem;
  padding: 1.15rem;

  border: 1px solid rgba(21, 88, 88, .14);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .05);
  overflow: visible;
}

.filter-grid > div {
  min-width: 0;
}

.filter-grid label {
  display: block;
  margin: 0 0 .45rem;
  color: rgba(17, 23, 20, .68);
  font-size: .82rem;
  font-weight: 900;
  line-height: 1.2;
}

.filter-grid input,
.filter-grid select {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(21, 88, 88, .18);
  border-radius: 14px;
  background: #fdfefe;
  color: #111714;
  padding: 0 .9rem;
  font: inherit;
  font-size: .94rem;
  outline: none;
}

.filter-grid input:focus,
.filter-grid select:focus {
  border-color: #3d5a3e;
  box-shadow: 0 0 0 4px rgba(21, 88, 88, .10);
  background: #ffffff;
}

.filter-submit-wrap {
  display: flex;
  align-items: end;
}

.filter-submit {
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: #3d5a3e;
  color: #ffffff;
  font-weight: 900;
  font-size: .95rem;
  cursor: pointer;
  padding: 0 1rem;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(21, 88, 88, .18);
}

.filter-submit:hover {
  background: #0f4040;
}

.filter-submit:active {
  transform: translateY(1px);
}

@media (max-width: 900px) {
  .filter-grid {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .filter-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .filter-submit {
    width: 100%;
  }
}

/* ─────────────────────────────────────────────
   AGENDA FILTER DEFINITIEVE FIX
   /professional/agenda.php
───────────────────────────────────────────── */

.professional-page .content-panel > form.filter-form {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
}

.professional-page .content-panel > form.filter-form .filter-grid {
  display: grid !important;
  grid-template-columns: 170px 170px 220px minmax(240px, 1fr) 140px !important;
  gap: 1rem !important;
  align-items: end !important;

  width: 100% !important;
  max-width: 100% !important;

  margin: 1.25rem 0 2rem !important;
  padding: 1.15rem !important;

  border: 1px solid rgba(21, 88, 88, .14) !important;
  border-radius: 18px !important;
  background: #ffffff !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .05) !important;
  overflow: visible !important;
}

.professional-page .filter-grid > div {
  min-width: 0 !important;
}

.professional-page .filter-grid label {
  display: block !important;
  margin: 0 0 .45rem !important;
  color: rgba(17, 23, 20, .68) !important;
  font-size: .82rem !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
}

.professional-page .filter-grid input,
.professional-page .filter-grid select {
  width: 100% !important;
  height: 48px !important;
  border: 1px solid rgba(21, 88, 88, .18) !important;
  border-radius: 14px !important;
  background: #fdfefe !important;
  color: #111714 !important;
  padding: 0 .9rem !important;
  font: inherit !important;
  font-size: .94rem !important;
  outline: none !important;
}

.professional-page .filter-grid input:focus,
.professional-page .filter-grid select:focus {
  border-color: #3d5a3e !important;
  box-shadow: 0 0 0 4px rgba(21, 88, 88, .10) !important;
  background: #ffffff !important;
}

.professional-page .filter-submit-wrap {
  display: flex !important;
  align-items: end !important;
  width: 100% !important;
}

.professional-page .filter-submit {
  width: 100% !important;
  height: 48px !important;
  min-height: 48px !important;
  border: 0 !important;
  border-radius: 14px !important;
  background: #3d5a3e !important;
  color: #ffffff !important;
  font-weight: 900 !important;
  font-size: .95rem !important;
  cursor: pointer !important;
  padding: 0 1rem !important;
  white-space: nowrap !important;
  box-shadow: 0 10px 24px rgba(21, 88, 88, .18) !important;
}

.professional-page .filter-submit:hover {
  background: #0f4040 !important;
}

.professional-page .content-panel > form.filter-form .filter-grid {
  box-sizing: border-box !important;
}

.professional-page .content-panel > form.filter-form .filter-grid > div {
  box-sizing: border-box !important;
}

.professional-page .filter-submit-wrap {
  min-width: 0 !important;
}

.professional-page .filter-submit {
  max-width: 100% !important;
}


@media (max-width: 1100px) {
  .professional-page .content-panel > form.filter-form .filter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .professional-page .filter-submit-wrap {
    grid-column: span 2 !important;
  }
}

@media (max-width: 640px) {
  .professional-page .content-panel > form.filter-form .filter-grid {
    grid-template-columns: 1fr !important;
  }

  .professional-page .filter-submit-wrap {
    grid-column: auto !important;
  }
}

@media (max-width: 900px) {
  .professional-page .content-panel > form.filter-form .filter-grid {
    width: 100% !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 560px) {
  .professional-page .content-panel > form.filter-form .filter-grid {
    grid-template-columns: 1fr !important;
    padding: 1rem !important;
  }
}

/* ─────────────────────────────────────────────
   BOOKINGS SEARCH FILTER
   /professional/bookings.php
───────────────────────────────────────────── */

.professional-page .content-panel .filter-form {
  display: block;
  width: 100%;
  margin: 1.25rem 0 2rem;
}

.professional-page .content-panel .filter-grid {
  display: grid;
  grid-template-columns: minmax(260px, 420px) 150px 150px;
  gap: 1rem;
  align-items: end;

  width: fit-content;
  max-width: 100%;

  padding: 1rem;
  border: 1px solid rgba(21, 88, 88, .14);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .05);
}

.professional-page .content-panel .filter-grid > div {
  min-width: 0;
}

.professional-page .content-panel .filter-grid label {
  display: block;
  margin: 0 0 .45rem;
  color: rgba(17, 23, 20, .68);
  font-size: .82rem;
  font-weight: 900;
  line-height: 1.2;
}

.professional-page .content-panel .filter-grid input[type="text"] {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(21, 88, 88, .18);
  border-radius: 14px;
  background: #fdfefe;
  color: #111714;
  padding: 0 .95rem;
  font: inherit;
  font-size: .94rem;
  outline: none;
}

.professional-page .content-panel .filter-grid input[type="text"]:focus {
  border-color: #3d5a3e;
  box-shadow: 0 0 0 4px rgba(21, 88, 88, .10);
  background: #ffffff;
}

.professional-page .content-panel .filter-submit-wrap {
  display: flex;
  align-items: end;
}

.professional-page .content-panel .filter-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 48px;
  min-height: 48px;

  border: 0;
  border-radius: 14px;
  background: #3d5a3e;
  color: #ffffff;

  font: inherit;
  font-size: .95rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;

  padding: 0 1rem;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(21, 88, 88, .18);
}

.professional-page .content-panel .filter-submit:hover {
  background: #0f4040;
  color: #ffffff;
}

.professional-page .content-panel .filter-submit:active {
  transform: translateY(1px);
}

@media (max-width: 760px) {
  .professional-page .content-panel .filter-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .professional-page .content-panel .filter-submit {
    width: 100%;
  }
}

/* ─────────────────────────────────────────────
   BOOKINGS SEARCH + ACTION BUTTONS
   /professional/bookings.php
───────────────────────────────────────────── */

.booking-search-form {
  display: block;
  width: 100%;
  margin: 1.25rem 0 2rem;
}

.booking-search-grid {
  display: grid;
  grid-template-columns: minmax(260px, 420px) 150px 150px;
  gap: 1rem;
  align-items: end;

  width: fit-content;
  max-width: 100%;

  padding: 1rem;
  border: 1px solid rgba(21, 88, 88, .14);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .05);
}

.booking-search-grid > div {
  min-width: 0;
}

.booking-search-grid label {
  display: block;
  margin: 0 0 .45rem;
  color: rgba(17, 23, 20, .68);
  font-size: .82rem;
  font-weight: 900;
  line-height: 1.2;
}

.booking-search-grid input[type="text"] {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(21, 88, 88, .18);
  border-radius: 14px;
  background: #fdfefe;
  color: #111714;
  padding: 0 .95rem;
  font: inherit;
  font-size: .94rem;
  outline: none;
}

.booking-search-grid input[type="text"]:focus {
  border-color: #155858;
  box-shadow: 0 0 0 4px rgba(21, 88, 88, .10);
  background: #ffffff;
}

.booking-search-grid .filter-submit-wrap {
  display: flex;
  align-items: end;
}

.booking-search-grid .filter-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 48px;
  min-height: 48px;

  border: 0;
  border-radius: 14px;
  background: #155858;
  color: #ffffff;

  font: inherit;
  font-size: .95rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;

  padding: 0 1rem;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(21, 88, 88, .18);
}

.booking-search-grid .filter-submit:hover {
  background: #0f4040;
  color: #ffffff;
}

.booking-search-grid .filter-submit:active {
  transform: translateY(1px);
}

.booking-search-grid .reset-link {
  background: #ffffff;
  color: #155858;
  border: 1px solid rgba(21, 88, 88, .18);
  box-shadow: none;
}

.booking-search-grid .reset-link:hover {
  background: #f3f8f6;
  color: #155858;
}

/* Actieregel onder elke boeking */
.bookings-table .booking-action-row td {
  background: #f8fbf9;
  border-bottom: 1px solid rgba(21, 88, 88, .14);
  padding-top: .75rem;
  padding-bottom: .9rem;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  align-items: center;
}

.booking-actions .page-btn {
  min-height: 38px;
  padding: .55rem .85rem;
  font-size: .82rem;
}

@media (max-width: 760px) {
  .booking-search-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .booking-search-grid .filter-submit {
    width: 100%;
  }

  .booking-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .booking-actions .page-btn {
    width: 100%;
  }
}

.page-btn.danger {
  background: #8f1d1d;
  color: #ffffff;
  border-color: rgba(143, 29, 29, .35);
}

.page-btn.danger:hover {
  background: #6f1515;
  color: #ffffff;
}

.booking-actions form {
  display: inline-flex;
  margin: 0;
}

.page-btn.danger {
  background: #8f1d1d;
  color: #ffffff;
  border-color: rgba(143, 29, 29, .35);
}

.page-btn.danger:hover {
  background: #6f1515;
  color: #ffffff;
}

/* ==========================================================
   Professional dashboard process sections
   Voor:
   - .stats-grid.process-stats
   - .content-panel
   - .appointment-card-list
   - .appointment-card
   ========================================================== */

.process-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 22px;
}

.process-stats .stat-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 108px;
  padding: 18px 16px;
  border-radius: 20px;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(246,250,248,.95));
  border: 1px solid rgba(21,88,88,.14);
  box-shadow: 0 14px 36px rgba(17,23,20,.08);
  color: var(--ink, #111714);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.process-stats .stat-card:hover {
  transform: translateY(-2px);
  border-color: rgba(21,88,88,.35);
  box-shadow: 0 18px 44px rgba(17,23,20,.12);
}

.process-stats .stat-card span {
  display: block;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 800;
  color: var(--ink-60, rgba(17,23,20,.60));
}

.process-stats .stat-card strong {
  display: block;
  margin-top: 14px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.04em;
  color: var(--g, #155858);
}

/* Content panel */

.content-panel {
  margin: 20px 0;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(21,88,88,.12);
  box-shadow: 0 16px 46px rgba(17,23,20,.08);
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 16px;
}

.panel-head h2 {
  margin: 0 0 6px;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -0.03em;
  color: var(--ink, #111714);
}

.panel-head p {
  margin: 0;
}

/* Appointment cards */

.appointment-card-list {
  display: grid;
  gap: 12px;
}

.appointment-card-list.compact {
  gap: 10px;
}

.appointment-card {
  padding: 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(250,248,244,.78));
  border: 1px solid rgba(17,23,20,.10);
  box-shadow: 0 10px 28px rgba(17,23,20,.06);
}

.appointment-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}

.appointment-time {
  display: inline-flex;
  align-items: center;
  margin-bottom: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(21,88,88,.08);
  color: var(--g-dark, #0f4040);
  font-size: 13px;
  font-weight: 900;
}

.appointment-card h3 {
  margin: 0 0 6px;
  font-size: 20px;
  line-height: 1.18;
  font-weight: 950;
  color: var(--ink, #111714);
}

.appointment-card .small {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.appointment-side {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  min-width: 180px;
}

/* Status pills */

.status-pill,
.relation-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  font-weight: 950;
  white-space: nowrap;
  border: 1px solid rgba(21,88,88,.18);
}

.status-pill.planned {
  background: rgba(21,88,88,.10);
  color: var(--g-dark, #0f4040);
  border-color: rgba(21,88,88,.18);
}

.status-pill.confirmed {
  background: rgba(21,88,88,.14);
  color: var(--g-dark, #0f4040);
  border-color: rgba(21,88,88,.24);
}

.status-pill.reschedule_requested {
  background: rgba(184,126,25,.13);
  color: #80530d;
  border-color: rgba(184,126,25,.28);
}

.status-pill.cancel_requested {
  background: rgba(170,75,30,.13);
  color: #8a3517;
  border-color: rgba(170,75,30,.28);
}

.status-pill.cancelled {
  background: rgba(120,120,120,.13);
  color: rgba(17,23,20,.62);
  border-color: rgba(120,120,120,.22);
}

.status-pill.no_show {
  background: rgba(140,40,40,.12);
  color: #7d1f1f;
  border-color: rgba(140,40,40,.26);
}

/* Relation pills */

.relation-pill.self {
  background: rgba(21,88,88,.08);
  color: var(--g, #155858);
  border-color: rgba(21,88,88,.16);
}

.relation-pill.child {
  background: rgba(110,144,114,.14);
  color: #385f3e;
  border-color: rgba(110,144,114,.26);
}

.relation-pill.other {
  background: rgba(17,23,20,.07);
  color: rgba(17,23,20,.68);
  border-color: rgba(17,23,20,.12);
}

/* Responsive */

@media (max-width: 1180px) {
  .process-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .process-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .process-stats .stat-card {
    min-height: 94px;
    padding: 15px;
    border-radius: 18px;
  }

  .content-panel {
    padding: 14px;
    border-radius: 20px;
  }

  .appointment-main {
    display: grid;
    gap: 12px;
  }

  .appointment-side {
    justify-content: flex-start;
    min-width: 0;
  }
}

@media (max-width: 440px) {
  .process-stats {
    grid-template-columns: 1fr;
  }

  .appointment-card {
    padding: 14px;
  }

  .appointment-card h3 {
    font-size: 18px;
  }
}

/* ==========================================================
   Appointment card met pincode-formulier
   Voor:
   - .appointment-card
   - .appointment-main
   - .appointment-actions
   - staff_name input
   ========================================================== */

.appointment-card {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(246,250,248,.88));
  border: 1px solid rgba(21,88,88,.14);
  box-shadow: 0 14px 36px rgba(17,23,20,.08);
}

.appointment-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.appointment-main > div:first-child {
  min-width: 0;
}

.appointment-time {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(21,88,88,.09);
  border: 1px solid rgba(21,88,88,.14);
  color: var(--g-dark, #0f4040);
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
}

.appointment-card h3 {
  margin: 0 0 6px;
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.15;
  font-weight: 950;
  color: var(--ink, #111714);
  letter-spacing: -0.02em;
}

.appointment-card .muted.small {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-60, rgba(17,23,20,.60));
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  font-weight: 950;
  white-space: nowrap;
  border: 1px solid transparent;
}

.status-pill.reschedule_requested {
  background: rgba(184,126,25,.14);
  color: #80530d;
  border-color: rgba(184,126,25,.30);
}

.status-pill.cancel_requested {
  background: rgba(170,75,30,.14);
  color: #8a3517;
  border-color: rgba(170,75,30,.30);
}

.status-pill.planned {
  background: rgba(21,88,88,.10);
  color: var(--g-dark, #0f4040);
  border-color: rgba(21,88,88,.20);
}

.status-pill.confirmed {
  background: rgba(21,88,88,.14);
  color: var(--g-dark, #0f4040);
  border-color: rgba(21,88,88,.26);
}

.status-pill.cancelled {
  background: rgba(120,120,120,.13);
  color: rgba(17,23,20,.62);
  border-color: rgba(120,120,120,.22);
}

/* Formulier onder appointment-card */

.appointment-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(17,23,20,.09);
}

.appointment-actions input[type="text"],
.appointment-actions input[type="email"],
.appointment-actions input[type="tel"],
.appointment-actions input[type="date"],
.appointment-actions input[type="time"],
.appointment-actions select,
.appointment-actions textarea {
  min-height: 44px;
  min-width: 240px;
  flex: 1 1 240px;
  padding: 11px 13px;
  border-radius: 14px;
  border: 1px solid rgba(17,23,20,.14);
  background: rgba(255,255,255,.92);
  color: var(--ink, #111714);
  font-size: 14px;
  font-weight: 700;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}

.appointment-actions input::placeholder,
.appointment-actions textarea::placeholder {
  color: rgba(17,23,20,.42);
  font-weight: 650;
}

.appointment-actions input:focus,
.appointment-actions select:focus,
.appointment-actions textarea:focus {
  border-color: rgba(21,88,88,.45);
  box-shadow: 0 0 0 4px rgba(21,88,88,.12);
}

.appointment-actions .page-btn {
  min-height: 44px;
  border-radius: 14px;
  padding: 11px 16px;
  font-weight: 950;
  white-space: nowrap;
}

.appointment-actions .page-btn.primary {
  background: var(--g, #155858);
  color: #fff;
  border: 1px solid rgba(21,88,88,.28);
  box-shadow: 0 10px 24px rgba(21,88,88,.18);
}

.appointment-actions .page-btn.primary:hover {
  filter: brightness(.96);
  transform: translateY(-1px);
}

.appointment-actions .page-btn.secondary {
  background: rgba(255,255,255,.82);
  color: var(--g-dark, #0f4040);
  border: 1px solid rgba(21,88,88,.18);
}

/* Compacte variant */

.appointment-card-list.compact .appointment-card {
  padding: 16px;
  border-radius: 20px;
}

.appointment-card-list.compact .appointment-actions {
  padding-top: 12px;
}

/* Mobiel */

@media (max-width: 760px) {
  .appointment-main {
    display: grid;
    gap: 12px;
  }

  .appointment-main .status-pill {
    width: fit-content;
  }

  .appointment-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .appointment-actions input[type="text"],
  .appointment-actions input[type="email"],
  .appointment-actions input[type="tel"],
  .appointment-actions input[type="date"],
  .appointment-actions input[type="time"],
  .appointment-actions select,
  .appointment-actions textarea,
  .appointment-actions .page-btn {
    width: 100%;
    min-width: 0;
  }
}

.review-form,.settings-form{display:grid;gap:16px}.review-grid,.settings-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.review-card,.settings-card{border:1px solid rgba(21,88,88,.14);border-radius:22px;background:rgba(255,255,255,.9);padding:18px;box-shadow:0 14px 36px rgba(17,23,20,.07)}.review-card textarea,.settings-card input,.settings-card select,.review-card input,.review-card select{width:100%;min-height:44px;border-radius:14px;border:1px solid rgba(17,23,20,.14);padding:10px 12px;font:inherit}.review-card textarea{min-height:120px}.fee-box{border-left:4px solid #80530d;background:rgba(184,126,25,.10);border-radius:14px;padding:12px}.free-box{border-left:4px solid #155858;background:rgba(21,88,88,.08);border-radius:14px;padding:12px}.status-pill.intake-submitted,.status-pill.fee-unpaid{background:rgba(184,126,25,.14);color:#80530d;border-color:rgba(184,126,25,.30)}.payment-notice{margin-top:10px;border-radius:14px;padding:12px;background:rgba(184,126,25,.12);font-weight:800}@media(max-width:760px){.review-grid,.settings-grid{grid-template-columns:1fr}}

/* Filterpanel agenda/bookings breder maken */

.filter-form {
  width: 100%;
  max-width: none;
}

.filter-grid.booking-search-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 180px 180px 220px minmax(320px, 1fr) 140px;
  gap: 14px;
  align-items: end;
}

.booking-search-grid input,
.booking-search-grid select {
  width: 100%;
}

.booking-search-grid #q {
  min-width: 100%;
}

.filter-submit-wrap {
  display: flex;
  align-items: end;
}

.filter-submit-wrap .filter-submit {
  width: 100%;
  min-height: 44px;
}

/* Tablet */
@media (max-width: 1100px) {
  .filter-grid.booking-search-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filter-submit-wrap {
    grid-column: span 2;
  }
}

/* Mobiel */
@media (max-width: 640px) {
  .filter-grid.booking-search-grid {
    grid-template-columns: 1fr;
  }

  .filter-submit-wrap {
    grid-column: auto;
  }
}

.page-btn.disabled-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1.1rem;
  border-radius: 14px;
  border: 1px dashed rgba(17,23,20,.22);
  background: rgba(17,23,20,.04);
  color: rgba(17,23,20,.48);
  font-weight: 900;
  cursor: not-allowed;
  box-shadow: none;
}

  .reception-pin-panel {
    display: grid;
    gap: 20px;
  }

  .pin-display-card {
    display: grid;
    justify-items: center;
    text-align: center;
    padding: clamp(28px, 5vw, 56px);
    border-radius: 30px;
    background:
      radial-gradient(circle at top, rgba(21,88,88,.18), transparent 45%),
      linear-gradient(180deg, rgba(255,255,255,.98), rgba(246,250,248,.92));
    border: 1px solid rgba(21,88,88,.16);
    box-shadow: 0 24px 70px rgba(17,23,20,.12);
  }

  .pin-label {
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(17,23,20,.58);
    font-size: 13px;
    margin-bottom: 12px;
  }

  .pin-code-xl {
		display: block;
		margin-top: 14px;
		font-size: clamp(28px, 3vw, 42px);
		line-height: 1;
		font-weight: 950;
		letter-spacing: -0.04em;
		color: var(--g, #155858);
	}

  .pin-valid-until {
    margin-top: 18px;
    font-weight: 900;
    color: rgba(17,23,20,.65);
  }

  .reception-selected-appointment {
    margin: 0;
  }

/* ==========================================================
   Chimedics intake-terminal
   ========================================================== */

.content-panel .terminal-pin-form {
  display: grid;
  gap: 16px;
  max-width: 420px;
  margin-top: 22px;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(246,250,248,.92));
  border: 1px solid rgba(21,88,88,.14);
  box-shadow: 0 18px 48px rgba(17,23,20,.08);
}

.content-panel:has(.terminal-pin-form) {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.content-panel:has(.terminal-pin-form) h1 {
  margin: 0 0 8px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.04em;
  color: var(--ink, #111714);
}

.terminal-pin-form label {
  display: block;
  text-align: left;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(17,23,20,.62);
}

.terminal-pin-form input[name="pin_code"] {
  width: 100%;
  height: 76px;
  border-radius: 18px;
  border: 1px solid rgba(21,88,88,.20);
  background: #ffffff;
  color: var(--g, #155858);
  text-align: center;
  font-size: clamp(34px, 6vw, 52px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: .22em;
  padding: 0 18px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}

.terminal-pin-form input[name="pin_code"]:focus {
  border-color: rgba(21,88,88,.55);
  box-shadow: 0 0 0 5px rgba(21,88,88,.12);
}

.terminal-pin-form .page-btn.primary {
  width: 100%;
  min-height: 54px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 950;
  background: var(--g, #155858);
  color: #fff;
  box-shadow: 0 14px 30px rgba(21,88,88,.18);
}

.terminal-pin-form .page-btn.primary:hover {
  background: #0f4040;
  transform: translateY(-1px);
}

@media (max-width: 560px) {
  .content-panel .terminal-pin-form {
    max-width: 100%;
    padding: 18px;
  }

  .terminal-pin-form input[name="pin_code"] {
    height: 66px;
    font-size: 38px;
  }
}

/* /professional/css/intake-terminal.css */

.intake-terminal-page {
  background:
    radial-gradient(circle at top left, rgba(21, 88, 88, .10), transparent 34%),
    linear-gradient(180deg, #f8fbfa, #eef5f2);
}

.intake-terminal-shell {
  max-width: 1100px;
}

.terminal-pin-panel,
.terminal-intake-panel,
.terminal-success-panel {
  border-radius: 30px;
}

.terminal-pin-screen {
  display: grid;
  gap: 24px;
  max-width: 520px;
  margin: 0 auto;
  padding: 28px 0;
  text-align: center;
}

.terminal-pin-screen h1,
.terminal-form-head h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -.055em;
  color: var(--ink, #111714);
}

.terminal-pin-screen p,
.terminal-form-head p {
  margin: 10px 0 0;
  color: rgba(17, 23, 20, .68);
  font-weight: 650;
  line-height: 1.55;
}

.terminal-pin-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(21, 88, 88, .14);
  background: linear-gradient(180deg, #fff, #f6faf8);
  box-shadow: 0 18px 46px rgba(17, 23, 20, .08);
}

.terminal-pin-form label,
.terminal-form-section label {
  display: block;
  color: rgba(17, 23, 20, .68);
  font-size: .86rem;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 7px;
}

.terminal-pin-form input[name="pin_code"] {
  width: 100%;
  height: 58px;
  border: 1px solid rgba(21, 88, 88, .18);
  border-radius: 16px;
  background: #fff;
  color: var(--g, #155858);
  padding: 0 .9rem;
  text-align: center;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.04em;
  outline: none;
}

.terminal-pin-form input[name="pin_code"]:focus {
  border-color: #3d5a3e;
  box-shadow: 0 0 0 4px rgba(21, 88, 88, .10);
}

.terminal-intake-form {
  display: grid;
  gap: 22px;
}

.terminal-form-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 22px;
  align-items: stretch;
  margin-bottom: 6px;
}

.terminal-patient-card {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(21, 88, 88, .14);
  background: rgba(21, 88, 88, .045);
}

.terminal-patient-card strong {
  display: block;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.04em;
  color: var(--g, #155858);
}

.terminal-patient-card span {
  color: rgba(17, 23, 20, .66);
  font-weight: 750;
}

.terminal-form-section {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(21, 88, 88, .12);
  background: #fff;
  box-shadow: 0 12px 34px rgba(17, 23, 20, .045);
}

.terminal-form-section h2 {
  margin: 0;
  font-size: clamp(23px, 2.4vw, 34px);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -.04em;
  color: var(--ink, #111714);
}

.terminal-form-section h3 {
  margin: 8px 0 0;
  font-size: 1.02rem;
  font-weight: 950;
  color: rgba(17, 23, 20, .82);
}

.terminal-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.terminal-form-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.terminal-form-grid .wide {
  grid-column: 1 / -1;
}

.terminal-form-section input,
.terminal-form-section select,
.terminal-form-section textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(21, 88, 88, .18);
  border-radius: 14px;
  background: #fdfefe;
  color: #111714;
  padding: 0 .9rem;
  font: inherit;
  font-size: .95rem;
  outline: none;
}

.terminal-form-section input,
.terminal-form-section select {
  height: 48px;
}

.terminal-form-section textarea {
  min-height: 110px;
  padding-top: .85rem;
  resize: vertical;
}

.terminal-form-section input:focus,
.terminal-form-section select:focus,
.terminal-form-section textarea:focus {
  border-color: #3d5a3e;
  box-shadow: 0 0 0 4px rgba(21, 88, 88, .10);
  background: #fff;
}

.terminal-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.terminal-check-grid label,
.terminal-consent-box label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 13px;
  border-radius: 15px;
  background: rgba(21, 88, 88, .045);
  border: 1px solid rgba(21, 88, 88, .08);
  color: rgba(17, 23, 20, .74);
  font-weight: 800;
  cursor: pointer;
  margin: 0;
}

.terminal-check-grid input,
.terminal-consent-box input {
  width: auto;
  height: auto;
  margin-top: 3px;
  accent-color: var(--g, #155858);
}

.terminal-consent-section p {
  margin: 0;
  color: rgba(17, 23, 20, .68);
  font-weight: 650;
  line-height: 1.55;
}

.terminal-consent-box {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 20px;
  background: #f6faf8;
  border: 1px solid rgba(21, 88, 88, .14);
}

.terminal-submit-section {
  text-align: center;
  justify-items: center;
  background: linear-gradient(180deg, #fff, rgba(246, 250, 248, .96));
}

.terminal-submit-section p {
  margin: 0;
  color: rgba(17, 23, 20, .68);
  font-weight: 650;
}

.terminal-submit-btn {
  width: min(100%, 380px);
  min-height: 54px;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 950;
}

.terminal-success-panel {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 12px;
  max-width: 620px;
  margin: 40px auto;
  padding: 34px;
  background: linear-gradient(180deg, #ffffff, #f6faf8);
  border: 1px solid rgba(21, 88, 88, .16);
  box-shadow: 0 20px 60px rgba(17, 23, 20, .10);
  color: var(--g, #155858);
}

.terminal-success-panel strong {
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.terminal-success-panel span {
  color: rgba(17, 23, 20, .68);
  font-weight: 800;
}

.terminal-countdown {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: rgba(21, 88, 88, .10);
  color: var(--g, #155858) !important;
  font-size: 28px;
  font-weight: 950;
}

@media (max-width: 900px) {
  .terminal-form-head,
  .terminal-form-grid,
  .terminal-form-grid.four,
  .terminal-check-grid {
    grid-template-columns: 1fr;
  }
}

/* Pincodeblok exact centreren */
.terminal-pin-panel {
  display: flex;
  align-items: center;
  justify-content: center;
}

.terminal-pin-screen {
  width: 100%;
  max-width: 520px;
  margin-left: auto !important;
  margin-right: auto !important;
  justify-items: center;
}

.terminal-pin-form {
  width: 100%;
  max-width: 420px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.terminal-pin-form input[name="pin_code"],
.terminal-pin-form .page-btn {
  width: 100%;
}

.page-btn.dossier-btn {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: #111714 !important;
}

.page-btn.dossier-btn:hover {
  filter: brightness(.94);
}

.inline-action-form {
  display: inline-flex;
  margin: 0;
  padding: 0;
}

.inline-action-form .page-btn {
  width: auto;
}

.inline-action-form {
  display: inline-flex;
  margin: 0;
  padding: 0;
}

.inline-action-form .page-btn {
  width: auto;
}

.page-btn.dossier-btn {
  background: var(--gold, #d6ad62) !important;
  border-color: var(--gold, #d6ad62) !important;
  color: #111714 !important;
}

.page-btn.dossier-btn:hover {
  filter: brightness(.94);
}

@media (max-width: 720px) {
  .inline-action-form,
  .inline-action-form .page-btn {
    width: 100%;
  }
}

.customers-search-grid {
  grid-template-columns: minmax(320px, 1fr) 140px !important;
  width: 100% !important;
}

.inline-action-form {
  display: inline-flex;
  margin: 0;
  padding: 0;
}

.inline-action-form .page-btn {
  width: auto;
}

.page-btn.dossier-btn {
  background: var(--gold, #d6ad62) !important;
  border-color: var(--gold, #d6ad62) !important;
  color: #111714 !important;
}

.page-btn.dossier-btn:hover {
  filter: brightness(.94);
}

@media (max-width: 720px) {
  .customers-search-grid {
    grid-template-columns: 1fr !important;
  }

  .inline-action-form,
  .inline-action-form .page-btn {
    width: 100%;
  }
}

/* Compactere typografie intake review header */

.intake-review-page .terminal-form-head h1 {
  font-size: clamp(18px, 2.2vw, 32px) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.045em !important;
}

.intake-review-page .terminal-form-head p {
  font-size: .94rem !important;
  line-height: 1.55 !important;
  font-weight: 650 !important;
}

.intake-review-page .terminal-form-head .page-eyebrow {
  font-size: .68rem !important;
  margin-bottom: 10px !important;
}

.intake-review-page .terminal-guardian-card strong {
  font-size: clamp(1.25rem, 1.8vw, 1.55rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.025em !important;
}

.intake-review-page .terminal-guardian-card span {
  font-size: .88rem !important;
  line-height: 1.35 !important;
  font-weight: 650 !important;
}

.intake-review-page .terminal-card-label {
  font-size: .66rem !important;
  padding: 5px 9px !important;
}

.intake-review-page .terminal-guardian-note {
  font-size: .78rem !important;
  line-height: 1.3 !important;
}

.intake-review-page .terminal-form-section h2 {
  font-size: clamp(1.35rem, 1.8vw, 1.75rem) !important;
  letter-spacing: -0.03em !important;
}

/* =========================================================
   Health Check Dossier - echte tabnavigatie
   ========================================================= */

.hcd-tabs {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 26px 0 0;
  padding: 0 18px;
  border-bottom: 1px solid rgba(21, 88, 88, 0.18);
  overflow-x: visible;
}

.hcd-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  margin: 0 3px -1px 0;
  border: 1px solid rgba(21, 88, 88, 0.16);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(180deg, #f7fbfa 0%, #edf5f3 100%);
  color: #315f5b;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.hcd-tab:hover {
  background: linear-gradient(180deg, #ffffff 0%, #f3faf8 100%);
  color: #155858;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(21, 88, 88, 0.08);
}

.hcd-tab.active {
  z-index: 2;
  background: #ffffff;
  color: #155858;
  border-color: rgba(21, 88, 88, 0.24);
  box-shadow:
    0 -2px 18px rgba(21, 88, 88, 0.08),
    inset 0 4px 0 #155858;
}

.hcd-tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: #ffffff;
}

.hcd-tab-panel {
  background: #ffffff;
  border: 1px solid rgba(21, 88, 88, 0.14);
  border-top: 0;
  border-radius: 0 0 24px 24px;
  padding: 24px;
  box-shadow: 0 18px 45px rgba(21, 88, 88, 0.08);
}

/* =========================================================
   Binnenkant tabs mooier laten aansluiten op intake-stijl
   ========================================================= */

.hcd-tab-panel .terminal-intake-panel,
.hcd-tab-panel .content-panel {
  border: 0;
  box-shadow: none;
  padding: 0;
  background: transparent;
}

.hcd-tab-panel .terminal-form-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfa 100%);
  border: 1px solid rgba(21, 88, 88, 0.12);
  border-radius: 22px;
  padding: 24px;
  margin-bottom: 22px;
  box-shadow: 0 10px 26px rgba(21, 88, 88, 0.055);
}

.hcd-tab-panel .terminal-form-section h2 {
  margin: 0 0 16px;
  color: #155858;
  font-size: 22px;
  line-height: 1.2;
}

.hcd-tab-panel .terminal-form-section h3 {
  margin: 20px 0 12px;
  color: #244b48;
  font-size: 16px;
}

.hcd-tab-panel .terminal-form-section p.muted {
  margin-top: -6px;
  margin-bottom: 18px;
}

/* =========================================================
   Diagnose & bespreking in dezelfde premium formulierstijl
   ========================================================= */

.hcd-form-grid,
.terminal-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.hcd-form-grid .wide,
.terminal-form-grid .wide {
  grid-column: 1 / -1;
}

.hcd-form-grid label,
.terminal-form-grid label,
.terminal-intake-form label {
  display: block;
  margin-bottom: 7px;
  color: #234b47;
  font-size: 13px;
  font-weight: 800;
}

.hcd-form-grid input,
.hcd-form-grid select,
.hcd-form-grid textarea,
.terminal-form-grid input,
.terminal-form-grid select,
.terminal-form-grid textarea,
.terminal-intake-form input,
.terminal-intake-form select,
.terminal-intake-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(21, 88, 88, 0.18);
  border-radius: 14px;
  background: #ffffff;
  padding: 12px 14px;
  color: #1d3836;
  font-size: 15px;
  outline: none;
  box-shadow: inset 0 1px 2px rgba(21, 88, 88, 0.04);
}

.hcd-form-grid textarea,
.terminal-form-grid textarea,
.terminal-intake-form textarea {
  min-height: 135px;
  resize: vertical;
  line-height: 1.55;
}

.hcd-form-grid input:focus,
.hcd-form-grid select:focus,
.hcd-form-grid textarea:focus,
.terminal-form-grid input:focus,
.terminal-form-grid select:focus,
.terminal-form-grid textarea:focus,
.terminal-intake-form input:focus,
.terminal-intake-form select:focus,
.terminal-intake-form textarea:focus {
  border-color: #155858;
  box-shadow: 0 0 0 4px rgba(21, 88, 88, 0.10);
}

/* =========================================================
   Onderzoeken tab: upload en previews
   ========================================================= */

.hcd-research-upload {
  background: linear-gradient(135deg, rgba(21, 88, 88, 0.06), rgba(110, 144, 114, 0.08));
  border: 1px dashed rgba(21, 88, 88, 0.28);
  border-radius: 22px;
  padding: 22px;
  margin-bottom: 24px;
}

.hcd-research-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.hcd-research-grid .wide {
  grid-column: 1 / -1;
}

.hcd-research-list {
  display: grid;
  gap: 22px;
}

.hcd-research-card {
  overflow: hidden;
  border: 1px solid rgba(21, 88, 88, 0.14);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(21, 88, 88, 0.075);
}

.hcd-research-card-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(21, 88, 88, 0.10);
  background: linear-gradient(180deg, #f8fbfa 0%, #ffffff 100%);
}

.hcd-research-card-head h3 {
  margin: 0;
  color: #155858;
  font-size: 18px;
}

.hcd-research-card-head p {
  margin: 5px 0 0;
}

.hcd-research-type {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(21, 88, 88, 0.10);
  color: #155858;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.hcd-research-preview {
  padding: 20px;
  background: #fbfdfc;
}

.hcd-research-preview img {
  display: block;
  max-width: 100%;
  height: auto;
  max-height: 620px;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid rgba(21, 88, 88, 0.12);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(21, 88, 88, 0.08);
}

.hcd-research-preview iframe,
.hcd-research-preview object {
  display: block;
  width: 100%;
  min-height: 680px;
  border: 1px solid rgba(21, 88, 88, 0.14);
  border-radius: 16px;
  background: #ffffff;
}

.hcd-research-notes {
  padding: 0 20px 20px;
  color: #31534f;
  line-height: 1.6;
}

/* =========================================================
   Opvolging tab voorlopig netjes
   ========================================================= */

.hcd-followup-placeholder {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.hcd-followup-card {
  border: 1px solid rgba(21, 88, 88, 0.12);
  border-radius: 18px;
  padding: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfa 100%);
}

.hcd-followup-card h3 {
  margin: 0 0 8px;
  color: #155858;
  font-size: 17px;
}

.hcd-followup-card p {
  margin: 0;
  color: #5d716e;
  line-height: 1.55;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 900px) {
  .hcd-tabs {
    padding: 0 8px;
  }

  .hcd-tab {
    min-height: 48px;
    padding: 0 16px;
    font-size: 13px;
    border-radius: 15px 15px 0 0;
  }

  .hcd-tab-panel {
    padding: 16px;
    border-radius: 0 0 20px 20px;
  }

  .hcd-form-grid,
  .terminal-form-grid,
  .hcd-research-grid,
  .hcd-followup-placeholder {
    grid-template-columns: 1fr;
  }

  .hcd-research-card-head {
    flex-direction: column;
  }

  .hcd-research-preview iframe,
  .hcd-research-preview object {
    min-height: 520px;
  }
}

@media (max-width: 520px) {
  .hcd-tabs {
    margin-top: 18px;
  }

  .hcd-tab {
    padding: 0 13px;
  }

  .hcd-tab-panel .terminal-form-section {
    padding: 18px;
    border-radius: 18px;
  }
}

/* =========================================================
   FIX intake formulier - normale selectboxen en checkboxes
   ========================================================= */

/* Alleen tekstvelden/select/textarea stylen, NIET checkboxes */
.terminal-intake-form input:not([type="checkbox"]):not([type="radio"]),
.terminal-intake-form select,
.terminal-intake-form textarea,
.hcd-form-grid input:not([type="checkbox"]):not([type="radio"]),
.hcd-form-grid select,
.hcd-form-grid textarea {
  width: 100%;
  min-height: 44px;
  height: auto;
  padding: 10px 13px;
  border: 1px solid rgba(21, 88, 88, 0.18);
  border-radius: 12px;
  background: #ffffff;
  color: #1d3836;
  font-size: 14px;
  line-height: 1.35;
  font-family: inherit;
  outline: none;
  box-shadow: inset 0 1px 2px rgba(21, 88, 88, 0.04);
}

/* Selectbox expliciet normaal houden */
.terminal-intake-form select,
.hcd-form-grid select {
  min-height: 44px;
  height: 44px;
  padding: 0 38px 0 13px;
  appearance: auto;
  cursor: pointer;
}

/* Textareas wel groter, maar niet overdreven */
.terminal-intake-form textarea,
.hcd-form-grid textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
}

/* Focus */
.terminal-intake-form input:not([type="checkbox"]):not([type="radio"]):focus,
.terminal-intake-form select:focus,
.terminal-intake-form textarea:focus,
.hcd-form-grid input:not([type="checkbox"]):not([type="radio"]):focus,
.hcd-form-grid select:focus,
.hcd-form-grid textarea:focus {
  border-color: #155858;
  box-shadow: 0 0 0 3px rgba(21, 88, 88, 0.10);
}

/* Checkboxes volledig los trekken van algemene input styling */
.terminal-intake-form input[type="checkbox"],
.hcd-form-grid input[type="checkbox"],
.terminal-consent-box input[type="checkbox"],
.terminal-check-grid input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  padding: 0 !important;
  margin: 2px 10px 0 0 !important;
  border-radius: 4px;
  flex: 0 0 auto;
  accent-color: #155858;
  box-shadow: none !important;
}

/* Consent box netjes maken */
.terminal-consent-box {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.terminal-consent-box label {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  min-height: auto !important;
  padding: 16px 18px;
  border: 1px solid rgba(21, 88, 88, 0.12);
  border-radius: 14px;
  background: rgba(21, 88, 88, 0.04);
  color: #244b48;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

/* Disabled checkbox niet als groot vlak tonen */
.terminal-consent-box input[type="checkbox"][disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Checkbox grid normaal houden */
.terminal-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.terminal-check-grid label {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  min-height: auto !important;
  padding: 13px 15px;
  border: 1px solid rgba(21, 88, 88, 0.12);
  border-radius: 14px;
  background: #ffffff;
  color: #244b48;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

/* Labels boven normale velden */
.terminal-form-grid > div > label,
.hcd-form-grid > div > label {
  display: block;
  margin-bottom: 6px;
  color: #234b47;
  font-size: 13px;
  font-weight: 800;
}

/* Mobile */
@media (max-width: 800px) {
  .terminal-check-grid {
    grid-template-columns: 1fr;
  }

  .terminal-intake-form select,
  .hcd-form-grid select {
    height: 42px;
    min-height: 42px;
  }
}

.hcd-delete-research-form {
  margin: 0;
}

.hcd-delete-file-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(150, 40, 40, 0.22);
  border-radius: 999px;
  background: rgba(150, 40, 40, 0.06);
  color: #8f2626;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.hcd-delete-file-btn:hover {
  background: #8f2626;
  border-color: #8f2626;
  color: #ffffff;
}

.hcd-open-file-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(35, 95, 155, 0.24);
  border-radius: 999px;
  background: rgba(35, 95, 155, 0.07);
  color: #235f9b;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.hcd-open-file-btn:hover {
  background: #235f9b;
  border-color: #235f9b;
  color: #ffffff;
}

.file_desc {
	color: #000;
  font-size: .56rem;
	text-align:center;
	margin-bottom:20px;
}

.center {
	text-align:center;
}

/* Settings buttons niet full-width */
.settings-form > .page-btn,
.settings-form > button.page-btn,
.settings-actions .page-btn,
.settings-actions button.page-btn {
  width: auto !important;
  max-width: max-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Nettere knoprij voor settings */
.settings-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

/* Alleen mobiel mag hij breed worden */
@media (max-width: 520px) {
  .settings-form > .page-btn,
  .settings-form > button.page-btn,
  .settings-actions .page-btn,
  .settings-actions button.page-btn {
    width: 100% !important;
    max-width: none;
  }
}

.settings-form .settings-actions {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 18px;
}
.settings-form .settings-actions .page-btn,  .settings-form .settings-actions button.page-btn,  .settings-form > button.page-btn {
	width: auto !important;
	max-width: max-content;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.settings-card + .settings-card {
	margin-top: 18px;
}
.settings-card h2 {
	margin-bottom: 14px;
}
.settings-help {
	margin-top: 10px;
}
 @media (max-width: 520px) {
.settings-form .settings-actions .page-btn,  .settings-form .settings-actions button.page-btn,  .settings-form > button.page-btn {
	width: 100% !important;
	max-width: none;
}
}

.password-field-wrap {
  position: relative;
  display: block;
  width: 100%;
}

.password-field-wrap input[type="password"],
.password-field-wrap input[type="text"] {
  width: 100%;
  padding-right: 48px;
}

.password-toggle-btn {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 34px;
  height: 34px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(17, 23, 20, 0.55);
  cursor: pointer;
  padding: 0;
}

.password-toggle-btn:hover {
  background: rgba(61, 90, 62, 0.10);
  color: var(--g-dark);
}

.password-toggle-btn svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.password-toggle-btn.is-visible {
  background: rgba(61, 90, 62, 0.14);
  color: var(--g-dark);
}

.page-btn.disabled,
.page-btn.disabled:hover {
  background: #d8d8d8 !important;
  border-color: #c8c8c8 !important;
  color: #777 !important;
  opacity: 1;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none !important;
  transform: none !important;
}


/* /professional/vms.php */
.vms-receiving-page {
  padding-top: 24px;
}

.vms-shell {
  width: min(100%, 980px);
  max-width: 980px;
}

.vms-hero {
  margin-bottom: 18px;
}

.vms-search-form label,
.vms-quantity-control label {
  display: block;
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
}

.vms-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: stretch;
}

.vms-search-row input {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(17, 23, 20, 0.18);
  border-radius: 12px;
  background: #fff;
  color: #111714;
  font: inherit;
  font-size: 16px;
  line-height: 1.25;
}

.vms-search-row .page-btn,
.vms-camera-button,
.vms-camera-wrap .page-btn,
.vms-bottom-actions .page-btn {
  min-height: 52px;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 16px;
  line-height: 1.2;
  white-space: nowrap;
}

.vms-camera-button {
  margin-top: 12px;
}

.vms-camera-wrap {
  margin-top: 14px;
  padding: 12px;
  border-radius: 14px;
  background: #111;
}

.vms-camera-wrap video {
  display: block;
  width: 100%;
  max-height: 440px;
  margin-bottom: 10px;
  border-radius: 10px;
  object-fit: cover;
}

.vms-order-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.vms-order-label {
  display: block;
  margin-bottom: 4px;
  color: rgba(17, 23, 20, 0.58);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.vms-order-head h2 {
  margin: 0;
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.vms-order-head p {
  margin: 6px 0 0;
}

.vms-order-meta {
  display: grid;
  gap: 4px;
  flex: 0 0 auto;
  text-align: right;
  font-size: 15px;
  line-height: 1.35;
}

.vms-qr-line {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(61, 90, 62, 0.08);
}

.vms-qr-line code {
  display: block;
  max-width: 100%;
  font-size: 13px;
  line-height: 1.4;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.vms-items {
  display: grid;
  gap: 12px;
}

.vms-item-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 20px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(17, 23, 20, 0.12);
  border-radius: 14px;
  background: #fff;
}

.vms-item-card h3 {
  margin: 0 0 4px;
  font-size: 22px;
  line-height: 1.2;
}

.vms-item-card p {
  margin: 0;
}

.vms-ordered {
  margin-top: 10px;
  font-size: 16px;
}

.vms-quantity-control {
  min-width: 0;
}

.vms-stepper {
  display: grid;
  grid-template-columns: 48px minmax(70px, 1fr) 48px;
  gap: 8px;
  align-items: center;
}

.vms-stepper input {
  box-sizing: border-box;
  width: 100%;
  height: 48px;
  min-width: 0;
  padding: 6px;
  border: 1px solid rgba(17, 23, 20, 0.22);
  border-radius: 10px;
  background: #fff;
  color: #111714;
  text-align: center;
  font: inherit;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  appearance: textfield;
}

.vms-stepper input::-webkit-outer-spin-button,
.vms-stepper input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.vms-step-button,
.vms-full-button {
  box-sizing: border-box;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  -webkit-tap-highlight-color: transparent;
}

.vms-step-button {
  width: 48px;
  height: 48px;
  padding: 0;
  background: rgba(61, 90, 62, 0.13);
  color: var(--g-dark);
  font-size: 24px;
  line-height: 48px;
  text-align: center;
}

.vms-full-button {
  width: 100%;
  min-height: 42px;
  margin-top: 8px;
  padding: 9px 10px;
  border: 1px solid rgba(61, 90, 62, 0.18);
  background: rgba(61, 90, 62, 0.07);
  color: var(--g-dark);
  font-size: 15px;
  line-height: 1.2;
}

.vms-bottom-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.vms-phase-note {
  margin-top: 10px;
  text-align: right;
}

@media (max-width: 680px) {
  .vms-receiving-page {
    padding-top: 18px;
  }

  .vms-shell {
    width: 100%;
  }

  .vms-hero {
    margin-bottom: 14px;
  }

  .vms-search-row {
    grid-template-columns: 1fr;
  }

  .vms-search-row .page-btn,
  .vms-camera-button {
    width: 100%;
  }

  .vms-order-head {
    display: grid;
    gap: 10px;
  }

  .vms-order-head h2 {
    font-size: 27px;
  }

  .vms-order-meta {
    text-align: left;
  }

  .vms-item-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }

  .vms-item-card h3 {
    font-size: 21px;
  }

  .vms-stepper {
    grid-template-columns: 52px minmax(0, 1fr) 52px;
  }

  .vms-step-button {
    width: 52px;
    height: 52px;
    line-height: 52px;
  }

  .vms-stepper input {
    height: 52px;
  }

  .vms-full-button {
    min-height: 46px;
  }

  .vms-bottom-actions {
    display: grid;
  }

  .vms-bottom-actions .page-btn {
    width: 100%;
    white-space: normal;
  }

  .vms-phase-note {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .vms-receiving-page .content-panel {
    padding-left: 16px;
    padding-right: 16px;
  }

  .vms-search-row input {
    font-size: 15px;
  }

  .vms-order-head h2 {
    font-size: 24px;
  }

  .vms-qr-line code {
    font-size: 12px;
  }
}


/* /professional/vms.php — fase 2 */
.vms-item-totals{display:flex;flex-wrap:wrap;gap:.35rem 1rem;margin-top:.55rem}.vms-item-totals span{font-size:.95rem}.vms-item-card.is-received{opacity:.72;background:#f2f5f1}.vms-received-label{align-self:center;padding:.65rem 1rem;border-radius:10px;background:#e2ece1;color:#315634;font-weight:700}.vms-confirm-button{background:#365f3a;color:#fff}.vms-confirm-button:disabled{opacity:.65;cursor:wait}.vms-success-box,.vms-complete-box{margin-bottom:1.25rem}.vms-complete-box{margin-top:1rem}
@media (max-width:700px){.vms-item-totals{display:grid;grid-template-columns:1fr}.vms-bottom-actions{display:grid;gap:.75rem}.vms-bottom-actions .page-btn{width:100%}}
