/**
 * Solutions General — /oplossingen/
 *
 * Dark-themed solutions overview matching homepage visual language.
 * Prefix: .opl-   Loads alongside website.css + home.css
 */

/* ==========================================================================
   HERO
   ========================================================================== */

.opl-hero {
  position: relative;
  margin-top: 142px;
  width: 100%;
  padding: 80px 0 64px;
  overflow: hidden;
}

.opl-hero__container {
  position: relative;
  z-index: 1;
}

.opl-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.opl-hero__content {
  max-width: 720px;
}

/* CTA buttons in hero */
.opl-hero__buttons {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}

/* Checklist box */
.opl-hero__checklist {
  background: #002345;
  border: 1px solid var(--blue-400, #05386B);
  border-radius: 20px;
  padding: 32px;
}

.opl-hero__checklist-title {
  font-size: 22px;
  font-weight: 600;
  color: rgba(204, 229, 255, 0.95);
  margin: 0 0 24px 0;
}

.opl-hero__checklist-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.opl-hero__checklist-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.opl-hero__checklist-list svg {
  flex-shrink: 0;
}

.opl-hero__checklist-list li span {
  font-family: var(--font-family-primary, "Source Sans 3", sans-serif);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 1px;
  color: rgba(204, 229, 255, 0.95);
}

.opl-hero h1 {
  color: #e8f4ff;
  font-family: var(--font-family-primary, "Source Sans 3", sans-serif);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin: 0 0 20px 0;
}

.opl-hero__subtitle {
  color: rgba(204, 229, 255, 0.8);
  font-family: var(--font-family-primary, "Source Sans 3", sans-serif);
  font-size: 20px;
  line-height: 1.6;
  margin: 0 0 32px 0;
}

/* ==========================================================================
   ANCHOR NAVIGATION (pill links)
   ========================================================================== */

.opl-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.opl-nav a {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 96px;
  border: 1px solid rgba(204, 229, 255, 0.2);
  color: rgba(204, 229, 255, 0.8);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  background: rgba(3, 29, 56, 0.6);
  transition: all 0.2s ease;
}

.opl-nav a:hover {
  border-color: rgba(0, 221, 141, 0.4);
  color: #e8f4ff;
  background: rgba(0, 43, 87, 0.6);
}

@media (max-width: 1023px) {
  .opl-hero {
    margin-top: 0;
    padding: 48px 0 40px;
  }
  .opl-hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .opl-hero h1 {
    font-size: 36px;
  }
  .opl-hero__subtitle {
    font-size: 17px;
  }
  .opl-hero__buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  .opl-hero__checklist {
    padding: 24px 20px;
  }
  .opl-nav {
    gap: 8px;
  }
}

/* ==========================================================================
   MODULE DETAIL SECTIONS
   ========================================================================== */

.opl-details {
  padding: 24px 0 80px;
}

.opl-section {
  padding: 56px 0 24px;
  scroll-margin-top: 160px;
}

.opl-section + .opl-section {
  border-top: 1px solid rgba(5, 56, 107, 0.6);
}

.opl-section h2 {
  color: #e8f4ff;
  font-family: var(--font-family-primary, "Source Sans 3", sans-serif);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 12px 0;
}

.opl-section__intro {
  color: rgba(204, 229, 255, 0.75);
  font-size: 16px;
  line-height: 1.65;
  max-width: 720px;
  margin: 0 0 28px 0;
}

.opl-section__highlight {
  color: rgba(204, 229, 255, 0.95);
  font-weight: 600;
}

/* Feature cards */
.opl-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.opl-feature {
  background: rgba(0, 43, 87, 0.4);
  border: 1px solid rgba(5, 86, 140, 0.25);
  border-radius: 12px;
  padding: 20px 22px;
  transition: border-color 0.25s ease;
}

.opl-feature:hover {
  border-color: rgba(5, 86, 140, 0.5);
}

.opl-feature h3 {
  color: #e8f4ff;
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px 0;
  line-height: 1.35;
}

.opl-feature p {
  color: rgba(204, 229, 255, 0.6);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

/* Detail page link */
.opl-section__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(204, 229, 255, 0.85);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  padding: 8px 20px;
  border-radius: 96px;
  border: 1px solid rgba(204, 229, 255, 0.2);
  background: rgba(3, 29, 56, 0.5);
}

.opl-section__cta:hover {
  color: #e8f4ff;
  border-color: rgba(204, 229, 255, 0.4);
  background: rgba(0, 43, 87, 0.6);
}

.opl-section__cta svg {
  transition: transform 0.2s ease;
}

.opl-section__cta:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
   CTA BANNERS
   ========================================================================== */

.opl-cta-banner {
  background: rgba(0, 35, 69, 0.5);
  border: 1px solid rgba(5, 86, 140, 0.3);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 56px 0;
}

.opl-cta-banner__text h3 {
  color: #e8f4ff;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.opl-cta-banner__text p {
  color: rgba(204, 229, 255, 0.65);
  font-size: 15px;
  margin: 0;
  line-height: 1.5;
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */

.opl-final-cta {
  text-align: center;
  padding: 64px 0 0;
  border-top: 1px solid rgba(5, 56, 107, 0.6);
}

.opl-final-cta h2 {
  color: #e8f4ff;
  font-family: var(--font-family-primary, "Source Sans 3", sans-serif);
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 24px 0;
}

.opl-final-cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

@media (max-width: 1023px) {
  .opl-details {
    padding: 16px 0 48px;
  }
  .opl-section {
    padding: 40px 0 24px;
    scroll-margin-top: 100px;
  }
  .opl-section h2 {
    font-size: 24px;
  }
  .opl-features {
    grid-template-columns: 1fr;
  }
  .opl-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }
  .opl-final-cta__buttons {
    flex-direction: column;
    align-items: center;
  }
}
