/* ── TOKENS ────────────────────────────────────────────── */
: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: 34px; width: 34px; object-fit: contain;
  border-radius: 50%; background: var(--g-dark); padding: 2px;
  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: 58px;
  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;
}

.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: max-content minmax(0, 1fr);
  position: relative;
  overflow: hidden;
}

.hero-left {
  background: var(--g-dark);
  padding: 5rem 1rem 5rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
  width: fit-content;
  max-width: 420px;
}

.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; }

.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: 40px; width: 40px; 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: var(--ink);
  margin-bottom: .4rem;
}

.journey-step p {
  font-size: .875rem;
  color: var(--ink-60);
  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: var(--g);
  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; }
  }
