/* ============================================================
   Bright future — gedeelde stijlen voor de VIJF dienstenpagina's
   (strategie, positionering, innovatie, employee engagement,
   executive coaching). Laden ná style.css.
   ============================================================ */

/* KNOPPEN */
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn { display: inline-flex; align-items: center; gap: 9px; padding: 13px 22px; border-radius: var(--radius-pill); font-weight: 600; font-size: 0.93rem; transition: all .2s; border: none; cursor: pointer; }
.btn svg { width: 17px; height: 17px; flex: none; }
/* PRIMAIRE ACTIE = GOUD (één per sectie) */
.btn-blue { background: var(--amber); color: #fff; box-shadow: 0 4px 16px -6px rgba(200,150,46,0.55); }
.btn-blue:hover { background: var(--amber-deep); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }
/* Primaire knop op de blauwe contactband = witte pil (goud nooit op blauw) */
.btn-white { background: #fff; color: var(--blue-deep); font-weight: 700; }
.btn-white:hover { background: var(--blue-light); transform: translateY(-2px); }
.btn-white-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); }
.btn-white-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; transform: translateY(-2px); }

/* HEADER */
header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.95); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
nav.wrap { display: flex; align-items: center; justify-content: space-between; padding-block: 14px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 40px; width: auto; }
.nav-back { font-size: 0.875rem; font-weight: 500; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.nav-back::before { content: "\2190"; }
.nav-back:hover { color: var(--blue); }

/* TERUG NAAR HOME */
.nav-home {
  position: fixed; top: 24px; right: 28px; z-index: 200;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.875rem; font-weight: 600; color: var(--blue-deep);
  background: rgba(255,255,255,0.92); backdrop-filter: blur(6px);
  border: 1px solid var(--line); border-radius: var(--radius-pill);
  padding: 9px 18px;
  transition: opacity .4s ease, transform .4s ease, background .2s, color .2s, border-color .2s;
}
.nav-home::after { content: "\2192"; }
.nav-home:hover { background: var(--blue); color: #fff; border-color: var(--blue); transform: translateY(-1px); }

/* HERO */
.hero { padding-top: 300px; padding-bottom: 28px; }
/* Dienst-titel als gouden pil (zoals de kaarten op de homepage) */
.hero .label {
  background: var(--amber); color: #fff;
  padding: 6px 15px; border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.hero .label::before { display: none; }
/* Expertise-regel: eerste regel van de H1, 'je bent hier' plus zoekwoord voor Google */
.hero h1 .expertise {
  display: block;
  color: var(--amber-deep);
  font-weight: 600; font-size: 1.1rem;
  letter-spacing: 1.4px; text-transform: uppercase;
  line-height: 1.2; margin-bottom: 12px;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.hero h1 { font-size: clamp(2.4rem, 4.5vw, 3.4rem); margin-block: 0 18px; }
.hero p.lead { font-size: 1.08rem; color: var(--muted); max-width: 44ch; margin-bottom: 22px; line-height: 1.6; }
.hero-img-wrap { max-width: 380px; margin-inline: auto; }
.hero-img-wrap img { width: 100%; display: block; }

/* STATEMENT (blauwe band) */
.statement { background: var(--blue); color: #fff; padding-block: 20px; }
.statement p { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.05rem, 1.9vw, 1.4rem); max-width: 760px; line-height: 1.5; }
.statement strong { color: #FDE68A; }

/* SECTIES */
section { padding-block: 38px; }
.section-head { max-width: 600px; margin-bottom: 22px; }
/* Klanten-carrousel onderaan: stippellijn onder de kop over volle breedte */
.klanten .section-head h2::after { display: none; }
.section-head h2 { font-size: clamp(1.8rem,3vw,2.4rem); margin-top: 10px; }
.section-head p { color: var(--muted); margin-top: 12px; }

/* MODEL */
.model-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }

.pillars { display: flex; flex-direction: column; gap: 11px; }
.pillar { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 16px 20px; }
.pillar h3 { font-size: 1rem; margin-bottom: 7px; display: flex; align-items: center; gap: 10px; }
.pillar h3 .dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.pillar.p-a h3 .dot { background: var(--blue); }
.pillar.p-b h3 .dot { background: var(--amber); }
.pillar.p-w h3 .dot { background: linear-gradient(135deg, var(--blue), var(--amber)); }
.pillar.p-c h3 .dot { background: var(--blue-deep); }
.pillar p { font-size: 0.93rem; color: var(--muted); }

/* CHIPS (andere modellen) */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.chip { font-size: 0.82rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 7px 15px; color: var(--muted); }

/* STAPPEN (genummerd stappenplan) */
.steps { display: flex; flex-direction: column; gap: 0; padding: 12px 0; }
.step { display: flex; gap: 18px; align-items: flex-start; padding-bottom: 32px; position: relative; }
.step:not(:last-child)::after { content: ''; position: absolute; left: 15px; top: 34px; bottom: 0; width: 2px; background: var(--line); }
.step-num { width: 32px; height: 32px; border-radius: 50%; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.82rem; font-family: var(--font-display); flex: none; }
.step-body h3 { font-size: 1rem; margin-bottom: 5px; }
.step-body p { font-size: 0.9rem; color: var(--muted); line-height: 1.55; }

/* FOCUSKAARTEN (innovatie) */
.focus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.focus-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 24px 22px; }
.focus-card .fc-icon { width: 40px; height: 40px; border-radius: 12px; background: var(--blue-light); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.focus-card .fc-icon svg { width: 20px; height: 20px; stroke: var(--blue); fill: none; stroke-width: 2; }
.focus-card h3 { font-size: 0.97rem; margin-bottom: 7px; }
.focus-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.55; }

/* BEWEZEN AANPAK / KLANTLOGO'S */
.proof { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.marquee-wrap { margin-top: 32px; }

/* TESTIMONIALS → verplaatst naar style.css (nu ook op de homepage gebruikt) */

/* AANPAK */
.approach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.approach-grid h3 { font-size: 1.15rem; margin-top: 10px; }
.approach-grid p { color: var(--muted); margin-top: 10px; font-size: 0.97rem; }

/* CONTACT-BLOK */
.cta { background: var(--blue); color: #fff; border-radius: var(--radius-lg); padding: 52px 44px; text-align: center; margin-inline: 28px; }
.cta h2 { font-size: clamp(1.45rem,2.4vw,1.85rem); margin-bottom: 9px; }
.cta p { color: rgba(255,255,255,0.85); max-width: 480px; margin: 0 auto 28px; }
.cta .btn-row { justify-content: center; }

/* RESPONSIVE */
@media (max-width: 860px) {
  .hero { padding-top: 250px; }
  .hero-grid, .model-grid, .approach-grid { grid-template-columns: 1fr; }
  .focus-grid { grid-template-columns: 1fr 1fr; }
  .hero-img-wrap { order: -1; }
  .cta { padding: 26px 18px; margin-inline: 0; border-radius: 0; }
}
@media (max-width: 600px) {
  .hero { padding-top: 130px; }
  .nav-home { top: 14px; right: 14px; padding: 8px 14px; font-size: 0.82rem; }
}
@media (max-width: 540px) {
  .focus-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BF-WELKOM — eenmalig welkomscherm bovenaan de expertisepagina's.
   Vast overlay dat met scrollen naar boven wordt weggeschoven; aan de
   scrollpositie van de pagina wordt nooit getrokken (zie site.js).
   ============================================================ */
.bf-welcome {
  /* Gewone eerste sectie, geen zwevende laag over de pagina. Reden: een
     schermvullende laag die de inhoud afdekt is voor Google een 'intrusive
     interstitial' en telt mee in de landingspagina-beoordeling. Zo blijft het
     visueel hetzelfde — je landt op een schermvullende foto en scrollt door —
     maar dekt hij niets af, ook niet als JavaScript niet draait. */
  position: relative;
  min-height: 100vh; min-height: 100svh;
  /* ruimte voor het zwevende logo linksboven, zie de berekening op de homepage */
  padding-top: calc(min(200px, max(100px, 17vw)) + 60px);
  display: flex; align-items: flex-end;
  background-image: url('images/niel-pepers-kantoor.webp');
  background-size: cover; background-position: center top;
}
.bf-welcome-overlay { position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.12) 40%, rgba(0,40,80,0.72) 100%); }
.bf-welcome-content { position: relative; z-index: 1; padding-block: 44px; color: #fff; max-width: 680px; }
.bf-welcome-content .expertise {
  display: block; color: var(--amber);
  font-family: var(--font-display); font-weight: 600; font-size: 1.1rem;
  letter-spacing: 1.4px; text-transform: uppercase; line-height: 1.2;
  margin-bottom: 12px;
}
.bf-welcome-content .bf-welcome-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.8rem); line-height: 1.1; margin-bottom: 20px;
}
.bf-welcome-content p { font-size: clamp(1rem, 1.8vw, 1.15rem); line-height: 1.6; color: rgba(255,255,255,0.9); margin-bottom: 16px; max-width: 52ch; }
.bf-welcome-hint {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 10px; padding: 8px 4px;
  font-size: 1.5rem; color: #fff; opacity: .85;
  background: none; border: 0; cursor: pointer;
  animation: bf-hint-wip 2.2s ease-in-out infinite;
}
.bf-welcome-hint:hover { opacity: 1; }
.bf-welcome-hint:focus-visible { outline: 3px solid var(--amber); outline-offset: 4px; border-radius: 8px; }
/* Een los pijltje is dubbelzinnig: aanwijzing of knop? De beweging maakt er de
   bekende 'scroll verder'-aanwijzing van, en klikbaar maken dekt de andere
   lezing af. Zo kan niemand het verkeerd begrijpen. */
@keyframes bf-hint-wip {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(7px); }
}
@media (prefers-reduced-motion: reduce) { .bf-welcome-hint { animation: none; } }
@media (max-width: 600px){
  .bf-welcome { background-position: 42% top; }
  /* ruimte vrijhouden voor het zwevende logo linksboven */
  .bf-welcome-content { padding-block: 0 40px; }
  .bf-welcome-content .bf-welcome-title { font-size: clamp(1.95rem, 8.4vw, 2.6rem); margin-bottom: 16px; }
  .bf-welcome-content .expertise { font-size: 0.95rem; margin-bottom: 10px; }
  .bf-welcome-content p { font-size: 1rem; margin-bottom: 12px; }
}
