/* ============================================================
   CORPSHORE NEDERLAND — main.css  v1.0
   Dutch Design / Mondrian grid / Navy #0A2463 + Orange #FF6B00
   Fonts: DM Serif Display (H1/H2) + Inter (body)
   Icons: Tabler Icons webfont
   ============================================================ */

/* ── 1. CUSTOM PROPERTIES ─────────────────────────────────── */
:root {
  --navy:        #0A2463;
  --navy-dark:   #1A1A2E;
  --red:         #E63946;
  --orange:      #FF6B00;
  --white:       #FFFFFF;
  --grey-light:  #F5F5F0;
  --grey-mid:    #8C8C88;
  --grey-border: #D9D9D4;

  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --fw-regular: 400;
  --fw-medium:  500;
  --fw-semibold:600;
  --fw-bold:    700;

  --fs-h1:   clamp(36px, 5vw, 56px);
  --fs-h2:   clamp(26px, 3vw, 36px);
  --fs-h3:   22px;
  --fs-body: 17px;
  --fs-sm:   14px;
  --fs-caption: 13px;

  --lh-tight:  1.1;
  --lh-snug:   1.2;
  --lh-normal: 1.3;
  --lh-body:   1.75;

  --radius-card: 16px;
  --radius-btn:  8px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.12);

  --transition: 240ms ease;

  --section-y:  120px;
  --section-y-sm: 64px;
  --container:  1200px;
  --gutter:     24px;
}

/* ── 2. RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: var(--navy-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Skip to content */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--navy);
  color: var(--white);
  padding: .5rem 1rem;
  border-radius: var(--radius-btn);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  z-index: 9999;
  transition: top .15s;
}
.skip-link:focus { top: 1rem; }

/* ── 3. TYPOGRAPHY ────────────────────────────────────────── */
h1, .h1 {
  font-family: var(--font-serif);
  font-size: var(--fs-h1);
  font-weight: var(--fw-regular);
  line-height: var(--lh-tight);
  color: var(--navy);
  letter-spacing: -.01em;
}
h2, .h2 {
  font-family: var(--font-serif);
  font-size: var(--fs-h2);
  font-weight: var(--fw-regular);
  line-height: var(--lh-snug);
  color: var(--navy);
}
h3, .h3 {
  font-size: var(--fs-h3);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-normal);
  color: var(--navy);
}
h4, .h4 {
  font-size: var(--fs-body);
  font-weight: var(--fw-semibold);
  color: var(--navy);
}
p { margin-bottom: 1.1em; }
p:last-child { margin-bottom: 0; }

.text-caption {
  font-size: var(--fs-caption);
  line-height: 1.5;
  color: var(--grey-mid);
}
.text-sm { font-size: var(--fs-sm); }
.text-lead {
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
  color: #3a3a4a;
}
.text-white { color: var(--white) !important; }
.text-navy  { color: var(--navy)  !important; }
.text-orange{ color: var(--orange)!important; }
.text-mid   { color: var(--grey-mid) !important; }

/* Orange rule under section headings */
.orange-rule {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--orange);
  margin: 14px 0 28px;
}

/* Pull-quote */
.pull-quote {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: var(--fw-regular);
  line-height: 1.4;
  color: var(--navy);
  border-left: 4px solid var(--orange);
  padding: 1.25rem 1.5rem;
  margin: 2.5rem 0;
  background: var(--grey-light);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
}

/* ── 4. LAYOUT ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section-y);
}
.section--sm   { padding-block: calc(var(--section-y) * .6); }
.section--dark { background: var(--navy); }
.section--grey { background: var(--grey-light); }
.section--navy-dark { background: var(--navy-dark); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gutter); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gutter); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gutter); }
.grid-12{ display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--gutter); }

.col-5  { grid-column: span 5; }
.col-6  { grid-column: span 6; }
.col-7  { grid-column: span 7; }
.col-8  { grid-column: span 8; }
.col-12 { grid-column: span 12; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between{ display: flex; align-items: center; justify-content: space-between; }
.gap-sm { gap: 12px; }
.gap-md { gap: var(--gutter); }
.gap-lg { gap: 48px; }

.mt-sm { margin-top: 16px; }
.mt-md { margin-top: var(--gutter); }
.mt-lg { margin-top: 48px; }
.mb-sm { margin-bottom: 16px; }
.mb-md { margin-bottom: var(--gutter); }
.mb-lg { margin-bottom: 48px; }

.ta-center { text-align: center; }

/* ── 5. BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: var(--fw-semibold);
  letter-spacing: .02em;
  line-height: 1;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  text-align: center;
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}
.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--lg { padding: 18px 36px; font-size: 16px; }

.btn--primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--primary:hover {
  background: #0d2d7a;
  border-color: #0d2d7a;
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--navy);
}
.btn--secondary:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn--orange:hover {
  background: #e05e00;
  border-color: #e05e00;
  box-shadow: var(--shadow-md);
}

.btn--white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--grey-light);
  border-color: var(--grey-light);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: transparent;
  padding-inline: 0;
}
.btn--ghost:hover { color: var(--orange); }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ── 6. NAVIGATION ────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--grey-border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}
.nav__brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
  text-decoration: none;
}
.nav__logo-wordmark {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--navy);
  letter-spacing: -.01em;
}
.nav__logo-sub {
  font-size: 11px;
  font-weight: var(--fw-semibold);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  position: relative;
  padding-bottom: 3px;
}
.nav__logo-sub::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav__link {
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: var(--navy-dark);
  padding: 8px 12px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav__link:hover,
.nav__link.active {
  color: var(--navy);
  background: var(--grey-light);
}
.nav__link.active { font-weight: var(--fw-semibold); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.lang-toggle {
  font-size: 13px;
  font-weight: var(--fw-semibold);
  color: var(--grey-mid);
  padding: 6px 10px;
  border-radius: 6px;
  transition: background var(--transition);
  letter-spacing: .04em;
}
.lang-toggle:hover { background: var(--grey-light); }
.lang-toggle .active { color: var(--navy); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 6px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: fixed;
  inset: 72px 0 0 0;
  background: var(--white);
  z-index: 999;
  padding: 24px var(--gutter);
  overflow-y: auto;
  border-top: 1px solid var(--grey-border);
}
.nav__mobile.open { display: block; }
.nav__mobile .nav__link {
  display: block;
  padding: 14px 16px;
  font-size: 16px;
  border-radius: 8px;
  margin-bottom: 4px;
}
.nav__mobile .nav__actions {
  margin-top: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.nav__mobile .btn { width: 100%; justify-content: center; }

/* ── 7. HERO ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--white);
}
/* Mondrian grid overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right,  rgba(10, 36, 99, .18) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10, 36, 99, .18) 1px, transparent 1px);
  background-size: 140px 90px;
  pointer-events: none;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 64px;
  align-items: center;
  padding-block: 96px 80px;
}
.hero__content { max-width: 700px; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: var(--fw-semibold);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--orange);
}
.hero h1 { margin-bottom: 24px; }
.hero__sub {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.6;
  color: #4a4a5a;
  margin-bottom: 36px;
  max-width: 580px;
}
.hero__image {
  position: relative;
}
.hero__image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--grey-light);
}

/* ── 8. TRUST BAR ─────────────────────────────────────────── */
.trust-bar {
  background: var(--grey-light);
  border-top: 1px solid var(--grey-border);
  border-bottom: 1px solid var(--grey-border);
  padding-block: 0;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  height: 72px;
  overflow-x: auto;
  scrollbar-width: none;
}
.trust-bar__inner::-webkit-scrollbar { display: none; }
.trust-bar__item {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  height: 100%;
  white-space: nowrap;
  font-size: 13px;
  font-weight: var(--fw-semibold);
  color: var(--navy);
  letter-spacing: .03em;
  position: relative;
}
.trust-bar__item + .trust-bar__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--grey-border);
}

/* ── 9. SECTION HEADERS ───────────────────────────────────── */
.section-header { margin-bottom: 56px; }
.section-header--center { text-align: center; }
.section-header--center .orange-rule { margin-inline: auto; }

/* ── 10. CARDS ────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-border);
  transition: box-shadow var(--transition), transform var(--transition);
  overflow: hidden;
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

/* Service card */
.card--service {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}
.card--service .card__icon {
  width: 52px;
  height: 52px;
  background: var(--grey-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--navy);
  font-size: 24px;
  flex-shrink: 0;
}
.card--service h3 { margin-bottom: 12px; }
.card--service p  {
  font-size: 15px;
  color: #4a4a5a;
  flex: 1;
  margin-bottom: 20px;
}
.card--service .btn--ghost {
  font-size: 14px;
  font-weight: var(--fw-semibold);
  color: var(--navy);
}
.card--service .btn--ghost:hover { color: var(--orange); }

/* Sector card */
.card--sector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 28px 20px;
  text-align: center;
  cursor: default;
}
.card--sector .card__icon {
  font-size: 28px;
  color: var(--navy);
}
.card--sector span {
  font-size: 14px;
  font-weight: var(--fw-semibold);
  color: var(--navy);
  line-height: 1.3;
}
.card--sector:hover {
  background: var(--navy);
  border-color: var(--navy);
}
.card--sector:hover .card__icon,
.card--sector:hover span { color: var(--white); }

/* Stats/ranking cards (on dark bg) */
.stat-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  text-align: center;
}
.stat-card__number {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: var(--fw-regular);
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card__label {
  font-size: 13px;
  font-weight: var(--fw-semibold);
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 6px;
}
.stat-card__sub {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  line-height: 1.4;
}

/* Blog card */
.card--blog { display: flex; flex-direction: column; }
.card--blog .card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--grey-light);
}
.card--blog .card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.card--blog:hover .card__img img { transform: scale(1.04); }
.card--blog .card__body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card--blog h3 {
  font-size: 18px;
  margin-bottom: 10px;
  flex: 1;
}
.card--blog .card__excerpt {
  font-size: 14px;
  color: #5a5a6a;
  line-height: 1.55;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card--blog .card__meta {
  font-size: 12px;
  color: var(--grey-mid);
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--grey-border);
}

/* Job card */
.card--job { padding: 28px 24px; display: flex; flex-direction: column; }
.card--job__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.card--job h3 { font-size: 17px; line-height: 1.35; }
.card--job__dept {
  font-size: 11px;
  font-weight: var(--fw-semibold);
  color: var(--grey-mid);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 6px;
}
.card--job__desc {
  font-size: 14px;
  color: #5a5a6a;
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card--job__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--grey-border);
  margin-top: auto;
}
.card--job__salary { font-size: 13px; font-weight: var(--fw-semibold); color: var(--navy); }

/* Case study card */
.card--case { padding: 32px 28px; display: flex; flex-direction: column; }
.card--case .card__result {
  font-family: var(--font-serif);
  font-size: 40px;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.card--case h3 { font-size: 17px; margin-bottom: 10px; }
.card--case .card__challenge {
  font-size: 14px;
  color: #5a5a6a;
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}
.card--case__footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--grey-border);
}

/* ── 11. BADGES ───────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--grey-light);
  color: var(--navy);
  white-space: nowrap;
}
.badge--orange { background: #FFF2E8; color: #C55000; }
.badge--blue   { background: #E8EEF7; color: var(--navy); }
.badge--green  { background: #E6F4E8; color: #1a6b27; }
.badge--purple { background: #F0E8F7; color: #5a2d82; }
.badge--red    { background: #FDE8E9; color: #9b2228; }
.badge--teal   { background: #E0F4F3; color: #1a6b60; }
.badge--remote { background: #EAF7EA; color: #1a6b27; }

.badge--cat-strategie   { background: #E8EEF7; color: var(--navy); }
.badge--cat-regelgeving { background: #FDE8E9; color: #9b2228; }
.badge--cat-ai          { background: #E8F0E8; color: #1a6b27; }
.badge--cat-sectoren    { background: #F0E8F7; color: #5a2d82; }
.badge--cat-hr          { background: #FFF2E8; color: #C55000; }

/* ── 12. RANKINGS PROOF BLOCK ─────────────────────────────── */
.rankings-block {
  background: var(--navy);
  padding-block: var(--section-y);
}
.rankings-block .section-header h2,
.rankings-block .section-header p { color: var(--white); }
.rankings-source {
  text-align: center;
  margin-top: 32px;
  font-size: var(--fs-caption);
  color: rgba(255,255,255,.5);
}
.rankings-source a { color: rgba(255,255,255,.7); text-decoration: underline; }

/* ── 13. SECTOR STRIP ─────────────────────────────────────── */
.sectors-strip {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}

/* ── 14. CTA BANNER ───────────────────────────────────────── */
.cta-banner {
  background: var(--orange);
  padding-block: 72px;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 28px; }
.cta-banner p  { color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 32px; }

/* ── 15. FOOTER ───────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.8);
  padding-block: 72px 40px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer__brand .nav__logo-wordmark { color: var(--white); display: block; margin-bottom: 4px; }
.footer__brand .nav__logo-sub     { color: var(--orange); }
.footer__brand .nav__logo-sub::after { background: var(--orange); }
.footer__tagline {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  margin-top: 16px;
  line-height: 1.6;
  max-width: 260px;
}
.footer__heading {
  font-size: 12px;
  font-weight: var(--fw-semibold);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.footer__links li { margin-bottom: 10px; }
.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }
.footer__contact p,
.footer__contact a {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  display: block;
  margin-bottom: 8px;
  transition: color var(--transition);
}
.footer__contact a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__lang {
  display: flex;
  gap: 12px;
  font-size: 13px;
}
.footer__lang a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer__lang a:hover { color: var(--white); }
.footer__legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,.4);
}
.footer__legal a { color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer__legal a:hover { color: rgba(255,255,255,.8); }
.footer__copy { font-size: 12px; color: rgba(255,255,255,.35); }

/* ── 16. FORMS ────────────────────────────────────────────── */
.form-grid {
  display: grid;
  gap: 20px;
}
.form-grid--2 { grid-template-columns: 1fr 1fr; }
.form-row { display: flex; gap: 16px; }
.form-row > * { flex: 1; }

.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 14px;
  font-weight: var(--fw-semibold);
  color: var(--navy);
}
.form-field label .req {
  color: var(--red);
  margin-left: 2px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  color: var(--navy-dark);
  background: var(--white);
  border: 1.5px solid var(--grey-border);
  border-radius: 8px;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238C8C88' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10,36,99,.12);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field .error-msg {
  font-size: 12px;
  color: var(--red);
  display: none;
}
.form-field.invalid input,
.form-field.invalid textarea,
.form-field.invalid select { border-color: var(--red); }
.form-field.invalid .error-msg { display: block; }

.form-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--navy);
  margin-top: 2px;
  cursor: pointer;
}
.form-check label {
  font-size: 13px;
  line-height: 1.55;
  color: #5a5a6a;
  cursor: pointer;
}
.form-check label a { color: var(--navy); text-decoration: underline; }

.form-success {
  display: none;
  background: #E6F4E8;
  border: 1px solid #b3d9b5;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  color: #1a5c22;
}
.form-success.visible { display: block; }
.form-error {
  display: none;
  background: #FDE8E9;
  border: 1px solid #f5b3b8;
  border-radius: 12px;
  padding: 16px;
  font-size: 14px;
  color: #9b2228;
}
.form-error.visible { display: block; }

/* Contact panel */
.contact-panel {
  background: var(--grey-light);
  border-radius: var(--radius-card);
  padding: 36px;
  height: fit-content;
}
.contact-panel h3 { margin-bottom: 20px; }
.contact-panel__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-panel__icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--navy);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.contact-panel__item p { font-size: 14px; line-height: 1.55; }
.contact-panel__item a { color: var(--navy); font-weight: var(--fw-semibold); }
.contact-panel__item a:hover { color: var(--orange); }

/* Government callout */
.gov-panel {
  margin-top: 24px;
  border: 1.5px solid var(--grey-border);
  border-radius: 12px;
  overflow: hidden;
}
.gov-panel summary {
  font-size: 14px;
  font-weight: var(--fw-semibold);
  color: var(--navy);
  padding: 14px 16px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--grey-light);
  transition: background var(--transition);
}
.gov-panel summary:hover { background: #eaeae4; }
.gov-panel summary::after {
  content: '▾';
  margin-left: auto;
  transition: transform var(--transition);
}
details[open] .gov-panel summary::after { transform: rotate(180deg); }
.gov-panel__body { padding: 16px; font-size: 14px; color: #4a4a5a; line-height: 1.65; }
.gov-panel__body a { color: var(--navy); font-weight: var(--fw-semibold); }

/* ── 17. COOKIE CONSENT ───────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: var(--navy-dark);
  color: rgba(255,255,255,.9);
  padding: 20px var(--gutter);
  display: none;
  box-shadow: 0 -4px 24px rgba(0,0,0,.3);
}
.cookie-banner.visible { display: block; }
.cookie-banner__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner__text { font-size: 13px; line-height: 1.6; flex: 1; min-width: 240px; }
.cookie-banner__text a { color: rgba(255,255,255,.7); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }

/* ── 18. JOB BOARD FILTERS ────────────────────────────────── */
.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-select {
  padding: 9px 36px 9px 14px;
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: var(--navy);
  background: var(--white);
  border: 1.5px solid var(--grey-border);
  border-radius: 8px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238C8C88' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
  transition: border-color var(--transition);
}
.filter-select:focus { outline: none; border-color: var(--navy); }

/* ── 19. PAGE HERO (inner pages) ──────────────────────────── */
.page-hero {
  background: var(--grey-light);
  padding-block: 80px 72px;
  border-bottom: 1px solid var(--grey-border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right,  rgba(10, 36, 99, .1) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10, 36, 99, .1) 1px, transparent 1px);
  background-size: 100px 70px;
  pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { max-width: 660px; font-size: clamp(15px, 1.6vw, 18px); color: #4a4a5a; line-height: 1.6; }

/* ── 20. SERVICE SECTIONS (diensten) ──────────────────────── */
.service-section {
  padding-block: 72px;
}
.service-section:nth-child(even) { background: var(--grey-light); }
.service-section__header {
  margin-bottom: 32px;
}
.service-section__meta {
  margin-top: 28px;
}
.service-section__meta h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--grey-mid);
  margin-bottom: 10px;
}
.service-section__meta p { font-size: 14px; color: #4a4a5a; margin-bottom: 6px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.service-tag {
  font-size: 12px;
  font-weight: var(--fw-semibold);
  color: var(--navy);
  background: rgba(10,36,99,.07);
  padding: 4px 12px;
  border-radius: 100px;
}

/* ── 21. SECTOR DEEP DIVE ─────────────────────────────────── */
.sector-card-full {
  padding: 40px;
  margin-bottom: 28px;
}
.sector-card-full__header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.sector-card-full__icon {
  font-size: 32px;
  color: var(--navy);
  flex-shrink: 0;
  margin-top: 4px;
}
.sector-card-full .results-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--grey-border);
}
.results-row__item { text-align: center; }
.results-row__num {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.results-row__label { font-size: 12px; color: var(--grey-mid); }

/* ── 22. VALUES PILLARS ───────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card {
  padding: 32px 24px;
  border-left: 3px solid var(--orange);
  background: var(--grey-light);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
}
.value-card h3 { margin-bottom: 10px; }
.value-card p  { font-size: 14px; color: #4a4a5a; line-height: 1.65; }

/* ── 23. PRIVACY PAGE ─────────────────────────────────────── */
.prose { max-width: 780px; }
.prose h2 { margin-top: 48px; margin-bottom: 16px; }
.prose h3 { margin-top: 32px; margin-bottom: 12px; color: var(--navy); }
.prose p  { color: #3a3a4a; }
.prose ul { list-style: disc; padding-left: 24px; margin-bottom: 1em; }
.prose ul li { margin-bottom: 6px; font-size: var(--fs-body); color: #3a3a4a; line-height: var(--lh-body); }
.prose a  { color: var(--navy); text-decoration: underline; }
.prose a:hover { color: var(--orange); }

/* ── 24. FRYSK STUB ───────────────────────────────────────── */
.frysk-section { max-width: 680px; }
.frysk-flag {
  width: 56px;
  height: auto;
  border-radius: 4px;
  margin-bottom: 20px;
}

/* ── 25. BLOG / ARTICLE FILTER BAR ───────────────────────── */
.category-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.cat-btn {
  font-size: 13px;
  font-weight: var(--fw-semibold);
  padding: 7px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--grey-border);
  color: var(--grey-mid);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.cat-btn:hover,
.cat-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ── 26. PAGINATION ───────────────────────────────────────── */
.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 56px;
  flex-wrap: wrap;
}
.page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: var(--fw-semibold);
  border: 1.5px solid var(--grey-border);
  border-radius: 8px;
  color: var(--navy);
  cursor: pointer;
  transition: all var(--transition);
}
.page-btn:hover,
.page-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ── 27. FEATURED ARTICLE (wide card) ────────────────────── */
.card--featured {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  margin-bottom: 40px;
}
.card--featured .card__img {
  aspect-ratio: auto;
  height: 100%;
  min-height: 260px;
}
.card--featured .card__body {
  padding: 40px;
  display: flex;
  flex-direction: column;
}
.card--featured h2 { font-family: var(--font-serif); font-size: 26px; margin-bottom: 14px; }
.card--featured .card__excerpt { font-size: 15px; -webkit-line-clamp: 3; }

/* ── 28. SCROLL ANIMATION STUBS ───────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .4s ease, transform .4s 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; }
.fade-up:nth-child(5) { transition-delay: .4s; }
.fade-up:nth-child(6) { transition-delay: .5s; }

@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  .card:hover { transform: none; }
}

/* ── 29. REMOTE WORK DECLARATION ──────────────────────────── */
.remote-decl {
  background: var(--orange);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius-card);
  margin-bottom: 48px;
  font-size: 15px;
  font-weight: var(--fw-semibold);
  line-height: 1.6;
}

/* ── 30. APPLICATION LAYOUT ───────────────────────────────── */
.application-panel {
  background: var(--grey-light);
  border-radius: var(--radius-card);
  padding: 36px;
}
.why-corpshore-list { margin-top: 16px; }
.why-corpshore-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.6;
  color: #3a3a4a;
}
.why-corpshore-list li::before {
  content: '✓';
  color: var(--navy);
  font-weight: var(--fw-bold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── MEDIA QUERIES ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .sectors-strip { grid-template-columns: repeat(4, 1fr); }
  .values-grid   { grid-template-columns: repeat(2, 1fr); }
  .grid-4        { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --section-y: var(--section-y-sm);
  }
  .nav__links   { display: none; }
  .nav__actions { display: none; }
  .nav__hamburger { display: flex; }

  .hero__inner  { grid-template-columns: 1fr; gap: 32px; }
  .hero__image  { display: none; }
  .hero { min-height: auto; }

  .trust-bar__item { padding: 0 16px; font-size: 12px; }

  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }

  .sectors-strip { grid-template-columns: repeat(2, 1fr); }
  .values-grid   { grid-template-columns: 1fr; }

  .footer__grid  { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }

  .card--featured { grid-template-columns: 1fr; }
  .card--featured .card__img { min-height: 200px; }

  .form-grid--2 { grid-template-columns: 1fr; }
  .form-row     { flex-direction: column; }

  .contact-panel { padding: 24px; }
  .application-panel { padding: 24px; }

  .cookie-banner__inner { flex-direction: column; }
}

@media (max-width: 480px) {
  .trust-bar__inner { gap: 0; }
  .trust-bar__item  { padding: 0 12px; font-size: 11px; }
  .sectors-strip { grid-template-columns: repeat(2, 1fr); }
  .stats-row     { grid-template-columns: 1fr; }
  .filter-bar    { flex-direction: column; }
  .filter-select { width: 100%; }
}

/* ══════════════════════════════════════════════════════════════
   DESIGN V2 — Logo lockup · Interactive elements · Typography
   ══════════════════════════════════════════════════════════════ */

/* ── Font upgrade: add Plus Jakarta Sans for UI chrome ───── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700&display=swap');

:root {
  --font-ui: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --shadow-card-hover: 0 16px 48px rgba(10,36,99,.16), 0 4px 12px rgba(10,36,99,.08);
  --orange-glow: 0 0 0 3px rgba(255,107,0,.18);
}

/* ── NAV BRAND: horizontal icon + text lockup ────────────── */
.nav__brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.nav__logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(10,36,99,.12), 0 2px 8px rgba(0,0,0,.1);
  transition: box-shadow var(--transition);
}
.nav__brand:hover .nav__logo-icon { box-shadow: 0 0 0 3px var(--orange), 0 2px 8px rgba(0,0,0,.12); }
.nav__logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}
.nav__logo-wordmark--white { color: var(--white) !important; }

/* ── FOOTER BRAND lockup ─────────────────────────────────── */
.footer__brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 4px;
}
.footer__logo-icon {
  box-shadow: 0 0 0 2px rgba(255,255,255,.2), 0 2px 8px rgba(0,0,0,.2);
}
.footer__brand-link:hover .footer__logo-icon { box-shadow: 0 0 0 3px var(--orange); }

/* ── IMPROVED TYPOGRAPHY ─────────────────────────────────── */
.nav__link { font-family: var(--font-ui); }
.btn        { font-family: var(--font-ui); letter-spacing: .01em; }
.hero__eyebrow { font-family: var(--font-ui); }
.footer__heading { font-family: var(--font-ui); }

/* Better heading letter-spacing */
h1 { letter-spacing: -.02em; }
h2 { letter-spacing: -.015em; }

/* Orange rule — animated grow */
.orange-rule {
  width: 0;
  transition: width .6s cubic-bezier(.22,1,.36,1);
}
.orange-rule.visible { width: 48px; }

/* ── IMPROVED CARDS ──────────────────────────────────────── */
.card {
  transition: box-shadow .3s ease, transform .25s ease;
  will-change: transform;
}
.card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-5px);
}
.card--service {
  position: relative;
  overflow: hidden;
}
.card--service::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), #ff9a40);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.card--service:hover::after { transform: scaleX(1); }
.card--service .card__icon {
  background: linear-gradient(135deg, var(--grey-light), #eeeee8);
  transition: background var(--transition), color var(--transition);
}
.card--service:hover .card__icon {
  background: linear-gradient(135deg, #e8edf8, #d0daf0);
  color: var(--navy);
}

/* Sector cards improved */
.card--sector {
  transition: background .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}
.card--sector:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

/* ── IMPROVED BUTTONS ────────────────────────────────────── */
.btn--primary {
  position: relative;
  overflow: hidden;
}
.btn--primary::after {
  content: '→';
  position: absolute;
  right: -20px;
  opacity: 0;
  transition: right .2s, opacity .2s;
}
.btn--primary:hover::after { right: 18px; opacity: 1; }
.btn--primary:hover { padding-right: 42px; }
.btn--primary { transition: background var(--transition), border-color var(--transition), box-shadow var(--transition), padding-right .2s; }

.btn--ghost {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-ui);
}
.btn--ghost::after { content: '→'; transition: transform .2s; }
.btn--ghost:hover::after { transform: translateX(4px); }

/* ── IMPROVED HERO ───────────────────────────────────────── */
.hero {
  background: linear-gradient(160deg, #f8f8fc 0%, #ffffff 60%);
}
.hero::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,107,0,.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero__content { position: relative; z-index: 1; }
.hero__image   { position: relative; z-index: 1; }
.hero__image::before {
  content: '';
  position: absolute;
  inset: -12px -12px 12px 12px;
  border: 2px solid var(--orange);
  border-radius: var(--radius-card);
  opacity: .25;
  z-index: -1;
}
.hero h1 {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3580 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── HERO ROTATOR ────────────────────────────────────────── */
.hero__rotator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  padding: 7px 14px;
  background: rgba(10,36,99,.05);
  border: 1px solid rgba(10,36,99,.1);
  border-radius: 100px;
  font-size: 13px;
  font-family: var(--font-ui);
}
.rotator__prefix { color: var(--grey-mid); font-weight: 500; }
.rotator__word {
  font-weight: 700;
  color: var(--orange);
  min-width: 140px;
  display: inline-block;
  transition: opacity .28s ease, transform .28s ease;
}
.rotator--exit  { opacity: 0; transform: translateY(-6px); }
.rotator--enter { opacity: 0; transform: translateY(6px); }
.rotator__cursor {
  color: var(--orange);
  font-weight: 700;
  animation: blink .9s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ── SCROLL PROGRESS BAR ─────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--orange), #ff9a40);
  z-index: 9999;
  transition: width .08s linear;
  pointer-events: none;
}

/* ── SCROLL-TO-TOP BUTTON ────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 16px rgba(10,36,99,.3);
  opacity: 0;
  transform: translateY(12px) scale(.9);
  transition: opacity .3s, transform .3s, background .2s;
  z-index: 800;
  cursor: pointer;
  border: none;
}
.scroll-top.visible { opacity: 1; transform: translateY(0) scale(1); }
.scroll-top:hover   { background: var(--orange); box-shadow: 0 4px 20px rgba(255,107,0,.4); }

/* ── SOCIAL PROOF TOAST ──────────────────────────────────── */
.social-toast {
  position: fixed;
  bottom: 88px;
  left: 24px;
  z-index: 850;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-left: 4px solid var(--orange);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  max-width: 300px;
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity .4s ease, transform .4s ease;
  pointer-events: auto;
}
.social-toast.visible { opacity: 1; transform: translateX(0); }
.social-toast__icon { font-size: 22px; flex-shrink: 0; }
.social-toast__text { font-size: 13px; color: #3a3a4a; line-height: 1.45; flex: 1; font-family: var(--font-ui); }
.social-toast__close {
  font-size: 18px; line-height: 1; padding: 0 4px;
  color: var(--grey-mid); background: none; border: none;
  cursor: pointer; flex-shrink: 0;
}
.social-toast__close:hover { color: var(--navy); }

/* ── FLOATING CTA ────────────────────────────────────────── */
.float-cta {
  position: fixed;
  bottom: 84px;
  right: 28px;
  z-index: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  padding: 12px 20px 12px 14px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-ui);
  box-shadow: 0 4px 20px rgba(255,107,0,.4);
  text-decoration: none;
  opacity: 0;
  transform: translateY(14px) scale(.95);
  transition: opacity .35s ease, transform .35s ease, background .2s, box-shadow .2s;
  pointer-events: none;
  white-space: nowrap;
}
.float-cta.visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.float-cta:hover   { background: #e05e00; box-shadow: 0 6px 28px rgba(255,107,0,.5); transform: translateY(-2px) scale(1.02); }
.float-cta__icon   { font-size: 18px; }

/* ── IMPROVED TRUST BAR ──────────────────────────────────── */
.trust-bar {
  background: var(--navy);
  border: none;
}
.trust-bar__item {
  color: rgba(255,255,255,.85);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .03em;
}
.trust-bar__item + .trust-bar__item::before { background: rgba(255,255,255,.15); }

/* ── IMPROVED RANKINGS BLOCK ─────────────────────────────── */
.rankings-block {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2d7a 50%, #0a1f5e 100%);
  position: relative;
  overflow: hidden;
}
.rankings-block::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,107,0,.12) 0%, transparent 70%);
  pointer-events: none;
}
.stat-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  transition: background .25s, border-color .25s, transform .25s;
  backdrop-filter: blur(4px);
}
.stat-card:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,107,0,.5);
  transform: translateY(-4px);
}
.stat-card__number { text-shadow: 0 2px 24px rgba(255,107,0,.3); }

/* ── IMPROVED CTA BANNER ─────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, #e05e00 60%, #c54e00 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -40px;
  width: 250px; height: 250px;
  background: rgba(0,0,0,.06);
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner .btn--primary {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
  position: relative;
  z-index: 1;
}
.cta-banner .btn--primary:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ── IMPROVED PAGE-HERO ──────────────────────────────────── */
.page-hero {
  background: linear-gradient(160deg, #f0f2fa 0%, var(--grey-light) 100%);
}

/* ── ANIMATED ORANGE RULE ────────────────────────────────── */
.section-header .orange-rule { transition-delay: .15s; }
.section-header--center .orange-rule { transition-delay: .2s; }

/* ── VALUE CARDS IMPROVED ────────────────────────────────── */
.value-card {
  border-left: 4px solid var(--orange);
  transition: box-shadow var(--transition), transform var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }

/* ── NAV LINK IMPROVED ───────────────────────────────────── */
.nav__link {
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 12px; right: 12px;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform .22s cubic-bezier(.22,1,.36,1);
}
.nav__link:hover::after,
.nav__link.active::after { transform: scaleX(1); }
.nav__link:hover  { background: transparent; color: var(--navy); }
.nav__link.active { background: transparent; }

/* ── SCROLL ANIMATION STAGGER IMPROVED ───────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s cubic-bezier(.22,1,.36,1), transform .55s cubic-bezier(.22,1,.36,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(1) { transition-delay: 0s; }
.fade-up:nth-child(2) { transition-delay: .08s; }
.fade-up:nth-child(3) { transition-delay: .16s; }
.fade-up:nth-child(4) { transition-delay: .24s; }
.fade-up:nth-child(5) { transition-delay: .32s; }
.fade-up:nth-child(6) { transition-delay: .40s; }

/* ── MOBILE ADJUSTMENTS ──────────────────────────────────── */
@media (max-width: 768px) {
  .float-cta .float-cta__label { display: none; }
  .float-cta { padding: 14px; border-radius: 50%; bottom: 88px; }
  .social-toast { left: 12px; right: 12px; max-width: none; }
  .hero h1 {
    -webkit-text-fill-color: var(--navy);
    background: none;
  }
}
@media (max-width: 480px) {
  .float-cta { bottom: 80px; right: 20px; }
  .scroll-top { bottom: 20px; right: 20px; }
}

/* ══════════════════════════════════════════════════════════════
   INTERACTIVE TOOLS v1
   BPO Calculator · Readiness Quiz · Language Checker ·
   Instant Quote · Service Recommender
   ══════════════════════════════════════════════════════════════ */

/* ── SHARED TOOL SHELL ───────────────────────────────────────── */
.tool-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  font-family: var(--font-ui);
}
.tool-eyebrow::before { content: ''; display:block; width:20px; height:2px; background:var(--orange); border-radius:1px; }

/* ── BESPARINGSCALCULATOR ────────────────────────────────────── */
.calc-widget {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 20px;
  padding: 44px;
  box-shadow: 0 8px 40px rgba(10,36,99,.08);
  max-width: 1000px;
  margin-inline: auto;
}
.calc-body {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 52px;
  align-items: start;
  margin-bottom: 32px;
}
.calc-inputs { display: flex; flex-direction: column; gap: 28px; }
.calc-field  { display: flex; flex-direction: column; gap: 10px; }
.calc-label  {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  font-family: var(--font-ui);
}
.calc-val {
  background: var(--navy);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-ui);
  min-width: 64px;
  text-align: center;
}
.calc-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 5px;
  border-radius: 3px;
  background: var(--grey-border);
  outline: none;
  cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--navy);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(10,36,99,.25);
  transition: transform .15s, background .15s;
}
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.25); background: var(--orange); }
.calc-slider::-moz-range-thumb {
  width:20px; height:20px; border-radius:50%; background:var(--navy); border:none; cursor:pointer;
}
.calc-range-labels { display:flex; justify-content:space-between; font-size:11px; color:var(--grey-mid); font-family:var(--font-ui); }

.calc-results { display:flex; flex-direction:column; gap:10px; }
.calc-result-card {
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--grey-light);
  border: 1px solid var(--grey-border);
}
.calc-result-card--corps {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2d7a 100%);
  border-color: transparent;
}
.calc-result-card--save {
  background: linear-gradient(135deg, #e8f5ea, #d4edda);
  border-color: #b3d9b5;
}
.calc-result-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--grey-mid);
  font-family: var(--font-ui);
}
.calc-result-card--corps .calc-result-eyebrow { color: rgba(255,255,255,.6); }
.calc-result-card--save .calc-result-eyebrow  { color: #2a6b35; }

.calc-result-amount {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--navy);
  transition: color .15s;
}
.calc-result-amount--white { color: var(--white); }
.calc-result-amount--green { color: #1a6b27; font-size: 26px; font-weight: 400; }

.calc-result-sub {
  font-size: 11px;
  color: var(--grey-mid);
  font-family: var(--font-ui);
}
.calc-result-sub--light { color: rgba(255,255,255,.6); }

.calc-result-vs {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--grey-mid);
  letter-spacing: .08em;
  font-family: var(--font-ui);
}
.calc-disclaimer {
  font-size: 12px;
  color: var(--grey-mid);
  text-align: center;
  margin-bottom: 28px;
  line-height: 1.55;
  font-family: var(--font-ui);
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 28px;
}
.calc-cta { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

@media (max-width: 768px) {
  .calc-body { grid-template-columns: 1fr; gap: 32px; }
  .calc-widget { padding: 24px; }
}

/* ── GEREEDHEIDSCHECK QUIZ ───────────────────────────────────── */
.quiz-steps-preview {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.qsp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #3a3a4a;
  font-family: var(--font-ui);
}
.qsp-num {
  width: 28px; height: 28px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  font-family: var(--font-ui);
}
.qsp-num--active { background: var(--orange); }

.quiz-widget { min-height: 330px; }
.quiz-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--grey-border);
  box-shadow: 0 4px 24px rgba(10,36,99,.08);
  transition: opacity .25s, transform .25s;
}
.quiz-progress {
  height: 4px;
  background: var(--grey-border);
  border-radius: 2px;
  margin-bottom: 20px;
  overflow: hidden;
}
.quiz-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--navy), var(--orange));
  border-radius: 2px;
  transition: width .5s cubic-bezier(.22,1,.36,1);
}
.quiz-step-label {
  font-size: 11px;
  color: var(--grey-mid);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: var(--font-ui);
}
.quiz-question {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 20px;
}
.quiz-opts { display: flex; flex-direction: column; gap: 8px; }
.quiz-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1.5px solid var(--grey-border);
  border-radius: 10px;
  text-align: left;
  cursor: pointer;
  background: var(--white);
  font-size: 14px;
  color: #3a3a4a;
  transition: border-color .18s, background .18s, transform .15s;
  font-family: var(--font-ui);
  width: 100%;
}
.quiz-opt:hover { border-color: var(--navy); background: rgba(10,36,99,.03); transform: translateX(3px); }
.quiz-opt__letter {
  width: 26px; height: 26px;
  border-radius: 6px;
  background: var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
  transition: background .15s, color .15s;
}
.quiz-opt:hover .quiz-opt__letter { background: var(--navy); color: var(--white); }

.quiz-result {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--grey-border);
  box-shadow: 0 4px 24px rgba(10,36,99,.08);
}
.quiz-result__badge {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #1a7a2c, #2aaa3e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
  margin-bottom: 16px;
}
.quiz-result__title { font-family: var(--font-serif); font-size: 22px; color: var(--navy); margin-bottom: 10px; }
.quiz-result__text  { font-size: 14px; line-height: 1.65; color: #3a3a4a; margin-bottom: 16px; font-family: var(--font-ui); }
.quiz-result__service {
  display: inline-flex;
  gap: 6px;
  font-size: 13px;
  padding: 6px 14px;
  background: rgba(10,36,99,.06);
  border-radius: 100px;
  color: var(--navy);
  margin-bottom: 20px;
  font-family: var(--font-ui);
}
.quiz-result__actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── LANGUAGE CHECKER ────────────────────────────────────────── */
.lang-checker {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--grey-border);
  padding: 36px;
  box-shadow: 0 4px 24px rgba(10,36,99,.07);
}
.lang-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}
.lang-tag {
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-ui);
  cursor: pointer;
  border: 1.5px solid var(--grey-border);
  background: var(--white);
  color: var(--navy);
  transition: all .18s;
  user-select: none;
}
.lang-tag:hover  { border-color: var(--navy); background: rgba(10,36,99,.04); }
.lang-tag.selected { background: var(--navy); border-color: var(--navy); color: var(--white); }
.lang-tag.selected:hover { background: var(--orange); border-color: var(--orange); }
.lang-checker-result {
  padding: 16px 20px;
  border-radius: 12px;
  background: var(--grey-light);
  font-size: 14px;
  color: #3a3a4a;
  font-family: var(--font-ui);
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background .2s;
}
.lang-checker-result.good { background: #e8f5ea; color: #1a6b27; }
.lang-checker-result.warn { background: #fff8e6; color: #7a5700; }
.lang-checker-count {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 4px;
}

/* ── INSTANT QUOTE (contact page) ────────────────────────────── */
.iq-widget {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--grey-border);
  padding: 36px;
  box-shadow: 0 4px 24px rgba(10,36,99,.07);
  max-width: 720px;
}
.iq-steps { display: flex; gap: 8px; margin-bottom: 28px; }
.iq-step-dot {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: var(--grey-border);
  transition: background .3s;
}
.iq-step-dot.done   { background: var(--navy); }
.iq-step-dot.active { background: var(--orange); }
.iq-question { font-family: var(--font-serif); font-size: 20px; color: var(--navy); margin-bottom: 20px; }
.iq-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.iq-option {
  padding: 14px 16px;
  border: 1.5px solid var(--grey-border);
  border-radius: 12px;
  cursor: pointer;
  background: var(--white);
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  font-family: var(--font-ui);
  transition: all .18s;
}
.iq-option:hover { border-color: var(--navy); background: rgba(10,36,99,.04); }
.iq-option.selected { background: var(--navy); border-color: var(--navy); color: var(--white); }
.iq-result {
  padding: 24px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f0f4fb, #e8eef8);
  border: 1px solid rgba(10,36,99,.12);
}
.iq-result-label { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--grey-mid); margin-bottom: 8px; font-family: var(--font-ui); }
.iq-result-range { font-family: var(--font-serif); font-size: 28px; color: var(--navy); margin-bottom: 6px; }
.iq-result-detail { font-size: 13px; color: #4a4a5a; margin-bottom: 20px; line-height: 1.5; font-family: var(--font-ui); }

@media (max-width: 600px) {
  .iq-options { grid-template-columns: 1fr; }
  .lang-grid  { gap: 6px; }
  .quiz-widget { min-height: 280px; }
}

/* ── FAQ ACCORDION ───────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--grey-border);
  padding: 0;
}
.faq-item:first-child { border-top: 1px solid var(--grey-border); }
.faq-question {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform .2s ease;
}
details[open] .faq-question::after { content: '−'; }
.faq-answer {
  font-size: 15px;
  color: #3a3a4a;
  line-height: 1.7;
  padding: 0 0 20px 0;
  font-family: var(--font-ui);
  max-width: 720px;
}
