/* Home page layout */
.home-hero,
.home-categories,
.home-b2b,
.home-cta,
.home-products,
.home-faq {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
}

.home-hero__inner,
.home-categories,
.home-b2b,
.home-cta,
.home-products,
.home-faq {
  padding: 64px 24px;
}

.home-hero__inner {
  padding-top: 32px;
}

.home-hero__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  gap: 32px;
}

@media (min-width: 1024px) {
  .home-hero__inner {
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: 24px;
  }
}

.home-hero {
  background: #f6f7fb;
  border-top: 1px solid #e2e8f0;
}

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

.home-hero__actions {
  justify-content: center;
}

.home-hero__bullets {
  justify-content: center;
}

.home-hero__content h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.home-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: #6b7280;
  margin-bottom: 12px;
}

.home-hero__lead {
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.home-hero__actions .btn-primary,
.home-b2b__cta .btn-primary,
.home-cta__actions .btn-primary {
  background: #185997;
  border-color: #185997;
  color: #fff;
}

.home-hero__actions .btn-primary:hover,
.home-b2b__cta .btn-primary:hover,
.home-cta__actions .btn-primary:hover {
  background: #134a7c;
  border-color: #134a7c;
  color: #fff;
}

.home-hero__actions .btn-outline,
.home-b2b__cta .btn-outline,
.home-cta__actions .btn-outline {
  border-color: #185997;
  color: #185997;
}

.home-hero__actions .btn-outline:hover,
.home-b2b__cta .btn-outline:hover,
.home-cta__actions .btn-outline:hover {
  background: #185997;
  border-color: #185997;
  color: #fff;
}

.home-hero__bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #64748b;
  font-size: 0.9rem;
}

.home-hero__bullets span {
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 6px 10px;
  border-radius: 999px;
}

.home-hero__panel {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 20px;
  box-shadow: 0 10px 24px -20px rgba(15, 23, 42, 0.25);
}

@media (min-width: 1024px) {
  .home-hero__panel--content {
    display: none;
  }
}

.home-hero__panel h2 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #0f172a;
  line-height: 1.3;
}

.home-hero__quicklinks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.home-hero__quicklinks a {
  background: #f1f5f9;
  color: #334155;
  border: 1px solid #e2e8f0;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.home-section__head {
  max-width: 1320px;
  margin: 0 auto 28px;
  text-align: center;
}

.home-section__head h2 {
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  margin-bottom: 8px;
}

.home-section__head p {
  color: #6b7280;
}

.home-categories {
  background: #2f3d44;
  color: #fff;
  padding-top: 96px;
  padding-bottom: 96px;
}

.home-categories .home-section__head p {
  color: #cbd5e1;
}

.home-categories__grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

@media (min-width: 768px) {
  .home-categories__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .home-categories__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.home-card {
  background: #fff;
  color: #111827;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  padding: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 18px -18px rgba(15, 23, 42, 0.35);
}

.home-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px -24px rgba(15, 23, 42, 0.35);
}

.home-b2b {
  background: #0f2b44;
  color: #fff;
}

.home-b2b .home-section__head h2 {
  color: #fff;
}

.home-b2b .home-section__head p {
  color: #cbd5e1;
}

.home-b2b__item {
  color: #111827;
}

.home-b2b__grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

@media (min-width: 1024px) {
  .home-b2b__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.home-b2b__item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 18px;
  box-shadow: 0 8px 18px -18px rgba(15, 23, 42, 0.35);
}

.home-b2b__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.home-cta {
  background: #2f3d44;
  color: #fff;
  padding-top: 140px;
  padding-bottom: 140px;
}

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

.home-cta__inner h2 {
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  line-height: 1.15;
}

.home-cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
  justify-content: center;
}

.home-cta__actions .btn {
  background: #fff;
  border-color: #fff;
  color: #0f172a;
}

.home-cta__actions .btn:hover {
  background: #185997;
  border-color: #185997;
  color: #fff;
}

.home-products {
  background: #fff;
  color: #111827;
}

.home-products .home-section__head p {
  color: #6b7280;
}

.home-products__grid {
  max-width: 1320px;
  margin: 0 auto;
}

.home-products__slider {
  display: grid;
  gap: 12px;
}

.home-products__track {
  overflow: hidden;
}

.home-products__track ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
}

@media (max-width: 1024px) {
  .home-products__track ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .home-products__track ul.products {
    grid-template-columns: 1fr;
  }
}

.home-products__nav {
  display: none;
}

/* Onderdelen CTA */
.home-onderdelen {
  background: #0f2b44;
  color: #fff;
  text-align: center;
}

.home-onderdelen__inner {
  max-width: 720px;
  margin: 0 auto;
}

.home-onderdelen__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: #d4a017;
}

.home-onderdelen__icon svg {
  width: 100%;
  height: 100%;
}

.home-onderdelen h2 {
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  margin-bottom: 12px;
}

.home-onderdelen__lead {
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.home-onderdelen__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.home-onderdelen__badges span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: #e2e8f0;
}

.home-onderdelen__btn {
  background: #d4a017;
  border-color: #d4a017;
  color: #0f172a;
  font-weight: 700;
  padding: 12px 28px;
  font-size: 1rem;
}

.home-onderdelen__btn:hover {
  background: #b8880f;
  border-color: #b8880f;
  color: #0f172a;
}

.home-faq {
  background: #f6f7fb;
}

.home-faq__list {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

@media (min-width: 1024px) {
  .home-faq__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 24px;
  }
}

.home-faq details {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 14px 16px;
}

.home-faq summary {
  font-weight: 600;
  cursor: pointer;
}

.home-faq__answer {
  margin-top: 10px;
  color: #475569;
}
