/* ============================================
   GROWSULT — Homepage Stylesheet (v2)
   Brand: #0071bc (blue), #5acac8 (turquoise), #f5c518 (gold)
   Font: Manrope 400-800
   ============================================ */

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: opacity 0.2s; }
a:hover { opacity: 0.85; }

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

ul, ol { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}


/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { opacity: 1; transform: translateY(-1px); }

.btn-gradient-primary {
  background: linear-gradient(135deg, #0071bc, #5acac8);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0,113,188,0.3);
}
.btn-gradient-primary:hover { box-shadow: 0 6px 20px rgba(0,113,188,0.4); }

.btn-primary {
  background: #0071bc;
  color: #fff;
}
.btn-primary:hover { background: #005a96; }

.btn-white-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-white-outline:hover { background: rgba(255,255,255,0.1); }

.btn-white {
  background: #fff;
  color: #0071bc;
}

.btn-link {
  background: none;
  color: #0071bc;
  padding: 0;
  font-weight: 600;
}
.btn-link:hover { text-decoration: underline; }

.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-icon { font-size: 16px; }


/* ---------- Section helpers ---------- */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  gap: 20px;
  flex-wrap: wrap;
}

.section-subtitle {
  font-size: 17px;
  color: #5e7d9a;
  margin-top: 8px;
  line-height: 1.5;
}


/* ---------- Scroll Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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


/* ---------- Top Bar ---------- */
.top-bar {
  background: #0071bc;
  color: #fff;
  padding: 8px 0;
  font-size: 13px;
  position: relative;
  z-index: 1000;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar__left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar__left a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 13px;
}

.top-bar__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar__search {
  position: relative;
}

.top-bar__search input {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  padding: 5px 12px;
  color: #fff;
  font-size: 13px;
  width: 160px;
  outline: none;
  font-family: 'Manrope', sans-serif;
}
.top-bar__search input::placeholder { color: rgba(255,255,255,0.7); }
.top-bar__search input:focus {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.5);
}

.top-bar__links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar__links a {
  color: #fff;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 4px;
}


/* ---------- Header / Navigation ---------- */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}

.site-header__logo img {
  height: 75px;
  width: auto;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu__item { position: relative; }

.nav-menu__link {
  font-size: 15px;
  font-weight: 700;
  color: #333;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 0;
}
.nav-menu__link:hover { color: #0071bc; opacity: 1; }

.nav-menu__link .arrow {
  font-size: 10px;
  transition: transform 0.2s;
}

.nav-menu__item:hover .arrow { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  min-width: 240px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  z-index: 100;
}

.nav-menu__item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown__link {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: #333;
  transition: background 0.15s;
}
.nav-dropdown__link:hover {
  background: #f5f9fc;
  color: #0071bc;
  opacity: 1;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: #333;
  padding: 4px;
}


/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}

.hero__divider svg {
  width: 100%;
  height: auto;
  display: block;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 100px;
}

.hero__content h1 {
  font-size: 45px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero__content p {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 500px;
}

.hero__buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__search-card {
  background: #fff;
  border-radius: 12px;
  padding: 36px 32px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.hero__search-card h2 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 24px;
  text-align: center;
}

.hero__search-card select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Manrope', sans-serif;
  color: #555;
  background: #fff;
  margin-bottom: 16px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.hero__search-card select:focus {
  border-color: #0071bc;
  outline: none;
}

.hero__search-card .btn {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 16px;
}


/* ---------- Trust Strip (NEW) ---------- */
.trust-strip {
  background: #f0f6fb;
  border-bottom: 1px solid #d6e6f2;
  padding: 16px 0;
}

.trust-strip__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #0071bc;
}

.trust-strip__icon {
  display: flex;
  align-items: center;
}

.trust-strip__text {
  font-size: inherit;
  color: inherit;
  line-height: 1.4;
}


/* ---------- Section: Waarom Growsult (redesigned) ---------- */
.section-waarom {
  padding: 70px 0 80px;
  background: #fff;
}

.section-waarom h2 {
  font-size: 38px;
  font-weight: 800;
  color: #0071bc;
  text-align: center;
  margin-bottom: 8px;
}

.section-waarom .section-subtitle {
  text-align: center;
  margin-bottom: 48px;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.usp-card {
  background: #fff;
  border: 1px solid #e4eef5;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.usp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,113,188,0.1);
  border-color: #0071bc;
}

.usp-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,113,188,0.08), rgba(90,202,200,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #0071bc;
}

.usp-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #1a2b3c;
  margin-bottom: 10px;
}

.usp-card__desc {
  font-size: 14px;
  color: #5e7d9a;
  line-height: 1.6;
}


/* ---------- Section: Populaire Trainingen (enriched) ---------- */
.section-trainingen {
  padding: 60px 0 80px;
  background: #fff;
}

.section-trainingen h2 {
  font-size: 32px;
  font-weight: 800;
  color: #0071bc;
  margin-bottom: 4px;
}

.training-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.training-card {
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  min-height: 180px;
}
.training-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  opacity: 1;
}

.training-card__image {
  width: 200px;
  min-height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.training-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 24px;
  gap: 8px;
}

.training-card__badge {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.training-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.training-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.training-card__stars {
  display: flex;
  gap: 2px;
}

.training-card__info {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.training-card__date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

.training-card__date svg {
  fill: rgba(255,255,255,0.6);
}


/* ---------- Section: Werkwijze / Onze Aanpak (NEW) ---------- */
.section-werkwijze {
  padding: 70px 0 80px;
  background: #f0f6fb;
}

.section-werkwijze h2 {
  font-size: 38px;
  font-weight: 800;
  color: #0071bc;
  text-align: center;
  margin-bottom: 8px;
}

.section-werkwijze .section-subtitle {
  text-align: center;
  margin-bottom: 48px;
}

.werkwijze-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.werkwijze-step {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}

.werkwijze-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,113,188,0.12);
}

.werkwijze-step__number {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, #0071bc, #5acac8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}

.werkwijze-step__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0,113,188,0.1), rgba(90,202,200,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #0071bc;
}

.werkwijze-step__title {
  font-size: 17px;
  font-weight: 700;
  color: #1a2b3c;
  margin-bottom: 8px;
}

.werkwijze-step__desc {
  font-size: 14px;
  color: #5e7d9a;
  line-height: 1.6;
}


/* ---------- Section: Eerstvolgende Trainingen (NEW) ---------- */
.section-upcoming {
  padding: 60px 0 80px;
  background: #fff;
}

.section-upcoming h2 {
  font-size: 32px;
  font-weight: 800;
  color: #0071bc;
  margin-bottom: 4px;
}

.upcoming-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.upcoming-row {
  display: grid;
  grid-template-columns: 160px 1fr auto auto auto;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 1px solid #e4eef5;
  border-radius: 12px;
  padding: 18px 24px;
  transition: all 0.25s ease;
  text-decoration: none;
}

.upcoming-row:hover {
  border-color: #0071bc;
  box-shadow: 0 6px 20px rgba(0,113,188,0.1);
  transform: translateY(-2px);
  opacity: 1;
}

.upcoming-row__date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #1a2b3c;
}

.upcoming-row__date-icon {
  display: flex;
  color: #0071bc;
}

.upcoming-row__date-icon svg {
  fill: #0071bc;
}

.upcoming-row__info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.upcoming-row__title {
  font-size: 15px;
  font-weight: 700;
  color: #1a2b3c;
}

.upcoming-row__tag {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.upcoming-row__details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 13px;
  color: #5e7d9a;
}

.upcoming-row__price {
  font-weight: 700;
  color: #1a2b3c;
  font-size: 15px;
}

.upcoming-row__spots {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #5e7d9a;
  white-space: nowrap;
}

.upcoming-row__spots--hidden {
  display: none;
}

.upcoming-row__spots--low {
  color: #e74c3c;
}

.upcoming-row__spots--low svg {
  fill: #e74c3c;
}

.upcoming-row__cta {
  font-size: 14px;
  font-weight: 700;
  color: #0071bc;
  white-space: nowrap;
}

.upcoming-row:hover .upcoming-row__cta {
  text-decoration: underline;
}


/* ---------- Section: Logo Carousel (auto-scroll) ---------- */
.section-logos {
  padding: 60px 0;
  background: #f7f7f7;
}

.section-logos h2 {
  font-size: 32px;
  font-weight: 800;
  color: #0071bc;
  text-align: center;
  margin-bottom: 40px;
}

.logo-carousel {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-carousel__track {
  display: flex;
  align-items: center;
  gap: 60px;
  will-change: transform;
}

.logo-carousel__slide {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
}

.logo-carousel__slide img {
  height: 55px;
  width: auto;
  object-fit: contain;
  filter: grayscale(30%);
  opacity: 0.75;
  transition: all 0.3s;
}
.logo-carousel__slide img:hover {
  opacity: 1;
  filter: grayscale(0);
}


/* ---------- Section: Statistieken (animated counters) ---------- */
.section-stats {
  position: relative;
  padding: 60px 0 80px;
  overflow: hidden;
}

.section-stats__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.section-stats__overlay {
  position: absolute;
  inset: 0;
}

.section-stats .container {
  position: relative;
  z-index: 2;
}

.section-stats__banner-text {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
}

.section-stats__cta-heading {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 24px;
}

.section-stats__cta-btn {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.stat-block {
  background: rgba(163, 219, 255, 0.45);
  border-radius: 15px;
  padding: 30px 40px;
  text-align: center;
  flex: 0 0 31%;
  max-width: 320px;
}

.stat-block__number {
  font-size: 70px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-block__label {
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}


/* ---------- Section: Testimonials (with stars) ---------- */
.section-testimonials {
  padding: 60px 0 80px;
  background: #fff;
}

.section-testimonials h2 {
  font-size: 38px;
  font-weight: 800;
  color: #0071bc;
  text-align: center;
  margin-bottom: 40px;
}

.testimonial-carousel {
  position: relative;
  overflow: hidden;
}

.testimonial-carousel__track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}

.testimonial-card {
  flex-shrink: 0;
  width: calc(33.333% - 16px);
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid #e4eef5;
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  box-shadow: 0 12px 30px rgba(0,113,188,0.1);
  transform: translateY(-3px);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.testimonial-card__quote {
  font-size: 15px;
  color: #3d5a75;
  line-height: 1.65;
  margin-bottom: 24px;
  font-style: italic;
  flex: 1;
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid #f0f6fb;
  padding-top: 16px;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: 15px;
  font-weight: 700;
  color: #1a2b3c;
}

.testimonial-card__title {
  font-size: 13px;
  color: #5e7d9a;
  margin-top: 2px;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #d6e6f2;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #5e7d9a;
  transition: all 0.2s;
}
.carousel-btn:hover {
  border-color: #0071bc;
  color: #0071bc;
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d6e6f2;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}
.carousel-dot.active {
  background: #0071bc;
  width: 24px;
  border-radius: 5px;
}


/* ---------- Section: Ons Aanbod ---------- */
.section-aanbod {
  padding: 60px 0 80px;
  background: #fff;
}

.section-aanbod h2 {
  font-size: 32px;
  font-weight: 800;
  color: #0071bc;
  margin-bottom: 30px;
}

.aanbod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.aanbod-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid #e4eef5;
  transition: transform 0.35s, box-shadow 0.35s;
  display: flex;
  flex-direction: column;
  position: relative;
}
.aanbod-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,113,188,0.15);
}

.aanbod-card__accent {
  height: 5px;
  background: linear-gradient(90deg, #0071bc, #5acac8);
  border-radius: 16px 16px 0 0;
}

.aanbod-card__body {
  padding: 32px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.aanbod-card__number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 48px;
  font-weight: 800;
  color: rgba(0,113,188,0.06);
  line-height: 1;
  pointer-events: none;
}

.aanbod-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,113,188,0.08), rgba(90,202,200,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0071bc;
  margin-bottom: 20px;
  transition: background 0.3s;
}
.aanbod-card:hover .aanbod-card__icon {
  background: linear-gradient(135deg, rgba(0,113,188,0.14), rgba(90,202,200,0.14));
}

.aanbod-card__title {
  font-size: 21px;
  font-weight: 700;
  color: #1a2b3c;
  margin-bottom: 12px;
}

.aanbod-card__desc {
  font-size: 15px;
  color: #5e7d9a;
  line-height: 1.7;
  margin-bottom: 16px;
}

.aanbod-card__highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.aanbod-card__highlight {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #3a5a7c;
  font-weight: 500;
}
.aanbod-card__highlight svg {
  flex-shrink: 0;
}

.aanbod-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0071bc;
  font-size: 14px;
  font-weight: 700;
  padding-top: 18px;
  border-top: 1px solid #f0f6fb;
  transition: gap 0.3s;
}
.aanbod-card:hover .aanbod-card__link { gap: 12px; }
.aanbod-card__arrow {
  display: inline-block;
  transition: transform 0.3s;
}
.aanbod-card:hover .aanbod-card__arrow { transform: translateX(4px); }


/* ---------- Section: Kenniscentrum (article cards — NEW) ---------- */
.section-kenniscentrum {
  padding: 70px 0 80px;
  background: #f0f6fb;
}

.section-kenniscentrum h2 {
  font-size: 32px;
  font-weight: 800;
  color: #0071bc;
  margin-bottom: 4px;
}

.artikel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.artikel-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  border: 1px solid #e4eef5;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.artikel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,113,188,0.1);
  opacity: 1;
}

.artikel-card__image-wrap {
  position: relative;
  overflow: hidden;
}

.artikel-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s;
}

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

.artikel-card__category {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,113,188,0.9);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.artikel-card__body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.artikel-card__title {
  font-size: 17px;
  font-weight: 700;
  color: #1a2b3c;
  line-height: 1.4;
  margin-bottom: 10px;
}

.artikel-card__excerpt {
  font-size: 14px;
  color: #5e7d9a;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 12px;
}

.artikel-card__readtime {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #5e7d9a;
}

.artikel-card__readtime svg {
  fill: #5e7d9a;
}


/* ---------- Section: Nieuwsbrief (NEW — replaces social sharing) ---------- */
.section-nieuwsbrief {
  padding: 0;
}

.nieuwsbrief__inner {
  background: linear-gradient(135deg, #0071bc, #005a96);
  border-radius: 20px;
  padding: 56px 48px;
  display: flex;
  align-items: center;
  gap: 48px;
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
  overflow: hidden;
}

.nieuwsbrief__inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(90,202,200,0.2), transparent 70%);
  border-radius: 50%;
}

.section-nieuwsbrief .container {
  padding: 60px 20px;
}

.nieuwsbrief__text {
  flex: 1;
}

.nieuwsbrief__text h2 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.nieuwsbrief__text p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

.nieuwsbrief__form {
  flex: 1;
  max-width: 420px;
  position: relative;
  z-index: 1;
}

.nieuwsbrief__input-group {
  display: flex;
  gap: 10px;
}

.nieuwsbrief__input-group input {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 15px;
  font-family: 'Manrope', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.nieuwsbrief__input-group input::placeholder {
  color: rgba(255,255,255,0.6);
}
.nieuwsbrief__input-group input:focus {
  border-color: #5acac8;
}

.nieuwsbrief__input-group .btn {
  white-space: nowrap;
  padding: 14px 28px;
}

.nieuwsbrief__privacy {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

.nieuwsbrief__success {
  font-size: 18px;
  font-weight: 700;
  color: #5acac8;
  padding: 20px 0;
}


/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  background: #212529;
  color: #fff;
  padding: 80px 0 40px;
}

.site-footer__divider {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 2;
}

.site-footer__divider svg {
  width: 100%;
  height: auto;
  display: block;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-col {
  min-width: 0;          /* prevent grid blowout on long words */
  overflow-wrap: break-word;
}

.footer-col__heading {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.footer-col__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-col__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col__links a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col__links a:hover { color: #fff; opacity: 1; }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  margin-bottom: 12px;
}

.footer-contact-item svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  fill: rgba(255,255,255,0.6);
}


/* ---------- Scroll-to-top ---------- */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0071bc, #5acac8);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 100;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-top:hover { transform: translateY(-3px); }


/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .hero__content h1 { font-size: 36px; }
  .hero__search-card { max-width: 480px; }

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

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

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

  .upcoming-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .upcoming-row__cta { grid-column: 1 / -1; text-align: center; }

  .stats-grid { flex-wrap: wrap; }
  .stat-block { flex: 0 0 auto; min-width: 200px; }

  .aanbod-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }

  .artikel-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }

  .nieuwsbrief__inner {
    flex-direction: column;
    text-align: center;
    padding: 40px 32px;
    gap: 28px;
  }
  .nieuwsbrief__form { max-width: 100%; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .testimonial-card { width: calc(50% - 12px); }
}

@media (max-width: 768px) {
  .top-bar__right { display: none; }
  .site-header__nav { display: none; }
  .mobile-toggle { display: flex; }

  .site-header.nav-open .site-header__nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 20px;
    gap: 8px;
  }

  .site-header.nav-open .nav-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .site-header.nav-open .nav-menu__link {
    padding: 12px 16px;
    border-radius: 8px;
  }
  .site-header.nav-open .nav-menu__link:hover { background: #f5f9fc; }

  .site-header.nav-open .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 20px;
  }

  .site-header__logo img { height: 50px; }

  .hero__content h1 { font-size: 30px; }
  .hero__content p { font-size: 16px; }

  .hero__buttons { flex-direction: column; }
  .hero__buttons .btn { width: 100%; justify-content: center; }

  .trust-strip__inner { gap: 16px; }
  .trust-strip__item { font-size: 12px; }

  .section-waarom h2 { font-size: 30px; }
  .usp-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  .section-trainingen h2 { font-size: 26px; }
  .section-header { flex-direction: column; align-items: flex-start; }

  .werkwijze-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  .upcoming-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 20px;
  }
  .upcoming-row__cta {
    grid-column: auto;
    background: #0071bc;
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    margin-top: 4px;
  }
  .upcoming-row:hover .upcoming-row__cta { text-decoration: none; }

  .section-logos h2 { font-size: 24px; }
  .section-stats__cta-heading { font-size: 28px; }
  .section-testimonials h2 { font-size: 28px; }

  .testimonial-card { width: 100%; }

  .stats-grid { flex-direction: column; align-items: center; }
  .stat-block { width: 100%; max-width: 300px; }
  .stat-block__number { font-size: 50px; }

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

  .nieuwsbrief__input-group {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero__content h1 { font-size: 26px; }
  .section-waarom h2 { font-size: 26px; }
  .section-trainingen h2 { font-size: 22px; }

  .training-card__image { width: 120px; }
  .training-card__title { font-size: 15px; }
  .training-card { min-height: auto; }
  .training-card__body { padding: 14px 16px; }

  .trust-strip__inner { flex-direction: column; gap: 8px; }
}
