/* ==========================================================================
   KSV Facilitair — Stylesheet (Asito-inspired, BEM)
   ========================================================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ---------- Custom Properties ---------- */
:root {
  /* Colors */
  --color-primary:       #002B53;
  --color-accent:        #74C5EC;
  --color-accent-hover:  #5AB0D9;
  --color-secondary:     #E61914;
  --color-white:         #FFFFFF;
  --color-bg:            #FFFFFF;
  --color-bg-alt:        #F5F5F5;
  --color-text:          #333333;
  --color-text-heading:  #002B53;
  --color-text-secondary:#666666;
  --color-border:        #E0E0E0;

  /* Typography */
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --text-base:    1rem;
  --leading:      1.6;

  /* Layout */
  --container-max: 1200px;
  --section-py:    5rem;
  --radius:        0.8rem;
  --radius-sm:     0.4rem;
  --transition:    0.3s ease;

  /* Header heights */
  --top-bar-h:     36px;
  --header-h:      72px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading);
  color: var(--color-text);
  background-color: var(--color-bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-accent-hover);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text-heading);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.15rem; }

p {
  margin-bottom: 1rem;
}

ul, ol {
  padding-left: 1.5rem;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  background: #001a33;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  height: var(--top-bar-h);
  display: flex;
  align-items: center;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.top-bar__contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar__contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  transition: color var(--transition);
}

.top-bar__contact a:hover {
  color: var(--color-white);
}

.top-bar__contact svg {
  flex-shrink: 0;
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.header {
  position: fixed;
  top: var(--top-bar-h);
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--color-primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 0 1.5rem;
  height: var(--header-h);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.35rem;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.header__logo:hover {
  color: var(--color-white);
}

.header__logo-text {
  font-weight: 800;
}

.header__logo-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-radius: 2rem;
  padding: 0.35rem 1.2rem;
  height: 44px;
  border: 2px solid var(--color-accent);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.header__logo:hover .header__logo-pill {
  box-shadow: 0 4px 16px rgba(116, 197, 236, 0.2);
  border-color: #ff7a33;
}

.header__logo-pill img {
  height: 26px;
  width: auto;
  display: block;
}

/* Nav container */
.header__nav {
  display: flex;
  align-items: center;
}

/* Nav list */
.nav__list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav__item {
  position: relative;
}

/* Nav link (both <a> and <button>) */
.nav__link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
  background: none;
  border: none;
  font-family: var(--font-body);
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--color-white);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

/* Dropdown toggle chevron */
.nav__dropdown-toggle svg {
  transition: transform var(--transition);
}

.nav__item--open .nav__dropdown-toggle svg {
  transform: rotate(180deg);
}

/* Dropdown menu */
.nav__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  padding: 0.5rem 0;
  list-style: none;
  z-index: 100;
}

.nav__dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--color-white);
}

.nav__item--open .nav__dropdown {
  display: block;
}

.nav__dropdown li {
  margin: 0;
}

.nav__dropdown a {
  display: block;
  padding: 0.6rem 1.2rem;
  color: var(--color-text);
  font-size: 0.9rem;
  transition: background var(--transition), color var(--transition);
}

.nav__dropdown a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

/* Header CTA button - oranje accent */
a.btn.header__cta {
  margin-left: 1.5rem;
  background: var(--color-accent) !important;
  color: var(--color-white) !important;
  padding: 0.65rem 1.5rem;
  border-radius: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
}

a.btn.header__cta:hover {
  background: var(--color-accent-hover) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(116, 197, 236, 0.35);
}

/* Hamburger */
.header__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.header__hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.header__hamburger--active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__hamburger--active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger--active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition), color var(--transition);
  text-decoration: none;
}

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

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn--primary:hover {
  background: #003a6e;
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(0, 43, 83, 0.3);
}

.btn--accent {
  background: var(--color-accent);
  color: #002B53;
}

.btn--accent:hover {
  background: var(--color-accent-hover);
  color: #002B53;
  box-shadow: 0 6px 20px rgba(116, 197, 236, 0.4);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
}

.btn--outline:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

/* ==========================================================================
   HERO (Homepage)
   ========================================================================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: calc(var(--top-bar-h) + var(--header-h));
}

.hero--page {
  min-height: 320px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero:hover .hero__bg img {
  transform: scale(1.03);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 43, 83, 0.82) 0%, rgba(0, 43, 83, 0.5) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 4rem 1.5rem;
  color: var(--color-white);
}

.hero__title {
  color: var(--color-white);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  max-width: 700px;
  line-height: 1.1;
  position: relative;
}

.hero__title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-accent);
  border-radius: 2px;
  margin-top: 1rem;
}

.hero__subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 560px;
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.7;
  color: var(--color-white);
}

.hero__cta {
  display: inline-flex;
}

/* Page hero subpage title centering */
.hero--page .hero__content {
  text-align: center;
  width: 100%;
}

.hero--page .hero__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 0.6rem;
  max-width: none;
}

.hero--page .hero__subtitle {
  margin-inline: auto;
  text-align: center;
}

/* ==========================================================================
   PAGE HERO (Subpages — legacy class used in blog, service pages, etc.)
   ========================================================================== */
.page-hero {
  position: relative;
  width: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: calc(var(--top-bar-h) + var(--header-h));
  background: var(--color-primary);
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 43, 83, 0.85) 0%, rgba(0, 43, 83, 0.6) 100%);
  z-index: 1;
}

.page-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 4rem 1.5rem;
  color: var(--color-white);
  text-align: center;
  width: 100%;
}

.page-hero .hero-content h1 {
  color: var(--color-white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 0.6rem;
}

.page-hero .hero-content p {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  margin-inline: auto;
  text-align: center;
  max-width: 560px;
}

/* Legacy hero-overlay and hero-content as standalone (also used outside .page-hero) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 43, 83, 0.82) 0%, rgba(0, 43, 83, 0.5) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 4rem 1.5rem;
  color: var(--color-white);
}

.hero-content h1 {
  color: var(--color-white);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  margin-bottom: 1.2rem;
  max-width: 700px;
  line-height: 1.1;
}

.hero-content p {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 560px;
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ==========================================================================
   BREADCRUMB
   ========================================================================== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  list-style: none;
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.breadcrumb__item {
  display: flex;
  align-items: center;
}

.breadcrumb a {
  color: var(--color-text-secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--color-primary);
}

.breadcrumb li + li::before,
.breadcrumb__list li + li::before {
  content: '>';
  margin-right: 0.5rem;
  color: var(--color-text-secondary);
  font-size: 0.75rem;
}

.breadcrumb li:last-child,
.breadcrumb__item--active {
  color: var(--color-text);
  font-weight: 400;
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section {
  padding: var(--section-py) 0;
}

.section--light {
  background-color: var(--color-bg-alt);
}

/* Legacy alias */
.section-alt {
  background-color: var(--color-bg-alt);
}

.section__title {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--color-text-heading);
}

.section__subtitle {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  color: var(--color-text-secondary);
  margin-bottom: 3rem;
}

/* Legacy: section > .container > p subtitle */
.section > .container > p {
  color: var(--color-text);
}

/* ==========================================================================
   INTRO
   ========================================================================== */
.intro__inner {
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
}

.intro__text {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ==========================================================================
   SERVICES GRID
   ========================================================================== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.service-card__image {
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--transition);
}

.service-card:hover .service-card__image img {
  transform: scale(1.05);
}

.service-card__body {
  padding: 1.5rem;
}

.service-card__title {
  margin-bottom: 0.6rem;
  color: var(--color-text-heading);
}

.service-card__text {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-accent);
  transition: gap var(--transition), color var(--transition);
}

.service-card__link:hover {
  gap: 0.6rem;
  color: var(--color-accent-hover);
}

/* ==========================================================================
   WERKGEBIED (stad-kaarten op donkerblauw)
   ========================================================================== */
.werkgebied-modern {
  background: var(--color-primary);
  padding: var(--section-py) 0;
  overflow: hidden;
}

.city-cards {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 1.5rem 2rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.city-cards::-webkit-scrollbar { display: none; }

.city-card {
  flex: 0 0 220px;
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  transition: all 0.3s ease;
  cursor: default;
}

.city-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.city-card--hq {
  background: rgba(116, 197, 236, 0.12);
  border-color: rgba(116, 197, 236, 0.25);
}

.city-card--hq:hover {
  background: rgba(116, 197, 236, 0.18);
  border-color: rgba(116, 197, 236, 0.35);
}

.city-card__icon {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.city-card--hq .city-card__icon {
  color: var(--color-accent);
}

.city-card__name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.3rem;
}

.city-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: 0.8rem;
}

.city-card:not(.city-card--hq) .city-card__tag {
  color: rgba(255, 255, 255, 0.4);
}

.city-card__desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin: 0;
}

/* Align first card with container */
@media (min-width: 961px) {
  .city-cards {
    padding-left: max(1.5rem, calc((100vw - var(--container-max)) / 2 + 1.5rem));
    padding-right: 3rem;
  }

  .city-card {
    flex: 0 0 240px;
  }
}

@media (max-width: 600px) {
  .city-card {
    flex: 0 0 200px;
    padding: 1.4rem 1.2rem;
  }
}

/* ==========================================================================
   MEGA MENU (Asito-style full-width dropdown)
   ========================================================================== */
.nav__item--mega {
  position: static;
}

.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--color-white);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  z-index: 100;
  border-top: 3px solid var(--color-accent);
}

.nav__item--open .mega-menu {
  display: block;
}

.mega-menu__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 280px;
  gap: 2rem;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.mega-menu__heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border);
}

.mega-menu__link {
  display: block;
  padding: 0.6rem 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: padding-left var(--transition);
}

.mega-menu__link:hover {
  padding-left: 0.5rem;
}

.mega-menu__link strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-text-heading);
  transition: color var(--transition);
}

.mega-menu__link:hover strong {
  color: var(--color-accent);
}

.mega-menu__link span {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
}

/* Visual column with image */
.mega-menu__visual {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-bg-alt);
  display: flex;
  flex-direction: column;
}

.mega-menu__visual img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center 20%;
}

.mega-menu__visual-text {
  padding: 1rem;
}

.mega-menu__visual-text strong {
  display: block;
  font-size: 0.92rem;
  color: var(--color-text-heading);
  margin-bottom: 0.2rem;
}

.mega-menu__visual-text span {
  display: block;
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  margin-bottom: 0.6rem;
}

.mega-menu__visual-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-accent);
}

/* Compact variant (2 columns for smaller menus) */
.mega-menu__inner--compact {
  grid-template-columns: 1fr 280px;
}

@media (max-width: 960px) {
  .mega-menu {
    position: static;
    box-shadow: none;
    border-top: none;
    background: rgba(255, 255, 255, 0.05);
  }

  .mega-menu__inner {
    grid-template-columns: 1fr;
    padding: 0.5rem 0 0.5rem 1rem;
    gap: 0;
  }

  .mega-menu__visual {
    display: none;
  }

  .mega-menu__heading {
    color: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.08);
    margin-top: 0.5rem;
  }

  .mega-menu__link {
    border-color: rgba(255, 255, 255, 0.05);
  }

  .mega-menu__link strong {
    color: rgba(255, 255, 255, 0.85);
  }

  .mega-menu__link span {
    color: rgba(255, 255, 255, 0.5);
  }
}

.werkgebied__map img {
  border-radius: var(--radius);
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  object-position: center top;
}

/* Old values grid + value-card removed - replaced by modern vcard component (values-modern section) */

/* ==========================================================================
   TEAM GRID
   ========================================================================== */
.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.team-card {
  text-align: center;
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition), transform var(--transition);
}

.team-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.team-card__image {
  overflow: hidden;
}

.team-card__image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--transition);
}

.team-card:hover .team-card__image img {
  transform: scale(1.03);
}

.team-card__name {
  font-size: 1.1rem;
  margin: 1.2rem 1.2rem 0.25rem;
  color: var(--color-text-heading);
}

.team-card__role {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  padding: 0 1.2rem 1.2rem;
}

.team__cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ==========================================================================
   SLIDER (Asito-style swipeable cards)
   ========================================================================== */
.slider {
  position: relative;
  overflow: hidden;
  padding: 0 0 1rem;
}

.slider__track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 1.5rem 1.5rem max(1.5rem, calc((100vw - 1200px) / 2 + 1.5rem));
  cursor: grab;

  /* Hide scrollbar but keep scrollable */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.slider__track::-webkit-scrollbar {
  display: none;
}

.slider__track:active {
  cursor: grabbing;
}

.slider__card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition), transform var(--transition);
}

.slider__card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.slider__card-image {
  background: var(--color-bg-alt);
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  position: relative;
}

.slider__card-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
  border-radius: var(--radius) var(--radius) 0 0;
}

.slider__card:hover .slider__card-image img {
  transform: scale(1.03);
}

/* Rode accent-lijn onder de foto (Asito-stijl) */
.slider__card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-accent);
}

.slider__card-body {
  padding: 1.2rem 1.4rem 1.4rem;
}

.slider__card-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.slider__card-tags span {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  background: var(--color-bg-alt);
  padding: 0.2rem 0.65rem;
  border-radius: 3px;
  border: 1px solid var(--color-border);
  text-transform: lowercase;
}

.slider__card-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-heading);
  margin-bottom: 0.2rem;
  line-height: 1.3;
}

.slider__card-role {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
}

.slider__card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--transition);
}

.slider__card-link:hover {
  color: var(--color-accent);
}

.slider__card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background: var(--color-accent);
  color: var(--color-white);
  flex-shrink: 0;
  transition: background var(--transition);
}

.slider__card-arrow svg {
  stroke: var(--color-white);
}

.slider__card-link:hover .slider__card-arrow {
  background: var(--color-accent-hover);
}

@media (min-width: 961px) {
  .slider__card {
    flex: 0 0 300px;
  }
}

@media (max-width: 600px) {
  .slider__card {
    flex: 0 0 260px;
  }

  .slider__card-image img {
    height: 280px;
  }

  .slider__track {
    gap: 1rem;
    padding: 0.5rem 1rem 1.5rem;
  }
}

/* Legacy team selectors */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.team-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.team-card .team-function {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}

.team-card .team-info {
  padding: 1.2rem;
}

/* ==========================================================================
   DUURZAAMHEID
   ========================================================================== */
.duurzaamheid__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.duurzaamheid__text .section__title {
  text-align: left;
}

.duurzaamheid__text p {
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
}

.duurzaamheid__image img {
  border-radius: var(--radius);
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center top;
}

/* ==========================================================================
   CAREER / WERKEN-BIJ PAGE
   ========================================================================== */
.career-hero {
  padding: 1rem 0 3rem;
  margin-top: calc(var(--top-bar-h) + var(--header-h));
}

.career-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 380px;
}

.career-hero__content {
  max-width: 540px;
  padding: 2rem 0;
}

.career-hero__title {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--color-text-heading);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  position: relative;
}

/* Oranje accent-lijn onder de titel */
.career-hero__title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-accent);
  border-radius: 2px;
  margin-top: 1rem;
}

.career-hero__text {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 480px;
}

.career-hero__image {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 43, 83, 0.12);
  aspect-ratio: 4 / 3;
}

.career-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Career topic cards (photo overlay grid like SWD) */
.career-topics {
  padding: 3rem 0;
}

.career-topics__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-heading);
  margin-bottom: 1.5rem;
}

.career-topics__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.career-topic-card {
  position: relative;
  border-radius: 0.6rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.career-topic-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}

.career-topic-card:hover img {
  transform: scale(1.05);
}

.career-topic-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  pointer-events: none;
}

.career-topic-card__label {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  right: 1.2rem;
  z-index: 1;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
}

/* Vacancy cards modern */
.vacancy-card-modern {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 0.8rem;
  padding: 2rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.vacancy-card-modern:hover {
  box-shadow: 0 8px 24px rgba(0,43,83,0.1);
  transform: translateY(-3px);
}

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

.vacancy-card-modern__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text-heading);
}

.vacancy-card-modern__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.vacancy-card-modern__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  background: var(--color-bg-light);
  padding: 0.35rem 0.75rem;
  border-radius: 2rem;
}

.vacancy-card-modern__tag svg {
  flex-shrink: 0;
}

.vacancy-card-modern__text {
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.vacancy-card-modern__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: gap 0.2s ease;
}

.vacancy-card-modern__link:hover {
  gap: 0.75rem;
}

.vacancies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

@media (max-width: 960px) {
  .career-hero__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    min-height: auto;
  }

  .career-hero__content {
    max-width: 100%;
    padding: 1rem 0;
  }

  .career-hero__image {
    max-height: 300px;
  }

  .career-topics__grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 600px) {
  .career-hero {
    padding: 1rem 0 1.5rem;
  }

  .career-hero__title {
    font-size: 1.8rem;
  }
}

/* ==========================================================================
   QUOTE BANNER (full-width image with text overlay)
   ========================================================================== */
.quote-banner {
  position: relative;
  width: 100%;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.quote-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
}

.quote-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,43,83,0.88) 0%, rgba(0,43,83,0.65) 40%, rgba(0,43,83,0.15) 65%, transparent 100%);
}

.quote-banner__content {
  position: relative;
  z-index: 1;
  max-width: 50%;
  padding: 3rem 4rem;
}

.quote-banner__quote {
  font-size: clamp(1.3rem, 2.8vw, 1.85rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin: 0;
  border: none;
  padding: 0;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

@media (max-width: 960px) {
  .quote-banner {
    min-height: 400px;
  }

  .quote-banner__content {
    padding: 2rem;
    max-width: 70%;
  }

  .quote-banner__overlay {
    background: linear-gradient(90deg, rgba(0,43,83,0.85) 0%, rgba(0,43,83,0.5) 60%, transparent 100%);
  }
}

@media (max-width: 600px) {
  .quote-banner {
    min-height: 340px;
  }

  .quote-banner__content {
    max-width: 100%;
  }

  .quote-banner__overlay {
    background: rgba(0,43,83,0.7);
  }

  .quote-banner__quote {
    font-size: 1.15rem;
  }
}

/* ==========================================================================
   INSTAGRAM SECTION
   ========================================================================== */
.instagram-section {
  padding: 4rem 0;
  background: var(--color-bg-light);
}

.instagram-section__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.instagram-section__intro h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--color-text-heading);
  margin-bottom: 0.5rem;
}

.instagram-section__intro p {
  color: var(--color-text-secondary);
  font-size: 1rem;
  max-width: 500px;
}

.instagram-section__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.5rem;
  border: 2px solid var(--color-accent);
  border-radius: 0.5rem;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.instagram-section__btn:hover {
  background: var(--color-accent);
  color: #fff;
}

/* Story-style circles */
.ig-stories {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
}

.ig-story {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}

.ig-story__ring {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, #74C5EC, #FF8C42, #74C5EC);
  transition: transform 0.2s ease;
}

.ig-story:hover .ig-story__ring {
  transform: scale(1.08);
}

.ig-story__img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
}

.ig-story__name {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text);
  text-align: center;
}

.ig-story--more .ig-story__ring {
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.ig-story--more .ig-story__plus {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
}

/* Highlight reels row */
.ig-highlights {
  display: flex;
  gap: 1.25rem;
  margin-top: 2rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
}

.ig-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}

.ig-highlight__circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.ig-highlight:hover .ig-highlight__circle {
  border-color: var(--color-accent);
  transform: scale(1.05);
}

.ig-highlight__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ig-highlight__label {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  text-align: center;
  max-width: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .instagram-section__header {
    flex-direction: column;
  }

  .ig-story__ring {
    width: 72px;
    height: 72px;
  }

  .ig-stories {
    gap: 1rem;
  }
}

/* ==========================================================================
   BLOG CONTENT COMPONENTS
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. BLOG TABLE OF CONTENTS (blog-toc)
   Sticky sidebar-style TOC with orange left border
   -------------------------------------------------------------------------- */
.blog-toc {
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-left: 4px solid #74C5EC;
  border-radius: 6px;
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}

.blog-toc__title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #002B53;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-toc__list li {
  margin: 0;
  padding: 0;
}

.blog-toc__link {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  font-weight: 400;
  color: #333333;
  text-decoration: none;
  border-bottom: 1px solid #F0F0F0;
  transition: color 0.2s ease, padding-left 0.2s ease;
  cursor: pointer;
}

.blog-toc__list li:last-child .blog-toc__link {
  border-bottom: none;
}

.blog-toc__link:hover,
.blog-toc__link--active {
  color: #74C5EC;
  padding-left: 0.5rem;
}

.blog-toc__link--sub {
  padding-left: 1rem;
  font-size: 0.85rem;
  color: #666666;
}

.blog-toc__link--sub:hover {
  padding-left: 1.5rem;
}

/* --------------------------------------------------------------------------
   2. BLOG FAQ ACCORDION (blog-faq)
   Expandable Q&A items with orange left border and chevron toggle
   -------------------------------------------------------------------------- */
.blog-faq {
  margin: 2.5rem 0;
}

.blog-faq__title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #002B53;
  margin: 0 0 1rem 0;
}

.blog-faq__item {
  border: 1px solid #E0E0E0;
  border-left: 4px solid #74C5EC;
  border-radius: 6px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.blog-faq__item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Native details/summary styling */
.blog-faq__item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: #FFFFFF;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: #002B53;
  list-style: none;
  transition: background 0.2s ease;
}

.blog-faq__item summary::-webkit-details-marker {
  display: none;
}

.blog-faq__item summary::after {
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2px solid #002B53;
  border-bottom: 2px solid #002B53;
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.blog-faq__item[open] summary::after {
  transform: rotate(-135deg);
}

.blog-faq__item summary:hover {
  background: #F5F5F5;
}

.blog-faq__answer {
  padding: 1rem 1.25rem 1.25rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #333333;
  background: #FAFAFA;
}

.blog-faq__answer p {
  margin: 0;
}

/* --------------------------------------------------------------------------
   3. BLOG CALLOUT (blog-callout)
   Info/warning/tip/example boxes with colored left border and icon area
   -------------------------------------------------------------------------- */
.blog-callout {
  padding: 1.25rem 1.5rem;
  border-radius: 6px;
  margin: 2rem 0;
  border: 1px solid #E0E0E0;
  border-left: 4px solid #E0E0E0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.blog-callout p {
  margin: 0;
}

.blog-callout__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 0.1rem;
}

.blog-callout__body {
  flex: 1;
  min-width: 0;
}

.blog-callout__title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  margin: 0 0 0.35rem 0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.blog-callout__text {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #333333;
  margin: 0;
}

.blog-callout__text p {
  margin: 0 0 0.5rem 0;
}

.blog-callout__text p:last-child {
  margin-bottom: 0;
}

/* Variant: info (blue) */
.blog-callout--info {
  background: #EBF4FF;
  border-left-color: #2B7DE9;
  border-color: #C5DCFA;
}

.blog-callout--info .blog-callout__icon {
  color: #2B7DE9;
}

.blog-callout--info .blog-callout__title {
  color: #1A5BB5;
}

/* Variant: warning (amber) */
.blog-callout--warning {
  background: #FFF8EB;
  border-left-color: #E5A100;
  border-color: #F5DFA0;
}

.blog-callout--warning .blog-callout__icon {
  color: #E5A100;
}

.blog-callout--warning .blog-callout__title {
  color: #9A6D00;
}

/* Variant: tip (green) */
.blog-callout--tip {
  background: #EDFCF2;
  border-left-color: #22A355;
  border-color: #B4E8C8;
}

.blog-callout--tip .blog-callout__icon {
  color: #22A355;
}

.blog-callout--tip .blog-callout__title {
  color: #17793E;
}

/* Variant: example (gray) */
.blog-callout--example {
  background: #F5F5F5;
  border-left-color: #888888;
  border-color: #E0E0E0;
}

.blog-callout--example .blog-callout__icon {
  color: #888888;
}

.blog-callout--example .blog-callout__title {
  color: #555555;
}

/* --------------------------------------------------------------------------
   4. BLOG SUMMARY (blog-summary)
   Executive summary box at top of article with light blue bg
   -------------------------------------------------------------------------- */
.blog-summary {
  background: #EBF4FF;
  border: 1px solid #C5DCFA;
  border-radius: 8px;
  padding: 1.75rem 2rem;
  margin: 2rem 0;
}

.blog-summary__title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #002B53;
  margin: 0 0 0.75rem 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-summary__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-summary__list li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.925rem;
  line-height: 1.6;
  color: #333333;
}

.blog-summary__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 8px;
  height: 8px;
  background: #74C5EC;
  border-radius: 50%;
}

/* --------------------------------------------------------------------------
   5. BLOG PROS & CONS (blog-pros-cons)
   Two-column layout: green pros vs red cons
   -------------------------------------------------------------------------- */
.blog-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.blog-pros-cons__column {
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  overflow: hidden;
}

.blog-pros-cons__header {
  padding: 0.75rem 1.25rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-pros-cons__column--pros .blog-pros-cons__header {
  background: #EDFCF2;
  color: #17793E;
  border-bottom: 2px solid #22A355;
}

.blog-pros-cons__column--cons .blog-pros-cons__header {
  background: #FFF0EE;
  color: #C0392B;
  border-bottom: 2px solid #E74C3C;
}

.blog-pros-cons__list {
  list-style: none;
  margin: 0;
  padding: 1rem 1.25rem;
}

.blog-pros-cons__list li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #333333;
}

.blog-pros-cons__list li::before {
  position: absolute;
  left: 0;
  top: 0.4rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.blog-pros-cons__column--pros .blog-pros-cons__list li::before {
  content: '\2713';
  color: #22A355;
}

.blog-pros-cons__column--cons .blog-pros-cons__list li::before {
  content: '\2717';
  color: #E74C3C;
}

@media (max-width: 640px) {
  .blog-pros-cons {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   6. BLOG TIMELINE (blog-timeline)
   Vertical timeline with dots and connecting line
   -------------------------------------------------------------------------- */
.blog-timeline {
  position: relative;
  margin: 2.5rem 0;
  padding-left: 2.5rem;
}

.blog-timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #E0E0E0;
}

.blog-timeline__item {
  position: relative;
  padding: 0 0 2rem 0;
}

.blog-timeline__item:last-child {
  padding-bottom: 0;
}

.blog-timeline__dot {
  position: absolute;
  left: -2.5rem;
  top: 0.2rem;
  width: 24px;
  height: 24px;
  background: #FFFFFF;
  border: 3px solid #74C5EC;
  border-radius: 50%;
  z-index: 1;
}

.blog-timeline__item--active .blog-timeline__dot {
  background: #74C5EC;
}

.blog-timeline__date {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #74C5EC;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}

.blog-timeline__title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #002B53;
  margin: 0 0 0.35rem 0;
}

.blog-timeline__text {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #333333;
  margin: 0;
}

@media (max-width: 640px) {
  .blog-timeline {
    padding-left: 2rem;
  }

  .blog-timeline__dot {
    left: -2rem;
    width: 18px;
    height: 18px;
  }

  .blog-timeline::before {
    left: 8px;
  }
}

/* --------------------------------------------------------------------------
   7. BLOG QUOTE (blog-quote)
   Styled blockquote with large quote marks and orange left border
   -------------------------------------------------------------------------- */
.blog-quote {
  position: relative;
  margin: 2.5rem 0;
  padding: 1.75rem 2rem 1.75rem 2.5rem;
  background: #F5F5F5;
  border-left: 4px solid #74C5EC;
  border-radius: 0 8px 8px 0;
}

.blog-quote::before {
  content: '\201C';
  position: absolute;
  top: -0.15rem;
  left: 0.75rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 4rem;
  line-height: 1;
  color: #74C5EC;
  opacity: 0.3;
}

.blog-quote__text {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  color: #333333;
  margin: 0 0 0.75rem 0;
}

.blog-quote__source {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #002B53;
  margin: 0;
}

.blog-quote__source::before {
  content: '\2014\00a0';
  color: #74C5EC;
}

/* --------------------------------------------------------------------------
   8. BLOG DOWNLOAD (blog-download)
   File download card with icon, filename, filesize, and download button
   -------------------------------------------------------------------------- */
.blog-download {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  margin: 2rem 0;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.blog-download:hover {
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  border-color: #C0C0C0;
}

.blog-download__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #EBF4FF;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002B53;
}

.blog-download__icon svg {
  width: 24px;
  height: 24px;
}

.blog-download__info {
  flex: 1;
  min-width: 0;
}

.blog-download__name {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #002B53;
  margin: 0 0 0.15rem 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.blog-download__meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: #666666;
  margin: 0;
}

.blog-download__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: #74C5EC;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease;
}

.blog-download__btn:hover {
  background: #5AB0D9;
}

.blog-download__btn svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 640px) {
  .blog-download {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .blog-download__btn {
    width: 100%;
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------
   9. BLOG INLINE CTA (blog-cta-inline)
   Inline CTA banner within article with colored bg and button
   -------------------------------------------------------------------------- */
.blog-cta-inline {
  background: #002B53;
  border-radius: 10px;
  padding: 2.5rem 2.5rem;
  margin: 2.5rem 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

.blog-cta-inline h3,
.blog-cta-inline h2 {
  color: #FFFFFF;
  font-size: 1.35rem;
  margin: 0 0 0.5rem 0;
}

.blog-cta-inline p,
.content-section .blog-cta-inline p {
  color: #FFFFFF !important;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 1.5rem 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  opacity: 1;
}

.blog-cta-inline__title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: #FFFFFF;
  margin: 0 0 0.5rem 0;
}

.blog-cta-inline__text {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 1.5rem 0;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.blog-cta-inline__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  background: #74C5EC;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.blog-cta-inline__btn:hover {
  background: #5AB0D9;
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .blog-cta-inline {
    padding: 2rem 1.5rem;
  }

  .blog-cta-inline__title {
    font-size: 1.15rem;
  }
}

/* --------------------------------------------------------------------------
   10. BLOG STATS (blog-stats)
   Statistics row with cards containing numbers and labels
   -------------------------------------------------------------------------- */
.blog-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2.5rem 0;
}

.blog-stats--3col {
  grid-template-columns: repeat(3, 1fr);
}

.blog-stats__item {
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: box-shadow 0.2s ease;
}

.blog-stats__item:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.blog-stats__number {
  font-weight: 700;
  font-size: 1.5rem;
  color: #002B53;
  line-height: 1.3;
  margin: 0 0 0.5rem 0;
  display: block;
}

.blog-stats__label {
  font-size: 0.8rem;
  font-weight: 500;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 768px) {
  .blog-stats,
  .blog-stats--3col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .blog-stats,
  .blog-stats--3col {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   11. BLOG CHECKLIST (blog-checklist)
   Styled checkable list items with custom checkboxes
   -------------------------------------------------------------------------- */
.blog-checklist {
  list-style: none;
  margin: 2rem 0;
  padding: 0;
  background: #fff;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  overflow: hidden;
}

.blog-checklist__item {
  position: relative;
  padding: 0.85rem 1.25rem 0.85rem 3rem;
  border-bottom: 1px solid #F0F0F0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #333333;
  transition: background 0.15s ease;
}

.blog-checklist__item:last-child {
  border-bottom: none;
}

.blog-checklist__item:hover {
  background: #F9F9F9;
}

/* Green checkmark via pseudo-element */
.blog-checklist__item::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #22A355;
}

.blog-checklist__item::after {
  content: '';
  position: absolute;
  left: 1.35rem;
  top: 1.05rem;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* --------------------------------------------------------------------------
   12. BLOG COMPARISON TABLE (blog-comparison)
   Table with header row and striped rows
   -------------------------------------------------------------------------- */
.blog-comparison {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin: 2.5rem 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #E0E0E0;
}

.blog-comparison table {
  width: 100%;
  border-collapse: collapse;
}

.blog-comparison thead th {
  background: #002B53;
  color: #FFFFFF;
  font-weight: 600;
  padding: 0.85rem 1.25rem;
  text-align: left;
  white-space: nowrap;
}

.blog-comparison tbody td {
  padding: 0.75rem 1.25rem;
  color: #333333;
  border-bottom: 1px solid #E0E0E0;
  vertical-align: top;
}

.blog-comparison tbody tr:nth-child(even) {
  background: #F5F5F5;
}

.blog-comparison tbody tr:hover {
  background: #EBF4FF;
}

.blog-comparison__highlight {
  font-weight: 600;
  color: #002B53;
}

.blog-comparison__check {
  color: #22A355;
  font-weight: 700;
}

.blog-comparison__cross {
  color: #E74C3C;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   13. BLOG AUTHOR (blog-author)
   Author bio card with circular photo, name, role, and short bio
   -------------------------------------------------------------------------- */
.blog-author {
  display: flex;
  gap: 1.75rem;
  align-items: center;
  padding: 2rem 2.5rem;
  background: #fff;
  border: 1px solid #E0E0E0;
  border-radius: 12px;
  margin: 3rem 0;
  box-shadow: 0 2px 12px rgba(0,43,83,0.06);
}

.blog-author__photo {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 3px solid #74C5EC;
}

.blog-author__info {
  flex: 1;
  min-width: 0;
}

.blog-author__name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #002B53;
  margin: 0 0 0.15rem 0;
}

.blog-author__role {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: #74C5EC;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 0.6rem 0;
}

.blog-author__bio {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #555555;
  margin: 0;
}

.blog-author__socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.blog-author__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #E0E0E0;
  color: #002B53;
  transition: background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.blog-author__social-link:hover {
  background: #74C5EC;
  color: #FFFFFF;
}

.blog-author__social-link svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 640px) {
  .blog-author {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
  }

  .blog-author__socials {
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------
   14. BLOG RELATED ARTICLES (blog-related)
   Horizontal related articles cards with thumbnail, title, and excerpt
   -------------------------------------------------------------------------- */
.blog-related {
  margin: 3rem 0;
  padding: 2.5rem 0;
  border-top: 2px solid #E0E0E0;
}

.blog-related__title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #002B53;
  margin: 0 0 1.25rem 0;
}

.blog-related__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.blog-related__card {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow 0.2s ease, transform 0.15s ease;
  cursor: pointer;
}

.blog-related__card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.blog-related__thumbnail {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.blog-related__content {
  padding: 1rem 1.25rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-related__card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #002B53;
  margin: 0 0 0.5rem 0;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.blog-related__card:hover .blog-related__card-title {
  color: #74C5EC;
}

.blog-related__excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  line-height: 1.55;
  color: #666666;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 768px) {
  .blog-related__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .blog-related__card {
    flex-direction: row;
  }

  .blog-related__thumbnail {
    width: 120px;
    height: auto;
    min-height: 100px;
  }
}

/* --------------------------------------------------------------------------
   15. BLOG FRESHNESS BADGE (blog-freshness)
   Small badge showing last-updated date
   -------------------------------------------------------------------------- */
.blog-freshness {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  background: #F5F5F5;
  border: 1px solid #E0E0E0;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: #666666;
  margin: 1rem 0;
}

.blog-freshness__icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: #888888;
}

.blog-freshness__label {
  color: #888888;
}

.blog-freshness__date {
  font-weight: 600;
  color: #333333;
}

.blog-freshness--recent {
  background: #EDFCF2;
  border-color: #B4E8C8;
}

.blog-freshness--recent .blog-freshness__icon,
.blog-freshness--recent .blog-freshness__label {
  color: #22A355;
}

.blog-freshness--recent .blog-freshness__date {
  color: #17793E;
}

.blog-freshness--outdated {
  background: #FFF8EB;
  border-color: #F5DFA0;
}

.blog-freshness--outdated .blog-freshness__icon,
.blog-freshness--outdated .blog-freshness__label {
  color: #E5A100;
}

.blog-freshness--outdated .blog-freshness__date {
  color: #9A6D00;
}

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 4rem 0;
  text-align: center;
}

.cta-band__inner {
  max-width: 640px;
  margin-inline: auto;
}

.cta-band__title {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.cta-band__text {
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.cta-band .btn--accent {
  font-size: 1rem;
}

/* Legacy: .cta-band h2 / p */
.cta-band h2 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 2rem;
}

/* ==========================================================================
   CERTIFICATIONS (Asito-style cards with accordion)
   ========================================================================== */
.certs__header {
  margin-bottom: 2.5rem;
}

.certs__intro {
  max-width: 400px;
}

.certs__intro h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  color: var(--color-accent);
  text-align: left;
  margin-bottom: 0.8rem;
}

.certs__intro p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.certs__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.cert-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  transition: box-shadow var(--transition), transform var(--transition);
}

.cert-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.cert-card__logo {
  width: 100%;
  height: 80px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-border);
}

.cert-card__logo img {
  max-width: 120px;
  max-height: 64px;
  object-fit: contain;
  background: #fff;
  border-radius: 4px;
}

.cert-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-heading);
  margin-bottom: 0.4rem;
}

.cert-card__desc {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.cert-card__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-accent);
  cursor: pointer;
  transition: color var(--transition);
}

.cert-card__toggle:hover {
  color: var(--color-accent-hover);
}

.cert-card__toggle svg {
  transition: transform var(--transition);
}

.cert-card__toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.cert-card__details {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.cert-card__details.open {
  display: block;
}

.cert-card__details p {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* Legacy cert-badge (keep for subpages) */
.certifications__grid { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 2rem; padding: 2rem 0; }
.cert-badge { display: flex; align-items: center; justify-content: center; background: var(--color-white); border: 1px solid var(--color-border); border-radius: var(--radius-sm); padding: 1rem 1.5rem; min-height: 56px; }

@media (max-width: 960px) {
  .certs__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ==========================================================================
   CARDS GRID (Blog, legacy)
   ========================================================================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}

.card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--transition);
}

.card:hover img {
  transform: scale(1.05);
}

.card .card-img {
  overflow: hidden;
}

.card .card-body,
.card-body {
  padding: 1.5rem;
}

.card .card-body h3,
.card-body h3 {
  margin-bottom: 0.6rem;
  color: var(--color-text-heading);
}

.card .card-body p,
.card-body p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.card .card-link,
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-accent);
  transition: gap var(--transition), color var(--transition);
}

.card .card-link:hover,
.card-link:hover {
  gap: 0.6rem;
  color: var(--color-accent-hover);
}

/* ==========================================================================
   SPLIT SECTIONS (Text + Image)
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-lr .split-text {
  order: 1;
}

.split-lr .split-image {
  order: 2;
}

.split-rl .split-text {
  order: 2;
}

.split-rl .split-image {
  order: 1;
}

.split-text h2 {
  text-align: left;
  margin-bottom: 1rem;
}

.split-text p {
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.split-text ul {
  margin-bottom: 1.5rem;
}

.split-image img {
  border-radius: var(--radius);
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center top;
}

/* ==========================================================================
   CONTACT CARDS
   ========================================================================== */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 0.8rem;
  padding: 2rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

a.contact-card:hover {
  box-shadow: 0 8px 24px rgba(0, 43, 83, 0.1);
  transform: translateY(-3px);
  border-color: var(--color-accent);
}

.contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(116, 197, 236, 0.1);
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.contact-card__title {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-secondary);
  margin-bottom: 0.5rem;
}

.contact-card__value {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text-heading);
  margin-bottom: 0.25rem;
}

.contact-card__sub {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

@media (max-width: 600px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   CONTACT FORM
   ========================================================================== */
.contact-form {
  max-width: 720px;
  margin-inline: auto;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0, 43, 83, 0.06);
}

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

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg-light);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
  border-color: rgba(0, 43, 83, 0.3);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 43, 83, 0.1);
  background: var(--color-white);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-secondary);
  opacity: 0.5;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* File upload styled */
.form-group--file {
  position: relative;
}

.form-group--file .file-upload {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border: 1.5px dashed var(--color-border);
  border-radius: 0.5rem;
  background: var(--color-bg-light);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-group--file .file-upload:hover {
  border-color: var(--color-primary);
  background: rgba(0, 43, 83, 0.03);
}

.form-group--file .file-upload__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 0.5rem;
  background: rgba(0, 43, 83, 0.08);
  color: var(--color-primary);
  flex-shrink: 0;
}

.form-group--file .file-upload__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.form-group--file .file-upload__text strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
}

.form-group--file .file-upload__text span {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
}

.form-group--file input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

/* Checkbox styled */
.form-group--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.5rem;
  background: var(--color-bg-light);
  border: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.form-group--checkbox:has(input:checked) {
  border-color: var(--color-primary);
  background: rgba(0, 43, 83, 0.03);
}

.form-group--checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 0.1rem;
  flex-shrink: 0;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.form-group--checkbox label {
  font-weight: 400;
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
}

/* Submit button full-width in form */
.contact-form .btn {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

@media (max-width: 600px) {
  .contact-form {
    padding: 1.5rem;
    border-radius: 0.75rem;
  }

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

/* ==========================================================================
   CONTENT SECTION (Text-heavy pages)
   ========================================================================== */
.content-section {
  max-width: 800px;
  margin-inline: auto;
  padding: 3rem 1.5rem;
}

.content-section h2 {
  text-align: left;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.content-section h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.content-section p {
  color: var(--color-text);
  margin-bottom: 1.2rem;
}

.content-section ul,
.content-section ol {
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.content-section li {
  margin-bottom: 0.4rem;
}

/* ==========================================================================
   VACATURE CARD (Job listings)
   ========================================================================== */
.vacature-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: box-shadow var(--transition), transform var(--transition);
  margin-bottom: 1.5rem;
}

.vacature-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.vacature-card h3 {
  margin-bottom: 0.5rem;
}

.vacature-card .vacature-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.vacature-card .vacature-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.vacature-card p {
  color: var(--color-text-secondary);
  margin-bottom: 1.2rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
/* Wave footer variant */
.footer--wave {
  position: relative;
  margin-top: 0;
}

/* Oranje accent-streep boven footer */
.footer--wave {
  border-top: 4px solid var(--color-accent);
}

.footer {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 0;
}

/* Social icon buttons in brand column */
.footer__social-icons {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.footer__social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition);
}

.footer__social-icons a:hover {
  background: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-2px);
}

.footer__social-icons svg {
  stroke: currentColor;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 0 1.5rem 3rem;
}

.footer__col {
  /* Column base */
}

.footer__col--brand {
  /* Brand column gets more space via grid above */
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.35rem;
  text-decoration: none;
}

.footer__logo:hover {
  color: var(--color-white);
}

.footer__logo-text {
  font-weight: 800;
}

.footer__description {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer__heading {
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
}

.footer__links {
  list-style: none;
  padding: 0;
}

.footer__links li {
  margin-bottom: 0.6rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--color-white);
}

.footer__social {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__social svg {
  flex-shrink: 0;
}

.footer__address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer__address a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}

.footer__address a:hover {
  color: var(--color-white);
}

.footer__address p {
  margin-bottom: 0.3rem;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.5rem;
  font-size: 0.85rem;
  max-width: var(--container-max);
  margin-inline: auto;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__bottom p {
  margin-bottom: 0;
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer__legal a:hover {
  color: var(--color-white);
}

/* Legacy footer selectors (for any old pages) */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 0 1.5rem 3rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
  margin-top: 1rem;
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--color-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  max-width: var(--container-max);
  margin-inline: auto;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a:hover {
  color: var(--color-white);
}

/* ==========================================================================
   SCROLL REVEAL ANIMATION
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Legacy: .reveal.visible (keep for any old JS) */
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 2rem; }

/* ==========================================================================
   WHY KSV (NeverLeafs-style intro)
   ========================================================================== */
.why-ksv {
  background: var(--color-bg-alt);
}

.why-ksv__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

/* Two photos side by side with different heights */
.why-ksv__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: end;
}

.why-ksv__photo {
  border-radius: var(--radius);
  overflow: hidden;
}

.why-ksv__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.why-ksv__photo:hover img {
  transform: scale(1.03);
}

.why-ksv__photo--tall {
  height: 380px;
}

.why-ksv__photo--short {
  height: 300px;
  align-self: end;
}

/* Content */
.why-ksv__content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--color-text-heading);
  margin-bottom: 1rem;
  text-align: left;
}

.why-ksv__content > p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Check badges grid */
.why-ksv__checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.why-ksv__check {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  transition: box-shadow var(--transition);
}

.why-ksv__check:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.why-ksv__check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--color-accent);
  color: var(--color-white);
  flex-shrink: 0;
  margin-top: 1px;
}

.why-ksv__check-icon svg {
  stroke: var(--color-white);
}

.why-ksv__check div strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-text-heading);
  line-height: 1.3;
}

.why-ksv__check div span {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
}

/* Location badge */
.why-ksv__location {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.2rem;
}

.why-ksv__location svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

.why-ksv__location strong {
  display: block;
  font-size: 0.88rem;
  color: var(--color-text-heading);
}

.why-ksv__location span {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
}

@media (max-width: 960px) {
  .why-ksv__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .why-ksv__photos {
    max-width: 500px;
    margin: 0 auto;
  }

  .why-ksv__photo--tall { height: 280px; }
  .why-ksv__photo--short { height: 220px; }
}

@media (max-width: 600px) {
  .why-ksv__checks {
    grid-template-columns: 1fr;
  }

  .why-ksv__photo--tall { height: 220px; }
  .why-ksv__photo--short { height: 180px; }
}

/* ==========================================================================
   TRUST BAR (below hero)
   ========================================================================== */
.trust-bar {
  background: var(--color-primary);
  border-bottom: none;
  padding: 0.85rem 0;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}

.trust-bar__item svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

/* ==========================================================================
   INSTAGRAM STORIES SECTION
   ========================================================================== */
.insta-section {
  background: var(--color-bg-alt);
}

.insta-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.insta-header__text .section__title {
  text-align: left;
  margin-bottom: 0.4rem;
}

.insta-header__text .section__subtitle {
  text-align: left;
  margin-bottom: 0;
}

.insta-header__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.insta-stories {
  overflow: hidden;
}

.insta-stories__track {
  display: flex;
  gap: 1.8rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 1.5rem 1rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.insta-stories__track::-webkit-scrollbar {
  display: none;
}

.insta-story {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  scroll-snap-align: start;
  flex-shrink: 0;
  cursor: pointer;
}

.insta-story__ring {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insta-story:hover .insta-story__ring {
  transform: scale(1.08);
  box-shadow: 0 4px 20px rgba(220, 39, 67, 0.3);
}

.insta-story__ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-white);
}

.insta-story__ring--cta {
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.insta-story__ring--cta svg {
  stroke: var(--color-white);
  width: 28px;
  height: 28px;
}

.insta-story:hover .insta-story__ring--cta {
  box-shadow: 0 4px 20px rgba(0, 43, 83, 0.3);
}

.insta-story__label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-text);
  text-align: center;
  max-width: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (min-width: 961px) {
  .insta-stories__track {
    padding-left: max(1.5rem, calc((100vw - var(--container-max)) / 2 + 1.5rem));
    padding-right: 3rem;
    gap: 2.2rem;
  }

  .insta-story__ring {
    width: 92px;
    height: 92px;
  }
}

@media (max-width: 960px) {
  .insta-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* ==========================================================================
   MODERN VALUES: COUNTERS + CARDS
   ========================================================================== */

/* Counters strip */
.counters {
  background: var(--color-primary);
  padding: 3.5rem 0;
  overflow: hidden;
}

.counters__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.counter {
  flex: 1;
  text-align: center;
  padding: 0 1rem;
}

.counter__number {
  display: block;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.counter__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.counter__divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

/* Value cards (modern) */
.values-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.vcard {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: all 0.4s ease;
  overflow: hidden;
}

.vcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 43, 83, 0.12);
  border-color: transparent;
}

/* Highlight card (middle) */
.vcard--highlight {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.vcard--highlight .vcard__number {
  color: rgba(255, 255, 255, 0.15);
}

.vcard--highlight .vcard__icon-bar {
  background: var(--color-accent);
}

.vcard--highlight .vcard__title {
  color: var(--color-white);
}

.vcard--highlight .vcard__text {
  color: rgba(255, 255, 255, 0.7);
}

.vcard--highlight .vcard__features li {
  color: rgba(255, 255, 255, 0.8);
}

.vcard--highlight .vcard__features li::before {
  color: var(--color-accent);
}

.vcard--highlight:hover {
  box-shadow: 0 20px 40px rgba(0, 43, 83, 0.3);
}

/* Number (01, 02, 03) */
.vcard__number {
  display: block;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(0, 43, 83, 0.06);
  line-height: 1;
  margin-bottom: 0.8rem;
}

/* Orange accent bar */
.vcard__icon-bar {
  width: 40px;
  height: 4px;
  background: var(--color-accent);
  border-radius: 2px;
  margin-bottom: 1.2rem;
  transition: width 0.4s ease;
}

.vcard:hover .vcard__icon-bar {
  width: 60px;
}

.vcard__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text-heading);
  margin-bottom: 0.8rem;
}

.vcard__text {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.vcard__features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vcard__features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--color-text);
  padding: 0.35rem 0;
  font-weight: 500;
}

.vcard__features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Counters animation (triggered by JS) */
.counter__number.counting {
  transition: none;
}

/* Responsive */
@media (max-width: 960px) {
  .counters__inner {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .counter {
    flex: 0 0 40%;
  }

  .counter__divider {
    display: none;
  }

  .values-cards__grid {
    grid-template-columns: 1fr;
  }

  .vcard--highlight {
    order: -1;
  }
}

@media (max-width: 600px) {
  .counters {
    padding: 2.5rem 0;
  }

  .counter {
    flex: 0 0 45%;
  }
}

/* ==========================================================================
   SPECIALIST CTA BANNER (circular portrait)
   ========================================================================== */
.specialist-cta {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  background: var(--color-primary);
  gap: 2rem;
}

/* Subtle gradient background */
.specialist-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 10% 50%, rgba(0, 60, 120, 0.4) 0%, transparent 60%);
  pointer-events: none;
}

/* Content */
.specialist-cta__content {
  position: relative;
  z-index: 2;
  padding: 3rem 0 3rem 3.5rem;
}

.specialist-cta__title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.specialist-cta__title strong {
  font-weight: 800;
}

.specialist-cta__text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 380px;
}

.specialist-cta__actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.specialist-cta__btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-decoration: none;
  border-radius: 0.5rem;
  padding: 0 1.6rem;
  height: 48px;
  background: var(--color-accent);
  color: var(--color-white);
  font-weight: 700;
  font-size: 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(116, 197, 236, 0.3);
}

.specialist-cta__btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(116, 197, 236, 0.45);
  color: var(--color-white);
}

.specialist-cta__btn-call svg {
  stroke: var(--color-white);
  fill: none;
  flex-shrink: 0;
}

.specialist-cta__btn-email {
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding: 0 1.4rem;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--transition);
  background: rgba(255, 255, 255, 0.04);
}

.specialist-cta__btn-email:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--color-white);
}

/* Circular portrait with orange ring */
.specialist-cta__image {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 3rem 2rem 0;
}

.specialist-cta__image img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 4px solid var(--color-accent);
  box-shadow:
    0 0 0 8px rgba(116, 197, 236, 0.12),
    0 12px 40px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.specialist-cta:hover .specialist-cta__image img {
  transform: scale(1.04);
  box-shadow:
    0 0 0 10px rgba(116, 197, 236, 0.18),
    0 16px 48px rgba(0, 0, 0, 0.3);
}

/* Decoratieve ring achter de foto */
.specialist-cta__image::before {
  content: '';
  position: absolute;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  border: 1.5px dashed rgba(255, 255, 255, 0.12);
  top: 50%;
  left: 50%;
  transform: translate(-42%, -50%);
  pointer-events: none;
}

/* Responsive */
@media (max-width: 960px) {
  .specialist-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .specialist-cta__content {
    padding: 2.5rem 2rem 0;
    align-items: center;
  }

  .specialist-cta__text {
    margin-inline: auto;
  }

  .specialist-cta__actions {
    justify-content: center;
  }

  .specialist-cta__image {
    padding: 1.5rem 2rem 2.5rem;
    justify-content: center;
  }

  .specialist-cta__image img {
    width: 160px;
    height: 160px;
  }

  .specialist-cta__image::before {
    width: 190px;
    height: 190px;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 600px) {
  .specialist-cta__content {
    padding: 2rem 1.5rem 0;
  }

  .specialist-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .specialist-cta__btn-call,
  .specialist-cta__btn-email {
    width: 100%;
    justify-content: center;
  }

  .specialist-cta__image img {
    width: 140px;
    height: 140px;
  }

  .specialist-cta__image::before {
    width: 170px;
    height: 170px;
  }
}

/* ==========================================================================
   STICKY MOBILE CTA BAR
   ========================================================================== */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8500;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  padding: 0.6rem 1rem;
  gap: 0.6rem;
}

.mobile-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background var(--transition);
}

.mobile-cta__btn--call {
  background: var(--color-primary);
  color: var(--color-white);
}

.mobile-cta__btn--call:hover {
  background: #003d75;
  color: var(--color-white);
}

.mobile-cta__btn--contact {
  background: var(--color-accent);
  color: var(--color-white);
}

.mobile-cta__btn--contact:hover {
  background: var(--color-accent-hover);
  color: var(--color-white);
}

/* ==========================================================================
   HEADER LOGO IMAGE
   ========================================================================== */
.header__logo img {
  height: 36px;
  width: auto;
  display: block;
}

.footer__logo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-radius: 2rem;
  padding: 0.45rem 1.4rem;
  height: 50px;
  border: 2px solid var(--color-accent);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.footer__logo:hover .footer__logo-pill {
  box-shadow: 0 4px 16px rgba(116, 197, 236, 0.2);
  border-color: #ff7a33;
}

.footer__logo-pill img {
  height: 30px;
  width: auto;
  display: block;
}

/* ==========================================================================
   RESPONSIVE — Tablet (max 960px)
   ========================================================================== */
@media (max-width: 960px) {
  :root {
    --section-py: 3.5rem;
  }

  /* Top bar */
  .top-bar {
    display: none;
  }

  .header {
    top: 0;
  }

  .hero,
  .page-hero {
    margin-top: var(--header-h);
  }

  /* Hamburger */
  .header__hamburger {
    display: flex;
  }

  .header__cta {
    display: none;
  }

  /* Nav mobile */
  .header__nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    width: 100%;
    flex-direction: column;
    background: var(--color-primary);
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  }

  .header__nav--open {
    display: flex;
  }

  .nav__list {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .nav__item {
    width: 100%;
  }

  .nav__link {
    display: flex;
    width: 100%;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 1rem;
  }

  .nav__link::after {
    display: none;
  }

  /* Dropdown mobile */
  .nav__dropdown {
    position: static;
    transform: none;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: none;
    border-radius: 0;
    padding: 0 0 0 1rem;
  }

  .nav__dropdown::before {
    display: none;
  }

  .nav__dropdown a {
    color: rgba(255, 255, 255, 0.7);
    padding: 0.6rem 0;
  }

  .nav__dropdown a:hover {
    background: transparent;
    color: var(--color-white);
  }

  /* Grids */
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  /* Split / 2-col layouts */
  .split,
  .duurzaamheid__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .split-rl .split-text,
  .split-rl .split-image {
    order: unset;
  }

  .split-text h2,
  .werkgebied__text .section__title,
  .duurzaamheid__text .section__title {
    text-align: center;
  }

  /* Footer */
  .footer__inner,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Mobile CTA */
  .mobile-cta {
    display: flex;
  }

  /* Add padding to body bottom for sticky CTA */
  body {
    padding-bottom: 4.5rem;
  }

  /* Move chat widget above mobile CTA */
  .chat-widget__trigger {
    bottom: 5rem;
  }

  .chat-widget__panel {
    bottom: 9rem;
  }

  /* Trust bar compact */
  .trust-bar__inner {
    gap: 1rem;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .trust-bar__inner::-webkit-scrollbar {
    display: none;
  }

  .trust-bar__item {
    font-size: 0.82rem;
  }
}

/* ==========================================================================
   RESPONSIVE — Mobile (max 600px)
   ========================================================================== */
@media (max-width: 600px) {
  :root {
    --section-py: 2.5rem;
  }

  .hero {
    min-height: 70vh;
  }

  .hero__content,
  .hero-content {
    padding: 2.5rem 1.25rem;
  }

  .page-hero {
    min-height: 240px;
  }

  /* Grids */
  .services__grid,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .team__grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer__inner,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom-inner {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  /* Cert */
  .certifications__grid {
    gap: 1rem;
  }

  .cert-logos {
    gap: 1.5rem;
  }

  .cert-logos img {
    height: 40px;
  }

  /* Vacature */
  .vacature-card {
    padding: 1.5rem;
  }

  .vacature-card .vacature-meta {
    flex-direction: column;
    gap: 0.4rem;
  }

  /* Breadcrumbs hidden on mobile */
  .breadcrumb {
    display: none;
  }
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero__bg img,
  .hero img,
  .card img,
  .service-card__image img,
  .team-card__image img {
    transition: none;
  }

  .hero:hover .hero__bg img,
  .hero:hover img,
  .card:hover img,
  .service-card:hover .service-card__image img,
  .team-card:hover .team-card__image img {
    transform: none;
  }

  .mobile-cta__btn,
  .trust-bar__item {
    transition: none;
  }
}

/* ==========================================================================
   CHAT WIDGET
   ========================================================================== */

/* Trigger button (collapsed state) */
.chat-widget__trigger {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-accent);
  border-radius: 2rem;
  padding: 0.85rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(0, 43, 83, 0.3);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.chat-widget__trigger:hover {
  background: #003d75;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 43, 83, 0.4);
}

.chat-widget__trigger svg {
  flex-shrink: 0;
}

.chat-widget__trigger .chat-widget__chevron {
  transition: transform var(--transition);
}

.chat-widget__trigger.open .chat-widget__chevron {
  transform: rotate(180deg);
}

/* Panel (expanded state) */
.chat-widget__panel {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 9000;
  width: 340px;
  max-height: calc(100vh - 8rem);
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  display: none;
  flex-direction: column;
  animation: chatSlideUp 0.25s ease;
}

.chat-widget__panel.open {
  display: flex;
}

@keyframes chatSlideUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Panel header */
.chat-widget__header {
  background: var(--color-primary);
  padding: 1.5rem;
  text-align: center;
  position: relative;
}

.chat-widget__header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.chat-widget__header-logo img {
  height: 28px;
  width: auto;
}

.chat-widget__header h3 {
  color: var(--color-white);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.chat-widget__header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  margin: 0.3rem 0 0;
}

.chat-widget__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 0.3rem;
  line-height: 1;
  transition: color var(--transition);
}

.chat-widget__close:hover {
  color: var(--color-white);
}

/* Panel body */
.chat-widget__body {
  padding: 1.5rem;
  overflow-y: auto;
}

/* Chat card */
.chat-widget__card {
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: 1.2rem;
  margin-bottom: 1rem;
}

.chat-widget__card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-heading);
  margin-bottom: 0.3rem;
}

.chat-widget__card p {
  font-size: 0.82rem;
  color: var(--color-text-secondary);
  margin-bottom: 0.8rem;
}

.chat-widget__card .btn {
  width: 100%;
  justify-content: center;
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
}

/* Contact options */
.chat-widget__divider {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-secondary);
  text-align: center;
  margin: 0.8rem 0;
}

.chat-widget__option {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
  color: var(--color-text);
  transition: color var(--transition);
  cursor: pointer;
}

.chat-widget__option:last-child {
  border-bottom: none;
}

.chat-widget__option:hover {
  color: var(--color-accent);
}

.chat-widget__option-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 43, 83, 0.08);
  flex-shrink: 0;
}

.chat-widget__option-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chat-widget__option-text {
  flex: 1;
  font-size: 0.9rem;
  font-weight: 500;
}

.chat-widget__option-arrow {
  color: var(--color-text-secondary);
  transition: transform var(--transition);
}

.chat-widget__option:hover .chat-widget__option-arrow {
  transform: translateX(3px);
  color: var(--color-accent);
}

/* Responsive */
@media (max-width: 600px) {
  .chat-widget__panel {
    width: calc(100vw - 2rem);
    right: 1rem;
    bottom: 5rem;
  }

  .chat-widget__trigger {
    right: 1rem;
    bottom: 1rem;
    padding: 0.75rem 1.1rem;
    font-size: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .chat-widget__panel {
    animation: none;
  }
}
