/* SEO-hub gedeelde stijlen — voor alle SEO-landingspagina's */

/* Redactionele foto's — boven verankerd, onderzijde afgesneden.
   Gebruik: <figure class="seo-photo seo-photo--hero"><img ...></figure> */
.seo-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(28,27,79,0.12);
  background: var(--bg-alt);
}
.seo-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center; /* bovenkant als vertrekpunt, onderzijde afgesneden */
}
.seo-photo--hero { aspect-ratio: 3 / 2; }
.seo-photo--portrait { aspect-ratio: 4 / 5; border-radius: 18px; box-shadow: 0 24px 60px rgba(28,27,79,0.12); }
.seo-photo--wide { aspect-ratio: 16 / 9; }

.seo-hero {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
}
.seo-hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0 100px;
}
.seo-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 22px;
}
.seo-hero h1 .accent {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-style: italic;
  color: var(--c-magenta);
}
.seo-hero p.lead {
  font-size: 19px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 560px;
}
.seo-hero-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  border-top: 4px solid var(--c-magenta);
  box-shadow: 0 16px 50px rgba(28,27,79,0.10);
}
.seo-hero-card h4 {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 14px;
  font-weight: 500;
}
.seo-hero-card-line {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.seo-hero-card-line:last-child { border: none; padding-bottom: 0; }
.seo-hero-card-line .key { color: var(--ink-soft); }
.seo-hero-card-line .val { color: var(--navy); font-weight: 500; text-align: right; }

.wat-is {
  padding: 100px 0;
  background: white;
}
.wat-is-content p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0 0 18px;
}
.wat-is-content p strong { color: var(--navy); font-weight: 600; }
.wat-is-content a { color: var(--c-magenta); }

.klachten {
  padding: 100px 0;
  background: var(--bg-alt);
}
.klachten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.klacht {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.klacht:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(28,27,79,0.08);
  border-color: var(--c-magenta);
}
.klacht-dot {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-bottom: 14px;
}
.klacht h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 6px;
}
.klacht p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

.aanpak {
  padding: 100px 0;
  background: white;
}
.aanpak-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.aanpak-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 36px;
  border-top: 4px solid var(--c-magenta);
}
.aanpak-card.alt { border-top-color: var(--c-cyan); }
.aanpak-card .tag {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-magenta);
  font-weight: 500;
  margin-bottom: 12px;
}
.aanpak-card.alt .tag { color: var(--c-cyan); }
.aanpak-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 12px;
  line-height: 1.25;
}
.aanpak-card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
}

.faq {
  padding: 100px 0;
  background: var(--bg-alt);
}
.faq-list {
  max-width: 820px;
  margin: 40px auto 0;
}
.faq-item {
  background: white;
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.faq-item summary {
  padding: 22px 28px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 300;
  transition: transform 0.2s, background 0.2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  content: '−';
  background: var(--c-magenta);
  color: white;
}
.faq-item .faq-answer {
  padding: 0 28px 24px;
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 15px;
}
.faq-item .faq-answer a { color: var(--c-magenta); }
.faq-item .faq-answer em { font-style: italic; }
.faq-item .faq-answer strong { color: var(--navy); }

.seo-cta {
  padding: 100px 0;
  background: var(--c-pink);
  color: var(--navy);
  position: relative;
  overflow: hidden;
}
.seo-cta::before {
  content: '';
  position: absolute;
  right: -120px; top: -120px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: var(--c-magenta);
  opacity: 0.22;
}
.seo-cta-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.seo-cta h2 {
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(34px, 4.4vw, 52px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 12px 0 18px;
}
.seo-cta h2 em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--c-magenta);
}
.seo-cta p {
  color: rgba(28, 27, 79, 0.78);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 30px;
}
.seo-cta-card {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(28, 27, 79, 0.10);
  border-radius: var(--radius);
  padding: 28px;
}
.seo-cta-card h4 {
  color: var(--navy);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 14px;
}
.seo-cta-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.seo-cta-card li {
  display: flex;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--navy);
}
.seo-cta-card li span:first-child {
  color: var(--c-magenta);
  font-weight: 600;
  flex-shrink: 0;
}

/* Locaties grid — onderaan landingspagina's */
.locaties {
  padding: 100px 0;
  background: var(--bg-alt);
}
.locaties-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.locatie {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
  display: block;
}
.locatie:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(28,27,79,0.08); }
.locatie-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-alt);
}
.locatie-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.locatie-body { padding: 20px 22px 24px; }
.locatie-region {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-magenta);
  font-weight: 500;
  margin-bottom: 6px;
}
.locatie h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 6px;
}
.locatie p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
}
.locatie-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-magenta);
}

@media (max-width: 1000px) {
  .seo-hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 0 80px; }
  .klachten-grid { grid-template-columns: 1fr 1fr; }
  .aanpak-grid { grid-template-columns: 1fr; }
  .seo-cta-grid { grid-template-columns: 1fr; gap: 32px; }
  .locaties-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .klachten-grid { grid-template-columns: 1fr; }
  .locaties-grid { grid-template-columns: 1fr; }
}
