/* ==============================================
   BASIC SETUP & VARIABLES 
   ============================================== */
:root {
  /* Huisstijl Spryntpeople */
  --color-primary: #1b2e56;     /* Donkerblauw */
  --color-text: #1a1a18;        /* Zacht Zwart */
  --color-accent-1: #eb7603;    /* Oranje (CTA) */
  --color-accent-2: #056eb6;    /* Helderblauw */
  --color-accent-3: #39782f;    /* Groen */
  
  /* Achtergronden en UI kleuren */
  --color-bg-light: #f7f9fc;    /* Zeer licht blauw/grijs voor secties */
  --color-bg-white: #ffffff;
  --color-border: #e2e8f0;
  
  /* Typografie (Google Fonts: Outfit & Plus Jakarta Sans) */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Spacing */
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  
  /* Borders & Shadows */
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --shadow-soft: 0 10px 30px rgba(27, 46, 86, 0.08); /* Donkerblauwe lichte schaduw */
  --shadow-hover: 0 15px 40px rgba(235, 118, 3, 0.15); /* Oranje gloed bij hover */
  
  /* Transities */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==============================================
   RESET & GLOBALS 
   ============================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.6;
  background-color: var(--color-bg-white);
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

.text-accent {
  color: var(--color-accent-1);
}

.text-white {
  color: var(--color-bg-white) !important;
}

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

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

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

.bg-primary h2, .bg-primary p {
  color: var(--color-bg-white);
}

section {
  padding: var(--spacing-xl) 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
}

.section-subtitle {
  font-size: 1.125rem;
  color: #64748b;
  margin-bottom: var(--spacing-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--spacing-lg);
}

/* ==============================================
   BUTTONS (Elementor: Theme Style -> Buttons) 
   ============================================== */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px; /* Pill shape */
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-smooth);
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--color-accent-1); /* Oranje */
  color: var(--color-bg-white);
  box-shadow: 0 4px 14px rgba(235, 118, 3, 0.3);
}

.btn-primary:hover {
  background-color: #d66a02;
  color: var(--color-bg-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(235, 118, 3, 0.4);
}

.btn-secondary {
  background-color: var(--color-primary); /* Donkerblauw */
  color: var(--color-bg-white);
}

.btn-secondary:hover {
  background-color: #121e3c;
  color: var(--color-bg-white);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

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

.btn-full {
  width: 100%;
  display: block;
}

.link-arrow {
  font-family: var(--font-heading);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-accent-2); /* Helderblauw */
}

.link-arrow:hover {
  color: var(--color-accent-1);
  gap: 0.75rem; /* Pijl 'sprint' animatie */
}

/* ==============================================
   1. HEADER 
   ============================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px); /* Glassmorphism */
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  transition: all 0.3s ease;
  padding: 1rem 0;
}

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

.logo a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.5px;
}

.logo-accent {
  color: var(--color-accent-1);
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.main-nav a {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--color-text);
  font-size: 1rem;
}

.main-nav a:hover {
  color: var(--color-accent-2);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-primary);
  cursor: pointer;
}

/* ==============================================
   2. HERO SECTIE 
   ============================================== */
.hero-section {
  position: relative;
  padding: 200px 0 100px;
  overflow: hidden;
  text-align: center;
}

/* Vloeiende overgang (gradient) naar de volgende sectie */
.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px; /* Hoogte van het fade-effect */
  background: linear-gradient(to bottom, rgba(247, 249, 252, 0) 0%, var(--color-bg-light) 100%);
  z-index: 10;
  pointer-events: none; /* Zorgt dat cards eronder klikbaar blijven */
}

/* Achtergrond Slider */
.hero-bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  /* Een lichte scale-animatie (ken burns) tijdens de vertoning */
  transition: transform 30s linear;
}

.slide-1 {
  background-image: url('backgrounds/landing_1.jpg');
  animation: heroFade1 30s infinite;
}

.slide-2 {
  background-image: url('backgrounds/landing_2.jpg');
  animation: heroFade2 30s infinite;
}

@keyframes heroFade1 {
  0% { opacity: 1; transform: scale(1); }
  33.33% { opacity: 1; transform: scale(1.02); }
  50% { opacity: 0; transform: scale(1.05); }
  83.33% { opacity: 0; transform: scale(1); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes heroFade2 {
  0% { opacity: 0; transform: scale(1.05); }
  33.33% { opacity: 0; transform: scale(1); }
  50% { opacity: 1; transform: scale(1); }
  83.33% { opacity: 1; transform: scale(1.02); }
  100% { opacity: 0; transform: scale(1.05); }
}

/* Subtiele cross-fade overlay over de foto zodat kleuren en tekst behouden blijven */
.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-bg-light);
  opacity: 0.82; 
}

/* Abstracte achtergrond elementen */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  opacity: 0.6;
}

.hero-shape-1 {
  width: 400px;
  height: 400px;
  background: rgba(5, 110, 182, 0.2); /* Helderblauw zacht */
  top: -100px;
  left: -100px;
}

.hero-shape-2 {
  width: 500px;
  height: 500px;
  background: rgba(235, 118, 3, 0.15); /* Oranje zacht */
  bottom: -150px;
  right: -100px;
}

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

.hero-badge {
  display: inline-block;
  background-color: rgba(5, 110, 182, 0.1);
  color: var(--color-accent-2);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  font-size: 4rem;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-content p {
  font-size: 1.25rem;
  color: #475569;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.hero-action-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.action-card {
  background: var(--color-bg-white);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  width: 50%;
  box-shadow: var(--shadow-soft);
  text-align: left;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  border: 1px solid rgba(255,255,255,0.5);
}

.action-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.candidate-card .card-icon { color: var(--color-accent-1); }
.employer-card .card-icon { color: var(--color-primary); }

.action-card h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.action-card p {
  font-size: 1rem;
  margin: 0 0 1.5rem;
}

.search-input {
  display: flex;
  align-items: center;
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  margin-bottom: 1.5rem;
  padding: 0 1.5rem;
  transition: border-color var(--transition-fast);
}

.search-input:focus-within {
  border-color: var(--color-accent-2); /* Helderblauw als je erin typt */
}

.search-input i {
  color: #64748b;
  margin-right: 0.75rem;
}

.search-input input {
  width: 100%;
  padding: 1rem 0;
  border: none;
  background: transparent;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
}

.search-input input::placeholder {
  color: #94a3b8;
}

/* ==============================================
   3. FEATURES (Werkwijze) 
   ============================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  background: var(--color-bg-white);
  padding: 3rem 2rem;
  border-radius: var(--border-radius-md);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: transform var(--transition-fast);
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

/* 1e Kolom: Groen */
.feature-icon.icon-green {
  background: rgba(57, 120, 47, 0.1); /* Lichte groene bg */
  color: var(--color-accent-3);       /* Groen (#39782f) */
}

/* 2e Kolom: Helderblauw */
.feature-icon.icon-blue {
  background: rgba(5, 110, 182, 0.1); /* Lichte blauwe bg */
  color: var(--color-accent-2);       /* Blauw (#056eb6) */
}

/* 3e Kolom: Oranje */
.feature-icon.icon-orange {
  background: rgba(235, 118, 3, 0.1); /* Lichte oranje bg */
  color: var(--color-accent-1);       /* Oranje (#eb7603) */
}

.feature-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-item p {
  color: #475569;
}

/* ==============================================
   4. VACATURE GRID (JetEngine Look) 
   ============================================== */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.job-card {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  color: inherit;
  transition: all var(--transition-smooth);
}

.job-card:hover {
  border-color: var(--color-accent-2);
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.job-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
}

.tag-blue { background-color: rgba(5, 110, 182, 0.1); color: var(--color-accent-2); }
.tag-orange { background-color: rgba(235, 118, 3, 0.1); color: var(--color-accent-1); }
.tag-green { background-color: rgba(57, 120, 47, 0.1); color: var(--color-accent-3); }
.tag-outline { border: 1px solid var(--color-border); color: #64748b; }

.job-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.job-meta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  color: #475569;
  font-size: 0.95rem;
}

.job-meta span i {
  width: 20px;
  color: var(--color-accent-2);
}

.job-action {
  margin-top: auto;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition-fast);
}

.job-card:hover .job-action {
  color: var(--color-accent-1);
}

/* ==============================================
   5. OVER ONS (Split Screen) 
   ============================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.image-placeholder {
  background-color: var(--color-primary); /* Fallback */
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--border-radius-lg);
  position: relative;
  /* overflow: hidden VERWIJDERD zodat de badge kan "uitsteken" */
  background-image: url('backgrounds/about_1.jpg');
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1); /* Subtiele schaduw onder de foto zelf */
}

/* Subtiele donkere/blauwe overlay over de foto */
.image-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(27, 46, 86, 0.4), rgba(5, 110, 182, 0.2));
  border-radius: var(--border-radius-lg);
  z-index: 1;
}

.experience-badge {
  position: absolute;
  bottom: 2rem;
  right: -2rem;
  background: var(--color-bg-white);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  box-shadow: 0 15px 35px rgba(27, 46, 86, 0.15); /* Zwaardere dropshadow zodat hij echt 'los' lijkt */
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2; /* Boven de overlay */
}

.experience-badge .number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-accent-1);
  line-height: 1;
}

.experience-badge .text {
  font-weight: 600;
  line-height: 1.2;
}

.lead-text {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.check-list {
  list-style: none;
  margin: 2rem 0;
}

.check-list li {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.check-list i {
  color: var(--color-accent-3); /* Groen */
  margin-top: 0.25rem;
}

/* ==============================================
   6. STATS (Counters) 
   ============================================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  padding: 2.5rem 0;
}

.stat-item {
  border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: 800;
  color: var(--color-bg-white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-number span {
  font-size: 3.5rem;
  color: var(--color-accent-1); /* Oranje tekens naast ciijfers */
}

/* ==============================================
   7. REVIEWS 
   ============================================== */
/* Infinite Scroll Marquee Wrapper */
.reviews-marquee-wrapper {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 0;
}

/* De track waar de content in zit */
.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
}

.marquee-content {
  display: flex;
  gap: 2rem;
  padding-right: 2rem; /* Ruimte na de laatste kaart tot aan de gekopieerde eerste */
}

/* Kaarten strakke breedte geven anders schalen ze vervormd in Flex */
.marquee-content .review-card {
  width: 450px;
  flex-shrink: 0;
}

/* Animatie Keyframes */
@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

@keyframes scrollRight {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

/* Koppel animaties aan richtingen */
.track-left .marquee-content {
  animation: scrollLeft 60s linear infinite;
}

.track-right .marquee-content {
  animation: scrollRight 60s linear infinite;
}

/* Hover-pause effect */
.marquee-track:hover .marquee-content {
  animation-play-state: paused;
}

.review-card {
  background: var(--color-bg-white);
  padding: 3rem;
  border-radius: var(--border-radius-md);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.stars {
  color: #fbbf24; /* Geel/Goud */
  margin-bottom: 1rem;
}

.review-text {
  font-size: 1.125rem;
  font-style: italic;
  margin-bottom: 2rem;
  color: #334155;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  background-color: var(--color-accent-2);
  color: var(--color-bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
}

.reviewer-info strong {
  display: block;
  color: var(--color-primary);
}

.reviewer-info span {
  font-size: 0.875rem;
  color: #64748b;
}

/* ==============================================
   8. CTA / OPEN SOLLICITATIE 
   ============================================== */
.cta-box {
  background: linear-gradient(135deg, var(--color-accent-2), #034b7d); /* Helderblauw naar donkerder blauw */
  border-radius: var(--border-radius-lg);
  padding: 4rem;
  display: flex;
  align-items: center;
  gap: 4rem;
  color: var(--color-bg-white);
}

.cta-content {
  flex: 1;
}

.cta-content h2 {
  color: var(--color-bg-white);
  font-size: 2.5rem;
}

.cta-content p {
  font-size: 1.125rem;
  opacity: 0.9;
}

.cta-form-placeholder {
  flex: 1;
  background: var(--color-bg-white);
  padding: 2.5rem;
  border-radius: var(--border-radius-md);
}

.simple-form input {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
}

.upload-area {
  border: 2px dashed var(--color-border);
  padding: 1.5rem;
  text-align: center;
  border-radius: var(--border-radius-sm);
  margin-bottom: 1.5rem;
  color: #64748b;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.upload-area:hover {
  border-color: var(--color-accent-2);
  color: var(--color-accent-2);
  background-color: rgba(5, 110, 182, 0.05);
}

.upload-area i {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* ==============================================
   9. FOOTER 
   ============================================== */
.footer {
  background-color: #0b1528; /* Nog donkerder dan primary */
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.footer-bio {
  margin-bottom: 2rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  color: var(--color-bg-white);
  border-radius: 50%;
  margin-right: 0.5rem;
}

.social-links a:hover {
  background: var(--color-accent-1);
}

.footer h4 {
  color: var(--color-bg-white);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 0.75rem;
}

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

.footer a:hover {
  color: var(--color-accent-1);
  padding-left: 5px; /* Subtiele hover beweging */
}

.contact-info li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info i {
  margin-top: 0.3rem;
  color: var(--color-accent-2);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.875rem;
}

.footer-legal a {
  margin-left: 1.5rem;
}

/* ==============================================
   RESPONSIVE DESIGN (Mobiel & Tablet)
   ============================================== */
@media (max-width: 1024px) {
  .hero-content h1 { font-size: 3rem; }
  .hero-action-cards { flex-direction: column; }
  .action-card { width: 100%; }
  
  .features-grid, .jobs-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  
  .about-grid, .cta-box {
    grid-template-columns: 1fr;
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header-actions { display: none; } /* Hide primary button on small mobile header, could move to menu */
  .main-nav { display: none; } /* Hide menu, needs JS toggle later */
  .mobile-menu-toggle { display: block; }

  .hero-content h1 { font-size: 2.5rem; }
  .features-grid, .jobs-grid, .stats-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 2rem 0;
  }
  
  .stat-item:last-child { border-bottom: none; }
  
  .cta-box { padding: 2rem; }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ==============================================
   ANIMATIONS (Intersection Observer)
   ============================================== */
.anim-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.anim-fade-in {
  opacity: 0;
  transition: opacity 1s ease;
  will-change: opacity;
}

/* Staggered vertraging voor items in grids en hero elementen */
.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.4s; }
.anim-delay-5 { transition-delay: 0.5s; }
.anim-delay-6 { transition-delay: 0.6s; }

/* Status class toegevoegd door JS */
.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero elements direct inladen */
.hero-content h1.is-visible,
.hero-content p.is-visible {
  transform: translateY(0);
  opacity: 1;
}

/* Float animatie voor de hero kaarten */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.action-card.is-visible {
  animation: float 6s ease-in-out infinite;
  animation-delay: calc(var(--anim-delay) * 1s);
}

.candidate-card { --anim-delay: 0; }
.employer-card { --anim-delay: 0.5; }

/* Hover overschrijft de float animatie op de hero kaarten */
.action-card:hover {
  animation-play-state: paused;
}

/* ==============================================
   LOGO FIXES
   ============================================== */
.header-logo {
  max-height: 48px; /* Zorgt dat het logo mooi in de header past qua hoogte */
  width: auto;
  object-fit: contain;
}

/* Pas ook het logo in de footer in the meantime aan naar de image als je wilt, of laat tekst */
.footer-logo img {
  max-height: 40px;
  width: auto;
  filter: brightness(0) invert(1); /* Zorgt dat een donker logo wit wordt op de donkere footer background, pas aan naar wens */
}

/* ==============================================
   OVERRIDE: HERO CARDS LAYOUT
   ============================================== */
.card-header {
  display: flex;
  align-items: flex-start; /* Icoon bovenin uitlijnen met tekst */
  gap: 1.5rem;             /* Iets meer ruimte tussen icoon en tekst */
  margin-bottom: 1.5rem;   /* Volledige afstand tot aan keuzemenu */
}

.action-card .card-icon {
  margin-bottom: 0;
  font-size: 2.25rem;      /* Iets groter om de layout te dragen */
  flex-shrink: 0;          /* Zorg dat icoon niet krimpt door flexbox */
}

.card-text {
  display: flex;
  flex-direction: column;
}

.action-card h3 {
  margin-bottom: 0.25rem;
  font-size: 1.5rem;
  line-height: 1.2;
}

.action-card p {
  font-size: 1rem;
  margin: 0;               /* Remove margin on p inside card-text */
}

/* Specifieke kleur overschrijf voor kandidaatkaart titel (Oranje) */
.candidate-card h3 {
  color: var(--color-accent-1);
}
