/* ============================================================
   Dienst Variant Shared CSS
   Gedeeld door alle dienstvarianten pagina's
   (sea-bureau, seo-specialist, google-ads-uitbesteden, etc.)
   ============================================================ */

/* ── 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-proof-text { color: rgba(255,255,255,0.85); }
.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); }
.stacked { flex-direction: column; align-items: flex-start; gap: 4px; }

/* ── 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; }

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