/* ============================================
   Landing page — Homepage styles v5
   Enterprise grade. Based on HoorayHR/Employes/Personio analysis.
   No gimmicks. No animations in hero. Clean and confident.
   ============================================ */


/* ============================================
   HERO
   ============================================ */

.hero-landing {
  background: linear-gradient(180deg, #fff 60%, var(--color-primary-50, #eef2f7) 100%);
  padding: 9rem 0 3rem;
  display: block;
  min-height: auto;
}

.home-hero {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Badge */
.home-hero-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: var(--color-primary-50, #eef2f7);
  border: 1px solid var(--color-primary-100, #d5dfec);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-primary, #193259);
  margin-bottom: 1.5rem;
}

.home-hero-badge strong {
  font-weight: 700;
}

/* Title */
.home-hero-title {
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-slate-900, #0f172a);
  margin-bottom: 1.5rem;
}

/* Subtitle */
.home-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: var(--color-slate-500, #64748b);
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Buttons */
.home-hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.home-hero-actions .btn {
  border-radius: 8px;
}

.home-hero-actions .btn-primary {
  padding: 0.875rem 2rem;
}

.home-hero-actions .btn-outline {
  padding: 0.875rem 2rem;
  background: transparent;
  color: var(--color-primary, #193259);
  border: none;
  box-shadow: inset 0 0 0 1.5px var(--color-primary, #193259);
}

.home-hero-actions .btn-outline:hover {
  background: var(--color-primary, #193259);
  color: #fff;
  box-shadow: none;
}

/* Trust badges — HoorayHR style: icon box + title + subtitle */
.home-hero-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.home-trust-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.home-trust-icon {
  width: 40px;
  height: 40px;
  background: var(--color-slate-100, #f1f5f9);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary, #193259);
  flex-shrink: 0;
}

.home-trust-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-slate-900, #0f172a);
  line-height: 1.3;
}

.home-trust-sub {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-slate-400, #94a3b8);
  line-height: 1.3;
}


/* ============================================
   HERO PRODUCT VISUAL
   ============================================ */

.hero-product {
  position: relative;
  max-width: 1100px;
  margin: 3.5rem auto 0;
  padding: 0 var(--container-padding, 1.5rem);
}

.hero-product-inner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0px 2px 5px -1px rgba(0, 0, 0, 0.05),
    0px 0px 0px 1px rgba(0, 0, 0, 0.08),
    0 25px 50px -12px rgba(0, 0, 0, 0.12);
}

.hero-product-img {
  width: 100%;
  display: block;
}

/* Clickable screenshot — entire area opens dashboard */
.hero-product-inner {
  transition: box-shadow 0.2s ease;
}

.hero-product-inner:hover {
  box-shadow:
    0px 2px 5px -1px rgba(0, 0, 0, 0.05),
    0px 0px 0px 1px rgba(25, 50, 89, 0.15),
    0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* Expand badge — top-left, always visible */
.hero-product-expand {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  pointer-events: none;
  transition: background 0.2s ease;
}

.hero-product-inner:hover .hero-product-expand {
  background: rgba(0, 0, 0, 0.75);
}

/* Phone — desktop only, overlapping bottom-right */
.hero-phone {
  position: absolute;
  right: 0;
  bottom: -60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.hero-phone-frame {
  width: 200px;
  background: #1a1a1a;
  border-radius: 28px;
  padding: 6px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.hero-phone-img {
  width: 100%;
  display: block;
  border-radius: 22px;
}

.hero-phone-stores {
  display: flex;
  gap: 6px;
}

.store-btn-sm {
  padding: 0.3rem 0.5rem;
  border-radius: 6px;
  gap: 0.35rem;
}

.store-btn-sm svg {
  width: 14px;
  height: 14px;
}

.store-btn-sm .store-btn-text small {
  font-size: 0.4375rem;
}

.store-btn-sm .store-btn-text span {
  font-size: 0.6875rem;
}

@media (max-width: 1024px) {
  .hero-phone {
    display: none;
  }
}

@media (min-width: 1025px) and (max-width: 1200px) {
  .hero-phone-frame {
    width: 170px;
    border-radius: 24px;
    padding: 5px;
  }

  .hero-phone-img {
    border-radius: 19px;
  }
}


/* ============================================
   FULLSCREEN DASHBOARD MODAL
   ============================================ */

.home-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  background: var(--color-slate-50, #f8fafc);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.home-modal.active {
  opacity: 1;
  visibility: visible;
}

.home-modal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: #fff;
  border-bottom: 1px solid var(--color-slate-200, #e2e8f0);
  flex-shrink: 0;
}

.home-modal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--color-slate-100, #f1f5f9);
  border: none;
  color: var(--color-slate-600, #475569);
  cursor: pointer;
  transition: background 0.15s ease;
  margin-left: auto;
}

.home-modal-close:hover {
  background: var(--color-slate-200, #e2e8f0);
}

.home-modal-body {
  flex: 1;
  overflow: hidden;
}

.home-modal-body iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Shared browser dots (modal header) */
.home-browser-dots {
  display: flex;
  gap: 6px;
}

.home-browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.home-browser-dots span:nth-child(1) { background: #ef4444; }
.home-browser-dots span:nth-child(2) { background: #eab308; }
.home-browser-dots span:nth-child(3) { background: #22c55e; }

.home-browser-url {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--color-slate-500, #64748b);
  background: #fff;
  border: 1px solid var(--color-slate-200, #e2e8f0);
  border-radius: 6px;
  padding: 5px 12px;
}


/* ============================================
   UTILITIES
   ============================================ */

.section-label {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: var(--color-primary-50, #eef2f7);
  color: var(--color-primary, #193259);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

[data-theme="dark"] .section-label {
  background: rgba(38, 74, 122, 0.2);
  color: #93b4d4;
}

/* Scroll reveals — simplified: opacity only */
.reveal {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.reveal.revealed {
  opacity: 1;
}

.hide-mobile { display: none; }
@media (min-width: 768px) {
  .hide-mobile { display: inline; }
}


/* ============================================
   PROBLEM SECTION — Premium Bento Grid
   Glass cards, layered shadows, hover depth,
   gradient accents, textured background.
   ============================================ */

/* Section — subtle depth with radial spotlight + dot grid */
#probleem {
  background: #f8fafc;
}

[data-theme="dark"] #probleem {
  background: #0f172a;
}

/* Section header — match hero weight */
#probleem .section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

/* Bento grid */
.home-problem-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .home-problem-bento {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

/* ---- Glass card base ---- */
.home-problem-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 2rem;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(0, 0, 0, 0.03),
    0 16px 32px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s ease;
}

.home-problem-card:hover {
  transform: translateY(-4px);
  border-color: rgba(25, 50, 89, 0.12);
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.04),
    0 12px 24px rgba(0, 0, 0, 0.06),
    0 32px 64px rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] .home-problem-card {
  background: rgba(30, 41, 59, 0.55);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.2),
    0 4px 12px rgba(0, 0, 0, 0.15),
    0 16px 32px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .home-problem-card:hover {
  border-color: rgba(147, 180, 212, 0.15);
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.2),
    0 16px 32px rgba(0, 0, 0, 0.2),
    0 32px 64px rgba(0, 0, 0, 0.15);
}

/* ---- Icon ---- */
.home-problem-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 1.25rem;
  background: var(--color-primary-50, #eef2f7);
  color: var(--color-primary, #193259);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.home-problem-card:hover .home-problem-icon {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .home-problem-icon {
  background: rgba(255, 255, 255, 0.07);
  color: var(--color-slate-400, #94a3b8);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Icon color variants — each card gets its own identity */
.home-problem-icon-green  { background: #dcfce7; color: #16a34a; box-shadow: 0 2px 10px rgba(22, 163, 74, 0.15); }
.home-problem-icon-teal   { background: #ccfbf1; color: #0d9488; box-shadow: 0 2px 10px rgba(13, 148, 136, 0.15); }
.home-problem-icon-blue   { background: #dbeafe; color: #2563eb; box-shadow: 0 2px 10px rgba(37, 99, 235, 0.15); }
.home-problem-icon-amber  { background: #fef3c7; color: #d97706; box-shadow: 0 2px 10px rgba(217, 119, 6, 0.15); }
.home-problem-icon-red    { background: #fee2e2; color: #dc2626; box-shadow: 0 2px 10px rgba(220, 38, 38, 0.15); }
.home-problem-icon-purple { background: #ede9fe; color: #7c3aed; box-shadow: 0 2px 10px rgba(124, 58, 237, 0.15); }

.home-problem-card:hover .home-problem-icon-green  { box-shadow: 0 4px 16px rgba(22, 163, 74, 0.2); }
.home-problem-card:hover .home-problem-icon-teal   { box-shadow: 0 4px 16px rgba(13, 148, 136, 0.2); }
.home-problem-card:hover .home-problem-icon-blue   { box-shadow: 0 4px 16px rgba(37, 99, 235, 0.2); }
.home-problem-card:hover .home-problem-icon-amber  { box-shadow: 0 4px 16px rgba(217, 119, 6, 0.2); }
.home-problem-card:hover .home-problem-icon-red    { box-shadow: 0 4px 16px rgba(220, 38, 38, 0.2); }
.home-problem-card:hover .home-problem-icon-purple { box-shadow: 0 4px 16px rgba(124, 58, 237, 0.2); }

[data-theme="dark"] .home-problem-icon-green  { background: rgba(22, 163, 74, 0.15); color: #4ade80; }
[data-theme="dark"] .home-problem-icon-teal   { background: rgba(13, 148, 136, 0.15); color: #2dd4bf; }
[data-theme="dark"] .home-problem-icon-blue   { background: rgba(37, 99, 235, 0.15); color: #60a5fa; }
[data-theme="dark"] .home-problem-icon-amber  { background: rgba(217, 119, 6, 0.15); color: #fbbf24; }
[data-theme="dark"] .home-problem-icon-red    { background: rgba(220, 38, 38, 0.15); color: #f87171; }
[data-theme="dark"] .home-problem-icon-purple { background: rgba(124, 58, 237, 0.15); color: #a78bfa; }

/* ---- Typography ---- */
.home-problem-card h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-slate-900, #0f172a);
  margin-bottom: 0.5rem;
}

[data-theme="dark"] .home-problem-card h3 { color: #f1f5f9; }

.home-problem-quote {
  font-size: 0.875rem;
  color: var(--color-slate-500, #64748b);
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

[data-theme="dark"] .home-problem-quote { color: var(--color-slate-400, #94a3b8); }

/* ---- Featured cards (span 2) ---- */
@media (min-width: 768px) {
  .home-problem-lg {
    grid-column: span 2;
    display: flex;
    align-items: center;
    gap: 1.75rem;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(25, 50, 89, 0.06);
  }

  .home-problem-lg:hover {
    border-color: rgba(25, 50, 89, 0.18);
    box-shadow:
      0 4px 8px rgba(25, 50, 89, 0.05),
      0 16px 32px rgba(25, 50, 89, 0.08),
      0 32px 64px rgba(25, 50, 89, 0.05);
  }

  [data-theme="dark"] .home-problem-lg {
    background: rgba(30, 41, 59, 0.7);
  }

  .home-problem-lg .home-problem-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    margin-bottom: 0;
    background: var(--color-primary-50, #eef2f7);
    color: var(--color-primary, #193259);
    box-shadow: 0 4px 16px rgba(25, 50, 89, 0.1);
  }

  .home-problem-lg:hover .home-problem-icon {
    box-shadow: 0 6px 20px rgba(25, 50, 89, 0.16);
  }

  [data-theme="dark"] .home-problem-lg .home-problem-icon {
    background: rgba(38, 74, 122, 0.25);
    color: #93b4d4;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  }

  .home-problem-lg h3 {
    font-size: 1.0625rem;
  }

  .home-problem-lg .home-problem-quote {
    font-size: 1rem;
    padding-left: 1rem;
    border-left: 3px solid transparent;
    border-image: linear-gradient(180deg, var(--color-primary, #193259), rgba(38, 74, 122, 0.3)) 1;
  }

  [data-theme="dark"] .home-problem-lg .home-problem-quote {
    border-image: linear-gradient(180deg, #93b4d4, rgba(147, 180, 212, 0.2)) 1;
  }

  /* Decorative quotation mark */
  .home-problem-lg::after {
    content: '\201C';
    position: absolute;
    right: 1.5rem;
    bottom: -0.75rem;
    font-size: 8rem;
    line-height: 1;
    font-family: Georgia, 'Times New Roman', serif;
    color: rgba(25, 50, 89, 0.04);
    pointer-events: none;
    transition: color 0.3s ease;
  }

  .home-problem-lg:hover::after {
    color: rgba(25, 50, 89, 0.07);
  }

  [data-theme="dark"] .home-problem-lg::after {
    color: rgba(255, 255, 255, 0.02);
  }

  [data-theme="dark"] .home-problem-lg:hover::after {
    color: rgba(255, 255, 255, 0.04);
  }
}

/* ---- Punchline — gradient with inner glow ---- */
.home-problem-punchline {
  background: var(--color-primary-900, #0f172a);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 12px rgba(15, 23, 42, 0.1),
    0 16px 40px rgba(15, 23, 42, 0.12);
}

/* Inner radial glow */
.home-problem-punchline::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -20%;
  width: 160%;
  height: 160%;
  background: radial-gradient(ellipse at 80% 20%, rgba(38, 74, 122, 0.35) 0%, transparent 60%);
  pointer-events: none;
}

/* Subtle noise texture */
.home-problem-punchline::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  border-radius: 16px;
  pointer-events: none;
}

.home-problem-punchline > * {
  position: relative;
  z-index: 1;
}

.home-problem-punchline p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin: 0 0 0.75rem;
}

.home-problem-punchline-cta {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff !important;
  margin: 0 !important;
  line-height: 1.4;
}


/* ============================================
   SOLUTION SECTION — Paired Compare Grid
   Single CSS Grid ensures perfect row alignment.
   Card visuals via cell backgrounds + border-radius.
   ============================================ */

#oplossing .section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

/* Paired grid: 2 columns, rows auto-align */
.home-compare {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .home-compare {
    grid-template-columns: 1fr 1fr;
    gap: 0 1.5rem;
  }
}

/* ---- Shared cell styles ---- */
.home-compare-head,
.home-compare-cell {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* ---- Headers ---- */
.home-compare-head {
  align-items: center;
  font-size: 1.0625rem;
  font-weight: 800;
  padding: 1.5rem 2rem;
  letter-spacing: -0.01em;
}

.home-compare-head-old {
  background: #fff;
  border: 1px solid var(--color-slate-200, #e2e8f0);
  border-bottom: none;
  border-radius: 16px 16px 0 0;
  color: #dc2626;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.05);
}

.home-compare-head-new {
  background: #fff;
  border: 1px solid var(--color-slate-200, #e2e8f0);
  border-bottom: none;
  border-radius: 16px 16px 0 0;
  color: #16a34a;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .home-compare-head-old {
  background: rgba(30, 41, 59, 0.6);
  border-color: rgba(255, 255, 255, 0.06);
  color: #f87171;
}

[data-theme="dark"] .home-compare-head-new {
  background: rgba(30, 41, 59, 0.6);
  border-color: rgba(255, 255, 255, 0.06);
  color: #4ade80;
}

/* ---- Old cells (red) ---- */
.home-compare-cell-old {
  background: #fff;
  border-left: 1px solid var(--color-slate-200, #e2e8f0);
  border-right: 1px solid var(--color-slate-200, #e2e8f0);
  border-bottom: 1px solid var(--color-slate-100, #f1f5f9);
  color: var(--color-slate-500, #64748b);
  transition: background 0.2s ease;
}

.home-compare-cell-old:hover {
  background: #fafafa;
}

[data-theme="dark"] .home-compare-cell-old {
  background: rgba(30, 41, 59, 0.5);
  border-left-color: rgba(220, 38, 38, 0.1);
  border-right-color: rgba(220, 38, 38, 0.1);
  border-bottom-color: rgba(220, 38, 38, 0.05);
  color: var(--color-slate-400, #94a3b8);
}

/* ---- New cells (green) ---- */
.home-compare-cell-new {
  background: #fff;
  border-left: 1px solid var(--color-slate-200, #e2e8f0);
  border-right: 1px solid var(--color-slate-200, #e2e8f0);
  border-bottom: 1px solid var(--color-slate-100, #f1f5f9);
  color: var(--color-slate-700, #334155);
  transition: background 0.2s ease;
}

.home-compare-cell-new:hover {
  background: #fafafa;
}

[data-theme="dark"] .home-compare-cell-new {
  background: rgba(30, 41, 59, 0.6);
  border-left-color: rgba(34, 197, 94, 0.12);
  border-right-color: rgba(34, 197, 94, 0.12);
  border-bottom-color: rgba(34, 197, 94, 0.05);
  color: var(--color-slate-300, #cbd5e1);
}

/* Last row: rounded bottom + shadow */
.home-compare-cell-old:nth-last-child(2) {
  border-radius: 0 0 0 16px;
  border-bottom: 1px solid var(--color-slate-200, #e2e8f0);
  padding-bottom: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.home-compare-cell-new:last-child {
  border-radius: 0 0 16px 0;
  border-bottom: 1px solid var(--color-slate-200, #e2e8f0);
  padding-bottom: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

/* ---- Icons ---- */
.home-compare-cell svg,
.home-compare-head svg {
  flex-shrink: 0;
  margin-top: 1px;
  border-radius: 50%;
  padding: 2px;
}

.home-compare-cell-old svg {
  color: #dc2626;
  background: rgba(239, 68, 68, 0.12);
  box-shadow: 0 2px 6px rgba(239, 68, 68, 0.15);
}

.home-compare-cell-new svg {
  color: #16a34a;
  background: rgba(34, 197, 94, 0.12);
  box-shadow: 0 2px 6px rgba(34, 197, 94, 0.15);
}

[data-theme="dark"] .home-compare-cell-old svg { background: rgba(239, 68, 68, 0.15); color: #f87171; box-shadow: 0 2px 6px rgba(239, 68, 68, 0.2); }
[data-theme="dark"] .home-compare-cell-new svg { background: rgba(34, 197, 94, 0.15); color: #4ade80; box-shadow: 0 2px 6px rgba(34, 197, 94, 0.2); }

/* ---- Card shadow (applied to column groups via pseudo) ---- */
@media (min-width: 768px) {
  .home-compare {
    position: relative;
  }

  .home-compare-head-old {
    box-shadow:
      -2px 0 24px rgba(220, 38, 38, 0.06),
      0 4px 32px rgba(0, 0, 0, 0.06);
  }

  .home-compare-head-new {
    box-shadow:
      2px 0 24px rgba(34, 197, 94, 0.06),
      0 4px 32px rgba(0, 0, 0, 0.06);
  }
}

/* ---- Staggered reveal animation ---- */
.home-compare > * {
  opacity: 0;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

/* Old cells (left): slide in from left */
.home-compare-head-old,
.home-compare-cell-old {
  transform: translateX(-24px);
}

/* New cells (right): slide in from right */
.home-compare-head-new,
.home-compare-cell-new {
  transform: translateX(24px);
}

/* When revealed: animate to position with staggered delays */
.home-compare.revealed > * {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger per row pair (headers = row 0, then rows 1-6) */
.home-compare.revealed > :nth-child(1),
.home-compare.revealed > :nth-child(2) { transition-delay: 0s; }
.home-compare.revealed > :nth-child(3),
.home-compare.revealed > :nth-child(4) { transition-delay: 0.06s; }
.home-compare.revealed > :nth-child(5),
.home-compare.revealed > :nth-child(6) { transition-delay: 0.12s; }
.home-compare.revealed > :nth-child(7),
.home-compare.revealed > :nth-child(8) { transition-delay: 0.18s; }
.home-compare.revealed > :nth-child(9),
.home-compare.revealed > :nth-child(10) { transition-delay: 0.24s; }
.home-compare.revealed > :nth-child(11),
.home-compare.revealed > :nth-child(12) { transition-delay: 0.30s; }
.home-compare.revealed > :nth-child(13),
.home-compare.revealed > :nth-child(14) { transition-delay: 0.36s; }

/* Icon pop on reveal */
.home-compare > * svg {
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.home-compare.revealed > * svg {
  transform: scale(1);
}

.home-compare.revealed > :nth-child(3) svg,
.home-compare.revealed > :nth-child(4) svg { transition-delay: 0.16s; }
.home-compare.revealed > :nth-child(5) svg,
.home-compare.revealed > :nth-child(6) svg { transition-delay: 0.22s; }
.home-compare.revealed > :nth-child(7) svg,
.home-compare.revealed > :nth-child(8) svg { transition-delay: 0.28s; }
.home-compare.revealed > :nth-child(9) svg,
.home-compare.revealed > :nth-child(10) svg { transition-delay: 0.34s; }
.home-compare.revealed > :nth-child(11) svg,
.home-compare.revealed > :nth-child(12) svg { transition-delay: 0.4s; }
.home-compare.revealed > :nth-child(13) svg,
.home-compare.revealed > :nth-child(14) svg { transition-delay: 0.46s; }

/* ---- Row hover: highlight both cells in the pair ---- */
@media (min-width: 768px) {
  .home-compare-cell-old:hover {
    background: #f8fafc;
  }
  .home-compare-cell-old:hover + .home-compare-cell-new {
    background: #f8fafc;
  }
  .home-compare-cell-new:hover {
    background: #f8fafc;
  }
}

/* ---- Mobile: stack as two visual cards ---- */
@media (max-width: 767px) {
  .home-compare {
    gap: 1.5rem;
  }

  .home-compare-head-old,
  .home-compare-head-new {
    border-radius: 16px 16px 0 0;
    border: 1px solid;
    border-bottom: none;
  }

  .home-compare-cell-old:nth-last-child(2),
  .home-compare-cell-new:last-child {
    border-radius: 0 0 16px 16px;
  }

  .home-compare-head-new {
    margin-top: 0.5rem;
  }

  /* Mobile: no slide, just fade */
  .home-compare-head-old,
  .home-compare-cell-old,
  .home-compare-head-new,
  .home-compare-cell-new {
    transform: translateY(12px);
  }

  .home-compare.revealed > * {
    transform: translateY(0);
  }
}

/* ---- "En ook" badges ---- */
.home-compare-also {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.home-compare-also-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-slate-500, #64748b);
}

[data-theme="dark"] .home-compare-also-label { color: var(--color-slate-400, #94a3b8); }

.home-compare-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.home-compare-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary, #193259);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(25, 50, 89, 0.1);
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
}

.home-compare-badge:hover {
  background: var(--color-primary, #193259);
  color: #fff;
  border-color: var(--color-primary, #193259);
  box-shadow: 0 4px 16px rgba(25, 50, 89, 0.2);
  transform: translateY(-2px);
}

[data-theme="dark"] .home-compare-badge {
  background: rgba(38, 74, 122, 0.15);
  color: #93b4d4;
  border-color: rgba(38, 74, 122, 0.2);
}

[data-theme="dark"] .home-compare-badge:hover {
  background: rgba(38, 74, 122, 0.4);
  color: #fff;
}


/* ============================================
   MODULES GRID (unused — kept for subpages)
   ============================================ */

#modules .section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.home-modules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto 3rem;
}

@media (min-width: 640px) {
  .home-modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .home-modules-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

/* Module card */
.home-module-card {
  position: relative;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 2rem;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(0, 0, 0, 0.03),
    0 12px 24px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s ease;
}

.home-module-card:hover {
  transform: translateY(-4px);
  border-color: rgba(25, 50, 89, 0.1);
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.04),
    0 12px 24px rgba(0, 0, 0, 0.06),
    0 32px 64px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .home-module-card {
  background: rgba(30, 41, 59, 0.55);
  border-color: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .home-module-card:hover {
  border-color: rgba(147, 180, 212, 0.12);
}

/* Unique badge */
.home-module-unique {
  border-color: rgba(25, 50, 89, 0.08);
}

.home-module-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.25rem 0.625rem;
  border-radius: 6px;
  background: var(--color-primary, #193259);
  color: #fff;
}

[data-theme="dark"] .home-module-badge {
  background: rgba(38, 74, 122, 0.4);
  color: #93b4d4;
}

/* Module icon */
.home-module-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 1.25rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.home-module-card:hover .home-module-icon {
  transform: scale(1.05);
}

.home-module-icon-blue   { background: #dbeafe; color: #2563eb; box-shadow: 0 2px 10px rgba(37, 99, 235, 0.12); }
.home-module-icon-teal   { background: #ccfbf1; color: #0d9488; box-shadow: 0 2px 10px rgba(13, 148, 136, 0.12); }
.home-module-icon-amber  { background: #fef3c7; color: #d97706; box-shadow: 0 2px 10px rgba(217, 119, 6, 0.12); }
.home-module-icon-green  { background: #dcfce7; color: #16a34a; box-shadow: 0 2px 10px rgba(22, 163, 74, 0.12); }
.home-module-icon-purple { background: #ede9fe; color: #7c3aed; box-shadow: 0 2px 10px rgba(124, 58, 237, 0.12); }
.home-module-icon-red    { background: #fee2e2; color: #dc2626; box-shadow: 0 2px 10px rgba(220, 38, 38, 0.12); }

.home-module-card:hover .home-module-icon-blue   { box-shadow: 0 4px 16px rgba(37, 99, 235, 0.18); }
.home-module-card:hover .home-module-icon-teal   { box-shadow: 0 4px 16px rgba(13, 148, 136, 0.18); }
.home-module-card:hover .home-module-icon-amber  { box-shadow: 0 4px 16px rgba(217, 119, 6, 0.18); }
.home-module-card:hover .home-module-icon-green  { box-shadow: 0 4px 16px rgba(22, 163, 74, 0.18); }
.home-module-card:hover .home-module-icon-purple { box-shadow: 0 4px 16px rgba(124, 58, 237, 0.18); }
.home-module-card:hover .home-module-icon-red    { box-shadow: 0 4px 16px rgba(220, 38, 38, 0.18); }

[data-theme="dark"] .home-module-icon-blue   { background: rgba(37, 99, 235, 0.15); color: #60a5fa; }
[data-theme="dark"] .home-module-icon-teal   { background: rgba(13, 148, 136, 0.15); color: #2dd4bf; }
[data-theme="dark"] .home-module-icon-amber  { background: rgba(217, 119, 6, 0.15); color: #fbbf24; }
[data-theme="dark"] .home-module-icon-green  { background: rgba(22, 163, 74, 0.15); color: #4ade80; }
[data-theme="dark"] .home-module-icon-purple { background: rgba(124, 58, 237, 0.15); color: #a78bfa; }
[data-theme="dark"] .home-module-icon-red    { background: rgba(220, 38, 38, 0.15); color: #f87171; }

/* Module card typography */
.home-module-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-slate-900, #0f172a);
  margin-bottom: 0.5rem;
}

[data-theme="dark"] .home-module-card h3 { color: #f1f5f9; }

.home-module-card p {
  font-size: 0.875rem;
  color: var(--color-slate-500, #64748b);
  line-height: 1.6;
  margin: 0;
}

[data-theme="dark"] .home-module-card p { color: var(--color-slate-400, #94a3b8); }

/* CTA below grid */
.home-modules-cta {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.home-modules-cta p {
  font-size: 1.0625rem;
  color: var(--color-slate-600, #475569);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

[data-theme="dark"] .home-modules-cta p { color: var(--color-slate-400, #94a3b8); }

.home-modules-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.home-modules-links .btn {
  border-radius: 8px;
}


/* ============================================
   SWEET SPOT + STEPS — Combined conversion section
   Dark bg, spectrum bar, glass step cards, trust pills.
   ============================================ */

.home-sweetspot {
  background: #f8fafc;
  padding: 5rem 0;
}

[data-theme="dark"] .home-sweetspot {
  background: var(--color-primary-900, #0f172a);
}

.home-sweetspot-content {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.home-sweetspot-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-slate-900, #0f172a);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.home-sweetspot-content p {
  font-size: 1.0625rem;
  color: var(--color-slate-500, #64748b);
  line-height: 1.8;
}

.home-sweetspot-highlight { color: var(--color-slate-700, #334155) !important; }
.home-sweetspot-highlight strong { color: var(--color-primary, #193259); }

[data-theme="dark"] .home-sweetspot-content h2 { color: #f1f5f9; }
[data-theme="dark"] .home-sweetspot-content p { color: var(--color-slate-400, #94a3b8); }
[data-theme="dark"] .home-sweetspot-highlight { color: var(--color-slate-300, #cbd5e1) !important; }
[data-theme="dark"] .home-sweetspot-highlight strong { color: #fff; }

/* Spectrum bar */
.home-sweetspot-bar {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-slate-200, #e2e8f0);
  background: #fff;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 4px 16px rgba(0, 0, 0, 0.04),
    0 16px 32px rgba(0, 0, 0, 0.03);
}

.home-bar-segment {
  flex: 1;
  padding: 1.25rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.home-bar-left { background: #f8fafc; }
.home-bar-center {
  background: #f0fdf4;
  border-left: 1px solid var(--color-slate-200, #e2e8f0);
  border-right: 1px solid var(--color-slate-200, #e2e8f0);
}
.home-bar-right { background: #f8fafc; }
.home-bar-label { font-size: 0.8125rem; font-weight: 600; color: var(--color-slate-400, #94a3b8); }
.home-bar-badge {
  display: inline-flex;
  padding: 0.25rem 0.875rem;
  background: #22c55e;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 9999px;
  box-shadow: 0 2px 12px rgba(34, 197, 94, 0.25);
}
.home-bar-desc { font-size: 0.75rem; color: var(--color-slate-400, #94a3b8); }
.home-bar-center .home-bar-desc { color: #16a34a; }

[data-theme="dark"] .home-sweetspot-bar {
  background: rgba(30, 41, 59, 0.5);
  border-color: rgba(255, 255, 255, 0.08);
}
[data-theme="dark"] .home-bar-left { background: rgba(255, 255, 255, 0.03); }
[data-theme="dark"] .home-bar-center { background: rgba(34, 197, 94, 0.1); border-color: rgba(255, 255, 255, 0.08); }
[data-theme="dark"] .home-bar-right { background: rgba(255, 255, 255, 0.03); }
[data-theme="dark"] .home-bar-label { color: rgba(255, 255, 255, 0.4); }
[data-theme="dark"] .home-bar-desc { color: rgba(255, 255, 255, 0.35); }
[data-theme="dark"] .home-bar-center .home-bar-desc { color: rgba(34, 197, 94, 0.7); }

/* Divider */
.home-sweetspot-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 3.5rem auto;
  max-width: 500px;
}

.home-sweetspot-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-slate-300, #cbd5e1), transparent);
}

.home-sweetspot-divider-text {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-slate-400, #94a3b8);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

[data-theme="dark"] .home-sweetspot-divider-line {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}
[data-theme="dark"] .home-sweetspot-divider-text { color: rgba(255, 255, 255, 0.35); }

/* ---- Glass step cards on dark bg ---- */
.home-darksteps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
  align-items: center;
}

@media (min-width: 768px) {
  .home-darksteps {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 1rem;
  }
}

.home-darkstep {
  text-align: center;
  padding: 2.5rem 2rem;
  background: #fff;
  border: 1px solid var(--color-slate-200, #e2e8f0);
  border-radius: 16px;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 4px 16px rgba(0, 0, 0, 0.04),
    0 16px 32px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s ease;
}

.home-darkstep:hover {
  transform: translateY(-4px) scale(1.04);
  border-color: rgba(25, 50, 89, 0.12);
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.04),
    0 12px 24px rgba(0, 0, 0, 0.06),
    0 32px 64px rgba(0, 0, 0, 0.05);
  z-index: 1;
}

[data-theme="dark"] .home-darkstep {
  background: rgba(30, 41, 59, 0.55);
  border-color: rgba(255, 255, 255, 0.06);
}

.home-darkstep-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary, #193259);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  box-shadow: 0 2px 12px rgba(25, 50, 89, 0.2);
}

[data-theme="dark"] .home-darkstep-num {
  background: rgba(38, 74, 122, 0.4);
  color: #93b4d4;
}

.home-darkstep-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--color-primary-50, #eef2f7);
  color: var(--color-primary, #193259);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 2px 8px rgba(25, 50, 89, 0.08);
  transition: background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.home-darkstep:hover .home-darkstep-icon {
  box-shadow: 0 4px 16px rgba(25, 50, 89, 0.12);
  transform: scale(1.05);
}

[data-theme="dark"] .home-darkstep-icon {
  background: rgba(38, 74, 122, 0.2);
  color: #93b4d4;
}

.home-darkstep h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-slate-900, #0f172a);
  margin-bottom: 0.5rem;
}

[data-theme="dark"] .home-darkstep h3 { color: #f1f5f9; }

.home-darkstep p {
  font-size: 0.875rem;
  color: var(--color-slate-500, #64748b);
  line-height: 1.65;
  margin: 0;
}

[data-theme="dark"] .home-darkstep p { color: var(--color-slate-400, #94a3b8); }

/* Arrows between steps */
.home-darkstep-arrow {
  display: none;
  color: var(--color-slate-300, #cbd5e1);
}

@media (min-width: 768px) {
  .home-darkstep-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

[data-theme="dark"] .home-darkstep-arrow { color: rgba(255, 255, 255, 0.15); }

/* Staggered reveal for steps */
.home-darkstep {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease,
              box-shadow 0.3s ease, border-color 0.3s ease;
}

.home-darkstep.revealed,
.revealed .home-darkstep {
  opacity: 1;
  transform: translateY(0);
}

.home-darksteps .home-darkstep:nth-child(1) { transition-delay: 0s; }
.home-darksteps .home-darkstep:nth-child(3) { transition-delay: 0.15s; }
.home-darksteps .home-darkstep:nth-child(5) { transition-delay: 0.3s; }

.home-darkstep-arrow {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.home-darkstep-arrow.revealed,
.revealed .home-darkstep-arrow {
  opacity: 1;
}

.home-darksteps .home-darkstep-arrow:nth-child(2) { transition-delay: 0.1s; }
.home-darksteps .home-darkstep-arrow:nth-child(4) { transition-delay: 0.25s; }

/* ---- Trust pills ---- */
.home-sweetspot-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
  margin-top: 3rem;
}

.home-sweetspot-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.125rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary, #193259);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(25, 50, 89, 0.08);
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
}

.home-sweetspot-pill:hover {
  background: var(--color-primary, #193259);
  color: #fff;
  border-color: var(--color-primary, #193259);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(25, 50, 89, 0.2);
}

[data-theme="dark"] .home-sweetspot-pill {
  color: #93b4d4;
  background: rgba(38, 74, 122, 0.15);
  border-color: rgba(38, 74, 122, 0.2);
}

[data-theme="dark"] .home-sweetspot-pill:hover {
  background: rgba(38, 74, 122, 0.4);
  color: #fff;
}

/* CTA button */
.home-sweetspot-action {
  text-align: center;
  margin-top: 2.5rem;
}

.home-sweetspot-action .btn {
  border-radius: 8px;
  padding: 1rem 2.5rem;
  font-size: 1.0625rem;
}


/* ============================================
   LANDING CARDS
   ============================================ */

.section-flush { padding-top: 0; }
.section-compact { padding: 3rem 0; }

/* Section header */
#kies .section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

/* ============================================
   PREMIUM LANDING CARDS
   ============================================ */

.landing-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .landing-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

/* ---- Card container ---- */
.landing-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(25, 50, 89, 0.08);
  border-radius: 24px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 4px 16px rgba(0, 0, 0, 0.04),
    0 12px 40px rgba(0, 0, 0, 0.03);
}

/* Shimmer sweep overlay */
.landing-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  border-radius: 24px;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.5) 45%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0.5) 55%,
    transparent 65%
  );
  transform: translateX(-120%);
  transition: none;
}

.landing-card:hover::after {
  transform: translateX(120%);
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-card:hover {
  border-color: rgba(25, 50, 89, 0.18);
  box-shadow:
    0 4px 12px rgba(25, 50, 89, 0.06),
    0 16px 48px rgba(25, 50, 89, 0.1),
    0 32px 80px rgba(25, 50, 89, 0.08);
}

[data-theme="dark"] .landing-card {
  background: var(--color-slate-800, #1e293b);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.2),
    0 4px 16px rgba(0, 0, 0, 0.12),
    0 12px 40px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .landing-card:hover {
  border-color: rgba(147, 180, 212, 0.2);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.15),
    0 16px 48px rgba(0, 0, 0, 0.2),
    0 32px 80px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .landing-card::after {
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.06) 45%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0.06) 55%,
    transparent 65%
  );
}

/* ---- Visual header with floating orbs ---- */
.landing-card-visual {
  padding: 3.5rem 2.5rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 180px;
}

.landing-card-services .landing-card-visual {
  background: linear-gradient(160deg, #0f1f3d 0%, #193259 40%, #1e3f6e 70%, #1a3358 100%);
}

.landing-card-office .landing-card-visual {
  background: linear-gradient(160deg, #e8ecf1 0%, #dde3ea 30%, #d4dbe4 60%, #e0e5ec 100%);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5),
              inset 0 2px 8px rgba(25, 50, 89, 0.06);
}

/* Grid pattern overlay */
.landing-card-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* Floating orbs */
.landing-card-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1),
              opacity 0.8s ease;
}

.landing-card-services .orb-1 {
  width: 140px; height: 140px;
  background: rgba(59, 130, 246, 0.25);
  top: -30px; right: -20px;
  animation: orb-drift 10s ease-in-out infinite;
}
.landing-card-services .orb-2 {
  width: 100px; height: 100px;
  background: rgba(34, 197, 94, 0.2);
  bottom: -10px; left: 10px;
  animation: orb-drift 8s ease-in-out infinite reverse;
}
.landing-card-services .orb-3 {
  width: 70px; height: 70px;
  background: rgba(139, 92, 246, 0.15);
  top: 20px; left: 30%;
  animation: orb-drift 12s ease-in-out infinite 2s;
}

.landing-card-office .orb-1 {
  width: 140px; height: 140px;
  background: rgba(25, 50, 89, 0.06);
  top: -30px; right: -20px;
  animation: orb-drift 10s ease-in-out infinite;
}
.landing-card-office .orb-2 {
  width: 100px; height: 100px;
  background: rgba(255, 255, 255, 0.4);
  bottom: -10px; left: 10px;
  animation: orb-drift 8s ease-in-out infinite reverse;
}
.landing-card-office .orb-3 {
  width: 70px; height: 70px;
  background: rgba(25, 50, 89, 0.04);
  top: 20px; left: 30%;
  animation: orb-drift 12s ease-in-out infinite 2s;
}

.landing-card:hover .landing-card-orb {
  transform: scale(1.4);
  opacity: 0.9;
}

@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(8px, -12px) scale(1.05); }
  50% { transform: translate(-6px, -6px) scale(0.95); }
  75% { transform: translate(10px, 6px) scale(1.08); }
}

/* Logo container */
.landing-card-logo-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.landing-card-logo {
  height: 38px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.12));
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
              filter 0.5s ease;
}

.landing-card:hover .landing-card-logo-wrap {
  transform: scale(1.06) translateY(-3px);
}

.landing-card:hover .landing-card-logo {
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.18));
}

/* Office card: navy logo on grey — stronger shadow for visibility */
.landing-card-office .landing-card-logo {
  filter: drop-shadow(0 2px 6px rgba(25, 50, 89, 0.12));
}

.landing-card-office:hover .landing-card-logo {
  filter: drop-shadow(0 6px 16px rgba(25, 50, 89, 0.18));
}

/* Office grey header: subtle grid */
.landing-card-office .landing-card-visual::before {
  background-image:
    linear-gradient(rgba(25, 50, 89, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 50, 89, 0.03) 1px, transparent 1px);
}

[data-theme="dark"] .landing-card-visual {
  opacity: 0.9;
}

/* ---- Card body ---- */
.landing-card-body {
  padding: 2rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Tag label above title */
.landing-card-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary, #193259);
  background: rgba(25, 50, 89, 0.06);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
  width: fit-content;
}

[data-theme="dark"] .landing-card-tag {
  color: #93b4d4;
  background: rgba(147, 180, 212, 0.1);
}

.landing-card h2 {
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  font-weight: 800;
  color: var(--color-primary, #193259);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

[data-theme="dark"] .landing-card h2 { color: #fff; }

.landing-card-subtitle {
  color: var(--color-slate-500, #64748b);
  font-size: 0.95rem;
  margin: 0 0 1.75rem;
  line-height: 1.5;
}

[data-theme="dark"] .landing-card-subtitle { color: var(--color-slate-400, #94a3b8); }

/* Feature list */
.landing-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.landing-card-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--color-slate-700, #334155);
  line-height: 1.5;
  padding: 0.375rem 0;
  border-radius: 8px;
  transition: background 0.2s ease, padding-left 0.3s ease;
}

.landing-card:hover .landing-card-features li {
  padding-left: 0.25rem;
}

[data-theme="dark"] .landing-card-features li { color: #d1d5db; }

.feature-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  transition: transform 0.3s ease, background 0.3s ease;
}

.landing-card:hover .feature-check {
  background: rgba(34, 197, 94, 0.15);
  transform: scale(1.1);
}

/* CTA button */
.landing-card-btn {
  width: 100%;
  text-align: center;
  margin-top: auto;
  border-radius: 12px;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  color: #fff;
  background: var(--color-primary, #193259);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.landing-card-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.landing-card:hover .landing-card-btn::before {
  opacity: 1;
}

.landing-card:hover .landing-card-btn {
  box-shadow: 0 4px 16px rgba(25, 50, 89, 0.3);
  transform: translateY(-1px);
}

.landing-card-btn svg {
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.landing-card:hover .landing-card-btn svg {
  transform: translateX(4px);
}

[data-theme="dark"] .landing-card-btn {
  background: #264a7a;
}

/* Staggered reveal */
.landing-card {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
              border-color 0.3s ease,
              box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.landing-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.landing-cards .landing-card:nth-child(2) {
  transition-delay: 0.15s;
}

@media (max-width: 767px) {
  .landing-card-visual { padding: 2.5rem 2rem 2rem; min-height: 130px; }
  .landing-card-body { padding: 1.5rem 1.75rem 2rem; }
  .landing-card-logo { height: 32px; max-width: 130px; }
}


/* ============================================
   VALUE BADGES
   ============================================ */

.landing-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.landing-badges .badge {
  background: rgba(25, 50, 89, 0.06);
  color: var(--color-slate-700, #334155);
  border: 1px solid var(--color-slate-200, #e2e8f0);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

[data-theme="dark"] .landing-badges .badge {
  background: rgba(255, 255, 255, 0.06);
  color: #d1d5db;
  border-color: var(--color-slate-600, #475569);
}


/* ============================================
   SLOT CTA
   ============================================ */

.home-cta {
  background: var(--color-primary-900, #0f172a);
  padding: 5rem 0;
}

.home-cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.home-cta-content h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.home-cta-content p {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
}

.home-cta-content .btn {
  border-radius: 8px;
}


/* ============================================
   NAV OVERRIDE
   ============================================ */

/* Nav — clean, no blur (override sections.css glassmorphism) */
.nav {
  background: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

[data-theme="dark"] .nav {
  background: rgba(15, 23, 42, 0.95);
}

.nav-link--active {
  color: var(--color-primary, #193259) !important;
  font-weight: 600;
}


/* ============================================
   DARK MODE — Comprehensive overrides
   ============================================ */

/* Hero */
[data-theme="dark"] .hero-landing {
  background: linear-gradient(180deg, #0f172a 60%, #111827 100%);
}

[data-theme="dark"] .home-hero-badge {
  background: rgba(38, 74, 122, 0.2);
  border-color: rgba(38, 74, 122, 0.3);
  color: #93b4d4;
}

[data-theme="dark"] .home-hero-title {
  color: #f1f5f9;
}

[data-theme="dark"] .home-hero-subtitle {
  color: var(--color-slate-400, #94a3b8);
}

[data-theme="dark"] .home-hero-actions .btn-outline {
  color: #93b4d4;
  box-shadow: inset 0 0 0 1.5px #93b4d4;
}

[data-theme="dark"] .home-hero-actions .btn-outline:hover {
  background: #93b4d4;
  color: #0f172a;
}

[data-theme="dark"] .home-trust-icon {
  background: rgba(255, 255, 255, 0.06);
  color: #93b4d4;
}

[data-theme="dark"] .home-trust-title {
  color: #f1f5f9;
}

[data-theme="dark"] .home-trust-sub {
  color: var(--color-slate-500, #64748b);
}

[data-theme="dark"] .hero-product-inner {
  box-shadow:
    0px 2px 5px -1px rgba(0, 0, 0, 0.2),
    0px 0px 0px 1px rgba(255, 255, 255, 0.06),
    0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .hero-phone-frame {
  background: #000;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

/* Section backgrounds */
[data-theme="dark"] #probleem {
  background: #0f172a;
}

[data-theme="dark"] #oplossing {
  background: var(--color-primary-900, #0f172a);
}

[data-theme="dark"] .home-sweetspot {
  background: #111827;
}

[data-theme="dark"] #kies {
  background: var(--color-primary-900, #0f172a);
}

/* Compare grid — hovers */
[data-theme="dark"] .home-compare-cell-old:hover {
  background: rgba(30, 41, 59, 0.7);
}

[data-theme="dark"] .home-compare-cell-new:hover {
  background: rgba(30, 41, 59, 0.75);
}

@media (min-width: 768px) {
  [data-theme="dark"] .home-compare-cell-old:hover {
    background: rgba(30, 41, 59, 0.7);
  }
  [data-theme="dark"] .home-compare-cell-old:hover + .home-compare-cell-new {
    background: rgba(30, 41, 59, 0.75);
  }
  [data-theme="dark"] .home-compare-cell-new:hover {
    background: rgba(30, 41, 59, 0.75);
  }
}

/* Compare grid — last row */
[data-theme="dark"] .home-compare-cell-old:nth-last-child(2) {
  border-bottom-color: rgba(220, 38, 38, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .home-compare-cell-new:last-child {
  border-bottom-color: rgba(34, 197, 94, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Compare "En ook" badges */
[data-theme="dark"] .home-compare-also-label {
  color: var(--color-slate-500, #64748b);
}

/* Sweetspot — content */
[data-theme="dark"] .home-sweetspot-content h2 {
  color: #f1f5f9;
}

[data-theme="dark"] .home-sweetspot-content p {
  color: var(--color-slate-400, #94a3b8);
}

[data-theme="dark"] .home-sweetspot-highlight {
  color: var(--color-slate-300, #cbd5e1) !important;
}

[data-theme="dark"] .home-sweetspot-highlight strong {
  color: #fff;
}

/* Step cards */
[data-theme="dark"] .home-darkstep {
  background: rgba(30, 41, 59, 0.55);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.2),
    0 4px 16px rgba(0, 0, 0, 0.15),
    0 16px 32px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .home-darkstep:hover {
  border-color: rgba(147, 180, 212, 0.15);
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.2),
    0 16px 32px rgba(0, 0, 0, 0.2),
    0 32px 64px rgba(0, 0, 0, 0.15);
}

/* Landing cards (choose section) */
[data-theme="dark"] .landing-card {
  background: #1e293b;
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.2),
    0 8px 24px rgba(0, 0, 0, 0.15),
    0 24px 48px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .landing-card:hover {
  border-color: rgba(147, 180, 212, 0.2);
  box-shadow:
    0 8px 16px rgba(0, 0, 0, 0.2),
    0 24px 48px rgba(0, 0, 0, 0.2),
    0 48px 96px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .landing-card-services .landing-card-visual {
  background: linear-gradient(160deg, #0a1628 0%, #12213d 40%, #162a4d 70%, #0f1d35 100%);
}

[data-theme="dark"] .landing-card-office .landing-card-visual {
  background: linear-gradient(160deg, #0a1628 0%, #12213d 40%, #152749 70%, #0f1d35 100%);
}

[data-theme="dark"] .landing-card-visual::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
}

/* Dark mode: Office grey header also goes dark */
[data-theme="dark"] .landing-card-office .landing-card-visual {
  background: linear-gradient(160deg, #0a1628 0%, #12213d 40%, #152749 70%, #0f1d35 100%);
  box-shadow: none;
}

/* Dark mode: Office uses white logo instead of colored */
[data-theme="dark"] .landing-card-office .landing-card-logo {
  filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

[data-theme="dark"] .landing-card-office:hover .landing-card-logo {
  filter: brightness(0) invert(1) drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
}

/* Dark mode: Office orbs brighter on dark bg */
[data-theme="dark"] .landing-card-office .orb-1 { background: rgba(99, 102, 241, 0.2); }
[data-theme="dark"] .landing-card-office .orb-2 { background: rgba(59, 130, 246, 0.15); }
[data-theme="dark"] .landing-card-office .orb-3 { background: rgba(14, 165, 233, 0.12); }

[data-theme="dark"] .landing-card h2 { color: #f1f5f9; }
[data-theme="dark"] .landing-card-subtitle { color: var(--color-slate-400, #94a3b8); }
[data-theme="dark"] .landing-card-features li { color: #d1d5db; }

[data-theme="dark"] .landing-card-features li svg {
  color: #4ade80;
  background: rgba(34, 197, 94, 0.12);
}

[data-theme="dark"] .landing-card-btn {
  background: rgba(38, 74, 122, 0.3);
  color: #93b4d4;
  border: 1px solid rgba(147, 180, 212, 0.2);
}

[data-theme="dark"] .landing-card:hover .landing-card-btn {
  background: rgba(38, 74, 122, 0.5);
  color: #fff;
}

/* Slot CTA */
[data-theme="dark"] .home-cta {
  background: #111827;
}

[data-theme="dark"] .home-cta-content h2 { color: #f1f5f9; }
[data-theme="dark"] .home-cta-content p { color: var(--color-slate-400, #94a3b8); }

/* Section title overrides */
[data-theme="dark"] #oplossing .section-title,
[data-theme="dark"] #kies .section-title {
  color: #f1f5f9;
}

[data-theme="dark"] #oplossing .section-subtitle,
[data-theme="dark"] #kies .section-subtitle {
  color: var(--color-slate-400, #94a3b8);
}


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

@media (max-width: 768px) {
  .hero-landing {
    padding: 7rem 0 2rem;
  }

  .home-hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .home-hero-actions .btn {
    width: 100%;
    max-width: 320px;
  }

  .home-hero-trust {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .home-problem-card { padding: 1.5rem; }
  .home-problem-icon { width: 40px; height: 40px; border-radius: 8px; }
  .home-problem-punchline { padding: 1.5rem; }


  .home-sweetspot-bar { flex-direction: column; }
  .home-bar-center {
    border-left: none;
    border-right: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .landing-card { padding: 2rem 1.5rem; }
  .landing-badges { gap: 0.5rem; }
  .landing-badges .badge { font-size: 0.8rem; padding: 0.4rem 0.75rem; }

  /* Compare cards — single column on mobile */
  .home-compare {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .home-compare-head,
  .home-compare-cell {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }

  .home-compare-head {
    font-size: 0.9375rem;
  }

  /* Mobile compare: second card header needs top gap */
  .home-compare-head-new {
    margin-top: 1rem;
  }

  /* Steps cards */
  .home-darksteps {
    gap: 1.25rem;
  }

  .home-darkstep {
    padding: 2rem 1.5rem;
  }

  /* Modal — better mobile experience */
  .home-modal-header {
    padding: 8px 12px;
  }

  .home-browser-dots { display: none; }

  .home-browser-url {
    font-size: 0.6875rem;
    padding: 4px 8px;
  }

  .home-modal-close {
    width: 44px;
    height: 44px;
  }

  /* Landing cards — no visual overflow on mobile */
  .landing-card-visual {
    padding: 2rem 1.5rem 1.5rem;
  }

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

  .landing-card-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 16px;
  }

  /* Sweetspot bar segments */
  .home-bar-center {
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--color-slate-200, #e2e8f0);
    border-bottom: 1px solid var(--color-slate-200, #e2e8f0);
  }

  /* En ook badges */
  .home-compare-also {
    flex-direction: column;
    align-items: center;
  }

  .home-compare-badges {
    justify-content: center;
  }
}


/* ============================================
   INTEGRATION STRIP — Homepage
   ============================================ */

.home-integrations {
  padding: 2.5rem 0;
  background: var(--bg-primary, #fff);
  border-top: 1px solid var(--color-slate-100, #f1f5f9);
}

.integrations-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.integrations-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-slate-400, #94a3b8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.integrations-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.integration-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  background: var(--bg-secondary, #f8fafc);
  border: 1px solid var(--color-slate-200, #e2e8f0);
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-slate-600, #475569);
  transition: border-color 0.2s, background 0.2s;
}

.integration-pill:hover {
  border-color: var(--color-slate-300, #cbd5e1);
  background: var(--color-slate-50, #f8fafc);
}

.integration-pill svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.5;
}

[data-theme="dark"] .home-integrations {
  border-top-color: #1e293b;
}

[data-theme="dark"] .integration-pill {
  background: #1e293b;
  border-color: #334155;
  color: #94a3b8;
}

[data-theme="dark"] .integration-pill:hover {
  border-color: #475569;
  background: #334155;
}


/* ============================================
   "WIE WE ZIJN" — Homepage
   ============================================ */

.home-about {
  padding: 4rem 0;
  background: var(--bg-primary, #fff);
}

.home-about-content {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.home-about-content p {
  color: var(--color-slate-500, #64748b);
  line-height: 1.8;
  font-size: 1.0625rem;
  margin-top: 1.25rem;
}

.home-about-content .btn {
  margin-top: 2rem;
}

[data-theme="dark"] .home-about-content p {
  color: #94a3b8;
}
