/*
 * INTEGRATION GENERAL PAGE
 * Page: /koppelingen/
 */

/* Hero section */

.hero-section {
  font-weight: 600;
  text-align: center;
  padding-top: 200px;
}

.hero-section h1,
.hero-section p {
  max-width: 1000px;
  margin: 0 auto 24px;
}

.hero-section p {
  font-size: 20px;
}

.contact-form-section .hero-section {
  text-align: left;
  padding-top: 200px;
  margin-bottom: 40px;
}

.contact-form-section .hero-section h1 {
  text-align: left;
  margin: 0 0 16px 0;
  font-family: "Source Sans 3", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 1px;
  color: rgba(204, 229, 255, 0.95);
  max-width: 800px;
}

.contact-form-section .hero-section .hero-description {
  text-align: left;
  font-family: "Source Sans 3", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0;
  max-width: 800px;
  color: rgba(204, 229, 255, 0.95);
}

.koppelingen-card__icon img,
.koppelingen-card__icon svg {
  user-select: none;
  pointer-events: none;
}

/* ==========================================================================
   Koppelingen Page — Hero + Grid
   ========================================================================== */

.koppelingen-hero-layout {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.koppelingen-hero-layout .hero-left {
  flex: 1 1 0%;
  min-width: 0;
}

.koppelingen-hero-layout .hero-right {
  flex: 0 0 35%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.koppelingen-hero-layout .hero-right svg {
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}

.koppelingen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 80px;
}

.koppelingen-card {
  background: #002345;
  border: 1px solid var(--blue-400, #05386b);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.koppelingen-card__icon {
  width: 120px;
  height: 120px;
  margin-bottom: 24px;
}

.koppelingen-card__icon img,
.koppelingen-card__icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.koppelingen-card__title {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-on-dark-color-1, rgba(204, 229, 255, 0.95));
  margin: 0 0 16px 0;
}

.koppelingen-card__title .green-text {
  color: var(--success-green-main, #00dd8d);
}

.koppelingen-card .button-green {
  padding: 8px 16px;
  font-size: 14px;
  white-space: nowrap;
  letter-spacing: 1.25px;
}

.koppelingen-card .jaw-btn-demo {
  margin-top: auto;
}

@media (max-width: 1023px) {
  .koppelingen-hero-layout {
    flex-direction: column;
  }

  .koppelingen-hero-layout .hero-left {
    flex: 1;
  }

  .koppelingen-hero-layout .hero-right {
    display: none;
  }

  .koppelingen-grid {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding-top: 80px;
  }

  .contact-form-section .hero-section {
    padding-top: 32px !important;
    margin-bottom: 24px;
  }
}

@media (max-width: 480px) {
  .contact-form-section .hero-section {
    padding-top: 24px !important;
    margin-bottom: 20px;
  }

  .contact-form-section .hero-section h1 {
    font-size: 32px;
    line-height: 40px;
  }
}
