/* ============================================================
   bewho-theme.css — BeWhoYouAre Design System 2026
   Volledig hergebouwd — drop Bootstrap, pure modern CSS
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Nunito+Sans:opsz,wght@6..12,300;6..12,400;6..12,600;6..12,700&display=swap');

/* ══════════════════════════════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════════════════════════════ */
:root {
  --forest-deep:   #162C22;
  --forest:        #2A4A3E;
  --forest-mid:    #3D6B5E;
  --sage:          #6B8F71;
  --sage-light:    #A3C4A9;
  --mint:          #E2F0E6;
  --cream:         #FAF8F5;
  --warm-light:    #F2ECE4;
  --amber:         #C68B4E;
  --amber-hover:   #B07A40;
  --amber-light:   #F0D9B8;
  --amber-glow:    rgba(198,139,78,.18);
  --white:         #FFFFFF;
  --charcoal:      #1C2821;
  --text:          #2E3A35;
  --text-soft:     #5C7268;
  --text-lighter:  #8FA8A0;
  --text-on-dark:  rgba(255,255,255,.88);
  --space-xs:      .5rem;
  --space-sm:      1rem;
  --space-md:      2rem;
  --space-lg:      4rem;
  --space-xl:      7rem;
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Nunito Sans', 'Segoe UI', system-ui, sans-serif;
  --radius:        12px;
  --radius-lg:     24px;
  --radius-pill:   50px;
  --shadow-sm:     0 2px 16px rgba(0,0,0,.05);
  --shadow-md:     0 8px 32px rgba(0,0,0,.09);
  --shadow-lg:     0 20px 60px rgba(0,0,0,.12);
  --ease:          cubic-bezier(.25,.46,.45,.94);
  --nav-h:         72px;
}

/* ══════════════════════════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.75;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--forest); text-decoration: none; }
a:hover { color: var(--amber); }
strong { font-weight: 700; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ══════════════════════════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════════════════════════ */
.bw-container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}
.bw-container--narrow { max-width: 780px; }
.bw-container--wide   { max-width: 1400px; }
section { padding: var(--space-lg) 0; }
.bw-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.bw-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.bw-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
@media (max-width: 900px) { .bw-grid-2, .bw-grid-3 { grid-template-columns: 1fr; } }
@media (max-width: 700px) { .bw-grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 420px) { .bw-grid-4 { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════════ */
.bw-nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(250,248,245,.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(42,74,62,.07);
  transition: box-shadow .3s, background .3s;
}
.bw-nav.scrolled { background: rgba(250,248,245,.97); box-shadow: 0 4px 30px rgba(0,0,0,.07); }
.bw-nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.bw-nav-logo img { height: 38px; width: auto; }
.bw-nav-links { display: flex; align-items: center; gap: 1px; list-style: none; flex-wrap: nowrap; }
.bw-nav-links a { font-size: .82rem; font-weight: 600; color: var(--text); padding: 7px 10px; border-radius: 8px; transition: color .2s, background .2s; white-space: nowrap; }
.bw-nav-links a:hover, .bw-nav-links a.active { color: var(--forest); background: rgba(42,74,62,.07); }
.bw-nav-cta { background: var(--forest) !important; color: var(--white) !important; padding: 9px 20px !important; border-radius: var(--radius-pill) !important; font-weight: 700 !important; box-shadow: 0 2px 14px rgba(42,74,62,.25); transition: background .2s, transform .15s, box-shadow .2s !important; margin-left: .3rem; }
.bw-nav-cta:hover { background: var(--forest-deep) !important; transform: translateY(-1px) !important; box-shadow: 0 6px 22px rgba(42,74,62,.3) !important; color: var(--white) !important; }
.bw-nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; position: relative; z-index: 1001; }
.bw-nav-toggle span { display: block; width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: transform .3s, opacity .3s; }
.bw-nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translateY(7px); }
.bw-nav-toggle.open span:nth-child(2) { opacity: 0; }
.bw-nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }
@media (max-width: 1024px) {
  .bw-nav-toggle { display: flex; }
  .bw-nav-links {
    /* Volledig scherm onder de nav — eenvoudig en betrouwbaar op alle telefoons */
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: #faf8f5;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1rem 3rem;
    gap: 4px;
    overflow-y: auto;
    overflow-x: hidden;
    /* Verborgen via opacity + visibility (geen transform, vermijdt iOS-bugs) */
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
  }
  .bw-nav-links.open {
    opacity: 1;
    visibility: visible;
  }
  .bw-nav-links li { width: 100%; list-style: none; }
  .bw-nav-links a {
    font-size: 1.05rem;
    font-weight: 600;
    padding: 14px 20px;
    width: 100%;
    display: block;
    border-radius: 10px;
    color: var(--text);
    white-space: normal;
    word-break: break-word;
    text-decoration: none;
  }
  .bw-nav-links a:hover,
  .bw-nav-links a.active { background: rgba(42,74,62,.07); color: var(--forest); }
  .bw-nav-cta {
    display: block !important;
    text-align: center !important;
    margin: .5rem 0 0 !important;
    padding: 16px 20px !important;
    border-radius: 10px !important;
    font-size: 1.05rem !important;
  }
}
.bw-nav-spacer { height: var(--nav-h); }

/* ── Nav dropdown ── */
.bw-nav-dropdown { position: relative; }
.bw-nav-dropdown-toggle { display: flex !important; align-items: center; gap: 4px; cursor: pointer; }
.bw-nav-dropdown-toggle svg { width: 12px; height: 12px; transition: transform .2s; flex-shrink: 0; }
.bw-nav-dropdown:hover .bw-nav-dropdown-toggle svg,
.bw-nav-dropdown.open .bw-nav-dropdown-toggle svg { transform: rotate(180deg); }
.bw-nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(42,74,62,.14);
  border: 1px solid rgba(42,74,62,.08);
  min-width: 220px;
  list-style: none;
  padding: .5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.bw-nav-dropdown:hover .bw-nav-dropdown-menu,
.bw-nav-dropdown.open .bw-nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.bw-nav-dropdown-menu li { width: 100%; }
.bw-nav-dropdown-menu a {
  display: block;
  padding: .65rem 1rem;
  font-size: .84rem;
  font-weight: 600;
  color: var(--text);
  border-radius: 8px;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.bw-nav-dropdown-menu a:hover { background: var(--mint); color: var(--forest); }
.bw-nav-dropdown-menu .dd-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--text-lighter);
  padding: .4rem 1rem .2rem;
  display: block;
}
/* Mobile: dropdown inline */
@media (max-width: 1024px) {
  .bw-nav-dropdown-menu {
    position: static;
    transform: none !important;
    opacity: 1;
    pointer-events: all;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--mint);
    border-radius: 0;
    padding: 0 0 0 .75rem;
    margin: 4px 0 4px 1rem;
    display: none;
  }
  .bw-nav-dropdown.open .bw-nav-dropdown-menu { display: block; }
  .bw-nav-dropdown-menu a { padding: 10px 16px; }
}

/* ══════════════════════════════════════════════════════════════
   PAGE HERO
══════════════════════════════════════════════════════════════ */
.page-hero { position: relative; min-height: 52vh; display: flex; align-items: center; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center 30%; background-repeat: no-repeat; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(22,44,34,.88) 0%, rgba(42,74,62,.72) 50%, rgba(61,107,94,.55) 100%); }
.page-hero-content,
.page-hero-inner { position: relative; z-index: 2; padding: 5rem 0 4rem; max-width: 700px; margin: 0 auto; text-align: center; }
.page-badge { display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.9); font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 6px 16px; border-radius: var(--radius-pill); margin-bottom: 1.25rem; backdrop-filter: blur(8px); }
.page-badge::before { content: ''; width: 7px; height: 7px; background: var(--sage-light); border-radius: 50%; animation: pulse-dot 2.2s ease infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.5)} }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 600; color: var(--white); line-height: 1.15; margin-bottom: 1rem; letter-spacing: -.02em; }
.page-hero h1 em { font-style: italic; color: var(--sage-light); }
.page-hero-sub,
.hero-sub { font-size: 1.08rem; color: rgba(255,255,255,.85); line-height: 1.75; max-width: 560px; }
.breadcrumb-nav { margin-top: 1.75rem; font-size: .78rem; color: rgba(255,255,255,.5); }
.breadcrumb-nav a { color: rgba(255,255,255,.6); }
.breadcrumb-nav a:hover { color: var(--white); }

/* ══════════════════════════════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════════════════════════════ */
.bw-eyebrow { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--sage); margin-bottom: .6rem; }
.bw-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 600; color: var(--forest); line-height: 1.18; letter-spacing: -.02em; }
.bw-title em { font-style: italic; color: var(--sage); }
.bw-subtitle { font-size: 1.05rem; color: var(--text-soft); line-height: 1.75; max-width: 580px; margin-top: .75rem; }
h2.section-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; color: var(--forest); line-height: 1.2; letter-spacing: -.015em; }
.bw-content { font-size: 1rem; line-height: 1.8; color: var(--text); }
.bw-content h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--forest); margin: 2.5rem 0 .75rem; font-weight: 600; }
.bw-content h3 { font-family: var(--font-display); font-size: 1.35rem; color: var(--charcoal); margin: 1.75rem 0 .5rem; font-weight: 600; }
.bw-content ul, .bw-content ol { padding-left: 1.5rem; margin: .75rem 0 1rem; }
.bw-content li { margin-bottom: .4rem; }

/* ══════════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════════ */
.btn { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-body); font-weight: 700; font-size: .92rem; padding: 14px 28px; border-radius: var(--radius-pill); border: 2px solid transparent; cursor: pointer; transition: all .25s var(--ease); text-decoration: none; letter-spacing: .02em; white-space: nowrap; }
.btn-primary { background: var(--amber); color: var(--white); box-shadow: 0 4px 20px var(--amber-glow); }
.btn-primary:hover { background: var(--amber-hover); transform: translateY(-2px); box-shadow: 0 8px 28px var(--amber-glow); color: var(--white); }
.btn-forest { background: var(--forest); color: var(--white); box-shadow: 0 4px 20px rgba(42,74,62,.25); }
.btn-forest:hover { background: var(--forest-deep); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(42,74,62,.3); color: var(--white); }
.btn-outline { background: transparent; border-color: var(--forest); color: var(--forest); }
.btn-outline:hover { background: var(--forest); color: var(--white); transform: translateY(-1px); }
.btn-ghost,
.btn-outline-light { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.45); color: var(--white) !important; backdrop-filter: blur(8px); }
.btn-ghost:hover,
.btn-outline-light:hover { background: rgba(255,255,255,.25); border-color: rgba(255,255,255,.7); color: var(--white) !important; transform: translateY(-1px); }
.btn-amber { background: var(--amber); color: var(--white) !important; border-color: var(--amber); box-shadow: 0 4px 20px var(--amber-glow); }
.btn-amber:hover { background: var(--amber-hover); border-color: var(--amber-hover); transform: translateY(-2px); box-shadow: 0 8px 28px var(--amber-glow); color: var(--white) !important; }
.btn-whatsapp { background: #25D366; color: var(--white); box-shadow: 0 4px 20px rgba(37,211,102,.3); }
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.4); color: var(--white); }
.btn-sm { padding: 10px 20px; font-size: .84rem; }
.btn-lg { padding: 18px 38px; font-size: 1.02rem; }
.btn-icon { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════
   CARDS
══════════════════════════════════════════════════════════════ */
.bw-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 2rem; transition: transform .3s var(--ease), box-shadow .3s; border: 1px solid rgba(42,74,62,.06); }
.bw-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.bw-card-icon { width: 52px; height: 52px; background: var(--mint); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; color: var(--forest); }
.bw-card-icon svg { width: 26px; height: 26px; }

/* Price cards */
.price-card { background: var(--white); border-radius: var(--radius-lg); border: 1.5px solid rgba(42,74,62,.1); padding: 2rem 1.75rem 2.25rem; position: relative; transition: transform .3s, box-shadow .3s; }
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.price-card.featured { background: var(--forest); border-color: var(--forest); color: var(--white); }
.price-card.featured .price-amount, .price-card.featured .card-title { color: var(--white); }
.price-card.featured .price-period, .price-card.featured .price-feature { color: rgba(255,255,255,.75); }
.price-card.featured .price-feature::before { color: var(--sage-light); }
.price-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--amber); color: var(--white); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 16px; border-radius: var(--radius-pill); white-space: nowrap; }
.price-amount { font-family: var(--font-display); font-size: 2.8rem; font-weight: 600; color: var(--forest); line-height: 1; margin: 1rem 0 .25rem; }
.price-amount small { font-size: 1rem; font-weight: 400; vertical-align: super; margin-right: 2px; }
.price-period { font-size: .82rem; color: var(--text-soft); margin-bottom: 1.5rem; }
.price-features { list-style: none; margin: 1.25rem 0; }
.price-feature { font-size: .9rem; color: var(--text); padding: .4rem 0; border-top: 1px solid rgba(0,0,0,.05); display: flex; align-items: flex-start; gap: .5rem; }
.price-feature::before { content: '✓'; color: var(--forest); font-weight: 700; flex-shrink: 0; margin-top: .05em; }

/* ══════════════════════════════════════════════════════════════
   SECTION BACKGROUNDS
══════════════════════════════════════════════════════════════ */
.section-cream  { background: var(--cream); }
.section-white  { background: var(--white); }
.section-mint   { background: var(--mint); }
.section-forest { background: var(--forest); color: var(--white); }
.section-forest .bw-eyebrow { color: var(--sage-light); }
.section-forest .bw-title, .section-forest .section-title { color: var(--white); }
.section-forest .bw-subtitle { color: rgba(255,255,255,.72); }
.section-warm   { background: var(--warm-light); }

/* ══════════════════════════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════════════════════════ */
.trust-bar { background: var(--white); border-bottom: 1px solid rgba(42,74,62,.07); padding: 1.5rem 0; }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: .75rem; font-size: .86rem; font-weight: 600; color: var(--text-soft); }
.trust-icon { width: 38px; height: 38px; background: var(--mint); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--forest); flex-shrink: 0; }
.trust-icon svg { width: 18px; height: 18px; }
@media (max-width: 640px) { .trust-inner { gap: 1.5rem; } .trust-item { font-size: .8rem; } }

/* ══════════════════════════════════════════════════════════════
   CTA STRIP
══════════════════════════════════════════════════════════════ */
.cta-strip { background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest) 60%, var(--forest-mid) 100%); padding: 4rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-strip::before { content: ''; position: absolute; top: -60%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(198,139,78,.12) 0%, transparent 70%); pointer-events: none; }
.cta-strip h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; color: var(--white); margin-bottom: .75rem; }
.cta-strip p { color: rgba(255,255,255,.72); font-size: 1.02rem; margin-bottom: 2rem; }
.cta-strip-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.cta-note { margin-top: 1.25rem; font-size: .8rem; color: rgba(255,255,255,.4); }

/* ══════════════════════════════════════════════════════════════
   FAQ ACCORDION
══════════════════════════════════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: .5rem; }
.faq-item { background: var(--white); border-radius: var(--radius); border: 1px solid rgba(42,74,62,.08); overflow: hidden; }
.faq-question { width: 100%; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 1.5rem; font-family: var(--font-body); font-size: .97rem; font-weight: 600; color: var(--text); text-align: left; transition: color .2s; }
.faq-question:hover { color: var(--forest); }
.faq-chevron { width: 18px; height: 18px; flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; transition: transform .3s var(--ease); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-answer-inner { padding: 0 1.5rem 1.25rem; font-size: .94rem; color: var(--text-soft); line-height: 1.75; }
.faq-item.open .faq-question { color: var(--forest); }

/* ══════════════════════════════════════════════════════════════
   STEPS / PROCESS
══════════════════════════════════════════════════════════════ */
.steps { display: flex; flex-direction: column; gap: 0; position: relative; }
.steps::before { content: ''; position: absolute; left: 22px; top: 24px; bottom: 24px; width: 2px; background: linear-gradient(to bottom, var(--sage-light), transparent); }
.step { display: flex; gap: 1.5rem; padding: 1.5rem 0; }
.step-num { width: 46px; height: 46px; border-radius: 50%; background: var(--forest); color: var(--white); font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; display: flex; align-items: center; justify-content: center; flex-shrink: 0; z-index: 1; box-shadow: 0 0 0 6px var(--cream); }
.section-white .step-num { box-shadow: 0 0 0 6px var(--white); }
.step-body { padding-top: .4rem; }
.step-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--forest); margin-bottom: .35rem; }
.step-text { font-size: .94rem; color: var(--text-soft); line-height: 1.7; }

/* ══════════════════════════════════════════════════════════════
   QUOTE / TESTIMONIAL
══════════════════════════════════════════════════════════════ */
.quote-block { position: relative; padding: 2rem 2rem 2rem 3.5rem; background: var(--mint); border-radius: var(--radius-lg); border-left: 3px solid var(--sage); }
.quote-block::before { content: '\201C'; position: absolute; top: .5rem; left: 1rem; font-family: var(--font-display); font-size: 4rem; line-height: 1; color: var(--sage); opacity: .6; }
.quote-text { font-family: var(--font-display); font-size: 1.15rem; font-style: italic; color: var(--forest); line-height: 1.65; margin-bottom: .75rem; }
.quote-author { font-size: .82rem; font-weight: 700; color: var(--sage); text-transform: uppercase; letter-spacing: .08em; }
.quote-stars { color: var(--amber); font-size: 1rem; letter-spacing: 2px; margin-bottom: .5rem; }

/* ══════════════════════════════════════════════════════════════
   STATS
══════════════════════════════════════════════════════════════ */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 2rem; text-align: center; }
.stat-number { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 600; color: var(--forest); line-height: 1; display: block; }
.stat-label { font-size: .84rem; color: var(--text-soft); margin-top: .4rem; line-height: 1.4; }
.section-forest .stat-number { color: var(--white); }
.section-forest .stat-label { color: rgba(255,255,255,.6); }

/* ══════════════════════════════════════════════════════════════
   FLOATING WHATSAPP
══════════════════════════════════════════════════════════════ */
.wa-float { position: fixed; bottom: 1.75rem; right: 1.75rem; width: 58px; height: 58px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 24px rgba(37,211,102,.4); z-index: 900; transition: transform .25s var(--ease), box-shadow .25s; animation: wa-enter .6s .5s var(--ease) both; }
.wa-float:hover { transform: scale(1.12); box-shadow: 0 10px 32px rgba(37,211,102,.5); }
.wa-float svg { width: 30px; height: 30px; fill: white; }
@keyframes wa-enter { from{opacity:0;transform:scale(.5)} to{opacity:1;transform:scale(1)} }
.wa-float::after { content: ''; position: absolute; inset: -5px; border-radius: 50%; border: 2px solid rgba(37,211,102,.35); animation: wa-ring 2.5s ease infinite; }
@keyframes wa-ring { 0%{transform:scale(1);opacity:.8} 80%,100%{transform:scale(1.4);opacity:0} }

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.bw-footer { background: var(--charcoal); color: rgba(255,255,255,.65); padding: 4rem 0 0; }
.bw-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 3rem; padding-bottom: 3rem; }
.bw-footer-logo { height: 36px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: .85; }
.bw-footer-tagline { font-family: var(--font-display); font-size: 1.1rem; font-style: italic; color: var(--sage-light); margin-bottom: .75rem; }
.bw-footer-desc { font-size: .86rem; line-height: 1.7; margin-bottom: 1rem; }
.bw-footer-h { font-weight: 700; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--sage-light); margin-bottom: 1rem; }
.bw-footer-links { list-style: none; }
.bw-footer-links li { margin-bottom: .5rem; }
.bw-footer-links a { font-size: .88rem; color: rgba(255,255,255,.5); transition: color .2s; }
.bw-footer-links a:hover { color: var(--white); }
.bw-footer-contact-item { display: flex; align-items: flex-start; gap: .6rem; font-size: .86rem; margin-bottom: .6rem; color: rgba(255,255,255,.5); }
.bw-footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; fill: none; stroke: var(--sage-light); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.bw-footer-contact-item a { color: rgba(255,255,255,.5); }
.bw-footer-contact-item a:hover { color: var(--white); }
.bw-footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.25rem 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .8rem; color: rgba(255,255,255,.3); }
.bw-footer-bottom a { color: rgba(255,255,255,.4); }
.bw-footer-bottom a:hover { color: var(--white); }
@media (max-width: 900px) { .bw-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .bw-footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ══════════════════════════════════════════════════════════════
   FORMS
══════════════════════════════════════════════════════════════ */
.bw-form { display: flex; flex-direction: column; gap: 1rem; }
.bw-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 580px) { .bw-form-row { grid-template-columns: 1fr; } }
.bw-form-group { display: flex; flex-direction: column; gap: .4rem; }
.bw-form-label { font-size: .82rem; font-weight: 700; color: var(--text); letter-spacing: .03em; }
.bw-form-input, .bw-form-textarea, .bw-form-select { font-family: var(--font-body); font-size: .94rem; color: var(--text); background: var(--white); border: 1.5px solid rgba(42,74,62,.15); border-radius: var(--radius); padding: .75rem 1rem; transition: border-color .2s, box-shadow .2s; width: 100%; }
.bw-form-input:focus, .bw-form-textarea:focus { outline: none; border-color: var(--forest); box-shadow: 0 0 0 3px rgba(42,74,62,.08); }
.bw-form-textarea { resize: vertical; min-height: 130px; }
.bw-form-check { display: flex; align-items: flex-start; gap: .6rem; cursor: pointer; font-size: .86rem; color: var(--text-soft); }
.bw-form-check input { margin-top: .2rem; accent-color: var(--forest); }

/* ══════════════════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.d1{transition-delay:.1s} .d2{transition-delay:.2s} .d3{transition-delay:.3s} .d4{transition-delay:.4s} .d5{transition-delay:.5s}

/* ══════════════════════════════════════════════════════════════
   SERVICE CARDS GRID
══════════════════════════════════════════════════════════════ */
.service-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
@media (max-width: 800px) { .service-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .service-cards { grid-template-columns: 1fr; } }
.service-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid rgba(42,74,62,.07); padding: 1.75rem; transition: transform .3s, box-shadow .3s; display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card-icon { width: 48px; height: 48px; background: var(--mint); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; color: var(--forest); }
.service-card-icon svg { width: 24px; height: 24px; }
.service-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--forest); margin-bottom: .4rem; }
.service-card p { font-size: .88rem; color: var(--text-soft); line-height: 1.65; flex: 1; margin-bottom: 1rem; }
.service-card a { font-size: .82rem; font-weight: 700; color: var(--forest); display: inline-flex; align-items: center; gap: 5px; transition: gap .2s, color .2s; }
.service-card a:hover { gap: 9px; color: var(--amber); }

/* ══════════════════════════════════════════════════════════════
   UTILITY
══════════════════════════════════════════════════════════════ */
.text-center { text-align: center; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.flex-center { display: flex; align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.bw-divider { height: 1px; background: rgba(42,74,62,.08); margin: 0; }
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split-layout.reverse { direction: rtl; }
.split-layout.reverse > * { direction: ltr; }
@media (max-width: 860px) { .split-layout, .split-layout.reverse { grid-template-columns: 1fr; direction: ltr; gap: 2.5rem; } }
/* Sidebar layouts → 1 kolom op mobiel */
@media (max-width: 860px) {
  .main-sidebar,
  .main-sidebar-layout,
  .bw-sidebar-grid,
  [style*="grid-template-columns:minmax(0,1fr) minmax(0,340px)"],
  [style*="grid-template-columns:minmax(0,1fr) minmax(0,320px)"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}
.img-rounded { border-radius: var(--radius-lg); overflow: hidden; }
.img-rounded img { display: block; width: 100%; }
.highlight-box { background: linear-gradient(135deg, var(--mint) 0%, var(--warm-light) 100%); border-radius: var(--radius-lg); border: 1px solid rgba(42,74,62,.1); padding: 2rem; }
.highlight-box-amber { background: linear-gradient(135deg, #FEF3E2 0%, #FDF7EE 100%); border-color: rgba(198,139,78,.2); }
.credential-badge { display: inline-flex; align-items: center; gap: .5rem; background: var(--mint); border: 1px solid rgba(42,74,62,.12); color: var(--forest); font-size: .78rem; font-weight: 700; padding: 5px 12px; border-radius: var(--radius-pill); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Cookie banner */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: var(--charcoal); color: rgba(255,255,255,.8); padding: 1.25rem clamp(1rem, 5vw, 2rem); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .84rem; transform: translateY(100%); transition: transform .4s var(--ease); }
.cookie-banner.show { transform: translateY(0); }
.cookie-banner a { color: var(--sage-light); }
.cookie-actions { display: flex; gap: .75rem; flex-shrink: 0; }
.cookie-btn { padding: 8px 18px; border-radius: var(--radius-pill); font-size: .82rem; font-weight: 700; cursor: pointer; border: none; font-family: var(--font-body); }
.cookie-btn-accept { background: var(--forest); color: var(--white); }
.cookie-btn-decline { background: transparent; color: rgba(255,255,255,.5); border: 1px solid rgba(255,255,255,.2); }

@media (max-width: 768px) {
  section { padding: 3rem 0; }
  .page-hero-content,
  .page-hero-inner { padding: 3.5rem 0 3rem; }
  .cta-strip { padding: 3rem 0; }
}
@media (max-width: 480px) {
  .btn { padding: 12px 22px; font-size: .88rem; }
  .btn-lg { padding: 14px 26px; font-size: .95rem; }
}
