/* ============================================================
   Google Ads Bureau – Pagina-specifieke Styles
   ============================================================ */

/* ── Gedeelde section utilities ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  box-sizing: border-box;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px; font-weight: 700;
  font-size: 15px; text-decoration: none; transition: all .2s ease;
  cursor: pointer; border: none; white-space: nowrap;
}
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 4px 16px rgba(234,88,12,.35); }
.btn-primary:hover { background: #c2410c; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(234,88,12,.4); }
.btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--blue); font-weight: 700; box-shadow: 0 4px 16px rgba(0,0,0,.12); }
.btn-white:hover { background: var(--blue-light); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.15); color: #fff; border: 1px solid rgba(255,255,255,.3); }
.btn-ghost:hover { background: rgba(255,255,255,.25); transform: translateY(-2px); }

.section-label {
  display: inline-block; background: var(--blue-light); color: var(--blue);
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 50px; margin-bottom: 16px;
}
.section-label.orange { background: #fff7ed; color: var(--orange); }
.section-title { font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; line-height: 1.2; color: var(--gray-800); margin-bottom: 16px; }
.section-sub { font-size: 17px; color: var(--gray-600); line-height: 1.7; }

/* Fade-in animatie */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Breadcrumb ── */
.breadcrumb { background: var(--gray-50); border-bottom: 1px solid var(--gray-200); padding: 12px 0; }
.breadcrumb-inner { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-600); }
.breadcrumb-inner a { color: var(--blue); text-decoration: none; }
.breadcrumb-inner a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--gray-200); }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, #0c5f78 0%, #0e7490 50%, #0891b2 100%);
  padding: 72px 0 0; overflow: hidden; position: relative;
}
.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'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%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-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; position: relative; z-index: 1; }
.hero-content { padding-bottom: 72px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.15); color: #fff; font-size: 13px; font-weight: 600; padding: 8px 16px; border-radius: 50px; margin-bottom: 24px; border: 1px solid rgba(255,255,255,.2); }
.hero-badge span { width: 8px; height: 8px; background: #4ade80; border-radius: 50%; display: inline-block; }
.hero h1 { font-size: clamp(32px, 4.5vw, 54px); font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 20px; letter-spacing: -.5px; }
.hero h1 em { font-style: normal; color: var(--yellow); }
.hero-sub { font-size: 18px; color: rgba(255,255,255,.85); margin-bottom: 32px; line-height: 1.65; max-width: 500px; }
.hero-includes { list-style: none; margin-bottom: 36px; display: flex; flex-direction: column; gap: 8px; }
.hero-includes li { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.9); font-size: 15px; }
.hero-includes li::before { content: '✓'; width: 22px; height: 22px; background: rgba(255,255,255,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-social-proof { display: flex; align-items: center; gap: 12px; }
.hero-avatars { display: flex; }
.hero-avatars span { width: 36px; height: 36px; border-radius: 50%; background: var(--blue-mid); border: 2px solid rgba(255,255,255,.4); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: #fff; margin-left: -8px; }
.hero-avatars span:first-child { margin-left: 0; }
.hero-social-text { font-size: 13px; color: rgba(255,255,255,.8); }
.hero-social-text strong { color: #fff; }

/* Hero visual */
.hero-visual { padding-bottom: 0; display: flex; flex-direction: column; gap: 0; align-items: stretch; }
.serp-mockup {
  background: #fff; border-radius: 16px 16px 0 0;
  box-shadow: 0 -8px 48px rgba(0,0,0,.25);
  overflow: hidden; width: 100%;
}
.serp-top { background: #f1f3f4; padding: 12px 16px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid #dadce0; }
.serp-search { flex: 1; background: #fff; border-radius: 24px; padding: 8px 16px; display: flex; align-items: center; gap: 8px; border: 1px solid #dadce0; font-size: 13px; color: #3c4043; }
.serp-search svg { width: 16px; height: 16px; flex-shrink: 0; }
.serp-body { padding: 16px; }
.serp-ad { padding: 12px 14px; border-radius: 8px; margin-bottom: 8px; border: 1px solid var(--gray-200); transition: background .15s; }
.serp-ad:hover { background: var(--gray-50); }
.serp-ad-top { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.serp-ad-badge { background: #fff3cd; color: #856404; font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 3px; border: 1px solid #ffc107; }
.serp-ad-url { font-size: 12px; color: #202124; }
.serp-ad-title { font-size: 15px; color: #1a0dab; font-weight: 600; margin-bottom: 4px; line-height: 1.3; }
.serp-ad-desc { font-size: 12px; color: #4d5156; line-height: 1.5; }
.serp-ad.top { background: linear-gradient(135deg, #fff8f0, #fff); border-color: var(--yellow); }
.serp-ad.top .serp-ad-title { color: var(--orange); }
.serp-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 12px; }
.serp-metric { background: var(--gray-50); border-radius: 8px; padding: 10px 12px; text-align: center; }
.serp-metric-val { font-size: 18px; font-weight: 800; color: var(--gray-800); }
.serp-metric-val .up { color: var(--green); font-size: 12px; }
.serp-metric-label { font-size: 11px; color: var(--gray-600); margin-top: 2px; }

/* ── Stats ── */
.stats { background: var(--gray-800); padding: 48px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.08); border-radius: var(--radius); overflow: hidden; }
.stat-item { background: var(--gray-800); padding: 32px 24px; text-align: center; transition: background .2s; }
.stat-item:hover { background: #263348; }
.stat-number { font-size: clamp(30px, 3.5vw, 44px); font-weight: 900; color: #fff; line-height: 1; margin-bottom: 6px; }
.stat-number span { color: var(--orange); }
.stat-label { font-size: 14px; color: var(--muted); font-weight: 500; }

/* ── Included ── */
.included { padding: 80px 0; background: var(--gray-50); }
.included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.included-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.included-card {
  background: #fff; border-radius: var(--radius); padding: 20px;
  border: 1px solid var(--gray-200); box-shadow: var(--shadow);
  transition: all .2s; display: flex; flex-direction: column; gap: 10px;
}
.included-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.included-card-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--blue-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.included-card-icon svg { width: 22px; height: 22px; fill: none; stroke: var(--blue); stroke-width: 2; }
.included-card h4 { font-size: 14px; font-weight: 700; color: var(--gray-800); }
.included-card p { font-size: 13px; color: var(--gray-600); line-height: 1.5; }

/* ── Why Google Ads ── */
.why-ads { padding: 80px 0; }
.why-ads-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.why-ads-content p { font-size: 16px; color: var(--gray-600); line-height: 1.8; margin-bottom: 20px; }
.comparison-table { width: 100%; border-collapse: collapse; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-top: 32px; }
.comparison-table th { background: var(--gray-800); color: #fff; padding: 14px 16px; text-align: left; font-size: 13px; font-weight: 700; }
.comparison-table td { padding: 12px 16px; font-size: 14px; border-bottom: 1px solid var(--gray-100); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: var(--gray-50); }
.comparison-table .check { color: var(--green); font-weight: 700; }
.comparison-table .cross { color: #dc2626; font-weight: 700; }
.comparison-table .col-ads { font-weight: 600; color: var(--blue); }

/* Voordelen blokken */
.voordelen-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.voordeel-card { background: var(--gray-50); border-radius: var(--radius); padding: 20px; border: 1px solid var(--gray-200); transition: all .2s; }
.voordeel-card:hover { background: var(--blue-light); border-color: var(--blue); }
.voordeel-num { font-size: 28px; font-weight: 900; color: var(--blue); opacity: .3; line-height: 1; margin-bottom: 8px; }
.voordeel-card h4 { font-size: 15px; font-weight: 700; color: var(--gray-800); margin-bottom: 6px; }
.voordeel-card p { font-size: 13px; color: var(--gray-600); line-height: 1.5; }

/* ── Werkwijze ── */
.werkwijze { padding: 80px 0; background: var(--gray-50); }
.werkwijze-header { text-align: center; margin-bottom: 64px; }
.werkwijze-timeline { position: relative; }
.werkwijze-timeline::before { content: ''; position: absolute; left: 40px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--blue), var(--blue-light)); }
.werkwijze-item { display: flex; gap: 32px; margin-bottom: 40px; position: relative; }
.werkwijze-item:last-child { margin-bottom: 0; }
.werkwijze-num { width: 80px; height: 80px; border-radius: 50%; background: var(--blue); color: #fff; font-size: 22px; font-weight: 900; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 4px 16px rgba(14,116,144,.3); position: relative; z-index: 1; }
.werkwijze-body { background: #fff; border-radius: var(--radius); padding: 28px 32px; border: 1px solid var(--gray-200); box-shadow: var(--shadow); flex: 1; transition: all .2s; }
.werkwijze-body:hover { box-shadow: var(--shadow-lg); border-color: var(--blue); }
.werkwijze-body h3 { font-size: 18px; font-weight: 800; color: var(--gray-800); margin-bottom: 10px; }
.werkwijze-body p { font-size: 15px; color: var(--gray-600); line-height: 1.7; }
.werkwijze-body .tag { display: inline-block; background: var(--blue-light); color: var(--blue); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 50px; margin-bottom: 10px; }

/* ── Zelf doen vs uitbesteden ── */
.zelf-vs { padding: 80px 0; }
.zelf-vs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.zelf-card { border-radius: var(--radius-lg); padding: 40px; }
.zelf-card.zelf { background: var(--gray-50); border: 1px solid var(--gray-200); }
.zelf-card.bureau { background: linear-gradient(135deg, var(--blue-dark), var(--blue)); color: #fff; }
.zelf-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.zelf-card.zelf h3 { color: var(--gray-800); }
.zelf-card p { font-size: 15px; line-height: 1.7; margin-bottom: 24px; }
.zelf-card.zelf p { color: var(--gray-600); }
.zelf-card.bureau p { color: rgba(255,255,255,.85); }
.zelf-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.zelf-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.5; }
.zelf-card.zelf .zelf-list li { color: var(--gray-600); }
.zelf-card.bureau .zelf-list li { color: rgba(255,255,255,.9); }
.zelf-list li::before { content: ''; width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; margin-top: 2px; }
.zelf-card.zelf .zelf-list li::before { background: #fee2e2; content: '✗'; color: #dc2626; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.zelf-card.bureau .zelf-list li::before { background: rgba(255,255,255,.2); content: '✓'; color: #fff; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; }

/* ── Hoe start je ── */
.hoe-start { padding: 80px 0; background: var(--gray-50); }
.hoe-start-header { text-align: center; margin-bottom: 64px; }
.stappen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stap-card { background: #fff; border-radius: var(--radius-lg); padding: 32px; border: 1px solid var(--gray-200); box-shadow: var(--shadow); transition: all .25s; position: relative; overflow: hidden; }
.stap-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--blue); }
.stap-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stap-num { font-size: 48px; font-weight: 900; color: var(--blue); opacity: .12; line-height: 1; margin-bottom: 12px; }
.stap-card h4 { font-size: 16px; font-weight: 800; color: var(--gray-800); margin-bottom: 10px; }
.stap-card p { font-size: 14px; color: var(--gray-600); line-height: 1.65; }

/* ── CTA band ── */
.cta-band { background: linear-gradient(135deg, var(--blue-dark), var(--blue)); padding: 72px 0; }
.cta-band-inner { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.cta-band h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 900; color: #fff; margin-bottom: 12px; }
.cta-band p { font-size: 17px; color: rgba(255,255,255,.8); }
.cta-band-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }

/* ── Regio's ── */
.regios { padding: 80px 0; }
.regios-header { text-align: center; margin-bottom: 48px; }
.regios-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.regio-col h4 { font-size: 16px; font-weight: 700; margin-bottom: 12px; color: var(--blue); }
.regio-link { display: block; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 14px 16px; text-align: left; text-decoration: none; color: var(--gray-600); font-size: 14px; font-weight: 500; transition: all .2s; margin-bottom: 8px; }
.regio-link:hover { background: var(--blue-light); border-color: var(--blue); color: var(--blue); transform: translateX(4px); }

/* FAQ — styled by components/faq.css */

/* ── Contact CTA ── */
.contact-cta { padding: 80px 0; }
.contact-cta-inner { background: #fff; border-radius: var(--radius-lg); padding: 56px; box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200); display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.contact-cta h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: var(--gray-800); margin-bottom: 16px; }
.contact-cta p { font-size: 16px; color: var(--gray-600); line-height: 1.7; margin-bottom: 32px; }
.contact-options { display: flex; flex-direction: column; gap: 14px; }
.contact-option { display: flex; align-items: center; gap: 16px; padding: 18px 20px; border-radius: var(--radius); background: var(--gray-50); border: 1px solid var(--gray-200); text-decoration: none; transition: all .2s; }
.contact-option:hover { background: var(--blue-light); border-color: var(--blue); }
.contact-option-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-option-icon svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 2; }
.contact-option-label { font-size: 12px; color: var(--gray-600); font-weight: 500; }
.contact-option-value { font-size: 15px; font-weight: 700; color: var(--gray-800); }
.audit-box { background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid)); border-radius: var(--radius-lg); padding: 40px; text-align: center; color: #fff; }
.audit-box h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.audit-box p { font-size: 15px; color: rgba(255,255,255,.8); margin-bottom: 24px; line-height: 1.6; }
.audit-checklist { list-style: none; text-align: left; margin-bottom: 28px; }
.audit-checklist li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,.9); padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.audit-checklist li:last-child { border-bottom: none; }
.audit-checklist li::before { content: '✓'; width: 22px; height: 22px; background: rgba(255,255,255,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-content { padding-bottom: 64px; }
  .included-grid { grid-template-columns: 1fr; }
  .why-ads-grid { grid-template-columns: 1fr; }
  .zelf-vs-grid { grid-template-columns: 1fr; }
  .cta-band-inner { grid-template-columns: 1fr; }
  .cta-band-actions { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
  .contact-cta-inner { grid-template-columns: 1fr; padding: 32px; gap: 32px; }
}
@media (max-width: 768px) {
  .hero { padding: 48px 0 0; }
  .hero-content { padding-bottom: 48px; }
  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 24px 16px; }
  .included { padding: 56px 0; }
  .included-cards { grid-template-columns: 1fr; }
  .why-ads { padding: 56px 0; }
  .werkwijze { padding: 56px 0; }
  .zelf-vs { padding: 56px 0; }
  .hoe-start { padding: 56px 0; }
  .contact-cta { padding: 56px 0; }
  .regios { padding: 56px 0; }
  .voordelen-grid { grid-template-columns: 1fr; }
  .stappen-grid { grid-template-columns: 1fr; }
  .regios-grid { grid-template-columns: 1fr; }
  .werkwijze-timeline::before { display: none; }
  .werkwijze-item { flex-direction: column; gap: 12px; }
  .werkwijze-num { width: 52px; height: 52px; font-size: 18px; }
  .werkwijze-body { padding: 20px; }
  .cta-band { padding: 48px 0; }
  .cta-band-actions { flex-direction: column; }
  .cta-band-actions .btn { width: 100%; justify-content: center; }
  .contact-cta-inner { padding: 24px; }
  .comparison-table { font-size: 13px; }
  .comparison-table th, .comparison-table td { padding: 10px 10px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 28px; }
  .section-title { font-size: 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stap-card { padding: 24px 20px; }
  .zelf-card { padding: 28px 20px; }
  .audit-box { padding: 28px 20px; }
  .hero-actions .btn { padding: 14px 20px; font-size: 14px; }
  .included-card { padding: 16px; }
}

/* ════════════════════════════════════════════════════════════════
 * SEO-PAGINA SPECIFIEKE CLASSES (toegevoegd 2026-05-04)
 * ════════════════════════════════════════════════════════════════ */

/* SEO Intro section */
.seo-intro { padding: 80px 0; background: #fff; }
.seo-intro-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: start; }
.seo-intro-content { max-width: 600px; }
.seo-intro-content .section-label { display: inline-block; padding: 6px 14px; background: var(--blue-light); color: var(--blue); border-radius: 999px; font-size: 13px; font-weight: 600; margin-bottom: 16px; }
.seo-intro-content .section-title { font-size: 38px; line-height: 1.2; margin: 0 0 16px; }
.seo-intro-content .section-sub { font-size: 17px; color: #475569; line-height: 1.6; margin-bottom: 28px; }

/* SEO Voordelen-list (highlights box) */
.seo-intro-voordelen { background: #f8fafc; border-radius: 16px; padding: 32px; border: 1px solid #e2e8f0; }
.seo-voordeel-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.seo-voordeel-item { display: flex; gap: 14px; align-items: start; padding: 12px; border-radius: 10px; transition: background 0.2s; }
.seo-voordeel-item:hover { background: #fff; }
.seo-voordeel-item strong { display: block; font-size: 16px; margin-bottom: 4px; color: #0f172a; }
.seo-voordeel-item span { font-size: 14px; color: #64748b; line-height: 1.5; }
.seo-voordeel-icon { flex: 0 0 36px; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: var(--blue); color: #fff; border-radius: 50%; font-weight: 700; }

/* SEO Diensten cards-grid */
.seo-diensten { padding: 80px 0; background: #f8fafc; }
.seo-diensten > .oms-container,
.seo-diensten > .container { text-align: center; }
.seo-diensten .section-label { display: inline-block; padding: 6px 14px; background: var(--blue-light); color: var(--blue); border-radius: 999px; font-size: 13px; font-weight: 600; margin-bottom: 16px; }
.seo-diensten .section-title { font-size: 38px; line-height: 1.2; max-width: 700px; margin: 0 auto 12px; }
.seo-diensten .section-sub { font-size: 17px; color: #475569; line-height: 1.6; max-width: 600px; margin: 0 auto 48px; }
.seo-diensten-grid { text-align: left; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.seo-dienst-card { background: #fff; border-radius: 16px; padding: 32px; border: 1px solid #e2e8f0; transition: transform 0.2s, box-shadow 0.2s; }
.seo-dienst-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.seo-dienst-card h3 { font-size: 20px; margin: 16px 0 8px; color: #0f172a; }
.seo-dienst-card p { font-size: 15px; color: #64748b; line-height: 1.6; margin: 0; }
.seo-dienst-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: var(--blue-light); color: var(--blue); border-radius: 12px; font-size: 20px; }
.seo-dienst-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; }

/* SEO Werkwijze section */
.seo-werkwijze { padding: 80px 0; background: #fff; }
.seo-werkwijze > .oms-container { text-align: center; }
.seo-werkwijze .ga-steps { text-align: left; }

/* Section header centering — handled by components/faq.css */

/* ── Hero: 2-koloms grid met visual ── */

/* SEO Dashboard mockup (hero visual) */
.seo-dashboard {
  background: #fff;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -8px 48px rgba(0,0,0,.25);
  overflow: hidden;
  width: 100%;
}
.seo-dash-top {
  background: #f8fafc;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #e2e8f0;
}
.seo-dash-top .browser-dots span {
  width: 10px; height: 10px; border-radius: 50%; display: inline-block;
}
.seo-dash-top .browser-dots span:nth-child(1) { background: #ef4444; }
.seo-dash-top .browser-dots span:nth-child(2) { background: #f59e0b; }
.seo-dash-top .browser-dots span:nth-child(3) { background: #22c55e; }
.seo-dash-tab {
  font-size: 12px; color: var(--gray-600); font-weight: 600;
  padding: 4px 12px; border-radius: 6px;
}
.seo-dash-tab.active { background: #fff; color: var(--blue); box-shadow: 0 1px 3px rgba(0,0,0,.08); }
.seo-dash-body { padding: 20px; }
.seo-dash-title { font-size: 11px; font-weight: 700; color: var(--gray-600); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 12px; }

/* Traffic chart area */
.seo-dash-chart {
  position: relative;
  height: 100px;
  margin-bottom: 16px;
  background: linear-gradient(180deg, rgba(14,116,144,.08) 0%, transparent 100%);
  border-radius: 8px;
  overflow: hidden;
}
.seo-dash-chart svg { width: 100%; height: 100%; }
.seo-chart-line { fill: none; stroke: var(--blue); stroke-width: 2.5; }
.seo-chart-area { fill: url(#seoGradient); opacity: .3; }
.seo-dash-chart-labels {
  position: absolute; bottom: 4px; left: 8px; right: 8px;
  display: flex; justify-content: space-between;
  font-size: 9px; color: var(--gray-400); font-weight: 500;
}

/* Keyword rows */
.seo-dash-keywords { display: flex; flex-direction: column; gap: 6px; }
.seo-dash-kw {
  display: grid; grid-template-columns: 1fr auto auto;
  gap: 12px; align-items: center;
  padding: 8px 10px; border-radius: 8px;
  background: #f8fafc; font-size: 12px;
}
.seo-dash-kw-term { font-weight: 600; color: var(--gray-800); }
.seo-dash-kw-pos {
  font-weight: 800; color: var(--blue); font-size: 14px;
  min-width: 28px; text-align: center;
}
.seo-dash-kw-change {
  font-size: 11px; font-weight: 700; color: #16a34a;
  display: flex; align-items: center; gap: 2px;
}

/* Metrics row in dashboard */
.seo-dash-metrics {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px; margin-top: 12px;
}
.seo-dash-metric {
  background: #f8fafc; border-radius: 8px; padding: 10px;
  text-align: center;
}
.seo-dash-metric-val { font-size: 16px; font-weight: 800; color: var(--gray-800); }
.seo-dash-metric-val .up { color: #16a34a; font-size: 10px; margin-left: 2px; }
.seo-dash-metric-label { font-size: 10px; color: var(--gray-500); margin-top: 2px; }

/* ── CTA band fix ── */
.cta-band h2 { margin-bottom: 12px; }
.cta-band p { margin-bottom: 0; }

/* SEO diensten: enhanced card features */
.seo-dienst-features {
  list-style: none; padding: 0; margin: 12px 0 0;
  display: flex; flex-direction: column; gap: 6px;
}
.seo-dienst-features li {
  font-size: 13px; color: var(--gray-600); padding-left: 20px;
  position: relative; line-height: 1.5;
}
.seo-dienst-features li::before {
  content: '\2713'; position: absolute; left: 0;
  color: var(--blue); font-weight: 700; font-size: 12px;
}

/* Responsive — mobile */
/* (responsive hero handled by shared seo.css rules at line 229) */
@media (max-width: 900px) {
    .seo-intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .seo-intro-content .section-title,
    .seo-diensten .section-title { font-size: 28px; }
    .seo-diensten-grid { grid-template-columns: 1fr; }
}

/* Mobile: uniforme vlak-padding */
@media (max-width: 480px) {
  .werkwijze-body,
  .zelf-card,
  .seo-dienst-card,
  .seo-intro-voordelen,
  .audit-box { padding: 24px 20px; }
}

/* ════════════════════════════════════════════════════════════
   SEO-FUNDERING (visie: webdev -> Google Ads -> datagedreven SEO)
   ════════════════════════════════════════════════════════════ */
.seo-fundering { padding: 80px 0; background: var(--white); }
.seo-fundering-header { text-align: center; }
.seo-fundering-header .section-sub { max-width: 720px; margin: 16px auto 0; }
.seo-fundering-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; margin-top: 48px; }
.seo-fundering-flow::before { content: ''; position: absolute; top: 28px; left: calc(16.66% + 8px); right: calc(16.66% + 8px); height: 2px; background: linear-gradient(90deg, var(--blue-light), var(--blue), var(--teal)); z-index: 0; }
.seo-fundering-step { text-align: center; position: relative; z-index: 1; }
.seo-fundering-num { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--blue-mid)); color: #fff; font-size: 20px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; box-shadow: 0 4px 16px rgba(14,116,144,.3); }
.seo-fundering-step h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin: 0 0 8px; }
.seo-fundering-step p { font-size: 14px; color: var(--gray-600); line-height: 1.7; margin: 0; }

/* ════════════════════════════════════════════════════════════
   SEO-PIJLERS (On-page / Off-page / Techniek - onze edge)
   ════════════════════════════════════════════════════════════ */
.seo-pijlers { padding: 80px 0; background: var(--gray-50); }
.seo-pijlers-header { text-align: center; margin-bottom: 48px; }
.seo-pijlers-header .section-sub { max-width: 720px; margin: 16px auto 0; }
.seo-pijlers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.seo-pijler-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.seo-pijler-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.seo-pijler-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.seo-pijler-icon svg { width: 26px; height: 26px; stroke-width: 2; fill: none; }
.seo-pijler-icon.onpage { background: var(--blue-light); } .seo-pijler-icon.onpage svg { stroke: var(--blue); }
.seo-pijler-icon.offpage { background: #fff7ed; } .seo-pijler-icon.offpage svg { stroke: var(--orange); }
.seo-pijler-icon.tech { background: #f0fdfa; } .seo-pijler-icon.tech svg { stroke: var(--teal); }
.seo-pijler-tag { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--blue); margin-bottom: 8px; }
.seo-pijler-card h3 { font-size: 19px; font-weight: 800; color: var(--dark); margin: 0 0 10px; }
.seo-pijler-card > p { font-size: 14px; color: var(--gray-600); line-height: 1.7; margin: 0 0 18px; }
.seo-pijler-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.seo-pijler-list li { font-size: 14px; color: var(--gray-700, #475569); line-height: 1.5; padding-left: 26px; position: relative; }
.seo-pijler-list li::before { content: '\2713'; position: absolute; left: 0; color: var(--green); font-weight: 800; }

/* ════════════════════════════════════════════════════════════
   SEO-GEO (AI SEO / Generative Engine Optimization)
   ════════════════════════════════════════════════════════════ */
.seo-geo { padding: 80px 0; background: linear-gradient(135deg, #0c5f78, #0e7490); color: #fff; }
.seo-geo-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.seo-geo .section-label { background: rgba(255,255,255,.15); color: #fff; }
.seo-geo h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 800; color: #fff; margin: 16px 0; }
.seo-geo > .oms-container > .seo-geo-inner > p { font-size: 17px; line-height: 1.8; color: rgba(255,255,255,.9); margin: 0 auto 8px; }
.seo-geo-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; text-align: left; }
.seo-geo-point { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); padding: 22px; }
.seo-geo-point strong { display: block; color: #fff; font-size: 15px; margin-bottom: 8px; }
.seo-geo-point span { font-size: 13px; color: rgba(255,255,255,.82); line-height: 1.6; }

@media (max-width: 900px) {
  .seo-fundering-flow, .seo-pijlers-grid, .seo-geo-points { grid-template-columns: 1fr; }
  .seo-fundering-flow::before { display: none; }
}
@media (max-width: 768px) {
  .seo-fundering, .seo-pijlers, .seo-geo { padding: 56px 0; }
}
@media (max-width: 480px) {
  .seo-pijler-card { padding: 24px 20px; }
}
