/* ============================================================
   Homepage – Pagina-specifieke Styles
   Klasse-namen matchen de werkelijke HTML in WordPress
   ============================================================ */

/* ── Gedeelde section utilities ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  box-sizing: border-box;
}

.section-label {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--gray-800);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 600px;
  line-height: 1.7;
  margin: 0;
}

/* 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 ── */
.hero {
  background: linear-gradient(135deg, #0c5f78 0%, #0e7490 50%, #0891b2 100%);
  padding: 80px 0 100px;
  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");
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.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: .6; transform: scale(1.3); }
}

.hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: -1px;
}
.hero h1 em {
  font-style: normal;
  color: #fbbf24;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  margin: 0 0 32px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* Knoppen in hero */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all .25s ease;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: #c2410c;
  border-color: #c2410c;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(234,88,12,.35);
  text-decoration: none;
}
.btn-white {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-white:hover {
  background: rgba(255,255,255,.25);
  border-color: rgba(255,255,255,.7);
  color: var(--white);
  text-decoration: none;
}

.hero-proof {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 12px 20px;
}
.hero-proof-stars { font-size: 20px; color: #fbbf24; line-height: 1; }
.hero-proof-text { font-size: 14px; color: rgba(255,255,255,.9); }
.hero-proof-text strong { color: var(--white); }

/* Hero mockup kaarten */
.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: #dcfce7; color: #16a34a; }
.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: #dcfce7;
  color: #16a34a;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  margin-top: 8px;
}

/* ── STATS ── */
.stats {
  background: var(--gray-800);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item { /* wrapper div */ }
.stat-number {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number span { color: var(--orange); }
.stat-label { font-size: 14px; color: #94a3b8; }

/* ── 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 {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.service-card.web::before  { background: linear-gradient(90deg, var(--orange), #f97316); }
.service-card.sea::before  { background: linear-gradient(90deg, #d97706, #f59e0b); }
.service-card.seo::before  { background: linear-gradient(90deg, var(--teal), #14b8a6); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.service-card.web .service-icon { background: var(--orange-light); }
.service-card.sea .service-icon { background: #fffbeb; }
.service-card.seo .service-icon { background: #f0fdfa; }
.service-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.service-card.web .service-icon svg { stroke: var(--orange); }
.service-card.sea .service-icon svg { stroke: #d97706; }
.service-card.seo .service-icon svg { stroke: var(--teal); }

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--gray-800);
}
.service-card > p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0 0 20px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.service-features li {
  font-size: 14px;
  color: var(--gray-600);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
  font-size: 13px;
}

.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;
}
.service-link:hover {
  gap: 10px;
  color: var(--blue-dark);
  text-decoration: none;
}
.service-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}

.services-badge {
  text-align: center;
  margin-top: 40px;
}
.services-badge-inner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #dcfce7;
  border: 1px solid #bbf7d0;
  color: #16a34a;
  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: #dcfce7;
  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: #16a34a;
  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: all .25s ease;
}
.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: #fbbf24;
  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: #dcfce7;
  color: #16a34a;
  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; }
}
