/**
 * Dak Kampioenen – Complete Site CSS
 * Alle CSS voor alle pagina's gecombineerd.
 * Page templates: page-dakreparatie, page-daklekkage-spoed, page-dakwerk-offerte,
 * page-gratis-dakinspectie, page-platte-daken, page-schoorsteen-renovatie,
 * page-schuurdak-laten-vervangen, page-pannendak-renovatie.
 */

 /* === FONTS ===
  * Inter is het huisfont voor alle gewone tekst.
  * Barlow Condensed + DM Sans alleen voor de daklekkage-spoed pagina.
  */
  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Barlow+Condensed:wght@700;800;900&family=DM+Sans:wght@400;500;600;700&display=swap');

  /* === FONT BLOKKADE — Inter op alle pagina's ===
   * Elke pagina gebruikt Inter, ook pagina's die .spoed-hero of
   * .spoed-section klassen gebruiken (EPDM, bitumen, etc.).
   * Hello Elementor en WordPress kunnen dit niet overschrijven.
   */
  html,
  html body,
  html body * {
      font-family: 'Inter', sans-serif !important;
      box-sizing: border-box;
  }


  /* === CSS VARIABLES === */
  :root {
      --color-primary: #B01E2D;
      --color-secondary: #1F3F6D;
      --color-dark: #0E0E0E;
      --color-light: #F4F5F7;
      --color-accent: #C8A24D;
      --color-gray: #1A1F26;
      --color-success: #10b981;
      --color-warning: #f59e0b;
      --space-xs: 8px;
      --space-sm: 16px;
      --space-md: 24px;
      --space-lg: 40px;
      --space-xl: 60px;
      --space-2xl: 80px;
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 16px;
      --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.06);
      --shadow-card-hover: 0 12px 32px rgba(0, 0, 0, 0.1);
      /* === Daklekkage Spoed page === */
      --spoed-red:       #C0202F;
      --spoed-red-dark:  #8B1521;
      --spoed-red-glow:  rgba(192, 32, 47, 0.25);
      --spoed-dark:      #0C0D0F;
      --spoed-dark2:     #141619;
      --spoed-dark3:     #1C1F24;
      --spoed-gray-bg:   #F3F4F6;
      --spoed-muted:     #6B7280;
      --spoed-border:    rgba(255, 255, 255, 0.08);
      --spoed-font-head: 'Barlow Condensed', sans-serif;
      --spoed-font-body: 'DM Sans', sans-serif;
      --spoed-radius:    14px;
      --spoed-radius-lg: 20px;
  }
  
  /* === RESET === */
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }
  
  html {
      overflow-x: hidden;
  }
  
  body {
      font-family: inherit;
      color: #1a1a1a;
      background: #ffffff;
      overflow-x: hidden;
      line-height: 1.6;
  }
 
  img, svg, video, iframe {
      max-width: 100%;
      height: auto;
  }
 
  /* === HELLO ELEMENTOR PAGE WRAPPER RESET ===
   * Hello Elementor en WordPress voegen padding/margin toe aan de page-wrapper,
   * site-main en content containers. Dit veroorzaakt de witte ruimte tussen
   * de header en de top-bar op alle pagina's.
   */
  .site-main,
  #content,
  #primary,
  .site-content,
  .page-content,
  .entry-content,
  .elementor-page,
  .elementor-section-wrap,
  main.site-main,
  div#content {
      padding-top: 0 !important;
      margin-top: 0 !important;
  }
  
  /* === ELEMENTOR HEADING GEWICHTEN ===
   * Font-family wordt al gedekt door de brede * selector hierboven.
   * Hier alleen de font-weights die Elementor soms reset.
   */
  h1, .elementor-widget-container h1, .e-con h1 { font-weight: 900; }
  h2, .elementor-widget-container h2, .e-con h2 { font-weight: 900; }
  h3, .elementor-widget-container h3, .e-con h3 { font-weight: 800; }
 
  .elementor-widget-container .btn,
  .elementor-element .btn,
  .e-con .btn,
  .elementor-section .btn {
      font-weight: 800;
      border-radius: var(--radius-md);
      transition: all 0.3s;
  }
  
  /* === TOP BAR === */
  
  
  
  
  
  
  
  
  /* Emergency Bar (variant) */
  .emergency-bar {
      background: var(--color-primary) !important;
      color: white !important;
      padding: 14px 0;
      font-size: 14px;
      font-weight: 700;
      text-align: center;
      font-family: inherit;
  }
  
  .emergency-bar a {
      color: white !important;
      text-decoration: none;
      margin-left: 8px;
      font-weight: 900;
      font-size: 16px;
  }
  
  /* === HERO SECTIONS === */
  .hero {
      background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
      padding: var(--space-2xl) var(--space-md) 100px;
      position: relative;
      z-index: 10;
      overflow: visible !important;
  }
  
  .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="g" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23g)"/></svg>');
      opacity: 0.5;
  }
  
  .hero-container {
      max-width: 1400px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
      padding: 0 var(--space-md);
      width: 100%;
      box-sizing: border-box;
  }
  
  .hero-content {
      text-align: center;
      max-width: 800px;
      margin: 0 auto;
      width: 100%;
      box-sizing: border-box;
  }
  
  .hero-label {
      display: inline-block;
      background: rgba(176, 30, 45, 0.12);
      color: var(--color-primary);
      padding: var(--space-xs) var(--space-md);
      border-radius: 50px;
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      margin-bottom: var(--space-md);
      border: 1px solid rgba(176, 30, 45, 0.25);
  }
  
  .hero h1, 
  .elementor-widget-container .hero h1, 
  .elementor-element .hero h1, 
  h1.hero {
      font-size: 42px !important;
      font-weight: 900 !important;
      line-height: 1.15 !important;
      margin-bottom: var(--space-md) !important;
      color: #fff !important;
      font-family: inherit;
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
      letter-spacing: -0.02em;
  }
  
  .hero p, 
  .elementor-widget-container .hero p, 
  .elementor-element .hero p {
      font-size: 17px !important;
      line-height: 1.7 !important;
      color: #b8b8b8 !important;
      margin-bottom: var(--space-md) !important;
      font-family: inherit;
  }
  
  /* Hero Above The Fold */
  
  
  
  
  
  
  
  
  
  
  /* Badges */
  .free-badge,
  .specialist-badge,
  .quality-badge,
  .emergency-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 20px;
      border-radius: 50px;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 20px;
  }
  
  .free-badge {
      background: rgba(16, 185, 129, 0.15);
      color: var(--color-success);
      border: 1px solid rgba(16, 185, 129, 0.3);
  }
  
  .specialist-badge {
      background: rgba(176, 30, 45, 0.15);
      color: #ef4444;
      border: 1px solid rgba(176, 30, 45, 0.3);
  }
  
  .quality-badge {
      background: rgba(16, 185, 129, 0.15);
      color: #10b981;
      border: 1px solid rgba(16, 185, 129, 0.3);
  }
  
  .emergency-badge {
      background: rgba(176, 30, 45, 0.15) !important;
      color: var(--color-primary) !important;
      border: 1px solid rgba(176, 30, 45, 0.3);
  }
  
  /* === ACTION SPLIT === */
  
  
  /* === PHONE CTA === */
  
  
  .phone-cta:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(176, 30, 45, 0.4);
  }
  
  
  
  
  
  
  
  /* Phone CTA White variant */
  .phone-cta.white {
      background: white;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  }
  
  .phone-cta.white 
  
  .phone-cta.white a {
      color: var(--color-primary);
  }
  
  .phone-cta.white 
  
  /* === FORMS === */
  .form-group {
      margin-bottom: 16px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
      width: 100%;
      padding: 14px 16px;
      border: 2px solid #e5e7eb;
      border-radius: 10px;
      font-size: 15px;
      font-family: inherit;
      transition: all 0.3s;
      background: white;
      color: var(--color-dark);
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
      outline: none;
      border-color: var(--color-primary);
      box-shadow: 0 0 0 3px rgba(176, 30, 45, 0.1);
  }
  
  .form-group textarea {
      resize: vertical;
      min-height: 80px;
  }
  
  .hidden-field {
      display: none !important;
      visibility: hidden !important;
      position: absolute !important;
      left: -9999px !important;
  }
  
  /* Form variants */
  .inspection-form {
      background: linear-gradient(135deg, var(--color-success) 0%, #059669 100%);
      padding: 32px 28px;
      border-radius: 16px;
      box-shadow: 0 8px 32px rgba(16, 185, 129, 0.3);
  }
  
  .inspection-form h3 {
      font-size: 20px;
      font-weight: 800;
      color: white;
      margin-bottom: 8px;
      text-align: center;
  }
  
  .inspection-form .form-subtitle {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.9);
      text-align: center;
      margin-bottom: 24px;
      font-weight: 600;
  }
  
  .inspection-form .form-group input,
  .inspection-form .form-group select {
      border: 2px solid rgba(255, 255, 255, 0.3);
  }
  
  .inspection-form .form-group input:focus,
  .inspection-form .form-group select:focus {
      border-color: white;
      box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
  }
  
  .bitumen-form,
  
  
  .bitumen-form h3,
  
  
  /* Form Submit Button */
  .form-submit,
  .elementor-widget-container .form-submit,
  .elementor-element .form-submit,
  .e-con .form-submit,
  .e-con-inner .form-submit,
  .elementor-section .form-submit,
  button.form-submit,
  input[type="submit"].form-submit,
  .inspection-form button[type="submit"],
  .bitumen-form button[type="submit"],
  
  
  .inspection-form .form-submit,
  .inspection-form button[type="submit"] {
      background: white !important;
      color: var(--color-success) !important;
  }
  
  .bitumen-form .form-submit,
  
  
  .form-submit:hover,
  .elementor-widget-container .form-submit:hover,
  .elementor-element .form-submit:hover,
  .inspection-form button[type="submit"]:hover,
  .bitumen-form button[type="submit"]:hover,
  
  
  .inspection-form .form-submit:hover,
  .inspection-form button[type="submit"]:hover {
      box-shadow: 0 6px 24px rgba(255, 255, 255, 0.3) !important;
      background: white !important;
      color: var(--color-success) !important;
  }
  
  .bitumen-form .form-submit:hover,
  
  
  /* === QUICK FORM EXTRAS === */
  
  
  
  
  
  
  
  
  /* === DIENSTEN CATEGORIES === */
  .diensten-categories {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-md);
  }
  .dienst-category {
      background: #fff;
      border-radius: var(--radius-lg);
      padding: var(--space-lg);
      box-shadow: var(--shadow-card);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      border: 1px solid rgba(0, 0, 0, 0.06);
  }
  .dienst-category:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-card-hover);
  }
  .dienst-category--highlight {
      border-left: 4px solid var(--color-primary);
      background: linear-gradient(135deg, rgba(176,30,45,0.03) 0%, #fff 100%);
  }
  .dienst-category-header {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 12px;
  }
  .dienst-category-header h3 { font-size: 22px; font-weight: 800; color: var(--color-dark); margin: 0; }
  .dienst-category-header h3 a { color: inherit; text-decoration: none; }
  .dienst-category-header h3 a:hover { color: var(--color-primary); }
  .dienst-category > p {
      font-size: 15px; line-height: 1.6; color: #6c757d; margin-bottom: 16px;
  }
  .dienst-sublinks {
      list-style: none; padding: 0; margin: 0 0 16px 0;
      display: flex; flex-wrap: wrap; gap: 8px;
  }
  .dienst-sublinks li a {
      display: inline-block; padding: 6px 14px; border-radius: 50px;
      font-size: 13px; font-weight: 600; color: var(--color-dark);
      background: var(--color-light); text-decoration: none;
      transition: background 0.2s, color 0.2s;
  }
  .dienst-sublinks li a:hover {
      background: var(--color-primary); color: #fff;
  }
  @media (max-width: 768px) {
      .diensten-categories { grid-template-columns: 1fr; }
      .dienst-category { padding: var(--space-md); }
  }
  
  /* === HERO REVIEW BADGES === */
  .hero-reviews {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
      margin-bottom: 24px;
  }
  .hero-review-badge {
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(200, 162, 77, 0.35);
      border-radius: 12px;
      padding: 12px 20px;
  }
  .hero-review-score {
      font-size: 20px;
      font-weight: 900;
      color: #fff;
  }
  .hero-review-stars {
      color: var(--color-accent);
      font-size: 16px;
      letter-spacing: 1px;
  }
  .hero-review-label {
      font-size: 13px;
      font-weight: 600;
      color: #b8b8b8;
  }
  @media (max-width: 480px) {
      .hero-reviews { gap: 12px; }
      .hero-review-badge { padding: 10px 14px; gap: 6px; }
      .hero-review-score { font-size: 16px; }
      .hero-review-label { font-size: 11px; }
  }
  
  /* === HERO ATF SUBTITLE === */
  
  @media (max-width: 768px) {
      
  }
  
  /* === HERO VIDEO SECTION === */
  .hero-video-section {
      position: relative;
      width: 100%;
      max-height: 500px;
      overflow: hidden;
      background: #0a0a0a;
  }
  .hero-video-section video {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      max-height: 500px;
  }
  @media (max-width: 768px) {
      .hero-video-section { max-height: 300px; }
      .hero-video-section video { max-height: 300px; }
  }
  
  /* === TRUST BAR LIGHT VARIANT (for light backgrounds) === */
  .trust-bar--light {
      background: #fff !important;
      border: 1px solid rgba(0, 0, 0, 0.08) !important;
      grid-template-columns: repeat(5, 1fr);
  }
  .trust-bar--light .trust-text {
      color: var(--color-dark) !important;
  }
  @media (max-width: 768px) {
      .trust-bar--light { grid-template-columns: repeat(2, 1fr); }
  }
  
  /* === CARD LINK === */
  .card-link {
      display: inline-block;
      margin-top: 12px;
      font-size: 14px;
      font-weight: 700;
      color: var(--color-primary) !important;
      text-decoration: none;
      transition: color 0.2s;
  }
  .card-link:hover {
      text-decoration: underline;
  }
  
  /* === HERO CERTIFICATES – opvallend en duidelijk === */
  
  
  
  
  
  
  
  
  
  
  /* === TRUST BAR === */
  
  
  
  
  .trust-icon {
      font-size: 28px;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  
  .trust-icon svg {
      width: 24px !important;
      height: 24px !important;
      display: block !important;
  }
  
  /* VCA icon specifiek groen maken */
  
  
  .trust-text {
      font-size: 13px;
      color: #e5e7eb !important;
      font-weight: 600;
      line-height: 1.3;
      font-family: inherit;
  }
  
  /* === SECTION HEADERS === */
  .section-header {
      text-align: center;
      margin-bottom: 48px;
  }
  
  .section-label {
      display: inline-block;
      background: rgba(176, 30, 45, 0.1) !important;
      color: var(--color-primary) !important;
      padding: 8px 20px;
      border-radius: 50px;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 16px;
      font-family: inherit;
  }
  
  .section-label.success {
      background: rgba(16, 185, 129, 0.1);
      color: var(--color-success);
  }
  
  .section-title,
  .elementor-widget-container .section-title,
  .elementor-element .section-title,
  .e-con .section-title,
  .elementor-section .section-title,
  h2.section-title {
      font-size: clamp(32px, 3.4vw, 50px) !important;
      font-weight: 900 !important;
      color: var(--color-dark) !important;
      margin-bottom: 16px !important;
      line-height: 1.18 !important;
      letter-spacing: -0.02em !important;
      font-family: inherit;
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
  }
  
  /* Elementor override voor section-title - voorkom zwart op zwart */
  .elementor-widget-container .content-section .section-title,
  .elementor-element .content-section .section-title,
  .e-con .content-section .section-title,
  .elementor-section .content-section .section-title,
  .elementor-widget-container h2.section-title,
  .elementor-element h2.section-title,
  .e-con h2.section-title,
  .elementor-section h2.section-title,
  .elementor-widget-container .section-header .section-title,
  .elementor-element .section-header .section-title,
  .e-con .section-header .section-title,
  .elementor-section .section-header .section-title {
      color: var(--color-dark) !important;
  }
  
  /* Zorg dat content-section altijd witte achtergrond heeft (tenzij .gray class) */
  .elementor-widget-container .content-section:not(.gray),
  .elementor-element .content-section:not(.gray),
  .e-con .content-section:not(.gray),
  .elementor-section .content-section:not(.gray) {
      background: #ffffff !important;
  }
  
  .section-subtitle,
  .elementor-widget-container .section-subtitle,
  .elementor-element .section-subtitle,
  p.section-subtitle {
      font-size: 18px !important;
      line-height: 1.6 !important;
      color: #6c757d !important;
      max-width: 700px !important;
      margin: 0 auto !important;
      font-family: inherit;
  }
  
  /* === CONTENT SECTIONS === */
  .content-section {
      padding: 80px 24px;
      max-width: 1200px;
      margin: 0 auto;
  }
  
  /* Gekleurde secties moeten altijd full-width zijn */
  .content-section.gray,
  .content-section.dark,
  .content-section.colored {
      max-width: 100% !important;
      width: 100%;
      padding-left: max(24px, calc((100% - 1200px) / 2 + 24px));
      padding-right: max(24px, calc((100% - 1200px) / 2 + 24px));
      margin-left: 0;
      margin-right: 0;
      box-sizing: border-box;
  }
  
  .content-section.gray {
      background: var(--color-light) !important;
  }
  
  .content-section.dark {
      background: var(--color-dark) !important;
  }
  
  /* === INFO BLOCKS === */
  .info-block {
      background: white;
      padding: 40px;
      border-radius: 16px;
      border-left: 4px solid var(--color-primary);
      margin-bottom: 40px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  }
  
  .info-block h3 {
      font-size: 24px;
      font-weight: 800;
      color: var(--color-dark) !important;
      margin-bottom: 16px;
      font-family: inherit;
  }
  
  .info-block p {
      font-size: 16px;
      line-height: 1.8;
      color: #4b5563 !important;
      margin-bottom: 12px;
      font-family: inherit;
  }
  
  .info-block ul {
      list-style: none;
      padding-left: 0;
      margin-top: 24px;
  }
  
  .info-block li {
      padding: 12px 0;
      padding-left: 32px;
      position: relative;
      font-size: 16px;
      color: #4b5563 !important;
      font-family: inherit;
  }
  
  .info-block li::before {
      content: '✓';
      position: absolute;
      left: 0;
      font-size: 20px;
      color: var(--color-primary);
      font-weight: 900;
  }
  
  .info-block li.success::before {
      color: var(--color-success);
  }
  
  /* Problem Block */
  
  
  
  
  
  
  
  
  
  
  
  
  /* === CONTACT PAGE === */
  .contact-section {
      background: #fff;
      padding: var(--space-2xl) var(--space-md);
      overflow-x: hidden;
  }
  .contact-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: var(--space-xl);
      align-items: start;
  }
  .contact-container > * { min-width: 0; }
  .contact-info h2 { font-size: 42px !important; font-weight: 900 !important; margin-bottom: 24px !important; color: var(--color-dark) !important; }
  .contact-info p { font-size: 18px !important; line-height: 1.7 !important; color: #6c757d !important; margin-bottom: 24px !important; }
  .contact-details { display: flex; flex-direction: column; gap: 24px; }
  .contact-detail { display: flex; align-items: center; gap: 16px; }
  .contact-icon {
      width: 48px; height: 48px; background: var(--color-primary); border-radius: 12px;
      display: flex; align-items: center; justify-content: center; color: #fff !important; font-size: 20px; flex-shrink: 0;
  }
  .contact-icon svg { width: 24px; height: 24px; fill: currentColor; }
  .contact-text strong { display: block; font-size: 16px; font-weight: 700; margin-bottom: 4px; color: var(--color-dark); }
  .contact-text span { font-size: 15px; color: #6c757d; }
  .contact-text a { color: var(--color-primary) !important; text-decoration: none; }
  .contact-text a:hover { text-decoration: underline; }
  @media (max-width: 768px) {
      .contact-section { padding: var(--space-xl) var(--space-sm) !important; }
      .contact-container { grid-template-columns: 1fr; }
  }
  
  /* === OVER ONS / STATS & TEAM === */
  .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: var(--space-md);
      margin-bottom: var(--space-xl);
  }
  .stat-card {
      text-align: center;
      padding: var(--space-lg);
      background: #fff;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-card);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
  .stat-card .stat-value { font-size: 2.5rem; font-weight: 900; color: var(--color-primary); line-height: 1.2; }
  .stat-card .stat-label { font-size: 14px; color: #6c757d; font-weight: 600; margin-top: 8px; }
  .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: var(--space-lg);
  }
  .team-card { text-align: center; }
  .team-card img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius-md); margin-bottom: 16px; }
  .team-card h3 { font-size: 20px; font-weight: 800; color: var(--color-dark); margin-bottom: 4px; }
  .team-card p { font-size: 14px; color: #6c757d; }
  .promise-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
  @media (max-width: 968px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } .promise-grid { grid-template-columns: 1fr; } }
  @media (max-width: 480px) { .stats-grid { grid-template-columns: 1fr; } }
  
  .text-center { text-align: center !important; }
  .margin-top-lg { margin-top: var(--space-lg) !important; }
  .list-unstyled { list-style: none !important; padding: 0 !important; }
  .block-center { margin-left: auto !important; margin-right: auto !important; }
  .block-max-640 { max-width: 640px !important; }
  .block-max-560 { max-width: 560px !important; }
  
  /* === GRIDS === */
  .benefits-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
  }
  
  .benefit-card {
      background: white;
      padding: 32px;
      border-radius: 16px;
      text-align: center;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
      transition: all 0.3s;
      display: flex;
      flex-direction: column;
      align-items: center;
  }
  
  .benefit-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }
  
  .benefit-icon {
      width: 64px;
      height: 64px;
      background: linear-gradient(135deg, var(--color-success) 0%, #059669 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 32px;
      margin: 0 auto 20px;
      flex-shrink: 0;
  }
  
  .benefit-card h3 {
      font-size: 20px;
      font-weight: 800;
      color: var(--color-dark) !important;
      margin-bottom: 12px;
      font-family: inherit;
  }
  
  .benefit-card p {
      font-size: 15px;
      color: #6c757d !important;
      line-height: 1.6;
      font-family: inherit;
  }
  
  .benefit-content {
      text-align: left;
  }
  
  .benefit-content h3 {
      font-size: 20px;
      font-weight: 800;
      color: var(--color-dark);
      margin-bottom: 12px;
      line-height: 1.3;
  }
  
  .benefit-content p {
      font-size: 15px;
      color: #6c757d;
      line-height: 1.7;
      margin: 0;
  }
  
  /* Benefit cards with content wrapper (pannendak page) */
  .benefit-card .benefit-content {
      flex: 1;
      text-align: left;
      width: 100%;
  }
  
  /* When benefit-card contains benefit-content, use horizontal layout */
  .benefit-card .benefit-content {
      margin-top: 0;
  }
  
  /* Horizontal layout for benefit cards with both icon and content */
  .benefit-card .benefit-icon + .benefit-content {
      flex-direction: row;
  }
  
  /* Specific styling: when both icon and content exist, layout horizontally */
  .benefit-card {
      position: relative;
  }
  
  /* Override for cards with content structure - use flexbox row */
  .benefit-card:has(.benefit-content) {
      flex-direction: row;
      align-items: flex-start;
      text-align: left;
      gap: 24px;
  }
  
  .benefit-card:has(.benefit-content) .benefit-icon {
      margin: 0;
      width: 64px;
      height: 64px;
      font-size: 32px;
  }
  
  /* Services Grid */
  .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
  }
  
  .service-card {
      background: white;
      padding: 28px;
      border-radius: 16px;
      display: flex;
      gap: 20px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
      transition: all 0.3s;
  }
  
  .service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }
  
  .service-icon {
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, var(--color-light) 0%, #e9ecef 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      flex-shrink: 0;
  }
  
  .service-content h3 {
      font-size: 18px;
      font-weight: 800;
      color: var(--color-dark) !important;
      margin-bottom: 8px;
      font-family: inherit;
  }
  
  .service-content p {
      font-size: 14px;
      color: #6c757d !important;
      line-height: 1.6;
      font-family: inherit;
  }
  
  /* Service Card Lists (for pannendak page) */
  .service-card ul {
      list-style: none;
      padding: 0;
      margin: 20px 0 0 0;
  }
  
  .service-card li {
      padding: 10px 0;
      padding-left: 28px;
      position: relative;
      font-size: 15px;
      color: #4b5563;
      line-height: 1.6;
  }
  
  .service-card li::before {
      content: '✓';
      position: absolute;
      left: 0;
      font-size: 18px;
      color: var(--color-primary);
      font-weight: 900;
      width: 20px;
      height: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  
  .service-card h3 {
      font-size: 22px;
      font-weight: 800;
      color: var(--color-dark);
      margin-bottom: 12px;
      margin-top: 0;
  }
  
  .service-card > p {
      font-size: 15px;
      color: #6c757d;
      line-height: 1.7;
      margin-bottom: 16px;
  }
  
  /* Types Grid */
  .types-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
  }
  
  .type-card {
      background: white;
      padding: 28px;
      border-radius: 16px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
      transition: all 0.3s;
  }
  
  .type-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }
  
  .type-icon {
      font-size: 40px;
      margin-bottom: 16px;
  }
  
  .type-card h3 {
      font-size: 20px;
      font-weight: 800;
      color: var(--color-dark) !important;
      margin-bottom: 12px;
      font-family: inherit;
  }
  
  .type-card p {
      font-size: 15px;
      color: #6c757d !important;
      line-height: 1.6;
      margin-bottom: 16px;
      font-family: inherit;
  }
  
  .type-price {
      font-size: 14px;
      font-weight: 700;
      color: var(--color-primary);
      background: rgba(176, 30, 45, 0.1);
      padding: 8px 16px;
      border-radius: 8px;
      display: inline-block;
  }
  
  /* Problems Grid */
  .problems-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
  }
  
  .problem-card {
      background: white;
      padding: 28px;
      border-radius: 16px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
      transition: all 0.3s;
  }
  
  .problem-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }
  
  .problem-icon {
      font-size: 40px;
      margin-bottom: 16px;
  }
  
  .problem-card h3 {
      font-size: 20px;
      font-weight: 800;
      color: var(--color-dark) !important;
      margin-bottom: 12px;
      font-family: inherit;
  }
  
  .problem-card p {
      font-size: 15px;
      color: #6c757d !important;
      line-height: 1.6;
      font-family: inherit;
  }
  
  /* Tiles Grid */
  .tiles-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
  }
  
  .tile-card {
      background: white;
      padding: 24px;
      border-radius: 16px;
      text-align: center;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
      transition: all 0.3s;
  }
  
  .tile-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }
  
  .tile-emoji {
      font-size: 48px;
      margin-bottom: 16px;
  }
  
  .tile-card h4 {
      font-size: 18px;
      font-weight: 800;
      color: var(--color-dark) !important;
      margin-bottom: 8px;
      font-family: inherit;
  }
  
  .tile-card p {
      font-size: 14px;
      color: #6c757d !important;
      line-height: 1.5;
      font-family: inherit;
  }
  
  /* === PROCESS STEPS === */
  .process-section {
      padding: 80px 24px;
      max-width: 1200px;
      margin: 0 auto;
  }
  
  
  
  
  
  
  
  .process-number {
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, var(--color-primary) 0%, #8B1521 100%);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      font-weight: 900;
      margin: 0 auto 20px;
      border: 4px solid white;
      box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
  }
  
  
  
  
  
  /* === INSPECTION INCLUDES === */
  .inspection-includes {
      background: var(--color-light);
      padding: 80px 24px;
  }
  
  .inspection-container {
      max-width: 1200px;
      margin: 0 auto;
  }
  
  .includes-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
  }
  
  .include-item {
      background: white;
      padding: 20px 24px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      gap: 16px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  }
  
  .include-icon {
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, var(--color-success) 0%, #059669 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      flex-shrink: 0;
  }
  
  .include-text {
      font-size: 15px;
      font-weight: 700;
      color: var(--color-dark);
  }
  
  /* === WHAT YOU GET === */
  .what-you-get {
      background: var(--color-light);
      padding: 80px 24px;
  }
  
  .what-you-get-container {
      max-width: 1200px;
      margin: 0 auto;
  }
  
  /* === WHY FREE === */
  .why-free {
      padding: 80px 24px;
      max-width: 1200px;
      margin: 0 auto;
  }
  
  .why-free-content {
      background: white;
      padding: 48px;
      border-radius: 20px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
      border-left: 6px solid var(--color-success);
  }
  
  .why-free-content h3 {
      font-size: 28px;
      font-weight: 800;
      color: var(--color-dark);
      margin-bottom: 20px;
  }
  
  .why-free-content p {
      font-size: 16px;
      line-height: 1.8;
      color: #4b5563;
      margin-bottom: 16px;
  }
  
  .why-free-content ul {
      list-style: none;
      padding-left: 0;
      margin-top: 24px;
  }
  
  .why-free-content li {
      padding: 12px 0;
      padding-left: 32px;
      position: relative;
      font-size: 16px;
      color: #4b5563;
  }
  
  .why-free-content li::before {
      content: '✓';
      position: absolute;
      left: 0;
      font-size: 20px;
      color: var(--color-success);
      font-weight: 900;
  }
  
  /* === WHEN INSPECT === */
  .when-inspect {
      background: var(--color-light);
      padding: 80px 24px;
  }
  
  .when-container {
      max-width: 1200px;
      margin: 0 auto;
  }
  
  .when-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
  }
  
  .when-card {
      background: white;
      padding: 28px;
      border-radius: 16px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  }
  
  .when-card h3 {
      font-size: 20px;
      font-weight: 800;
      color: var(--color-dark);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 12px;
  }
  
  .when-card ul {
      list-style: none;
      padding-left: 0;
  }
  
  .when-card li {
      padding: 10px 0;
      padding-left: 28px;
      position: relative;
      font-size: 15px;
      color: #4b5563;
      line-height: 1.5;
  }
  
  .when-card li::before {
      content: '•';
      position: absolute;
      left: 0;
      font-size: 20px;
      color: var(--color-success);
      font-weight: 900;
  }
  
  /* === FAQ === */
  .faq-section {
      background: white;
      padding: 100px 24px;
      max-width: 100%;
      box-sizing: border-box;
      overflow-x: clip;
  }
  
  .faq-container {
      max-width: 900px;
      width: 100%;
      min-width: 0;
      margin: 0 auto;
      box-sizing: border-box;
  }
  
  .faq-intro {
      background: var(--color-light);
      border-radius: 20px;
      padding: 40px;
      margin-bottom: 60px;
      color: var(--color-dark);
      font-size: 16px;
      line-height: 1.7;
  }
  
  .faq-intro p {
      color: var(--color-dark) !important;
      font-family: inherit;
  }
  
  .faq-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
  }
  
  .faq-item {
      background: white;
      border: 2px solid #e5e7eb;
      border-radius: 16px;
      overflow: hidden;
      transition: all 0.3s ease;
      max-width: 100%;
      min-width: 0;
      box-sizing: border-box;
  }
  
  .elementor-widget-container .faq-item,
  .elementor-element .faq-item {
      max-width: 100%;
      min-width: 0;
  }
  
  .faq-item.active {
      border-color: var(--color-primary);
      box-shadow: 0 8px 24px rgba(176, 30, 45, 0.1);
  }
  
  .faq-question {
      padding: 24px 28px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 12px;
      background: white;
      transition: all 0.3s ease;
      min-width: 0;
      max-width: 100%;
      box-sizing: border-box;
  }
  
  .faq-question:hover {
      background: var(--color-light);
  }
  
  .faq-item.active .faq-question {
      background: var(--color-light);
  }
  
  .faq-question h3,
  .elementor-widget-container .faq-question h3,
  .elementor-element .faq-question h3 {
      font-size: 20px !important;
      font-weight: 700 !important;
      color: var(--color-dark) !important;
      font-family: inherit;
      flex: 1 1 0%;
      min-width: 0;
      max-width: 100%;
      margin: 0 !important;
      white-space: normal !important;
      overflow-wrap: break-word;
      word-wrap: break-word;
      word-break: break-word;
  }
  
  .faq-icon {
      width: 32px;
      height: 32px;
      background: var(--color-primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 18px;
      font-weight: 700;
      transition: transform 0.3s ease;
      flex-shrink: 0;
      margin-left: 0;
      margin-top: 2px;
  }
  
  .faq-item.active .faq-icon {
      transform: rotate(45deg);
      background: var(--color-primary);
  }
  
  .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.4s ease;
      padding: 0 28px;
      min-width: 0;
      max-width: 100%;
      box-sizing: border-box;
      overflow-wrap: break-word;
      word-break: break-word;
  }
  
  .faq-item.active .faq-answer {
      max-height: 1000px;
      padding: 0 28px 24px 28px;
  }
  
  .faq-answer p,
  .elementor-widget-container .faq-answer p,
  .elementor-element .faq-answer p {
      color: #6c757d !important;
      font-size: 16px !important;
      line-height: 1.7 !important;
      font-family: inherit;
      margin-bottom: 16px !important;
      max-width: 100%;
      overflow-wrap: break-word;
      word-break: break-word;
  }
  
  .faq-answer p:last-child {
      margin-bottom: 0 !important;
  }
  
  .faq-answer ul {
      margin: 16px 0;
      padding-left: 24px;
      color: #6c757d;
  }
  
  .faq-answer li {
      margin-bottom: 8px;
      line-height: 1.6;
  }
  
  /* === FINAL CTA === */
  .final-cta {
      background: linear-gradient(135deg, var(--color-primary) 0%, #8B1521 100%) !important;
      padding: 80px 24px;
      text-align: center;
      color: white !important;
      font-family: inherit;
  }
  
  .final-cta.success {
      background: linear-gradient(135deg, var(--color-success) 0%, #059669 100%);
  }
  
  .final-cta h2 {
      font-size: 42px;
      font-weight: 900;
      margin-bottom: 20px;
      color: white !important;
      font-family: inherit;
  }
  
  .final-cta p {
      font-size: 20px;
      margin-bottom: 40px;
      opacity: 0.95;
      color: white !important;
      font-family: inherit;
  }
  
  .cta-buttons {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
  }
  
  /* === BUTTONS === */
  .btn,
  .elementor-widget-container .btn,
  .elementor-element .btn,
  .e-con .btn,
  .e-con-inner .btn,
  .elementor-section .btn,
  button.btn,
  a.btn,
  .elementor-widget-container a.btn,
  .elementor-element a.btn {
      padding: 18px 40px !important;
      border-radius: 12px !important;
      font-size: 16px !important;
      font-weight: 800 !important;
      text-decoration: none !important;
      display: inline-flex !important;
      align-items: center !important;
      gap: 10px !important;
      transition: all 0.3s !important;
      cursor: pointer !important;
      border: none !important;
      font-family: inherit;
      line-height: normal !important;
      box-sizing: border-box !important;
  }
  
  .btn-primary {
      background: var(--color-primary) !important;
      color: white !important;
  }
  
  .btn-secondary {
      background: var(--color-secondary) !important;
      color: white !important;
  }
  
  .btn-white,
  .elementor-widget-container .btn-white,
  .elementor-element .btn-white,
  button.btn-white,
  a.btn-white,
  .elementor-widget-container a.btn-white,
  .elementor-element a.btn-white {
      background: white !important;
      color: var(--color-primary) !important;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
  }
  
  .btn-white:hover,
  .elementor-widget-container .btn-white:hover,
  .elementor-element .btn-white:hover,
  a.btn-white:hover {
      transform: translateY(-3px) !important;
      box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3) !important;
      background: white !important;
      color: var(--color-primary) !important;
      text-decoration: none !important;
  }
  
  .btn-white.success {
      color: var(--color-success) !important;
  }
  
  .btn-white.success:hover {
      color: var(--color-success) !important;
  }
  
  .btn-outline,
  .elementor-widget-container .btn-outline,
  .elementor-element .btn-outline,
  button.btn-outline,
  a.btn-outline,
  .elementor-widget-container a.btn-outline,
  .elementor-element a.btn-outline {
      background: rgba(255, 255, 255, 0.15) !important;
      color: white !important;
      border: 2px solid rgba(255, 255, 255, 0.3) !important;
  }
  
  .btn-outline:hover,
  .elementor-widget-container .btn-outline:hover,
  .elementor-element .btn-outline:hover,
  a.btn-outline:hover {
      background: rgba(255, 255, 255, 0.25) !important;
      transform: translateY(-3px) !important;
      color: white !important;
      text-decoration: none !important;
  }
  
  /* === STICKY BUTTONS === */
  .sticky-cta,
  .sticky-phone {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 9999;
      display: none;
      width: calc(100% - 32px);
      max-width: 400px;
  }
  
  .sticky-cta a,
  .sticky-phone a,
  .elementor-widget-container .sticky-phone a,
  .elementor-element .sticky-phone a {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      color: white;
      padding: 18px 24px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 800;
      font-size: 16px;
      box-shadow: 0 8px 32px rgba(176, 30, 45, 0.4);
      animation: pulse 2s infinite;
      font-family: inherit;
      border: none;
      line-height: normal;
  }
  
  .sticky-cta a {
      background: linear-gradient(135deg, var(--color-success) 0%, #059669 100%);
      box-shadow: 0 8px 32px rgba(16, 185, 129, 0.4);
  }
  
  .sticky-phone a {
      background: linear-gradient(135deg, var(--color-primary) 0%, #8B1521 100%);
      box-shadow: 0 8px 32px rgba(176, 30, 45, 0.4);
  }
  
  @keyframes pulse {
      0%, 100% { 
          box-shadow: 0 8px 32px rgba(176, 30, 45, 0.4);
      }
      50% { 
          box-shadow: 0 8px 40px rgba(176, 30, 45, 0.6);
      }
  }
  
  .sticky-cta a {
      animation: pulseSuccess 2s infinite;
  }
  
  @keyframes pulseSuccess {
      0%, 100% { 
          box-shadow: 0 8px 32px rgba(16, 185, 129, 0.4);
      }
      50% { 
          box-shadow: 0 8px 40px rgba(16, 185, 129, 0.6);
      }
  }
  
  /* === COMPARISON TABLE === */
  .comparison-table {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  }
  
  .comparison-table table {
      width: 100%;
      border-collapse: collapse;
  }
  
  .comparison-table th {
      background: var(--color-dark);
      color: white;
      padding: 20px;
      text-align: left;
      font-weight: 800;
      font-size: 16px;
  }
  
  .comparison-table td {
      padding: 18px 20px;
      border-bottom: 1px solid #e5e7eb;
      font-size: 15px;
      color: #4b5563;
  }
  
  .comparison-table tr:last-child td {
      border-bottom: none;
  }
  
  .comparison-table .highlight-col {
      background: rgba(176, 30, 45, 0.05);
      font-weight: 700;
      color: var(--color-dark);
  }
  
  /* === PRICE GRID === */
  .price-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
  }
  
  .price-card {
      background: white;
      padding: 36px;
      border-radius: 16px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
      text-align: center;
      position: relative;
  }
  
  .price-card.featured {
      border: 3px solid var(--color-primary);
      transform: scale(1.05);
  }
  
  .price-badge {
      background: var(--color-primary);
      color: white;
      padding: 6px 16px;
      border-radius: 50px;
      font-size: 12px;
      font-weight: 800;
      display: inline-block;
      margin-bottom: 16px;
      text-transform: uppercase;
  }
  
  .price-card h3 {
      font-size: 24px;
      font-weight: 800;
      color: var(--color-dark);
      margin-bottom: 12px;
  }
  
  .price-amount {
      font-size: 42px;
      font-weight: 900;
      color: var(--color-primary);
      margin-bottom: 8px;
  }
  
  .price-unit {
      font-size: 16px;
      color: #6c757d;
      margin-bottom: 24px;
  }
  
  .price-features {
      list-style: none;
      padding: 0;
      margin-bottom: 28px;
      text-align: left;
  }
  
  .price-features li {
      padding: 10px 0;
      padding-left: 28px;
      position: relative;
      font-size: 15px;
      color: #4b5563;
  }
  
  .price-features li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--color-success);
      font-weight: 900;
  }
  
  /* ============================================================
     === HERO ATF (Gratis Dakinspectie hero)
     ============================================================ */
  .hero-atf {
      background: linear-gradient(160deg, #0a0e14 0%, #111827 55%, #0f1a10 100%);
      padding: 80px 24px 60px;
      position: relative;
      z-index: 10;
      overflow: hidden;
  }

  .hero-atf::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: url('data:image/svg+xml,<svg width="80" height="80" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="g" width="80" height="80" patternUnits="userSpaceOnUse"><path d="M 80 0 L 0 0 0 80" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%25" height="100%25" fill="url(%23g)"/></svg>');
      pointer-events: none;
  }

  .hero-atf .hero-container {
      position: relative;
      z-index: 1;
  }

  .hero-atf h1 {
      font-size: 52px !important;
      font-weight: 900 !important;
      line-height: 1.1 !important;
      color: #fff !important;
      margin-bottom: 20px !important;
      letter-spacing: -0.02em;
  }

  .hero-atf h1 .highlight {
      color: var(--color-success);
  }

  .hero-subheadline {
      font-size: 17px;
      line-height: 1.7;
      color: rgba(255,255,255,0.75);
      max-width: 700px;
      margin-bottom: 40px;
  }

  .hero-subheadline strong {
      color: #fff;
  }

  /* Zelfde uiterlijk als .hero-subheadline (template gebruikt vaak alleen .subheadline) */
  .hero-atf p.subheadline,
  .hero-atf .subheadline {
      font-size: 17px;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.92) !important;
      max-width: 720px;
      margin-bottom: 32px;
  }

  /* === ACTION SPLIT === */
  .action-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      align-items: start;
      margin-bottom: 48px;
  }
  .action-split > * {
      min-width: 0;
  }

  /* === PHONE CTA === */
  .phone-cta {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: var(--radius-lg);
      padding: 36px 32px;
      backdrop-filter: blur(8px);
      transition: transform 0.3s, box-shadow 0.3s;
  }

  .phone-cta:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(176, 30, 45, 0.4);
  }

  .phone-cta-label {
      font-size: 13px;
      font-weight: 700;
      color: rgba(255,255,255,0.6);
      text-transform: uppercase;
      letter-spacing: 0.8px;
      margin-bottom: 16px;
  }

  .phone-cta a {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #fff !important;
      text-decoration: none !important;
      font-size: 28px;
      font-weight: 900;
      line-height: 1.1;
      transition: color 0.2s;
  }

  .phone-cta a:hover {
      color: var(--color-success) !important;
  }

  .phone-cta-subtitle {
      font-size: 13px;
      color: rgba(255,255,255,0.55);
      font-weight: 600;
      margin-top: 10px;
  }

  .phone-cta-checklist {
      margin-top: 24px;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,0.15);
  }

  .phone-cta-checklist-label {
      font-size: 12px;
      color: rgba(255,255,255,0.6);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 12px;
  }

  .phone-cta-checklist ul {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .phone-cta-checklist li {
      color: #fff;
      font-size: 14px;
      padding: 6px 0 6px 24px;
      position: relative;
      line-height: 1.4;
  }

  .phone-cta-checklist li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--color-success);
      font-weight: 900;
  }

  /* === QUICK FORM ALT CTA === */
  .quick-form-alt-cta {
      text-align: center;
      font-size: 13px;
      color: rgba(255,255,255,0.7) !important;
      margin-top: 16px !important;
      margin-bottom: 0 !important;
  }

  .quick-form-alt-cta a {
      color: #fff !important;
      font-weight: 800;
      text-decoration: underline !important;
  }

  /* Quick form in hero ATF — witte koppen/tekst (schuurdak e.d.) */
  .hero-atf .quick-form {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: var(--radius-lg);
      padding: 28px 24px;
      backdrop-filter: blur(8px);
      min-width: 0;
  }
  .hero-atf .quick-form h3 {
      color: #fff !important;
      font-size: 18px;
      font-weight: 800;
      margin: 0 0 8px;
      line-height: 1.3;
  }
  .hero-atf .quick-form .quick-form-subtitle {
      color: rgba(255, 255, 255, 0.9) !important;
      font-size: 14px;
      line-height: 1.5;
      margin: 0 0 16px;
  }
  .hero-atf .quick-form .frm_fields_container,
  .hero-atf .quick-form .frm_form_field {
      color: rgba(255, 255, 255, 0.92);
  }
  .hero-atf .quick-form .frm_primary_label,
  .hero-atf .quick-form label.frm_primary_label {
      color: rgba(255, 255, 255, 0.92) !important;
  }
  .hero-atf .quick-form .frm_description {
      color: rgba(255, 255, 255, 0.75) !important;
  }
  .hero-atf .quick-form input[type="text"],
  .hero-atf .quick-form input[type="email"],
  .hero-atf .quick-form input[type="tel"],
  .hero-atf .quick-form input[type="number"],
  .hero-atf .quick-form textarea,
  .hero-atf .quick-form select {
      background: #fff !important;
      color: var(--color-dark) !important;
      border: 1px solid rgba(0, 0, 0, 0.1) !important;
      border-radius: 10px;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
  }
  .hero-atf .quick-form .frm_button_submit,
  .hero-atf .quick-form input[type="submit"],
  .hero-atf .quick-form button[type="submit"] {
      border-radius: 10px;
      font-weight: 800;
  }

  /* === HERO CERTIFICATES === */
  .hero-certificates {
      display: flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
      margin-bottom: 32px;
      padding-top: 8px;
  }

  .hero-cert-item {
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 50px;
      padding: 10px 20px;
      font-size: 13px;
      font-weight: 700;
      color: #fff;
  }

  .hero-cert-item img {
      height: 22px;
      width: auto;
      object-fit: contain;
      filter: brightness(0) invert(1);
  }

  .hero-cert-item--emoji .cert-emoji {
      font-size: 18px;
  }

  /* === TRUST BAR === */
  .trust-bar {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius-md);
      overflow: hidden;
  }

  .trust-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 20px 24px;
      border-right: 1px solid rgba(255,255,255,0.08);
  }

  .trust-item:last-child {
      border-right: none;
  }

  .trust-icon {
      font-size: 28px;
      flex-shrink: 0;
  }

  .trust-text {
      font-size: 13px;
      font-weight: 700;
      color: rgba(255,255,255,0.85);
      line-height: 1.4;
  }

  /* === PROCESS GRID === */
  .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 0;
  }

  .process-step {
      background: #fff;
      padding: 32px 24px;
      border-radius: var(--radius-lg);
      text-align: center;
      box-shadow: var(--shadow-card);
      transition: transform 0.3s, box-shadow 0.3s;
      position: relative;
  }

  .process-step:not(:last-child)::after {
      content: '→';
      position: absolute;
      right: -16px;
      top: 44px;
      font-size: 22px;
      color: var(--color-primary);
      font-weight: 900;
      z-index: 2;
  }

  .process-step:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-card-hover);
  }

  .process-step h3 {
      font-size: 18px !important;
      font-weight: 800 !important;
      color: var(--color-dark) !important;
      margin: 16px 0 10px !important;
  }

  .process-step p {
      font-size: 14px;
      color: #6c757d;
      line-height: 1.6;
      margin: 0;
  }

  /* === USP GRID === */
  .usp-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
  }

  .usp-card {
      background: #fff;
      padding: 28px;
      border-radius: var(--radius-lg);
      display: flex;
      gap: 20px;
      align-items: flex-start;
      box-shadow: var(--shadow-card);
      transition: transform 0.3s, box-shadow 0.3s;
      border-left: 4px solid transparent;
  }

  .usp-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-card-hover);
      border-left-color: var(--color-primary);
  }

  .usp-icon {
      font-size: 36px;
      flex-shrink: 0;
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, rgba(176,30,45,0.08) 0%, rgba(176,30,45,0.03) 100%);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .usp-content h3 {
      font-size: 17px !important;
      font-weight: 800 !important;
      color: var(--color-dark) !important;
      margin-bottom: 8px !important;
  }

  .usp-content p {
      font-size: 14px;
      color: #6c757d;
      line-height: 1.6;
      margin: 0;
  }

  /* === REVIEWS SECTION === */
  .reviews {
      background: var(--color-light);
      padding: 80px 0;
  }

  .reviews-container {
      max-width: none;
      width: 100%;
      margin: 0 auto;
  }

  /* === PROBLEM BLOCK === */
  .problem-block {
      background: white;
      border: 2px solid #e5e7eb;
      border-left: 6px solid var(--color-primary);
      border-radius: var(--radius-md);
      padding: 28px 32px;
      margin-top: 40px;
  }

  .problem-block p {
      font-size: 16px;
      color: var(--color-dark);
      line-height: 1.7;
      margin-bottom: 20px;
  }

  .problem-block--cta {
      background: rgba(176,30,45,0.04);
      border-color: var(--color-primary);
      text-align: center;
  }

  .problem-block--cta p {
      max-width: 680px;
      margin: 0 auto 24px;
  }

  /* === USP GRID === (Legacy - overridden by USP Section below) */

  /* === CITIES GRID === */
  .cities-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 16px;
  }
  
  .city-link {
      background: white !important;
      padding: 16px 24px;
      border-radius: 12px;
      text-align: center;
      text-decoration: none;
      color: var(--color-dark) !important;
      font-weight: 700;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
      transition: all 0.3s;
      font-family: inherit;
  }
  
  .city-link:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      color: var(--color-primary);
  }
  
  /* === CAUSES GRID === */
  .causes-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
  }
  
  .cause-card {
      background: white;
      padding: 28px;
      border-radius: 16px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
      transition: all 0.3s;
      text-align: center;
  }
  
  .cause-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }
  
  .cause-icon {
      font-size: 40px;
      margin-bottom: 16px;
  }
  
  .cause-card h3 {
      font-size: 20px;
      font-weight: 800;
      color: var(--color-dark) !important;
      margin-bottom: 12px;
      font-family: inherit;
  }
  
  .cause-card p {
      font-size: 15px;
      color: #6c757d !important;
      line-height: 1.6;
      font-family: inherit;
  }

  @media (max-width: 1100px) {
      .causes-grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
          gap: 18px;
      }
  }
  @media (max-width: 640px) {
      .causes-grid {
          grid-template-columns: 1fr;
          gap: 16px;
      }
      .cause-card {
          padding: 22px 18px;
          max-width: 100%;
      }
  }
  
  /* === RESPONSIVE === */
  /* === OVER ONS PAGE STYLES === */
  
  /* Tevreden Block */
  .tevreden-block {
      background: linear-gradient(135deg, var(--color-primary) 0%, #8B1521 100%);
      padding: 60px 24px;
      text-align: center;
      position: relative;
      overflow: hidden;
  }
  
  .tevreden-block::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
      opacity: 0.5;
  }
  
  .tevreden-inner {
      max-width: 600px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
  }
  
  .tevreden-number {
      font-size: 72px;
      font-weight: 900;
      color: white;
      line-height: 1;
      margin-bottom: 8px;
      text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  
  .tevreden-label {
      font-size: 24px;
      font-weight: 800;
      color: white;
      margin-bottom: 4px;
      text-transform: uppercase;
      letter-spacing: 1px;
  }
  
  .tevreden-sublabel {
      font-size: 18px;
      color: rgba(255, 255, 255, 0.9);
      font-weight: 600;
  }
  
  /* Content Container */
  .content-container {
      max-width: 900px;
      margin: 0 auto;
  }
  
  .content-container h2 {
      font-size: 36px;
      font-weight: 900;
      color: var(--color-dark);
      margin-bottom: 24px;
      line-height: 1.2;
  }
  
  .content-container p {
      font-size: 17px;
      line-height: 1.8;
      color: #4b5563;
      margin-bottom: 20px;
  }
  
  /* Banner Quote */
  .banner-quote {
      background: linear-gradient(135deg, var(--color-secondary) 0%, #152a4a 100%);
      padding: 60px 24px;
      text-align: center;
      color: white;
      position: relative;
      overflow: hidden;
  }
  
  .banner-quote::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
      opacity: 0.5;
  }
  
  .banner-quote p {
      font-size: 32px;
      font-weight: 900;
      margin: 0;
      position: relative;
      z-index: 1;
      line-height: 1.3;
  }
  
  /* Features Section */
  .features-section {
      padding: 80px 24px;
      background: var(--color-light);
  }
  
  .features-container {
      max-width: 1200px;
      margin: 0 auto;
  }
  
  .features-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 48px;
  }
  
  .feature-card {
      background: white;
      padding: 32px 24px;
      border-radius: 16px;
      text-align: center;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
      transition: all 0.3s;
      border: 2px solid transparent;
  }
  
  .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
      border-color: var(--color-primary);
  }
  
  .feature-icon {
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, var(--color-primary) 0%, #8B1521 100%);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      font-weight: 900;
      margin: 0 auto 20px;
      box-shadow: 0 4px 12px rgba(176, 30, 45, 0.3);
  }
  
  .feature-title {
      font-size: 16px;
      font-weight: 800;
      color: var(--color-dark);
      margin-bottom: 8px;
      line-height: 1.4;
  }
  
  .feature-value {
      font-size: 32px;
      font-weight: 900;
      color: var(--color-primary);
      margin-top: 8px;
      line-height: 1;
  }
  
  /* Team Section */
  .team-section {
      padding: 80px 24px;
      background: white;
  }
  
  .team-container {
      max-width: 1200px;
      margin: 0 auto;
  }
  
  .team-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
      margin-top: 48px;
  }
  
  .team-card {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
      transition: all 0.3s;
  }
  
  .team-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }
  
  .team-card img {
      width: 100%;
      height: 280px;
      object-fit: cover;
      display: block;
  }
  
  .team-card-content {
      padding: 24px;
      text-align: center;
  }
  
  .team-name {
      font-size: 20px;
      font-weight: 800;
      color: var(--color-dark);
      margin-bottom: 8px;
  }
  
  .team-role {
      font-size: 15px;
      color: var(--color-primary);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
  }
  
  /* CTA Form Section */
  .cta-form-section {
      padding: 80px 24px;
      background: var(--color-light);
  }
  
  .cta-form-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
  }
  
  .cta-text h2 {
      font-size: 36px;
      font-weight: 900;
      color: var(--color-dark);
      margin-bottom: 20px;
      line-height: 1.2;
  }
  
  .cta-text h3 {
      font-size: 22px;
      font-weight: 800;
      color: var(--color-dark);
      margin-top: 24px;
      margin-bottom: 16px;
  }
  
  .cta-text p {
      font-size: 17px;
      line-height: 1.8;
      color: #4b5563;
      margin-bottom: 16px;
  }
  
  .cta-text strong {
      color: var(--color-dark);
      font-weight: 800;
  }
  
  .form-card {
      background: white;
      padding: 40px;
      border-radius: 16px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
      position: sticky;
      top: 24px;
  }
  
  .form-card h2 {
      font-size: 28px;
      font-weight: 900;
      color: var(--color-dark);
      margin-bottom: 8px;
      line-height: 1.2;
  }
  
  .form-card h3 {
      font-size: 20px;
      font-weight: 700;
      color: var(--color-primary);
      margin-bottom: 24px;
  }
  
  /* Form Section */
  .form-section {
      background: var(--color-light);
      padding: 100px 24px;
      overflow-x: hidden;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
  }
  
  .form-container {
      max-width: 1000px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 480px;
      gap: 60px;
      align-items: start;
      box-sizing: border-box;
      padding: 0;
  }
  
  /* Elementor override voor form sectie */
  .elementor-widget-container .form-section,
  .elementor-element .form-section,
  .e-con .form-section {
      padding-left: 24px !important;
      padding-right: 24px !important;
      margin-left: 0 !important;
      margin-right: 0 !important;
  }
  
  .elementor-widget-container .form-container,
  .elementor-element .form-container,
  .e-con .form-container {
      margin-left: auto !important;
      margin-right: auto !important;
      padding-left: 0 !important;
      padding-right: 0 !important;
  }
  
  .form-info {
      color: var(--color-dark);
  }
  
  .form-info h2,
  .elementor-widget-container .form-info h2,
  .elementor-element .form-info h2 {
      font-size: 42px !important;
      font-weight: 900 !important;
      margin-bottom: 24px !important;
      color: var(--color-dark) !important;
      font-family: inherit;
  }
  
  .form-info p,
  .elementor-widget-container .form-info p,
  .elementor-element .form-info p {
      font-size: 18px !important;
      line-height: 1.7 !important;
      color: #6c757d !important;
      margin-bottom: 32px !important;
      font-family: inherit;
  }
  
  .form-info ul {
      list-style: none;
      padding: 0;
  }
  
  .form-info li {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
      color: var(--color-dark);
      font-size: 16px;
  }
  
  .form-info li::before {
      content: '✓';
      width: 24px;
      height: 24px;
      background: var(--color-primary);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      flex-shrink: 0;
  }
  
  /* USP Section */
  .usp-section {
      padding: 80px 24px;
      background: white;
  }
  
  .usp-container {
      max-width: 1200px;
      margin: 0 auto;
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  /* Why Section */
  .why-section {
      padding: 80px 24px;
      background: var(--color-light);
  }
  
  .why-container {
      max-width: 900px;
      margin: 0 auto;
  }
  
  .why-container h2 {
      font-size: 36px;
      font-weight: 900;
      color: var(--color-dark);
      margin-bottom: 20px;
      line-height: 1.2;
  }
  
  .why-container p {
      font-size: 18px;
      line-height: 1.8;
      color: #4b5563;
      margin-bottom: 32px;
  }
  
  .why-list {
      list-style: none;
      padding: 0;
      margin: 0;
  }
  
  .why-list li {
      background: white;
      padding: 24px 32px;
      border-radius: 12px;
      margin-bottom: 16px;
      font-size: 17px;
      line-height: 1.8;
      color: #4b5563;
      border-left: 4px solid var(--color-primary);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
      transition: all 0.3s;
  }
  
  .why-list li:hover {
      transform: translateX(4px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  /* Mini Features */
  .mini-features {
      padding: 60px 24px;
      background: white;
  }
  
  .mini-features-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
  }
  
  .mini-feature {
      text-align: center;
  }
  
  .mini-feature-icon {
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, var(--color-primary) 0%, #8B1521 100%);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      font-weight: 900;
      margin: 0 auto 16px;
      box-shadow: 0 4px 12px rgba(176, 30, 45, 0.3);
  }
  
  .mini-feature-title {
      font-size: 18px;
      font-weight: 800;
      color: var(--color-dark);
      margin-bottom: 8px;
  }
  
  .mini-feature p {
      font-size: 14px;
      color: #888;
      margin-top: 4px;
      line-height: 1.6;
  }
  
  /* === BITUMEN PAGE IMPROVEMENTS === */
  
  /* Enhanced Bitumen Form */
  .bitumen-form {
      background: white;
      padding: 32px;
      border-radius: 16px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
      transition: all 0.3s;
  }
  
  .bitumen-form:hover {
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  }
  
  .bitumen-form h3 {
      font-size: 20px;
      font-weight: 800;
      color: var(--color-dark);
      margin-bottom: 24px;
      text-align: center;
  }
  
  /* Enhanced Type Cards */
  .type-card {
      background: white;
      padding: 32px;
      border-radius: 16px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
      transition: all 0.3s;
      border: 2px solid transparent;
      position: relative;
      overflow: hidden;
  }
  
  .type-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--color-primary) 0%, #8B1521 100%);
      transform: scaleX(0);
      transition: transform 0.3s;
  }
  
  .type-card:hover::before {
      transform: scaleX(1);
  }
  
  .type-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
      border-color: rgba(176, 30, 45, 0.2);
  }
  
  .type-icon {
      font-size: 48px;
      margin-bottom: 20px;
      display: block;
  }
  
  .type-price {
      font-size: 16px;
      font-weight: 800;
      color: var(--color-primary);
      background: rgba(176, 30, 45, 0.1);
      padding: 10px 20px;
      border-radius: 8px;
      display: inline-block;
      margin-top: 16px;
  }
  
  /* Enhanced Service Cards */
  .service-card {
      background: white;
      padding: 32px;
      border-radius: 16px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
      transition: all 0.3s;
      border-left: 4px solid transparent;
      position: relative;
      overflow: hidden;
  }
  
  .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: linear-gradient(180deg, var(--color-primary) 0%, #8B1521 100%);
      transform: scaleY(0);
      transition: transform 0.3s;
  }
  
  .service-card:hover::before {
      transform: scaleY(1);
  }
  
  .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
      border-left-color: var(--color-primary);
  }
  
  .service-icon {
      width: 72px;
      height: 72px;
      background: linear-gradient(135deg, var(--color-primary) 0%, #8B1521 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 36px;
      flex-shrink: 0;
      box-shadow: 0 4px 12px rgba(176, 30, 45, 0.3);
      margin-bottom: 8px;
  }
  
  /* Enhanced Benefit Cards */
  .benefit-card {
      background: white;
      padding: 36px 32px;
      border-radius: 16px;
      text-align: center;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
      transition: all 0.3s;
      border: 2px solid transparent;
      display: flex;
      flex-direction: column;
      align-items: center;
  }
  
  .benefit-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
      border-color: rgba(16, 185, 129, 0.3);
  }
  
  .benefit-icon {
      width: 72px;
      height: 72px;
      background: linear-gradient(135deg, var(--color-success) 0%, #059669 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 36px;
      margin: 0 auto 24px;
      box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
      flex-shrink: 0;
  }
  
  /* Benefit cards with content wrapper - horizontal layout */
  .benefit-card:has(.benefit-content) {
      flex-direction: row;
      align-items: flex-start;
      text-align: left;
      gap: 24px;
  }
  
  .benefit-card:has(.benefit-content) .benefit-icon {
      margin: 0;
      width: 64px;
      height: 64px;
      font-size: 32px;
  }
  
  /* Enhanced FAQ Items */
  .faq-item {
      background: white;
      padding: 32px;
      border-radius: 12px;
      margin-bottom: 20px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
      transition: all 0.3s;
      border-left: 4px solid transparent;
  }
  
  .faq-item:hover {
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
      border-left-color: var(--color-primary);
      transform: translateX(4px);
  }
  
  .faq-question {
      font-size: 20px;
      font-weight: 800;
      color: var(--color-dark);
      margin-bottom: 16px;
      line-height: 1.4;
      white-space: normal;
      overflow-wrap: break-word;
      word-break: break-word;
  }
  
  .faq-answer {
      font-size: 16px;
      color: #6c757d;
      line-height: 1.7;
      overflow-wrap: break-word;
      word-break: break-word;
      max-width: 100%;
  }
  
  @media (max-width: 968px) {
      
  
      
  
      .benefits-grid,
      
  
      
  
      
  
      .includes-grid {
          grid-template-columns: 1fr;
      }
  
      .price-card.featured {
          transform: scale(1);
      }
  
      
  
      .tevreden-number {
          font-size: 56px;
      }
  
      .banner-quote p {
          font-size: 24px;
      }
  }
  
  /* Form Section Responsive */
  @media (max-width: 1100px) {
      .form-container {
          grid-template-columns: 1fr;
          gap: 60px;
      }
  }
  
  @media (max-width: 768px) {
      /* Top Bar Mobile */
      
  
      
  
      /* Hero Mobile */
      .hero {
          padding: 40px 16px 60px !important;
      }
  
      .hero h1 {
          font-size: 28px !important;
          line-height: 1.2 !important;
      }
  
      .hero p {
          font-size: 15px !important;
      }
  
      /* Hero ATF Mobile - Gratis Dakinspectie */
      .hero-atf {
          padding: 48px 16px 40px;
      }
      .hero-atf h1 {
          font-size: 30px !important;
          line-height: 1.15 !important;
      }
      .hero-subheadline {
          font-size: 15px;
          margin-bottom: 28px;
      }
      .hero-atf p.subheadline,
      .hero-atf .subheadline {
          font-size: 15px;
          margin-bottom: 24px;
      }
      .hero-atf .quick-form {
          padding: 22px 18px;
      }
      .hero-atf .quick-form h3 {
          font-size: 16px;
      }
      .hero-certificates {
          gap: 8px;
          flex-wrap: wrap;
      }
      .hero-cert-item {
          padding: 8px 14px;
          font-size: 11px;
      }

      /* Badges Mobile */
      .free-badge,
      .specialist-badge,
      .quality-badge,
      .emergency-badge {
          font-size: 11px;
          padding: 6px 16px;
          margin-bottom: 16px;
      }
  
      /* Action Split Mobile */
      .action-split {
          grid-template-columns: 1fr;
          gap: 20px;
      }

      /* Phone CTA Mobile */
      .phone-cta {
          padding: 24px 20px;
      }
      .phone-cta a {
          font-size: 22px;
      }

      /* Trust Bar Mobile */
      .trust-bar {
          grid-template-columns: repeat(2, 1fr);
      }
      .trust-item {
          padding: 16px;
          border-bottom: 1px solid rgba(255,255,255,0.08);
      }
      .trust-item:nth-child(even) {
          border-right: none;
      }

      /* Process Grid Mobile */
      .process-grid {
          grid-template-columns: 1fr;
          gap: 16px;
      }
      .process-step::after {
          display: none;
      }
      .process-step {
          padding: 24px 20px;
      }

      /* USP Grid Mobile */
      .usp-grid {
          grid-template-columns: 1fr;
          gap: 16px;
      }
      .usp-card {
          padding: 20px;
      }

      /* Reviews Mobile */
      .reviews {
          padding: 50px 0;
      }
      .reviews .trustindex-widget {
          margin-top: var(--space-md);
      }

      /* Problem Block Mobile */
      .problem-block {
          padding: 20px;
          margin-top: 24px;
      }

      /* Forms Mobile */
      .inspection-form,
      .bitumen-form,
      
  
      .inspection-form h3,
      .bitumen-form h3,
      
  
      .inspection-form .form-subtitle {
          font-size: 13px;
          margin-bottom: 20px;
      }
  
      .form-group {
          margin-bottom: 14px;
      }
  
      .form-group input,
      .form-group select,
      .form-group textarea {
          padding: 12px 14px;
          font-size: 14px;
          border-radius: 8px;
      }
  
      .form-submit,
      button[type="submit"] {
          padding: 14px !important;
          font-size: 15px !important;
      }
  
      /* Quick Form Extras Mobile */
      
  
      
  
      
  
      /* Trust Bar Mobile */
      
  
      
  
      .trust-icon {
          font-size: 24px;
          margin-bottom: 6px;
      }
  
      .trust-text {
          font-size: 12px;
          line-height: 1.3;
      }
  
      /* Section Headers Mobile */
      .section-header {
          margin-bottom: 32px;
      }
  
      .section-label {
          font-size: 11px;
          padding: 6px 16px;
          margin-bottom: 12px;
      }
  
      .section-title {
          font-size: 26px !important;
          line-height: 1.2 !important;
          margin-bottom: 12px !important;
      }
  
      /* FAQ Mobile */
      .faq-section {
          padding: 60px 16px;
      }
  
      .faq-question {
          padding: 20px;
      }
  
      .faq-question h3 {
          font-size: 18px !important;
      }
  
      .faq-answer {
          padding: 0 20px;
      }
  
      .faq-item.active .faq-answer {
          padding: 0 20px 20px 20px;
      }
  
      /* Form Section Mobile */
      .form-section {
          padding: 60px 16px !important;
          overflow-x: hidden !important;
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
          margin-left: 0 !important;
          margin-right: 0 !important;
          padding-left: 16px !important;
          padding-right: 16px !important;
      }
  
      .elementor-widget-container .form-section,
      .elementor-element .form-section {
          padding-left: 16px !important;
          padding-right: 16px !important;
          margin-left: 0 !important;
          margin-right: 0 !important;
      }
  
      .form-container {
          grid-template-columns: 1fr !important;
          gap: 40px !important;
          padding: 0 !important;
          margin: 0 !important;
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
          display: flex !important;
          flex-direction: column !important;
          align-items: stretch !important;
      }
  
      .form-info {
          width: 100% !important;
          max-width: 100% !important;
          text-align: center !important;
          padding: 0 !important;
          margin: 0 auto !important;
          box-sizing: border-box !important;
      }
  
      .form-card {
          padding: 28px !important;
          width: 100% !important;
          max-width: 100% !important;
          margin: 0 auto !important;
          box-sizing: border-box !important;
          position: relative !important;
          left: auto !important;
          right: auto !important;
      }
  
      .form-group,
      .form-group input,
      .form-group textarea,
      .form-group label {
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
      }
  
      .section-subtitle {
          font-size: 15px !important;
          line-height: 1.6 !important;
      }
  
      /* Content Sections Mobile */
      .content-section {
          padding: 50px 16px;
      }
  
      .content-section.gray {
          padding: 50px 16px;
      }
  
      /* Info Blocks Mobile */
      .info-block {
          padding: 24px 20px;
          border-radius: 12px;
          margin-bottom: 32px;
      }
  
      .info-block h3 {
          font-size: 20px;
          margin-bottom: 12px;
      }
  
      .info-block p {
          font-size: 15px;
          line-height: 1.7;
          margin-bottom: 10px;
      }
  
      .info-block ul {
          margin-top: 20px;
      }
  
      .info-block li {
          font-size: 15px;
          padding: 10px 0;
          padding-left: 28px;
      }
  
      /* Benefits Grid Mobile */
      .benefits-grid {
          grid-template-columns: 1fr;
          gap: 20px;
      }
  
      .benefit-card {
          padding: 24px 20px;
      }
  
      .benefit-icon {
          width: 60px;
          height: 60px;
          font-size: 30px;
          margin-bottom: 16px;
      }
  
      .benefit-card h3 {
          font-size: 18px;
          margin-bottom: 10px;
      }
  
      .benefit-card p {
          font-size: 14px;
      }
  
      /* Services Grid Mobile */
      .services-grid {
          grid-template-columns: 1fr;
          gap: 20px;
      }
  
      .service-card {
          padding: 24px 20px;
          flex-direction: column;
          text-align: center;
      }
  
      .service-icon {
          width: 56px;
          height: 56px;
          font-size: 28px;
          margin: 0 auto 16px;
      }
  
      .service-content h3 {
          font-size: 18px;
          margin-bottom: 8px;
      }
  
      .service-content p {
          font-size: 14px;
      }
  
      /* Types Grid Mobile */
      .types-grid {
          grid-template-columns: 1fr;
          gap: 20px;
      }
  
      .type-card {
          padding: 24px 20px;
      }
  
      .type-icon {
          font-size: 36px;
          margin-bottom: 12px;
      }
  
      .type-card h3 {
          font-size: 18px;
          margin-bottom: 10px;
      }
  
      .type-card p {
          font-size: 14px;
          margin-bottom: 12px;
      }
  
      .type-price {
          font-size: 13px;
          padding: 8px 16px;
      }
  
      /* Process Grid Mobile */
      
  
      
  
      .process-number {
          width: 48px;
          height: 48px;
          font-size: 20px;
          margin-bottom: 16px;
      }
  
      
  
      
  
      /* Includes Grid Mobile */
      .includes-grid {
          grid-template-columns: 1fr;
          gap: 12px;
      }
  
      .include-item {
          padding: 16px 20px;
      }
  
      .include-icon {
          width: 40px;
          height: 40px;
          font-size: 20px;
      }
  
      .include-text {
          font-size: 14px;
      }
  
      /* When Grid Mobile */
      .when-grid {
          grid-template-columns: 1fr;
          gap: 20px;
      }
  
      .when-card {
          padding: 24px 20px;
      }
  
      .when-card h3 {
          font-size: 18px;
          margin-bottom: 12px;
      }
  
      .when-card li {
          font-size: 14px;
          padding: 8px 0;
          padding-left: 24px;
      }
  
      /* Why Free Mobile */
      .why-free {
          padding: 50px 16px;
      }
  
      .why-free-content {
          padding: 24px 20px;
          border-radius: 12px;
      }
  
      .why-free-content h3 {
          font-size: 22px;
          margin-bottom: 16px;
      }
  
      .why-free-content p {
          font-size: 15px;
          line-height: 1.7;
          margin-bottom: 12px;
      }
  
      .why-free-content ul {
          margin-top: 20px;
      }
  
      .why-free-content li {
          font-size: 15px;
          padding: 10px 0;
          padding-left: 28px;
      }
  
      /* Inspection Includes Mobile */
      .inspection-includes {
          padding: 50px 16px;
      }
  
      .what-you-get {
          padding: 50px 16px;
      }
  
      .when-inspect {
          padding: 50px 16px;
      }
  
      /* FAQ Mobile */
      .faq-section {
          padding: 50px 16px;
      }
  
      .faq-container {
          max-width: 100%;
      }
  
      .faq-item {
          padding: 20px 18px;
          margin-bottom: 12px;
      }
  
      .faq-question {
          font-size: 17px;
          margin-bottom: 12px;
      }
  
      .faq-answer {
          font-size: 14px;
          line-height: 1.6;
      }
  
      /* Process Section Mobile */
      .process-section {
          padding: 50px 16px;
      }
  
      /* Final CTA Mobile */
      .final-cta {
          padding: 50px 16px;
      }
  
      .final-cta h2 {
          font-size: 24px;
          line-height: 1.3;
          margin-bottom: 16px;
      }
  
      .final-cta p {
          font-size: 16px;
          margin-bottom: 24px;
      }
  
      .cta-buttons {
          flex-direction: column;
          gap: 12px;
          width: 100%;
      }
  
      .btn,
      .btn-white,
      .btn-outline {
          width: 100%;
          padding: 16px 24px !important;
          font-size: 15px !important;
          justify-content: center;
      }
  
      /* Sticky Buttons Mobile */
      .sticky-cta,
      .sticky-phone {
          display: block;
          bottom: 16px;
          left: 16px;
          right: 16px;
          width: auto;
          max-width: none;
          transform: none;
      }
  
      .sticky-cta a,
      .sticky-phone a {
          padding: 16px 20px;
          font-size: 15px;
          border-radius: 50px;
          width: 100%;
      }
  
      /* Comparison Table Mobile */
      .comparison-table {
          overflow-x: auto;
          -webkit-overflow-scrolling: touch;
      }
  
      .comparison-table table {
          min-width: 600px;
      }
  
      .comparison-table th,
      .comparison-table td {
          padding: 12px 16px;
          font-size: 14px;
      }
  
      /* CTA Form Container Mobile */
      .cta-form-container,
      .cta-container {
          grid-template-columns: 1fr;
          gap: 24px;
      }
  }
  
  /* Extra Small Mobile Devices (max-width: 375px) */
  @media (max-width: 375px) {
      
  
      
  
      
  
      .section-title {
          font-size: 24px !important;
      }
  
      
  
      .trust-text {
          font-size: 11px;
      }
  
      
  
      
  
      .btn,
      .btn-white,
      .btn-outline {
          padding: 14px 20px !important;
          font-size: 14px !important;
      }
  }
  
  /* Tablet and below */
  @media (max-width: 1024px) {
      .cta-form-container,
      .cta-container {
          grid-template-columns: 1fr;
      }
  }
  
  /* =============================================
     DIENSTEN PAGINA – Category Grid, Sitemap, Values, Why, CTA
     ============================================= */
  
  /* ---- Elementor overwrite preventie (diensten) ---- */
  .page-diensten-dak .section-label,
  .page-diensten-dak .section-title,
  .page-diensten-dak .section-subtitle,
  .page-diensten-dak h1, .page-diensten-dak h2, .page-diensten-dak h3,
  .page-diensten-dak p, .page-diensten-dak a, .page-diensten-dak span,
  .page-diensten-dak li {
      font-family: inherit;
  }
  
  /* ---- Hero CTA-knop ---- */
  .hero .hero-cta {
      display: inline-block;
      background: var(--color-primary);
      color: white !important;
      padding: 16px 32px;
      border-radius: 50px;
      font-weight: 700;
      text-decoration: none;
      font-size: 16px;
      transition: transform 0.2s, box-shadow 0.2s;
      margin-top: 8px;
  }
  .hero .hero-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 24px rgba(176, 30, 45, 0.4);
  }
  
  /* ---- Services sectie (wit, donkere tekst) ---- */
  .services-section {
      background: #ffffff !important;
      color: var(--color-dark) !important;
      padding: var(--space-2xl) var(--space-md);
  }
  .services-section .section-subtitle { color: #5c636a !important; }
  
  .services-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 var(--space-md);
      box-sizing: border-box;
  }
  .services-intro {
      text-align: center;
      max-width: 700px;
      margin: 0 auto var(--space-xl);
  }
  
  /* ---- Category Grid ---- */
  .category-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
  }
  
  .category-card {
      background: var(--color-light);
      border-radius: 16px;
      padding: 32px;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
      display: flex;
      flex-direction: column;
      border: 2px solid transparent;
  }
  .category-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }
  
  .category-card--highlight {
      border-color: var(--color-primary);
      background: linear-gradient(135deg, #fef2f2 0%, #fff 60%);
  }
  
  .category-card--accent {
      border-color: var(--color-accent);
      background: linear-gradient(135deg, #fdf8ed 0%, #fff 60%);
  }
  
  .category-header {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 20px;
  }
  
  .category-icon {
      width: 52px;
      height: 52px;
      min-width: 52px;
      background: linear-gradient(135deg, var(--color-primary) 0%, #8B1521 100%);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
  }
  .category-icon svg {
      width: 26px;
      height: 26px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
  }
  .category-icon--accent {
      background: linear-gradient(135deg, var(--color-accent) 0%, #a8862e 100%);
  }
  
  .category-card h3 {
      font-size: 20px;
      font-weight: 800;
      color: var(--color-dark) !important;
      margin-bottom: 6px;
  }
  .category-card h3 a {
      color: var(--color-dark) !important;
      text-decoration: none;
  }
  .category-card h3 a:hover {
      color: var(--color-primary) !important;
  }
  
  .category-desc {
      font-size: 14px;
      color: #5c636a !important;
      line-height: 1.5;
      margin: 0;
  }
  
  /* Sub-services lijst */
  .sub-services {
      list-style: none;
      padding: 0;
      margin: 0 0 20px 0;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      flex-grow: 1;
  }
  .sub-services li {
      flex: 0 0 auto;
  }
  .sub-services a {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 16px;
      background: #ffffff;
      border: 1px solid #e0e2e6;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 600;
      color: var(--color-gray) !important;
      text-decoration: none;
      transition: all 0.2s ease;
  }
  .sub-services a::before {
      content: '\2192';
      font-size: 12px;
      color: var(--color-primary);
      font-weight: 700;
  }
  .sub-services a:hover {
      background: var(--color-primary);
      color: #ffffff !important;
      border-color: var(--color-primary);
      transform: translateY(-1px);
  }
  .sub-services a:hover::before {
      color: #ffffff;
  }
  
  .category-cta {
      display: inline-block;
      font-size: 15px;
      font-weight: 700;
      color: var(--color-primary) !important;
      text-decoration: none;
      margin-top: auto;
      padding-top: 4px;
  }
  .category-cta:hover {
      text-decoration: underline;
  }
  
  /* ---- Sitemap / Structuuroverzicht sectie ---- */
  .sitemap-section {
      background: var(--color-light) !important;
      padding: var(--space-2xl) var(--space-md);
  }
  .sitemap-container {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
      padding: 0 var(--space-md);
      box-sizing: border-box;
  }
  .sitemap-section .section-title {
      color: var(--color-dark) !important;
  }
  .sitemap-section .section-subtitle {
      color: #5c636a !important;
      margin-bottom: var(--space-xl);
  }
  
  .sitemap-tree {
      display: flex;
      flex-direction: column;
      gap: 20px;
      text-align: left;
      max-width: 700px;
      margin: 0 auto;
  }
  
  .tree-branch {
      background: #ffffff;
      border-radius: 12px;
      padding: 20px 24px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      border-left: 4px solid var(--color-primary);
  }
  
  .tree-parent {
      font-size: 18px;
      font-weight: 800;
      color: var(--color-dark) !important;
      text-decoration: none;
      display: block;
  }
  .tree-parent:hover {
      color: var(--color-primary) !important;
  }
  .tree-parent--solo {
      margin-bottom: 0;
  }
  
  .tree-children {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 12px;
      padding-top: 12px;
      border-top: 1px solid #eee;
  }
  .tree-children a {
      display: inline-block;
      padding: 6px 14px;
      background: var(--color-light);
      border-radius: 6px;
      font-size: 14px;
      font-weight: 600;
      color: var(--color-gray) !important;
      text-decoration: none;
      transition: all 0.2s ease;
  }
  .tree-children a:hover {
      background: var(--color-primary);
      color: #fff !important;
  }
  
  /* ---- Values sectie ---- */
  .values-section {
      background: #ffffff !important;
      color: var(--color-dark) !important;
      padding: var(--space-2xl) var(--space-md);
  }
  .values-section .section-subtitle,
  .values-section .value-card p { color: #5c636a !important; }
  
  .values-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 var(--space-md);
      box-sizing: border-box;
  }
  .values-intro {
      text-align: center;
      max-width: 640px;
      margin: 0 auto var(--space-xl);
  }
  .values-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: var(--space-md);
  }
  .values-grid > * { min-width: 0; }
  
  .value-card {
      background: var(--color-light);
      border-radius: var(--radius-lg);
      padding: var(--space-md);
      text-align: center;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      box-shadow: var(--shadow-card);
  }
  .value-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-card-hover);
  }
  .value-icon {
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, var(--color-primary) 0%, #8B1521 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto var(--space-sm);
      color: white;
  }
  .value-icon svg {
      width: 28px;
      height: 28px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
  }
  .value-card h3 {
      font-size: 16px;
      font-weight: 800;
      color: var(--color-dark) !important;
      margin-bottom: var(--space-xs);
  }
  .value-card p {
      font-size: 14px;
      color: #5c636a !important;
      line-height: 1.5;
  }
  
  /* ---- Why sectie (donkere achtergrond) ---- */
  .why-section {
      background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
      padding: var(--space-2xl) var(--space-md);
      position: relative;
      overflow: hidden;
  }
  .why-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="g2" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23g2)"/></svg>');
      opacity: 0.5;
  }
  .why-container {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 0 var(--space-md);
      box-sizing: border-box;
  }
  .why-section h2 {
      font-size: 40px;
      font-weight: 900;
      color: #fff !important;
      margin-bottom: var(--space-md);
  }
  .why-section .why-brand {
      font-size: 18px;
      font-weight: 700;
      color: var(--color-primary) !important;
      margin-bottom: var(--space-sm);
  }
  .why-section p {
      font-size: 17px;
      line-height: 1.75;
      color: #b0b0b0 !important;
      margin-bottom: var(--space-md);
  }
  .why-section .why-cta {
      font-size: 18px;
      font-weight: 800;
      color: #fff !important;
      margin-top: var(--space-md);
  }
  
  /* ---- CTA sectie (wit, formulier rechts) ---- */
  .cta-section {
      background: #ffffff !important;
      color: var(--color-dark) !important;
      padding: var(--space-2xl) var(--space-md);
  }
  .cta-section .cta-content h2 { color: var(--color-dark) !important; }
  .cta-section .cta-content .cta-brand {
      font-size: 18px;
      font-weight: 700;
      color: var(--color-primary) !important;
      margin-bottom: var(--space-sm);
  }
  .cta-section .cta-content p {
      margin-bottom: var(--space-md);
      color: #5c636a !important;
  }
  .cta-section .cta-icon-item span { color: var(--color-dark) !important; }
  
  .cta-icons {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-md);
  }
  .cta-icon-item {
      display: flex;
      align-items: center;
      gap: var(--space-sm);
  }
  .cta-icon-item .icon {
      width: 44px;
      height: 44px;
      background: var(--color-primary);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: white;
  }
  .cta-icon-item .icon svg {
      width: 22px;
      height: 22px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
  }
  .cta-icon-item span {
      font-size: 15px;
      font-weight: 700;
      color: var(--color-dark) !important;
  }
  
  /* ---- Diensten responsive ---- */
  @media (max-width: 1024px) {
      .category-grid { grid-template-columns: repeat(2, 1fr); }
      .values-grid { grid-template-columns: repeat(2, 1fr); }
  }
  
  @media (max-width: 768px) {
      .services-container,
      .values-container,
      .sitemap-container { padding: 0 var(--space-sm); }
      .services-intro,
      .values-intro { margin-bottom: var(--space-lg); }
      .category-grid {
          grid-template-columns: 1fr;
          gap: 16px;
      }
      .category-card {
          padding: 24px;
      }
      .values-grid { grid-template-columns: 1fr; }
      .why-section h2 { font-size: 28px; }
      .why-container { padding: 0 var(--space-sm); }
      .cta-section { padding: var(--space-xl) var(--space-sm); }
      .cta-content h2 { font-size: 32px !important; }
      .cta-icons { grid-template-columns: 1fr; }
      .sub-services {
          flex-direction: column;
      }
      .sub-services a {
          width: 100%;
      }
      .tree-branch {
          padding: 16px 18px;
      }
      .tree-parent {
          font-size: 16px;
      }
      .tree-children a {
          font-size: 13px;
          padding: 5px 12px;
      }
  }
  
  /* =============================================
     HERO FORM-CARD LAYOUT (schoorsteen e.d.)
     ============================================= */
  
  
  
  @media (max-width: 968px) {
      
  }
  
  /* =============================================
     CHILDREN LINKS / CHILD LINK CARDS (platte-daken e.d.)
     ============================================= */
  .children-links {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      max-width: 900px;
      margin: 0 auto;
  }
  .child-link-card {
      background: white;
      border-radius: 16px;
      padding: 32px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      border: 2px solid #e5e7eb;
      transition: all 0.3s;
      text-decoration: none;
      color: inherit;
      display: block;
  }
  .child-link-card:hover {
      border-color: var(--color-primary);
      box-shadow: 0 8px 28px rgba(176, 30, 45, 0.15);
      transform: translateY(-4px);
  }
  .child-link-card h3 {
      color: var(--color-dark) !important;
      font-size: 22px;
      margin-bottom: 12px;
      font-family: inherit;
  }
  .child-link-card p {
      color: #6c757d !important;
      font-size: 15px;
      line-height: 1.6;
      margin-bottom: 16px;
  }
  .child-link-card .card-cta {
      color: var(--color-primary) !important;
      font-weight: 800;
      font-size: 15px;
  }
  @media (max-width: 768px) {
      .children-links {
          grid-template-columns: 1fr;
      }
  }
  
  /* =============================================
     REGIO CTA (schuurdak, platte-daken)
     ============================================= */
  .regio-cta {
      text-align: center;
      margin-top: 24px;
  }
  .regio-cta .btn {
      color: white !important;
      background: var(--color-primary) !important;
  }
  .regio-cta.regio-cta--no-margin {
      margin-top: 0;
  }
  
  /* =============================================
     PROBLEM BLOCK CTA VARIANT (centered + buttons)
     ============================================= */
  
  
  
  /* =============================================
     INFO BLOCK SPACED (pannendak)
     ============================================= */
  .info-block.info-block--spaced {
      margin-top: 48px;
  }
  
  /* =============================================
     404 PAGE STYLES
     ============================================= */
  body.error404 {
      color: #fff;
      background: var(--color-dark);
  }
  .hero-404 {
      background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
      padding: 80px 24px 100px;
      position: relative;
      overflow: hidden;
  }
  .hero-404::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="g" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23g)"/></svg>');
      opacity: 0.5;
  }
  .hero-404__inner {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
      text-align: center;
  }
  .hero-404__label {
      display: inline-block;
      background: rgba(176, 30, 45, 0.15);
      color: var(--color-primary);
      padding: 8px 20px;
      border-radius: 50px;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 24px;
      border: 1px solid rgba(176, 30, 45, 0.3);
  }
  .hero-404__number {
      font-size: clamp(100px, 20vw, 180px);
      font-weight: 900;
      line-height: 0.9;
      margin-bottom: 16px;
      background: linear-gradient(135deg, rgba(176, 30, 45, 0.9) 0%, rgba(176, 30, 45, 0.5) 50%, var(--color-accent) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: -0.02em;
  }
  .hero-404__title {
      font-size: 28px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 16px;
      line-height: 1.2;
  }
  .hero-404__text {
      font-size: 17px;
      line-height: 1.6;
      color: #b0b0b0;
  }
  .err-section {
      background: white;
      padding: 60px 24px 80px;
      min-height: 320px;
  }
  .err-container {
      max-width: 1000px;
      margin: 0 auto;
  }
  .err-section h2 {
      font-size: 22px;
      font-weight: 800;
      color: var(--color-dark);
      margin-bottom: 24px;
      text-align: center;
  }
  .err-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 16px;
      margin-bottom: 40px;
  }
  body.error404 .err-btn,
  body.error404 a.err-btn {
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      min-height: 52px !important;
      padding: 0 28px !important;
      border-radius: 50px !important;
      font-size: 15px !important;
      font-weight: 700 !important;
      font-family: inherit !important;
      text-decoration: none !important;
      transition: all 0.25s !important;
      border: 2px solid transparent !important;
      box-shadow: none !important;
  }
  body.error404 .err-btn--primary,
  body.error404 a.err-btn--primary {
      background: linear-gradient(135deg, var(--color-primary) 0%, #8B1521 100%) !important;
      color: white !important;
      box-shadow: 0 4px 16px rgba(176, 30, 45, 0.3) !important;
  }
  body.error404 .err-btn--primary:hover,
  body.error404 a.err-btn--primary:hover {
      transform: translateY(-3px) !important;
      box-shadow: 0 8px 24px rgba(176, 30, 45, 0.4) !important;
      color: white !important;
      background: linear-gradient(135deg, var(--color-primary) 0%, #8B1521 100%) !important;
  }
  body.error404 .err-btn--secondary,
  body.error404 a.err-btn--secondary {
      background: #f9fafb !important;
      color: var(--color-dark) !important;
      border-color: #d1d5db !important;
  }
  body.error404 .err-btn--secondary:hover,
  body.error404 a.err-btn--secondary:hover {
      border-color: var(--color-primary) !important;
      color: var(--color-primary) !important;
      background: #fff !important;
  }
  .err-search {
      max-width: 480px;
      margin: 0 auto;
      padding: 32px;
      background: var(--color-light);
      border-radius: 16px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  }
  .err-search label {
      display: block;
      font-size: 14px;
      font-weight: 700;
      color: var(--color-dark);
      margin-bottom: 12px;
  }
  .err-search-form {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
  }
  .err-search-form input[type="search"] {
      flex: 1;
      min-width: 200px;
      height: 48px;
      padding: 0 18px;
      border: 2px solid #e5e7eb;
      border-radius: 50px;
      font-size: 15px;
      font-family: inherit;
      transition: border-color 0.2s;
  }
  body.error404 .err-search-form input[type="search"]:focus {
      outline: none !important;
      border-color: var(--color-primary) !important;
  }
  body.error404 .err-search-form button {
      height: 48px !important;
      padding: 0 24px !important;
      border-radius: 50px !important;
      font-size: 15px !important;
      font-weight: 700 !important;
      font-family: inherit !important;
      background: var(--color-primary) !important;
      color: white !important;
      border: none !important;
      cursor: pointer !important;
      transition: all 0.2s !important;
  }
  body.error404 .err-search-form button:hover {
      background: #8B1521 !important;
      color: white !important;
  }
  @media (max-width: 768px) {
      .hero-404 {
          padding: 56px 20px 72px;
      }
      .hero-404__title {
          font-size: 22px;
      }
      .hero-404__text {
          font-size: 16px;
      }
      .err-section {
          padding: 40px 20px 60px;
      }
      .err-actions {
          gap: 12px;
      }
  }
  
  /* =============================================
     REVIEWS SECTION (dakreparatie, daklekkage, etc.)
     ============================================= */
  .reviews {
      padding: var(--space-2xl) 0;
      background: #fff;
  }
  .reviews-container {
      max-width: none;
      width: 100%;
      margin: 0 auto;
  }
  .reviews .section-header {
      margin-bottom: var(--space-lg);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      padding-left: var(--space-md);
      padding-right: var(--space-md);
  }

  .reviews .trustindex-widget {
      margin-top: var(--space-lg);
      max-width: 100%;
      width: 100%;
  }

  .reviews .trustindex-widget .ti-widget {
      max-width: none !important;
      width: 100% !important;
  }
  
  /* =============================================
     OFFERTE PAGE (dakwerk-offerte)
     ============================================= */
  .offerte-section {
      padding: 80px 24px 100px;
      max-width: 1000px;
      margin: 0 auto;
  }
  .offerte-container {
      margin: 0 auto;
  }
  .offerte-intro {
      text-align: center;
      margin-bottom: 32px;
  }
  .offerte-intro h2 {
      font-size: 28px;
      font-weight: 800;
      color: var(--color-dark);
      margin-bottom: 12px;
  }
  .offerte-intro p {
      font-size: 17px;
      color: #6c757d;
      line-height: 1.6;
  }
  .offerte-link {
      color: var(--color-primary);
      font-weight: 700;
      text-decoration: none;
  }
  .offerte-link:hover {
      text-decoration: underline;
  }
  .form-card-offerte {
      background: #fff;
      padding: 40px;
      border-radius: 16px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }
  .offerte-form-wrapper {
      margin-top: 20px;
  }
  @media (max-width: 768px) {
      .offerte-section {
          padding: 50px 16px 60px;
      }
      .form-card-offerte {
          padding: 24px 20px;
      }
  }
  
  /* =============================================
     PAGE HERO – gedeeld door contact, diensten,
     en andere inner pages
     ============================================= */
  
  .page-hero {
      background: linear-gradient(135deg, #0a0a0a 0%, #181818 100%);
      padding: 64px 24px 72px;
      position: relative;
      overflow: hidden;
  }
  
  .page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="g" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.025)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23g)"/></svg>');
      pointer-events: none;
  }
  
  .page-hero-inner {
      max-width: 860px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
      text-align: center;
  }
  
  .page-hero-label {
      display: inline-block;
      background: rgba(176, 30, 45, 0.15);
      color: var(--color-primary);
      border: 1px solid rgba(176, 30, 45, 0.3);
      padding: 8px 20px;
      border-radius: 50px;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      margin-bottom: 20px;
      font-family: inherit;
  }
  
  .page-hero h1 {
      font-size: clamp(30px, 4.5vw, 52px) !important;
      font-weight: 900 !important;
      line-height: 1.1 !important;
      color: #ffffff !important;
      font-family: inherit;
      letter-spacing: -0.025em !important;
      margin-bottom: 16px !important;
  }
  
  .page-hero > .page-hero-inner > p,
  .page-hero-inner > p {
      font-size: 18px !important;
      line-height: 1.65 !important;
      color: #b8b8b8 !important;
      font-family: inherit;
      margin-bottom: 32px !important;
      max-width: 640px;
      margin-left: auto;
      margin-right: auto;
  }
  
  /* Hero action knoppen */
  .page-hero-actions {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 36px;
  }
  
  /* Hero trust badges */
  .page-hero-trust {
      display: flex;
      gap: 10px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 8px;
  }
  
  .page-hero-trust-item {
      display: flex;
      align-items: center;
      gap: 7px;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 50px;
      padding: 8px 16px;
      font-size: 13px;
      font-weight: 600;
      color: #d1d5db;
      font-family: inherit;
      white-space: nowrap;
  }
  
  .pht-icon {
      font-size: 14px;
      line-height: 1;
  }
  
  /* Hero-achtergronden (dak-media-registry.php) */
  .dak-hero-photo {
      position: absolute;
      inset: 0;
      z-index: 0;
      background-size: cover;
      background-position: center;
      pointer-events: none;
  }
  .dak-hero-photo-scrim {
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background: rgba(6, 8, 14, 0.92);
  }
  
  .page-hero.page-hero--has-photo {
      position: relative;
      isolation: isolate;
      min-height: 280px;
  }
  .page-hero.page-hero--has-photo .page-hero-inner {
      position: relative;
      z-index: 3;
  }
  .page-hero.page-hero--has-photo::before {
      z-index: 2;
  }
  
  .hero.hero--has-photo,
  .hero-atf.hero-atf--has-photo {
      position: relative;
      isolation: isolate;
      overflow: hidden;
  }
  .hero.hero--has-photo .hero-container,
  .hero-atf.hero-atf--has-photo .hero-container {
      position: relative;
      z-index: 3;
  }
  .hero.hero--has-photo::before,
  .hero-atf.hero-atf--has-photo::before {
      z-index: 2;
  }
  
  .spoed-hero.spoed-hero--has-photo .dak-hero-photo {
      z-index: 0;
  }
  .spoed-hero.spoed-hero--has-photo .dak-hero-photo-scrim {
      z-index: 1;
  }
  .spoed-hero.spoed-hero--has-photo .hero-bg-overlay {
      z-index: 2;
  }
  .spoed-hero.spoed-hero--has-photo .hero-rain,
  .spoed-hero.spoed-hero--has-photo .lp-hero__rain {
      z-index: 2;
      opacity: 0.015;
  }
  .spoed-hero.spoed-hero--has-photo .spoed-hero-inner,
  .spoed-hero.spoed-hero--has-photo .lp-hero__inner {
      z-index: 3;
  }
  
  .page-vacatures-dak .vacatures-hero.vacatures-hero--has-photo,
  .page-vestigingen-dak .vestigingen-hero.vestigingen-hero--has-photo {
      position: relative;
      isolation: isolate;
      overflow: hidden;
  }
  .page-vacatures-dak .vacatures-hero.vacatures-hero--has-photo .vacatures-hero-inner,
  .page-vestigingen-dak .vestigingen-hero.vestigingen-hero--has-photo .vestigingen-hero-inner {
      position: relative;
      z-index: 3;
  }
  .page-vacatures-dak .vacatures-hero.vacatures-hero--has-photo::before,
  .page-vestigingen-dak .vestigingen-hero.vestigingen-hero--has-photo::before {
      z-index: 2;
  }
  
  .bedankt-hero.bedankt-hero--has-photo {
      position: relative;
      isolation: isolate;
      overflow: hidden;
  }
  .bedankt-hero.bedankt-hero--has-photo .bedankt-inner {
      position: relative;
      z-index: 3;
  }
  .bedankt-hero.bedankt-hero--has-photo::before {
      z-index: 2;
  }
  
  /* Home: service cards met echte foto i.p.v. alleen emoji */
  .service-image--photo {
      padding: 0;
      overflow: hidden;
      border-radius: 12px;
      background: #1a1a1a;
  }
  .service-image--photo img {
      display: block;
      width: 100%;
      height: 160px;
      object-fit: cover;
  }
  
  /* Full-width fotostrip onder hero — geen donkere overlay op de foto; caption licht onder de afbeelding */
  .dak-showcase {
      width: 100%;
      max-height: none;
      overflow: hidden;
      background: #f4f6f9;
      display: block;
      position: relative;
      z-index: 5;
  }
  .dak-showcase-inner {
      width: 100%;
      max-width: none;
      margin: 0;
  }
  .dak-showcase-card {
      border-radius: 0;
      overflow: hidden;
      background: #ffffff;
  }
  .dak-showcase-figure {
      margin: 0;
      line-height: 0;
      position: relative;
  }
  .dak-showcase-img {
      display: block;
      width: 100%;
      height: auto;
      max-height: 520px;
      object-fit: cover;
  }
  .dak-showcase-caption {
      position: relative;
      padding: 14px 24px 18px;
      font-size: 14px;
      line-height: 1.45;
      color: #475569;
      font-weight: 600;
      background: #f1f5f9;
      border-top: 1px solid rgba(15, 23, 42, 0.08);
  }
  .page-vacatures-dak .dak-showcase,
  .page-vestigingen-dak .dak-showcase,
  .bedankt-page .dak-showcase {
      margin-top: 0;
  }
  @media (max-width: 768px) {
      .dak-showcase { max-height: 320px; }
      .dak-showcase-img { max-height: 320px; }
  }
  @media (max-width: 600px) {
      .dak-showcase { max-height: 240px; }
      .dak-showcase-img { max-height: 240px; }
      .dak-showcase-caption {
          font-size: 13px;
          padding: 12px 16px;
      }
  }
  
  /* Hero-foto’s beter zichtbaar: overlay transparanter (behoudt inline kleuraccenten) */
  .spoed-hero.spoed-hero--has-photo .hero-bg-overlay {
      opacity: 0.92 !important;
  }
  .spoed-hero.spoed-hero--has-photo .hero-rain,
  .spoed-hero.spoed-hero--has-photo .lp-hero__rain {
      opacity: 0.022;
  }
  
  .page-hero.page-hero--has-photo {
      min-height: min(48vh, 440px);
      padding-top: 72px;
      padding-bottom: 80px;
  }
  .hero-atf.hero-atf--has-photo {
      min-height: min(42vh, 380px);
  }
  .hero.hero--has-photo {
      min-height: min(38vh, 360px);
  }
  .dak-hero-photo-scrim {
      background: rgba(6, 8, 14, 0.92);
  }
  
  /* =============================================
     PAGE SECTIONS – gedeeld systeem
     ============================================= */
  
  .page-section {
      padding: 80px 24px;
      background: #ffffff;
  }
  
  .page-section--gray {
      background: var(--color-light);
  }
  
  .page-section-inner {
      max-width: 1200px;
      margin: 0 auto;
  }
  
  /* Reviews template (page-reviews.php) – strakke hero + Trustindex */
  .page-hero.page-hero--reviews {
      padding: 40px 24px 44px;
  }
  .page-hero.page-hero--reviews h1 {
      margin-bottom: 12px !important;
  }
  .page-hero.page-hero--reviews .page-hero-inner > p {
      margin-bottom: 20px !important;
      max-width: 560px;
  }
  .page-hero.page-hero--reviews .page-hero-trust {
      margin-top: 0;
  }
  .page-section.page-section--reviews-trustindex {
      padding-top: 48px;
      padding-bottom: 72px;
  }
  .trustindex-widget--page-reviews {
      margin-top: 0;
  }
  @media (max-width: 768px) {
      .page-hero.page-hero--reviews {
          padding: 32px 20px 36px;
      }
  }
  
  /* =============================================
     PAGE CTA – onderaan elke page
     ============================================= */
  
  .page-cta {
      background: linear-gradient(135deg, var(--color-primary) 0%, #8B1521 100%);
      padding: 80px 24px;
      text-align: center;
      position: relative;
      overflow: hidden;
  }
  
  .page-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="g" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.06)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23g)"/></svg>');
      pointer-events: none;
  }
  
  .page-cta-inner {
      max-width: 720px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
  }
  
  .page-cta-inner h2 {
      font-size: clamp(28px, 4vw, 42px) !important;
      font-weight: 900 !important;
      color: #ffffff !important;
      font-family: inherit;
      margin-bottom: 14px !important;
      line-height: 1.15 !important;
      letter-spacing: -0.02em;
  }
  
  .page-cta-inner p {
      font-size: 18px !important;
      color: rgba(255, 255, 255, 0.88) !important;
      font-family: inherit;
      margin-bottom: 32px !important;
      line-height: 1.6 !important;
  }
  
  .page-cta-inner .cta-buttons {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
  }
  
  /* =============================================
     KNOPPEN – globaal herbruikbaar systeem
     ============================================= */
  
  .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 15px 30px;
      border-radius: 12px;
      font-size: 15px;
      font-weight: 800;
      font-family: inherit;
      text-decoration: none !important;
      cursor: pointer;
      border: 2px solid transparent;
      transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
      line-height: 1;
      white-space: nowrap;
  }
  
  .btn svg {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      fill: currentColor;
  }
  
  /* Primair: wit op donkere/rode achtergrond (CTA sections) */
  .page-cta .btn-primary,
  .cta .btn-primary,
  .final-cta .btn-primary {
      background: #ffffff !important;
      color: var(--color-primary) !important;
      border-color: #ffffff !important;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  }
  
  .page-cta .btn-primary:hover,
  .cta .btn-primary:hover,
  .final-cta .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
      text-decoration: none !important;
  }
  
  /* Secundair: transparant + wit rand op donkere achtergrond */
  .btn-secondary {
      background: rgba(255, 255, 255, 0.1);
      color: #ffffff !important;
      border-color: rgba(255, 255, 255, 0.5);
  }
  
  .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.2);
      border-color: rgba(255, 255, 255, 0.85);
      transform: translateY(-3px);
      text-decoration: none !important;
  }
  
  /* Rood op lichte achtergrond */
  .btn-red {
      background: linear-gradient(135deg, var(--color-primary) 0%, #8B1521 100%);
      color: #ffffff !important;
      border-color: transparent;
      box-shadow: 0 4px 16px rgba(176, 30, 45, 0.3);
  }
  
  .btn-red:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 28px rgba(176, 30, 45, 0.45);
      text-decoration: none !important;
  }
  
  /* Lichte achtergrond context: overschrijf primair naar rood */
  .page-section .btn-primary,
  .contact-section .btn-primary,
  .regio-cta .btn-primary {
      background: linear-gradient(135deg, var(--color-primary) 0%, #8B1521 100%);
      color: #ffffff !important;
      border-color: transparent;
      box-shadow: 0 4px 16px rgba(176, 30, 45, 0.3);
  }
  
  .page-section .btn-primary:hover,
  .contact-section .btn-primary:hover,
  .regio-cta .btn-primary:hover {
      box-shadow: 0 8px 28px rgba(176, 30, 45, 0.45);
  }
  
  .page-section .btn-secondary,
  .contact-section .btn-secondary {
      background: transparent;
      color: var(--color-dark) !important;
      border-color: #d1d5db;
  }
  
  .page-section .btn-secondary:hover,
  .contact-section .btn-secondary:hover {
      border-color: var(--color-primary);
      color: var(--color-primary) !important;
      background: rgba(176, 30, 45, 0.04);
  }
  
  /* =============================================
     CONTACT SECTIE
     ============================================= */
  
  .contact-section {
      background: #ffffff;
      padding: 80px 24px;
  }
  
  .contact-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 64px;
      align-items: start;
  }
  
  .contact-info h2 {
      font-size: 36px !important;
      font-weight: 900 !important;
      color: var(--color-dark) !important;
      font-family: inherit;
      margin-bottom: 16px !important;
      letter-spacing: -0.02em;
  }
  
  .contact-info > p {
      font-size: 17px;
      line-height: 1.7;
      color: #6c757d;
      margin-bottom: 32px;
  }
  
  .contact-details {
      display: flex;
      flex-direction: column;
      gap: 20px;
  }
  
  .contact-detail {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 18px 20px;
      background: var(--color-light);
      border-radius: 12px;
      border: 1px solid rgba(0, 0, 0, 0.06);
      transition: box-shadow 0.2s;
  }
  
  .contact-detail:hover {
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  }
  
  .contact-icon {
      width: 48px;
      height: 48px;
      background: var(--color-primary);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      flex-shrink: 0;
  }
  
  .contact-text {
      display: flex;
      flex-direction: column;
      gap: 3px;
  }
  
  .contact-text strong {
      display: block;
      font-size: 13px;
      font-weight: 700;
      color: #9ca3af;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      font-family: inherit;
  }
  
  .contact-text span {
      font-size: 16px;
      font-weight: 600;
      color: var(--color-dark);
      font-family: inherit;
  }
  
  .contact-text a {
      color: var(--color-primary) !important;
      text-decoration: none;
      font-weight: 700;
  }
  
  .contact-text a:hover {
      text-decoration: underline;
  }
  
  /* =============================================
     ICON CARDS GRID (contact: zakelijk sectie)
     ============================================= */
  
  .icon-cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 8px;
  }
  
  .icon-card {
      background: #ffffff;
      border-radius: 16px;
      padding: 32px 28px;
      text-align: center;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
      border: 1px solid rgba(0, 0, 0, 0.06);
      transition: transform 0.25s, box-shadow 0.25s;
  }
  
  .icon-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  }
  
  .icon-card-icon {
      font-size: 48px;
      line-height: 1;
      margin-bottom: 18px;
  }
  
  .icon-card h3 {
      font-size: 18px !important;
      font-weight: 800 !important;
      color: var(--color-dark) !important;
      font-family: inherit;
      margin-bottom: 12px !important;
  }
  
  .icon-card p {
      font-size: 15px;
      color: #6c757d;
      line-height: 1.6;
      font-family: inherit;
  }
  
  /* =============================================
     DIENSTEN CATEGORIES
     ============================================= */
  
  .diensten-categories {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
  }
  
  .dienst-category {
      background: #ffffff;
      border-radius: 16px;
      padding: 28px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
      border: 1px solid rgba(0, 0, 0, 0.06);
      transition: transform 0.25s, box-shadow 0.25s;
      display: flex;
      flex-direction: column;
      gap: 14px;
  }
  
  .dienst-category:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  }
  
  .dienst-category--highlight {
      background: linear-gradient(135deg, rgba(16, 185, 129, 0.06) 0%, rgba(16, 185, 129, 0.02) 100%);
      border-color: rgba(16, 185, 129, 0.25) !important;
  }
  
  .dienst-category--highlight:hover {
      border-color: rgba(16, 185, 129, 0.4) !important;
      box-shadow: 0 10px 28px rgba(16, 185, 129, 0.12);
  }
  
  .dienst-category-header {
      display: flex;
      align-items: center;
      gap: 14px;
  }
  
  .dienst-category-icon {
      font-size: 32px;
      line-height: 1;
      flex-shrink: 0;
      width: 56px;
      height: 56px;
      background: var(--color-light);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  
  .dienst-category--highlight .dienst-category-icon {
      background: rgba(16, 185, 129, 0.12);
  }
  
  .dienst-category-header h3 {
      font-size: 19px !important;
      font-weight: 800 !important;
      color: var(--color-dark) !important;
      font-family: inherit;
      margin: 0 !important;
      line-height: 1.25;
  }
  
  .dienst-category-header h3 a {
      color: inherit !important;
      text-decoration: none;
      transition: color 0.2s;
  }
  
  .dienst-category-header h3 a:hover {
      color: var(--color-primary) !important;
      text-decoration: none;
  }
  
  .dienst-category > p {
      font-size: 15px;
      color: #6c757d;
      line-height: 1.6;
      font-family: inherit;
      margin: 0;
  }
  
  .dienst-sublinks {
      list-style: none !important;
      padding: 0 !important;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 6px;
      border-top: 1px solid rgba(0, 0, 0, 0.07);
      padding-top: 14px !important;
  }
  
  .dienst-sublinks li {
      padding: 0;
  }
  
  .dienst-sublinks li::before {
      display: none !important;
  }
  
  .dienst-sublinks a {
      font-size: 14px;
      font-weight: 600;
      color: #4b5563 !important;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 5px 0;
      transition: color 0.2s;
      font-family: inherit;
  }
  
  .dienst-sublinks a::before {
      content: '→';
      color: var(--color-primary);
      font-size: 13px;
      flex-shrink: 0;
  }
  
  .dienst-sublinks a:hover {
      color: var(--color-primary) !important;
      text-decoration: none;
  }
  
  .dienst-readmore {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 14px;
      font-weight: 700;
      color: var(--color-primary) !important;
      text-decoration: none;
      border-bottom: 2px solid rgba(176, 30, 45, 0.2);
      padding-bottom: 2px;
      margin-top: auto;
      transition: border-color 0.2s;
      font-family: inherit;
  }
  
  .dienst-readmore:hover {
      border-bottom-color: var(--color-primary);
      text-decoration: none;
  }
  
  /* =============================================
     WAARDEN GRID (diensten: onze waarden)
     ============================================= */
  
  .waarden-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
  }
  
  .waarden-card {
      background: #ffffff;
      border-radius: 16px;
      padding: 28px;
      display: flex;
      gap: 20px;
      align-items: flex-start;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
      border: 1px solid rgba(0, 0, 0, 0.06);
      transition: transform 0.25s, box-shadow 0.25s;
  }
  
  .waarden-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }
  
  .waarden-icon {
      font-size: 36px;
      line-height: 1;
      flex-shrink: 0;
      width: 60px;
      height: 60px;
      background: var(--color-light);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  
  .waarden-content h3 {
      font-size: 17px !important;
      font-weight: 800 !important;
      color: var(--color-dark) !important;
      font-family: inherit;
      margin-bottom: 8px !important;
      line-height: 1.3;
  }
  
  .waarden-content p {
      font-size: 14px;
      color: #6c757d;
      line-height: 1.6;
      font-family: inherit;
      margin: 0;
  }
  
  /* =============================================
     ABOUT BLOCK (diensten: waarom anders)
     ============================================= */
  
  .about-block {
      background: #ffffff;
      border-radius: 20px;
      padding: 48px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
      border-left: 5px solid var(--color-primary);
      max-width: 900px;
      margin: 0 auto;
  }
  
  .about-block-badge {
      display: inline-block;
      background: rgba(176, 30, 45, 0.1);
      color: var(--color-primary);
      border: 1px solid rgba(176, 30, 45, 0.25);
      padding: 6px 16px;
      border-radius: 50px;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 16px;
      font-family: inherit;
  }
  
  .about-block h2 {
      font-size: 28px !important;
      font-weight: 900 !important;
      color: var(--color-dark) !important;
      font-family: inherit;
      margin-bottom: 20px !important;
      line-height: 1.25;
      letter-spacing: -0.02em;
  }
  
  .about-block p {
      font-size: 16px;
      line-height: 1.8;
      color: #4b5563;
      margin-bottom: 14px;
      font-family: inherit;
  }
  
  .about-block p:last-child {
      margin-bottom: 0;
  }
  
  /* =============================================
     RESPONSIVE
     ============================================= */
  
  @media (max-width: 1024px) {
      .diensten-categories {
          grid-template-columns: repeat(2, 1fr);
      }
  
      .contact-container {
          grid-template-columns: 1fr 380px;
          gap: 40px;
      }
  }
  
  @media (max-width: 900px) {
      .page-hero {
          padding: 48px 20px 56px;
      }
  
      .page-hero-actions {
          flex-direction: column;
          align-items: center;
      }
  
      .contact-container {
          grid-template-columns: 1fr;
          gap: 40px;
      }
  
      .icon-cards-grid {
          grid-template-columns: 1fr;
      }
  
      .waarden-grid {
          grid-template-columns: 1fr;
      }
  }
  
  @media (max-width: 768px) {
      .page-section {
          padding: 56px 20px;
      }
  
      .page-cta {
          padding: 56px 20px;
      }
  
      .diensten-categories {
          grid-template-columns: 1fr;
      }
  
      .about-block {
          padding: 32px 24px;
      }
  
      .page-hero-trust {
          gap: 8px;
      }
  
      .page-hero-trust-item {
          font-size: 12px;
          padding: 7px 13px;
      }
  }
  
  @media (max-width: 560px) {
      .page-cta-inner .cta-buttons {
          flex-direction: column;
          align-items: center;
      }
  
      .btn {
          width: 100%;
          max-width: 340px;
          justify-content: center;
      }
  
      .waarden-card {
          flex-direction: column;
          gap: 14px;
      }
  }
  
  /* =============================================
     HOME PAGE – page-home.php
     ============================================= */
  
  /* Hero split-layout */
  .hero {
      background: linear-gradient(135deg, #0a0a0a 0%, #181818 100%);
      padding: 64px 0 80px;
      position: relative;
      overflow: hidden;
  }
  
  .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="g" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.025)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23g)"/></svg>');
      pointer-events: none;
      z-index: 0;
  }
  
  .hero .hero-container {
      display: grid;
      grid-template-columns: 1fr 460px;
      gap: 48px;
      align-items: center;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 32px;
      width: 100%;
      box-sizing: border-box;
      position: relative;
      z-index: 1;
  }
  
  .hero-content {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
  }
  
  .hero .hero-label {
      display: inline-block;
      background: rgba(16, 185, 129, 0.12);
      color: #10b981;
      border: 1px solid rgba(16, 185, 129, 0.3);
      padding: 8px 20px;
      border-radius: 50px;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 20px;
      font-family: inherit;
  }
  
  .hero-content h1 {
      font-size: clamp(36px, 4.6vw, 60px) !important;
      font-weight: 900 !important;
      line-height: 1.08 !important;
      color: #ffffff !important;
      font-family: inherit;
      letter-spacing: -0.03em !important;
      margin-bottom: 14px !important;
  }
  
  .hero-tagline {
      font-size: clamp(22px, 2.4vw, 32px) !important;
      font-weight: 800 !important;
      color: var(--color-accent) !important;
      font-family: inherit;
      margin-bottom: 20px !important;
      line-height: 1.22 !important;
      letter-spacing: -0.015em !important;
  }
  
  .hero-content > p {
      font-size: 17px !important;
      line-height: 1.7 !important;
      color: #b8b8b8 !important;
      font-family: inherit;
      margin-bottom: 32px !important;
      max-width: 560px;
  }
  
  /* Review badges */
  .hero-reviews {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 28px;
  }
  
  .review-badge {
      display: flex;
      align-items: center;
      gap: 12px;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 12px;
      padding: 12px 18px;
      transition: background 0.2s, border-color 0.2s;
  }
  
  .review-badge:hover {
      background: rgba(255,255,255,0.1);
      border-color: rgba(255,255,255,0.2);
  }
  
  .review-icon {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
  }
  
  .review-info {
      display: flex;
      flex-direction: column;
      gap: 2px;
  }
  
  .review-stars {
      font-size: 15px;
      font-weight: 800;
      color: #ffffff;
      font-family: inherit;
  }
  
  .review-count {
      font-size: 12px;
      font-weight: 600;
      color: #9ca3af;
      font-family: inherit;
  }
  
  /* Form card rechts in hero */
  .hero .form-card,
  .form-card {
      background: #ffffff;
      border-radius: 20px;
      padding: 36px 32px;
      box-shadow: 0 24px 60px rgba(0,0,0,0.45);
      width: 100%;
  }
  
  .hero .form-card h2,
  .form-card h2 {
      font-size: 20px !important;
      font-weight: 700 !important;
      color: #6c757d !important;
      font-family: inherit;
      margin-bottom: 4px !important;
      text-align: center;
  }
  
  .hero .form-card h3,
  .form-card h3 {
      font-size: 22px !important;
      font-weight: 900 !important;
      color: var(--color-dark) !important;
      font-family: inherit;
      margin-bottom: 24px !important;
      text-align: center;
      line-height: 1.2;
  }
  
  /* Home: foto-hero + lichte scrims (foto blijft zichtbaar, tekst leesbaar) */
  .hero.hero--home {
      overflow: visible;
      background-color: #0c0d10;
      background-image:
          linear-gradient(180deg, rgba(6, 7, 10, 0.06) 0%, rgba(5, 6, 9, 0.28) 45%, rgba(4, 5, 8, 0.42) 100%),
          linear-gradient(135deg, rgba(8, 7, 10, 0.32) 0%, rgba(6, 6, 9, 0.3) 50%, rgba(7, 6, 9, 0.34) 100%),
          radial-gradient(ellipse 95% 60% at 50% 0%, rgba(176, 30, 45, 0.08) 0%, transparent 50%),
          var(--home-hero-image, none);
      background-size: cover;
      background-position: center top;
      background-repeat: no-repeat;
      box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.06);
  }
  .hero.hero--home::after {
      opacity: 0.22;
      background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="g" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.04)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23g)"/></svg>');
  }
  .hero.hero--home .hero-container {
      z-index: 2;
  }
  .hero.hero--home .hero-content h1 {
      text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45), 0 1px 2px rgba(0, 0, 0, 0.35);
  }
  .hero.hero--home .hero-tagline {
      text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
  }
  .hero.hero--home .hero-content > p {
      color: #e2e5ea !important;
      text-shadow: 0 1px 12px rgba(0, 0, 0, 0.28);
  }
  .hero.hero--home .form-card {
      position: relative;
      z-index: 2;
      margin-bottom: -36px;
  }
  .hero.hero--home + .hero-video {
      position: relative;
      z-index: 1;
  }
  @media (min-width: 901px) {
      .hero.hero--home .form-card {
          margin-bottom: -80px;
      }
  }
  
  /* Hero video */
  .hero-video {
      width: 100%;
      max-height: 520px;
      overflow: hidden;
      background: #0a0a0a;
      display: block;
  }
  
  .hero-video video,
  .hero-video img.hero-video__img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      max-height: 520px;
  }
  
  /* USPs */
  .usps {
      background: var(--color-light);
      padding: 40px 24px;
      border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  
  .usps-container {
      max-width: 1200px;
      margin: 0 auto;
  }
  
  .usps .usps-section-header.section-header {
      margin-bottom: 36px;
  }
  
  .usps .usps-section-header .section-title {
      max-width: 920px;
      margin-left: auto;
      margin-right: auto;
  }
  
  .usps-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
  }
  
  .usp-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 8px;
      background: #fff;
      border-radius: 12px;
      padding: 20px 16px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      border: 1px solid rgba(0,0,0,0.06);
      transition: transform 0.2s, box-shadow 0.2s;
  }
  
  .usp-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  }
  
  /* usp-icon in de home USP-balk (.usp-item) — kleine emoji, geen container */
  .usp-item .usp-text {
      font-size: 14px;
      font-weight: 700;
      color: var(--color-dark);
      font-family: inherit;
      line-height: 1.35;
  }
  
  /* Services */
  .services {
      padding: 80px 24px;
      background: #ffffff;
  }
  
  .services.services-regio {
      background: var(--color-light);
  }
  
  .services-container {
      max-width: 1200px;
      margin: 0 auto;
  }
  
  .services .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 0;
  }
  
  .services .service-card {
      background: #ffffff;
      border-radius: 16px;
      padding: 32px 24px;
      text-align: center;
      box-shadow: 0 4px 16px rgba(0,0,0,0.06);
      border: 1px solid rgba(0,0,0,0.06);
      transition: transform 0.25s, box-shadow 0.25s;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
  }
  
  .services.services-regio .service-card {
      background: #fff;
  }
  
  .services .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  }
  
  .service-image {
      font-size: 44px;
      line-height: 1;
      width: 80px;
      height: 80px;
      background: var(--color-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  
  .service-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
  }
  
  .service-title {
      font-size: 18px !important;
      font-weight: 800 !important;
      color: var(--color-dark) !important;
      font-family: inherit;
      line-height: 1.3 !important;
      margin: 0 !important;
  }
  
  .service-link {
      font-size: 14px;
      font-weight: 700;
      color: var(--color-primary) !important;
      text-decoration: none;
      border-bottom: 2px solid transparent;
      padding-bottom: 2px;
      transition: border-color 0.2s;
  }
  
  .service-link:hover {
      border-bottom-color: var(--color-primary);
      text-decoration: none;
  }
  
  .regio-cta {
      text-align: center;
      margin-top: 32px;
  }
  
  /* Stats */
  .stats {
      background: linear-gradient(135deg, var(--color-secondary) 0%, #162d4f 100%);
      padding: 64px 24px;
  }
  
  .stats-container {
      max-width: 1000px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
      text-align: center;
  }
  
  .stat-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
  }
  
  .stat-number {
      font-size: clamp(36px, 5vw, 52px);
      font-weight: 900;
      color: #ffffff;
      font-family: inherit;
      line-height: 1;
      letter-spacing: -0.03em;
  }
  
  .stat-label {
      font-size: 15px;
      font-weight: 600;
      color: rgba(255,255,255,0.75);
      font-family: inherit;
  }
  
  /* Reviews */
  .reviews {
      background: #ffffff;
      padding: 80px 0;
  }
  
  .reviews-container {
      max-width: none;
      width: 100%;
      margin: 0 auto;
  }
  
  /* CTA */
  .cta {
      background: linear-gradient(135deg, var(--color-primary) 0%, #8B1521 100%);
      padding: 80px 24px;
      text-align: center;
      position: relative;
      overflow: hidden;
  }
  
  .cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="g" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.06)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23g)"/></svg>');
      pointer-events: none;
  }
  
  .cta-container {
      max-width: 720px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
  }
  
  .cta-container h2 {
      font-size: clamp(28px, 4vw, 42px) !important;
      font-weight: 900 !important;
      color: #ffffff !important;
      font-family: inherit;
      margin-bottom: 16px !important;
      line-height: 1.15 !important;
      letter-spacing: -0.02em;
  }
  
  .cta-container p {
      font-size: 18px !important;
      line-height: 1.65 !important;
      color: rgba(255,255,255,0.88) !important;
      font-family: inherit;
      margin-bottom: 36px !important;
  }
  
  .cta-buttons {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
  }
  
  /* =============================================
     HOME RESPONSIVE
     ============================================= */
  
  @media (max-width: 1100px) {
      .hero .hero-container {
          grid-template-columns: 1fr 400px;
          gap: 36px;
          padding: 0 24px;
      }
  }
  
  @media (max-width: 900px) {
      .hero { padding: 48px 0 56px; }
  
      .hero .hero-container {
          grid-template-columns: 1fr;
          gap: 32px;
          padding: 0 20px;
      }
  
      .hero-content {
          align-items: center;
          text-align: center;
      }
  
      .hero-content > p {
          max-width: 100%;
      }
  
      .hero .form-card {
          max-width: 560px;
          margin: 0 auto;
          width: 100%;
      }
  
      .hero.hero--home .form-card {
          margin-bottom: -36px;
      }
  
      .usps-grid { grid-template-columns: repeat(3, 1fr); }
      .services .services-grid { grid-template-columns: repeat(2, 1fr); }
      .stats-container { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  }
  
  @media (max-width: 768px) {
      .hero-video { max-height: 280px; }
      .hero-video video,
      .hero-video img.hero-video__img { max-height: 280px; }
      .usps-grid { grid-template-columns: repeat(2, 1fr); }
      .hero-tagline { font-size: 22px !important; }
  }
  
  @media (max-width: 560px) {
      .hero .hero-container { padding: 0 16px; }
      .hero .form-card { padding: 28px 20px; }
      .usps-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
      .services .services-grid { grid-template-columns: 1fr; }
      .stats-container { grid-template-columns: repeat(2, 1fr); gap: 20px; }
      .hero-reviews { flex-direction: column; gap: 10px; }
      .cta-buttons { flex-direction: column; align-items: center; }
  }
  
  /* === PROJECTS GRID === */
  .projects-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
  }
  .project-card {
      background: #fff;
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: var(--shadow-card);
  }
  .project-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-card-hover);
  }
  .project-thumb {
      width: 100%;
      aspect-ratio: 3 / 2;
      object-fit: cover;
      display: block;
      background: linear-gradient(135deg, var(--color-secondary) 0%, #15283D 100%);
  }
  .project-thumb-placeholder {
      width: 100%;
      aspect-ratio: 3 / 2;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 48px;
      color: rgba(255,255,255,0.5);
      background: linear-gradient(135deg, var(--color-secondary) 0%, #15283D 100%);
  }
  .project-content { padding: 24px; }
  .project-title {
      font-size: 20px;
      font-weight: 800;
      color: var(--color-dark);
      margin-bottom: 12px;
      line-height: 1.3;
  }
  .project-title a { color: inherit; text-decoration: none; }
  .project-title a:hover { color: var(--color-primary); }
  .project-meta {
      font-size: 13px;
      color: #6c757d;
      margin-bottom: 12px;
      display: block;
  }
  .project-excerpt {
      font-size: 15px;
      color: #6c757d;
      line-height: 1.6;
      margin-bottom: 16px;
  }
  .project-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--color-primary);
      font-size: 14px;
      font-weight: 700;
      text-decoration: none;
      transition: gap 0.3s;
  }
  .project-link:hover { gap: 12px; }
  .no-projects {
      text-align: center;
      padding: 60px 24px;
      color: #6c757d;
      font-size: 18px;
  }
  @media (max-width: 1200px) {
      .projects-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 768px) {
      .projects-grid { grid-template-columns: 1fr; gap: 24px; }
  }
  
  /* === PAGINATION === */
  .pagination {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      margin-top: 48px;
      flex-wrap: wrap;
  }
  .pagination a,
  .pagination span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 44px;
      height: 44px;
      padding: 0 16px;
      border-radius: 10px;
      font-size: 15px;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.2s;
  }
  .pagination a {
      background: #f3f4f6;
      color: var(--color-dark);
  }
  .pagination a:hover {
      background: var(--color-primary);
      color: #fff;
  }
  .pagination .current {
      background: var(--color-primary);
      color: #fff;
  }
  .pagination .dots {
      background: transparent;
      color: #6c757d;
  }
  .pagination .prev,
  .pagination .next {
      background: linear-gradient(135deg, var(--color-primary) 0%, #8B1521 100%);
      color: #fff;
      box-shadow: 0 4px 12px rgba(176, 30, 45, 0.25);
  }
  .pagination .prev:hover,
  .pagination .next:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(176, 30, 45, 0.35);
  }
  
  /* =============================================================
     SINGLE PROJECT — volledig herschreven
     ============================================================= */

  /* --- Hero aanpassingen voor project --- */
  .proj-hero { padding-bottom: 56px; }
  .proj-hero-inner { text-align: left; }

  .proj-back-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: rgba(255, 255, 255, 0.55);
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
      margin-bottom: 20px;
      transition: color 0.2s, gap 0.2s;
      letter-spacing: 0.01em;
  }
  .proj-back-link svg { flex-shrink: 0; }
  .proj-back-link:hover { color: #fff; gap: 10px; }

  .proj-hero-meta {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 10px;
      margin-top: 16px;
  }
  .proj-hero-meta-item {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 50px;
      padding: 6px 14px;
      font-size: 13px;
      font-weight: 600;
      color: #d1d5db;
  }
  .proj-hero-meta-item svg { flex-shrink: 0; opacity: 0.7; }

  /* --- Layout --- */
  .single-section {
      background: var(--color-light);
      padding: 56px 24px 80px;
  }
  .single-container {
      max-width: 1340px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 360px;
      gap: 40px;
      align-items: start;
  }
  .single-main { min-width: 0; }
  .single-sidebar {
      position: sticky;
      top: 100px;
      display: flex;
      flex-direction: column;
      gap: 20px;
  }

  /* --- Uitgelichte afbeelding --- */
  .single-featured {
      width: 100%;
      border-radius: var(--radius-lg);
      overflow: hidden;
      margin-bottom: 24px;
      background: linear-gradient(135deg, var(--color-secondary) 0%, #15283D 100%);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  }
  .single-featured img {
      width: 100%;
      height: auto;
      display: block;
      aspect-ratio: 16 / 9;
      object-fit: cover;
  }
  .single-featured-placeholder {
      aspect-ratio: 16 / 9;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 64px;
      color: rgba(255, 255, 255, 0.3);
  }

  /* --- Body kaart --- */
  .single-body {
      background: #fff;
      border-radius: var(--radius-lg);
      padding: 48px;
      box-shadow: var(--shadow-card);
  }
  .single-body p {
      color: #4a5568;
      line-height: 1.75;
      margin-bottom: 1em;
      font-size: 16px;
  }
  .single-body a { color: var(--color-primary); font-weight: 600; }
  .single-body ul, .single-body ol {
      margin: 1em 0;
      padding-left: 1.5em;
      color: #4a5568;
      line-height: 1.7;
  }
  .single-body img {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin: 1em 0;
  }

  /* --- Stat bar: snelle feiten --- */
  .proj-stat-bar {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 0;
      margin-bottom: 40px;
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid #e8eaed;
  }
  .proj-stat {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 16px 20px;
      background: var(--color-light);
      border-right: 1px solid #e8eaed;
  }
  .proj-stat:last-child { border-right: none; }
  .proj-stat-icon {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      color: var(--color-primary);
  }
  .proj-stat div {
      display: flex;
      flex-direction: column;
      gap: 2px;
      min-width: 0;
  }
  .proj-stat-label {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.6px;
      color: #9ca3af;
  }
  .proj-stat-value {
      font-size: 14px;
      font-weight: 700;
      color: var(--color-dark);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
  }

  /* --- Sectietitels in body --- */
  .proj-section-title {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 20px !important;
      font-weight: 800 !important;
      color: var(--color-dark) !important;
      margin: 0 0 20px !important;
  }
  .proj-section-title-bar {
      display: inline-block;
      width: 4px;
      height: 22px;
      background: var(--color-primary);
      border-radius: 2px;
      flex-shrink: 0;
  }

  /* --- Werkzaamheden checklist --- */
  .proj-werkzaamheden { margin-bottom: 40px; }
  .proj-checklist {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 10px;
  }
  .proj-checklist-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 15px;
      color: #374151;
      font-weight: 500;
      line-height: 1.5;
      padding: 10px 14px;
      background: var(--color-light);
      border-radius: var(--radius-sm);
      border: 1px solid #e8eaed;
  }
  .proj-check-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: var(--color-primary);
      color: #fff;
      flex-shrink: 0;
      margin-top: 1px;
  }
  .proj-check-icon svg { display: block; }

  /* --- Situatie blok --- */
  .proj-situatie { margin-bottom: 40px; }
  .proj-situatie-body {
      display: flex;
      gap: 16px;
      background: #fffbeb;
      border: 1px solid #fde68a;
      border-left: 4px solid var(--color-accent);
      border-radius: var(--radius-md);
      padding: 20px 24px;
  }
  .proj-situatie-icon {
      color: var(--color-accent);
      flex-shrink: 0;
      margin-top: 2px;
  }
  .proj-situatie-body p {
      margin: 0;
      color: #78350f;
      font-size: 15px;
      line-height: 1.7;
  }

  /* --- WordPress content --- */
  .proj-content {
      margin-bottom: 40px;
      padding-bottom: 40px;
      border-bottom: 1px solid #e8eaed;
  }
  .proj-content:empty { display: none; }
  .proj-content h2 {
      font-size: 22px;
      font-weight: 800;
      color: var(--color-dark);
      margin: 1.5em 0 0.5em;
  }
  .proj-content h3 {
      font-size: 18px;
      font-weight: 700;
      color: var(--color-dark);
      margin: 1.25em 0 0.5em;
  }
  .proj-content p { color: #4a5568; line-height: 1.75; margin-bottom: 1em; font-size: 16px; }

  /* --- Resultaat blok --- */
  .proj-resultaat { margin-bottom: 40px; }
  .proj-resultaat-body {
      display: flex;
      gap: 16px;
      background: #f0fdf4;
      border: 1px solid #bbf7d0;
      border-left: 4px solid var(--color-success);
      border-radius: var(--radius-md);
      padding: 20px 24px;
  }
  .proj-resultaat-icon {
      color: var(--color-success);
      flex-shrink: 0;
      margin-top: 2px;
  }
  .proj-resultaat-body p {
      margin: 0;
      color: #14532d;
      font-size: 15px;
      line-height: 1.7;
  }

  /* --- Terug knop onderaan --- */
  .proj-back-wrap {
      padding-top: 32px;
      border-top: 1px solid #e8eaed;
      margin-top: 12px;
  }
  .proj-back-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--color-light);
      border: 1px solid #e8eaed;
      color: var(--color-dark);
      padding: 12px 20px;
      border-radius: var(--radius-sm);
      font-size: 14px;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.2s;
  }
  .proj-back-btn:hover {
      background: var(--color-primary);
      border-color: var(--color-primary);
      color: #fff;
      gap: 12px;
  }

  /* --- Project sectietitels (galerij / video) --- */
  .project-gallery { margin: 40px 0 0; }
  .project-video-section { margin: 40px 0 0; }

  /* --- Sectietitels hergebruik --- */
  .project-gallery .proj-section-title,
  .project-video-section .proj-section-title { margin-bottom: 20px !important; }

  /* --- Gallery grid --- */
  .gallery-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
  }
  .gallery-item {
      position: relative;
      border-radius: var(--radius-md);
      overflow: hidden;
      aspect-ratio: 4 / 3;
      background: linear-gradient(135deg, var(--color-secondary) 0%, #15283D 100%);
      cursor: pointer;
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  }
  .gallery-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  }
  .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .gallery-item:hover img { transform: scale(1.06); }
  .gallery-item-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.35s;
      color: #fff;
  }
  .gallery-item-overlay svg { width: 32px; height: 32px; }
  .gallery-item:hover .gallery-item-overlay { opacity: 1; }

  /* --- Video --- */
  .video-container {
      position: relative;
      width: 100%;
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: var(--color-dark);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
      aspect-ratio: 16 / 9;
  }
  .video-container iframe,
  .video-container video {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      border: none;
  }

  /* --- Status badges --- */
  .status-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.4px;
      background: rgba(176, 30, 45, 0.1);
      color: var(--color-primary);
  }
  .status-badge::before {
      content: '';
      width: 7px; height: 7px;
      border-radius: 50%;
      background: currentColor;
      flex-shrink: 0;
  }
  .status-badge.afgerond {
      background: rgba(22, 163, 74, 0.1);
      color: #16a34a;
  }
  .status-badge.in-uitvoering {
      background: rgba(245, 158, 11, 0.1);
      color: #d97706;
  }
  .status-badge.gepland {
      background: rgba(31, 63, 109, 0.1);
      color: var(--color-secondary);
  }

  /* =============================================
     SIDEBAR
     ============================================= */

  /* --- CTA kaart --- */
  .cta-card {
      background: #fff;
      border-radius: var(--radius-lg);
      padding: 32px;
      box-shadow: var(--shadow-card);
      border-top: 4px solid var(--color-primary);
  }
  .cta-card-badge {
      display: inline-block;
      background: rgba(16, 185, 129, 0.1);
      color: var(--color-success);
      border: 1px solid rgba(16, 185, 129, 0.25);
      border-radius: 50px;
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 4px 12px;
      margin-bottom: 12px;
  }
  .cta-card h3 {
      font-size: 21px;
      font-weight: 800;
      color: var(--color-dark);
      margin-bottom: 8px;
      line-height: 1.2;
  }
  .cta-card p {
      font-size: 14px;
      color: #6c757d;
      margin-bottom: 24px;
      line-height: 1.6;
  }
  .cta-card .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 100%;
      padding: 14px 20px;
      border-radius: var(--radius-sm);
      font-size: 14px;
      font-weight: 800;
      text-decoration: none;
      transition: all 0.25s;
      margin-bottom: 10px;
      border: none;
      cursor: pointer;
      letter-spacing: 0.01em;
  }
  .cta-card .btn:last-child { margin-bottom: 0; }
  .cta-card .btn svg { width: 18px; height: 18px; flex-shrink: 0; }
  .cta-card .btn-primary {
      background: linear-gradient(135deg, var(--color-primary) 0%, #8B1521 100%);
      color: #fff;
      box-shadow: 0 4px 16px rgba(176, 30, 45, 0.3);
  }
  .cta-card .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(176, 30, 45, 0.4);
  }
  .cta-card .btn-secondary {
      background: var(--color-light);
      color: var(--color-dark);
      border: 1px solid #e8eaed;
  }
  .cta-card .btn-secondary:hover {
      background: #e8eaed;
      transform: translateY(-1px);
  }
  .cta-card .btn-whatsapp {
      background: #25d366;
      color: #fff;
  }
  .cta-card .btn-whatsapp:hover {
      background: #1ebe5d;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  }

  /* --- Project samenvatting kaart --- */
  .proj-summary-card {
      background: #fff;
      border-radius: var(--radius-lg);
      padding: 28px 32px;
      box-shadow: var(--shadow-card);
  }
  .proj-summary-title {
      font-size: 14px !important;
      font-weight: 800 !important;
      text-transform: uppercase;
      letter-spacing: 0.6px;
      color: #9ca3af !important;
      margin-bottom: 16px !important;
  }
  .proj-summary-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0;
  }
  .proj-summary-list li {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      padding: 11px 0;
      border-bottom: 1px solid #f3f4f6;
      flex-wrap: wrap;
  }
  .proj-summary-list li:last-child { border-bottom: none; padding-bottom: 0; }
  .proj-summary-label {
      font-size: 13px;
      font-weight: 600;
      color: #9ca3af;
      white-space: nowrap;
  }
  .proj-summary-val {
      font-size: 14px;
      font-weight: 700;
      color: var(--color-dark);
      text-align: right;
  }

  /* =============================================
     LIGHTBOX
     ============================================= */
  .lightbox {
      display: none;
      position: fixed;
      z-index: 99999;
      inset: 0;
      background: rgba(0, 0, 0, 0.96);
      align-items: center;
      justify-content: center;
      cursor: pointer;
  }
  .lightbox.active { display: flex; }
  #lightbox-img {
      max-width: 90%;
      max-height: 88vh;
      object-fit: contain;
      border-radius: 8px;
      box-shadow: 0 16px 64px rgba(0, 0, 0, 0.6);
  }
  .lightbox-close {
      position: absolute;
      top: 24px; right: 32px;
      color: #fff;
      font-size: 44px;
      font-weight: 300;
      cursor: pointer;
      z-index: 100000;
      transition: transform 0.3s, background 0.2s;
      width: 48px; height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      line-height: 1;
  }
  .lightbox-close:hover {
      transform: rotate(90deg);
      background: rgba(255, 255, 255, 0.18);
  }
  .lightbox-prev,
  .lightbox-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      color: #fff;
      font-size: 32px;
      font-weight: 300;
      cursor: pointer;
      user-select: none;
      transition: all 0.25s;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      width: 56px; height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  .lightbox-prev { left: 24px; }
  .lightbox-next { right: 24px; }
  .lightbox-prev:hover,
  .lightbox-next:hover {
      background: rgba(255, 255, 255, 0.22);
      transform: translateY(-50%) scale(1.08);
  }
  .lightbox-counter {
      position: absolute;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%);
      color: #fff;
      font-size: 14px;
      font-weight: 600;
      background: rgba(0, 0, 0, 0.55);
      padding: 7px 18px;
      border-radius: 20px;
      letter-spacing: 0.02em;
  }

  /* =============================================
     RESPONSIVE — Single project
     ============================================= */
  @media (max-width: 1024px) {
      .single-container {
          grid-template-columns: 1fr;
          gap: 32px;
      }
      .single-sidebar {
          position: static;
          display: grid;
          grid-template-columns: repeat(2, 1fr);
      }
  }
  @media (max-width: 768px) {
      .single-section { padding: 40px 16px 60px; }
      .single-body { padding: 28px 20px; }
      .proj-stat-bar { grid-template-columns: repeat(2, 1fr); }
      .proj-stat { border-right: none; border-bottom: 1px solid #e8eaed; }
      .proj-stat:last-child { border-bottom: none; }
      .proj-checklist { grid-template-columns: 1fr; }
      .project-gallery, .project-video-section { margin: 32px 0 0; }
      .gallery-grid { grid-template-columns: 1fr; gap: 12px; }
      .single-sidebar { grid-template-columns: 1fr; }
      .lightbox-close { top: 16px; right: 16px; font-size: 36px; width: 40px; height: 40px; }
      .lightbox-prev, .lightbox-next { width: 48px; height: 48px; font-size: 26px; }
      .lightbox-prev { left: 12px; }
      .lightbox-next { right: 12px; }
      #lightbox-img { max-width: 95%; max-height: 85vh; }
      .proj-hero-meta { gap: 8px; }
  }
  @media (max-width: 480px) {
      .proj-stat-bar { grid-template-columns: 1fr; }
      .proj-situatie-body, .proj-resultaat-body { flex-direction: column; gap: 10px; }
  }
  
  /* =============================================
     SINGLE DIENST
     ============================================= */
  .dienst-hero {
      position: relative;
      padding: 80px 24px 100px;
      background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
      z-index: 10;
      overflow: visible;
  }
  .dienst-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="g" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23g)"/></svg>');
      opacity: 0.5;
      pointer-events: none;
  }
  .dienst-hero-inner {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 460px;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 1;
  }
  .dienst-hero-inner > * { min-width: 0; }
  .dienst-hero-content { padding-right: 40px; }
  .dienst-hero-label {
      display: inline-block;
      background: rgba(176, 30, 45, 0.15);
      color: var(--color-primary);
      padding: 8px 20px;
      border-radius: 50px;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 24px;
      border: 1px solid rgba(176, 30, 45, 0.3);
  }
  .dienst-hero h1 {
      font-size: 52px;
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 24px;
      color: #fff;
      word-wrap: break-word;
  }
  .dienst-hero-intro {
      font-size: 18px;
      line-height: 1.7;
      color: #b0b0b0;
      margin-bottom: 32px;
      max-width: 560px;
  }
  .dienst-hero-intro p { margin-bottom: 0.6em; }
  .dienst-hero-loc {
      font-size: 14px;
      color: #888;
      font-weight: 600;
      margin-top: 16px;
  }
  .dienst-hero-trust {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
  }
  .dienst-hero-trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.12);
      padding: 10px 18px;
      border-radius: 10px;
      font-size: 13px;
      font-weight: 700;
      color: #e0e0e0;
  }
  
  /* Dienst hero form card */
  .dienst-form-card {
      background: #fff;
      border-radius: 20px;
      padding: 40px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
      position: relative;
      z-index: 20;
      overflow: hidden;
  }
  .dienst-form-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  }
  .dienst-form-card h3 {
      font-size: 26px;
      font-weight: 800;
      color: var(--color-dark);
      margin-bottom: 4px;
  }
  .dienst-form-card .dienst-form-sub {
      font-size: 20px;
      font-weight: 700;
      color: var(--color-primary);
      margin-bottom: 20px;
  }
  .dienst-form-card > p {
      font-size: 15px;
      color: #6c757d;
      margin-bottom: 24px;
      line-height: 1.5;
  }
  .dienst-form-card .dienst-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 100%;
      padding: 16px 24px;
      border-radius: 12px;
      font-size: 16px;
      font-weight: 800;
      text-decoration: none;
      margin-bottom: 12px;
      border: none;
      cursor: pointer;
      transition: all 0.3s;
  }
  .dienst-form-card .dienst-btn:last-child { margin-bottom: 0; }
  .dienst-form-card .dienst-btn--primary {
      background: linear-gradient(135deg, var(--color-primary) 0%, #8B1521 100%);
      color: #fff;
      box-shadow: 0 4px 20px rgba(176, 30, 45, 0.3);
  }
  .dienst-form-card .dienst-btn--primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 24px rgba(176, 30, 45, 0.4);
  }
  .dienst-form-card .dienst-btn--secondary {
      background: #f1f5f9;
      color: var(--color-dark);
  }
  .dienst-form-card .dienst-btn--secondary:hover {
      transform: translateY(-2px);
      background: #e9ecef;
  }
  .dienst-form-card .dienst-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
  
  /* Dienst content area */
  .dienst-content {
      padding: 80px 24px;
      background: linear-gradient(180deg, var(--color-light) 0%, #eef0f3 100%);
      position: relative;
  }
  .dienst-content::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(176, 30, 45, 0.15), transparent);
  }
  .dienst-content-inner {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 48px;
      align-items: start;
  }
  .dienst-main { min-width: 0; }
  
  /* Dienst section cards */
  .dienst-block {
      background: #fff;
      border-radius: var(--radius-lg);
      padding: 48px 48px 48px 56px;
      margin-bottom: 32px;
      box-shadow: var(--shadow-card);
      transition: box-shadow 0.3s;
      position: relative;
      overflow: hidden;
      border-left: 4px solid var(--color-primary);
  }
  .dienst-block::before {
      content: '';
      position: absolute;
      top: 0; right: 0;
      width: 120px; height: 120px;
      background: radial-gradient(circle at 100% 0%, rgba(176, 30, 45, 0.06) 0%, transparent 70%);
      pointer-events: none;
  }
  .dienst-block:hover { box-shadow: var(--shadow-card-hover); }
  .dienst-block h2 {
      font-size: 36px;
      font-weight: 900;
      color: var(--color-dark);
      margin-bottom: 20px;
      line-height: 1.15;
      position: relative;
      padding-bottom: 16px;
  }
  .dienst-block h2::after {
      content: '';
      position: absolute;
      left: 0; bottom: 0;
      width: 64px; height: 4px;
      background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
      border-radius: 2px;
  }
  .dienst-block h3 {
      font-size: 20px;
      font-weight: 800;
      color: var(--color-dark);
      margin-top: 28px;
      margin-bottom: 12px;
  }
  .dienst-block h3:first-child { margin-top: 0; }
  .dienst-block p, .dienst-block li {
      font-size: 16px;
      line-height: 1.75;
      color: #374151;
  }
  .dienst-block ul, .dienst-block ol {
      margin: 1em 0;
      padding-left: 1.5em;
  }
  .dienst-block a { color: var(--color-primary); font-weight: 700; }
  
  /* Dienst USP block */
  .dienst-usp {
      background: linear-gradient(145deg, #fff 0%, #fafbfc 100%);
      border-radius: var(--radius-lg);
      padding: 60px 48px;
      margin-bottom: 32px;
      box-shadow: var(--shadow-card);
      transition: box-shadow 0.3s;
      position: relative;
      border: 1px solid rgba(0, 0, 0, 0.04);
  }
  .dienst-usp::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
      border-radius: 0 0 16px 16px;
  }
  .dienst-usp:hover { box-shadow: var(--shadow-card-hover); }
  .dienst-usp-title {
      font-size: 14px;
      font-weight: 800;
      color: var(--color-primary);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 24px;
      text-align: center;
  }
  .dienst-usp-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
  }
  .dienst-usp-item {
      text-align: center;
      background: #fff;
      border-radius: var(--radius-lg);
      padding: 32px 24px;
      transition: all 0.3s;
      border: 1px solid rgba(0, 0, 0, 0.06);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
      position: relative;
  }
  .dienst-usp-item::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 4px; height: 0;
      background: var(--color-primary);
      border-radius: 16px 0 0 16px;
      transition: height 0.3s;
  }
  .dienst-usp-item:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  }
  .dienst-usp-item:hover::before { height: 100%; }
  .dienst-usp-icon {
      width: 64px; height: 64px;
      background: linear-gradient(135deg, var(--color-light) 0%, #e9ecef 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
      font-size: 28px;
      color: var(--color-primary);
  }
  .dienst-usp-item-title {
      font-size: 18px;
      font-weight: 800;
      color: var(--color-dark);
      margin-bottom: 8px;
  }
  .dienst-usp-item-text {
      font-size: 14px;
      font-weight: 600;
      color: #6c757d;
      line-height: 1.5;
  }
  
  /* Dienst FAQ */
  .dienst-faq {
      background: #fff;
      border-radius: var(--radius-lg);
      padding: 48px;
      margin-bottom: 32px;
      box-shadow: var(--shadow-card);
      overflow: hidden;
  }
  .dienst-faq-title {
      font-size: 28px;
      font-weight: 900;
      color: var(--color-dark);
      margin-bottom: 32px;
      padding-bottom: 16px;
      border-bottom: 3px solid var(--color-primary);
      display: inline-block;
  }
  .dienst-faq-item {
      border-bottom: 1px solid #e5e7eb;
      padding: 24px 0;
      transition: all 0.2s;
  }
  .dienst-faq-item:last-child { border-bottom: none; }
  .dienst-faq-item:hover {
      background: linear-gradient(90deg, rgba(176, 30, 45, 0.04), transparent);
      padding-left: 12px;
  }
  .dienst-faq-q {
      font-size: 17px;
      font-weight: 700;
      color: var(--color-dark);
      display: flex;
      align-items: flex-start;
      gap: 12px;
      min-width: 0;
      max-width: 100%;
      overflow-wrap: break-word;
      word-break: break-word;
  }
  .dienst-faq-q::before {
      content: '?';
      flex-shrink: 0;
      width: 32px; height: 32px;
      background: rgba(176, 30, 45, 0.12);
      color: var(--color-primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 800;
  }
  .dienst-faq-a {
      font-size: 15px;
      color: #4b5563;
      line-height: 1.7;
      padding-left: 44px;
      min-width: 0;
      max-width: 100%;
      overflow-wrap: break-word;
      word-break: break-word;
  }
  
  /* Dienst CTA block */
  .dienst-cta {
      background: linear-gradient(135deg, var(--color-primary) 0%, #8B1521 100%);
      border-radius: var(--radius-lg);
      padding: 80px 48px;
      margin-bottom: 32px;
      text-align: center;
      box-shadow: 0 20px 60px rgba(176, 30, 45, 0.3);
      position: relative;
      overflow: hidden;
  }
  .dienst-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="cta" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1" fill="rgba(255,255,255,0.06)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23cta)"/></svg>');
      pointer-events: none;
  }
  .dienst-cta > * { position: relative; z-index: 1; }
  .dienst-cta-title {
      font-size: 40px;
      font-weight: 900;
      color: #fff;
      margin-bottom: 24px;
      line-height: 1.15;
  }
  .dienst-cta-text {
      font-size: 20px;
      color: rgba(255, 255, 255, 0.95);
      margin-bottom: 40px;
      line-height: 1.5;
  }
  .dienst-cta .dienst-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 18px 40px;
      border-radius: 12px;
      font-size: 16px;
      font-weight: 800;
      text-decoration: none;
      transition: all 0.3s;
      margin: 0 8px;
  }
  .dienst-cta .dienst-cta-btn--white {
      background: #fff;
      color: var(--color-primary);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }
  .dienst-cta .dienst-cta-btn--white:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
  }
  .dienst-cta .dienst-cta-btn--ghost {
      background: rgba(255, 255, 255, 0.15);
      color: #fff;
      border: 2px solid rgba(255, 255, 255, 0.3);
  }
  .dienst-cta .dienst-cta-btn--ghost:hover {
      background: rgba(255, 255, 255, 0.25);
      transform: translateY(-3px);
  }
  
  /* Dienst gallery */
  .dienst-gallery { margin-bottom: 32px; }
  .dienst-gallery-title {
      font-size: 28px;
      font-weight: 900;
      color: var(--color-dark);
      margin-bottom: 24px;
  }
  .dienst-gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 24px;
  }
  .dienst-gallery-item {
      border-radius: var(--radius-lg);
      overflow: hidden;
      aspect-ratio: 4 / 3;
      background: #e5e7eb;
      transition: all 0.3s;
      box-shadow: var(--shadow-card);
      position: relative;
  }
  .dienst-gallery-item:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-card-hover);
  }
  .dienst-gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s;
  }
  .dienst-gallery-item:hover img { transform: scale(1.05); }
  .dienst-gallery-item::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.5) 100%);
      opacity: 0;
      transition: opacity 0.3s;
  }
  .dienst-gallery-item:hover::after { opacity: 1; }
  .dienst-gallery-cap {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 12px 16px;
      color: #fff;
      font-size: 13px;
      font-weight: 600;
      z-index: 1;
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.3s, transform 0.3s;
  }
  .dienst-gallery-item:hover .dienst-gallery-cap {
      opacity: 1;
      transform: translateY(0);
  }
  
  /* Dienst sidebar */
  .dienst-sidebar { align-self: start; }
  .dienst-sidebar-card {
      background: #fff;
      border-radius: var(--radius-lg);
      padding: 40px;
      margin-bottom: 24px;
      box-shadow: var(--shadow-card);
      transition: box-shadow 0.3s;
      position: relative;
      overflow: hidden;
  }
  .dienst-sidebar-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  }
  .dienst-sidebar-card:hover { box-shadow: var(--shadow-card-hover); }
  .dienst-sidebar-card h3 {
      font-size: 22px;
      font-weight: 800;
      color: var(--color-dark);
      margin-bottom: 12px;
  }
  .dienst-sidebar-card > p {
      font-size: 15px;
      color: #6c757d;
      margin-bottom: 28px;
      line-height: 1.5;
  }
  .dienst-sidebar-card .dienst-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 100%;
      padding: 16px 24px;
      border-radius: 12px;
      font-size: 16px;
      font-weight: 800;
      text-decoration: none;
      margin-bottom: 12px;
      transition: all 0.3s;
  }
  .dienst-sidebar-card .dienst-btn:last-child { margin-bottom: 0; }
  .dienst-sidebar-card .dienst-btn--primary {
      background: linear-gradient(135deg, var(--color-primary) 0%, #8B1521 100%);
      color: #fff;
      box-shadow: 0 4px 20px rgba(176, 30, 45, 0.3);
  }
  .dienst-sidebar-card .dienst-btn--primary:hover { transform: translateY(-2px); }
  .dienst-sidebar-card .dienst-btn--secondary {
      background: #f1f5f9;
      color: var(--color-dark);
  }
  .dienst-sidebar-card .dienst-btn--secondary:hover { transform: translateY(-2px); }
  .dienst-sidebar-card .dienst-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
  .dienst-sidebar-company {
      font-size: 14px;
      color: #6b7280;
      margin-top: 24px;
      padding-top: 24px;
      border-top: 1px solid #e5e7eb;
  }
  .dienst-sidebar-related {
      background: var(--color-light);
      border-radius: var(--radius-lg);
      padding: 28px;
      box-shadow: var(--shadow-card);
  }
  .dienst-sidebar-related h4 {
      font-size: 16px;
      font-weight: 800;
      color: var(--color-dark);
      margin-bottom: 20px;
  }
  .dienst-sidebar-related a {
      display: block;
      padding: 16px 20px;
      background: #fff;
      border-radius: 12px;
      margin-bottom: 10px;
      font-size: 14px;
      font-weight: 700;
      color: var(--color-dark);
      text-decoration: none;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
      transition: all 0.3s;
  }
  .dienst-sidebar-related a:hover {
      color: var(--color-primary);
      transform: translateX(6px);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  }
  .dienst-sidebar-related a:last-child { margin-bottom: 0; }
  
  /* Dienst static sections */
  .dienst-static-usps {
      background: #fff;
      padding: 60px 24px;
  }
  .dienst-static-usps-inner {
      max-width: 1400px;
      margin: 0 auto;
  }
  .dienst-static-usps-title {
      text-align: center;
      font-size: 14px;
      font-weight: 800;
      color: var(--color-primary);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 40px;
  }
  .dienst-static-usps-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 32px;
  }
  .dienst-static-usp {
      text-align: center;
  }
  .dienst-static-usp-icon {
      width: 64px; height: 64px;
      background: linear-gradient(135deg, var(--color-light) 0%, #e9ecef 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
      font-size: 28px;
      color: var(--color-dark);
  }
  .dienst-static-usp-text {
      font-size: 14px;
      font-weight: 700;
      color: var(--color-dark);
      line-height: 1.4;
  }
  
  /* Dienst reviews section */
  .dienst-reviews {
      background: #fff;
      padding: 100px 24px;
  }
  .dienst-reviews-inner {
      max-width: 1400px;
      margin: 0 auto;
  }
  .dienst-reviews-header {
      text-align: center;
      margin-bottom: 60px;
  }
  .dienst-reviews-header .section-label { margin-bottom: 16px; }
  .dienst-reviews-header .section-title {
      color: var(--color-dark);
      margin-bottom: 16px;
  }
  .dienst-reviews-header .section-subtitle { color: #6c757d; }
  .dienst-trustindex {
      background: var(--color-light);
      border-radius: 20px;
      padding: 60px;
      text-align: center;
      max-width: 100%;
      overflow-x: auto;
  }
  
  @media (max-width: 1024px) {
      .dienst-hero { padding: 60px 16px 80px; }
      .dienst-hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; padding: 0 16px; }
      .dienst-hero-content { padding-right: 0; }
      .dienst-hero-intro { margin-left: auto; margin-right: auto; }
      .dienst-hero-trust { justify-content: center; }
      .dienst-content-inner { grid-template-columns: 1fr; }
      .dienst-sidebar .dienst-sidebar-card { position: relative; top: auto; }
      .dienst-static-usps-grid { grid-template-columns: repeat(3, 1fr); }
  }
  @media (min-width: 1025px) {
      .dienst-sidebar .dienst-sidebar-card { position: sticky; top: 24px; }
  }
  @media (max-width: 768px) {
      .dienst-hero h1 { font-size: 36px; }
      .dienst-block { padding: 40px 24px 40px 32px; }
      .dienst-block h2 { font-size: 28px; }
      .dienst-cta-title { font-size: 28px; }
      .dienst-faq { padding: 32px 24px; }
      .dienst-reviews { padding: 60px 24px; }
      .dienst-trustindex { padding: 32px 20px; }
  }
  @media (max-width: 600px) {
      .dienst-usp-grid { grid-template-columns: 1fr; }
      .dienst-static-usps-grid { grid-template-columns: 1fr; }
      .dienst-hero-trust { flex-direction: column; align-items: center; }
      .dienst-cta .dienst-cta-btn { display: flex; width: 100%; justify-content: center; margin: 0 0 12px; }
  }
  
  /* =============================================
     SINGLE TEMPLATES (blog, vestiging, vacature)
     Gedeelde stijlen – geen inline CSS meer in templates.
     ============================================= */
  
  body.single,
  body.single-post,
  body[class*="single-"] {
      background: var(--color-dark) !important;
      color: #ffffff !important;
      font-family: inherit;
      overflow-x: hidden;
  }
  
  .progress-tracker {
      position: fixed;
      top: 0;
      left: 0;
      height: 4px;
      background: var(--color-primary);
      z-index: 9999;
      transition: width 0.12s ease-out;
      will-change: width;
      width: 0%;
  }
  
  .hero .hero-container {
      text-align: center;
  }
  
  .hero-meta {
      font-size: 16px;
      color: #b0b0b0;
  }
  
  .hero-meta span { margin: 0 8px; }
  
  /* ─── Single blog: hero met uitgelichte afbeelding (doorschijnend) ─── */
  .hero.blog-hero {
      position: relative;
      overflow: hidden;
      isolation: isolate;
  }
  .hero.blog-hero.blog-hero--has-image {
      min-height: min(52vh, 560px);
      padding-top: var(--space-xl);
      padding-bottom: 72px;
      display: flex;
      align-items: flex-end;
  }
  .blog-hero__bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      background-size: cover;
      background-position: center;
      transform: scale(1.03);
      filter: saturate(1.05);
  }
  .blog-hero__overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(
          165deg,
          rgba(8, 10, 14, 0.88) 0%,
          rgba(12, 14, 20, 0.82) 40%,
          rgba(10, 12, 18, 0.94) 100%
      );
      pointer-events: none;
  }
  .hero.blog-hero::before {
      z-index: 2;
      pointer-events: none;
  }
  .hero.blog-hero .hero-container.blog-hero__inner {
      position: relative;
      z-index: 3;
      text-align: left;
      max-width: 920px;
      margin-left: 0;
      margin-right: auto;
  }
  .blog-hero__bar {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 12px 20px;
      margin-bottom: 20px;
  }
  .blog-hero__bar .back-link {
      margin-bottom: 0;
  }
  .hero.blog-hero h1 {
      text-align: left !important;
      max-width: 100%;
  }
  .hero.blog-hero .hero-meta {
      margin-top: 8px;
  }
  
  /* Uitgelichte afbeelding onder artikel (tweede weergave) */
  .single-featured-end {
      margin: 40px 0 0;
      padding: 0;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
      background: var(--color-light);
  }
  .single-featured-end__img {
      display: block;
      width: 100%;
      height: auto;
  }
  .single-featured-end__caption {
      display: block;
      padding: 14px 18px;
      font-size: 14px;
      color: #6c757d;
      line-height: 1.5;
      border-top: 1px solid rgba(0, 0, 0, 0.06);
  }
  .single-body-back {
      margin-top: 2em;
      padding-top: 8px;
  }
  .single-body .back-link--on-light {
      color: var(--color-primary);
  }
  .single-body .back-link--on-light:hover {
      color: var(--color-primary);
      opacity: 0.88;
  }
  
  body.single-post .single-container {
      grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
      gap: clamp(28px, 4vw, 56px);
  }
  
  @media (max-width: 768px) {
      .hero { padding: 60px 16px 80px !important; }
      .hero-container { padding: 0 16px !important; }
      .hero.blog-hero.blog-hero--has-image {
          min-height: 0;
          align-items: flex-start;
      }
      .blog-hero__bar {
          flex-direction: column;
          align-items: flex-start;
      }
      .single-section { padding: 60px 16px !important; }
      .single-body { padding: 28px 20px !important; }
  }
  
  @media (max-width: 1024px) {
      .single-container { grid-template-columns: 1fr; gap: 40px; }
      .single-sidebar { position: static; }
  }
  
  /* Vestiging single */
  /* Vestiging featured image: full width, zelfde stijl als hero-video op home */
  .vestiging-featured-image {
      width: 100%;
      max-height: 520px;
      overflow: hidden;
      background: #0a0a0a;
      display: block;
  }
  
  .vestiging-featured-image img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      max-height: 520px;
  }
  
  @media (max-width: 768px) {
      .vestiging-featured-image { max-height: 280px; }
      .vestiging-featured-image img { max-height: 280px; }
  }
  
  .vestiging-details {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-bottom: 32px;
      padding: 24px;
      background: #fff;
      border-radius: 12px;
      border-left: 4px solid var(--color-primary);
      box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  }
  
  @media (max-width: 600px) {
      .vestiging-details { grid-template-columns: 1fr; gap: 16px; }
  }
  
  .vestiging-detail-item {
      display: flex;
      flex-direction: column;
      gap: 4px;
  }
  
  .vestiging-detail-label {
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: #6c757d;
  }
  
  .vestiging-detail-value {
      font-size: 16px;
      font-weight: 600;
      color: var(--color-dark);
  }
  
  .vestiging-detail-value a {
      color: var(--color-primary);
      text-decoration: none;
  }
  
  .vestiging-detail-value a:hover {
      text-decoration: underline;
  }

  /* Single vestiging: compacte hero, minder 'kaart-in-kaart', rustigere labels */
  body.single-vestiging .hero.blog-hero.hero--vestiging {
      padding: 28px 24px 32px !important;
  }
  body.single-vestiging .hero.blog-hero.hero--vestiging .hero-container.blog-hero__inner {
      max-width: 1140px;
  }
  body.single-vestiging .hero.blog-hero.hero--vestiging h1 {
      font-size: clamp(26px, 3.2vw, 38px) !important;
      margin-bottom: 6px !important;
  }
  body.single-vestiging .hero.blog-hero.hero--vestiging .hero-meta {
      margin-top: 4px;
      margin-bottom: 0 !important;
  }
  body.single-vestiging .blog-hero__bar .back-link {
      display: inline-flex;
      align-items: center;
      color: var(--color-primary);
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      margin-bottom: 0;
      transition: color 0.2s, opacity 0.2s;
  }
  body.single-vestiging .blog-hero__bar .back-link:hover {
      color: #fff;
      opacity: 0.95;
      text-decoration: underline;
  }
  body.single-vestiging .single-section {
      padding: 44px 24px 72px;
  }
  body.single-vestiging .single-body {
      padding: 36px 40px 40px;
  }
  body.single-vestiging .vestiging-details {
      margin-bottom: 28px;
      padding: 20px 22px 22px;
      background: #f1f5f9;
      border: 1px solid #e2e8f0;
      border-left: 3px solid var(--color-primary);
      border-radius: var(--radius-md);
      box-shadow: none;
      gap: 18px 28px;
  }
  body.single-vestiging .vestiging-detail-label {
      font-size: 13px;
      font-weight: 600;
      text-transform: none;
      letter-spacing: 0.01em;
      color: #64748b;
  }
  body.single-vestiging .vestiging-detail-value {
      font-size: 16px;
      font-weight: 600;
  }
  @media (min-width: 601px) {
      body.single-vestiging .vestiging-detail-item--full {
          grid-column: 1 / -1;
      }
  }
  body.single-vestiging .single-sidebar .cta-card {
      padding: 28px 26px 30px;
      border-top-width: 3px;
  }
  body.single-vestiging .single-sidebar .cta-card p {
      margin-bottom: 20px;
  }
  @media (min-width: 1025px) {
      body.single-vestiging .single-sidebar {
          top: 88px;
      }
  }
  @media (max-width: 768px) {
      body.single-vestiging .hero.blog-hero.hero--vestiging {
          padding: 22px 16px 26px !important;
      }
      body.single-vestiging .single-section {
          padding: 36px 16px 56px !important;
      }
      body.single-vestiging .single-body {
          padding: 24px 20px 28px !important;
      }
  }
  
  /* Vacature single */
  .vacature-details {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-bottom: 32px;
      padding: 24px;
      background: #fff;
      border-radius: 12px;
      border-left: 4px solid var(--color-primary);
      box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  }
  
  @media (max-width: 600px) {
      .vacature-details { grid-template-columns: 1fr; gap: 16px; }
  }
  
  .vacature-detail-item {
      display: flex;
      flex-direction: column;
      gap: 4px;
  }
  
  .vacature-detail-label {
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: #6c757d;
  }
  
  .vacature-detail-value {
      font-size: 16px;
      font-weight: 600;
      color: var(--color-dark);
  }
  
  .vacature-block {
      margin-bottom: 32px;
  }
  
  .vacature-block:last-child { margin-bottom: 0; }
  
  .vacature-block h3 {
      font-size: 20px;
      font-weight: 800;
      color: var(--color-dark);
      margin-bottom: 12px;
      padding-bottom: 8px;
      border-bottom: 2px solid var(--color-primary);
  }
  
  .vacature-block .vacature-block-content {
      font-size: 16px;
      line-height: 1.75;
      color: #374151;
  }
  
  .vacature-block .vacature-block-content p {
      margin-bottom: 1em;
  }
  
  .vacature-block .vacature-block-content p:last-child {
      margin-bottom: 0;
  }
  
  .vacature-intro {
      font-size: 18px;
      line-height: 1.7;
      color: #374151;
      margin-bottom: 28px;
  }
  
  /* Single body: tabellen (blog e.d.) */
  .single-body table {
      width: 100%;
      border-collapse: collapse;
      margin: 1.5em 0;
      font-size: 15px;
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  }
  
  .single-body thead th {
      background: linear-gradient(135deg, var(--color-primary) 0%, #8B1521 100%);
      color: #fff !important;
      font-weight: 700;
      text-align: left;
      padding: 14px 16px;
      border: none;
      font-family: inherit;
  }
  
  .single-body thead th:first-child { border-radius: 12px 0 0 0; }
  .single-body thead th:last-child { border-radius: 0 12px 0 0; }
  
  .single-body tbody tr {
      border-bottom: 1px solid #e5e7eb;
  }
  
  .single-body tbody tr:last-child { border-bottom: none; }
  
  .single-body tbody tr:nth-child(even) {
      background: #f8f9fa;
  }
  
  .single-body tbody td {
      padding: 12px 16px;
      color: #4a5568;
      line-height: 1.5;
      border: none;
      border-right: 1px solid #e5e7eb;
  }
  
  .single-body tbody td:last-child { border-right: none; }
  
  .single-body tbody tr:hover {
      background: #f0f4f8;
  }
  
  .single-body .wp-block-table,
  .single-body figure.wp-block-table {
      margin: 1.5em 0;
  }
  
  .single-body .table-wrapper {
      width: 100%;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      margin: 1.5em 0;
      -ms-overflow-style: -ms-autohiding-scrollbar;
      scrollbar-width: thin;
  }
  
  .single-body .table-wrapper::-webkit-scrollbar {
      height: 8px;
  }
  
  .single-body .table-wrapper::-webkit-scrollbar-track {
      background: #f1f1f1;
      border-radius: 4px;
  }
  
  .single-body .table-wrapper::-webkit-scrollbar-thumb {
      background: #888;
      border-radius: 4px;
  }
  
  .single-body .table-wrapper::-webkit-scrollbar-thumb:hover {
      background: #555;
  }
  
  @media (max-width: 768px) {
      .single-body .wp-block-table,
      .single-body figure.wp-block-table {
          overflow-x: auto !important;
          -webkit-overflow-scrolling: touch;
          width: 100%;
          display: block;
          margin: 1.5em 0;
      }
  
      .single-body .wp-block-table table,
      .single-body figure.wp-block-table table {
          min-width: 600px;
          width: auto;
          font-size: 14px;
      }
  
      .single-body > table,
      .single-body p > table,
      .single-body div > table {
          display: block;
          width: 100%;
          overflow-x: auto;
          -webkit-overflow-scrolling: touch;
          margin: 1.5em 0;
      }
  
      .single-body > table table,
      .single-body p > table table,
      .single-body div > table table {
          min-width: 600px;
          width: auto;
          font-size: 14px;
      }
  
      .single-body thead th,
      .single-body tbody td {
          padding: 10px 12px;
          white-space: nowrap;
      }
  
      .single-body .table-wrapper {
          overflow-x: auto !important;
          -webkit-overflow-scrolling: touch;
          width: 100%;
          margin: 1.5em 0;
      }
  
      .single-body .table-wrapper table {
          min-width: 600px;
          width: auto;
          font-size: 14px;
      }
  }
  
  @media (max-width: 480px) {
      .single-body table {
          font-size: 13px;
          min-width: 500px;
      }
  
      .single-body thead th,
      .single-body tbody td {
          padding: 8px 10px;
      }
  }
  
  .margin-top-lg { margin-top: 2rem; }
  
  /* =============================================================
  /* =============================================================
     DAKLEKKAGE SPOED – Page Template Styles
     Template: page-daklekkage-spoed.php
     Fonts: Barlow Condensed (headings) + DM Sans (body)
     ============================================================= */
  
  /* ─── Global reset ─────────────────────────────────── */
  .spoed-ticker, .spoed-hero, .spoed-section,
  .spoed-final-cta, .spoed-sticky-bar {
    
    box-sizing: border-box;
  }
  .spoed-ticker *, .spoed-hero *, .spoed-section *,
  .spoed-final-cta *, .spoed-sticky-bar * {
    box-sizing: border-box;
  }
  
  /* ─── Ticker bar ───────────────────────────────────── */
  .spoed-ticker {
    background: var(--spoed-red);
    color: #fff;
    padding: 12px 20px;
    text-align: center;
    font-size: 13.5px;
    font-weight: 600;
    
    position: relative;
    z-index: 100;
    width: 100%;
  }
  .spoed-ticker .ticker-inner {
    display: flex; align-items: center; justify-content: center;
    gap: 10px; flex-wrap: wrap;
  }
  .spoed-ticker .ticker-pulse {
    width: 8px; height: 8px; border-radius: 50%; background: #fff;
    display: inline-block; flex-shrink: 0;
    animation: spoed-pulse 1.5s infinite;
  }
  @keyframes spoed-pulse {
    0%,100% { opacity:1; transform:scale(1); }
    50%      { opacity:.4; transform:scale(1.4); }
  }
  .spoed-ticker .ticker-divider { opacity: .4; }
  .spoed-ticker a { color: #fff; font-weight: 800; text-decoration: underline; }
  .spoed-ticker .ticker-live { color: rgba(255,255,255,0.85); font-size: 12px; }
  
  /* ─── HERO ─────────────────────────────────────────── */
  .spoed-hero {
    background: #0C0D0F !important;
    position: relative;
    overflow: hidden;
    padding: 60px 40px 0;
    width: 100%;
  }
  .spoed-hero .hero-bg-overlay {
    position: absolute; inset: 0; z-index: 0;
    background:
      radial-gradient(ellipse 70% 60% at 60% 0%, rgba(192,32,47,0.18) 0%, transparent 70%),
      radial-gradient(ellipse 40% 40% at 10% 100%, rgba(192,32,47,0.08) 0%, transparent 60%);
    pointer-events: none;
  }
  .spoed-hero .hero-rain {
    position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .04;
    background-image: repeating-linear-gradient(
      165deg,
      transparent 0, transparent 3px,
      rgba(255,255,255,0.6) 3px, rgba(255,255,255,0.6) 4px
    );
    background-size: 8px 40px;
    animation: spoed-rain 0.8s linear infinite;
  }
  @keyframes spoed-rain { to { background-position: 0 40px; } }
  
  .spoed-hero .spoed-hero-inner {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 460px;
    gap: 48px; align-items: start;
    position: relative; z-index: 2;
  }
  
  /* Hero copy */
  .spoed-hero .hero-copy {
    padding-bottom: 60px;
  }
  .spoed-hero .hero-badge-row {
    display: flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap;
  }
  .spoed-hero .badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 16px; border-radius: 50px;
    font-size: 11.5px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .8px;
    
  }
  .spoed-hero .badge--emergency {
    background: rgba(192,32,47,.25);
    color: #FF6B6B !important;
    border: 1px solid rgba(192,32,47,.5);
  }
  .spoed-hero .badge--cert {
    background: rgba(16,185,129,.2);
    color: #34D399 !important;
    border: 1px solid rgba(16,185,129,.4);
  }
  
  .spoed-hero .hero-copy h1 {
    
    font-size: clamp(52px, 5.5vw, 80px) !important;
    font-weight: 900 !important;
    line-height: 1.0 !important;
    color: #ffffff !important;
    margin-bottom: 20px !important;
    text-transform: uppercase !important;
    letter-spacing: -0.5px !important;
  }
  .spoed-hero .hero-accent {
    color: var(--spoed-red) !important;
    display: block;
  }
  .spoed-hero .hero-sub {
    font-size: 17px; line-height: 1.65;
    color: #9CA3AF !important;
    max-width: 520px; margin-bottom: 28px;
  }
  .spoed-hero .hero-sub strong { color: #fff !important; }
  
  /* Social proof */
  .spoed-hero .hero-social-proof {
    display: flex; align-items: center; gap: 24px;
    margin-bottom: 32px; flex-wrap: wrap;
  }
  .spoed-hero .star-row {
    display: flex; align-items: center; gap: 8px;
  }
  .spoed-hero .stars {
    color: #FBBF24 !important; font-size: 18px; letter-spacing: 2px;
  }
  .spoed-hero .star-row strong {
    font-size: 18px; color: #fff !important; font-weight: 800;
  }
  .spoed-hero .star-row span {
    font-size: 13px; color: #9CA3AF !important;
  }
  .spoed-hero .recent-calls {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: #9CA3AF !important;
  }
  .spoed-hero .dot-live {
    width: 8px; height: 8px; border-radius: 50%;
    background: #10B981; display: inline-block; flex-shrink: 0;
    box-shadow: 0 0 6px #10B981;
    animation: spoed-pulse 1.5s infinite;
  }
  
  /* Hero CTA button */
  .spoed-hero .hero-cta-btn {
    display: inline-flex; align-items: center; gap: 12px;
    background: var(--spoed-red);
    color: #fff !important; 
    font-size: 22px; font-weight: 800; text-transform: uppercase;
    padding: 18px 36px; border-radius: var(--spoed-radius);
    text-decoration: none !important; letter-spacing: 0.5px;
    box-shadow: 0 8px 32px var(--spoed-red-glow);
    transition: transform .2s, box-shadow .2s, background .2s;
    position: relative; overflow: hidden;
  }
  .spoed-hero .hero-cta-btn::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.1) 0%, transparent 50%);
    pointer-events: none;
  }
  .spoed-hero .hero-cta-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 16px 48px var(--spoed-red-glow) !important;
    background: #D42232 !important;
    color: #fff !important;
  }
  .spoed-hero .hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 14px;
  }
  .spoed-hero .hero-cta-btn--offerte {
    background: transparent !important;
    background-image: none !important;
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.55) !important;
    box-shadow: none !important;
    font-size: 17px;
    font-weight: 800;
    text-transform: none;
    letter-spacing: 0;
    padding: 16px 28px;
  }
  .spoed-hero .hero-cta-btn--offerte::after {
    display: none;
  }
  .spoed-hero .hero-cta-btn--offerte:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.9) !important;
    color: #fff !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2) !important;
  }
  .spoed-hero .hero-cta-sub {
    font-size: 12.5px; color: #6B7280 !important;
    margin-top: 12px; margin-bottom: 28px;
  }
  
  /* Certifications */
  .spoed-hero .hero-certs {
    display: flex; gap: 12px; flex-wrap: wrap;
  }
  .spoed-hero .cert-item {
    display: flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 10px; padding: 10px 16px;
    font-size: 13px; font-weight: 700;
    color: rgba(255,255,255,0.85) !important;
  }
  .spoed-hero .cert-item img {
    width: 28px; height: 28px; object-fit: contain;
    filter: brightness(0) invert(1);
  }
  
  /* Hero form card */
  .spoed-hero .hero-form-wrap {
    padding-top: 0; padding-bottom: 32px;
  }
  .spoed-hero .hero-form-card {
    background: #fff;
    border-radius: var(--spoed-radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
  }
  .spoed-hero .form-card-header {
    background: linear-gradient(135deg, #141619 0%, #1E2128 100%);
    padding: 24px 28px;
    display: flex; align-items: flex-start; gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .spoed-hero .form-header-icon {
    font-size: 32px; flex-shrink: 0;
  }
  .spoed-hero .form-card-header h2 {
    
    font-size: 22px !important; font-weight: 800 !important;
    color: #fff !important; margin: 0 0 6px !important;
    line-height: 1.2 !important; text-transform: uppercase !important;
  }
  .spoed-hero .form-accent {
    color: var(--spoed-red) !important;
  }
  .spoed-hero .form-card-header p {
    font-size: 13px; color: #9CA3AF !important; margin: 0;
  }
  .spoed-hero .form-body {
    padding: 24px 28px;
  }
  .spoed-hero .form-trust-row {
    display: flex; gap: 16px; padding: 16px 28px;
    background: #F9FAFB; border-top: 1px solid #E5E7EB;
  }
  .spoed-hero .form-trust-row span {
    font-size: 12.5px; color: #6B7280; font-weight: 600;
  }
  .spoed-hero .form-alt-cta {
    padding: 16px 28px; text-align: center;
    font-size: 14px; color: #6B7280;
    border-top: 1px solid #E5E7EB;
  }
  .spoed-hero .form-alt-cta a {
    color: var(--spoed-red) !important; font-size: 20px; font-weight: 800;
     text-decoration: none !important;
    display: block; margin-top: 4px; letter-spacing: .5px;
  }
  
  /* Hero trust bar */
  .spoed-hero .hero-trust-bar {
    max-width: 1280px; margin: 40px auto 0;
    display: flex; align-items: center; justify-content: space-around;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--spoed-radius); padding: 24px 40px;
    position: relative; z-index: 2;
    flex-wrap: wrap; gap: 16px;
  }
  .spoed-hero .htb-item {
    text-align: center; flex: 1; min-width: 80px;
  }
  .spoed-hero .htb-num {
    display: block;
    
    font-size: 32px; font-weight: 900;
    color: var(--spoed-red) !important;
    line-height: 1; margin-bottom: 4px;
  }
  .spoed-hero .htb-label {
    font-size: 12px; color: #6B7280 !important;
    font-weight: 600; text-transform: uppercase; letter-spacing: .5px;
  }
  .spoed-hero .htb-divider {
    width: 1px; height: 40px; background: rgba(255,255,255,0.1);
    flex-shrink: 0;
  }
  
  /* ─── SECTION BASE ─────────────────────────────────── */
  .spoed-section {
    padding: 90px 40px;
    width: 100%;
  }
  .spoed-section--dark {
    background: #141619 !important;
  }
  .spoed-section--gray {
    background: #F3F4F6 !important;
  }
  .spoed-container {
    max-width: 1200px; margin: 0 auto;
  }
  .spoed-container--narrow {
    max-width: 860px; margin: 0 auto;
  }
  
  .spoed-section .section-header-center {
    text-align: center; margin-bottom: 56px;
  }
  .spoed-section .section-header-center h2 {
    
    font-size: clamp(36px, 4vw, 54px) !important;
    font-weight: 900 !important; text-transform: uppercase;
    line-height: 1.1 !important; color: #1a1a1a !important;
    margin: 12px 0 !important;
  }
  .spoed-section--dark .section-header-center h2 {
    color: #ffffff !important;
  }
  .spoed-section .section-header-center p {
    font-size: 17px !important; color: #6B7280 !important;
  }
  
  /* Section chips */
  .spoed-section .section-chip {
    display: inline-block; padding: 7px 18px; border-radius: 50px;
    font-size: 11px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 1px;
    
  }
  .spoed-section .chip--primary {
    background: rgba(192,32,47,.1);
    color: var(--spoed-red) !important;
    border: 1px solid rgba(192,32,47,.25);
  }
  .spoed-section .chip--warning {
    background: rgba(245,158,11,.1);
    color: #D97706 !important;
    border: 1px solid rgba(245,158,11,.25);
  }
  .spoed-section .chip--light {
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.9) !important;
    border: 1px solid rgba(255,255,255,.2);
  }
  
  /* ─── URGENCY ──────────────────────────────────────── */
  .spoed-urgency {
    background: #fff !important;
  }
  .spoed-urgency .urgency-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: start;
  }
  .spoed-urgency .urgency-left h2 {
    
    font-size: clamp(32px, 3.5vw, 48px) !important;
    font-weight: 900 !important; text-transform: uppercase;
    line-height: 1.1 !important; color: #1a1a1a !important;
    margin: 12px 0 16px !important;
  }
  .spoed-urgency .urgency-left > p {
    font-size: 16px; color: #6B7280 !important;
    line-height: 1.7; margin-bottom: 32px;
  }
  .spoed-urgency .damage-timeline {
    display: flex; flex-direction: column; gap: 14px;
  }
  .spoed-urgency .dtl-item {
    display: flex; align-items: center; gap: 14px;
  }
  .spoed-urgency .dtl-time {
    font-size: 13px; font-weight: 700; color: #1a1a1a !important;
    min-width: 70px; 
  }
  .spoed-urgency .dtl-bar {
    height: 10px; border-radius: 5px;
  }
  .spoed-urgency .dtl-bar--low  { background: linear-gradient(90deg, #FEF3C7, #FCD34D); width: 25%; min-width: 60px; }
  .spoed-urgency .dtl-bar--mid  { background: linear-gradient(90deg, #FCD34D, #F59E0B); width: 50%; min-width: 120px; }
  .spoed-urgency .dtl-bar--high { background: linear-gradient(90deg, #F59E0B, #EF4444); width: 75%; min-width: 180px; }
  .spoed-urgency .dtl-bar--crit {
    background: linear-gradient(90deg, #EF4444, #991B1B);
    flex: 1; animation: spoed-crit 2s infinite;
  }
  @keyframes spoed-crit { 0%,100%{ opacity:1; } 50%{ opacity:.7; } }
  .spoed-urgency .dtl-desc {
    font-size: 13px; color: #6B7280 !important; min-width: 200px;
  }
  .spoed-urgency .damage-list {
    background: #FEF2F2; border: 1px solid #FECACA;
    border-radius: var(--spoed-radius); padding: 32px; margin-bottom: 28px;
  }
  .spoed-urgency .damage-list h3 {
    
    font-size: 20px !important; font-weight: 800 !important;
    text-transform: uppercase; color: #1a1a1a !important; margin-bottom: 20px !important;
  }
  .spoed-urgency .damage-list ul {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 14px;
  }
  .spoed-urgency .damage-list li {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 15px; color: #1a1a1a !important; line-height: 1.5;
  }
  .spoed-urgency .dmg-icon {
    display: flex; align-items: center; justify-content: center;
    width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
    font-size: 13px; font-weight: 900;
  }
  .spoed-urgency .dmg--bad {
    background: #FEE2E2; color: #DC2626 !important;
  }
  
  /* Urgency CTA */
  .spoed-urgency .spoed-cta-btn,
  .spoed-why .spoed-cta-btn--primary {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    background: var(--spoed-red); color: #fff !important;
     font-size: 18px; font-weight: 800;
    text-transform: uppercase; letter-spacing: .5px;
    padding: 16px 32px; border-radius: var(--spoed-radius);
    text-decoration: none !important;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 6px 24px var(--spoed-red-glow);
  }
  .spoed-urgency .spoed-cta-btn:hover,
  .spoed-why .spoed-cta-btn--primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 36px var(--spoed-red-glow) !important;
    color: #fff !important;
  }
  
  /* ─── STEPS ────────────────────────────────────────── */
  .spoed-steps .steps-grid {
    display: flex; align-items: flex-start; gap: 0;
  }
  .spoed-steps .step-card {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--spoed-radius-lg); padding: 36px 28px;
    transition: background .3s, border-color .3s;
  }
  .spoed-steps .step-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(192,32,47,.4);
  }
  .spoed-steps .step-number {
    font-size: 64px; font-weight: 900;
    color: rgba(255,255,255,.15) !important;
    line-height: 1; margin-bottom: 16px;
  }
  .spoed-steps .step-icon {
    font-size: 36px; margin-bottom: 16px;
  }
  .spoed-steps .step-card h3 {
    font-size: 22px !important; font-weight: 800 !important;
    text-transform: uppercase; color: #fff !important;
    margin-bottom: 12px !important; line-height: 1.2 !important;
  }
  .spoed-steps .step-card p {
    font-size: 15px; color: #9CA3AF !important;
    line-height: 1.65; margin-bottom: 20px;
  }
  .spoed-steps .step-time {
    font-size: 13px; font-weight: 700; color: rgba(255,255,255,.7) !important;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
    padding: 8px 14px; border-radius: 8px; display: inline-block;
  }
  .spoed-steps .step-connector {
    font-size: 28px; color: rgba(255,255,255,.3) !important;
    opacity: .5; padding: 0 16px; padding-top: 60px; flex-shrink: 0;
  }
  
  /* ─── CAUSES ───────────────────────────────────────── */
  .spoed-causes {
    background: #fff !important;
  }
  .spoed-causes .causes-grid-new {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }
  .spoed-causes .cause-card-new {
    border: 1px solid #E5E7EB; border-radius: var(--spoed-radius);
    padding: 28px; background: #fff;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    position: relative; overflow: hidden;
  }
  .spoed-causes .cause-card-new::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--spoed-red); transform: scaleX(0);
    transition: transform .3s; transform-origin: left;
  }
  .spoed-causes .cause-card-new:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,.08);
    border-color: #D1D5DB;
  }
  .spoed-causes .cause-card-new:hover::before {
    transform: scaleX(1);
  }
  .spoed-causes .cause-img {
    font-size: 40px; margin-bottom: 16px; display: block;
  }
  .spoed-causes .cause-card-new h3 {
    
    font-size: 20px !important; font-weight: 800 !important;
    text-transform: uppercase; color: #1a1a1a !important;
    margin-bottom: 8px !important;
  }
  .spoed-causes .cause-card-new p {
    font-size: 14.5px; color: #6B7280 !important;
    line-height: 1.6; margin-bottom: 16px;
  }
  .spoed-causes .cause-freq {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .6px; color: var(--spoed-red) !important;
    background: rgba(192,32,47,.08); padding: 5px 10px; border-radius: 6px;
  }

  /* ─── SCHUURDAK: PRIJS-SECTIE (page-schuurdak-renovatie) ─ */
  .schuurdak-prijzen {
    --schuurdak-amber: #b45309;
    --schuurdak-amber-dark: #92400e;
    --schuurdak-cream: #fffbeb;
  }
  .schuurdak-prijzen .schuurdak-prijzen__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
  }
  @media (max-width: 992px) {
    .schuurdak-prijzen .schuurdak-prijzen__cards {
      grid-template-columns: 1fr;
      max-width: 480px;
      margin-left: auto;
      margin-right: auto;
    }
  }
  @media (min-width: 993px) and (max-width: 1100px) {
    .schuurdak-prijzen .schuurdak-prijzen__cards {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }
  }
  .schuurdak-prijzen .cause-card-new {
    border: 1px solid #e7e5e4;
    border-radius: var(--spoed-radius);
    padding: 28px 24px 26px;
    background: #fff;
    box-shadow: 0 4px 24px rgba(28, 25, 23, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }
  .schuurdak-prijzen .cause-card-new::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--schuurdak-amber-dark), #d97706);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
  }
  .schuurdak-prijzen .cause-card-new:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(28, 25, 23, 0.1);
    border-color: #d6d3d1;
  }
  .schuurdak-prijzen .cause-card-new:hover::before {
    transform: scaleX(1);
  }
  .schuurdak-prijzen .cause-img {
    font-size: 2.25rem;
    line-height: 1;
    margin-bottom: 14px;
    display: block;
  }
  .schuurdak-prijzen .cause-card-new h3 {
    font-size: 18px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #1c1917 !important;
    margin: 0 0 12px !important;
    line-height: 1.25 !important;
  }
  .schuurdak-prijzen .cause-card-new p {
    font-size: 15px !important;
    color: #57534e !important;
    line-height: 1.65 !important;
    margin: 0 0 auto 0 !important;
    flex: 1;
  }
  .schuurdak-prijzen .cause-card-new .cause-freq {
    display: inline-block;
    margin-top: 18px;
    align-self: flex-start;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.55px;
    color: var(--schuurdak-amber-dark) !important;
    background: rgba(180, 83, 9, 0.1);
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(180, 83, 9, 0.2);
  }
  .schuurdak-prijzen .schuurdak-prijzen__cta {
    margin: 2.75rem auto 0;
    max-width: 720px;
    text-align: center;
    padding: 28px 28px 32px;
    background: var(--schuurdak-cream);
    border: 1px solid rgba(180, 83, 9, 0.35);
    border-radius: 16px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }
  .schuurdak-prijzen .schuurdak-prijzen__cta p {
    font-size: 17px;
    line-height: 1.55;
    color: #44403c;
    margin: 0 auto 22px;
    max-width: 38rem;
  }
  .schuurdak-prijzen .schuurdak-prijzen__cta p strong {
    color: #1c1917;
  }
  .schuurdak-prijzen .schuurdak-prijzen__cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    align-items: center;
  }
  .schuurdak-prijzen .schuurdak-prijzen__btn-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    font-weight: 700;
    font-size: 15px;
    color: #fff !important;
    background: var(--schuurdak-amber) !important;
    border: 2px solid var(--schuurdak-amber-dark) !important;
    border-radius: 12px;
    text-decoration: none !important;
    box-shadow: 0 8px 24px rgba(146, 64, 14, 0.35);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  }
  .schuurdak-prijzen .schuurdak-prijzen__btn-phone:hover {
    background: var(--schuurdak-amber-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(146, 64, 14, 0.42);
    color: #fff !important;
  }
  .schuurdak-prijzen .schuurdak-prijzen__btn-offerte {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    font-weight: 700;
    font-size: 15px;
    color: #44403c !important;
    background: #fff !important;
    border: 2px solid #d6d3d1 !important;
    border-radius: 12px;
    text-decoration: none !important;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  }
  .schuurdak-prijzen .schuurdak-prijzen__btn-offerte:hover {
    border-color: var(--schuurdak-amber) !important;
    color: var(--schuurdak-amber-dark) !important;
    background: #fffefb !important;
  }
  @media (max-width: 480px) {
    .schuurdak-prijzen .schuurdak-prijzen__cta {
      padding: 22px 18px 26px;
    }
    .schuurdak-prijzen .schuurdak-prijzen__cta-btns {
      flex-direction: column;
      width: 100%;
    }
    .schuurdak-prijzen .schuurdak-prijzen__btn-phone,
    .schuurdak-prijzen .schuurdak-prijzen__btn-offerte {
      width: 100%;
    }
  }
  
  /* ─── WHY SECTION ──────────────────────────────────── */
  .spoed-why {
    background: #F3F4F6 !important;
  }
  .spoed-why .why-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
  }
  .spoed-why .why-left h2 {
    
    font-size: clamp(30px, 3vw, 44px) !important;
    font-weight: 900 !important; text-transform: uppercase;
    line-height: 1.1 !important; color: #1a1a1a !important;
    margin: 12px 0 16px !important;
  }
  .spoed-why .why-left > p {
    font-size: 16px; color: #6B7280 !important;
    line-height: 1.7; margin-bottom: 32px;
  }
  .spoed-why .why-stats {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 16px; margin-bottom: 32px;
  }
  .spoed-why .why-stat {
    background: #1a1a1a; border-radius: var(--spoed-radius);
    padding: 20px; text-align: center;
  }
  .spoed-why .why-stat-num {
    display: block; 
    font-size: 32px; font-weight: 900;
    color: var(--spoed-red) !important;
    line-height: 1; margin-bottom: 4px;
  }
  .spoed-why .why-stat-label {
    font-size: 12px; color: #9CA3AF !important;
    font-weight: 600; text-transform: uppercase; letter-spacing: .5px;
  }
  .spoed-why .usp-list {
    display: flex; flex-direction: column; gap: 4px;
  }
  .spoed-why .usp-item-new {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 20px; border-radius: var(--spoed-radius);
    background: #fff; border: 1px solid #E5E7EB;
    transition: border-color .2s, box-shadow .2s;
  }
  .spoed-why .usp-item-new:hover {
    border-color: rgba(192,32,47,.3);
    box-shadow: 0 4px 16px rgba(0,0,0,.06);
  }
  .spoed-why .usp-icon-new {
    width: 44px; height: 44px; border-radius: 10px;
    background: rgba(192,32,47,.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; flex-shrink: 0;
  }
  .spoed-why .usp-text-new h4 {
    
    font-size: 17px !important; font-weight: 800 !important;
    text-transform: uppercase; color: #1a1a1a !important;
    margin-bottom: 4px !important;
  }
  .spoed-why .usp-text-new p {
    font-size: 13.5px; color: #6B7280 !important;
    line-height: 1.5; margin: 0;
  }
  
  /* ─── REVIEWS ──────────────────────────────────────── */
  /* NOTE: .reviews-showcase (static cards) removed from PHP – only trustindex shown */
  .spoed-reviews {
    background: #fff !important;
  }
  .spoed-reviews .trustindex-wrap {
    margin-top: 0;
  }
  
  /* ─── CITIES ───────────────────────────────────────── */
  .spoed-cities .cities-map-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 16px; margin-bottom: 24px;
  }
  .spoed-cities .city-card-new {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    background: #fff; border: 1px solid #E5E7EB;
    border-radius: var(--spoed-radius);
    padding: 24px 16px; text-decoration: none !important;
    transition: transform .2s, border-color .2s, box-shadow .2s;
    text-align: center;
  }
  .spoed-cities .city-card-new:hover {
    transform: translateY(-3px);
    border-color: var(--spoed-red);
    box-shadow: 0 8px 28px rgba(0,0,0,.08);
  }
  .spoed-cities .city-icon { font-size: 24px; }
  .spoed-cities .city-name {
    
    font-size: 18px; font-weight: 800;
    text-transform: uppercase; color: #1a1a1a !important;
  }
  .spoed-cities .city-time {
    font-size: 12px; color: var(--spoed-red) !important; font-weight: 700;
  }
  .spoed-cities .cities-note {
    text-align: center; font-size: 14px; color: #6B7280 !important;
  }
  
  /* ─── FAQ ──────────────────────────────────────────── */
  .spoed-faq {
    background: #F3F4F6 !important;
  }
  .spoed-faq .faq-new {
    display: flex; flex-direction: column; gap: 4px;
  }
 .spoed-faq .faq-item-new {
   background: #fff; border: 1px solid #E5E7EB;
   border-radius: var(--spoed-radius); overflow: hidden;
  }
 .spoed-faq .faq-q-new {
   width: 100%; max-width: 100%; min-width: 0; box-sizing: border-box;
   background: none; border: none; cursor: pointer;
   display: flex; align-items: flex-start; justify-content: space-between;
   gap: 12px; padding: 22px 28px; text-align: left;
   
   font-size: 18px; font-weight: 800;
   text-transform: uppercase; color: #1a1a1a !important;
   letter-spacing: .3px; transition: background .2s;
   position: relative;
   white-space: normal !important;
   overflow-wrap: break-word; word-wrap: break-word; word-break: break-word;
  }
  .spoed-faq .faq-q-text {
   flex: 1 1 0%; min-width: 0; max-width: 100%;
   overflow-wrap: break-word; word-wrap: break-word; word-break: break-word;
   white-space: normal !important;
  }
  .spoed-faq .faq-q-new:hover {
   background: #F9FAFB; color: #1a1a1a !important;
  }
  .spoed-faq .faq-q-new[aria-expanded="true"] {
   color: var(--spoed-red) !important;
  }
  .spoed-faq .faq-arrow {
   font-size: 20px; transition: transform .3s; flex-shrink: 0;
  }
  .spoed-faq .faq-q-new[aria-expanded="true"] .faq-arrow {
   transform: rotate(180deg);
  }
  .spoed-faq .faq-a-new {
   display: none; padding: 0 28px 24px;
   overflow-wrap: break-word; word-wrap: break-word; word-break: break-word;
  }
  .spoed-faq .faq-a-new.open { display: block; }
  .spoed-faq .faq-a-new p {
   font-size: 15.5px; color: #4B5563 !important;
   line-height: 1.7; margin: 0;
   overflow-wrap: break-word; word-wrap: break-word; word-break: break-word;
   max-width: 100%;
  }
  /* FAQ op telefoon: vraagtekst naar onder doorbreken, geen overflow */
  @media (max-width: 767px) {
    .spoed-faq { overflow-x: hidden; }
    .spoed-faq .spoed-container,
    .spoed-faq .faq-new,
    .spoed-faq .faq-item-new { max-width: 100%; min-width: 0; }
    .spoed-faq .faq-q-new {
      display: block !important; font-size: 16px; padding: 18px 20px; padding-right: 48px;
      overflow-wrap: break-word; word-wrap: break-word; word-break: break-word;
    }
    .spoed-faq .faq-q-new .faq-arrow {
      position: absolute !important; right: 20px; top: 50%;
      transform: translateY(-50%); margin: 0;
    }
    .spoed-faq .faq-q-new[aria-expanded="true"] .faq-arrow {
      transform: translateY(-50%) rotate(180deg);
    }
    .spoed-faq .faq-q-text {
      display: block; min-width: 0; overflow-wrap: break-word; word-break: break-word;
    }
    .spoed-faq .faq-a-new { padding: 0 20px 20px; }
    .spoed-faq .faq-a-new p { font-size: 15px; }
  }
  .spoed-faq .faq-a-new p strong { color: #1a1a1a !important; }
  
  /* ─── FINAL CTA ────────────────────────────────────── */
  .spoed-final-cta {
    background: linear-gradient(135deg, #0C0D0F 0%, #1a0608 100%) !important;
    padding: 80px 40px;
    position: relative; overflow: hidden;
    width: 100%;
  }
  .spoed-final-cta::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 80% at 20% 50%, rgba(192,32,47,.2) 0%, transparent 60%);
    pointer-events: none;
  }
  .spoed-final-cta .final-cta-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr auto;
    gap: 60px; align-items: center;
    position: relative; z-index: 2;
  }
  .spoed-final-cta .final-cta-live {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: #10B981 !important;
    font-weight: 700; margin-bottom: 20px;
    text-transform: uppercase; letter-spacing: .6px;
  }
  .spoed-final-cta .final-cta-left h2 {
    
    font-size: clamp(44px, 5vw, 72px) !important;
    font-weight: 900 !important; text-transform: uppercase;
    color: #fff !important; line-height: 1.0 !important; margin-bottom: 16px !important;
  }
  .spoed-final-cta .final-cta-left p {
    font-size: 17px; color: #9CA3AF !important;
    margin-bottom: 32px; line-height: 1.6;
  }
  .spoed-final-cta .final-cta-btns {
    display: flex; gap: 16px; flex-wrap: wrap;
  }
  .spoed-final-cta .final-btn-phone {
    display: inline-flex; align-items: center; gap: 12px;
    background: var(--spoed-red); color: #fff !important;
    
    font-size: 24px; font-weight: 900; text-transform: uppercase;
    padding: 18px 40px; border-radius: var(--spoed-radius);
    text-decoration: none !important;
    box-shadow: 0 8px 32px var(--spoed-red-glow);
    transition: transform .2s, box-shadow .2s;
  }
  .spoed-final-cta .final-btn-phone:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 16px 48px var(--spoed-red-glow) !important;
    color: #fff !important;
  }
  .spoed-final-cta .final-btn-offerte {
    display: inline-flex; align-items: center;
    background: transparent; color: rgba(255,255,255,.7) !important;
     font-size: 18px; font-weight: 700;
    padding: 18px 32px; border-radius: var(--spoed-radius);
    border: 1px solid rgba(255,255,255,.2);
    text-decoration: none !important;
    transition: border-color .2s, color .2s;
  }
  .spoed-final-cta .final-btn-offerte:hover {
    border-color: rgba(255,255,255,.5) !important;
    color: #fff !important;
  }
  .spoed-final-cta .final-trust-items {
    display: flex; flex-direction: column; gap: 12px;
  }
  .spoed-final-cta .fti {
    font-size: 14px; font-weight: 600;
    color: rgba(255,255,255,.75) !important;
    display: flex; align-items: center; gap: 8px; white-space: nowrap;
  }
  
  /* ─── STICKY BAR ───────────────────────────────────── */
  .spoed-sticky-bar {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    background: #141619; border-top: 2px solid var(--spoed-red);
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.4,0,.2,1);
  }
  .spoed-sticky-bar.visible { transform: translateY(0); }
  .spoed-sticky-bar .sticky-bar-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 40px;
  }
  .spoed-sticky-bar .sticky-bar-text {
    display: flex; align-items: center; gap: 10px;
    font-size: 15px; color: rgba(255,255,255,.85) !important; font-weight: 600;
  }
  .spoed-sticky-bar .sticky-bar-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--spoed-red); color: #fff !important;
     font-size: 17px; font-weight: 800;
    text-transform: uppercase; padding: 13px 28px; border-radius: 10px;
    text-decoration: none !important; white-space: nowrap;
    box-shadow: 0 4px 16px var(--spoed-red-glow);
    transition: background .2s;
  }
  .spoed-sticky-bar .sticky-bar-btn:hover {
    background: #D42232 !important; color: #fff !important;
  }
  
  /* ─── dot-live (used outside hero too) ─────────────── */
  .spoed-final-cta .dot-live,
  .spoed-sticky-bar .dot-live {
    width: 8px; height: 8px; border-radius: 50%;
    background: #10B981; display: inline-block; flex-shrink: 0;
    box-shadow: 0 0 6px #10B981;
    animation: spoed-pulse 1.5s infinite;
  }
  
  /* ─── RESPONSIVE ───────────────────────────────────── */
  @media (max-width: 1100px) {
    .spoed-hero .spoed-hero-inner { grid-template-columns: 1fr 420px; }
    .spoed-why .why-grid { grid-template-columns: 1fr; gap: 48px; }
  }
  
  @media (max-width: 900px) {
    .spoed-hero { padding: 40px 24px 0; }
    .spoed-hero .spoed-hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .spoed-hero .hero-copy { padding-bottom: 0; }
    .spoed-hero .hero-trust-bar { flex-wrap: wrap; gap: 12px; padding: 20px 24px; }
    .spoed-hero .htb-divider { display: none; }
    .spoed-urgency .urgency-grid { grid-template-columns: 1fr; gap: 40px; }
    .spoed-causes .causes-grid-new { grid-template-columns: repeat(2, 1fr); }
    .spoed-steps .steps-grid { flex-direction: column; }
    .spoed-steps .step-connector { display: none; }
    .spoed-cities .cities-map-grid { grid-template-columns: repeat(2, 1fr); }
    .spoed-final-cta .final-cta-inner { grid-template-columns: 1fr; gap: 36px; }
    .spoed-sticky-bar .sticky-bar-inner { padding: 14px 20px; }
    .spoed-section { padding: 60px 24px; }
    .spoed-urgency .dtl-desc { min-width: 120px; }
  }
  
  @media (max-width: 600px) {
    .spoed-hero { padding: 32px 16px 0; }
    .spoed-hero .hero-copy h1 { font-size: 42px !important; }
    .spoed-hero .hero-cta-btn { font-size: 18px; padding: 16px 24px; }
    .spoed-hero .hero-cta-row { flex-direction: column; align-items: stretch; }
    .spoed-hero .hero-cta-btn--offerte { width: 100%; justify-content: center; }
    .spoed-hero .hero-trust-bar { padding: 16px; gap: 8px; }
    .spoed-hero .htb-num { font-size: 24px; }
    .spoed-causes .causes-grid-new { grid-template-columns: 1fr; }
    .spoed-cities .cities-map-grid { grid-template-columns: repeat(2, 1fr); }
    .spoed-why .why-stats { grid-template-columns: repeat(2, 1fr); }
    .spoed-final-cta .final-cta-btns { flex-direction: column; }
    .spoed-final-cta { padding: 60px 24px; }
    .spoed-ticker { font-size: 12px; padding: 10px 16px; }
    .spoed-ticker .ticker-inner { gap: 6px; }
    .spoed-ticker .ticker-divider { display: none; }
    .spoed-urgency .damage-timeline { gap: 10px; }
    .spoed-urgency .dtl-bar--low  { min-width: 30px; }
    .spoed-urgency .dtl-bar--mid  { min-width: 60px; }
    .spoed-urgency .dtl-bar--high { min-width: 90px; }
    .spoed-urgency .dtl-desc { display: none; }
    .spoed-final-cta .final-trust-items { flex-direction: row; flex-wrap: wrap; gap: 8px; }
    .spoed-final-cta .fti { white-space: normal; font-size: 13px; }
  .spoed-sticky-bar .sticky-bar-text { font-size: 13px; }
    .spoed-sticky-bar .sticky-bar-btn { font-size: 15px; padding: 11px 20px; }

  @media (max-width: 600px) {
    .spoed-sticky-bar .sticky-bar-inner {
      padding: 10px 16px;
      gap: 10px;
    }
    .spoed-sticky-bar .sticky-bar-text {
      display: none;
    }
    .spoed-sticky-bar .sticky-bar-btn {
      width: 100%;
      justify-content: center;
      font-size: 16px;
      padding: 14px 20px;
      border-radius: 10px;
    }
  }
  }
  
  /* =============================================================
     DAKBEDEKKING PARENT PAGE — Child card styles & compare table
     ============================================================= */
  
  /* Child page cards */
  .dak-child-cards {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 32px; margin-bottom: 32px;
  }
  .dak-child-card {
    display: flex; flex-direction: column;
    background: #fff; border: 2px solid #E5E7EB;
    border-radius: var(--spoed-radius-lg); padding: 36px 32px;
    text-decoration: none !important; color: #1a1a1a !important;
    transition: transform .25s, border-color .25s, box-shadow .25s;
    position: relative;
  }
  .dak-child-card:hover {
    transform: translateY(-6px);
    border-color: var(--spoed-red);
    box-shadow: 0 16px 48px rgba(0,0,0,.1);
    color: #1a1a1a !important;
  }
  .dak-child-icon { font-size: 48px; margin-bottom: 12px; }
  .dak-child-badge {
    display: inline-block; background: var(--spoed-red);
    color: #fff !important; font-size: 11px; font-weight: 800;
    text-transform: uppercase; letter-spacing: .8px;
    padding: 4px 12px; border-radius: 50px; margin-bottom: 16px;
    align-self: flex-start;
  }
  .dak-child-badge--alt { background: #374151; }
  .dak-child-card h2 {
    
    font-size: 30px !important; font-weight: 900 !important;
    text-transform: uppercase; color: #1a1a1a !important;
    margin: 0 0 8px !important; line-height: 1.1 !important;
  }
  .dak-child-price {
    font-size: 15px; color: #6B7280 !important; margin-bottom: 16px;
  }
  .dak-child-price strong { color: #1a1a1a !important; font-size: 20px; }
  .dak-child-card > p {
    font-size: 15px; color: #4B5563 !important;
    line-height: 1.65; margin-bottom: 20px;
  }
  .dak-child-usp {
    list-style: none; padding: 0; margin: 0 0 24px;
    display: flex; flex-direction: column; gap: 8px;
  }
  .dak-child-usp li {
    font-size: 14px; color: #374151 !important;
    font-weight: 600;
  }
  .dak-child-cta {
    display: inline-flex; align-items: center;
    
    font-size: 16px; font-weight: 800;
    text-transform: uppercase; letter-spacing: .5px;
    color: var(--spoed-red) !important;
    margin-top: auto;
  }
  .dak-compare-note {
    text-align: center; padding: 24px;
    background: #F9FAFB; border-radius: var(--spoed-radius);
    border: 1px solid #E5E7EB;
  }
  .dak-compare-note p {
    font-size: 15px; color: #6B7280 !important; margin: 0;
  }
  .dak-compare-note a {
    color: var(--spoed-red) !important; font-weight: 700;
  }
  
  /* Compare table */
  .dak-compare-table {
    background: #fff; border-radius: var(--spoed-radius-lg);
    overflow: hidden; border: 1px solid #E5E7EB;
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
  }
  .dct-header {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    background: #1a1a1a; padding: 24px 32px;
  }
  .dct-col { text-align: center; }
  .dct-col--label { text-align: left; }
  .dct-logo { font-size: 24px; display: block; margin-bottom: 6px; }
  .dct-header strong { color: #fff !important; font-size: 18px;  text-transform: uppercase; }
  .dct-row {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    padding: 16px 32px; border-bottom: 1px solid #F3F4F6;
    align-items: center;
  }
  .dct-row:last-child { border-bottom: none; }
  .dct-row:nth-child(even) { background: #F9FAFB; }
  .dct-label {
    font-size: 14px; font-weight: 700; color: #6B7280 !important;
    text-transform: uppercase; letter-spacing: .5px;
  }
  .dct-val {
    text-align: center; font-size: 14px;
    color: #4B5563 !important; font-weight: 500;
  }
  .dct-val--best {
    color: #15803d !important; font-weight: 700;
  }
  .dct-row--cta { padding: 24px 32px; }
  .dct-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 24px; border-radius: var(--spoed-radius);
     font-size: 15px; font-weight: 800;
    text-transform: uppercase; text-decoration: none !important;
    transition: transform .2s, box-shadow .2s;
  }
  .dct-btn--epdm {
    background: #15803d; color: #fff !important;
    box-shadow: 0 4px 16px rgba(21,128,61,.3);
  }
  .dct-btn--epdm:hover { transform: translateY(-2px); color: #fff !important; }
  .dct-btn--bitumen {
    background: #374151; color: #fff !important;
    box-shadow: 0 4px 16px rgba(55,65,81,.3);
  }
  .dct-btn--bitumen:hover { transform: translateY(-2px); color: #fff !important; }
  
  /* Responsive */
  @media (max-width: 768px) {
    .dak-child-cards { grid-template-columns: 1fr; }
    .dct-header, .dct-row { grid-template-columns: 1fr 1fr 1fr; padding: 12px 16px; }
    .dct-val { font-size: 12px; }
    .dct-label { font-size: 12px; }
  }
@media (max-width: 500px) {
  .dct-header, .dct-row { padding: 10px 12px; }
  .dct-btn { font-size: 13px; padding: 10px 16px; }
}


/**
 * Dakkampioenen – Lokale Dienst Template CSS
 * File: lokale-dienst.css
 *
 * SCOPE: Uitsluitend nieuwe .lp-* klassen.
 * Hergebruikt alle bestaande .spoed-*, .hero-*, .faq-*, .city-*, .htb-*, etc.
 * klassen uit site.css — geen duplicaten.
 *
 * Sectie-overzicht:
 *   1. CSS custom properties (aanvulling op :root)
 *   2. Animaties
 *   3. Hero uitbreidingen (lp-hero__*)
 *   4. Intro sectie
 *   5. Diensten grid
 *   6. Lokale markt
 *   7. Voordelen / USP
 *   8. SEO blok
 *   9. FAQ verbeteringen
 *  10. Interne links
 *  11. Gerelateerde plaatsen
 *  12. Reviews wrapper
 *  13. Final CTA uitbreidingen
 *  14. Sticky bar uitbreidingen
 *  15. Proza (lp-prose)
 *  16. Hulp-classes
 *  17. Responsive
 */

/* ═══════════════════════════════════════════════════════════════════════════
   1. CSS CUSTOM PROPERTIES — aanvulling op :root in site.css
   ═══════════════════════════════════════════════════════════════════════════ */
   :root {
    --lp-max-w:         1280px;
    --lp-max-w-narrow:  800px;
    --lp-gap:           32px;
    --lp-card-radius:   var(--spoed-radius-lg, 20px);
    --lp-card-shadow:   0 4px 24px rgba(0,0,0,.07);
    --lp-card-shadow-h: 0 12px 36px rgba(0,0,0,.12);
    --lp-transition:    all .25s cubic-bezier(.4,0,.2,1);
    --lp-red:           var(--spoed-red, #C0202F);
    --lp-dark:          var(--spoed-dark, #0C0D0F);
    --lp-accent:        var(--color-accent, #C8A24D);
  }
  
  /* ═══════════════════════════════════════════════════════════════════════════
     2. ANIMATIES
     ═══════════════════════════════════════════════════════════════════════════ */
  @keyframes lp-fade-up {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes lp-rain {
    from { transform: translateY(-100%); }
    to   { transform: translateY(110vh); }
  }
  
  /* Entrance state — elementen starten onzichtbaar, JS voegt .lp-is-visible toe */
  .lp-hero__h1,
  .lp-hero__sub,
  .lp-hero__proof,
  .lp-cta-phone,
  .lp-hero__form-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .55s ease, transform .55s ease;
  }
  
  .lp-hero__h1.lp-is-visible        { opacity: 1; transform: none; transition-delay: 0s; }
  .lp-hero__sub.lp-is-visible        { opacity: 1; transform: none; transition-delay: .1s; }
  .lp-hero__proof.lp-is-visible      { opacity: 1; transform: none; transition-delay: .2s; }
  .lp-cta-phone.lp-is-visible        { opacity: 1; transform: none; transition-delay: .3s; }
  .lp-hero__form-card.lp-is-visible  { opacity: 1; transform: none; transition-delay: .15s; }
  
  /* ═══════════════════════════════════════════════════════════════════════════
     3. HERO UITBREIDINGEN
     ═══════════════════════════════════════════════════════════════════════════ */
  
  /* Regen-animatie overlay */
  .lp-hero__rain {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
  }
  
  .lp-hero__rain::before,
  .lp-hero__rain::after {
    content: '';
    position: absolute;
    top: -100%;
    width: 1px;
    height: 120px;
    background: linear-gradient(to bottom, transparent, rgba(148,187,233,.25));
    animation: lp-rain 2.8s linear infinite;
  }
  .lp-hero__rain::before { left: 25%;  animation-delay: 0s;   animation-duration: 2.4s; }
  .lp-hero__rain::after  { left: 72%; animation-delay: 1.1s; animation-duration: 3.1s; }
  
  /* H1 — groter dan de spoed-hero default */
  .lp-hero__h1 {
    font-size: clamp(38px, 5.5vw, 72px) !important;
    font-weight: 900 !important;
    line-height: 1.07 !important;
    letter-spacing: -.03em !important;
    color: #fff !important;
    margin-bottom: 20px !important;
  }
  
  .lp-hero__h1 .lp-accent,
  .lp-hero__h1 .hero-accent {
    color: var(--lp-red) !important;
    display: block;
  }
  
  /* Locatie-badge (nieuw naast emergency/cert) */
  .badge--location {
    background: rgba(200,162,77,.12);
    color: var(--lp-accent);
    border: 1px solid rgba(200,162,77,.3);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .8px;
  }
  
  /* Form card — toegevoegde diepte */
  .lp-hero__form-card {
    box-shadow: 0 24px 64px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.06);
  }
  
  /* Trust bar — subtiele border-top */
  .lp-trust-bar {
    border-top: 1px solid rgba(255,255,255,.06);
  }
  
  /* Certs rij */
  .lp-hero__certs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
  }
  
  .lp-hero__certs .cert-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,.85) !important;
    white-space: nowrap;
  }
  
  .lp-hero__certs .cert-item img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: brightness(0) invert(1);
  }
  
  /* ═══════════════════════════════════════════════════════════════════════════
     4. INTRO SECTIE
     ═══════════════════════════════════════════════════════════════════════════ */
  .lp-intro {
    background: #fff;
  }
  
  .lp-intro__text {
    margin-top: 32px;
  }
  
  /* ═══════════════════════════════════════════════════════════════════════════
     5. DIENSTEN GRID
     ═══════════════════════════════════════════════════════════════════════════ */
  .lp-diensten__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--lp-gap);
  }
  
  .lp-dienst-card {
    background: #fff;
    border: 1.5px solid #E5E7EB;
    border-radius: var(--lp-card-radius);
    padding: 32px 28px;
    transition: var(--lp-transition);
    position: relative;
    overflow: hidden;
  }
  
  .lp-dienst-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--lp-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
  }
  
  .lp-dienst-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--lp-card-shadow-h);
    border-color: rgba(192,32,47,.2);
  }
  
  .lp-dienst-card:hover::before {
    transform: scaleX(1);
  }
  
  .lp-dienst-card__icon {
    font-size: 36px;
    margin-bottom: 16px;
    display: block;
    line-height: 1;
  }
  
  .lp-dienst-card h3 {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #111 !important;
    margin-bottom: 10px !important;
    line-height: 1.3 !important;
  }
  
  .lp-dienst-card p {
    font-size: 14px;
    line-height: 1.65;
    color: #4B5563 !important;
    margin-bottom: 18px;
  }
  
  .lp-dienst-card__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 800;
    color: var(--lp-red) !important;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: gap .2s;
  }
  
  .lp-dienst-card__link:hover {
    gap: 8px;
    text-decoration: none;
    color: var(--lp-red) !important;
  }
  
  /* ═══════════════════════════════════════════════════════════════════════════
     6. LOKALE MARKT
     ═══════════════════════════════════════════════════════════════════════════ */
  .lp-markt {
    /* inherits .spoed-section--dark */
  }
  
  .lp-markt__header h2 {
    color: #fff !important;
  }
  
  .lp-markt__intro {
    color: rgba(255,255,255,.7) !important;
    font-size: 17px;
    max-width: 680px;
    margin: 0 auto;
  }
  
  .lp-markt__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--lp-gap);
    margin-top: 48px;
  }
  
  .lp-markt__card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--lp-card-radius);
    padding: 36px 32px;
    position: relative;
  }
  
  .lp-markt__card--kansen {
    border-color: rgba(16,185,129,.2);
  }
  
  .lp-markt__card--kansen::before {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 3px;
    background: #10b981;
    border-radius: 3px 0 0 3px;
  }
  
  .lp-markt__card--concurrentie {
    border-color: rgba(192,32,47,.2);
  }
  
  .lp-markt__card--concurrentie::before {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 3px;
    background: var(--lp-red);
    border-radius: 3px 0 0 3px;
  }
  
  .lp-markt__card-icon {
    font-size: 28px;
    margin-bottom: 14px;
    display: block;
  }
  
  .lp-markt__card h3 {
    font-size: 20px !important;
    font-weight: 800 !important;
    color: #fff !important;
    margin-bottom: 12px !important;
  }
  
  .lp-markt__card p {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255,255,255,.65) !important;
  }
  
  /* ═══════════════════════════════════════════════════════════════════════════
     7. VOORDELEN / USP
     ═══════════════════════════════════════════════════════════════════════════ */
  
  /* Accent kleur in titels */
  .lp-accent {
    color: var(--lp-red);
  }
  
  /* USP list — lichte hover state per item */
  .lp-usp-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .lp-usp-item {
    transition: background .2s, border-color .2s;
    border-radius: 12px;
    padding: 14px 16px;
    margin: 0 -16px;
  }
  
  .lp-usp-item:hover {
    background: rgba(192,32,47,.04);
  }
  
  .lp-usp-item .usp-icon-new {
    flex-shrink: 0;
  }
  
  /* ═══════════════════════════════════════════════════════════════════════════
     8. SEO BLOK
     ═══════════════════════════════════════════════════════════════════════════ */
  .lp-seo-blok__inner {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 860px;
    margin: 0 auto;
  }
  
  .lp-seo-blok__text {
    margin-top: 32px;
  }
  
  .lp-seo-blok__cta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 36px;
    flex-wrap: wrap;
  }
  
  .lp-seo-blok__secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 800;
    color: var(--lp-red) !important;
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 2px solid transparent;
    transition: border-color .2s;
  }
  
  .lp-seo-blok__secondary-btn:hover {
    border-color: var(--lp-red);
    text-decoration: none;
    color: var(--lp-red) !important;
  }
  
  /* ═══════════════════════════════════════════════════════════════════════════
     9. FAQ VERBETERINGEN
     ═══════════════════════════════════════════════════════════════════════════ */
  
  /* Gebruik bestaande .faq-new, .faq-item-new, .faq-q-new, .faq-a-new uit site.css.
     Alleen de pijl-SVG stylen (vervangt tekst-pijl) */
  .lp-faq__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(192,32,47,.08);
    color: var(--lp-red);
    transition: transform .3s ease, background .2s;
  }
  
  .lp-faq__question.is-open .lp-faq__arrow {
    transform: rotate(180deg);
    background: rgba(192,32,47,.14);
  }
  
  /* Verberg de tekst-pijl uit het originele template */
  .lp-faq__arrow .faq-arrow {
    display: none;
  }
  
  /* Answer panel — smooth animatie */
  .lp-faq__answer {
    overflow: hidden;
  }
  
  .lp-faq__answer.open {
    display: block;
    animation: lp-fade-up .25s ease forwards;
  }
  
  /* ═══════════════════════════════════════════════════════════════════════════
     10. INTERNE LINKS
     ═══════════════════════════════════════════════════════════════════════════ */
  .lp-links__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 40px 0 0;
  }
  
  .lp-link-card {
    background: #fff;
    border: 1.5px solid #E5E7EB;
    border-radius: var(--radius-md, 12px);
    transition: var(--lp-transition);
  }
  
  .lp-link-card:hover {
    border-color: var(--lp-red);
    box-shadow: 0 6px 20px rgba(192,32,47,.08);
    transform: translateY(-3px);
  }
  
  .lp-link-card__anchor {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    text-decoration: none !important;
    color: #1a1a1a !important;
    font-weight: 700;
    font-size: 15px;
    transition: color .2s;
  }
  
  .lp-link-card:hover .lp-link-card__anchor {
    color: var(--lp-red) !important;
  }
  
  .lp-link-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(192,32,47,.08);
    color: var(--lp-red);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 900;
    flex-shrink: 0;
    transition: background .2s;
  }
  
  .lp-link-card:hover .lp-link-card__icon {
    background: var(--lp-red);
    color: #fff;
  }
  
  .lp-link-card__label {
    flex: 1;
    line-height: 1.35;
  }
  
  /* ═══════════════════════════════════════════════════════════════════════════
     11. GERELATEERDE PLAATSEN
     ═══════════════════════════════════════════════════════════════════════════ */
  
  /* .cities-map-grid en .city-card-new komen uit site.css
     Uitbreidingen: link-gedrag + pijl */
  .lp-plaats-card {
    padding: 0;
  }
  
  .lp-plaats-card .city-card-new {
    padding: 0;
  }
  
  .lp-plaats-card__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    text-decoration: none !important;
    color: inherit !important;
    width: 100%;
    height: 100%;
    transition: var(--lp-transition);
  }
  
  .lp-plaats-card:hover .lp-plaats-card__link {
    color: var(--lp-red) !important;
  }
  
  .lp-plaats-card__arrow {
    margin-left: auto;
    font-size: 14px;
    color: var(--lp-red);
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity .2s, transform .2s;
  }
  
  .lp-plaats-card:hover .lp-plaats-card__arrow {
    opacity: 1;
    transform: translateX(0);
  }
  
  /* Plaatsen die al een city-card-new layout gebruiken — maak ze klikbaar */
  .cities-map-grid .lp-plaats-card {
    padding: 0;
  }
  
  .cities-map-grid .lp-plaats-card .city-icon,
  .cities-map-grid .lp-plaats-card .city-name {
    pointer-events: none;
  }
  
  /* ═══════════════════════════════════════════════════════════════════════════
     12. REVIEWS WRAPPER
     ═══════════════════════════════════════════════════════════════════════════ */
  .lp-reviews .trustindex-wrap {
    margin-top: 32px;
  }
  
  /* ═══════════════════════════════════════════════════════════════════════════
     13. FINAL CTA UITBREIDINGEN
     ═══════════════════════════════════════════════════════════════════════════ */
  
  /* .spoed-final-cta, .final-cta-inner, etc. komen uit site.css
     Alleen trust-checklist als list */
  .lp-trust-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  /* ═══════════════════════════════════════════════════════════════════════════
     14. STICKY BAR UITBREIDINGEN
     ═══════════════════════════════════════════════════════════════════════════ */
  .lp-sticky {
    /* inherits .spoed-sticky-bar uit site.css — geen extra stijlen nodig */
  }
  
  /* ═══════════════════════════════════════════════════════════════════════════
     15. PROZA — lp-prose
     ═══════════════════════════════════════════════════════════════════════════ */
  .lp-prose {
    font-size: 16px;
    line-height: 1.8;
    color: #374151 !important;
  }
  
  .lp-prose p {
    margin-bottom: 18px;
  }
  
  .lp-prose p:last-child {
    margin-bottom: 0;
  }
  
  .lp-prose h2,
  .lp-prose h3 {
    color: #111 !important;
    margin-top: 32px;
    margin-bottom: 12px;
    line-height: 1.25;
  }
  
  .lp-prose h2 { font-size: 26px !important; font-weight: 800 !important; }
  .lp-prose h3 { font-size: 20px !important; font-weight: 700 !important; }
  
  .lp-prose ul,
  .lp-prose ol {
    padding-left: 20px;
    margin-bottom: 18px;
  }
  
  .lp-prose li {
    margin-bottom: 8px;
  }
  
  .lp-prose strong {
    color: #111;
    font-weight: 700;
  }
  
  .lp-prose a {
    color: var(--lp-red) !important;
    text-decoration: underline;
    font-weight: 600;
  }
  
  .lp-prose a:hover {
    text-decoration: none;
  }
  
  /* Donkere achtergrond variant (intro_text op dark bg) */
  .spoed-section--dark .lp-prose {
    color: rgba(255,255,255,.7) !important;
  }
  
  .spoed-section--dark .lp-prose h2,
  .spoed-section--dark .lp-prose h3 {
    color: #fff !important;
  }
  
  .spoed-section--dark .lp-prose strong {
    color: #fff;
  }
  
  /* ═══════════════════════════════════════════════════════════════════════════
     16. HULP-CLASSES
     ═══════════════════════════════════════════════════════════════════════════ */
  
  /* Smalle container (FAQ, intro) — zit ook al in site.css als .spoed-container--narrow
     maar in sommige contexts niet beschikbaar */
  .lp-container--narrow {
    max-width: var(--lp-max-w-narrow);
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Sectie chip — uitbreiding van .section-chip uit site.css */
  .section-chip {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
  }
  
  .chip--primary {
    background: rgba(192,32,47,.1);
    color: var(--lp-red);
    border: 1px solid rgba(192,32,47,.2);
  }
  
  .chip--light {
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.9);
    border: 1px solid rgba(255,255,255,.2);
  }
  
  .chip--warning {
    background: rgba(245,158,11,.1);
    color: #d97706;
    border: 1px solid rgba(245,158,11,.25);
  }
  
  /* Section header center — gedeeld patroon */
  .section-header-center {
    text-align: center;
    margin-bottom: 48px;
  }
  
  .section-header-center h2 {
    font-size: clamp(28px, 3.5vw, 42px) !important;
    font-weight: 900 !important;
    line-height: 1.18 !important;
    margin-bottom: 12px !important;
  }
  
  .section-header-center p {
    font-size: 17px;
    color: #6B7280 !important;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.65;
  }
  
  /* Dark section header */
  .spoed-section--dark .section-header-center h2 { color: #fff !important; }
  .spoed-section--dark .section-header-center p   { color: rgba(255,255,255,.6) !important; }
  
  /* Cities note */
  .cities-note {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: #6B7280 !important;
  }
  
  .cities-note a {
    color: var(--lp-red) !important;
    font-weight: 700;
  }
  
  /* ═══════════════════════════════════════════════════════════════════════════
     17. RESPONSIVE
     ═══════════════════════════════════════════════════════════════════════════ */
  @media (max-width: 1100px) {
    .lp-diensten__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 900px) {
    .lp-markt__grid {
      grid-template-columns: 1fr;
    }
  
    .lp-links__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .lp-diensten__grid {
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
  
    .lp-links__grid {
      grid-template-columns: 1fr;
    }
  
    .lp-seo-blok__cta {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .section-header-center {
      margin-bottom: 32px;
    }
  }
  
  @media (max-width: 600px) {
    .lp-diensten__grid {
      grid-template-columns: 1fr;
    }
  
    .lp-hero__h1 {
      font-size: 38px !important;
    }
  
    .lp-markt__card {
      padding: 24px 20px;
    }
  
    .lp-link-card__anchor {
      padding: 14px 16px;
    }
  }
  
/* ═══════════════════════════════════════════════════════════════════════════
   LP TEMPLATE FIXES — toegevoegd na analyse rendered HTML
   ═══════════════════════════════════════════════════════════════════════════ */

/* FIX 1 — Intro tekst: gecentreerd uitlijnen net als de h2 ertboven
   De .section-header-center zet text-align:center op de h2,
   maar .lp-intro__text had geen uitlijning → linkse tekst onder gecentreerde titel */
.lp-intro .lp-intro__text,
.lp-intro .lp-prose {
  text-align: center;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

/* FIX 2 — Defensieve tekstkleuren op lichte achtergrond
   Elementor / Hello-theme kan brede color:inherit of color:#fff regels
   injecteren die USP-kaartjes, FAQ-vragen en steden-namen onzichtbaar maken */

/* USP kaartjes (spoed-why sectie, lichtgrijs bg, witte kaarten) */
.spoed-why .usp-item-new h4,
.lp-voordelen .usp-item-new h4,
.spoed-why .usp-text-new h4,
.lp-voordelen .usp-text-new h4 {
  color: #1a1a1a !important;
}
.spoed-why .usp-item-new p,
.lp-voordelen .usp-item-new p,
.spoed-why .usp-text-new p,
.lp-voordelen .usp-text-new p {
  color: #6B7280 !important;
}

/* FAQ vraagtekst (witte kaart op lichtgrijs bg) */
.spoed-faq .faq-q-new,
.lp-faq .faq-q-new,
.spoed-faq .faq-q-text,
.lp-faq .faq-q-text {
  color: #1a1a1a !important;
}
.spoed-faq .faq-q-new[aria-expanded="true"],
.lp-faq .faq-q-new[aria-expanded="true"] {
  color: var(--spoed-red, #C0202F) !important;
}

/* Steden namen (witte kaarten) */
.spoed-cities .city-name,
.lp-plaatsen .city-name {
  color: #1a1a1a !important;
}
.lp-plaats-card__link {
  color: #1a1a1a !important;
}

/* Diensten kaartjes h3 en p */
.lp-dienst-card h3 {
  color: #111 !important;
}
.lp-dienst-card p {
  color: #4B5563 !important;
}

/* FIX 3 — Verberg secties volledig als repeater leeg is
   Dit vangt het geval op waarbij $has_xxx = true maar alle items leeg zijn
   EN de PHP empty-guard is gefaald (fallback veiligheidsnet) */
.lp-diensten__grid:empty,
.lp-usp-list:empty,
.lp-faq__list:empty,
.lp-plaatsen__grid:empty,
.lp-links__grid:empty {
  display: none;
}

/* FIX 4 — FAQ button reset: Elementor soms inject color op button element */
.lp-faq__question,
button.faq-q-new {
  color: #1a1a1a !important;
}
.lp-faq__question.is-open,
button.faq-q-new[aria-expanded="true"] {
  color: var(--spoed-red, #C0202F) !important;
}

/* FIX 5 — Meer informatie (.lp-seo-blok): content past op smalle schermen (geen horizontale scroll) */
.lp-seo-blok .spoed-container.lp-seo-blok__inner {
  min-width: 0;
  width: 100%;
  max-width: min(860px, 100%);
  box-sizing: border-box;
}

.lp-seo-blok .lp-prose {
  overflow-wrap: anywhere;
  word-break: break-word;
  max-width: 100%;
  min-width: 0;
}

.lp-seo-blok .lp-prose table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.lp-seo-blok .lp-prose img,
.lp-seo-blok .lp-prose video,
.lp-seo-blok .lp-prose iframe {
  max-width: 100%;
  height: auto;
}

.lp-seo-blok .lp-seo-blok__cta {
  max-width: 100%;
}

.lp-seo-blok .lp-seo-blok__cta .spoed-cta-btn {
  max-width: 100%;
  box-sizing: border-box;
  justify-content: center;
  text-align: center;
}

@media (max-width: 768px) {
  .lp-seo-blok.spoed-section {
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
  }

  .lp-seo-blok .section-header-center h2 {
    font-size: clamp(22px, 5.5vw, 32px) !important;
  }
}

/* FIX 6 — Servicegebied (#servicegebied / .lp-plaatsen): binnen viewport, geen te brede layout op mobiel */
.lp-plaatsen.spoed-cities {
  box-sizing: border-box;
}

.lp-plaatsen.spoed-cities .spoed-container {
  min-width: 0;
  width: 100%;
  max-width: min(1200px, 100%);
  box-sizing: border-box;
}

.lp-plaatsen .cities-map-grid.lp-plaatsen__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.lp-plaatsen .lp-plaats-card {
  min-width: 0;
}

.lp-plaatsen .lp-plaats-card__link {
  min-width: 0;
  max-width: 100%;
}

.lp-plaatsen .city-name {
  overflow-wrap: anywhere;
  word-break: break-word;
  min-width: 0;
}

.lp-plaatsen .cities-note,
.lp-plaatsen .cities-note--hub {
  max-width: 100%;
  box-sizing: border-box;
  overflow-wrap: anywhere;
}

@media (max-width: 768px) {
  .lp-plaatsen.spoed-section {
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
  }
}

@media (max-width: 520px) {
  .lp-plaatsen .cities-map-grid.lp-plaatsen__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .lp-plaatsen .lp-plaats-card__link {
    padding: 12px 14px;
    gap: 8px;
  }
}

/* FIX 7 — Final CTA (.spoed-final-cta): binnen viewport; knoppen/kop niet breder dan scherm */
.spoed-final-cta .final-cta-inner {
  min-width: 0;
  width: 100%;
  max-width: min(1200px, 100%);
  box-sizing: border-box;
}

.spoed-final-cta .final-cta-left,
.spoed-final-cta .final-cta-right {
  min-width: 0;
  max-width: 100%;
}

.spoed-final-cta .final-cta-left h2 {
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 768px) {
  .spoed-final-cta {
    padding-top: 48px;
    padding-bottom: 48px;
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
  }

  .spoed-final-cta .final-cta-left h2 {
    font-size: clamp(24px, 6.5vw, 40px) !important;
    line-height: 1.12 !important;
  }

  .spoed-final-cta .final-cta-btns {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .spoed-final-cta .final-btn-phone {
    font-size: 17px !important;
    padding: 16px 18px !important;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    justify-content: center;
  }

  .spoed-final-cta .final-btn-offerte {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    justify-content: center;
    padding: 14px 18px !important;
    font-size: 16px !important;
  }

  .spoed-final-cta .final-cta-live {
    flex-wrap: wrap;
  }
}

/* =============================================================================
   HUB — page-dakdekker.php specifieke stijlen
   Gebruikt gedeelde spoed-*, lp-* klassen + eigen hub-* uitbreidingen.
   ============================================================================= */

/* ── Hub diensten grid: 4 kolommen op desktop (vs 2-kolom lp-diensten) ── */
@media (min-width: 1024px) {
  .hub-diensten__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .hub-diensten__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Hub dienst card: link als interne navigatie ipv tel: ─────────────── */
.hub-dienst-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding: 10px 0 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary, #B01E2D);
  text-decoration: none;
  border-top: 1px solid #eee;
  transition: gap 0.2s ease;
}
.hub-dienst-card__link:hover {
  gap: 10px;
  color: var(--color-secondary, #1F3F6D);
}

/* ── Hub steden sectie ────────────────────────────────────────────────── */
.hub-steden {
  background: #fff;
}

/* ── Regio-label boven elke stedengrid ───────────────────────────────── */
.hub-regio {
  margin-bottom: 48px;
}
.hub-regio:last-of-type {
  margin-bottom: 24px;
}
.hub-regio__titel {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-accent, #C8A24D);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-accent, #C8A24D);
  display: inline-block;
}

/* ── Steden grid: 4 kolommen desktop, aflopend naar 1 ─────────────────── */
.hub-steden__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1024px) {
  .hub-steden__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .hub-steden__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .hub-steden__grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
}

/* ── Stad kaartje ─────────────────────────────────────────────────────── */
.hub-stad-card {
  background: var(--color-light, #F4F5F7);
  border-radius: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.hub-stad-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.hub-stad-card__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  text-decoration: none;
  color: var(--color-gray, #1A1F26);
  font-weight: 600;
  font-size: 14px;
  border-radius: 10px;
  border: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.hub-stad-card:hover .hub-stad-card__link {
  border-color: var(--color-accent, #C8A24D);
  color: var(--color-primary, #B01E2D);
}

.hub-stad-card__icon {
  font-size: 14px;
  flex-shrink: 0;
}
.hub-stad-card__naam {
  flex-grow: 1;
  line-height: 1.3;
}
.hub-stad-card__arrow {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-accent, #C8A24D);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.hub-stad-card:hover .hub-stad-card__arrow {
  transform: translateX(3px);
}

/* ── Responsive: regio titel iets kleiner op mobiel ──────────────────── */
@media (max-width: 768px) {
  .hub-regio__titel {
    font-size: 13px;
  }
  .hub-stad-card__link {
    padding: 12px 14px;
    font-size: 13px;
  }
}

/* ============================================================
   DAKREPARATIE PAGE — extra/override styles
   Uses shared spoed-* classes. Only page-specific additions here.
   ============================================================ */

/* Steps grid: 4-column variant for dakreparatie werkwijze */
.steps-grid--4 {
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
}
@media (max-width: 1024px) {
  .steps-grid--4 {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .steps-grid--4 .step-connector {
    display: none;
  }
}
@media (max-width: 600px) {
  .steps-grid--4 {
    grid-template-columns: 1fr;
  }
}

/* Causes grid: 4-column variant for prijzen sectie */
.causes-grid-new--4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
  .causes-grid-new--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .causes-grid-new--4 {
    grid-template-columns: 1fr;
  }
}

/* Price CTA block — centered call to action under price cards */
.dakrep-price-cta {
  margin-top: 40px;
  background: var(--color-light, #F4F5F7);
  border-radius: 16px;
  padding: 32px 40px;
  text-align: center;
  border-left: 4px solid var(--color-accent, #C8A24D);
}
.dakrep-price-cta p {
  font-size: 17px;
  color: var(--color-gray, #1A1F26);
  margin-bottom: 24px;
  line-height: 1.6;
}
.dakrep-price-cta .final-cta-btns {
  justify-content: center;
}
@media (max-width: 600px) {
  .dakrep-price-cta {
    padding: 24px 20px;
  }
}

/* ============================================================
   Mobile: compactere grote koppen (hele site, telefoon)
   ============================================================ */
@media (max-width: 768px) {
  h1,
  .hero h1,
  h1.hero,
  .elementor-widget-heading h1.elementor-heading-title,
  .page-hero-inner h1,
  .page-hero h1,
  .dienst-hero h1 {
    font-size: clamp(26px, 6vw, 34px) !important;
    line-height: 1.15 !important;
  }

  .hero.hero--home .hero-content h1 {
    font-size: clamp(30px, 7.2vw, 42px) !important;
    line-height: 1.08 !important;
  }

  .section-title,
  h2.section-title,
  .section-header h2,
  .elementor-widget-heading h2.elementor-heading-title,
  .section-header-center h2,
  .spoed-section .section-header-center h2 {
    font-size: clamp(24px, 5.4vw, 34px) !important;
    line-height: 1.14 !important;
  }

  .lp-hero__h1 {
    font-size: clamp(26px, 6vw, 38px) !important;
  }

  .spoed-hero .hero-copy h1 {
    font-size: 30px !important;
  }
}

:root {
    /* Dakkampioenen Huisstijlkleuren */
    --color-primary: #B01E2D;      /* Rood */
    --color-secondary: #1F3F6D;    /* Donkerblauw */
    --color-dark: #0E0E0E;         /* Zwart */
    --color-light: #F4F5F7;        /* Lichtgrijs */
    --color-accent: #C8A24D;       /* Goud */
    --color-gray: #1A1F26;         /* Donkergrijs */
}

/* Blokkeer alleen animaties op de header container zelf, niet op child elementen */
.dakkampioenen-header,
#dak-header,
.dak-header,
.elementor-element .dakkampioenen-header,
.elementor-widget .dakkampioenen-header {
    /* Overschrijf WordPress/Elementor fade-in animaties */
    animation: none !important;
    animation-name: none !important;
    animation-duration: 0s !important;
    animation-delay: 0s !important;
    /* Geen transitions op position/opacity/visibility/transform van header zelf */
    transition: none !important;
    transition-property: none !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
}

.dakkampioenen-header {
    background: var(--color-light);
    border-bottom: 2px solid var(--color-accent);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* Voorkom verschuiving bij laden - direct zichtbaar */
    transform: translateZ(0);
    backface-visibility: hidden;
    height: 92px; /* 90px container + 2px border */
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    will-change: auto;
}

/* Body padding om content niet onder header te laten verdwijnen */
body {
    padding-top: 92px;
}

body.admin-bar .dakkampioenen-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .dakkampioenen-header {
        top: 46px;
    }
    body {
        padding-top: 77px;
    }
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    /* Direct zichtbaar, geen animaties */
    opacity: 1 !important;
    visibility: visible !important;
    animation: none !important;
    transition: none !important;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    /* Voorkom layout shift */
    min-width: 200px;
    height: 55px;
}

.site-logo a {
    display: block;
    line-height: 0;
    width: 200px;
    height: 55px;
}

.site-logo img {
    height: 55px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    /* Voorkom layout shift bij image loading */
    display: block;
    aspect-ratio: 300 / 192;
}

/* Navigation */
.header-nav {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-grow: 1;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 36px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu > li > a,
.nav-menu > li > .nav-item-row > a {
    text-decoration: none;
    color: var(--color-gray);
    font-size: 16px;
    font-weight: 700;
    padding: 10px 0;
    transition: color 0.3s ease;
    display: block;
    position: relative;
}

.nav-menu > li > a::after,
.nav-menu > li > .nav-item-row > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active,
.nav-menu > li > .nav-item-row > a:hover,
.nav-menu > li > .nav-item-row > a.active {
    color: var(--color-primary);
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after,
.nav-menu > li > .nav-item-row > a:hover::after,
.nav-menu > li > .nav-item-row > a.active::after {
    width: 100%;
}

/* Rij met link + pijl (mobiel: submenu openen); desktop: pijl verborgen */
.nav-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    min-width: 0;
}

.nav-item-row > a {
    flex: 1;
    min-width: 0;
}

/* Submenu-pijl: compact + neutraal (Elementor overschrijft soms globale button-styling → roze/rood) */
#dak-header button.nav-submenu-toggle,
.dakkampioenen-header button.nav-submenu-toggle,
.header-nav button.nav-submenu-toggle {
    display: none;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    max-width: 32px;
    max-height: 32px;
    padding: 0;
    margin: 0;
    border: 1px solid rgba(31, 63, 109, 0.22) !important;
    border-radius: 8px;
    background: #fff !important;
    background-image: none !important;
    color: var(--color-secondary) !important;
    cursor: pointer;
    box-shadow: none !important;
    font: inherit;
    line-height: 0;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.25s ease;
    -webkit-appearance: none;
    appearance: none;
}

#dak-header button.nav-submenu-toggle:hover,
.dakkampioenen-header button.nav-submenu-toggle:hover {
    background: rgba(31, 63, 109, 0.06) !important;
    border-color: rgba(31, 63, 109, 0.35) !important;
    color: var(--color-secondary) !important;
}

#dak-header button.nav-submenu-toggle:focus-visible,
.dakkampioenen-header button.nav-submenu-toggle:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

#dak-header button.nav-submenu-toggle[aria-expanded="true"],
.dakkampioenen-header button.nav-submenu-toggle[aria-expanded="true"] {
    background: rgba(31, 63, 109, 0.1) !important;
    border-color: rgba(31, 63, 109, 0.4) !important;
    color: var(--color-secondary) !important;
}

#dak-header button.nav-submenu-toggle svg,
.dakkampioenen-header button.nav-submenu-toggle svg {
    width: 18px;
    height: 18px;
    display: block;
    flex-shrink: 0;
    stroke: currentColor;
    transition: transform 0.25s ease;
}

#dak-header button.nav-submenu-toggle[aria-expanded="true"] svg,
.dakkampioenen-header button.nav-submenu-toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

#dak-header button.nav-submenu-toggle--nested,
.dakkampioenen-header button.nav-submenu-toggle--nested {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    max-width: 28px;
    max-height: 28px;
    border-radius: 6px;
}

#dak-header button.nav-submenu-toggle--nested svg,
.dakkampioenen-header button.nav-submenu-toggle--nested svg {
    width: 16px;
    height: 16px;
}

/* Desktop: geen pijl-knop in de balk (alleen hover-submenu) */
@media (min-width: 969px) {
    #dak-header button.nav-submenu-toggle,
    .dakkampioenen-header button.nav-submenu-toggle,
    .header-nav button.nav-submenu-toggle {
        display: none !important;
        visibility: hidden !important;
        position: absolute !important;
        width: 0 !important;
        height: 0 !important;
        min-width: 0 !important;
        min-height: 0 !important;
        max-width: 0 !important;
        max-height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
        clip: rect(0, 0, 0, 0) !important;
        border: 0 !important;
    }
}

/* Submenu */
.nav-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: -16px;
    background: #ffffff;
    min-width: 240px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 12px 0;
    margin-top: 0;
    list-style: none;
    border-top: 3px solid var(--color-accent);
}

/* Onzichtbare brug tussen menu-item en submenu zodat hover niet wegvalt */
.nav-menu .sub-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
}

/* Extra hover-zone op parent li */
.nav-menu > li {
    padding-bottom: 20px;
    margin-bottom: -20px;
}

.nav-menu li:hover > .sub-menu {
    display: block;
    animation: slideDown 0.2s ease forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-menu .sub-menu a {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-gray);
    display: block;
}

.nav-menu .sub-menu a:hover {
    background: var(--color-light);
    color: var(--color-primary);
}

/* Grandchild submenu (niveau 3) - desktop: rechts uitklappen */
.nav-menu .sub-menu .has-grandchildren {
    position: relative;
}

.nav-menu .sub-menu .has-grandchildren > .nav-item-row > a::after {
    content: '›';
    float: right;
    margin-left: 8px;
    font-size: 16px;
    font-weight: 700;
    opacity: 0.5;
}

.nav-menu .sub-menu .sub-menu-deep {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background: #ffffff;
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    margin: 0;
    margin-left: 4px;
    list-style: none;
    border-top: 3px solid var(--color-accent);
    z-index: 10000;
}

/* Onzichtbare brug voor grandchild submenu */
.nav-menu .sub-menu .sub-menu-deep::before {
    content: '';
    position: absolute;
    top: 0;
    left: -12px;
    width: 12px;
    height: 100%;
    background: transparent;
}

.nav-menu .sub-menu .has-grandchildren:hover > .sub-menu-deep {
    display: block;
    animation: slideRight 0.2s ease forwards;
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-5px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.nav-menu .sub-menu .sub-menu-deep a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gray);
}

.nav-menu .sub-menu .sub-menu-deep a:hover {
    background: var(--color-light);
    color: var(--color-primary);
}

/* CTA Section */
.header-cta {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-shrink: 0;
}

.btn-call {
    background: linear-gradient(135deg, var(--color-primary) 0%, #8B1521 100%);
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 16px rgba(176, 30, 45, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(176, 30, 45, 0.4);
    background: linear-gradient(135deg, #8B1521 0%, var(--color-primary) 100%);
}

.btn-call svg {
    width: 20px;
    height: 20px;
}

/* Blauwe Offerte-knop (desktop) - expliciet zichtbaar */
.btn-offerte {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #15283D 100%);
    color: white !important;
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 16px rgba(31, 63, 109, 0.35);
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
}
.btn-offerte:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(31, 63, 109, 0.45);
    background: linear-gradient(135deg, #15283D 0%, var(--color-secondary) 100%);
    color: white !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: var(--color-secondary);
    border: none;
    cursor: pointer;
    padding: 12px 16px;
    flex-direction: column;
    gap: 5px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: #15283D;
}

.mobile-menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background: #ffffff;
    transition: 0.3s;
    border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Call Popup */
.call-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 14, 14, 0.85);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.call-popup.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.popup-content {
    background: white;
    border-radius: 20px;
    padding: 48px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideUp 0.4s ease;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
    border-top: 5px solid var(--color-accent);
}

@keyframes slideUp {
    from {
        transform: translateY(60px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--color-light);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 24px;
    color: var(--color-gray);
}

.popup-close:hover {
    background: var(--color-primary);
    color: white;
    transform: rotate(90deg);
}

.popup-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #8B1521 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    box-shadow: 0 8px 20px rgba(176, 30, 45, 0.3);
}

.popup-icon svg {
    width: 35px;
    height: 35px;
    color: white;
}

.popup-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-gray);
    text-align: center;
    margin-bottom: 12px;
}

.popup-content > p {
    font-size: 16px;
    color: #6c757d;
    text-align: center;
    margin-bottom: 36px;
    line-height: 1.6;
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.phone-option {
    background: var(--color-light);
    padding: 24px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
}

.phone-option:hover {
    background: #e8e9eb;
    border-color: var(--color-accent);
    transform: translateX(6px);
    box-shadow: 0 4px 12px rgba(200, 162, 77, 0.2);
}

.phone-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #15283D 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phone-icon svg {
    width: 26px;
    height: 26px;
    color: white;
}

.phone-details {
    flex-grow: 1;
}

.phone-label {
    font-size: 12px;
    color: #6c757d;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.phone-number {
    font-size: 22px;
    color: var(--color-gray);
    font-weight: 800;
}

.popup-info {
    text-align: center;
    padding-top: 28px;
    border-top: 2px solid var(--color-light);
}

.popup-info p {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 0;
}

.popup-hours {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #10b981;
    margin-top: 8px;
}

/* Responsive */
@media (max-width: 1024px) {
    .header-nav {
        gap: 24px;
    }
    
    .nav-menu {
        gap: 24px;
    }
    
    .nav-menu > li > a,
    .nav-menu > li > .nav-item-row > a {
        font-size: 15px;
    }
}

/* Offerte in nav: verbergen op desktop (tonen als blauwe knop in CTA), tonen in mobiel menu */
.menu-item-offerte {
    display: none;
}

@media (max-width: 968px) {
    .header-container {
        height: 75px;
        padding: 0 16px;
        gap: 12px;
    }
    
    .dakkampioenen-header {
        height: 77px; /* 75px container + 2px border */
    }
    
    body {
        padding-top: 77px;
    }
    
    /* Logo kleiner op mobiel */
    .site-logo {
        min-width: 140px;
        max-width: 140px;
        height: 45px;
    }
    
    .site-logo a {
        width: 140px;
        height: 45px;
    }
    
    .site-logo img {
        height: 45px;
        max-width: 140px;
    }
    
    /* CTA knoppen kleiner */
    .header-cta {
        gap: 8px;
        flex-shrink: 0;
    }
    
    .btn-call {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .btn-call svg {
        width: 18px;
        height: 18px;
    }

    /* Blauwe Offerte-knop verbergen op mobiel (staat in popup-menu) */
    .header-cta .btn-offerte {
        display: none !important;
    }

    .menu-item-offerte {
        display: list-item;
        border-bottom: none;
    }
    .menu-item-offerte a {
        display: block;
        padding: 18px 0 !important;
        text-align: center;
        background: linear-gradient(135deg, var(--color-secondary) 0%, #15283D 100%);
        color: white !important;
        border-radius: 10px;
        margin-top: 12px;
        font-weight: 800;
    }
    .menu-item-offerte a:hover {
        background: linear-gradient(135deg, #15283D 0%, var(--color-secondary) 100%);
        color: white !important;
    }
    .menu-item-offerte a::after {
        display: none;
    }

    .header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 24px;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
        gap: 0;
        border-top: 2px solid var(--color-accent);
        z-index: 9998;
    }

    .header-nav.active {
        display: flex;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--color-light);
    }

    /* Reset desktop hover-zone voor mobiel */
    .nav-menu > li {
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .nav-menu > li > a,
    .nav-menu > li > .nav-item-row > a {
        padding: 18px 0;
    }

    .nav-menu > li > .nav-item-row > a::after {
        display: none;
    }

    .nav-menu .sub-menu .has-grandchildren > .nav-item-row > a::after {
        display: none;
    }

    /* Pijl-knop: zichtbaar + compact (overschrijf desktop-verberg met !important) */
    #dak-header button.nav-submenu-toggle,
    .dakkampioenen-header button.nav-submenu-toggle,
    .header-nav button.nav-submenu-toggle {
        display: inline-flex !important;
        visibility: visible !important;
        position: relative !important;
        width: 30px !important;
        height: 30px !important;
        min-width: 30px !important;
        min-height: 30px !important;
        max-width: 30px !important;
        max-height: 30px !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: visible !important;
        clip: auto !important;
        border: 1px solid rgba(31, 63, 109, 0.22) !important;
        background: #fff !important;
        color: var(--color-secondary) !important;
    }

    #dak-header button.nav-submenu-toggle--nested,
    .dakkampioenen-header button.nav-submenu-toggle--nested {
        width: 28px !important;
        height: 28px !important;
        min-width: 28px !important;
        min-height: 28px !important;
        max-width: 28px !important;
        max-height: 28px !important;
    }

    /* Alleen top-level: geen hover-dropdown op touch */
    .nav-menu > li:hover > .sub-menu {
        display: none;
    }

    .nav-menu .sub-menu .has-grandchildren:hover > .sub-menu-deep {
        display: none !important;
    }

    .nav-menu > li.has-submenu.is-open > .sub-menu {
        display: block !important;
    }

    .nav-menu .sub-menu .has-grandchildren.is-open > .sub-menu-deep {
        display: block !important;
    }

    .nav-menu .sub-menu {
        position: static;
        box-shadow: none;
        background: var(--color-light);
        margin: 0;
        padding: 0 0 0 12px;
        border-top: none;
        border-left: 3px solid rgba(200, 162, 77, 0.45);
    }

    .nav-menu .sub-menu::before {
        display: none;
    }

    .nav-menu .sub-menu > li > a,
    .nav-menu .sub-menu > li > .nav-item-row > a {
        padding: 14px 8px 14px 8px;
        font-size: 15px;
        font-weight: 600;
    }

    .nav-menu .sub-menu .nav-item-row {
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .nav-menu .sub-menu > li:last-child .nav-item-row {
        border-bottom: none;
    }

    /* Grandchild submenu op mobiel: eronder met extra inspringing */
    .nav-menu .sub-menu .sub-menu-deep {
        position: static !important;
        box-shadow: none;
        background: #ebedf0;
        margin: 0;
        margin-left: 0;
        padding: 0 0 0 12px;
        border-top: none;
        border-left: 3px solid var(--color-accent);
        border-radius: 0;
        animation: none !important;
    }

    .nav-menu .sub-menu .sub-menu-deep::before {
        display: none;
    }

    .nav-menu .sub-menu .sub-menu-deep a {
        padding: 14px 16px;
        font-size: 14px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .btn-call span {
        display: none;
    }

    .btn-call {
        padding: 12px 20px;
    }
    
    .btn-call svg {
        width: 22px;
        height: 22px;
    }

    .popup-content {
        padding: 36px 28px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 12px;
        gap: 8px;
    }
    
    /* Logo nog kleiner op kleine telefoons */
    .site-logo {
        min-width: 120px;
        max-width: 120px;
        height: 40px;
    }
    
    .site-logo a {
        width: 120px;
        height: 40px;
    }

    .site-logo img {
        height: 40px;
        max-width: 120px;
    }
    
    /* Knoppen nog compacter */
    .btn-call {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .btn-call svg {
        width: 16px;
        height: 16px;
    }
    
    .mobile-menu-toggle {
        padding: 10px 12px;
    }
    
    .mobile-menu-toggle span {
        width: 24px;
        height: 2px;
    }

    .popup-content h2 {
        font-size: 26px;
    }

    .phone-number {
        font-size: 19px;
    }

    .phone-option {
        padding: 20px;
    }
}

/* ============================================================
   Desktop (≥769px): compactere koppen — site-breed
   Laatste cascade zodat eerdere !important-regels worden vervangen.
   ============================================================ */
@media (min-width: 769px) {
    h1,
    .hero h1,
    .elementor-widget-container .hero h1,
    .elementor-element .hero h1,
    h1.hero,
    .dienst-hero h1,
    .elementor-widget-heading h1.elementor-heading-title,
    .e-con h1.elementor-heading-title {
        font-size: clamp(28px, 2.75vw, 36px) !important;
        line-height: 1.15 !important;
    }

    .page-hero h1,
    .page-hero-inner h1 {
        font-size: clamp(28px, 2.8vw, 40px) !important;
        line-height: 1.12 !important;
    }

    .lp-hero__h1 {
        font-size: clamp(30px, 3.2vw, 44px) !important;
        line-height: 1.1 !important;
    }

    .spoed-hero .hero-copy h1 {
        font-size: clamp(28px, 3vw, 38px) !important;
        line-height: 1.12 !important;
    }

    .hero.hero--home .hero-content h1 {
        font-size: clamp(38px, 4.8vw, 62px) !important;
        line-height: 1.06 !important;
    }

    h2,
    .section-title,
    h2.section-title,
    .elementor-widget-container .section-title,
    .elementor-element .section-title,
    .e-con .section-title,
    .elementor-section .section-title,
    .section-header h2,
    .section-header-center h2,
    .elementor-widget-heading h2.elementor-heading-title,
    .e-con h2.elementor-heading-title,
    .spoed-section .section-header-center h2 {
        font-size: clamp(28px, 2.8vw, 44px) !important;
        line-height: 1.12 !important;
    }

    .contact-info h2,
    .form-info h2,
    .elementor-widget-container .form-info h2,
    .elementor-element .form-info h2,
    .form-card h2,
    .cta-text h2,
    .final-cta h2 {
        font-size: clamp(22px, 2.1vw, 30px) !important;
        line-height: 1.2 !important;
    }

    h3,
    .elementor-widget-heading h3.elementor-heading-title,
    .e-con h3.elementor-heading-title {
        font-size: clamp(18px, 1.45vw, 24px) !important;
        line-height: 1.25 !important;
    }

    h4,
    .elementor-widget-heading h4.elementor-heading-title {
        font-size: clamp(16px, 1.2vw, 20px) !important;
        line-height: 1.3 !important;
    }

    /* CTA-koppen: eerdere clamp(…, 42px) / spoed 72px overschrijven */
    .page-cta-inner h2,
    .cta-container h2,
    .cta-section .cta-content h2,
    .spoed-final-cta .final-cta-left h2 {
        font-size: clamp(22px, 2.1vw, 30px) !important;
        line-height: 1.2 !important;
    }
}
/* ============================================================
   Footer — .dak-footer (footer.php)
   Gebruikt :root-variabelen uit dit bestand.
   ============================================================ */
.dak-footer {
    font-family: 'Inter', sans-serif;
    background: var(--color-dark);
    color: #fff;
    padding: 60px 24px 0;
    margin-top: 0;
}
.dak-footer-inner {
    max-width: 1400px;
    margin: 0 auto;
}
.dak-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 1024px) {
    .dak-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .dak-footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
}
.dak-footer h3 {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-accent);
    margin-bottom: 16px;
}
.dak-footer p,
.dak-footer li {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
}
.dak-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.dak-footer ul li { margin-bottom: 10px; }
.dak-footer a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.2s;
}
.dak-footer a:hover { color: var(--color-accent); }

/* Footer navigatie menu styling - zelfde als vestigingen menu */
.dak-footer-nav-menu ul,
.dak-footer-nav ul {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)) !important;
    gap: 8px 24px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}
.dak-footer-nav-menu li,
.dak-footer-nav li {
    margin-bottom: 0 !important;
}
.dak-footer-nav-menu a,
.dak-footer-nav a {
    color: rgba(255,255,255,0.9) !important;
    text-decoration: none !important;
    font-size: 15px !important;
    transition: color 0.2s;
}
.dak-footer-nav-menu a:hover,
.dak-footer-nav a:hover {
    color: var(--color-accent) !important;
}

/* Vestigingen menu styling */
.dak-footer-vestigingen ul {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)) !important;
    gap: 8px 24px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}
.dak-footer-vestigingen li {
    margin-bottom: 0 !important;
}
.dak-footer-vestigingen a {
    color: rgba(255,255,255,0.9) !important;
    text-decoration: none !important;
    font-size: 15px !important;
    transition: color 0.2s;
}
.dak-footer-vestigingen a:hover {
    color: var(--color-accent) !important;
}

/* Diensten- en werkgebied-menu styling (footer) */
.dak-footer-diensten-menu ul,
.dak-footer-diensten ul,
.dak-footer-werkgebied-menu ul,
.dak-footer-werkgebied ul {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)) !important;
    gap: 8px 24px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}
.dak-footer-diensten-menu li,
.dak-footer-diensten li,
.dak-footer-werkgebied-menu li,
.dak-footer-werkgebied li {
    margin-bottom: 0 !important;
}
.dak-footer-diensten-menu a,
.dak-footer-diensten a,
.dak-footer-werkgebied-menu a,
.dak-footer-werkgebied a {
    color: rgba(255,255,255,0.9) !important;
    text-decoration: none !important;
    font-size: 15px !important;
    transition: color 0.2s;
}
.dak-footer-diensten-menu a:hover,
.dak-footer-diensten a:hover,
.dak-footer-werkgebied-menu a:hover,
.dak-footer-werkgebied a:hover {
    color: var(--color-accent) !important;
}
.dak-footer-contact p { margin-bottom: 8px; }
.dak-footer-contact a { color: rgba(255,255,255,0.9); }
.dak-footer-kvk-btw {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.12);
    font-size: 13px;
    line-height: 1.65;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.02em;
}
.dak-footer-kvk-btw span { display: block; }
.dak-footer-kvk-btw strong {
    font-weight: 600;
    color: rgba(255,255,255,0.78);
    margin-right: 6px;
}
a.dak-footer-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 4px;
    margin-bottom: 4px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fff !important;
    text-decoration: none !important;
    background: linear-gradient(145deg, #26c96a 0%, #1fa855 50%, #19914a 100%);
    border: 1px solid rgba(200, 162, 77, 0.45);
    border-radius: 10px;
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
a.dak-footer-whatsapp svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
}
a.dak-footer-whatsapp:hover {
    color: #fff !important;
    transform: translateY(-2px);
    border-color: var(--color-accent);
    box-shadow:
        0 8px 24px rgba(37, 211, 102, 0.35),
        0 0 0 1px rgba(200, 162, 77, 0.55);
}
.dak-footer-copyright {
    padding: 24px 0 32px;
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}
.dak-footer-copyright a { color: rgba(255,255,255,0.7); }
.dak-footer-formidable {
    margin-top: 12px;
}

/* Floating WhatsApp — rechtsonder, overal zichtbaar (footer.php) */
.dak-wa-float {
    position: fixed;
    right: max(16px, env(safe-area-inset-right, 0px));
    bottom: max(20px, env(safe-area-inset-bottom, 0px));
    z-index: 99990;
    width: 60px;
    height: 60px;
    text-decoration: none !important;
    color: #fff !important;
}
.dak-wa-float__pulse {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 60px;
    height: 60px;
    margin-left: -30px;
    margin-top: -30px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.45);
    pointer-events: none;
    animation: dak-wa-float-ring 2.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}
.dak-wa-float__pulse--delay {
    animation-delay: 1.2s;
}
@keyframes dak-wa-float-ring {
    0% {
        transform: scale(0.92);
        opacity: 0.85;
    }
    65%,
    100% {
        transform: scale(1.75);
        opacity: 0;
    }
}
.dak-wa-float__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(155deg, #2dd36f 0%, #22c55e 45%, #16a34a 100%);
    box-shadow:
        0 6px 24px rgba(0, 0, 0, 0.38),
        0 0 0 2px rgba(200, 162, 77, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.dak-wa-float:hover .dak-wa-float__inner {
    transform: scale(1.08);
    box-shadow:
        0 10px 32px rgba(37, 211, 102, 0.45),
        0 0 0 2px var(--color-accent),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.dak-wa-float:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 4px;
    border-radius: 50%;
}
.dak-wa-float__inner svg {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}
@media (prefers-reduced-motion: reduce) {
    .dak-wa-float__pulse {
        animation: none;
        opacity: 0.35;
        transform: scale(1.15);
    }
}
/* ── Countdown timer ──────────────────────────────────────────── */
.lp-form-countdown {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #6b7280;
  margin: -4px 0 10px;
  padding: 0 4px;
}
.lp-form-countdown strong {
  color: #dc2626;
  font-variant-numeric: tabular-nums;
  font-size: 0.9rem;
}

/* ── Activity popup ───────────────────────────────────────────── */
.lp-activity-popup {
  position: fixed;
  bottom: 80px;
  left: 20px;
  z-index: 9999;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: #374151;
  box-shadow: 0 8px 24px rgba(0,0,0,.14);
  transform: translateY(20px);
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
  max-width: 280px;
  pointer-events: none;
}
.lp-activity-popup--visible {
  transform: translateY(0);
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════
   HOME PAGE ADDITIONS — trust-strip, werkwijze, usp--feature
   Append to site.css (of enqueue als home-additions.css)
════════════════════════════════════════════════════════════════ */

/* ── Trust Strip ─────────────────────────────────────────────── */
.trust-strip {
    background: var(--color-secondary);
    padding: 18px var(--space-md);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.trust-strip-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.trust-strip-item {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    font-weight: 500;
    padding: 6px 28px;
    border-right: 1px solid rgba(255,255,255,0.15);
}

.trust-strip-item:last-child {
    border-right: none;
}

.trust-strip-item svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

.trust-strip-item strong {
    font-weight: 800;
    color: #fff;
}

@media (max-width: 900px) {
    .trust-strip-item {
        padding: 5px 16px;
        font-size: 13px;
    }
}

@media (max-width: 600px) {
    .trust-strip-inner {
        gap: 2px;
    }
    .trust-strip-item {
        padding: 5px 12px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        width: 50%;
        font-size: 12px;
    }
    .trust-strip-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
}


/* ── Werkwijze (3 stappen) ───────────────────────────────────── */
.werkwijze {
    background: var(--color-light);
    padding: var(--space-2xl) var(--space-md);
}

.werkwijze-container {
    max-width: 1100px;
    margin: 0 auto;
}

.werkwijze-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-top: var(--space-xl);
    position: relative;
}

.werkwijze-step {
    flex: 1;
    text-align: center;
    padding: 0 var(--space-lg);
    position: relative;
}

.werkwijze-number {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 16px;
    opacity: 0.7;
}

.werkwijze-icon {
    width: 72px;
    height: 72px;
    background: #fff;
    border: 2px solid rgba(176, 30, 45, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--color-primary);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.werkwijze-step:hover .werkwijze-icon {
    border-color: var(--color-primary);
    box-shadow: 0 6px 24px rgba(176,30,45,0.15);
}

.werkwijze-step h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.werkwijze-step p {
    font-size: 14px;
    color: #5a6070;
    line-height: 1.65;
}

.werkwijze-connector {
    flex-shrink: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary) 0%, rgba(176,30,45,0.2) 100%);
    margin-top: 36px;
    position: relative;
}

.werkwijze-connector::after {
    content: '';
    position: absolute;
    right: -5px;
    top: -4px;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--color-primary);
    border-right: 2px solid var(--color-primary);
    transform: rotate(45deg);
    opacity: 0.4;
}

@media (max-width: 768px) {
    .werkwijze-steps {
        flex-direction: column;
        align-items: center;
    }
    .werkwijze-step {
        max-width: 340px;
        padding: 0 var(--space-md);
    }
    .werkwijze-connector {
        width: 2px;
        height: 40px;
        background: linear-gradient(180deg, var(--color-primary) 0%, rgba(176,30,45,0.2) 100%);
        margin-top: 0;
    }
    .werkwijze-connector::after {
        right: -4px;
        top: auto;
        bottom: -5px;
        transform: rotate(135deg);
    }
}


/* ── USPs — feature variant ──────────────────────────────────── */
.usps--feature {
    background: #fff;
    padding: var(--space-2xl) var(--space-md);
}

.usps-grid--feature {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.usp-item--feature {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 28px 24px;
    background: var(--color-light);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.usp-item--feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(176,30,45,0.12);
}

.usp-icon-wrap {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, rgba(176,30,45,0.08) 0%, rgba(176,30,45,0.04) 100%);
    border: 1px solid rgba(176,30,45,0.14);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.usp-body h3 {
    font-size: 15px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 6px;
    line-height: 1.3;
}

.usp-body p {
    font-size: 13.5px;
    color: #5a6070;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .usps-grid--feature {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .usps-grid--feature {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .usp-item--feature {
        padding: 20px 18px;
    }
}


/* ── Service-card fallback image ─────────────────────────────── */
.service-image--fallback {
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-light);
    color: #aaa;
}

/* ── Service-link verbetering ────────────────────────────────── */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-link svg {
    transition: transform 0.2s;
}

.service-link:hover svg {
    transform: translateX(3px);
}
