/* ============================================================
   Homepage – Pagina-specifieke Styles
   Klasse-namen matchen de werkelijke HTML in WordPress
   ============================================================ */

/* ── Utilities ── */

/* Fade-in animatie */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── HERO (page-specific) ── */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Hero mockup kaarten (page-specific) */
.hero-visuals {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mockup-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,.15);
}
.mockup-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--gray-600);
  margin-bottom: 14px;
}
.mockup-metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
}
.mockup-metric:last-child { border-bottom: none; }
.mockup-metric-label { font-size: 13px; color: var(--gray-600); }
.mockup-metric-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-800);
  display: flex;
  align-items: center;
  gap: 8px;
}
.mockup-metric-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
}
.badge-green  { background: var(--green-light); color: var(--green); }
.badge-blue   { background: #dbeafe; color: #1d4ed8; }
.badge-orange { background: #fff7ed; color: #ea580c; }

.mockup-bar {
  height: 8px;
  background: var(--blue-light);
  border-radius: 4px;
  margin-bottom: 6px;
  position: relative;
  overflow: hidden;
}
.mockup-bar::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: linear-gradient(90deg, var(--blue), var(--blue-mid));
  border-radius: 4px;
  animation: barGrow 1.5s ease forwards;
}
.mockup-bar.full::after  { width: 100%; }
.mockup-bar.w80::after   { width: 80%; }
.mockup-bar.w60::after   { width: 60%; }
.mockup-bar.w40::after   { width: 40%; }
@keyframes barGrow { from { width: 0; } }

/* SEO lijndiagram */
.seo-chart-wrap {
  position: relative;
  padding-bottom: 4px;
}
.seo-chart {
  width: 100%;
  height: 90px;
  display: block;
  overflow: visible;
}
.seo-chart-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
}
.seo-chart-labels span {
  font-size: 11px;
  color: #64748b;
}
.seo-chart-badge {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  margin-top: 8px;
}

/* ── SERVICES ── */
.services {
  padding: 96px 0;
  background: var(--gray-50);
}
.services-header {
  text-align: center;
  margin-bottom: 56px;
}
.services-header .section-sub { margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
/* Service card base: stijlen komen uit global.css */
/* Homepage overrides: grotere padding, icon en heading */
.service-card { padding: 36px 32px; }
.service-card:hover { transform: translateY(-6px); }
.service-card h3 { font-size: 22px; }
.service-icon { width: 56px; height: 56px; }
.service-icon svg { width: 28px; height: 28px; }

/* Kleur-specifieke icon backgrounds */
.service-card.web .service-icon { background: var(--orange-light); }
.service-card.sea .service-icon { background: #fffbeb; }
.service-card.seo .service-icon { background: #f0fdfa; }
.service-card.web .service-icon svg { stroke: var(--orange); }
.service-card.sea .service-icon svg { stroke: var(--amber); }
.service-card.seo .service-icon svg { stroke: var(--teal); }

.services-badge {
  text-align: center;
  margin-top: 40px;
}
.services-badge-inner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-light);
  border: 1px solid #bbf7d0;
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 50px;
}

/* ── WHY / WAAROM WIJ ── */
.why {
  padding: 96px 0;
  background: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Why image met badge overlay */
.why-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #e0f2fe, #bae6fd);
}
.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.why-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
}
.why-image-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-image-badge-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--green);
  stroke-width: 2.5;
}
.why-image-badge-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-800);
}
.why-image-badge-text span {
  font-size: 12px;
  color: var(--gray-600);
}

/* Why content */
.why-content { /* second column */ }
.why-grid > div:last-child .section-label { margin-bottom: 12px; }
.why-grid > div:last-child .section-title { margin-bottom: 12px; }
.why-grid > div:last-child .section-sub { margin-bottom: 36px; }

.why-usps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.usp-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.usp-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.usp-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 2;
}
.usp-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-800);
  margin: 0 0 4px;
}
.usp-text p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* ── PROCESS ── */
.process {
  padding: 96px 0;
  background: var(--gray-50);
}
.process-header {
  text-align: center;
  margin-bottom: 64px;
}
.process-header .section-sub { margin: 0 auto; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue-light), var(--blue), var(--blue-light));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-step-num {
  width: 56px;
  height: 56px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 8px var(--gray-50);
}
.process-step h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-800);
  margin: 0 0 8px;
}
.process-step p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* ── RESULTS BAND (CTA) ── */
.results-band {
  background: linear-gradient(135deg, var(--orange) 0%, #c2410c 100%);
  padding: 64px 0;
  text-align: center;
}
.results-band h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--white);
  margin: 0 0 12px;
}
.results-band p {
  font-size: 17px;
  color: rgba(255,255,255,.85);
  margin: 0 auto 32px;
  max-width: 500px;
}
.results-band .btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--orange);
  border: 2px solid var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}
.results-band .btn-cta-white:hover {
  background: rgba(255,255,255,.9);
  color: #c2410c;
  text-decoration: none;
}

/* Knoppen in results-band */
.results-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.results-band .btn-primary {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
  font-weight: 700;
}
.results-band .btn-primary:hover {
  background: rgba(255,255,255,.9);
  color: #c2410c;
  border-color: rgba(255,255,255,.9);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.results-band .btn-white {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.results-band .btn-white:hover {
  background: rgba(255,255,255,.25);
  border-color: var(--white);
  color: var(--white);
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 96px 0;
  background: var(--white);
}
.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}
.testimonials-header .section-sub { margin: 0 auto; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.testimonial-stars {
  font-size: 18px;
  color: var(--yellow);
  margin-bottom: 16px;
  line-height: 1;
}
.testimonial-text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0 0 24px;
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--gray-800);
  margin-bottom: 2px;
}
.testimonial-company {
  font-size: 13px;
  color: var(--gray-600);
}

/* ── CONTACT CTA ── */
.contact-cta {
  padding: 96px 0;
  background: var(--gray-50);
}
.contact-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-cta-inner > div:first-child {
  display: flex;
  flex-direction: column;
}
.contact-cta-inner > div:first-child .section-label { margin-bottom: 12px; }
.contact-cta-inner > div:first-child h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--gray-800);
  margin: 0 0 12px;
  line-height: 1.2;
}
.contact-cta-inner > div:first-child > p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0 0 32px;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-option {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-decoration: none;
  color: var(--gray-800);
  transition: all .25s ease;
}
.contact-option:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateX(4px);
  color: var(--gray-800);
  text-decoration: none;
}
.contact-option-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-option-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 2;
}
.contact-option-label {
  font-size: 12px;
  color: var(--gray-600);
  margin-bottom: 2px;
}
.contact-option-value {
  font-weight: 600;
  font-size: 15px;
  color: var(--gray-800);
}

/* Scan box (rechter kolom) */
.scan-box {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}
.scan-box h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-800);
  margin: 0 0 8px;
}
.scan-box > p {
  font-size: 15px;
  color: var(--gray-600);
  margin: 0 0 24px;
  line-height: 1.6;
}
.scan-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.scan-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-600);
  padding-left: 0;
}
.scan-checklist li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: var(--green-light);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.scan-box .btn {
  width: 100%;
  justify-content: center;
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  font-size: 16px;
  font-weight: 700;
  padding: 16px;
}
.scan-box .btn:hover {
  background: #c2410c;
  border-color: #c2410c;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(234,88,12,.35);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visuals {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-image { display: none; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .contact-cta-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .hero { padding: 48px 0 64px; }
  .hero-visuals { grid-template-columns: 1fr; }
  .hero-visuals .mockup-card:nth-child(2),
  .hero-visuals .mockup-card:nth-child(3) { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .container { padding: 0 16px; }
}

/* Gestandaardiseerde Review Component (ref-card) op Homepage */
.ref-reviews { padding: 80px 0; background: var(--gray-50); }
.ref-reviews-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.ref-reviews .section-title { margin: 0 0 12px; }
.ref-reviews .section-sub { margin: 0 0 48px; }
.ref-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ref-card { background: var(--white); border-radius: var(--radius-lg); padding: 24px; border: 1px solid var(--gray-200); box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 12px; transition: transform .2s ease, box-shadow .2s ease; }
.ref-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ref-card-header { display: flex; align-items: center; justify-content: space-between; }
.ref-card-user { display: flex; align-items: center; gap: 12px; }
.ref-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; color: var(--white); flex-shrink: 0; }
.ref-card-meta { display: flex; flex-direction: column; gap: 2px; }
.ref-card-name { font-size: 14px; font-weight: 700; color: var(--dark); display: flex; align-items: center; gap: 6px; margin: 0; }
.ref-card-role { font-size: 12px; color: var(--gray-600); margin: 0; }
.ref-verified { display: inline-flex; align-items: center; }
.ref-verified svg { width: 16px; height: 16px; }
.ref-google-logo { display: flex; align-items: center; }
.ref-google-logo svg { width: 20px; height: 20px; }
.ref-card-stars { font-size: 16px; color: #f59e0b; display: flex; align-items: center; gap: 6px; }
.ref-card-stars span { font-size: 13px; font-weight: 700; color: var(--dark); }
.ref-card-text { font-size: 14px; color: var(--gray-600); line-height: 1.7; flex: 1; margin: 0; }
.ref-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--gray-200); font-size: 12px; color: var(--muted); }
.ref-card-source { display: flex; align-items: center; gap: 5px; }
.ref-card-source svg { width: 14px; height: 14px; }
@media (max-width: 1024px) { .ref-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .ref-grid { grid-template-columns: 1fr; } .ref-reviews { padding: 48px 0; } }

/* ============================================================
   HP-PREFIX CLASSES
   De WordPress content gebruikt hp- prefixed class names.
   Dit blok mapt ze op de juiste styling.
   ============================================================ */

/* ── HP Services ── */
.hp-services { padding: 96px 0; background: var(--gray-50); }
.hp-services-header { text-align: center; margin-bottom: 56px; }
.hp-services-header .section-sub { margin: 0 auto; }
.hp-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.hp-service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.hp-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.hp-service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.hp-icon-blue { background: var(--blue-light); color: var(--blue); }
.hp-icon-orange { background: var(--orange-light); color: var(--orange); }
.hp-icon-teal { background: #f0fdfa; color: var(--teal); }
.hp-icon-purple { background: #f5f3ff; color: #7c3aed; }
.hp-service-icon svg,
.hp-service-icon img {
  width: 28px;
  height: 28px;
}
.hp-service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-800);
  margin: 0 0 12px;
}
.hp-service-card > p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0 0 16px;
}
.hp-service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.hp-service-features li {
  font-size: 14px;
  color: var(--gray-600);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.hp-service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
  font-size: 13px;
}
.hp-service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  transition: gap .2s ease;
  margin-top: auto;
}
.hp-service-link:hover {
  gap: 10px;
  color: var(--blue-dark);
  text-decoration: none;
}

/* ── HP Werkwijze (Process) ── */
.hp-werkwijze { padding: 96px 0; background: var(--white); }
.hp-werkwijze-header { text-align: center; margin-bottom: 64px; }
.hp-werkwijze-header .section-sub { margin: 0 auto; }
.hp-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.hp-step { text-align: center; }
.hp-step-number {
  width: 56px;
  height: 56px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  margin: 0 auto 20px;
}
.hp-step h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-800);
  margin: 0 0 8px;
}
.hp-step p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* ── HP Why ── */
.hp-why { padding: 96px 0; background: var(--gray-50); }
.hp-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.hp-why-content .section-label { margin-bottom: 12px; }
.hp-why-content .section-title { margin-bottom: 12px; }
.hp-why-content > p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0 0 20px;
}
.hp-why-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}
.hp-why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.hp-why-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}
.hp-why-point h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-800);
  margin: 0 0 4px;
}
.hp-why-point p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}
.hp-why-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hp-why-stat-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
}
.hp-why-stat-number {
  font-size: 28px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 4px;
}
.hp-why-stat-label {
  font-size: 14px;
  color: var(--gray-600);
}

/* ── HP Oplossingen ── */
.hp-oplossingen { padding: 96px 0; background: var(--white); }
.hp-oplossingen .section-sub { margin: 0 0 48px; }
.hp-opl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.hp-opl-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  text-decoration: none;
  color: var(--gray-800);
  transition: transform .25s ease, box-shadow .25s ease;
}
.hp-opl-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--gray-800);
}
.hp-opl-icon {
  font-size: 24px;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hp-opl-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-800);
  margin: 0 0 6px;
}
.hp-opl-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* ── HP Reviews ── */
.hp-reviews { padding: 96px 0; background: var(--gray-50); }
.hp-reviews .section-sub { margin: 0 0 48px; }
.hp-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.hp-review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.hp-review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.hp-review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.hp-review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.hp-review-info {
  flex: 1;
}
.hp-review-info strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-800);
}
.hp-review-info span {
  font-size: 13px;
  color: var(--gray-600);
}
.hp-review-stars {
  font-size: 16px;
  color: var(--yellow);
  margin-bottom: 12px;
}
.hp-review-card > p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
  margin: 0 0 16px;
}
.hp-review-platform {
  font-size: 12px;
  color: var(--muted);
  padding-top: 12px;
  border-top: 1px solid var(--gray-200);
}

/* HP FAQ — styled by components/faq.css */

/* ── HP Responsive ── */
@media (max-width: 1024px) {
  .hp-why-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .hp-services,
  .hp-werkwijze,
  .hp-why,
  .hp-oplossingen,
  .hp-reviews,
  .hp-faq { padding: 64px 0; }
  .hp-services-grid { grid-template-columns: 1fr; }
  .hp-reviews-grid { grid-template-columns: 1fr; }
}

/* Mobile: uniforme vlak-padding */
@media (max-width: 480px) {
  .mockup-card,
  .scan-box,
  .contact-option,
  .ref-card,
  .hp-service-card,
  .hp-opl-card,
  .hp-why-stat-card { padding: 24px 20px; }
}

/* ============================================================
   Homepage groeipad — 4 diensten als fasen (Webdev/Ads/SEO/Social)
   Accentkleuren: oranje / blauw / groen / paars
   ============================================================ */
.services-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
.service-card .service-fase {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.service-card.web .service-fase { color: #ea580c; }
.service-card.sea .service-fase { color: #0e7490; }
.service-card.seo .service-fase { color: #16a34a; }
.service-card.social .service-fase { color: #7c3aed; }
.service-card.sea::before { background: linear-gradient(90deg, #0e7490, #0891b2); }
.service-card.seo::before { background: linear-gradient(90deg, #16a34a, #22c55e); }
.service-card.social::before { background: linear-gradient(90deg, #7c3aed, #a855f7); }
@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .services-grid { grid-template-columns: 1fr; } }

/* Contact-CTA label: niet stretchen in de flex-kolom (stond als pill over de volle breedte) */
.contact-cta .section-label { align-self: flex-start; }
.scan-box .scan-box-btn { width: 100%; justify-content: center; }
/* Kennis-sectie icoonkleur (seo-service-icon op homepage) */
.seo-service-icon svg { width: 24px; height: 24px; fill: none; stroke: var(--blue); stroke-width: 2; }

/* ============================================================
   Werkgebied — 4 kolommen per dienst (lokale plaatsen)
   ============================================================ */
.om-regio-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: left; }
.om-regio-col { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 24px 20px; }
.om-regio-col h3 { font-size: 15px; font-weight: 700; color: var(--dark); margin: 0 0 12px; padding-bottom: 12px; border-bottom: 1px solid var(--gray-100); }
.om-regio-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.om-regio-col a {
  display: inline-block; padding: 6px 12px; font-size: 13px; font-weight: 500;
  color: var(--gray-700); background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: 50px; text-decoration: none; transition: all .2s ease;
}
.om-regio-col a:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }
@media (max-width: 900px) { .om-regio-cols { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .om-regio-cols { grid-template-columns: 1fr; } }

/* ============================================================
   Laatste artikelen ([oms_latest_articles]) — pill-links per kaart
   (Blog / Kennisbank / Begrippenlijst in sectie "Leer alles…")
   ============================================================ */
/* min-width:0 zodat de nowrap-pills de grid-kaart niet oprekken (ellipsis i.p.v. overflow) */
.seo-services-grid > .seo-service-card { min-width: 0; }
.oms-latest-articles, .oms-latest-tags { min-width: 0; max-width: 100%; }
.oms-latest-articles { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--gray-100); text-align: left; }
.oms-latest-label {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--muted); margin-bottom: 12px;
}
.oms-latest-tags { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; min-width: 0; }
.oms-article-tag {
  display: inline-block; max-width: 100%; white-space: nowrap; overflow: hidden;
  text-overflow: ellipsis; font-size: 12px; font-weight: 500; color: var(--gray-700);
  background: var(--gray-50); border: 1px solid var(--gray-200); padding: 6px 12px;
  border-radius: 50px; text-decoration: none; transition: all .2s ease; vertical-align: middle;
}
.oms-article-tag:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }

/* ============================================================
   Branche-sectie: "Meer informatie"-knop in kaart + tag-wolk
   ============================================================ */
.seo-service-card .oms-btn { margin-top: auto; align-self: flex-start; }
.branche-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 36px; }
.branche-tags-label { width: 100%; text-align: center; font-size: 13px; color: var(--gray-600); margin-bottom: 4px; }
.branche-tag {
  font-size: 13px; font-weight: 500; color: var(--gray-700);
  background: var(--gray-50); border: 1px solid var(--gray-200);
  padding: 7px 14px; border-radius: 50px; text-decoration: none;
  transition: all .2s ease;
}
.branche-tag:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }

/* ============================================================
   Resultaten / mini-cases (geport van online-marketing-hub)
   ============================================================ */
.om-cases { padding: 80px 0; background: var(--gray-50); }
.om-cases > .oms-container { text-align: center; }
.om-cases .section-sub { margin: 0 auto 48px; }
.om-cases-grid { text-align: left; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.om-case { background: var(--white); border-radius: var(--radius-lg); padding: 32px; border: 1px solid var(--gray-200); box-shadow: var(--shadow); transition: transform .25s ease, box-shadow .25s ease; }
.om-case:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.om-case-tag { display: inline-block; background: var(--blue-light); color: var(--blue); font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 50px; margin-bottom: 16px; letter-spacing: .5px; text-transform: uppercase; }
.om-case-metric { font-size: 40px; font-weight: 900; color: var(--blue); line-height: 1; margin-bottom: 8px; }
.om-case-metric span { color: var(--orange); }
.om-case h3 { font-size: 16px; font-weight: 700; color: var(--gray-800); margin: 0 0 10px; }
.om-case p { font-size: 14px; color: var(--gray-600); line-height: 1.7; margin: 0; }
@media (max-width: 1024px) { .om-cases-grid { grid-template-columns: 1fr; } }
@media (max-width: 768px)  { .om-cases { padding: 48px 0; } }
@media (max-width: 480px)  { .om-case { padding: 24px 20px; } }
