
  :root {
    /* Current Connect brand colors */
    --cc-blue: #2d2e8a;          /* deep navy from logo */
    --cc-blue-deep: #1f2068;
    --cc-blue-darker: #161749;
    --cc-orange: rgb(224, 64, 64);    /* brand red */
    --cc-orange-soft: rgb(236, 96, 96);
    --cc-pink: #d63384;          /* pink/magenta from logo gradient */

    --bg-dark: #1a1b5c;          /* hero dark blue */
    --bg-darker: #14154a;
    --bg-light: #f5f4ef;         /* warm off-white */
    --bg-card-dark: #1f2068;
    --bg-card-light: #ffffff;

    --ink-light: #ffffff;
    --ink-light-dim: rgba(255,255,255,0.7);
    --ink-light-mute: rgba(255,255,255,0.5);
    --ink-dark: #161749;
    --ink-dark-dim: #5a5b7a;
    --ink-dark-mute: #8a8ba0;

    --border-light: rgba(255,255,255,0.12);
    --border-dark: rgba(22,23,73,0.08);

    --sans: 'Plus Jakarta Sans', system-ui, sans-serif;
    --display: 'all-round-gothic', 'All Round Gothic', 'Mona Sans', 'Plus Jakarta Sans', system-ui, sans-serif;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg-light);
    color: var(--ink-dark);
    font-family: var(--sans);
    font-weight: 400;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* ========== HERO SECTION (dark) ========== */
  .hero-section {
    background: var(--bg-dark);
    background-image:
      radial-gradient(ellipse 800px 600px at 80% 20%, rgba(224, 64, 64, 0.15), transparent 60%),
      radial-gradient(ellipse 600px 400px at 10% 80%, rgba(214, 51, 132, 0.1), transparent 60%);
    color: var(--ink-light);
    padding: 120px 24px 60px;
    border-radius: 0 0 32px 32px;
    position: relative;
    overflow: hidden;
  }

  .hero-wrap {
    max-width: 1320px;
    margin: 0 auto;
  }

  /* Navigation */
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 8px;
    margin-bottom: 60px;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--ink-light);
  }
  .logo-icon {
    width: 42px;
    height: 42px;
    background-image: url("../images/logo.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
  }
  .logo-text {
    font-family: var(--display);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: #ffffff;
  }
  .logo-text span {
    display: block;
    font-family: var(--sans);
    font-weight: 500;
    font-size: 10px;
    color: var(--cc-orange);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 2px;
  }
  /* Transparante topbar die over de hero zweeft */
  .topbar {
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
  }
  .topbar-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 28px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
  }
  .nav-menu {
    display: flex;
    gap: 4px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border-light);
    padding: 6px;
    border-radius: 100px;
    backdrop-filter: blur(10px);
  }
  .nav-menu a {
    color: var(--ink-light-dim);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 100px;
    transition: all 0.2s;
  }
  .nav-menu a:hover {
    color: var(--ink-light);
  }
  .nav-menu a.active {
    background: var(--ink-light);
    color: var(--ink-dark);
  }
  .nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    font-family: var(--sans);
  }
  .btn-white {
    background: var(--ink-light);
    color: var(--ink-dark);
  }
  .btn-white:hover { background: #f0eee5; transform: translateY(-1px); }
  .btn-orange {
    background: var(--cc-orange);
    color: var(--ink-light);
  }
  .btn-orange:hover {
    background: var(--cc-orange-soft);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(224, 64, 64, 0.35);
  }
  .btn-circle {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.1);
    border: 1px solid var(--border-light);
    color: var(--ink-light);
  }
  .btn-circle:hover { background: rgba(255,255,255,0.18); }
  .btn-arrow-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--cc-orange);
    display: grid;
    place-items: center;
    margin-left: 4px;
  }

  /* Hero grid */
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 0 8px;
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--cc-orange);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 28px;
  }
  .hero-eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--cc-orange);
  }
  .hero-section h1 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(40px, 5vw, 72px);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
  }
  .hero-section h1 em {
    font-style: normal;
    font-weight: 700;
    color: var(--cc-orange);
  }
  .hero-lead {
    color: var(--ink-light-dim);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 500px;
  }
  .hero-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 40px;
  }
  .hero-meta {
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
  }
  .rating {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .rating-num {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
  }
  .stars {
    display: flex;
    gap: 2px;
    margin-bottom: 4px;
  }
  .star {
    color: var(--cc-orange);
    font-size: 14px;
  }
  .rating-label {
    font-size: 11px;
    color: var(--ink-light-mute);
    line-height: 1.3;
  }
  .team {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .team-label {
    font-size: 11px;
    color: var(--ink-light-mute);
    margin-bottom: 4px;
  }
  .avatars {
    display: flex;
  }
  .avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
    margin-left: -8px;
    background: var(--cc-orange);
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 700;
    color: white;
  }
  .avatar:first-child { margin-left: 0; background: var(--cc-pink); }
  .avatar:nth-child(2) { background: #6c63ff; }
  .avatar:nth-child(3) { background: var(--cc-orange); }
  .avatar.more {
    background: rgba(255,255,255,0.15);
    color: var(--ink-light);
    border: 2px solid var(--bg-dark);
    font-size: 14px;
  }

  /* Hero phone/visual */
  .hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-image-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    box-shadow:
      0 30px 80px rgba(0, 0, 0, 0.45),
      0 0 0 1px rgba(255, 255, 255, 0.06);
  }
  .hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 65% center;
    display: block;
  }
  /* Vignette gradient overlay - donker richting links voor leesbaarheid */
  .hero-image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, rgba(26, 27, 92, 0.55) 0%, rgba(26, 27, 92, 0.15) 30%, transparent 60%),
      linear-gradient(180deg, transparent 60%, rgba(20, 21, 74, 0.5) 100%);
    pointer-events: none;
  }
  /* Subtle color tint to match brand */
  .hero-image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(224, 64, 64, 0.12), transparent 50%);
    pointer-events: none;
    z-index: 1;
  }

  /* Floating badge over image */
  .badge-tooltip {
    position: absolute;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    color: var(--ink-dark);
    border-radius: 14px;
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    z-index: 5;
    line-height: 1.35;
  }
  .badge-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #6ee7a0;
    display: grid;
    place-items: center;
    color: var(--ink-dark);
    font-weight: 800;
    flex-shrink: 0;
  }
  .badge-tooltip.top {
    top: 32px;
    left: 20px;
    max-width: 240px;
  }
  .badge-tooltip.middle {
    bottom: 130px;
    left: 20px;
    background: var(--cc-orange);
    color: white;
    max-width: 240px;
  }
  .badge-tooltip.middle .badge-check {
    background: white;
    color: var(--cc-orange);
  }
  .badge-experience {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--cc-orange);
    color: var(--ink-light);
    padding: 18px 22px;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(224, 64, 64, 0.45);
    z-index: 5;
  }
  .badge-experience .num {
    font-family: var(--display);
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -0.03em;
  }
  .badge-experience .lbl {
    font-size: 11px;
    opacity: 0.95;
    font-weight: 500;
  }

  /* ========== SERVICE CARDS BAND ========== */
  .service-band {
    max-width: 1320px;
    margin: -40px auto 0;
    padding: 0 24px;
    position: relative;
    z-index: 10;
  }
  .service-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .service-card-image {
    background: linear-gradient(135deg, #2a2b8a, #1a1b5c);
    border-radius: 20px;
    padding: 28px 26px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    min-height: 320px;
  }
  .service-card-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 70% 30%, rgba(224,64,64,0.25), transparent 50%),
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cdefs%3E%3Cpattern id='p' x='0' y='0' width='40' height='40' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='20' cy='20' r='1' fill='%23fff' opacity='0.15'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='200' height='200' fill='url(%23p)'/%3E%3C/svg%3E");
  }
  .service-card-image .label {
    font-size: 11px;
    opacity: 0.7;
    position: relative;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .service-card-image h4 {
    font-family: var(--display);
    font-weight: 700;
    font-size: 26px;
    line-height: 1.05;
    letter-spacing: -0.02em;
    position: relative;
  }
  .service-card-image .learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--cc-orange);
    font-weight: 600;
    position: relative;
    text-decoration: none;
  }
  .service-card {
    background: var(--bg-card-light);
    border-radius: 20px;
    padding: 28px 26px 26px;
    box-shadow: 0 4px 24px rgba(22,23,73,0.04);
    transition: all 0.3s;
    border: 1px solid var(--border-dark);
    display: flex;
    flex-direction: column;
    min-height: 320px;
  }
  .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(22,23,73,0.1);
    border-color: var(--cc-orange);
  }
  .service-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(45, 46, 138, 0.08);
    display: grid;
    place-items: center;
    color: var(--cc-blue);
    margin-bottom: 18px;
    flex-shrink: 0;
  }
  /* Verschillende accentkleuren per dienst-kaart */
  .service-card.cat-energie .service-card-icon { background: rgba(45,46,138,0.08); color: var(--cc-blue); }
  .service-card.cat-woning .service-card-icon { background: rgba(224,64,64,0.1); color: var(--cc-orange); }
  .service-card.cat-telecom .service-card-icon { background: rgba(74,214,255,0.12); color: #2a96c2; }
  .service-card.cat-duurzaam .service-card-icon { background: rgba(110,231,160,0.15); color: #2a9d65; }
  .service-card.cat-zakelijk .service-card-icon { background: rgba(214,51,132,0.1); color: var(--cc-pink); }

  .service-card h4 {
    font-family: var(--display);
    font-weight: 700;
    font-size: 19px;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--ink-dark);
  }
  .service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .service-card li {
    font-size: 13px;
    color: var(--ink-dark-dim);
    line-height: 1.4;
    padding: 9px 0;
    border-top: 1px solid var(--border-dark);
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  .service-card li::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--cc-orange);
    margin-top: 7px;
    flex-shrink: 0;
  }
  .service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--cc-orange);
    text-decoration: none;
    transition: gap 0.2s;
  }
  .service-card-link:hover {
    gap: 10px;
  }
  .service-card-link svg {
    transition: transform 0.2s;
  }
  .service-card-link:hover svg {
    transform: translateX(2px);
  }

  /* ========== ABOUT SECTION ========== */
  .about-section {
    max-width: 1320px;
    margin: 100px auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .about-image-wrap {
    position: relative;
  }
.about-image {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 24px;
    background-image:
      linear-gradient(180deg, rgba(26,27,92,0.35) 0%, rgba(26,27,92,0.45) 50%, rgba(20,21,74,0.92) 100%),
      url("../images/about-meterkast.jpeg");
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
  }
  .about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 70% 30%, rgba(224,64,64,0.18), transparent 55%);
    z-index: 1;
  }
  .about-image-content {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    color: white;
    z-index: 2;
  }
  .about-image-content h5 {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
  }
  .about-image-content p {
    font-size: 13px;
    opacity: 0.85;
  }
  .about-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--cc-orange);
    display: grid;
    place-items: center;
    color: white;
    margin-bottom: 16px;
    box-shadow: 0 12px 30px rgba(224, 64, 64, 0.35);
  }
  .about-content .section-label {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(45,46,138,0.08);
    color: var(--cc-blue);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
  }
  .about-content h2 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(26px, 2.8vw, 38px);
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
    color: var(--ink-dark);
  }
  .about-pillars {
    display: grid;
    gap: 20px;
    margin-top: 32px;
  }
  .pillar {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    align-items: start;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-dark);
  }
  .pillar:last-child { border-bottom: none; }
  .pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(45,46,138,0.08);
    color: var(--cc-blue);
    display: grid;
    place-items: center;
  }
  .pillar:nth-child(2) .pillar-icon {
    background: rgba(224,64,64,0.1);
    color: var(--cc-orange);
  }
  .pillar h4 {
    font-family: var(--display);
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
  }
  .pillar p {
    font-size: 13px;
    color: var(--ink-dark-dim);
    line-height: 1.55;
  }
  .pillar-cta {
    background: var(--cc-blue);
    color: white;
    border-radius: 16px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 8px;
  }
  .pillar-cta p {
    color: white;
    font-size: 13px;
    margin: 0;
  }
  .pillar-cta .btn {
    background: var(--cc-orange);
    color: white;
    padding: 10px 16px;
    flex-shrink: 0;
  }

  /* ========== STATS BAND ========== */
  .stats-band {
    max-width: 1320px;
    margin: 80px auto;
    padding: 0 24px;
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
    padding: 50px 0;
  }
  .stat-item {
    position: relative;
    padding-top: 22px;
  }
  .stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 4px;
    background: var(--cc-orange);
    border-radius: 100px;
  }
  .stat-num {
    font-family: var(--display);
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 12px;
    color: var(--ink-dark);
    letter-spacing: -0.04em;
  }
  .stat-num sup {
    color: var(--cc-orange);
    font-size: 0.5em;
    vertical-align: super;
  }
  .stat-label {
    font-size: 13px;
    color: var(--ink-dark-dim);
    line-height: 1.5;
    max-width: 200px;
  }

  /* ========== SERVICES GRID ========== */
  .services-section {
    background: var(--bg-light);
    padding: 80px 24px 100px;
  }
  .services-wrap { max-width: 1320px; margin: 0 auto; }
  .services-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 50px;
  }
  .services-head .section-label {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(45,46,138,0.08);
    color: var(--cc-blue);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
  }
  .services-head h2 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.02;
    letter-spacing: -0.03em;
  }
  .services-head p {
    color: var(--ink-dark-dim);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .svc-card {
    background: var(--bg-card-light);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-dark);
    transition: all 0.3s;
    display: flex;
    text-decoration: none;
    color: inherit;
    flex-direction: column;
  }
  .svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(22,23,73,0.08);
  }
  .svc-visual {
    aspect-ratio: 16/10;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
  }
  .svc-visual.v1 {
    background:
      radial-gradient(circle at 30% 70%, rgba(224,64,64,0.6), transparent 60%),
      linear-gradient(135deg, #2a2b8a, #14154a);
  }
  .svc-visual.v2 {
    background:
      radial-gradient(circle at 70% 30%, rgba(214,51,132,0.5), transparent 60%),
      linear-gradient(135deg, #1f2068, #2a2b8a);
  }
  .svc-visual.v3 {
    background:
      radial-gradient(circle at 50% 50%, rgba(224,64,64,0.4), transparent 70%),
      linear-gradient(135deg, #14154a, #2a2b8a);
  }
  .svc-visual.v4 {
    background:
      radial-gradient(circle at 20% 80%, rgba(110,231,160,0.3), transparent 60%),
      linear-gradient(135deg, #2a2b8a, #1f2068);
  }
  .svc-visual.v5 {
    background:
      radial-gradient(circle at 80% 80%, rgba(224,64,64,0.5), transparent 60%),
      linear-gradient(135deg, #161749, #2a2b8a);
  }
  .svc-visual.v6 {
    background:
      radial-gradient(circle at 50% 30%, rgba(214,51,132,0.4), transparent 60%),
      linear-gradient(135deg, #2a2b8a, #161749);
  }
  .svc-visual svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
  }
  .svc-visual-icon {
    position: absolute;
    bottom: 16px;
    left: 16px;
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: white;
  }
  .svc-visual-arrow {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--ink-dark);
    transition: all 0.3s;
  }
  .svc-card:hover .svc-visual-arrow {
    background: var(--cc-orange);
    color: white;
    transform: rotate(-45deg);
  }
  .svc-body {
    padding: 22px 24px 26px;
  }
  .svc-cat {
    font-size: 11px;
    color: var(--cc-orange);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .svc-body h4 {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
  }
  .svc-body p {
    font-size: 13px;
    color: var(--ink-dark-dim);
    line-height: 1.55;
  }

  /* ========== CTA FINAL ========== */
  .cta-final {
    background: var(--bg-dark);
    background-image:
      radial-gradient(ellipse 1000px 500px at 50% 100%, rgba(224,64,64,0.25), transparent 60%);
    border-radius: 32px 32px 0 0;
    padding: 100px 24px;
    text-align: center;
    color: white;
    margin-top: 60px;
  }
  .cta-final h2 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.02;
    letter-spacing: -0.03em;
    max-width: 800px;
    margin: 0 auto 24px;
  }
  .cta-final h2 em {
    font-style: normal;
    font-weight: 700;
    color: var(--cc-orange);
  }
  .cta-final p {
    color: var(--ink-light-dim);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 36px;
  }
  .cta-final-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* ========== FOOTER ========== */
  footer {
    background: var(--bg-darker);
    color: var(--ink-light);
    padding: 60px 24px 30px;
  }
  .footer-wrap { max-width: 1320px; margin: 0 auto; }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
  }
  .footer-brand p {
    font-size: 13px;
    color: var(--ink-light-dim);
    margin-top: 16px;
    max-width: 320px;
    line-height: 1.6;
  }
  .footer-col h5 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
    color: var(--cc-orange);
  }
  .footer-col ul { list-style: none; display: grid; gap: 10px; }
  .footer-col a {
    color: var(--ink-light-dim);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--ink-light); }
  .footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12px;
    color: var(--ink-light-mute);
  }
  .footer-bottom .legal { display: flex; gap: 20px; }
  .footer-bottom a { color: var(--ink-light-mute); text-decoration: none; }

  /* Reveal animation */
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.in { opacity: 1; transform: translateY(0); }

  /* Responsive */
  @media (max-width: 1024px) {
    .hero-grid, .about-section, .services-head {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .service-row { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .nav-menu { display: none; }
    .hero-visual { height: 460px; }
  }
  @media (max-width: 600px) {
    .service-row, .services-grid, .stats-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .stat-item::before { display: none; }
    .hero-section { padding: 16px 16px 40px; }
    .hero-visual { height: 420px; }
    .badge-tooltip.top { top: 16px; left: 16px; max-width: 200px; font-size: 11px; }
    .badge-tooltip.middle { bottom: 90px; left: 16px; max-width: 200px; font-size: 11px; }
    .badge-experience { right: 16px; bottom: 16px; padding: 14px 18px; }
    .badge-experience .num { font-size: 28px; }
  }


  /* ========== EXTRA: SUB PAGE HERO ========== */
  .page-hero {
    background: var(--bg-dark);
    background-image:
      radial-gradient(ellipse 900px 500px at 80% 20%, rgba(224,64,64,0.18), transparent 60%);
    color: white;
    padding: 130px 24px 70px;
    text-align: center;
  }
  .page-hero-inner {
    max-width: 880px;
    margin: 0 auto;
  }
  .page-hero h1 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
  }
  .page-hero h1 em {
    font-style: normal;
    color: var(--cc-orange);
  }
  .page-hero p {
    color: rgba(255,255,255,0.75);
    font-size: 17px;
    max-width: 640px;
    margin: 0 auto;
  }
  .page-hero .breadcrumb {
    margin-bottom: 24px;
    font-family: var(--sans);
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }
  .page-hero .breadcrumb a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
  }
  .page-hero .breadcrumb a:hover { color: white; }

  /* ========== DIENST DETAIL PAGE ========== */
  .dienst-overview {
    background: var(--bg-light);
    padding: 80px 24px;
  }
  .dienst-overview-wrap {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
  }
  .dienst-overview-content p {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 18px;
    color: var(--ink-dark);
  }
  .dienst-list-card {
    background: white;
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    padding: 28px;
    position: sticky;
    top: 100px;
  }
  .dienst-list-card h3 {
    font-family: var(--display);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--ink-dark);
    letter-spacing: -0.02em;
  }
  .dienst-list-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
  }
  .dienst-list-card li {
    padding: 10px 0;
    border-top: 1px solid var(--border-dark);
    font-size: 14px;
    color: var(--ink-dark-dim);
    display: flex;
    gap: 10px;
    align-items: flex-start;
    line-height: 1.45;
  }
  .dienst-list-card li::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--cc-orange);
    margin-top: 8px;
    flex-shrink: 0;
  }

  /* ========== CONTACT PAGE ========== */
  .contact-section {
    background: var(--bg-light);
    padding: 80px 24px;
  }
  .contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
  }
  .contact-info {
    background: var(--bg-dark);
    color: white;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
  }
  .contact-info::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 90% 10%, rgba(224,64,64,0.2), transparent 60%);
    pointer-events: none;
  }
  .contact-info > * { position: relative; }
  .contact-info h2 {
    font-family: var(--display);
    font-weight: 700;
    font-size: 28px;
    line-height: 1.1;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
  }
  .contact-info > p {
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    margin-bottom: 32px;
  }
  .contact-info-block {
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .contact-info-block:first-of-type { border-top: none; padding-top: 0; }
  .contact-info-label {
    font-size: 11px;
    color: var(--cc-orange);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    margin-bottom: 6px;
  }
  .contact-info-value {
    font-family: var(--display);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.01em;
    color: white;
  }
  .contact-info-value a {
    color: white;
    text-decoration: none;
  }
  .contact-info-value a:hover { color: var(--cc-orange); }
  .contact-info-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
  }

  .contact-form-wrap {
    background: white;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--border-dark);
  }
  .contact-form-wrap h3 {
    font-family: var(--display);
    font-weight: 700;
    font-size: 24px;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    color: var(--ink-dark);
  }
  .contact-form-wrap p.intro {
    color: var(--ink-dark-dim);
    font-size: 14px;
    margin-bottom: 28px;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
  }
  .form-field {
    margin-bottom: 14px;
  }
  .form-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-dark);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-dark);
    border-radius: 10px;
    font-family: var(--sans);
    font-size: 14px;
    color: var(--ink-dark);
    background: var(--bg-light);
    transition: all 0.2s;
  }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    outline: none;
    border-color: var(--cc-orange);
    background: white;
    box-shadow: 0 0 0 3px rgba(224,64,64,0.1);
  }
  .form-field textarea {
    resize: vertical;
    min-height: 120px;
    font-family: var(--sans);
  }
  .form-submit {
    margin-top: 8px;
    background: var(--cc-orange);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 100px;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .form-submit:hover {
    background: var(--cc-orange-soft);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(224,64,64,0.35);
  }
  .form-disclaimer {
    margin-top: 16px;
    font-size: 12px;
    color: var(--ink-dark-mute);
    line-height: 1.5;
  }

  .map-section {
    padding: 0 24px 80px;
  }
  .map-wrap {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-dark);
    height: 420px;
  }
  .map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.3);
  }

  /* ========== GENERIC PAGE CONTENT ========== */
  .page-content {
    background: white;
    padding: 80px 24px;
  }
  .page-content-inner {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.7;
  }
  .page-content-inner h2 {
    font-family: var(--display);
    font-weight: 700;
    font-size: 28px;
    margin: 40px 0 16px;
    letter-spacing: -0.02em;
  }
  .page-content-inner h3 {
    font-family: var(--display);
    font-weight: 700;
    font-size: 20px;
    margin: 32px 0 12px;
    letter-spacing: -0.02em;
  }
  .page-content-inner p { margin-bottom: 16px; }
  .page-content-inner ul { padding-left: 24px; margin-bottom: 16px; }
  .page-content-inner li { padding: 4px 0; }

  /* ========== RESPONSIVE EXTRA ========== */
  @media (max-width: 1024px) {
    .dienst-overview-wrap, .contact-grid {
      grid-template-columns: 1fr;
    }
    .dienst-list-card { position: static; }
    .form-row { grid-template-columns: 1fr; }
  }
  @media (max-width: 600px) {
    .contact-info, .contact-form-wrap { padding: 28px 24px; }
  }


  /* ========== MEGA MENU ========== */
  .nav-item-has-mega {
    position: static;
    display: inline-flex;
    align-items: center;
  }
  .nav-mega-trigger {
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }
  .nav-caret {
    transition: transform 0.25s ease;
  }
  .mega-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    top: 100%;
    width: min(1340px, calc(100vw - 48px));
    margin-top: 12px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 200;
  }
  .mega-menu-inner {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(20,21,74,0.25);
    border: 1px solid var(--border-dark, #e0e0e6);
    padding: 32px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
  }
  /* Hover op desktop */
  @media (min-width: 1025px) {
    .nav-item-has-mega:hover .mega-menu {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }
    .nav-item-has-mega:hover .nav-caret {
      transform: rotate(180deg);
    }
  }
  .mega-col-title {
    display: block;
    font-family: var(--display);
    font-weight: 700;
    font-size: 15px;
    color: var(--cc-orange, #e04040) !important; font-weight: 800; font-size: 16px; text-align: left;
    letter-spacing: -0.01em;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: none;
    text-decoration: none;
  }
  .mega-col-title:hover {
    color: var(--cc-orange, #e04040) !important;
  }
  .mega-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .mega-col li {
    margin: 0 0 8px;
  }
  .mega-col li a {
    display: block;
    font-family: var(--sans);
    font-size: 13.5px;
    line-height: 1.4;
    color: var(--ink-dark-dim, #5a5b7a) !important;
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.15s, padding-left 0.15s;
  }
  .mega-col li a:hover {
    color: var(--cc-orange, #e04040) !important;
    padding-left: 5px;
  }

  /* ========== MOBIEL HAMBURGER ========== */
  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 210;
  }
  .nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  .nav-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* ========== MOBIEL MENU ========== */
  @media (max-width: 1024px) {
    .nav-toggle {
      display: flex;
    }
    .topbar-inner { padding: 18px 20px; }
    .nav-menu a.active { background: transparent; color: var(--cc-orange) !important; }
    .nav-menu {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      justify-content: flex-start;
      position: fixed;
      top: 76px;
      left: 0;
      right: 0;
      width: auto;
      background: #ffffff;
      border: none;
      border-radius: 0 0 18px 18px;
      padding: 6px 20px 18px;
      gap: 2px;
      max-height: 0;
      overflow: hidden;
      transform: none;
      transition: max-height 0.4s ease, padding 0.4s ease;
      z-index: 205;
      box-shadow: 0 22px 44px rgba(20,21,74,0.16);
    }
    .nav-menu.is-open {
      max-height: calc(100vh - 76px);
      overflow-y: auto;
    }
    .nav-menu > a {
      width: 100%;
      color: var(--ink-dark) !important;
      padding: 14px 4px;
      font-size: 17px;
      border-bottom: 1px solid rgba(22,23,73,0.08);
    }
    .nav-item-has-mega {
      display: block;
      width: 100%;
    }
    .nav-mega-trigger {
      width: 100%;
      color: var(--ink-dark) !important;
      justify-content: space-between;
      padding: 14px 4px;
      font-size: 17px;
      border-bottom: 1px solid rgba(22,23,73,0.08);
    }
    .mega-menu {
      position: static;
      left: auto;
      width: auto;
      opacity: 1;
      visibility: visible;
      transform: none;
      margin: 0;
      padding: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
    }
    .nav-item-has-mega.mega-open .mega-menu {
      max-height: 2000px;
    }
    .nav-item-has-mega.mega-open .nav-caret {
      transform: rotate(180deg);
    }
    .mega-menu-inner {
      grid-template-columns: 1fr;
      gap: 18px;
      background: transparent;
      box-shadow: none;
      border: none;
      padding: 12px 0 12px 12px;
    }
    .mega-col-title {
      color: var(--cc-orange) !important;
      border-bottom-color: transparent;
    }
    .mega-col li a {
      color: var(--ink-dark-dim) !important;
    }
    .mega-col li a:hover {
      color: var(--cc-orange) !important;
    }
    .nav-cta {
      display: none;
    }
  }

/* ============================================
   FOTO'S PER DIENST (toegevoegd)
   ============================================ */

/* Coverbanner bovenaan de dienst-detailpagina */
.dienst-cover {
  max-width: 1100px;
  margin: -48px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.dienst-cover img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  box-shadow: 0 24px 60px rgba(20, 21, 74, 0.20);
}

/* Fotobanner bovenaan een service-card (homepage + diensten-overzicht) */
.service-card-photo {
  height: 140px;
  margin: -28px -26px 18px;
  border-radius: 20px 20px 0 0;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-dark);
}

/* Echte foto in de svc-card visual i.p.v. de gradient/SVG */
.svc-visual.has-photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.svc-visual.has-photo > svg {
  display: none;
}
.svc-visual.has-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 21, 74, 0.10) 0%, rgba(20, 21, 74, 0.55) 100%);
  z-index: 1;
}
.svc-visual.has-photo .svc-visual-icon,
.svc-visual.has-photo .svc-visual-arrow {
  z-index: 2;
}

@media (max-width: 768px) {
  .dienst-cover {
    margin-top: -32px;
    padding: 0 16px;
  }
  .dienst-cover img {
    aspect-ratio: 16 / 9;
    border-radius: 18px;
  }
  .service-card-photo {
    height: 120px;
  }
}

/* ============================================
   FIX: stat-banden in geimporteerde dienst/projecten-content
   De import zet een inline "margin: 60px 24px" op .stats-band, wat de
   horizontale centrering uitschakelt. Hier weer netjes centreren.
   ============================================ */
.cc-content .stats-band {
  margin: 60px auto !important;
  max-width: 1200px;
}
@media (max-width: 768px) {
  .cc-content .stats-band { margin: 40px auto !important; }
}

/* Klikbare sub-diensten in de overzichtskaarten */
.service-card li a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s;
}
.service-card li a:hover { color: var(--cc-orange); }

/* ============================================
   Dienst contact/CTA-rij (foto links, infoblok + contactgegevens rechts)
   ============================================ */
.dienst-contact-row { background: var(--bg-light); padding: 10px 24px 80px; }
.dcr-wrap {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch;
}
.dcr-photo {
  border-radius: 24px; min-height: 360px;
  background-size: cover; background-position: center;
  box-shadow: 0 24px 60px rgba(20,21,74,0.15);
}
.dcr-info {
  background: #fff; border: 1px solid var(--border-dark); border-radius: 24px;
  padding: 40px; display: flex; flex-direction: column; justify-content: center;
}
.dcr-info h2 {
  font-family: var(--display); font-weight: 700; font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.02em; color: var(--ink-dark); margin: 10px 0 14px; line-height: 1.1;
}
.dcr-info p { color: var(--ink-dark-dim); line-height: 1.6; margin-bottom: 24px; }
.dcr-contact { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.dcr-contact > div { font-size: 15px; color: var(--ink-dark); line-height: 1.4; }
.dcr-contact a { color: var(--ink-dark); text-decoration: none; }
.dcr-contact a:hover { color: var(--cc-orange); }
.dcr-label {
  display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--cc-orange); font-weight: 600; margin-bottom: 3px;
}
.dcr-info .btn { align-self: flex-start; }
@media (max-width: 768px) {
  .dcr-wrap { grid-template-columns: 1fr; gap: 24px; }
  .dcr-photo { min-height: 220px; }
  .dcr-info { padding: 28px; }
}

/* Info-punten in het dienst-blok (vervangt de adresgegevens) */
.dcr-points { list-style: none; padding: 0; margin: 4px 0 28px; display: flex; flex-direction: column; gap: 12px; }
.dcr-points li { position: relative; padding-left: 28px; font-size: 15px; color: var(--ink-dark); line-height: 1.45; }
.dcr-points li::before {
  content: ''; position: absolute; left: 0; top: 1px; width: 18px; height: 18px; border-radius: 50%;
  background: rgba(224,64,64,0.12);
}
.dcr-points li::after {
  content: ''; position: absolute; left: 6px; top: 7px; width: 6px; height: 6px; border-radius: 50%; background: var(--cc-orange);
}

/* "Onze aanpak"-kaarten in 4 kolommen (responsief) */
.aanpak-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1024px) { .aanpak-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .aanpak-grid { grid-template-columns: 1fr; } }

/* Kleinere stat-cijfers binnen dienst/projecten-content */
.cc-content .stat-num { font-size: clamp(24px, 2.4vw, 34px); letter-spacing: -0.03em; }

/* FIX: menupil erfde 'margin-bottom:60px' van de generieke nav-regel,
   waardoor hij in de flex-balk omhoog werd geduwd. Nu netjes uitgelijnd
   met logo en 'Plan kennismaking'-knop. */
.topbar .nav-menu { margin: 0; }

/* Sub-diensten kaarten met afbeelding bovenaan (categoriepagina's) */
.subgrid-section { background: var(--bg-light); padding: 24px 24px 70px; }
.subgrid-wrap { max-width: 1100px; margin: 0 auto; }
.subgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; margin-top: 18px; }
.subcard {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--border-dark); border-radius: 16px; overflow: hidden;
  text-decoration: none; transition: transform .25s, box-shadow .25s, border-color .25s;
}
.subcard:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(22,23,73,0.10); border-color: var(--cc-orange); }
.subcard-photo {
  aspect-ratio: 16 / 10; background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6);
}
.subcard-body { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 18px; }
.subcard-body span { font-family: var(--display); font-weight: 700; font-size: 15px; color: var(--ink-dark); line-height: 1.2; }
.subcard-body svg { color: var(--cc-orange); flex-shrink: 0; }

/* Foto-galerij op dienstpagina's ("In de praktijk") */
.gallery-section { background: var(--bg-light); padding: 10px 24px 80px; }
.gallery-wrap { max-width: 1100px; margin: 0 auto; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; margin-top: 18px; }
.gallery-grid img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 14px; display: block;
  box-shadow: 0 8px 24px rgba(20,21,74,0.08);
}

/* Mega-menu kolommen links uitlijnen (titel gelijk met items) */
.mega-col, .mega-col-title { text-align: left; }

/* Mega-kolomtitel: overschrijf .nav-menu a (font-weight 500 / 13px / padding)
   met hogere specificiteit -> echt vet, juiste grootte, links uitgelijnd. */
.nav-menu .mega-col-title {
  font-weight: 800;
  font-size: 16px;
  padding: 0 0 12px;
  text-align: left;
  color: var(--cc-orange) !important;
}

/* Eenvoudige nav-dropdowns (Over ons, Inloggen) — smal, onder de knop op desktop */
@media (min-width: 1025px) {
  .nav-item-has-mega.simple { position: relative; }
  .nav-item-has-mega.simple .mega-menu {
    left: 0; right: auto; transform: translateY(-8px);
    width: auto; min-width: 250px;
  }
  .nav-item-has-mega.simple.right .mega-menu { left: auto; right: 0; }
  .nav-item-has-mega.simple .mega-menu-inner {
    grid-template-columns: 1fr; min-width: 250px; padding: 14px;
  }
  .nav-item-has-mega.simple:hover .mega-menu { transform: translateY(0); }
}
.nav-item-has-mega.simple .mega-col li { margin: 0; }
.nav-item-has-mega.simple .mega-col li a { display: block; padding: 9px 12px; border-radius: 10px; }
.nav-item-has-mega.simple .mega-col li a:hover { background: rgba(224,64,64,0.07); }

/* ============================================
   Contact Form 7 in de huisstijl (.cc-cf7)
   ============================================ */
.cc-cf7 .wpcf7-form .cf7-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: start; margin-bottom: 14px; }
.cc-cf7 .wpcf7-form .cf7-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; align-items: start; margin-bottom: 14px; }
.cc-cf7 .wpcf7-form label {
  display: block; font-size: 12px; font-weight: 600; color: var(--ink-dark);
  letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 14px;
}
.cc-cf7 .wpcf7-form .wpcf7-form-control-wrap { display: block; margin-top: 6px; }
.cc-cf7 .wpcf7-form input[type="text"],
.cc-cf7 .wpcf7-form input[type="email"],
.cc-cf7 .wpcf7-form input[type="tel"],
.cc-cf7 .wpcf7-form input[type="url"],
.cc-cf7 .wpcf7-form input[type="number"],
.cc-cf7 .wpcf7-form select,
.cc-cf7 .wpcf7-form textarea {
  width: 100%; box-sizing: border-box; padding: 12px 14px;
  border: 1px solid var(--border-dark); border-radius: 10px;
  font-family: var(--sans); font-size: 14px; font-weight: 400;
  color: var(--ink-dark); background: var(--bg-light);
  text-transform: none; letter-spacing: normal; transition: all 0.2s;
}
.cc-cf7 .wpcf7-form textarea { resize: vertical; min-height: 120px; }
.cc-cf7 .wpcf7-form input:focus,
.cc-cf7 .wpcf7-form select:focus,
.cc-cf7 .wpcf7-form textarea:focus {
  outline: none; border-color: var(--cc-orange); background: #fff; box-shadow: 0 0 0 3px rgba(224,64,64,0.1);
}
.cc-cf7 .wpcf7-form input[type="submit"], .cc-cf7 .wpcf7-form .wpcf7-submit {
  margin-top: 8px; background: var(--cc-orange); color: #fff; border: none;
  padding: 14px 28px; border-radius: 100px; cursor: pointer;
  font-family: var(--sans); font-weight: 600; font-size: 14px;
  text-transform: none; letter-spacing: normal; transition: all 0.25s;
}
.cc-cf7 .wpcf7-form input[type="submit"]:hover, .cc-cf7 .wpcf7-form .wpcf7-submit:hover {
  background: var(--cc-orange-soft); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(224,64,64,0.35);
}
.cc-cf7 .wpcf7-response-output { border-radius: 10px; margin: 16px 0 0 !important; padding: 12px 16px !important; font-family: var(--sans); }
.cc-cf7 .wpcf7-not-valid-tip { color: #b32d2e; font-size: 12px; font-weight: 400; text-transform: none; letter-spacing: normal; margin-top: 4px; }
@media (max-width: 768px) { .cc-cf7 .wpcf7-form .cf7-row, .cc-cf7 .wpcf7-form .cf7-row-3 { grid-template-columns: 1fr; } }
