/* ============================================================
   Oplossingen Detail Shared CSS
   Gedeeld door alle oplossingen detailpagina's
   ============================================================ */

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, #0c5f78 0%, #0e7490 50%, #0891b2 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
}
.hero-badge span {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}
.hero-content h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-content h1 em {
  font-style: normal;
  color: var(--yellow);
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all .2s ease;
  cursor: pointer;
  border: none;
}
.btn-primary { background: #ea580c; color: #fff; }
.btn-primary:hover { background: #c2410c; transform: translateY(-1px); }
.btn-white {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-white:hover { background: rgba(255,255,255,0.25); }
.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
}
.hero-proof-stars { color: var(--yellow); font-size: 16px; letter-spacing: 2px; }
.hero-visuals { display: flex; flex-direction: column; gap: 16px; }

/* Mockup cards */
.mockup-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 20px 24px;
  color: #fff;
}
.mockup-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}
.mockup-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
}
.mockup-metric:last-child { border-bottom: none; }
.mockup-metric-label { color: rgba(255,255,255,0.7); }
.mockup-metric-value { font-weight: 700; color: #fff; display: flex; align-items: center; gap: 6px; }
.mockup-metric-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
}
.badge-green { background: rgba(74,222,128,0.2); color: #4ade80; }
.badge-blue { background: rgba(96,165,250,0.2); color: #60a5fa; }
.badge-orange { background: rgba(251,191,36,0.2); color: var(--yellow); }

/* ── Stats bar ── */
.stats-bar {
  background: #0f2a4a;
  padding: 32px 0;
}
.stats-bar .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-item { padding: 8px; }
.stat-number { font-size: 32px; font-weight: 800; color: #0e7490; line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 500; }

/* ── Section utilities ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #0e7490;
  margin-bottom: 12px;
}
.section-title { font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: #0f2a4a; line-height: 1.2; margin-bottom: 16px; }
.section-sub { font-size: 16px; color: #475569; max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* ── Features sectie ── */
.opl-features-section {
  padding: 80px 0;
  background: #f8fafc;
}
.opl-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 768px) { .opl-features-grid { grid-template-columns: 1fr; gap: 40px; } }
.opl-features-content .section-label { margin-bottom: 12px; }
.opl-features-content h2 { font-size: clamp(22px, 2.5vw, 32px); font-weight: 800; color: #0f2a4a; margin-bottom: 16px; }
.opl-features-content > p { color: #475569; line-height: 1.7; margin-bottom: 24px; }
.opl-feature-list { display: flex; flex-direction: column; gap: 12px; }
.opl-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #334155;
  line-height: 1.5;
}
.opl-feature-item svg { flex-shrink: 0; color: #0e7490; margin-top: 2px; }
.opl-features-visual { display: flex; flex-direction: column; gap: 16px; }

/* ── Diensten sectie ── */
.opl-services-section {
  padding: 80px 0;
  background: #fff;
}
.opl-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .opl-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .opl-services-grid { grid-template-columns: 1fr; } }
.opl-service-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 24px;
  transition: all .2s ease;
}
.opl-service-card:hover {
  border-color: #0e7490;
  box-shadow: 0 8px 32px rgba(14,116,144,0.1);
  transform: translateY(-2px);
}
.opl-service-icon { font-size: 28px; margin-bottom: 14px; display: block; }
.opl-service-card h3 { font-size: 17px; font-weight: 700; color: #0f2a4a; margin-bottom: 8px; }
.opl-service-card p { font-size: 14px; color: #475569; line-height: 1.6; }

/* ── Werkwijze sectie ── */
.process-section {
  padding: 80px 0;
  background: #f8fafc;
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}
.process-step { display: flex; gap: 24px; align-items: flex-start; }
.process-step-num {
  font-size: 48px;
  font-weight: 900;
  color: #e2e8f0;
  line-height: 1;
  min-width: 72px;
  text-align: center;
}
.process-step-content h3 { font-size: 18px; font-weight: 700; color: #0f2a4a; margin-bottom: 8px; }
.process-step-content p { font-size: 15px; color: #475569; line-height: 1.7; }

/* FAQ sectie — styled by components/faq.css */

/* ── CTA band ── */
.cta-band {
  background: linear-gradient(135deg, #0c5f78 0%, #0e7490 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-band .container { max-width: 700px; }
.cta-band h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: #fff; margin-bottom: 16px; }
.cta-band p { font-size: 17px; color: rgba(255,255,255,0.85); margin-bottom: 32px; line-height: 1.7; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Mobile: uniforme vlak-padding */
@media (max-width: 480px) {
  .mockup-card,
  .opl-service-card { padding: 24px 20px; }
}

/* ── Solution-details: basis-variant (oplossingen-pagina's zonder eigen page-CSS) ──
   Stylet de eerder ongestylde tekstmuur (intro + feature-cards) in de huisstijl. */
.solution-details { padding: 80px 0; background: #fff; }
.solution-details .solution-intro { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.solution-details .solution-intro .section-label { margin-bottom: 12px; }
.solution-details .solution-intro h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: #0f2a4a; line-height: 1.2; margin-bottom: 20px; }
.solution-details .solution-intro p { color: #475569; line-height: 1.75; font-size: 16px; margin-bottom: 16px; }
.solution-details .solution-intro p:last-child { margin-bottom: 0; }
.solution-details .solution-features { max-width: 1100px; margin: 0 auto; }
.solution-details .solution-features h3 { font-size: clamp(20px, 2.2vw, 26px); font-weight: 800; color: #0f2a4a; text-align: center; margin-bottom: 36px; }
.solution-details .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.solution-details .feature-card { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 14px; padding: 28px; transition: box-shadow .2s ease, transform .2s ease; }
.solution-details .feature-card:hover { box-shadow: 0 8px 24px rgba(15,42,74,0.08); transform: translateY(-2px); }
.solution-details .feature-card h4 { font-size: 18px; font-weight: 700; color: #0f2a4a; margin-bottom: 10px; }
.solution-details .feature-card p { color: #475569; line-height: 1.65; font-size: 15px; margin: 0; }
@media (max-width: 768px) {
  .solution-details { padding: 56px 0; }
  .solution-details .features-grid { grid-template-columns: 1fr; }
}
