/* =========================================================
   PROFOMA — BASISINSTELLINGEN
========================================================= */

:root {
    --color-navy: #123e52;
    --color-navy-dark: #0b3041;
    --color-blue: #1698c3;
    --color-teal: #4da99d;
    --color-green: #6ba84e;
    --color-light: #eff7f8;
    --color-white: #ffffff;
    --color-text: #102c38;
    --color-muted: #657983;
    --color-border: #d8e4e7;

    --font-body: "DM Sans", sans-serif;
    --font-heading: "Manrope", sans-serif;

    --container-width: 1440px;
    --page-padding: clamp(24px, 5vw, 76px);

    --shadow-small:
        0 10px 30px rgba(18, 62, 82, 0.08);

    --shadow-large:
        0 24px 60px rgba(18, 62, 82, 0.14);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--color-white);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}



img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

address {
    font-style: normal;
}

p {
    margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    color: var(--color-text);
    font-family: var(--font-heading);
    line-height: 1.08;
}

ul,
ol {
    margin-top: 0;
}

::selection {
    background: var(--color-teal);
    color: var(--color-white);
}


/* =========================================================
   TOEGANKELIJKHEID
========================================================= */

.skip-link {
    position: fixed;
    top: -100px;
    left: 20px;
    z-index: 99999;
    padding: 13px 18px;
    background: var(--color-navy);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 700;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 20px;
}

:focus-visible {
    outline: 3px solid var(--color-blue);
    outline-offset: 3px;
}


/* =========================================================
   ALGEMENE LAYOUT
========================================================= */

.container {
    width: min(
        calc(100% - (2 * var(--page-padding))),
        var(--container-width)
    );
    margin-inline: auto;
}

.section {
    padding:
        clamp(75px, 8vw, 120px)
        var(--page-padding);
}

.section--light {
    background: var(--color-light);
}

.section--navy {
    background: var(--color-navy);
    color: var(--color-white);
}

.section--navy h1,
.section--navy h2,
.section--navy h3 {
    color: var(--color-white);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 18px;
    color: #52717d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.7px;
    line-height: 1.4;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 25px;
    height: 2px;
    background: var(--color-teal);
    content: "";
}

.eyebrow--light {
    color: #b5cdd2;
}

.section-title {
    max-width: 850px;
    margin-bottom: 25px;
    font-size: clamp(38px, 4.5vw, 64px);
    letter-spacing: -2.5px;
}

.section-intro {
    max-width: 680px;
    color: var(--color-muted);
    font-size: 18px;
}


/* =========================================================
   KNOPPEN
========================================================= */

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 15px 22px;
    border: 1px solid transparent;
    background: var(--color-navy);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.button:hover {
    background: var(--color-blue);
    color: var(--color-white);
    transform: translateY(-2px);
}

.button--light {
    background: var(--color-white);
    color: var(--color-navy);
}

.button--light:hover {
    background: var(--color-light);
    color: var(--color-navy);
}

.button--outline {
    border-color: rgba(255, 255, 255, 0.4);
    background: transparent;
    color: var(--color-white);
}

.button--outline:hover {
    border-color: var(--color-white);
    background: var(--color-white);
    color: var(--color-navy);
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    border-bottom: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.97);
    transition:
        box-shadow 0.25s ease,
        background-color 0.25s ease;
    backdrop-filter: blur(15px);
}

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

.site-header.is-scrolled {
    box-shadow: var(--shadow-small);
}

.site-header__inner {
    display: flex;
    width: 100%;
    max-width: 1600px;
    min-height: 92px;
    align-items: center;
    justify-content: space-between;
    gap: clamp(20px, 3vw, 45px);
    margin-inline: auto;
    padding-inline: var(--page-padding);
}

.site-logo {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
}

.site-logo__image {
    display: block;
    width: 190px;
    max-width: 100%;
    height: 58px;
    object-fit: contain;
    object-position: left center;
}

.main-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

.main-navigation__list,
.main-navigation > div > ul {
    display: flex;
    align-items: center;
    gap: clamp(20px, 2vw, 34px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-navigation li {
    position: relative;
    margin: 0;
}

.main-navigation a,
.navigation__link {
    position: relative;
    display: inline-flex;
    padding: 35px 0;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.main-navigation a::after {
    position: absolute;
    right: 0;
    bottom: 26px;
    left: 0;
    height: 2px;
    background: var(--color-blue);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
    color: var(--color-blue);
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item > a::after,
.main-navigation .current_page_item > a::after {
    transform: scaleX(1);
    transform-origin: left;
}

.site-header__actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 22px;
}

.site-header__phone {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.site-header__phone-label {
    margin-bottom: 4px;
    color: var(--color-muted);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.site-header__phone strong {
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-size: 14px;
}

.site-header__phone:hover strong {
    color: var(--color-blue);
}

.button--header {
    min-height: 48px;
    padding: 14px 18px;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 0;
    background: var(--color-navy);
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--color-white);
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   STANDAARD WORDPRESSPAGINA
========================================================= */

.default-page {
    min-height: 60vh;
    padding:
        clamp(70px, 8vw, 120px)
        var(--page-padding);
}

.default-article {
    max-width: 900px;
    margin-inline: auto;
}

.default-article__title {
    margin-bottom: 35px;
    font-size: clamp(42px, 5vw, 70px);
    letter-spacing: -3px;
}

.default-article__content {
    color: var(--color-muted);
    font-size: 17px;
}

.default-article__content h2,
.default-article__content h3 {
    margin-top: 45px;
}

.default-article__content a {
    color: var(--color-blue);
    text-decoration: underline;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background: var(--color-navy-dark);
    color: var(--color-white);
}

.site-footer__top {
    display: grid;
    grid-template-columns: 1.35fr 1fr 0.8fr 1fr;
    gap: clamp(40px, 6vw, 90px);
    padding:
        clamp(70px, 7vw, 105px)
        var(--page-padding);
}

.site-footer__brand {
    max-width: 400px;
}

.site-footer__logo {
    display: inline-block;
    margin-bottom: 28px;
    padding: 12px;
    background: var(--color-white);
}

.site-footer__logo img {
    width: auto;
    max-width: 210px;
    height: 52px;
    object-fit: contain;
}

.site-footer__brand p {
    max-width: 350px;
    margin-bottom: 27px;
    color: #acc3ca;
    font-size: 15px;
}

.site-footer__cta {
    display: inline-block;
    padding-bottom: 5px;
    border-bottom: 1px solid #739ba5;
    color: var(--color-white);
    font-size: 13px;
    font-weight: 700;
}

.site-footer__cta:hover {
    border-color: var(--color-teal);
    color: var(--color-teal);
}

.site-footer__heading {
    margin: 0 0 24px;
    color: #7fc0c1;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.site-footer__column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__column li {
    margin-bottom: 12px;
}

.site-footer__column a {
    color: #c4d5d9;
    font-size: 14px;
    transition: color 0.2s ease;
}

.site-footer__column a:hover {
    color: var(--color-white);
}

.site-footer__contact address,
.site-footer__contact p {
    margin-bottom: 20px;
    color: #acc3ca;
    font-size: 14px;
}

.site-footer__contact p:last-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.site-footer__contact p:last-child a:first-child {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 25px var(--page-padding);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__bottom p {
    margin: 0;
    color: #829ea6;
    font-size: 12px;
}

.site-footer__legal {
    display: flex;
    align-items: center;
    gap: 25px;
}

.site-footer__legal a {
    color: #829ea6;
    font-size: 12px;
}

.site-footer__legal a:hover {
    color: var(--color-white);
}

/* =========================================================
   HOMEPAGE — HERO
========================================================= */

.home-hero {
    overflow: hidden;
    padding:
        clamp(65px, 7vw, 105px)
        var(--page-padding)
        0;
    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f3f8f9 62%,
            #e9f5f3 100%
        );
}

.home-hero__inner {
    display: grid;
    width: 100%;
    max-width: var(--container-width);
    margin-inline: auto;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(50px, 7vw, 110px);
    align-items: center;
}

.home-hero__content {
    padding-bottom: clamp(65px, 7vw, 100px);
}

.home-hero__title {
    max-width: 800px;
    margin: 22px 0 28px;
    font-size: clamp(48px, 5.7vw, 82px);
    letter-spacing: -4px;
}

.home-hero__title span {
    display: block;
    color: var(--color-teal);
}

.home-hero__intro {
    max-width: 650px;
    margin-bottom: 0;
    color: #506974;
    font-size: 19px;
    line-height: 1.65;
}

.home-hero__actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 38px;
}

.home-hero__text-link {
    display: inline-flex;
    align-items: center;
    gap: 25px;
    padding: 13px 0 8px;
    border-bottom: 1px solid #a9bcc2;
    color: var(--color-navy);
    font-size: 14px;
    font-weight: 700;
}

.home-hero__text-link:hover {
    border-color: var(--color-blue);
    color: var(--color-blue);
}

.home-hero__numbers {
    display: grid;
    margin-top: clamp(55px, 6vw, 85px);
    padding: 27px 0;
    border-top: 1px solid var(--color-border);
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.home-hero__number {
    display: flex;
    flex-direction: column;
}

.home-hero__number strong {
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-size: 23px;
    line-height: 1.2;
}

.home-hero__number span {
    margin-top: 4px;
    color: var(--color-muted);
    font-size: 12px;
}

.home-hero__visual {
    position: relative;
    min-height: 660px;
    align-self: stretch;
    background: var(--color-navy);
    box-shadow: 24px 24px 0 rgba(22, 152, 195, 0.1);
}

.home-hero__visual::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to bottom,
            rgba(11, 48, 65, 0.05),
            rgba(11, 48, 65, 0.75)
        );
    content: "";
}

.home-hero__visual img {
    width: 100%;
    height: 100%;
    min-height: 660px;
    object-fit: cover;
}

.home-hero__visual-overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    padding: 35px;
    color: var(--color-white);
}

.home-hero__status {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: #c7dadd;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.home-hero__status i,
.project-card__status i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #85c567;
    box-shadow: 0 0 0 6px rgba(133, 197, 103, 0.18);
}

.home-hero__visual-overlay strong {
    display: block;
    max-width: 500px;
    font-family: var(--font-heading);
    font-size: clamp(22px, 2.2vw, 32px);
    line-height: 1.25;
}

.home-hero__visual-label {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 2;
    padding: 9px 12px;
    background: rgba(11, 48, 65, 0.82);
    color: var(--color-white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* =========================================================
   OPDRACHTGEVERS
========================================================= */

.client-strip {
    padding: 34px var(--page-padding);
    border-bottom: 1px solid var(--color-border);
    background: var(--color-white);
    text-align: center;
}

.client-strip > p {
    margin-bottom: 24px;
    color: #7b8d94;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.client-strip__logos {
    display: flex;
    max-width: 1240px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-inline: auto;
    flex-wrap: wrap;
}

.client-strip__logos strong {
    color: #71858d;
    font-family: var(--font-heading);
    font-size: 15px;
    letter-spacing: 0.2px;
}


/* =========================================================
   HOMEPAGE — ALGEMENE KOPPEN
========================================================= */

.home-section-heading {
    display: grid;
    width: 100%;
    max-width: var(--container-width);
    align-items: end;
    margin: 0 auto 58px;
    grid-template-columns: 1.2fr 0.8fr;
    gap: clamp(45px, 8vw, 120px);
}

.home-section-heading .section-title {
    margin-bottom: 0;
}

.home-section-heading .section-intro {
    margin-bottom: 22px;
}

.section-link {
    display: inline-block;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--color-navy);
    color: var(--color-navy);
    font-size: 13px;
    font-weight: 700;
}

.section-link:hover {
    border-color: var(--color-blue);
    color: var(--color-blue);
}


/* =========================================================
   DIENSTENKAARTEN
========================================================= */

.home-services__grid {
    display: grid;
    width: 100%;
    max-width: var(--container-width);
    margin-inline: auto;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.service-card {
    position: relative;
    display: flex;
    min-height: 440px;
    overflow: hidden;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    color: var(--color-white);
}

.service-card::after {
    position: absolute;
    top: 80px;
    right: -110px;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    box-shadow:
        0 0 0 40px rgba(255, 255, 255, 0.025),
        0 0 0 80px rgba(255, 255, 255, 0.025);
    content: "";
}

.service-card--navy {
    background: var(--color-navy);
}

.service-card--blue {
    background: #146078;
}

.service-card--green {
    background: #4c8e7c;
}

.service-card__number {
    position: relative;
    z-index: 2;
    color: #aad0d4;
    font-size: 11px;
    letter-spacing: 1px;
}

.service-card__content {
    position: relative;
    z-index: 2;
}

.service-card h3 {
    max-width: 350px;
    margin: 0 0 18px;
    color: var(--color-white);
    font-size: 28px;
    letter-spacing: -1.2px;
}

.service-card p {
    max-width: 360px;
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
}

.service-card > a {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 17px;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--color-white);
    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   VISUELE SECTIE
========================================================= */

.home-visuals {
    display: grid;
    height: min(700px, 65vw);
    padding: 8px;
    background: var(--color-white);
    grid-template-columns: 1.5fr 1fr;
    gap: 8px;
}

.home-visuals figure {
    position: relative;
    overflow: hidden;
    margin: 0;
    background: var(--color-navy);
}

.home-visuals img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.home-visuals figure:hover img {
    transform: scale(1.025);
}

.home-visuals__stack {
    display: grid;
    min-height: 0;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
}

.home-visuals figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 30px;
    background:
        linear-gradient(
            transparent,
            rgba(8, 31, 42, 0.85)
        );
    color: var(--color-white);
}

.home-visuals figcaption > span {
    color: #9bc9cb;
    font-size: 10px;
}

.home-visuals figcaption div {
    display: flex;
    flex-direction: column;
}

.home-visuals figcaption strong {
    font-family: var(--font-heading);
    font-size: 19px;
}

.home-visuals figcaption small {
    margin-top: 4px;
    color: #c9d9dd;
    font-size: 11px;
}


/* =========================================================
   PROJECTEN
========================================================= */

.home-projects {
    background: var(--color-navy-dark);
    color: var(--color-white);
}

.home-projects h2,
.home-projects h3 {
    color: var(--color-white);
}

.home-projects .section-intro {
    color: #abc4ca;
}

.home-projects__grid {
    display: grid;
    width: 100%;
    max-width: var(--container-width);
    margin-inline: auto;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 16px;
}

.project-card {
    position: relative;
    display: flex;
    min-height: 430px;
    overflow: hidden;
    flex-direction: column;
    justify-content: space-between;
    padding: 29px;
    background: #17495d;
}

.project-card--featured {
    background:
        linear-gradient(
            145deg,
            #188fb2,
            #146078
        );
}

.project-card--featured::after {
    position: absolute;
    top: 70px;
    right: -20px;
    color: rgba(255, 255, 255, 0.07);
    content: "96";
    font-family: var(--font-heading);
    font-size: 230px;
    font-weight: 800;
    line-height: 1;
}

.project-card--active {
    background: #eff7f5;
    color: var(--color-navy);
}

.project-card--active h3 {
    color: var(--color-navy);
}

.project-card__label {
    position: relative;
    z-index: 2;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.project-card__stats {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 34px;
}

.project-card__stats div {
    display: flex;
    flex-direction: column;
}

.project-card__stats strong {
    font-family: var(--font-heading);
    font-size: 38px;
    line-height: 1.1;
}

.project-card__stats span {
    font-size: 10px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.project-card__bottom {
    position: relative;
    z-index: 2;
}

.project-card__bottom p {
    margin-bottom: 13px;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.7;
}

.project-card__bottom h3 {
    max-width: 450px;
    margin: 0;
    font-size: 23px;
    letter-spacing: -0.7px;
    line-height: 1.3;
}

.project-card__status {
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--color-teal);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.project-card__brand {
    color: #76aaa1;
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -4px;
}


/* =========================================================
   WAAROM PROFOMA
========================================================= */

.home-why {
    display: grid;
    width: 100%;
    max-width: var(--container-width);
    margin-inline: auto;
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(55px, 8vw, 125px);
}

.home-why__list article {
    display: grid;
    padding: 29px 0;
    border-top: 1px solid var(--color-border);
    grid-template-columns: 45px 1fr;
    gap: 22px;
}

.home-why__list article > span {
    color: var(--color-teal);
    font-size: 11px;
}

.home-why__list h3 {
    margin: 0 0 7px;
    font-size: 21px;
}

.home-why__list p {
    max-width: 590px;
    margin: 0;
    color: var(--color-muted);
    font-size: 15px;
}


/* =========================================================
   REGIOBALK
========================================================= */

.home-regions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 27px;
    padding: 23px var(--page-padding);
    background: var(--color-blue);
    color: var(--color-white);
    flex-wrap: wrap;
}

.home-regions a {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.home-regions i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.65);
}

.home-regions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-navy);
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.home-regions a:hover {
    border-color: var(--color-teal);
    background: var(--color-teal);
    color: var(--color-white);
    transform: translateY(-2px);
}

.home-regions .home-regions__all {
    border-color: var(--color-navy);
    background: var(--color-navy);
    color: var(--color-white);
}

.home-regions .home-regions__all:hover {
    border-color: var(--color-blue);
    background: var(--color-blue);
}


/* =========================================================
   OVER PROFOMA
========================================================= */

.home-about {
    display: grid;
    width: 100%;
    max-width: var(--container-width);
    align-items: center;
    margin-inline: auto;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(60px, 9vw, 135px);
}

.home-about__content > p:not(.eyebrow) {
    max-width: 620px;
    color: var(--color-muted);
    font-size: 16px;
}

.home-about__content .button {
    margin-top: 22px;
}

.home-about__facts {
    display: grid;
    border-top: 1px solid var(--color-border);
    border-left: 1px solid var(--color-border);
    grid-template-columns: 1fr 1fr;
}

.home-about__facts article {
    display: flex;
    min-height: 220px;
    flex-direction: column;
    justify-content: space-between;
    padding: 27px;
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background: var(--color-light);
}

.home-about__facts article > span {
    color: var(--color-teal);
    font-size: 10px;
}

.home-about__facts strong {
    margin-top: auto;
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-size: 35px;
}

.home-about__facts p {
    margin: 5px 0 0;
    color: var(--color-muted);
    font-size: 12px;
}


/* =========================================================
   HOMEPAGE CALL TO ACTION
========================================================= */

.home-cta {
    padding:
        clamp(85px, 9vw, 125px)
        var(--page-padding);
    background: var(--color-navy);
    color: var(--color-white);
    text-align: center;
}

.home-cta .eyebrow {
    justify-content: center;
}

.home-cta h2 {
    max-width: 900px;
    margin: 20px auto 25px;
    color: var(--color-white);
    font-size: clamp(42px, 5vw, 70px);
    letter-spacing: -3px;
}

.home-cta > p:not(.eyebrow) {
    max-width: 680px;
    margin: 0 auto;
    color: #b5cbd1;
    font-size: 17px;
}

.home-cta__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 38px;
}

.home-cta__phone {
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 700;
}

.home-cta__phone:hover {
    border-color: var(--color-teal);
    color: var(--color-teal);
}

/* =========================================================
   ALGEMENE PAGINA-HERO
========================================================= */

.page-hero {
    display: grid;
    align-items: end;
    padding:
        clamp(75px, 8vw, 120px)
        var(--page-padding);
    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f3f8f9 60%,
            #e9f5f3 100%
        );
    grid-template-columns: 1.2fr 0.8fr;
    gap: clamp(50px, 8vw, 130px);
}

.page-hero__content {
    max-width: 900px;
}

.page-hero h1 {
    max-width: 950px;
    margin: 20px 0 28px;
    font-size: clamp(46px, 5.5vw, 78px);
    letter-spacing: -3.5px;
}

.page-hero__content > p:not(.eyebrow) {
    max-width: 730px;
    color: var(--color-muted);
    font-size: 18px;
}

.page-hero__actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 35px;
}

.page-hero__link {
    padding-bottom: 5px;
    border-bottom: 1px solid #9db3ba;
    color: var(--color-navy);
    font-size: 14px;
    font-weight: 700;
}

.page-hero__link:hover {
    border-color: var(--color-blue);
    color: var(--color-blue);
}

.page-hero__aside {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 10px 0 10px 30px;
    border-left: 2px solid var(--color-teal);
}

.page-hero__aside div {
    display: flex;
    flex-direction: column;
}

.page-hero__aside span {
    margin-bottom: 6px;
    color: var(--color-muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.page-hero__aside strong {
    max-width: 390px;
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-size: 15px;
    line-height: 1.5;
}


/* =========================================================
   DIENSTEN — GROTE DIENSTBLOKKEN
========================================================= */

.service-detail {
    display: grid;
    min-height: 650px;
    padding:
        clamp(75px, 8vw, 120px)
        var(--page-padding);
    background: var(--color-white);
    grid-template-columns: 55px 1fr 0.9fr;
    gap: clamp(30px, 5vw, 80px);
    align-items: center;
}

.service-detail__number {
    align-self: start;
    padding-top: 10px;
    color: var(--color-teal);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.service-detail__content {
    max-width: 680px;
}

.service-detail__content h2 {
    margin: 17px 0 25px;
    font-size: clamp(39px, 4.5vw, 62px);
    letter-spacing: -2.8px;
}

.service-detail__content > p:not(.eyebrow) {
    max-width: 620px;
    color: var(--color-muted);
    font-size: 16px;
}

.service-detail__list {
    margin: 30px 0 32px;
    padding: 0;
    columns: 2;
    column-gap: 35px;
    list-style: none;
}

.service-detail__list li {
    position: relative;
    padding: 8px 10px 8px 18px;
    color: var(--color-text);
    font-size: 13px;
    break-inside: avoid;
}

.service-detail__list li::before {
    position: absolute;
    top: 17px;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-teal);
    content: "";
}

.service-detail__image {
    position: relative;
    height: 520px;
    overflow: hidden;
    margin: 0;
    background: var(--color-light);
}

.service-detail__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-detail__image:hover img {
    transform: scale(1.025);
}

.service-detail__image figcaption {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    padding: 11px 14px;
    background: rgba(11, 48, 65, 0.82);
    color: var(--color-white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}


/* =========================================================
   DONKERE DIENST
========================================================= */

.service-detail--dark {
    background: var(--color-navy);
    color: var(--color-white);
}

.service-detail--dark h2,
.service-detail--dark .service-detail__list li {
    color: var(--color-white);
}

.service-detail--dark
.service-detail__content > p:not(.eyebrow) {
    color: #b3c9ce;
}

.service-detail--dark .service-detail__number {
    color: #7fc0c1;
}

.service-detail--dark .service-detail__list li::before {
    background: #83c4b8;
}

.section-link--light {
    border-color: rgba(255, 255, 255, 0.45);
    color: var(--color-white);
}

.section-link--light:hover {
    border-color: var(--color-white);
    color: var(--color-white);
}


/* =========================================================
   GROENE DIENST
========================================================= */

.service-detail--green {
    background: #4c8e7c;
    color: var(--color-white);
}

.service-detail--green h2,
.service-detail--green .service-detail__list li {
    color: var(--color-white);
}

.service-detail--green .eyebrow {
    color: #d1e8e2;
}

.service-detail--green .eyebrow::before {
    background: #c7e6a8;
}

.service-detail--green
.service-detail__content > p:not(.eyebrow) {
    color: #d6e8e3;
}

.service-detail--green .service-detail__number {
    color: #c7e6a8;
}

.service-detail--green .service-detail__list li::before {
    background: #c7e6a8;
}


/* =========================================================
   SPECIALISTISCHE DIENSTEN
========================================================= */

.specialist-services {
    display: grid;
    background: var(--color-navy-dark);
    color: var(--color-white);
    grid-template-columns: 0.75fr 1.25fr;
    gap: clamp(50px, 8vw, 130px);
}

.specialist-services h2,
.specialist-services h3 {
    color: var(--color-white);
}

.specialist-services__intro > p:not(.eyebrow) {
    max-width: 510px;
    color: #abc3c9;
}

.specialist-services__grid {
    display: grid;
    border-top: 1px solid rgba(255, 255, 255, 0.17);
    border-left: 1px solid rgba(255, 255, 255, 0.17);
    grid-template-columns: 1fr 1fr;
}

.specialist-services__grid article {
    display: flex;
    min-height: 245px;
    flex-direction: column;
    padding: 27px;
    border-right: 1px solid rgba(255, 255, 255, 0.17);
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.specialist-services__grid article > span {
    color: #77bbb9;
    font-size: 10px;
}

.specialist-services__grid h3 {
    margin: auto 0 11px;
    font-size: 21px;
    letter-spacing: -0.6px;
}

.specialist-services__grid p {
    margin: 0;
    color: #abc3c9;
    font-size: 13px;
}


/* =========================================================
   DIENSTEN — STAPPENPLAN
========================================================= */

.service-process {
    background: var(--color-white);
}

.service-process__steps {
    display: grid;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0;
    border-top: 1px solid var(--color-border);
    border-left: 1px solid var(--color-border);
    list-style: none;
    grid-template-columns: repeat(5, 1fr);
}

.service-process__steps li {
    display: flex;
    min-height: 260px;
    flex-direction: column;
    padding: 27px;
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.service-process__steps li > span {
    color: var(--color-teal);
    font-size: 10px;
    font-weight: 700;
}

.service-process__steps strong {
    display: block;
    margin: auto 0 13px;
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-size: 19px;
    line-height: 1.3;
}

.service-process__steps p {
    margin: 0;
    color: var(--color-muted);
    font-size: 13px;
}

/* =========================================================
   SECTORENPAGINA — UITGELICHTE SECTOREN
========================================================= */

.sector-feature {
    display: grid;
    min-height: 650px;
    padding: 8px;
    background: var(--color-white);
    grid-template-columns: 1.05fr 0.95fr;
}

.sector-feature__image {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    margin: 0;
    background: var(--color-navy);
}

.sector-feature__image img {
    width: 100%;
    height: 100%;
    min-height: 620px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.sector-feature__image:hover img {
    transform: scale(1.025);
}

.sector-feature__image::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to bottom,
            transparent 55%,
            rgba(8, 31, 42, 0.75)
        );
    content: "";
}

.sector-feature__image figcaption {
    position: absolute;
    right: 28px;
    bottom: 25px;
    left: 28px;
    z-index: 2;
    color: var(--color-white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.sector-feature__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(50px, 6vw, 95px);
    background: var(--color-navy);
    color: var(--color-white);
}

.sector-feature__number {
    margin-bottom: 40px;
    color: #80bfc0;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.sector-feature__content h2 {
    max-width: 650px;
    margin: 0 0 25px;
    color: var(--color-white);
    font-size: clamp(38px, 4.3vw, 60px);
    letter-spacing: -2.5px;
}

.sector-feature__content > p:not(.eyebrow) {
    max-width: 620px;
    color: #b5cbd1;
    font-size: 16px;
}

.sector-feature__content ul {
    margin: 25px 0 32px;
    padding: 0;
    list-style: none;
}

.sector-feature__content li {
    position: relative;
    padding: 8px 0 8px 19px;
    color: #e1ebed;
    font-size: 14px;
}

.sector-feature__content li::before {
    position: absolute;
    top: 17px;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-teal);
    content: "";
}

.sector-feature__content > a {
    align-self: flex-start;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    color: var(--color-white);
    font-size: 13px;
    font-weight: 700;
}

.sector-feature__content > a:hover {
    border-color: var(--color-white);
}


/* =========================================================
   OMGEKEERDE SECTOR
========================================================= */

.sector-feature--reverse {
    grid-template-columns: 0.95fr 1.05fr;
}

.sector-feature--reverse .sector-feature__content {
    background: #edf7f6;
    color: var(--color-navy);
}

.sector-feature--reverse .sector-feature__content h2 {
    color: var(--color-navy);
}

.sector-feature--reverse
.sector-feature__content > p:not(.eyebrow) {
    color: var(--color-muted);
}

.sector-feature--reverse .sector-feature__content li {
    color: var(--color-text);
}

.sector-feature--reverse .sector-feature__content > a {
    border-color: var(--color-navy);
    color: var(--color-navy);
}

.sector-feature--reverse .sector-feature__content > a:hover {
    border-color: var(--color-blue);
    color: var(--color-blue);
}

.sector-feature--reverse .sector-feature__number {
    color: var(--color-teal);
}


/* =========================================================
   OVERIGE SECTOREN
========================================================= */

.other-sectors {
    background: var(--color-white);
}

.other-sectors__grid {
    display: grid;
    width: 100%;
    max-width: var(--container-width);
    margin-inline: auto;
    border-top: 1px solid var(--color-border);
    border-left: 1px solid var(--color-border);
    grid-template-columns: repeat(3, 1fr);
}

.other-sectors__grid article {
    display: flex;
    min-height: 390px;
    flex-direction: column;
    padding: 32px;
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background: var(--color-white);
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.other-sectors__grid article:hover {
    position: relative;
    z-index: 2;
    background: var(--color-light);
    transform: translateY(-4px);
}

.other-sectors__grid article > span {
    color: var(--color-teal);
    font-size: 10px;
    font-weight: 700;
}

.other-sectors__grid h3 {
    max-width: 330px;
    margin: 55px 0 15px;
    font-size: 25px;
    letter-spacing: -1px;
}

.other-sectors__grid article > p {
    color: var(--color-muted);
    font-size: 14px;
}

.other-sectors__grid ul {
    margin: auto 0 0;
    padding: 25px 0 0;
    list-style: none;
}

.other-sectors__grid li {
    position: relative;
    padding: 6px 0 6px 16px;
    color: var(--color-text);
    font-size: 12px;
}

.other-sectors__grid li::before {
    position: absolute;
    top: 14px;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-teal);
    content: "";
}


/* =========================================================
   BEWIJS EN CAPACITEIT
========================================================= */

.sector-proof {
    display: grid;
    padding:
        clamp(80px, 8vw, 115px)
        var(--page-padding);
    background: var(--color-navy-dark);
    color: var(--color-white);
    grid-template-columns: 0.75fr 1.25fr;
    gap: clamp(55px, 8vw, 125px);
}

.sector-proof__intro h2 {
    max-width: 630px;
    margin: 18px 0 0;
    color: var(--color-white);
    font-size: clamp(38px, 4.2vw, 58px);
    letter-spacing: -2.5px;
}

.sector-proof__numbers {
    display: grid;
    align-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.17);
    border-left: 1px solid rgba(255, 255, 255, 0.17);
    grid-template-columns: 1fr 1fr;
}

.sector-proof__numbers article {
    display: flex;
    min-height: 175px;
    flex-direction: column;
    justify-content: center;
    padding: 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.17);
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.sector-proof__numbers strong {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 38px;
    line-height: 1.1;
}

.sector-proof__numbers span {
    margin-top: 7px;
    color: #aac4ca;
    font-size: 12px;
}


/* =========================================================
   OPDRACHTGEVERS
========================================================= */

.sector-clients {
    text-align: center;
}

.sector-clients .eyebrow {
    justify-content: center;
}

.sector-clients__list {
    display: flex;
    max-width: 1250px;
    align-items: center;
    justify-content: center;
    gap: 35px 55px;
    margin: 42px auto 0;
    flex-wrap: wrap;
}

.sector-clients__list strong {
    color: #71858d;
    font-family: var(--font-heading);
    font-size: 16px;
    letter-spacing: 0.3px;
}

/* =========================================================
   PROJECTENPAGINA — PROJECTCASES
========================================================= */

.project-case {
    display: grid;
    min-height: 650px;
    background: var(--color-white);
    grid-template-columns: 1fr 1fr;
}

.project-case__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(55px, 7vw, 105px);
}

.project-case__label {
    margin-bottom: 0;
    color: var(--color-teal);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.project-case__content h2 {
    max-width: 700px;
    margin: 18px 0 27px;
    font-size: clamp(40px, 4.6vw, 64px);
    letter-spacing: -2.8px;
}

.project-case__content > p:not(.project-case__label) {
    max-width: 660px;
    color: var(--color-muted);
    font-size: 16px;
}

.project-case__image {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    margin: 0;
    background: var(--color-navy);
}

.project-case__image::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to bottom,
            transparent 65%,
            rgba(8, 31, 42, 0.55)
        );
    content: "";
}

.project-case__image img {
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-case__image:hover img {
    transform: scale(1.025);
}

.project-case__image figcaption {
    position: absolute;
    right: 20px;
    bottom: 18px;
    left: 20px;
    z-index: 2;
    color: #d7e2e5;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.project-case__stats {
    display: grid;
    margin-top: 38px;
    border-top: 1px solid var(--color-border);
    border-left: 1px solid var(--color-border);
    grid-template-columns: 1fr 1fr;
}

.project-case__stats div {
    display: flex;
    min-height: 95px;
    flex-direction: column;
    justify-content: center;
    padding: 16px;
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.project-case__stats strong {
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-size: 27px;
    line-height: 1.15;
}

.project-case__stats span {
    margin-top: 4px;
    color: var(--color-muted);
    font-size: 10px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}


/* =========================================================
   DONKERE PROJECTCASE
========================================================= */

.project-case--dark {
    background: var(--color-navy);
    color: var(--color-white);
}

.project-case--dark h2 {
    color: var(--color-white);
}

.project-case--dark
.project-case__content > p:not(.project-case__label) {
    color: #b3c9ce;
}

.project-case--dark .project-case__stats {
    border-color: rgba(255, 255, 255, 0.22);
}

.project-case--dark .project-case__stats div {
    border-color: rgba(255, 255, 255, 0.22);
}

.project-case--dark .project-case__stats strong {
    color: var(--color-white);
}

.project-case--dark .project-case__stats span {
    color: #b3c9ce;
}


/* =========================================================
   BLAUWE PROJECTCASE
========================================================= */

.project-case--blue {
    background: #146078;
    color: var(--color-white);
}

.project-case--blue h2 {
    color: var(--color-white);
}

.project-case--blue
.project-case__content > p:not(.project-case__label) {
    color: #c1d6da;
}

.project-case--blue .project-case__label {
    color: #8bd1d0;
}

.project-case__work {
    margin: 25px 0 5px;
    padding: 0;
    columns: 2;
    column-gap: 35px;
    list-style: none;
}

.project-case__work li {
    position: relative;
    padding: 7px 10px 7px 17px;
    color: #e0ecee;
    font-size: 12px;
    break-inside: avoid;
}

.project-case__work li::before {
    position: absolute;
    top: 15px;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #8bd1d0;
    content: "";
}

.project-case__note {
    margin: 15px 0 0;
    padding-left: 16px;
    border-left: 2px solid #8bd1d0;
    color: #d1e3e6 !important;
    font-size: 12px !important;
}

.project-case--blue .project-case__stats {
    border-color: rgba(255, 255, 255, 0.25);
}

.project-case--blue .project-case__stats div {
    border-color: rgba(255, 255, 255, 0.25);
}

.project-case--blue .project-case__stats strong {
    color: var(--color-white);
}

.project-case--blue .project-case__stats span {
    color: #c1d6da;
}


/* =========================================================
   GROENE PROJECTCASE
========================================================= */

.project-case--green {
    background: #edf7f4;
}

.project-case__label--active {
    display: flex;
    align-items: center;
    gap: 13px;
}

.project-case__label--active i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #77b85a;
    box-shadow: 0 0 0 6px rgba(119, 184, 90, 0.16);
}

.project-case__status {
    display: flex;
    max-width: 580px;
    flex-direction: column;
    margin-top: 35px;
    padding-left: 18px;
    border-left: 2px solid var(--color-teal);
}

.project-case__status span {
    color: var(--color-teal);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.project-case__status strong {
    margin-top: 7px;
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-size: 16px;
    line-height: 1.5;
}


/* =========================================================
   STRUCTURELE SAMENWERKINGEN
========================================================= */

.recurring-projects {
    background: var(--color-white);
}

.recurring-projects__grid {
    display: grid;
    width: 100%;
    max-width: var(--container-width);
    margin-inline: auto;
    border-top: 1px solid var(--color-border);
    border-left: 1px solid var(--color-border);
    grid-template-columns: repeat(4, 1fr);
}

.recurring-projects__grid article {
    display: flex;
    min-height: 300px;
    flex-direction: column;
    padding: 30px;
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.recurring-projects__grid article:hover {
    position: relative;
    z-index: 2;
    background: var(--color-light);
    transform: translateY(-4px);
}

.recurring-projects__grid article > span {
    color: var(--color-teal);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.recurring-projects__grid h3 {
    margin: auto 0 13px;
    font-size: 24px;
    letter-spacing: -0.8px;
}

.recurring-projects__grid p {
    margin: 0;
    color: var(--color-muted);
    font-size: 13px;
}


/* =========================================================
   PROJECTAANPAK
========================================================= */

.project-method {
    display: grid;
    padding-inline: var(--page-padding);
    background: var(--color-navy-dark);
    color: var(--color-white);
    grid-template-columns: repeat(3, 1fr);
}

.project-method article {
    min-height: 310px;
    padding: 55px 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.project-method article:last-child {
    border-right: 0;
}

.project-method article > span {
    color: var(--color-teal);
    font-size: 10px;
    font-weight: 700;
}

.project-method h3 {
    margin: 65px 0 12px;
    color: var(--color-white);
    font-size: 23px;
}

.project-method p {
    max-width: 390px;
    margin: 0;
    color: #abc3c9;
    font-size: 13px;
}

/* =========================================================
   OVER PROFOMA — VERHAAL
========================================================= */

.about-story {
    display: grid;
    padding:
        clamp(80px, 9vw, 130px)
        var(--page-padding);
    background: var(--color-navy-dark);
    color: var(--color-white);
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(60px, 9vw, 140px);
}

.about-story__heading h2 {
    max-width: 850px;
    margin: 20px 0 0;
    color: var(--color-white);
    font-size: clamp(40px, 4.8vw, 67px);
    letter-spacing: -3px;
}

.about-story__content {
    padding-top: 35px;
}

.about-story__content p {
    max-width: 620px;
    margin-bottom: 22px;
    color: #b5cbd1;
    font-size: 17px;
}

.about-story__content a {
    display: inline-block;
    margin-top: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid #87aeb7;
    color: var(--color-white);
    font-size: 13px;
    font-weight: 700;
}

.about-story__content a:hover {
    border-color: var(--color-teal);
    color: var(--color-teal);
}


/* =========================================================
   OVER PROFOMA — CIJFERS
========================================================= */

.about-numbers {
    display: grid;
    padding-inline: var(--page-padding);
    background: #edf7f7;
    grid-template-columns: repeat(4, 1fr);
}

.about-numbers article {
    display: flex;
    min-height: 245px;
    flex-direction: column;
    padding: 30px;
    border-right: 1px solid #cadde1;
}

.about-numbers article:last-child {
    border-right: 0;
}

.about-numbers article > span {
    color: var(--color-teal);
    font-size: 10px;
    font-weight: 700;
}

.about-numbers strong {
    margin-top: auto;
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-size: clamp(40px, 4vw, 59px);
    letter-spacing: -2px;
    line-height: 1.1;
}

.about-numbers p {
    margin: 5px 0 0;
    color: var(--color-muted);
    font-size: 12px;
}


/* =========================================================
   OVER PROFOMA — DIRECTIE
========================================================= */

.about-leadership {
    background: var(--color-white);
}

.about-leadership__grid {
    display: grid;
    width: 100%;
    max-width: var(--container-width);
    margin-inline: auto;
    grid-template-columns: 1fr 1fr 0.85fr;
    gap: 14px;
}

.leader-card {
    display: flex;
    min-height: 380px;
    flex-direction: column;
    justify-content: space-between;
    padding: 36px;
    background: #edf6f7;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

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

.leader-card__initials {
    display: grid;
    width: 78px;
    height: 78px;
    place-items: center;
    border: 1px solid #b9d2d7;
    border-radius: 50%;
    color: var(--color-teal);
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
}

.leader-card__details > span {
    color: var(--color-teal);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.leader-card__details h3 {
    margin: 9px 0 3px;
    font-size: 29px;
    letter-spacing: -1px;
}

.leader-card__details strong {
    color: var(--color-muted);
    font-size: 13px;
}

.leadership-quote {
    display: flex;
    min-height: 380px;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
    background:
        linear-gradient(
            145deg,
            var(--color-blue),
            #146078
        );
    color: var(--color-white);
}

.leadership-quote blockquote {
    margin: 0;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 23px;
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 1.45;
}

.leadership-quote > span {
    color: #bae0e4;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* =========================================================
   OVER PROFOMA — PRINCIPES
========================================================= */

.about-principles {
    display: grid;
    padding:
        clamp(80px, 9vw, 125px)
        var(--page-padding);
    background: var(--color-navy);
    color: var(--color-white);
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(60px, 9vw, 140px);
}

.about-principles__heading h2 {
    max-width: 650px;
    margin: 20px 0 0;
    color: var(--color-white);
    font-size: clamp(40px, 4.4vw, 61px);
    letter-spacing: -2.7px;
}

.about-principles__list article {
    display: grid;
    align-items: start;
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.17);
    grid-template-columns: 45px 0.65fr 1fr;
    gap: 20px;
}

.about-principles__list article > span {
    color: var(--color-teal);
    font-size: 10px;
    font-weight: 700;
}

.about-principles__list h3 {
    margin: 0;
    color: var(--color-white);
    font-size: 20px;
}

.about-principles__list p {
    margin: 2px 0 0;
    color: #adc4ca;
    font-size: 13px;
}


/* =========================================================
   OVER PROFOMA — KWALITEIT
========================================================= */

.about-quality {
    display: grid;
    align-items: center;
    background: var(--color-white);
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(60px, 9vw, 135px);
}

.about-quality__content > p:not(.eyebrow) {
    max-width: 560px;
    color: var(--color-muted);
    font-size: 16px;
}

.about-quality__grid {
    display: grid;
    border-top: 1px solid var(--color-border);
    border-left: 1px solid var(--color-border);
    grid-template-columns: repeat(3, 1fr);
}

.about-quality__grid article {
    display: flex;
    min-height: 190px;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px;
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background: var(--color-white);
    transition: background-color 0.2s ease;
}

.about-quality__grid article:hover {
    background: var(--color-light);
}

.about-quality__grid strong {
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-size: 32px;
}

.about-quality__grid span {
    color: var(--color-muted);
    font-size: 12px;
}


/* =========================================================
   OVER PROFOMA — DUURZAAMHEID
========================================================= */

.about-sustainability {
    display: grid;
    padding:
        clamp(75px, 8vw, 110px)
        var(--page-padding);
    background: #4a8c79;
    color: var(--color-white);
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(60px, 9vw, 135px);
}

.about-sustainability__heading h2 {
    max-width: 600px;
    margin: 18px 0 0;
    color: var(--color-white);
    font-size: clamp(38px, 4.1vw, 55px);
    letter-spacing: -2.3px;
}

.about-sustainability ul {
    display: grid;
    align-content: center;
    margin: 0;
    padding: 0;
    grid-template-columns: 1fr 1fr;
    list-style: none;
}

.about-sustainability li {
    position: relative;
    padding: 19px 18px 19px 27px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--color-white);
    font-size: 13px;
}

.about-sustainability li::before {
    position: absolute;
    top: 27px;
    left: 3px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c5e6a9;
    content: "";
}

/* =========================================================
   WERKEN BIJ — ALGEMEEN
========================================================= */

.careers-intro,
.careers-profile,
.career-process,
.career-form {
    display: grid;
    padding:
        clamp(85px, 9vw, 130px)
        var(--page-padding);
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(55px, 9vw, 140px);
}

.careers-intro {
    align-items: start;
    background: var(--color-white);
}

.careers-intro__heading h2 {
    max-width: 620px;
    margin: 18px 0 0;
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-size: clamp(40px, 4.4vw, 62px);
    font-weight: 700;
    letter-spacing: -2.8px;
    line-height: 1.05;
}

.careers-intro__content {
    max-width: 680px;
    padding-top: 44px;
}

.careers-intro__content p {
    margin: 0 0 22px;
    color: var(--color-muted);
    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   WERKEN BIJ — VOORDELEN
========================================================= */

.careers-benefits {
    display: grid;
    padding-inline: var(--page-padding);
    border-top: 1px solid #cadde1;
    border-bottom: 1px solid #cadde1;
    background: #edf6f7;
    grid-template-columns: repeat(4, 1fr);
}

.careers-benefits article {
    display: flex;
    min-height: 330px;
    flex-direction: column;
    justify-content: space-between;
    padding: 42px 32px;
    border-right: 1px solid #cadde1;
    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

.careers-benefits article:last-child {
    border-right: 0;
}

.careers-benefits article:hover {
    background: var(--color-white);
}

.careers-benefits article > span {
    color: var(--color-teal);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.careers-benefits h3 {
    margin: auto 0 14px;
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.8px;
    line-height: 1.2;
}

.careers-benefits p {
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   WERKEN BIJ — WIE ZOEKEN WIJ?
========================================================= */

.careers-profile {
    align-items: start;
    background: var(--color-navy);
    color: var(--color-white);
}

.careers-profile__heading h2 {
    max-width: 580px;
    margin: 18px 0 0;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: clamp(42px, 4.5vw, 62px);
    font-weight: 700;
    letter-spacing: -2.7px;
    line-height: 1.06;
}

.careers-profile__heading p {
    max-width: 540px;
    margin: 28px 0 0;
    color: #b8cdd2;
    font-size: 16px;
    line-height: 1.8;
}

.careers-profile .eyebrow {
    color: #72c5ba;
}

.careers-profile__list {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.careers-profile__list > div {
    display: grid;
    align-items: start;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    grid-template-columns: 48px 1fr;
    gap: 20px;
}

.careers-profile__list > div > span {
    padding-top: 3px;
    color: var(--color-teal);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
}

.careers-profile__list h3 {
    margin: 0 0 7px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 20px;
    letter-spacing: -0.4px;
}

.careers-profile__list p {
    margin: 0;
    color: #adc4ca;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   WERKEN BIJ — SOORT WERK
========================================================= */

.career-work {
    padding:
        clamp(85px, 9vw, 125px)
        var(--page-padding);
    background: var(--color-white);
}

.career-work__heading {
    display: flex;
    max-width: var(--container-width);
    margin: 0 auto 55px;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
}

.career-work__heading h2 {
    max-width: 660px;
    margin: 18px 0 0;
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-size: clamp(40px, 4.2vw, 59px);
    letter-spacing: -2.6px;
    line-height: 1.06;
}

.career-work__heading > p {
    max-width: 480px;
    margin: 0 0 6px;
    color: var(--color-muted);
    font-size: 15px;
    line-height: 1.75;
}

.career-work__grid {
    display: grid;
    max-width: var(--container-width);
    margin-inline: auto;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.career-work__grid article {
    display: flex;
    min-height: 330px;
    flex-direction: column;
    justify-content: space-between;
    padding: 34px;
    border: 1px solid var(--color-border);
    background: var(--color-light);
    transition:
        background-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.career-work__grid article:hover {
    background: var(--color-white);
    box-shadow: var(--shadow-small);
    transform: translateY(-4px);
}

.career-work__grid article > span {
    color: var(--color-teal);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.career-work__grid h3 {
    margin: auto 0 13px;
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-size: 25px;
    letter-spacing: -0.8px;
    line-height: 1.2;
}

.career-work__grid p {
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   WERKEN BIJ — SOLLICITATIEPROCES
========================================================= */

.career-process {
    align-items: start;
    background: #edf6f7;
}

.career-process__heading h2 {
    max-width: 600px;
    margin: 18px 0 0;
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-size: clamp(42px, 4.4vw, 61px);
    letter-spacing: -2.7px;
    line-height: 1.05;
}

.career-process__steps {
    margin: 0;
    padding: 0;
    border-top: 1px solid #bfd5da;
    list-style: none;
    counter-reset: process-step;
}

.career-process__steps li {
    display: grid;
    align-items: start;
    padding: 27px 0;
    border-bottom: 1px solid #bfd5da;
    counter-increment: process-step;
    grid-template-columns: 50px 0.75fr 1fr;
    gap: 20px;
}

.career-process__steps li::before {
    color: var(--color-teal);
    content: "0" counter(process-step);
    font-size: 11px;
    font-weight: 700;
}

.career-process__steps strong {
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-size: 19px;
    line-height: 1.35;
}

.career-process__steps p {
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   WERKEN BIJ — FORMULIER
========================================================= */

.career-form {
    align-items: start;
    background: var(--color-white);
}

.career-form__intro {
    position: sticky;
    top: 130px;
}

.career-form__intro h2 {
    max-width: 590px;
    margin: 18px 0 24px;
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-size: clamp(42px, 4.4vw, 62px);
    letter-spacing: -2.7px;
    line-height: 1.05;
}

.career-form__intro > p {
    max-width: 520px;
    margin: 0 0 28px;
    color: var(--color-muted);
    font-size: 16px;
    line-height: 1.8;
}

.career-form__contact {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid var(--color-border);
}

.career-form__contact span {
    display: block;
    margin-bottom: 8px;
    color: var(--color-muted);
    font-size: 12px;
}

.career-form__contact a {
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
}

.career-form__form {
    padding: clamp(28px, 4vw, 50px);
    background: var(--color-navy);
    color: var(--color-white);
}

.career-form__form h3 {
    margin: 0 0 30px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 30px;
    letter-spacing: -1px;
}

.career-form__form form.wpcf7-form {
    display: block;
    width: 100%;
    margin: 0;
}

.career-form__form p {
    margin: 0;
}

.career-form__form label {
    display: block;
    color: #c4d6da;
    font-size: 12px;
    font-weight: 600;
}

.career-form__form input,
.career-form__form select,
.career-form__form textarea {
    width: 100%;
    margin-top: 9px;
    padding: 15px 16px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 0;
    outline: none;
    background: rgba(255, 255, 255, 0.07);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 15px;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease;
}

.career-form__form input:focus,
.career-form__form select:focus,
.career-form__form textarea:focus {
    border-color: var(--color-teal);
    background: rgba(255, 255, 255, 0.11);
}

.career-form__form textarea {
    min-height: 145px;
    resize: vertical;
}

.career-form__form input[type="file"] {
    padding: 13px;
    cursor: pointer;
}

.career-form__form input[type="submit"],
.career-form__form button[type="submit"] {
    width: auto;
    min-height: 54px;
    padding: 15px 25px;
    border: 0;
    background: var(--color-teal);
    color: var(--color-navy);
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.career-form__form input[type="submit"]:hover,
.career-form__form button[type="submit"]:hover {
    background: var(--color-white);
    transform: translateY(-2px);
}

.career-form__form .form-full,
.career-form__form .full-width,
.career-form__form p:has(textarea),
.career-form__form p:has(input[type="file"]),
.career-form__form p:has(input[type="submit"]) {
    grid-column: 1 / -1;
}

/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1050px) {

    /* HEADER */
    .site-header__inner {
        min-height: 76px;
        padding-inline: 24px;
    }

    .site-logo__image {
        width: 150px;
        height: auto;
    }

    .site-header__phone,
    .button--header {
        display: none;
    }

    .menu-toggle {
        position: relative;
        z-index: 1002;
        display: flex;
    }

    .site-header {
    overflow: visible;
}

.site-header__inner {
    position: relative;
}

.site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

    /* MOBIEL MENU */
    .main-navigation {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 9999;

    display: none;
    width: 100%;
    max-height: calc(100vh - 76px);
    margin: 0;
    padding: 24px;

    background: #ffffff;
    border-top: 1px solid var(--color-border);
    box-shadow: 0 18px 35px rgba(11, 48, 65, 0.14);

    overflow-y: auto;
}

    .main-navigation.is-open {
        display: block;
    }

    .main-navigation__list,
    .main-navigation > div > ul {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .main-navigation li {
        width: 100%;
        border-bottom: 1px solid var(--color-border);
    }

    .main-navigation a,
    .navigation__link {
        display: flex;
        width: 100%;
        padding: 18px 0;
        font-size: 18px;
        white-space: normal;
    }

    .main-navigation a::after {
        display: none;
    }

   


    /* ALGEMENE HERO */
    .page-hero {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .page-hero__content,
    .page-hero__aside {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }


    /* HOMEPAGE */
    .home-hero__inner,
    .home-section-heading,
    .home-why,
    .home-about {
        grid-template-columns: 1fr;
    }

    .home-hero__visual {
        min-height: 520px;
    }

    .home-hero__visual img {
        min-height: 520px;
    }

    .home-services__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-projects__grid {
        grid-template-columns: 1fr 1fr;
    }

    .home-projects__grid .project-card:first-child {
        grid-column: 1 / -1;
    }

    .home-visuals {
        height: auto;
        grid-template-columns: 1fr;
    }

    .home-visuals > figure {
        min-height: 500px;
    }

    .home-visuals__stack {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: none;
    }

    .home-visuals__stack figure {
        min-height: 350px;
    }


    /* DIENSTEN */
    .service-detail {
        min-height: 0;
        grid-template-columns: 45px minmax(0, 1fr);
        align-items: start;
    }

    .service-detail__image {
        grid-column: 1 / -1;
        width: 100%;
        height: 500px;
    }

    .specialist-services {
        grid-template-columns: 1fr;
    }

    .service-process__steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    /* SECTOREN */
    .sector-feature,
    .sector-feature--reverse {
        grid-template-columns: 1fr;
    }

    .sector-feature--reverse .sector-feature__image {
        order: 1;
    }

    .sector-feature--reverse .sector-feature__content {
        order: 2;
    }

    .other-sectors__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sector-proof {
        grid-template-columns: 1fr;
    }


    /* PROJECTEN */
    .project-case {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .project-case__content {
        padding:
            clamp(60px, 8vw, 90px)
            var(--page-padding);
    }

    .project-case__image {
        min-height: 520px;
    }

    .project-case__image img {
        min-height: 520px;
    }

    .recurring-projects__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    /* WERKEN BIJ */
    .careers-intro,
    .careers-profile,
    .career-process,
    .career-form {
        grid-template-columns: 1fr;
    }

    .careers-intro__content {
        padding-top: 0;
    }

    .careers-benefits {
        grid-template-columns: 1fr 1fr;
    }

    .career-work__grid {
        grid-template-columns: 1fr 1fr;
    }

    .career-form__intro {
        position: static;
    }


    /* FOOTER */
    .site-footer__top {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__brand {
        grid-column: 1 / -1;
    }
}


/* =========================================================
   WORDPRESS ADMIN BAR — TABLET / MOBIEL
========================================================= */

@media (max-width: 782px) {

    .admin-bar .site-header {
        top: 46px;
    }

    
}


/* =========================================================
   RESPONSIVE — MOBIEL
========================================================= */

@media (max-width: 700px) {

    :root {
        --page-padding: 20px;
    }

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: clip;
    }

    img,
    video,
    iframe {
        max-width: 100%;
        height: auto;
    }


    /* ALGEMEEN */
    .section {
        padding:
            65px
            var(--page-padding);
    }

    .section-title {
        max-width: 100%;
        font-size: clamp(34px, 10vw, 46px);
        letter-spacing: -1.7px;
    }

    .eyebrow {
        font-size: 10px;
        letter-spacing: 1.3px;
    }


    /* HEADER */
    .site-header__inner {
        min-height: 72px;
        padding-inline: 16px;
    }

    .site-logo__image {
        width: 135px;
    }

    .menu-toggle {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .main-navigation {
        top: 72px;
        padding:
            20px
            var(--page-padding)
            40px;
    }

    


    /* PAGINA HERO */
    .page-hero {
        display: grid;
        padding:
            58px
            var(--page-padding);
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .page-hero h1 {
        max-width: 100%;
        margin-bottom: 22px;
        font-size: clamp(38px, 11vw, 50px);
        letter-spacing: -2px;
        line-height: 1;
    }

    .page-hero__content > p:not(.eyebrow) {
        font-size: 16px;
    }

    .page-hero__actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .page-hero__aside {
        display: grid;
        padding:
            24px
            0
            0;
        border-top: 1px solid var(--color-border);
        border-left: 0;
        grid-template-columns: 1fr;
        gap: 22px;
    }


    /* HOMEPAGE */
    .home-hero {
        padding:
            55px
            var(--page-padding)
            0;
    }

    .home-hero__inner {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .home-hero__title {
        font-size: clamp(42px, 12vw, 58px);
        letter-spacing: -2.5px;
    }

    .home-hero__intro {
        font-size: 16px;
    }

    .home-hero__actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .home-hero__numbers {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .home-hero__visual,
    .home-hero__visual img {
        min-height: 430px;
    }

    .home-services__grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 390px;
        padding: 25px;
    }

    .home-projects__grid {
        grid-template-columns: 1fr;
    }

    .home-projects__grid .project-card:first-child {
        grid-column: auto;
    }

    .project-card {
        min-height: 390px;
        padding: 24px;
    }

    .project-card__stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .home-why__list article {
        grid-template-columns: 32px minmax(0, 1fr);
        gap: 14px;
    }

    .home-about__facts {
        grid-template-columns: 1fr;
    }

    .home-visuals > figure {
        min-height: 390px;
    }

    .home-visuals__stack {
        grid-template-columns: 1fr;
    }

    .home-visuals__stack figure {
        min-height: 320px;
    }

    .home-cta__actions {
        align-items: center;
        flex-direction: column;
        gap: 18px;
    }

    @media (max-width: 700px) {
    .home-regions {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
        scrollbar-width: none;
    }

    .home-regions::-webkit-scrollbar {
        display: none;
    }

    .home-regions a {
        flex: 0 0 auto;
    }
}

    /* DIENSTEN */
    .service-detail {
        display: grid;
        min-height: 0;
        padding:
            65px
            var(--page-padding);
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-detail__number {
        padding: 0;
    }

    .service-detail__content {
        width: 100%;
        max-width: none;
        min-width: 0;
    }

    .service-detail__content h2 {
        font-size: clamp(34px, 10vw, 46px);
        letter-spacing: -1.7px;
    }

    .service-detail__list {
        columns: 1;
    }

    .service-detail__image {
        grid-column: auto;
        width: 100%;
        height: 340px;
    }

    .specialist-services {
        padding:
            65px
            var(--page-padding);
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .specialist-services__grid {
        grid-template-columns: 1fr;
    }

    .specialist-services__grid article {
        min-height: 220px;
    }

    .service-process__steps {
        grid-template-columns: 1fr;
    }

    .service-process__steps li {
        min-height: 210px;
    }


    /* SECTOREN */
    .sector-feature,
    .sector-feature--reverse {
        min-height: 0;
        padding: 0;
        grid-template-columns: 1fr;
    }

    .sector-feature__image,
    .sector-feature__image img {
        min-height: 370px;
    }

    .sector-feature__content {
        padding:
            60px
            var(--page-padding);
    }

    .sector-feature__content h2 {
        font-size: clamp(35px, 10vw, 48px);
    }

    .other-sectors__grid {
        grid-template-columns: 1fr;
    }

    .other-sectors__grid article {
        min-height: 330px;
        padding: 26px;
    }

    .sector-proof {
        padding:
            65px
            var(--page-padding);
        grid-template-columns: 1fr;
    }


    /* PROJECTEN */
    .project-case {
        display: grid;
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .project-case__content {
        width: 100%;
        min-width: 0;
        padding:
            60px
            var(--page-padding);
    }

    .project-case__content h2 {
        max-width: 100%;
        font-size: clamp(35px, 10vw, 48px);
        letter-spacing: -1.8px;
    }

    .project-case__work {
        columns: 1;
    }

    .project-case__stats {
        grid-template-columns: 1fr 1fr;
    }

    .project-case__image {
        width: 100%;
        min-height: 360px;
    }

    .project-case__image img {
        min-height: 360px;
    }

    .recurring-projects__grid {
        grid-template-columns: 1fr;
    }


    /* WERKEN BIJ */
    .careers-benefits,
    .career-work__grid {
        grid-template-columns: 1fr;
    }

    .careers-benefits {
        padding-inline: var(--page-padding);
    }

    .careers-benefits article {
        min-height: 240px;
        padding: 26px 5px;
        border-right: 0;
    }

    .careers-profile {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .careers-profile__list > div,
    .career-process__steps li {
        grid-template-columns: 35px minmax(0, 1fr);
    }

    .career-process {
        padding:
            65px
            var(--page-padding);
    }

    .career-process__heading h2 {
        font-size: 38px;
        letter-spacing: -1.8px;
    }

    .career-process__steps p {
        grid-column: 2;
    }

    .career-form {
        padding:
            65px
            var(--page-padding);
    }

    .career-form__form {
        padding: 24px 20px;
    }

    .application-form {
        grid-template-columns: 1fr;
    }

    .application-form__field--full {
        grid-column: auto;
    }


    /* FOOTER */
    .site-footer__top {
        grid-template-columns: 1fr;
        gap: 42px;
        padding:
            55px
            var(--page-padding);
    }

    .site-footer__brand,
    .site-footer__contact {
        grid-column: auto;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        padding:
            24px
            var(--page-padding);
    }

    .site-footer__legal {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 700px) {

/* =========================================================
   DIENSTENPAGINA — MOBIEL
========================================================= */

.service-detail,
.service-detail--dark,
.service-detail--green {
    display: grid;
    width: 100%;
    min-width: 0;
    min-height: 0;

    padding:
        56px
        20px;

    grid-template-columns: 1fr;
    gap: 0;

    overflow: visible;
}

/* =========================================================
   PROJECTAANPAK — MOBIEL
========================================================= */

.project-method {
    display: grid;
    width: 100%;
    padding: 0;
    grid-template-columns: 1fr;
}

.project-method article {
    width: 100%;
    min-width: 0;
    min-height: 0;

    padding:
        42px
        20px;

    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.project-method article:last-child {
    border-bottom: 0;
}

.project-method article > span {
    display: block;
    margin-bottom: 35px;
}

.project-method h3 {
    max-width: 100%;
    margin: 0 0 12px;

    font-size: 22px;
    line-height: 1.15;

    overflow-wrap: anywhere;
}

.project-method p {
    width: 100%;
    max-width: none;

    font-size: 13px;
    line-height: 1.65;
}

/* =========================================================
   OVER PROFOMA — MOBIEL
========================================================= */

/* VERHAAL */
.about-story {
    display: grid;
    padding:
        60px
        var(--page-padding);

    grid-template-columns: 1fr;
    gap: 34px;
}

.about-story__heading,
.about-story__content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.about-story__heading h2 {
    max-width: 100%;
    margin-top: 16px;

    font-size: clamp(34px, 9.5vw, 44px);
    line-height: 1.05;
    letter-spacing: -1.7px;

    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.about-story__content {
    padding-top: 0;
}


/* CIJFERS */
.about-numbers {
    display: grid;
    width: 100%;
    padding: 0;

    grid-template-columns: 1fr 1fr;
}

.about-numbers article {
    min-width: 0;
    min-height: 170px;
    padding: 22px 20px;

    border-right: 1px solid #cadde1;
    border-bottom: 1px solid #cadde1;
}

.about-numbers strong {
    font-size: 38px;
}

.about-numbers p {
    font-size: 11px;
}


/* DIRECTIE */
.about-leadership {
    padding:
        60px
        var(--page-padding);
}

.about-leadership__grid {
    display: grid;
    width: 100%;

    grid-template-columns: 1fr;
    gap: 14px;
}

.leader-card,
.leadership-quote {
    width: 100%;
    min-width: 0;
    min-height: 300px;

    padding: 28px 24px;
}

.leader-card__details h3 {
    max-width: 100%;
    font-size: 27px;

    overflow-wrap: normal;
    word-break: normal;
}

.leadership-quote blockquote {
    font-size: 21px;
}


/* PRINCIPES */
.about-principles {
    display: grid;

    padding:
        60px
        var(--page-padding);

    grid-template-columns: 1fr;
    gap: 38px;
}

.about-principles__heading,
.about-principles__list {
    width: 100%;
    min-width: 0;
}

.about-principles__heading h2 {
    max-width: 100%;

    font-size: clamp(34px, 9.5vw, 44px);
    line-height: 1.05;
    letter-spacing: -1.7px;

    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.about-principles__list article {
    display: grid;

    padding: 24px 0;

    grid-template-columns: 32px minmax(0, 1fr);
    gap: 14px;
}

.about-principles__list article > span {
    grid-column: 1;
}

.about-principles__list h3 {
    grid-column: 2;
    font-size: 19px;
}

.about-principles__list p {
    grid-column: 2;
    font-size: 13px;
}


/* KWALITEIT */
.about-quality {
    display: grid;

    padding:
        60px
        var(--page-padding);

    grid-template-columns: 1fr;
    gap: 38px;
}

.about-quality__content {
    width: 100%;
    min-width: 0;
}

.about-quality__content .section-title {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.about-quality__grid {
    width: 100%;

    grid-template-columns: 1fr 1fr;
}

.about-quality__grid article {
    min-width: 0;
    min-height: 150px;
    padding: 20px;
}

.about-quality__grid strong {
    font-size: 27px;
}


/* DUURZAAMHEID */
.about-sustainability {
    display: grid;

    padding:
        60px
        var(--page-padding);

    grid-template-columns: 1fr;
    gap: 38px;
}

.about-sustainability__heading {
    width: 100%;
    min-width: 0;
}

.about-sustainability__heading h2 {
    max-width: 100%;

    font-size: clamp(34px, 9.5vw, 44px);
    line-height: 1.05;
    letter-spacing: -1.7px;

    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.about-sustainability ul {
    width: 100%;

    grid-template-columns: 1fr;
}

.about-sustainability li {
    width: 100%;
    min-width: 0;

    padding:
        17px
        0
        17px
        24px;
}

/* Nummer bovenaan */
.service-detail__number {
    display: block;
    width: 100%;
    margin: 0 0 18px;
    padding: 0;

    font-size: 10px;
    line-height: 1;
}

/* Tekstblok */
.service-detail__content {
    width: 100%;
    max-width: none;
    min-width: 0;
}

.service-detail__content h2 {
    width: 100%;
    max-width: 100%;
    margin: 12px 0 20px;

    font-size: clamp(31px, 8.7vw, 40px);
    line-height: 1.05;
    letter-spacing: -1.5px;

    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
}

.service-detail__content > p:not(.eyebrow) {
    width: 100%;
    max-width: none;
    margin-bottom: 0;

    font-size: 15px;
    line-height: 1.7;
}

/* Lijst met werkzaamheden */
.service-detail__list {
    width: 100%;
    margin: 25px 0 30px;
    padding: 0;

    columns: 1;
    column-gap: 0;
}

.service-detail__list li {
    width: 100%;
    padding:
        8px
        0
        8px
        17px;

    font-size: 13px;
    line-height: 1.55;
}

/* Link onder tekst */
.service-detail .section-link {
    display: inline-block;
    margin-bottom: 34px;
}

.page-hero h1,
.section-title,
.specialist-services__intro h2,
.home-cta h2 {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
}

.home-cta h2 {
    font-size: clamp(32px, 9vw, 42px);
    line-height: 1.05;
    letter-spacing: -1.6px;
}

.service-detail,
.service-detail__content,
.service-detail__content h2,
.service-detail__content p,
.service-detail__list,
.service-detail__list li {
    min-width: 0;
    max-width: 100%;
}

.service-detail__image {
    width: 100%;
    max-width: 100%;
}

.service-detail__image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

/* Afbeelding altijd onder tekst */
.service-detail__image {
    position: relative;

    width: 100%;
    height: auto;
    min-height: 0;

    margin: 0;

    grid-column: 1;
    overflow: hidden;
}

.service-detail__image img {
    display: block;

    width: 100%;
    height: 330px;
    min-height: 0;

    object-fit: cover;
}

/* Caption */
.service-detail__image figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;

    padding: 10px 12px;

    font-size: 9px;
    line-height: 1.4;
}


/* DONKER BLOK */
.service-detail--dark {
    background: var(--color-navy);
}

/* GROEN BLOK */
.service-detail--green {
    background: #4c8e7c;
}


/* SPECIALISTISCHE DIENSTEN */
.specialist-services {
    display: grid;

    padding:
        60px
        20px;

    grid-template-columns: 1fr;
    gap: 38px;

    overflow: visible;
}

.specialist-services__intro {
    width: 100%;
    min-width: 0;
}

.specialist-services__intro h2 {
    font-size: clamp(34px, 9.5vw, 44px);
    letter-spacing: -1.8px;
}

.specialist-services__grid {
    width: 100%;
    grid-template-columns: 1fr;
}

.specialist-services__grid article {
    min-height: 200px;
    padding: 24px 20px;
}


/* STAPPENPLAN */
.service-process__steps {
    width: 100%;
    grid-template-columns: 1fr;
}

.service-process__steps li {
    min-height: 190px;
    padding: 23px 20px;
}

} 

/* =========================================================
   OPEN SOLLICITATIEFORMULIER
========================================================= */

.career-form__description {
    max-width: 570px;
    margin: -15px 0 30px;
    color: #b8cdd2;
    font-size: 14px;
    line-height: 1.7;
}

.application-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
}

.application-form__field {
    min-width: 0;
}

.application-form__field--full {
    grid-column: 1 / -1;
}

.application-form label {
    display: block;
    color: #d4e1e4;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
}

.application-form .wpcf7-form-control-wrap {
    display: block;
    margin-top: 9px;
}

.application-form input:not([type="submit"]):not([type="checkbox"]),
.application-form select,
.application-form textarea {
    display: block;
    width: 100%;
    padding: 15px 16px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 0;
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.5;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease;
}

.application-form input::placeholder,
.application-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus {
    border-color: var(--color-teal);
    background: rgba(255, 255, 255, 0.12);
}

.application-form select option {
    background: var(--color-navy);
    color: #ffffff;
}

.application-form textarea {
    min-height: 140px;
    resize: vertical;
}

.application-form input[type="file"] {
    padding: 13px;
    cursor: pointer;
}

.application-form small {
    display: block;
    margin-top: 8px;
    color: #9db6bc;
    font-size: 11px;
}

.application-form__privacy .wpcf7-list-item {
    margin: 0;
}

.application-form__privacy label {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    cursor: pointer;
}

.application-form__privacy input[type="checkbox"] {
    width: 17px;
    height: 17px;
    margin-top: 2px;
    accent-color: var(--color-teal);
}

.application-form__submit {
    min-height: 54px;
    padding: 15px 25px;
    border: 0;
    background: var(--color-teal);
    color: var(--color-navy);
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.application-form__submit:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

.application-form .wpcf7-not-valid-tip {
    margin-top: 7px;
    color: #ffb6b6;
    font-size: 12px;
}

.application-form .wpcf7-response-output {
    grid-column: 1 / -1;
    margin: 10px 0 0 !important;
    padding: 14px 16px !important;
    border-color: var(--color-teal) !important;
    color: #ffffff;
}

/* =========================================================
   WERKEN BIJ — DEFINITIEVE MOBIELE FIX
========================================================= */

@media (max-width: 700px) {

    /* ALGEMEEN */
    .careers-intro,
    .careers-profile,
    .career-process,
    .career-form {
        width: 100%;
        min-width: 0;

        padding:
            60px
            var(--page-padding);

        grid-template-columns: 1fr;
        gap: 36px;
    }


    /* WIE ZOEKEN WIJ */
    .careers-profile__heading,
    .careers-profile__list {
        width: 100%;
        min-width: 0;
    }

    .careers-profile__heading h2 {
        max-width: 100%;

        font-size: clamp(34px, 9vw, 43px);
        line-height: 1.05;
        letter-spacing: -1.6px;

        overflow-wrap: normal;
        word-break: normal;
        hyphens: none;
    }

    .careers-profile__list > div {
        grid-template-columns: 32px minmax(0, 1fr);
        gap: 16px;
    }


    /* SOORTEN WERKZAAMHEDEN */
    .career-work {
        padding:
            60px
            var(--page-padding);
    }

    .career-work__heading {
        display: block;
        width: 100%;
        margin-bottom: 38px;
    }

    .career-work__heading h2 {
        max-width: 100%;
        margin-bottom: 24px;

        font-size: clamp(34px, 9vw, 43px);
        line-height: 1.05;
        letter-spacing: -1.6px;
    }

    .career-work__heading > p {
        width: 100%;
        max-width: none;
    }

    .career-work__grid {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .career-work__grid article {
        min-height: 230px;
        padding: 26px 22px;
    }

    .career-work__grid h3 {
        max-width: 100%;
        font-size: 22px;

        overflow-wrap: anywhere;
    }


    /* SOLLICITATIEPROCES */
    .career-process {
        grid-template-columns: 1fr;
    }

    .career-process__heading {
        width: 100%;
        min-width: 0;
    }

    .career-process__heading h2 {
        max-width: 100%;

        font-size: clamp(34px, 9vw, 43px);
        line-height: 1.05;
        letter-spacing: -1.6px;
    }

    .career-process__steps {
        width: 100%;
        min-width: 0;
    }

    .career-process__steps li {
        display: grid;
        width: 100%;

        padding: 24px 0;

        grid-template-columns: 32px minmax(0, 1fr);
        gap:
            6px
            16px;
    }

    .career-process__steps li::before {
        grid-column: 1;
        grid-row: 1 / span 2;
    }

    .career-process__steps strong {
        grid-column: 2;
        grid-row: 1;

        font-size: 18px;
        line-height: 1.3;
    }

    .career-process__steps p {
        grid-column: 2;
        grid-row: 2;

        width: 100%;
        min-width: 0;

        font-size: 14px;
        line-height: 1.65;
    }


    /* FORMULIERSECTIE */
    .career-form {
        grid-template-columns: 1fr;
    }

    .career-form__intro {
        position: static;
        width: 100%;
        min-width: 0;
    }

    .career-form__intro h2 {
        max-width: 100%;

        font-size: clamp(34px, 9vw, 43px);
        line-height: 1.05;
        letter-spacing: -1.6px;
    }

    .career-form__contact a {
        display: block;
        max-width: 100%;
        font-size: 16px;
        overflow-wrap: anywhere;
    }

    .career-form__form {
        width: 100%;
        min-width: 0;
        padding: 26px 20px;
    }

    .career-form__form h3 {
        font-size: 27px;
        line-height: 1.1;
    }


    /* CONTACT FORM 7 — ALLES 1 KOLOM */
    .application-form,
    .career-form__form form {
        display: grid !important;
        width: 100%;
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 20px !important;
    }

    .application-form__field,
    .application-form__field--full,
    .career-form__form p {
        width: 100%;
        min-width: 0;
        grid-column: 1 / -1 !important;
    }

    .application-form input:not([type="submit"]):not([type="checkbox"]),
    .application-form select,
    .application-form textarea,
    .career-form__form input:not([type="submit"]):not([type="checkbox"]),
    .career-form__form select,
    .career-form__form textarea {
        display: block;
        width: 100%;
        max-width: 100%;
        min-width: 0;

        box-sizing: border-box;
    }

    .application-form textarea,
    .career-form__form textarea {
        min-height: 135px;
    }

    .application-form input[type="file"],
    .career-form__form input[type="file"] {
        width: 100%;
        max-width: 100%;
    }

    .application-form__privacy label {
        width: 100%;
        align-items: flex-start;
    }

    .application-form input[type="submit"],
    .career-form__form input[type="submit"],
    .career-form__form button[type="submit"] {
        width: 100%;
        max-width: 100%;
    }
}

/* =========================================================
   MOBIELE HEADER + MENU — DEFINITIEF
========================================================= */

@media (max-width: 1050px) {

    /* Ruimte reserveren voor vaste header */
    body {
        padding-top: 72px;
    }

    /* Header altijd bovenaan */
    .site-header {
        position: fixed !important;
        top: 0;
        right: 0;
        left: 0;

        z-index: 10000;

        width: 100%;
        margin: 0;

        background: #ffffff;
        border-bottom: 1px solid rgba(11, 48, 65, 0.08);
        box-shadow: 0 4px 18px rgba(11, 48, 65, 0.06);

        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .site-header__inner {
        position: relative;

        width: 100%;
        min-height: 72px;

        margin: 0 auto;
        padding:
            0
            16px;

        background: #ffffff;
    }


    /* HAMBURGER */
    .menu-toggle {
        position: relative;
        z-index: 10002;
    }


    /* MENU ALTIJD ONDER DE HEADER */
    .main-navigation {
        position: fixed !important;

        top: 72px;
        right: 0;
        bottom: 0;
        left: 0;

        z-index: 9999;

        display: none;

        width: 100%;
        height: calc(100dvh - 72px);

        margin: 0;
        padding:
            20px
            24px
            40px;

        background: #ffffff;

        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    .main-navigation.is-open {
        display: block;
    }


    /* MENU LINKS */
    .main-navigation__list {
        display: flex;

        width: 100%;
        max-width: 700px;

        margin: 0 auto;
        padding: 0;

        flex-direction: column;
        gap: 0;

        list-style: none;
    }

    .main-navigation li {
        width: 100%;

        border-bottom: 1px solid var(--color-border);
    }

    .main-navigation a {
        display: flex;
        align-items: center;

        width: 100%;
        min-height: 58px;

        padding:
            15px
            0;

        color: var(--color-navy);

        font-family: var(--font-heading);
        font-size: 18px;
        font-weight: 600;
    }


    /*
     * BELANGRIJK:
     * body NIET op overflow:hidden zetten.
     * Dat veroorzaakt in Safari de scroll-sprong.
     */
    body.menu-is-open {
        overflow: visible !important;
    }
}


/* =========================================================
   WORDPRESS ADMIN BAR
   Alleen zichtbaar wanneer je bent ingelogd
========================================================= */

@media (max-width: 782px) {

    body.admin-bar {
        padding-top: 72px;
    }

    body.admin-bar .site-header {
        top: 46px;
    }

    body.admin-bar .main-navigation {
        top: 118px;
        height: calc(100dvh - 118px);
    }
}

/* =========================================================
   GRATIS LOCATIEOPNAME
========================================================= */

.location-benefits {
    background: var(--color-white);
}

.location-benefits__grid {
    display: grid;
    max-width: var(--container-width);
    margin-inline: auto;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.location-benefits__grid article {
    display: flex;
    min-height: 310px;
    flex-direction: column;
    justify-content: space-between;
    padding: 34px;
    border: 1px solid var(--color-border);
    background: var(--color-light);
}

.location-benefits__grid article > span {
    color: var(--color-teal);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.location-benefits__grid h3 {
    margin: auto 0 14px;
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-size: 25px;
    letter-spacing: -0.8px;
    line-height: 1.2;
}

.location-benefits__grid p {
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   GRATIS LOCATIEOPNAME — LOCATIETYPES
========================================================= */

.location-types {
    display: grid;
    padding:
        clamp(80px, 9vw, 125px)
        var(--page-padding);
    background: var(--color-navy);
    color: var(--color-white);
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(60px, 9vw, 140px);
}

.location-types__intro h2 {
    max-width: 620px;
    margin: 18px 0 24px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: clamp(40px, 4.5vw, 62px);
    letter-spacing: -2.7px;
    line-height: 1.05;
}

.location-types__intro > p:not(.eyebrow) {
    max-width: 520px;
    margin: 0;
    color: #b8cdd2;
    font-size: 16px;
    line-height: 1.8;
}

.location-types__grid {
    display: grid;
    align-content: start;
    grid-template-columns: 1fr 1fr;
}

.location-types__grid article {
    display: grid;
    min-height: 135px;
    align-items: end;
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    grid-template-columns: 42px 1fr;
    gap: 14px;
}

.location-types__grid article:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.location-types__grid article > span {
    color: var(--color-teal);
    font-size: 10px;
    font-weight: 700;
}

.location-types__grid strong {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 19px;
    line-height: 1.3;
}


/* =========================================================
   GRATIS LOCATIEOPNAME — FORMULIER
========================================================= */

.location-form {
    display: grid;
    align-items: start;
    padding:
        clamp(85px, 9vw, 130px)
        var(--page-padding);
    background: var(--color-white);
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(55px, 9vw, 140px);
}

.location-form__intro {
    position: sticky;
    top: 130px;
}

.location-form__intro h2 {
    max-width: 590px;
    margin: 18px 0 24px;
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-size: clamp(42px, 4.4vw, 62px);
    letter-spacing: -2.7px;
    line-height: 1.05;
}

.location-form__intro > p {
    max-width: 520px;
    margin: 0 0 28px;
    color: var(--color-muted);
    font-size: 16px;
    line-height: 1.8;
}

.location-form__contact {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid var(--color-border);
}

.location-form__contact span {
    display: block;
    margin-bottom: 10px;
    color: var(--color-muted);
    font-size: 12px;
}

.location-form__contact a {
    display: block;
    width: fit-content;
    margin-bottom: 8px;
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
}

.location-form__form {
    padding: clamp(28px, 4vw, 50px);
    background: var(--color-navy);
    color: var(--color-white);
}

.location-form__form h3 {
    margin: 0 0 12px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 30px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.location-form__description {
    max-width: 620px;
    margin: 0 0 30px;
    color: #b8cdd2;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   GRATIS LOCATIEOPNAME — FORMULIER VELDEN
========================================================= */

.location-form .application-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
}

.location-form .application-form__field {
    min-width: 0;
}

.location-form .application-form__field--full {
    grid-column: 1 / -1;
}

.location-form .application-form label {
    display: block;
    color: #d4e1e4;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
}

.location-form .application-form .wpcf7-form-control-wrap {
    display: block;
    margin-top: 9px;
}

.location-form .application-form input:not([type="submit"]):not([type="checkbox"]),
.location-form .application-form select,
.location-form .application-form textarea {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 15px 16px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 0;
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    box-sizing: border-box;
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.5;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease;
}

.location-form .application-form input::placeholder,
.location-form .application-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.location-form .application-form input:focus,
.location-form .application-form select:focus,
.location-form .application-form textarea:focus {
    border-color: var(--color-teal);
    background: rgba(255, 255, 255, 0.12);
}

.location-form .application-form select option {
    background: var(--color-navy);
    color: #ffffff;
}

.location-form .application-form textarea {
    min-height: 145px;
    resize: vertical;
}

.location-form .application-form__privacy .wpcf7-list-item {
    margin: 0;
}

.location-form .application-form__privacy label {
    display: flex;
    align-items: flex-start;
    gap: 11px;
}

.location-form .application-form__privacy input[type="checkbox"] {
    width: 17px;
    height: 17px;
    margin-top: 2px;
    flex: 0 0 auto;
}

.location-form .application-form input[type="submit"] {
    width: auto;
    min-height: 54px;
    padding: 15px 25px;
    border: 0;
    background: var(--color-teal);
    color: var(--color-navy);
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
}

.location-form .application-form input[type="submit"]:hover {
    background: var(--color-white);
}


/* =========================================================
   GRATIS LOCATIEOPNAME — TABLET
========================================================= */

@media (max-width: 1050px) {

    .location-benefits__grid {
        grid-template-columns: 1fr 1fr;
    }

    .location-types,
    .location-form {
        grid-template-columns: 1fr;
    }

    .location-types__intro,
    .location-form__intro {
        width: 100%;
        max-width: 100%;
    }

    .location-form__intro {
        position: static;
    }
}


/* =========================================================
   GRATIS LOCATIEOPNAME — MOBIEL
========================================================= */

@media (max-width: 700px) {

    .location-hero h1 {
        max-width: 100%;
        font-size: clamp(38px, 10vw, 48px);
        line-height: 1.02;
        letter-spacing: -1.8px;
        overflow-wrap: normal;
        word-break: normal;
    }

    .location-benefits {
        padding:
            60px
            var(--page-padding);
    }

    .location-benefits__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .location-benefits__grid article {
        min-height: 230px;
        padding: 26px 22px;
    }

    .location-benefits__grid h3 {
        font-size: 22px;
    }


    /* LOCATIETYPES */
    .location-types {
        padding:
            60px
            var(--page-padding);
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .location-types__intro h2 {
        max-width: 100%;
        font-size: clamp(34px, 9vw, 43px);
        line-height: 1.05;
        letter-spacing: -1.6px;
    }

    .location-types__grid {
        grid-template-columns: 1fr;
    }

    .location-types__grid article {
        min-height: 90px;
        padding: 20px 0;
        border-right: 0 !important;
        grid-template-columns: 32px minmax(0, 1fr);
    }

    .location-types__grid strong {
        font-size: 18px;
    }


    /* FORMULIER */
    .location-form {
        padding:
            60px
            var(--page-padding);
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .location-form__intro {
        position: static;
        width: 100%;
        min-width: 0;
    }

    .location-form__intro h2 {
        max-width: 100%;
        font-size: clamp(34px, 9vw, 43px);
        line-height: 1.05;
        letter-spacing: -1.6px;
    }

    .location-form__contact a {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .location-form__form {
        width: 100%;
        min-width: 0;
        padding: 26px 20px;
    }

    .location-form__form h3 {
        font-size: 27px;
    }

    .location-form .application-form {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
    }

    .location-form .application-form__field,
    .location-form .application-form__field--full {
        width: 100%;
        min-width: 0;
        grid-column: 1 / -1;
    }

    .location-form .application-form input:not([type="submit"]):not([type="checkbox"]),
    .location-form .application-form select,
    .location-form .application-form textarea {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .location-form .application-form input[type="submit"] {
        width: 100%;
    }
}

/* =========================================================
   OFFERTE AANVRAGEN
========================================================= */

.quote-benefits {
    background: var(--color-white);
}

.quote-benefits__grid {
    display: grid;
    max-width: var(--container-width);
    margin-inline: auto;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.quote-benefits__grid article {
    display: flex;
    min-height: 310px;
    flex-direction: column;
    justify-content: space-between;
    padding: 34px;
    border: 1px solid var(--color-border);
    background: var(--color-light);
}

.quote-benefits__grid article > span {
    color: var(--color-teal);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.quote-benefits__grid h3 {
    margin: auto 0 14px;
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-size: 25px;
    letter-spacing: -0.8px;
    line-height: 1.2;
}

.quote-benefits__grid p {
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   OFFERTE — DIENSTEN
========================================================= */

.quote-services {
    display: grid;
    padding:
        clamp(80px, 9vw, 125px)
        var(--page-padding);
    background: var(--color-navy);
    color: var(--color-white);
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(60px, 9vw, 140px);
}

.quote-services__intro h2 {
    max-width: 620px;
    margin: 18px 0 24px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: clamp(40px, 4.5vw, 62px);
    letter-spacing: -2.7px;
    line-height: 1.05;
}

.quote-services__intro > p:not(.eyebrow) {
    max-width: 520px;
    margin: 0;
    color: #b8cdd2;
    font-size: 16px;
    line-height: 1.8;
}

.quote-services__grid {
    display: grid;
    align-content: start;
    grid-template-columns: 1fr 1fr;
}

.quote-services__grid article {
    display: grid;
    min-height: 135px;
    align-items: end;
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    grid-template-columns: 42px 1fr;
    gap: 14px;
}

.quote-services__grid article:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.quote-services__grid article > span {
    color: var(--color-teal);
    font-size: 10px;
    font-weight: 700;
}

.quote-services__grid strong {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 19px;
    line-height: 1.3;
}


/* =========================================================
   OFFERTE — FORMULIER
========================================================= */

.quote-form {
    display: grid;
    align-items: start;
    padding:
        clamp(85px, 9vw, 130px)
        var(--page-padding);
    background: var(--color-white);
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(55px, 9vw, 140px);
}

.quote-form__intro {
    position: sticky;
    top: 130px;
}

.quote-form__intro h2 {
    max-width: 590px;
    margin: 18px 0 24px;
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-size: clamp(42px, 4.4vw, 62px);
    letter-spacing: -2.7px;
    line-height: 1.05;
}

.quote-form__intro > p {
    max-width: 520px;
    margin: 0 0 28px;
    color: var(--color-muted);
    font-size: 16px;
    line-height: 1.8;
}

.quote-form__contact {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid var(--color-border);
}

.quote-form__contact span {
    display: block;
    margin-bottom: 10px;
    color: var(--color-muted);
    font-size: 12px;
}

.quote-form__contact a {
    display: block;
    width: fit-content;
    margin-bottom: 8px;
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
}

.quote-form__location-scan {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}

.quote-form__location-scan span {
    display: block;
    margin-bottom: 9px;
    color: var(--color-muted);
    font-size: 12px;
}

.quote-form__location-scan a {
    color: var(--color-teal);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
}

.quote-form__form {
    padding: clamp(28px, 4vw, 50px);
    background: var(--color-navy);
    color: var(--color-white);
}

.quote-form__form h3 {
    margin: 0 0 12px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 30px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.quote-form__description {
    max-width: 620px;
    margin: 0 0 30px;
    color: #b8cdd2;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   OFFERTE — FORMULIER VELDEN
========================================================= */

.quote-form .application-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
}

.quote-form .application-form__field {
    min-width: 0;
}

.quote-form .application-form__field--full {
    grid-column: 1 / -1;
}

.quote-form .application-form label {
    display: block;
    color: #d4e1e4;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
}

.quote-form .application-form .wpcf7-form-control-wrap {
    display: block;
    margin-top: 9px;
}

.quote-form .application-form input:not([type="submit"]):not([type="checkbox"]),
.quote-form .application-form select,
.quote-form .application-form textarea {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 15px 16px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 0;
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    box-sizing: border-box;
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.5;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease;
}

.quote-form .application-form input::placeholder,
.quote-form .application-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.quote-form .application-form input:focus,
.quote-form .application-form select:focus,
.quote-form .application-form textarea:focus {
    border-color: var(--color-teal);
    background: rgba(255, 255, 255, 0.12);
}

.quote-form .application-form select option {
    background: var(--color-navy);
    color: #ffffff;
}

.quote-form .application-form textarea {
    min-height: 145px;
    resize: vertical;
}

.quote-form .application-form__privacy .wpcf7-list-item {
    margin: 0;
}

.quote-form .application-form__privacy label {
    display: flex;
    align-items: flex-start;
    gap: 11px;
}

.quote-form .application-form__privacy input[type="checkbox"] {
    width: 17px;
    height: 17px;
    margin-top: 2px;
    flex: 0 0 auto;
}

.quote-form .application-form input[type="submit"] {
    width: auto;
    min-height: 54px;
    padding: 15px 25px;
    border: 0;
    background: var(--color-teal);
    color: var(--color-navy);
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
}

.quote-form .application-form input[type="submit"]:hover {
    background: var(--color-white);
}


/* =========================================================
   OFFERTE — TABLET
========================================================= */

@media (max-width: 1050px) {

    .quote-benefits__grid {
        grid-template-columns: 1fr 1fr;
    }

    .quote-services,
    .quote-form {
        grid-template-columns: 1fr;
    }

    .quote-form__intro {
        position: static;
    }
}


/* =========================================================
   OFFERTE — MOBIEL
========================================================= */

@media (max-width: 700px) {

    .quote-hero h1 {
        max-width: 100%;
        font-size: clamp(38px, 10vw, 48px);
        line-height: 1.02;
        letter-spacing: -1.8px;
        overflow-wrap: normal;
        word-break: normal;
    }

    .quote-benefits {
        padding:
            60px
            var(--page-padding);
    }

    .quote-benefits__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .quote-benefits__grid article {
        min-height: 230px;
        padding: 26px 22px;
    }

    .quote-benefits__grid h3 {
        font-size: 22px;
    }


    /* DIENSTEN */
    .quote-services {
        padding:
            60px
            var(--page-padding);
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .quote-services__intro h2 {
        max-width: 100%;
        font-size: clamp(34px, 9vw, 43px);
        line-height: 1.05;
        letter-spacing: -1.6px;
    }

    .quote-services__grid {
        grid-template-columns: 1fr;
    }

    .quote-services__grid article {
        min-height: 90px;
        padding: 20px 0;
        border-right: 0 !important;
        grid-template-columns: 32px minmax(0, 1fr);
    }

    .quote-services__grid strong {
        font-size: 18px;
    }


    /* FORMULIER */
    .quote-form {
        padding:
            60px
            var(--page-padding);
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .quote-form__intro {
        position: static;
        width: 100%;
        min-width: 0;
    }

    .quote-form__intro h2 {
        max-width: 100%;
        font-size: clamp(34px, 9vw, 43px);
        line-height: 1.05;
        letter-spacing: -1.6px;
    }

    .quote-form__contact a,
    .quote-form__location-scan a {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .quote-form__form {
        width: 100%;
        min-width: 0;
        padding: 26px 20px;
    }

    .quote-form__form h3 {
        font-size: 27px;
    }

    .quote-form .application-form {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
    }

    .quote-form .application-form__field,
    .quote-form .application-form__field--full {
        width: 100%;
        min-width: 0;
        grid-column: 1 / -1;
    }

    .quote-form .application-form input:not([type="submit"]):not([type="checkbox"]),
    .quote-form .application-form select,
    .quote-form .application-form textarea {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .quote-form .application-form input[type="submit"] {
        width: 100%;
    }
}

/* =========================================================
   CONTACTPAGINA
========================================================= */

.contact-options {
    background: var(--color-white);
}

.contact-options__grid {
    display: grid;
    max-width: var(--container-width);
    margin-inline: auto;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.contact-options__grid article {
    display: flex;
    min-height: 300px;
    flex-direction: column;
    padding: 34px;
    border: 1px solid var(--color-border);
    background: var(--color-light);
}

.contact-options__grid article > span {
    color: var(--color-teal);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.contact-options__grid h3 {
    margin: auto 0 14px;
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-size: 25px;
    letter-spacing: -0.8px;
    line-height: 1.2;
}

.contact-options__grid p {
    margin: 0 0 20px;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.7;
}

.contact-options__grid a {
    width: fit-content;
    color: var(--color-teal);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
}


/* =========================================================
   CONTACT — FORMULIERSECTIE
========================================================= */

.contact-form-section {
    display: grid;
    align-items: start;
    padding:
        clamp(85px, 9vw, 130px)
        var(--page-padding);
    background: var(--color-white);
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(55px, 9vw, 140px);
}

.contact-form-section__intro {
    position: sticky;
    top: 130px;
}

.contact-form-section__intro h2 {
    max-width: 590px;
    margin: 18px 0 24px;
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-size: clamp(42px, 4.4vw, 62px);
    letter-spacing: -2.7px;
    line-height: 1.05;
}

.contact-form-section__intro > p {
    max-width: 520px;
    margin: 0 0 28px;
    color: var(--color-muted);
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   CONTACT — GEGEVENS
========================================================= */

.contact-details {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid var(--color-border);
}

.contact-details > div {
    margin-bottom: 24px;
}

.contact-details span {
    display: block;
    margin-bottom: 8px;
    color: var(--color-muted);
    font-size: 12px;
}

.contact-details a {
    display: block;
    width: fit-content;
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
}


/* =========================================================
   CONTACT — FORMULIER
========================================================= */

.contact-form-section__form {
    padding: clamp(28px, 4vw, 50px);
    background: var(--color-navy);
    color: var(--color-white);
}

.contact-form-section__form h3 {
    margin: 0 0 12px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 30px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.contact-form-section__description {
    max-width: 620px;
    margin: 0 0 30px;
    color: #b8cdd2;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   CONTACT — FORMULIER VELDEN
========================================================= */

.contact-form-section .application-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
}

.contact-form-section .application-form__field {
    min-width: 0;
}

.contact-form-section .application-form__field--full {
    grid-column: 1 / -1;
}

.contact-form-section .application-form label {
    display: block;
    color: #d4e1e4;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
}

.contact-form-section .application-form .wpcf7-form-control-wrap {
    display: block;
    margin-top: 9px;
}

.contact-form-section .application-form input:not([type="submit"]):not([type="checkbox"]),
.contact-form-section .application-form select,
.contact-form-section .application-form textarea {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 15px 16px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 0;
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    box-sizing: border-box;
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.5;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease;
}

.contact-form-section .application-form input::placeholder,
.contact-form-section .application-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.contact-form-section .application-form input:focus,
.contact-form-section .application-form select:focus,
.contact-form-section .application-form textarea:focus {
    border-color: var(--color-teal);
    background: rgba(255, 255, 255, 0.12);
}

.contact-form-section .application-form select option {
    background: var(--color-navy);
    color: #ffffff;
}

.contact-form-section .application-form textarea {
    min-height: 145px;
    resize: vertical;
}


/* =========================================================
   CONTACT — PRIVACY
========================================================= */

.contact-form-section .application-form__privacy .wpcf7-list-item {
    margin: 0;
}

.contact-form-section .application-form__privacy label {
    display: flex;
    align-items: flex-start;
    gap: 11px;
}

.contact-form-section .application-form__privacy input[type="checkbox"] {
    width: 17px;
    height: 17px;
    margin-top: 2px;
    flex: 0 0 auto;
}


/* =========================================================
   CONTACT — SUBMIT
========================================================= */

.contact-form-section .application-form input[type="submit"] {
    width: auto;
    min-height: 54px;
    padding: 15px 25px;
    border: 0;
    background: var(--color-teal);
    color: var(--color-navy);
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
}

.contact-form-section .application-form input[type="submit"]:hover {
    background: var(--color-white);
}


/* =========================================================
   CONTACT — TABLET
========================================================= */

@media (max-width: 1050px) {

    .contact-options__grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-form-section {
        grid-template-columns: 1fr;
    }

    .contact-form-section__intro {
        position: static;
    }
}


/* =========================================================
   CONTACT — MOBIEL
========================================================= */

@media (max-width: 700px) {

    .contact-hero h1 {
        max-width: 100%;
        font-size: clamp(38px, 10vw, 48px);
        line-height: 1.02;
        letter-spacing: -1.8px;
        overflow-wrap: normal;
        word-break: normal;
    }

    .contact-options {
        padding:
            60px
            var(--page-padding);
    }

    .contact-options__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .contact-options__grid article {
        min-height: 230px;
        padding: 26px 22px;
    }

    .contact-options__grid h3 {
        font-size: 22px;
    }


    /* FORMULIER */
    .contact-form-section {
        padding:
            60px
            var(--page-padding);
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .contact-form-section__intro {
        position: static;
        width: 100%;
        min-width: 0;
    }

    .contact-form-section__intro h2 {
        max-width: 100%;
        font-size: clamp(34px, 9vw, 43px);
        line-height: 1.05;
        letter-spacing: -1.6px;
    }

    .contact-details a {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .contact-form-section__form {
        width: 100%;
        min-width: 0;
        padding: 26px 20px;
    }

    .contact-form-section__form h3 {
        font-size: 27px;
    }

    .contact-form-section .application-form {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
    }

    .contact-form-section .application-form__field,
    .contact-form-section .application-form__field--full {
        width: 100%;
        min-width: 0;
        grid-column: 1 / -1;
    }

    .contact-form-section .application-form input:not([type="submit"]):not([type="checkbox"]),
    .contact-form-section .application-form select,
    .contact-form-section .application-form textarea {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .contact-form-section .application-form input[type="submit"] {
        width: 100%;
    }
}

.contact-details address,
.contact-details p {
    margin: 0;
    color: var(--color-navy);
    font-style: normal;
    line-height: 1.7;
}

/* =========================================================
   WERKEN BIJ — DEFINITIEVE FORMULIERFIX
   Gebaseerd op offerte- en locatieopnameformulier
========================================================= */

.career-form {
    display: grid;
    align-items: start;
    padding:
        clamp(85px, 9vw, 130px)
        var(--page-padding);
    background: var(--color-white);
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(55px, 9vw, 140px);
}


/* Linkerkant blijft naast formulier, maar niet sticky */

.career-form__intro {
    position: static;
    top: auto;
}

.career-form__intro h2,
.career-form__intro .section-title {
    max-width: 590px;
    margin: 18px 0 24px;
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-size: clamp(42px, 4.4vw, 62px);
    letter-spacing: -2.7px;
    line-height: 1.05;
}

.career-form__intro > p:not(.eyebrow) {
    max-width: 520px;
    margin: 0 0 28px;
    color: var(--color-muted);
    font-size: 16px;
    line-height: 1.8;
}

.career-form__contact {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid var(--color-border);
}

.career-form__contact span {
    display: block;
    margin-bottom: 2px;
    color: var(--color-muted);
    font-size: 12px;
}

.career-form__contact a {
    display: block;
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
}


/* Donker formulierblok */

.career-form__form {
    width: 100%;
    min-width: 0;
    padding: clamp(28px, 4vw, 50px);
    background: var(--color-navy);
    color: var(--color-white);
}

.career-form__form h3 {
    margin: 0 0 12px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 30px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.career-form__description {
    max-width: 620px;
    margin: 0 0 30px;
    color: #b8cdd2;
    font-size: 14px;
    line-height: 1.7;
}


/* Dit is de belangrijkste correctie */

.career-form__form form.wpcf7-form {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
}


/* Formulier zelf krijgt twee kolommen */

.career-form .application-form {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
}

.career-form .application-form__field {
    width: 100%;
    min-width: 0;
    margin: 0;
}

.career-form .application-form__field--full {
    grid-column: 1 / -1;
}

.career-form .application-form label {
    display: block;
    color: #d4e1e4;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
}

.career-form .application-form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
    margin-top: 9px;
}

.career-form .application-form input:not([type="submit"]):not([type="checkbox"]),
.career-form .application-form select,
.career-form .application-form textarea {
    display: block;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    padding: 15px 16px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 0;
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.5;
}

.career-form .application-form input::placeholder,
.career-form .application-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.career-form .application-form input:focus,
.career-form .application-form select:focus,
.career-form .application-form textarea:focus {
    border-color: var(--color-teal);
    background: rgba(255, 255, 255, 0.12);
}

.career-form .application-form select option {
    background: var(--color-navy);
    color: var(--color-white);
}

.career-form .application-form textarea {
    min-height: 145px;
    resize: vertical;
}


/* Bestand uploaden */

.career-form .application-form input[type="file"] {
    width: 100%;
    padding: 13px;
    cursor: pointer;
}

.career-form .application-form small {
    display: block;
    margin-top: 8px;
    color: #9db6bc;
    font-size: 11px;
}


/* Privacyvakje */

.career-form .application-form__privacy .wpcf7-list-item {
    margin: 0;
}

.career-form .application-form__privacy label {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    cursor: pointer;
}

.career-form .application-form__privacy input[type="checkbox"] {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    margin: 2px 0 0;
    accent-color: var(--color-teal);
}


/* Verzendknop */

.career-form .application-form input[type="submit"] {
    width: auto;
    min-height: 54px;
    padding: 15px 25px;
    border: 0;
    background: var(--color-teal);
    color: var(--color-navy);
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
}

.career-form .application-form input[type="submit"]:hover {
    background: var(--color-white);
}


/* Tablet */

@media (max-width: 1050px) {
    .career-form {
        grid-template-columns: 1fr;
    }

    .career-form__intro {
        max-width: 760px;
    }
}


/* Mobiel */

@media (max-width: 700px) {
    .career-form {
        width: 100%;
        padding:
            70px
            var(--page-padding);
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .career-form__intro h2,
    .career-form__intro .section-title {
        font-size: 40px;
        letter-spacing: -2px;
    }

    .career-form__form {
        padding: 30px 20px;
    }

    .career-form .application-form {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .career-form .application-form__field,
    .career-form .application-form__field--full {
        grid-column: 1;
    }

    .career-form .application-form input[type="submit"] {
        width: 100%;
    }
}

/* =========================================================
   WERKEN BIJ — HERSTEL OVERIGE PAGINA
   Formulier wordt bewust niet aangepast
========================================================= */


/* ---------------------------------------------------------
   INTRODUCTIE
--------------------------------------------------------- */

.careers-intro {
    display: grid;
    align-items: start;
    padding:
        clamp(85px, 9vw, 130px)
        var(--page-padding);
    background: var(--color-white);
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(55px, 9vw, 140px);
}

.careers-intro__heading,
.careers-intro__content {
    min-width: 0;
}

.careers-intro__heading .section-title {
    max-width: 620px;
    margin: 18px 0 0;
    color: var(--color-navy);
}

.careers-intro__content {
    max-width: 680px;
    padding-top: 44px;
}

.careers-intro__content p {
    margin: 0 0 22px;
    color: var(--color-muted);
    font-size: 17px;
    line-height: 1.8;
}


/* ---------------------------------------------------------
   VOORDELEN
--------------------------------------------------------- */

.careers-benefits {
    display: grid;
    padding-inline: var(--page-padding);
    border-top: 1px solid #cadde1;
    border-bottom: 1px solid #cadde1;
    background: #edf6f7;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.careers-benefits article {
    display: flex;
    min-width: 0;
    min-height: 330px;
    flex-direction: column;
    padding: 42px 32px;
    border-right: 1px solid #cadde1;
}

.careers-benefits article:last-child {
    border-right: 0;
}

.careers-benefits article > span {
    display: block;
    margin-bottom: auto;
    color: var(--color-teal);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.careers-benefits h3 {
    margin: 55px 0 14px;
    color: var(--color-navy);
    font-size: 24px;
    letter-spacing: -0.8px;
    line-height: 1.2;
}

.careers-benefits p {
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   WIE ZOEKEN WIJ
--------------------------------------------------------- */

.careers-profile {
    display: grid;
    align-items: start;
    padding:
        clamp(85px, 9vw, 130px)
        var(--page-padding);
    background: var(--color-navy);
    color: var(--color-white);
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(55px, 9vw, 140px);
}

.careers-profile__content,
.careers-profile__list {
    min-width: 0;
}

.careers-profile__content .eyebrow {
    color: #72c5ba;
}

.careers-profile__content .section-title {
    max-width: 620px;
    margin: 18px 0 25px;
    color: var(--color-white) !important;
}

.careers-profile__content > p:last-child {
    max-width: 560px;
    margin: 0;
    color: #b8cdd2;
    font-size: 16px;
    line-height: 1.8;
}

.careers-profile__list {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.careers-profile__list > div {
    display: grid;
    align-items: start;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 20px;
}

.careers-profile__list > div > span {
    padding-top: 3px;
    color: var(--color-teal);
    font-size: 11px;
    font-weight: 700;
}

.careers-profile__list p {
    margin: 0;
    color: #c1d2d6;
    font-size: 15px;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   SOORTEN WERKZAAMHEDEN
--------------------------------------------------------- */

.career-work {
    width: 100%;
    padding:
        clamp(85px, 9vw, 125px)
        var(--page-padding);
    background: var(--color-white);
}

.career-work .home-section-heading {
    display: grid;
    max-width: var(--container-width);
    margin: 0 auto 55px;
    align-items: end;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
    gap: clamp(40px, 7vw, 110px);
}

.career-work .home-section-heading > div,
.career-work .home-section-heading > p {
    min-width: 0;
}

.career-work .home-section-heading .section-title {
    max-width: 700px;
    margin-bottom: 0;
}

.career-work .home-section-heading .section-intro {
    max-width: 520px;
    margin: 0 0 5px;
}

.career-work__grid {
    display: grid;
    width: 100%;
    max-width: var(--container-width);
    margin-inline: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.career-work__grid article {
    display: flex;
    min-width: 0;
    min-height: 300px;
    flex-direction: column;
    padding: 34px;
    border: 1px solid var(--color-border);
    background: var(--color-light);
}

.career-work__grid article > span {
    display: block;
    margin-bottom: auto;
    color: var(--color-teal);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.career-work__grid h3 {
    margin: 50px 0 13px;
    color: var(--color-navy);
    font-size: 25px;
    letter-spacing: -0.8px;
    line-height: 1.2;
}

.career-work__grid p {
    max-width: 520px;
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   SOLLICITATIEPROCES
--------------------------------------------------------- */

.career-process {
    display: grid;
    align-items: start;
    padding:
        clamp(85px, 9vw, 130px)
        var(--page-padding);
    background: #edf6f7;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(55px, 9vw, 140px);
}

.career-process__heading,
.career-process__steps {
    min-width: 0;
}

.career-process__heading h2 {
    max-width: 650px;
    margin: 18px 0 0;
    color: var(--color-navy);
    font-size: clamp(42px, 4.4vw, 61px);
    letter-spacing: -2.7px;
    line-height: 1.05;
}

.career-process__steps {
    width: 100%;
    margin: 0;
    padding: 0;
    border-top: 1px solid #bfd5da;
    list-style: none;
    counter-reset: none;
}

/* Het nummer staat al in de PHP */
.career-process__steps li::before {
    display: none !important;
    content: none !important;
}

.career-process__steps li {
    display: grid;
    width: 100%;
    align-items: start;
    padding: 30px 0;
    border-bottom: 1px solid #bfd5da;
    grid-template-columns: 58px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 22px;
    row-gap: 9px;
}

.career-process__steps li > span {
    display: block;
    grid-column: 1;
    grid-row: 1 / 3;
    padding-top: 4px;
    color: var(--color-teal);
    font-size: 12px;
    font-weight: 700;
}

.career-process__steps li > strong {
    display: block;
    grid-column: 2;
    grid-row: 1;
    color: var(--color-navy);
    font-size: 20px;
    line-height: 1.35;
}

.career-process__steps li > p {
    display: block;
    width: 100%;
    max-width: 650px;
    grid-column: 2;
    grid-row: 2;
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {
    .careers-intro,
    .careers-profile,
    .career-process {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .careers-intro__content {
        max-width: 760px;
        padding-top: 0;
    }

    .careers-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .careers-benefits article:nth-child(2) {
        border-right: 0;
    }

    .careers-benefits article:nth-child(-n + 2) {
        border-bottom: 1px solid #cadde1;
    }

    .career-work .home-section-heading {
        align-items: start;
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


/* =========================================================
   MOBIEL
========================================================= */

@media (max-width: 700px) {
    .careers-intro,
    .careers-profile,
    .career-process {
        width: 100%;
        padding:
            70px
            var(--page-padding);
        gap: 38px;
    }

    .careers-intro__heading .section-title,
    .careers-profile__content .section-title,
    .career-process__heading h2 {
        font-size: 39px;
        letter-spacing: -2px;
    }

    .careers-benefits {
        padding-inline: var(--page-padding);
        grid-template-columns: 1fr;
    }

    .careers-benefits article {
        min-height: 250px;
        padding: 30px 22px;
        border-right: 0;
        border-bottom: 1px solid #cadde1;
    }

    .careers-benefits article:last-child {
        border-bottom: 0;
    }

    .career-work {
        padding:
            70px
            var(--page-padding);
    }

    .career-work__grid {
        grid-template-columns: 1fr;
    }

    .career-work__grid article {
        min-height: 270px;
        padding: 28px 22px;
    }

    .career-process__steps li {
        grid-template-columns: 42px minmax(0, 1fr);
        column-gap: 13px;
    }

    .career-process__steps li > strong {
        font-size: 19px;
    }
}

/* =========================================================
   LOKALE SEO-PAGINA — HUIZEN EN HET GOOI
========================================================= */


/* =========================================================
   LOKALE INTRODUCTIE
========================================================= */

.local-intro {
    display: grid;
    align-items: start;
    background: var(--color-white);
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(55px, 9vw, 140px);
}

.local-intro__heading,
.local-intro__content {
    min-width: 0;
}

.local-intro__heading .section-title {
    max-width: 690px;
    margin-bottom: 0;
}

.local-intro__content {
    max-width: 700px;
    padding-top: 42px;
}

.local-intro__content p {
    margin: 0 0 22px;
    color: var(--color-muted);
    font-size: 17px;
    line-height: 1.8;
}

.local-intro__content a {
    display: inline-block;
    margin-top: 12px;
    padding-bottom: 7px;
    border-bottom: 1px solid var(--color-teal);
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
}


/* =========================================================
   LOKALE DIENSTEN
========================================================= */

.local-services {
    padding:
        clamp(85px, 9vw, 130px)
        var(--page-padding);
    background: var(--color-navy);
    color: var(--color-white);
}

.local-services__heading {
    display: grid;
    max-width: var(--container-width);
    align-items: end;
    margin: 0 auto 60px;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
    gap: clamp(45px, 8vw, 120px);
}

.local-services__heading > div,
.local-services__heading > p {
    min-width: 0;
}

.local-services__heading h2 {
    max-width: 800px;
    margin: 18px 0 0;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: clamp(42px, 4.5vw, 65px);
    letter-spacing: -2.7px;
    line-height: 1.05;
}

.local-services__heading > p {
    max-width: 520px;
    margin: 0 0 5px;
    color: #b8cdd2;
    font-size: 16px;
    line-height: 1.8;
}

.local-services__grid {
    display: grid;
    max-width: var(--container-width);
    margin-inline: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.local-services__grid article {
    display: flex;
    min-width: 0;
    min-height: 320px;
    flex-direction: column;
    padding: 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: background-color 0.25s ease;
}

.local-services__grid article:hover {
    background: rgba(255, 255, 255, 0.06);
}

.local-services__grid article > span {
    display: block;
    margin-bottom: auto;
    color: #6cc8bc;
    font-size: 12px;
    font-weight: 700;
}

.local-services__grid h3 {
    margin: 50px 0 15px;
    color: var(--color-white);
    font-size: 27px;
    letter-spacing: -0.8px;
    line-height: 1.2;
}

.local-services__grid p {
    max-width: 560px;
    margin: 0 0 25px;
    color: #b8cdd2;
    font-size: 14px;
    line-height: 1.75;
}

.local-services__grid a {
    display: inline-block;
    width: fit-content;
    margin-top: auto;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(108, 200, 188, 0.7);
    color: #75d0c4;
    font-size: 14px;
    font-weight: 700;
}


/* =========================================================
   LOKALE SECTOREN
========================================================= */

.local-sectors {
    background: var(--color-white);
}

.local-sectors .home-section-heading {
    margin-bottom: 55px;
}

.local-sectors__grid {
    display: grid;
    border-top: 1px solid var(--color-border);
    border-left: 1px solid var(--color-border);
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.local-sectors__grid article {
    display: flex;
    min-width: 0;
    min-height: 190px;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background: #f7fbfb;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.local-sectors__grid article:hover {
    background: var(--color-white);
    transform: translateY(-3px);
}

.local-sectors__grid span {
    color: var(--color-teal);
    font-size: 11px;
    font-weight: 700;
}

.local-sectors__grid strong {
    max-width: 320px;
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-size: 20px;
    line-height: 1.35;
}

.local-sectors__link {
    display: inline-block;
    margin-top: 35px;
    padding-bottom: 7px;
    border-bottom: 1px solid var(--color-teal);
    color: var(--color-navy);
    font-size: 15px;
    font-weight: 700;
}


/* =========================================================
   WAAROM PROFOMA
========================================================= */

.local-why {
    display: grid;
    align-items: start;
    padding:
        clamp(85px, 9vw, 130px)
        var(--page-padding);
    background: #edf6f7;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(55px, 9vw, 140px);
}

.local-why__content,
.local-why__list {
    min-width: 0;
}

.local-why .eyebrow--light {
    color: #52717d;
}

.local-why__content h2 {
    max-width: 680px;
    margin: 18px 0 28px;
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-size: clamp(42px, 4.5vw, 64px);
    letter-spacing: -2.7px;
    line-height: 1.05;
}

.local-why__content > p:last-child {
    max-width: 600px;
    margin: 0;
    color: var(--color-muted);
    font-size: 16px;
    line-height: 1.8;
}

.local-why__list {
    border-top: 1px solid #bfd5da;
}

.local-why__list article {
    display: grid;
    align-items: start;
    padding: 28px 0;
    border-bottom: 1px solid #bfd5da;
    grid-template-columns: 55px minmax(0, 1fr);
    gap: 20px;
}

.local-why__list article > span {
    padding-top: 4px;
    color: var(--color-teal);
    font-size: 11px;
    font-weight: 700;
}

.local-why__list h3 {
    margin: 0 0 8px;
    color: var(--color-navy);
    font-size: 21px;
    letter-spacing: -0.5px;
}

.local-why__list p {
    max-width: 580px;
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   WERKGEBIED
========================================================= */

.local-region {
    display: grid;
    align-items: start;
    background: var(--color-white);
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(55px, 9vw, 140px);
}

.local-region__heading,
.local-region__places {
    min-width: 0;
}

.local-region__heading > p:last-child {
    max-width: 620px;
    margin: 25px 0 0;
    color: var(--color-muted);
    font-size: 16px;
    line-height: 1.8;
}

.local-region__places {
    display: grid;
    border-top: 1px solid var(--color-border);
    border-left: 1px solid var(--color-border);
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.local-region__places span {
    display: flex;
    min-height: 95px;
    align-items: center;
    padding: 20px 25px;
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
}

.local-region__places span::before {
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    margin-right: 15px;
    border-radius: 50%;
    background: var(--color-teal);
    content: "";
}


/* =========================================================
   WERKWIJZE
========================================================= */

.local-process {
    display: grid;
    align-items: start;
    padding:
        clamp(85px, 9vw, 130px)
        var(--page-padding);
    background: var(--color-navy);
    color: var(--color-white);
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(55px, 9vw, 140px);
}

.local-process__heading,
.local-process__steps {
    min-width: 0;
}

.local-process__heading h2 {
    max-width: 680px;
    margin: 18px 0 0;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: clamp(42px, 4.5vw, 64px);
    letter-spacing: -2.7px;
    line-height: 1.05;
}

.local-process__steps {
    width: 100%;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    list-style: none;
}

.local-process__steps li {
    display: grid;
    align-items: start;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    grid-template-columns: 55px minmax(0, 1fr);
    gap: 20px;
}

.local-process__steps li > span {
    padding-top: 4px;
    color: #6cc8bc;
    font-size: 11px;
    font-weight: 700;
}

.local-process__steps h3 {
    margin: 0 0 8px;
    color: var(--color-white);
    font-size: 21px;
    letter-spacing: -0.5px;
}

.local-process__steps p {
    max-width: 600px;
    margin: 0;
    color: #b8cdd2;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   VEELGESTELDE VRAGEN
========================================================= */

.local-faq {
    display: grid;
    align-items: start;
    background: var(--color-white);
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(55px, 9vw, 140px);
}

.local-faq__heading,
.local-faq__items {
    min-width: 0;
}

.local-faq__items {
    border-top: 1px solid var(--color-border);
}

.local-faq__items details {
    border-bottom: 1px solid var(--color-border);
}

.local-faq__items summary {
    position: relative;
    padding: 27px 55px 27px 0;
    color: var(--color-navy);
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.4;
    list-style: none;
}

.local-faq__items summary::-webkit-details-marker {
    display: none;
}

.local-faq__items summary::after {
    position: absolute;
    top: 27px;
    right: 5px;
    color: var(--color-teal);
    content: "+";
    font-size: 25px;
    font-weight: 400;
    line-height: 1;
}

.local-faq__items details[open] summary::after {
    content: "−";
}

.local-faq__items details p {
    max-width: 700px;
    margin: 0;
    padding: 0 55px 28px 0;
    color: var(--color-muted);
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   CTA
========================================================= */

.local-cta {
    padding:
        clamp(85px, 9vw, 130px)
        var(--page-padding);
    background:
        linear-gradient(
            135deg,
            var(--color-navy-dark),
            var(--color-navy)
        );
    color: var(--color-white);
    text-align: center;
}

.local-cta .eyebrow {
    justify-content: center;
}

.local-cta h2 {
    max-width: 1000px;
    margin: 18px auto 25px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: clamp(43px, 5vw, 72px);
    letter-spacing: -3px;
    line-height: 1.04;
}

.local-cta > p:not(.eyebrow) {
    max-width: 650px;
    margin: 0 auto;
    color: #b8cdd2;
    font-size: 17px;
    line-height: 1.8;
}

.local-cta__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-top: 38px;
}

.local-cta__actions > a:not(.button) {
    padding-bottom: 7px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    color: var(--color-white);
    font-size: 15px;
    font-weight: 700;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {
    .local-intro,
    .local-why,
    .local-region,
    .local-process,
    .local-faq {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .local-intro__content {
        max-width: 760px;
        padding-top: 0;
    }

    .local-services__heading {
        align-items: start;
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .local-sectors__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .local-why__content,
    .local-region__heading,
    .local-process__heading,
    .local-faq__heading {
        max-width: 760px;
    }
}


/* =========================================================
   MOBIEL
========================================================= */

@media (max-width: 700px) {
    .local-intro,
    .local-sectors,
    .local-region,
    .local-faq {
        padding:
            70px
            var(--page-padding);
    }

    .local-services,
    .local-why,
    .local-process,
    .local-cta {
        padding:
            70px
            var(--page-padding);
    }

    .local-intro,
    .local-why,
    .local-region,
    .local-process,
    .local-faq {
        gap: 38px;
    }

    .local-intro__content p {
        font-size: 15px;
    }

    .local-services__heading {
        margin-bottom: 40px;
    }

    .local-services__heading h2,
    .local-why__content h2,
    .local-process__heading h2 {
        font-size: 39px;
        letter-spacing: -2px;
    }

    .local-services__grid {
        grid-template-columns: 1fr;
    }

    .local-services__grid article {
        min-height: 290px;
        padding: 28px 22px;
    }

    .local-services__grid h3 {
        margin-top: 38px;
        font-size: 23px;
    }

    .local-sectors__grid {
        grid-template-columns: 1fr;
    }

    .local-sectors__grid article {
        min-height: 155px;
        padding: 25px 22px;
    }

    .local-why__list article,
    .local-process__steps li {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 13px;
    }

    .local-region__places {
        grid-template-columns: 1fr;
    }

    .local-region__places span {
        min-height: 75px;
        font-size: 17px;
    }

    .local-faq__items summary {
        padding-right: 42px;
        font-size: 17px;
    }

    .local-faq__items details p {
        padding-right: 0;
        font-size: 14px;
    }

    .local-cta h2 {
        font-size: 40px;
        letter-spacing: -2px;
    }

    .local-cta__actions {
        flex-direction: column;
        gap: 20px;
    }

    .local-cta__actions .button {
        width: 100%;
    }
}

/* =========================================================
   ARBEIDSMIGRANTENHUISVESTING
========================================================= */

.housing-page .page-hero {
    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(320px, 0.75fr);
    gap: clamp(55px, 7vw, 110px);
}

.housing-page .page-hero__content {
    max-width: 880px;
}

.housing-page .page-hero__content h1 {
    max-width: 850px;
    font-size: clamp(50px, 5vw, 78px);
    letter-spacing: -3.6px;
    line-height: 1.02;
}

.housing-page .page-hero__content > p:not(.eyebrow) {
    max-width: 720px;
}

.housing-page .page-hero__aside {
    align-self: center;
}

.housing-page .local-process__heading > p:not(.eyebrow) {
    max-width: 520px;
    color: #b8cdd2;
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 1050px) {
    .housing-page .page-hero {
        grid-template-columns: 1fr;
    }

    .housing-page .page-hero__content {
        max-width: 850px;
    }

    .housing-page .page-hero__aside {
        max-width: 760px;
    }
}

@media (max-width: 700px) {
    .housing-page .page-hero__content h1 {
        font-size: clamp(42px, 12vw, 58px);
        letter-spacing: -2.5px;
    }
}

/* =========================================================
   MOBILE FIX — ARBEIDSMIGRANTENHUISVESTING WERKWIJZE
========================================================= */

@media (max-width: 700px) {

    .housing-page .local-process {
        padding:
            64px
            var(--page-padding);
    }

    .housing-page .local-process__heading h2 {
        max-width: 100%;
        font-size: clamp(36px, 10vw, 48px);
        letter-spacing: -2px;
        line-height: 1.04;
    }

    .housing-page .local-process__heading > p:not(.eyebrow) {
        max-width: 100%;
        font-size: 15px;
        line-height: 1.7;
    }

    .housing-page .local-process__heading .eyebrow {
        margin-bottom: 18px;
        font-size: 11px;
    }

}

@media (max-width: 700px) {
    .housing-page .local-process__heading h2 {
        margin-bottom: 36px;
    }

    .housing-page .local-process__heading > p:not(.eyebrow) {
        margin-top: 0;
    }
}

/* Afstand titel en tekst - personeelshuisvesting */
.housing-page .local-process__heading h2 {
    margin: 18px 0 34px;
}

.housing-page .local-process__heading > p:not(.eyebrow) {
    margin: 0;
}

/* =========================================================
   DIENSTEN — LINKS SPECIALISTISCHE REINIGING
========================================================= */

.specialist-services__links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
    margin-top: 42px;
}

.specialist-services__links .section-link {
    display: inline-flex;
    align-items: center;
    width: fit-content;
}

/* =========================================================
   PROJECTEN — INTERNE LINKS
========================================================= */

.project-case__content > .section-link {
    display: inline-block;
    margin-top: 30px;
}

.project-case__stats + .section-link {
    margin-top: 34px;
}

.recurring-projects__grid .section-link {
    display: inline-block;
    margin-top: 22px;
}

/* =========================================================
   PROJECTEN — ECHTE PROJECTFOTO'S
========================================================= */

.project-case__visuals {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.project-case__image--main {
    margin: 0;
}

.project-case__image--main img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.project-gallery figure {
    margin: 0;
    overflow: hidden;
}

.project-gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {

    .project-gallery {
        grid-template-columns: 1fr;
    }

    .project-case__image--main img {
        min-height: 300px;
    }
}

.project-gallery--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 900px) {
    .project-gallery--two {
        grid-template-columns: 1fr;
    }
}

.home-projects__grid--photos {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.project-card--photo {
    position: relative;
    min-height: 420px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    color: #ffffff;
}

.project-card--photo::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(6, 37, 51, 0.12) 0%,
        rgba(6, 37, 51, 0.82) 100%
    );
    z-index: 0;
}

.project-card--photo > * {
    position: relative;
    z-index: 1;
}

.project-card--photo .project-card__label,
.project-card--photo .project-card__brand,
.project-card--photo .project-card__bottom p,
.project-card--photo .project-card__bottom h3,
.project-card--photo .project-card__stats strong,
.project-card--photo .project-card__stats span,
.project-card--photo .project-card__status {
    color: #ffffff;
}

.project-card--photo .project-card__label {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.project-card--photo .project-card__status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.project-card--photo .project-card__status i {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 999px;
    background: #8fd18f;
    display: inline-block;
}

.project-card--photo .project-card__brand {
    font-size: 3.25rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.02em;
    opacity: 0.92;
}

.project-card--photo .project-card__stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 1.5rem 0 auto;
}

.project-card--photo .project-card__stats div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.project-card--photo .project-card__stats strong {
    font-size: 1.1rem;
    line-height: 1.1;
    font-weight: 700;
}

.project-card--photo .project-card__stats span {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.92;
}

.project-card--photo .project-card__bottom {
    margin-top: 2rem;
}

.project-card--photo .project-card__bottom p {
    margin: 0 0 0.6rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.92;
}

.project-card--photo .project-card__bottom h3 {
    margin: 0;
    font-size: 1.9rem;
    line-height: 1.08;
    max-width: 16ch;
}

@media (max-width: 1100px) {
    .home-projects__grid--photos {
        grid-template-columns: 1fr;
    }

    .project-card--photo {
        min-height: 360px;
    }

    .project-card--photo .project-card__brand {
        font-size: 2.5rem;
    }

    .project-card--photo .project-card__bottom h3 {
        font-size: 1.6rem;
    }
}

/* =========================================================
   HOME REGIONS — MOBILE HORIZONTAL SCROLL
========================================================= */

@media (max-width: 768px) {

    .home-regions {
        display: flex;
        align-items: center;
        gap: 18px;

        overflow-x: auto;
        overflow-y: hidden;

        white-space: nowrap;

        padding: 18px 20px;

        -webkit-overflow-scrolling: touch;

        scroll-snap-type: x proximity;

        scrollbar-width: none;
    }

    .home-regions::-webkit-scrollbar {
        display: none;
    }

    .home-regions a {
        flex: 0 0 auto;
        scroll-snap-align: start;
    }

    .home-regions i {
        flex: 0 0 6px;
        width: 6px;
        height: 6px;
        border-radius: 50%;
    }

}

@media (max-width: 768px) {

    .home-regions {
        display: flex;
        align-items: center;
        gap: 18px;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        padding: 18px 20px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
        scroll-behavior: smooth;
    }

    .home-regions::-webkit-scrollbar {
        display: none;
    }

    .home-regions a,
    .home-regions i {
        flex: 0 0 auto;
    }

}

/* =========================================================
   PROJECTENPAGINA — MOBIELE FIX
========================================================= */

@media (max-width: 768px) {

    /* Ieder project wordt één nette verticale kolom */
    .project-case {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: 32px !important;

        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }


    /* Tekst altijd eerst */
    .project-case__content {
        order: 1 !important;
        width: 100% !important;
        max-width: none !important;
    }


    /* Foto's altijd na de projectinformatie */
    .project-case__visuals,
    .project-case > .project-case__image {
        order: 2 !important;
        width: 100% !important;
        max-width: none !important;
    }


    /* Hoofdfoto */
    .project-case__image {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        margin: 0 !important;
        overflow: hidden;
    }

    .project-case__image img {
        display: block;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;

        aspect-ratio: 4 / 3;
        object-fit: cover;
        object-position: center;
    }


    /* Hoofdfoto bij projecten met meerdere foto's */
    .project-case__image--main {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        margin: 0 !important;
    }

    .project-case__image--main img {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;

        aspect-ratio: 4 / 3;
        object-fit: cover;
    }


    /* Bijschriften */
    .project-case__image figcaption {
        width: 100%;
        padding: 12px 14px;
        box-sizing: border-box;
    }


    /* Meerdere projectfoto's netjes onder hoofdfoto */
    .project-gallery,
    .project-gallery--two {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;

        width: 100% !important;
        margin-top: 10px;
    }

    .project-gallery figure,
    .project-gallery--two figure {
        width: 100% !important;
        height: auto !important;
        min-width: 0 !important;
        margin: 0 !important;
        overflow: hidden;
    }

    .project-gallery img,
    .project-gallery--two img {
        display: block;
        width: 100% !important;
        height: auto !important;

        aspect-ratio: 1 / 1;
        object-fit: cover;
        object-position: center;
    }


    /* Bij een galerij met 3 foto's:
       derde foto wordt over volledige breedte gezet */
    .project-gallery:not(.project-gallery--two) figure:nth-child(3) {
        grid-column: 1 / -1;
    }

    .project-gallery:not(.project-gallery--two) figure:nth-child(3) img {
        aspect-ratio: 16 / 9;
    }


    /* Statistieken ook fatsoenlijk mobiel */
    .project-case__stats {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 16px !important;

        width: 100%;
    }

    .project-case__stats > div {
        min-width: 0;
    }


    /* Lange werkzaamhedenlijst Uden */
    .project-case__work {
        width: 100%;
        box-sizing: border-box;
    }


    /* Voorkomt dat afbeeldingen buiten scherm komen */
    .project-case img,
    .project-case figure,
    .project-case__visuals {
        max-width: 100% !important;
        box-sizing: border-box;
    }

}

/* =========================================================
   PROJECTENPAGINA — EXTRA MOBILE FIX
========================================================= */

@media (max-width: 768px) {

    .project-case {
        overflow: hidden;
    }

    .project-case__content,
    .project-case__visuals,
    .project-case__image {
        min-width: 0 !important;
        max-width: 100% !important;
    }

    .project-case__content h2 {
        font-size: clamp(2.2rem, 10vw, 3.2rem) !important;
        line-height: 1.02 !important;

        max-width: 100% !important;
        width: 100% !important;

        overflow-wrap: anywhere;
        word-break: normal;
        hyphens: auto;
    }

    .project-case__content > p,
    .project-case__status,
    .project-case__note,
    .project-case__work,
    .project-case__stats {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box;
    }

    .project-case__label {
        display: flex;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 8px;

        max-width: 100%;
        line-height: 1.5;
    }

    .project-case__status strong {
        display: block;
        max-width: 100%;
        font-size: 1rem;
        line-height: 1.45;
    }

    .project-case__work {
        padding-left: 20px;
    }

    .project-case__work li {
        padding-left: 6px;
        overflow-wrap: anywhere;
    }

    .project-case__stats {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .project-case__stats strong,
    .project-case__stats span {
        overflow-wrap: anywhere;
    }

}

/* =========================================================
   FORMULIER VELDEN — NETTER EN GELIJK
   Laat bestaande pagina-layout volledig intact
========================================================= */

/* twee kolommen altijd exact gelijk */
.quote-form .application-form,
.location-form .application-form,
.contact-form-section .application-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
}

/* ieder veld mag zijn kolom volledig gebruiken */
.quote-form .application-form__field,
.location-form .application-form__field,
.contact-form-section .application-form__field {
    width: 100%;
    min-width: 0;
}

/* volledige breedte velden blijven volledige breedte */
.quote-form .application-form__field--full,
.location-form .application-form__field--full,
.contact-form-section .application-form__field--full {
    grid-column: 1 / -1;
}

/* alle standaard velden exact dezelfde hoogte */
.quote-form .application-form input:not([type="submit"]):not([type="checkbox"]),
.quote-form .application-form select,
.location-form .application-form input:not([type="submit"]):not([type="checkbox"]),
.location-form .application-form select,
.contact-form-section .application-form input:not([type="submit"]):not([type="checkbox"]),
.contact-form-section .application-form select {
    width: 100%;
    height: 56px;
    min-height: 56px;
    padding: 15px 16px;
    box-sizing: border-box;
}

/* Contact Form 7 wrapper altijd volledige breedte */
.quote-form .wpcf7-form-control-wrap,
.location-form .wpcf7-form-control-wrap,
.contact-form-section .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

/* textarea's gelijk */
.quote-form .application-form textarea,
.location-form .application-form textarea,
.contact-form-section .application-form textarea {
    width: 100%;
    min-height: 150px;
    padding: 15px 16px;
    box-sizing: border-box;
    resize: vertical;
}

/* labels overal dezelfde afstand */
.quote-form .application-form label,
.location-form .application-form label,
.contact-form-section .application-form label {
    display: block;
    margin: 0;
}

/* ruimte tussen label en veld gelijk */
.quote-form .application-form .wpcf7-form-control-wrap,
.location-form .application-form .wpcf7-form-control-wrap,
.contact-form-section .application-form .wpcf7-form-control-wrap {
    margin-top: 9px;
}

/* safari select netjes even groot */
.quote-form .application-form select,
.location-form .application-form select,
.contact-form-section .application-form select {
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
}

/* mobiel weer één kolom */
@media (max-width: 700px) {

    .quote-form .application-form,
    .location-form .application-form,
    .contact-form-section .application-form {
        grid-template-columns: 1fr;
    }

}

/* =========================================================
   OPDRACHTGEVERS — AUTOMATISCHE MARQUEE
========================================================= */

.client-marquee {
    overflow: hidden;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background: var(--color-white);
}

.client-marquee__heading {
    padding: 24px var(--page-padding) 20px;
    text-align: center;
}

.client-marquee__heading p {
    margin: 0;
    color: #72868e;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.client-marquee__viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 0 28px;
}

/* subtiele fade links/rechts */
.client-marquee__viewport::before,
.client-marquee__viewport::after {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: clamp(30px, 6vw, 110px);
    pointer-events: none;
    content: "";
}

.client-marquee__viewport::before {
    left: 0;
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        rgba(255, 255, 255, 0) 100%
    );
}

.client-marquee__viewport::after {
    right: 0;
    background: linear-gradient(
        270deg,
        #ffffff 0%,
        rgba(255, 255, 255, 0) 100%
    );
}

.client-marquee__track {
    display: flex;
    width: max-content;
    animation: profoma-client-marquee 55s linear infinite;
}

.client-marquee__group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 0;
}

.client-marquee__group span {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    padding: 0 30px;
    color: #667d86;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.client-marquee__group span::after {
    position: absolute;
    right: -2px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-teal);
    content: "";
    opacity: 0.7;
}

@keyframes profoma-client-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* pauzeren als iemand er met muis overheen gaat */
.client-marquee__viewport:hover .client-marquee__track {
    animation-play-state: paused;
}

/* mobiel iets compacter */
@media (max-width: 700px) {

    .client-marquee__heading {
        padding: 20px 22px 17px;
    }

    .client-marquee__heading p {
        font-size: 10px;
        line-height: 1.5;
    }

    .client-marquee__viewport {
        padding-bottom: 22px;
    }

    .client-marquee__group span {
        padding: 0 20px;
        font-size: 12px;
    }

    .client-marquee__track {
        animation-duration: 42s;
    }

}

/* toegankelijkheid */
@media (prefers-reduced-motion: reduce) {

    .client-marquee__track {
        animation: none;
    }

}

/* =========================================================
   PROJECTEN — ERVARING PER TYPE OPDRACHT
========================================================= */

.project-experience {
    background: #f4f8f9;
}

.project-experience__grid {
    display: grid;
    width: 100%;
    max-width: var(--container-width);
    margin-inline: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--color-border);
    border-left: 1px solid var(--color-border);
}

.project-experience__card {
    display: flex;
    min-height: 610px;
    flex-direction: column;
    padding: 34px;
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background: #ffffff;
}

.project-experience__number {
    display: block;
    margin-bottom: 40px;
    color: var(--color-teal);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.project-experience__card .eyebrow {
    margin-bottom: 15px;
}

.project-experience__card h3 {
    max-width: 360px;
    margin-bottom: 20px;
    color: var(--color-navy);
    font-size: 30px;
    letter-spacing: -1.3px;
}

.project-experience__card > p:not(.eyebrow) {
    max-width: 390px;
    margin-bottom: 28px;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.7;
}

.project-experience__card ul {
    margin: 0 0 34px;
    padding: 24px 0 0;
    border-top: 1px solid var(--color-border);
    list-style: none;
}

.project-experience__card li {
    position: relative;
    padding: 6px 0 6px 17px;
    color: var(--color-text);
    font-size: 13px;
    line-height: 1.5;
}

.project-experience__card li::before {
    position: absolute;
    top: 14px;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-teal);
    content: "";
}

.project-experience__card .section-link {
    margin-top: auto;
    align-self: flex-start;
}

@media (max-width: 1000px) {

    .project-experience__grid {
        grid-template-columns: 1fr;
    }

    .project-experience__card {
        min-height: 0;
    }

}

@media (max-width: 700px) {

    .project-experience__card {
        padding: 28px 22px;
    }

    .project-experience__card h3 {
        font-size: 26px;
    }

}

/* =========================================================
   PROJECTEN — ERVARING PER TYPE OPDRACHT
========================================================= */

.project-experience {
    background: #f4f8f9;
}

.project-experience__grid {
    display: grid;
    width: 100%;
    max-width: var(--container-width);
    margin-inline: auto;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    border-top: 1px solid var(--color-border);
    border-left: 1px solid var(--color-border);
}

.project-experience__card {
    display: flex;
    min-width: 0;
    min-height: 600px;
    flex-direction: column;

    padding: clamp(30px, 3.5vw, 48px);

    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);

    background: var(--color-white);
}

.project-experience__number {
    display: block;

    margin-bottom: 40px;

    color: var(--color-teal);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.project-experience__card .eyebrow {
    margin-bottom: 15px;
}

.project-experience__card h3 {
    max-width: 460px;

    margin: 0 0 20px;

    color: var(--color-navy);

    font-size: clamp(28px, 2.5vw, 38px);
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.project-experience__card > p:not(.eyebrow) {
    max-width: 520px;

    margin-bottom: 30px;

    color: var(--color-muted);

    font-size: 15px;
    line-height: 1.75;
}

.project-experience__card ul {
    margin: 0 0 35px;
    padding: 25px 0 0;

    border-top: 1px solid var(--color-border);

    list-style: none;
}

.project-experience__card li {
    position: relative;

    padding: 7px 0 7px 18px;

    color: var(--color-text);

    font-size: 13px;
    line-height: 1.5;
}

.project-experience__card li::before {
    position: absolute;

    top: 15px;
    left: 0;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--color-teal);

    content: "";
}

.project-experience__card .section-link {
    align-self: flex-start;
    margin-top: auto;
}


/* =========================================================
   SUBTIELE VARIATIE PER CATEGORIE
========================================================= */

.project-experience__card:nth-child(2) {
    background: #fbfcfc;
}

.project-experience__card:nth-child(3) {
    background: #edf7f6;
}

.project-experience__card--recreation {
    background: #f5f8f2;
}

.project-experience__card--recreation .project-experience__number {
    color: var(--color-green);
}

.project-experience__card--recreation .eyebrow::before {
    background: var(--color-green);
}

.project-experience__card--recreation li::before {
    background: var(--color-green);
}


/* =========================================================
   PROJECTEN — TABLET
========================================================= */

@media (max-width: 1000px) {

    .project-experience__grid {
        grid-template-columns: 1fr;
    }

    .project-experience__card {
        min-height: 0;
    }

}


/* =========================================================
   PROJECTEN — MOBIEL
========================================================= */

@media (max-width: 700px) {

    .project-experience__card {
        min-height: 0;
        padding: 32px 22px;
    }

    .project-experience__number {
        margin-bottom: 28px;
    }

    .project-experience__card h3 {
        max-width: 100%;
        font-size: 28px;
        letter-spacing: -1px;
    }

    .project-experience__card > p:not(.eyebrow) {
        font-size: 14px;
    }

    .project-experience__card ul {
        margin-bottom: 30px;
    }

}

/* =========================================================
   SCHOONMAAK RECREATIEPARKEN
========================================================= */

.recreation-intro {
    display: grid;
    width: 100%;
    max-width: var(--container-width);
    margin-inline: auto;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(55px, 8vw, 120px);
    align-items: center;
}

.recreation-intro__content > p:not(.eyebrow) {
    max-width: 620px;
    color: var(--color-muted);
    font-size: 16px;
}

.recreation-intro__facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--color-border);
    border-left: 1px solid var(--color-border);
}

.recreation-intro__facts article {
    display: flex;
    min-height: 210px;
    flex-direction: column;
    padding: 28px;
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background: var(--color-light);
}

.recreation-intro__facts article > span {
    color: var(--color-teal);
    font-size: 10px;
    font-weight: 700;
}

.recreation-intro__facts strong {
    margin-top: auto;
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-size: 22px;
}

.recreation-intro__facts p {
    margin: 8px 0 0;
    color: var(--color-muted);
    font-size: 13px;
}


/* =========================================================
   RECREATIE — WERKZAAMHEDEN
========================================================= */

.recreation-services {
    background: #f3f8f9;
}

.recreation-services__grid {
    display: grid;
    width: 100%;
    max-width: var(--container-width);
    margin-inline: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--color-border);
    border-left: 1px solid var(--color-border);
}

.recreation-services__grid article {
    display: flex;
    min-height: 440px;
    flex-direction: column;
    padding: clamp(30px, 4vw, 48px);
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background: var(--color-white);
}

.recreation-services__grid article > span {
    margin-bottom: 40px;
    color: var(--color-teal);
    font-size: 11px;
    font-weight: 700;
}

.recreation-services__grid h3 {
    max-width: 430px;
    margin-bottom: 18px;
    color: var(--color-navy);
    font-size: clamp(28px, 2.6vw, 38px);
    letter-spacing: -1.4px;
}

.recreation-services__grid article > p {
    max-width: 520px;
    margin-bottom: 25px;
    color: var(--color-muted);
    font-size: 14px;
}

.recreation-services__grid ul {
    margin: auto 0 0;
    padding: 24px 0 0;
    border-top: 1px solid var(--color-border);
    list-style: none;
}

.recreation-services__grid li {
    position: relative;
    padding: 6px 0 6px 17px;
    font-size: 13px;
}

.recreation-services__grid li::before {
    position: absolute;
    top: 14px;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-teal);
    content: "";
}


/* =========================================================
   RECREATIE — WISSELDAGEN
========================================================= */

.recreation-switch {
    display: grid;
    min-height: 600px;
    background: var(--color-navy);
    color: var(--color-white);
    grid-template-columns: 1.25fr 0.75fr;
}

.recreation-switch__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding:
        clamp(75px, 8vw, 120px)
        var(--page-padding);
}

.recreation-switch__content h2 {
    max-width: 760px;
    margin: 15px 0 25px;
    color: var(--color-white);
    font-size: clamp(44px, 5vw, 70px);
    letter-spacing: -3px;
}

.recreation-switch__content > p:not(.eyebrow) {
    max-width: 680px;
    color: #b5cbd1;
    font-size: 17px;
}

.recreation-switch__points {
    display: grid;
    margin-top: 45px;
    border-top: 1px solid rgba(255,255,255,0.18);
    grid-template-columns: repeat(3, 1fr);
}

.recreation-switch__points div {
    padding: 25px 20px 0 0;
}

.recreation-switch__points strong {
    display: block;
    margin-bottom: 7px;
    color: var(--color-white);
    font-family: var(--font-heading);
}

.recreation-switch__points span {
    display: block;
    max-width: 190px;
    color: #aac2c8;
    font-size: 12px;
}

.recreation-switch__number {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #146078;
    color: var(--color-white);
}

.recreation-switch__number span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.recreation-switch__number strong {
    margin-top: 15px;
    font-size: clamp(90px, 12vw, 180px);
    line-height: 1;
}


/* =========================================================
   RECREATIE — OPDRACHTGEVERS
========================================================= */

.recreation-clients {
    background: var(--color-white);
}

.recreation-clients__grid {
    display: grid;
    width: 100%;
    max-width: var(--container-width);
    margin-inline: auto;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-top: 1px solid var(--color-border);
    border-left: 1px solid var(--color-border);
}

.recreation-clients__grid article {
    display: flex;
    min-height: 220px;
    flex-direction: column;
    padding: 26px;
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.recreation-clients__grid span {
    color: var(--color-teal);
    font-size: 10px;
}

.recreation-clients__grid strong {
    margin-top: auto;
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-size: 19px;
    line-height: 1.3;
}


/* =========================================================
   RECREATIE — PROCES
========================================================= */

.recreation-process {
    background: #f3f8f9;
}

.recreation-process__steps {
    display: grid;
    width: 100%;
    max-width: var(--container-width);
    margin-inline: auto;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--color-border);
    border-left: 1px solid var(--color-border);
}

.recreation-process__steps article {
    display: flex;
    min-height: 300px;
    flex-direction: column;
    padding: 30px;
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background: var(--color-white);
}

.recreation-process__steps span {
    color: var(--color-teal);
    font-size: 10px;
    font-weight: 700;
}

.recreation-process__steps h3 {
    margin: auto 0 12px;
    color: var(--color-navy);
    font-size: 22px;
}

.recreation-process__steps p {
    margin: 0;
    color: var(--color-muted);
    font-size: 13px;
}


/* =========================================================
   RECREATIE — GERELATEERDE DIENSTEN
========================================================= */

.recreation-related {
    background: var(--color-white);
}

.recreation-related__grid {
    display: grid;
    width: 100%;
    max-width: var(--container-width);
    margin-inline: auto;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.recreation-related__grid > a {
    display: flex;
    min-height: 330px;
    flex-direction: column;
    padding: 30px;
    background: var(--color-light);
    transition:
        transform 0.2s ease,
        background-color 0.2s ease;
}

.recreation-related__grid > a:hover {
    background: #e4f1f2;
    transform: translateY(-4px);
}

.recreation-related__grid > a > span {
    color: var(--color-teal);
    font-size: 10px;
}

.recreation-related__grid h3 {
    max-width: 300px;
    margin: auto 0 15px;
    color: var(--color-navy);
    font-size: 27px;
}

.recreation-related__grid p {
    color: var(--color-muted);
    font-size: 14px;
}

.recreation-related__grid strong {
    margin-top: 20px;
    color: var(--color-navy);
    font-size: 13px;
}


/* =========================================================
   RECREATIE — TABLET
========================================================= */

@media (max-width: 1050px) {

    .recreation-intro {
        grid-template-columns: 1fr;
    }

    .recreation-switch {
        grid-template-columns: 1fr;
    }

    .recreation-switch__number {
        min-height: 260px;
    }

    .recreation-clients__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .recreation-process__steps {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   RECREATIE — MOBIEL
========================================================= */

@media (max-width: 700px) {

    .recreation-intro__facts,
    .recreation-services__grid,
    .recreation-clients__grid,
    .recreation-process__steps,
    .recreation-related__grid {
        grid-template-columns: 1fr;
    }

    .recreation-intro__facts article {
        min-height: 170px;
    }

    .recreation-services__grid article {
        min-height: 0;
        padding: 30px 22px;
    }

    .recreation-switch__content {
        padding:
            65px
            22px;
    }

    .recreation-switch__content h2 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .recreation-switch__points {
        grid-template-columns: 1fr;
    }

    .recreation-switch__points div {
        padding: 20px 0;
        border-bottom: 1px solid rgba(255,255,255,0.12);
    }

    .recreation-switch__number {
        min-height: 200px;
    }

    .recreation-clients__grid article {
        min-height: 160px;
    }

    .recreation-process__steps article {
        min-height: 220px;
    }

    .recreation-related__grid > a {
        min-height: 270px;
    }

}

/* =========================================================
   DIENSTEN — RECREATIEPARKEN
========================================================= */

.service-detail--recreation {
    background: #f4f8ef;
}

.service-detail--recreation .service-detail__number {
    color: var(--color-green);
}

.service-detail--recreation .eyebrow::before {
    background: var(--color-green);
}

.service-detail--recreation .service-detail__list li::before {
    background: var(--color-green);
}

.home-services__grid {
    display: grid;
    width: 100%;
    max-width: var(--container-width);
    margin-inline: auto;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.service-card--recreation {
    background: #5f7f4f;
}

/* =====================================================
   PROJECTEN — COMPACTERE WEERGAVE
===================================================== */

/* Complete projectblokken iets minder hoog */
.project-case {
    min-height: 0;
}

/* Minder verticale ruimte in de tekstkolom */
.project-case__content {
    padding-top: clamp(55px, 6vw, 85px);
    padding-bottom: clamp(55px, 6vw, 85px);
}

/* Projecttitels iets kleiner */
.project-case__content h2 {
    font-size: clamp(42px, 4.6vw, 68px);
    line-height: 1.04;
}

/* Minder ruimte onder titel */
.project-case__content h2 {
    margin-bottom: 24px;
}

/* Lopende tekst compacter */
.project-case__content > p {
    margin-bottom: 24px;
    line-height: 1.65;
}

/* Projectafbeeldingen lager */
.project-case__image--main img {
    min-height: 0;
    height: clamp(430px, 48vw, 620px);
    object-fit: cover;
}

/* Statistieken compacter */
.project-case__stats {
    margin-top: 28px;
}

.project-case__stats > div {
    padding: 20px 18px;
}

/* Link minder ver van statistieken */
.project-case__stats + .section-link {
    margin-top: 24px;
}

/* Galleries onder hoofdafbeelding kleiner */
.project-gallery {
    gap: 10px;
}

.project-gallery img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .project-case__content {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .project-case__content h2 {
        font-size: clamp(38px, 7vw, 54px);
    }

    .project-case__image--main img {
        height: 480px;
    }

}


/* =====================================================
   MOBIEL
===================================================== */

@media (max-width: 700px) {

    .project-case__content {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .project-case__content h2 {
        font-size: 36px;
        line-height: 1.06;
        margin-bottom: 18px;
    }

    .project-case__content > p {
        margin-bottom: 20px;
    }

    .project-case__image--main img {
        height: 320px;
    }

    .project-case__stats {
        margin-top: 22px;
    }

    .project-case__stats > div {
        padding: 16px 14px;
    }

    .project-gallery {
        gap: 8px;
    }

}

/* =========================================================
   PROFOMA — KOSTEN ZAKELIJKE SCHOONMAAK
   COMPLETE PAGINA + LEAD CALCULATOR
========================================================= */


/* =========================================================
   HERO
========================================================= */

.cost-hero {
    width: 100%;
    padding: clamp(80px, 8vw, 120px) var(--page-padding);
    background: #f3f8f8;
    box-sizing: border-box;
}

.cost-hero__inner {
    display: grid;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .65fr);
    gap: clamp(50px, 7vw, 110px);
    align-items: center;
}

.cost-hero__content {
    min-width: 0;
}

.cost-hero h1 {
    max-width: 850px;
    margin: 16px 0 28px;
    color: var(--color-navy);
    font-size: clamp(54px, 6vw, 88px);
    line-height: .98;
    letter-spacing: -4px;
}

.cost-hero__intro {
    max-width: 720px;
    margin: 0;
    color: var(--color-muted);
    font-size: 18px;
    line-height: 1.7;
}

.cost-hero__points {
    display: flex;
    margin-top: 34px;
    flex-wrap: wrap;
    gap: 12px 28px;
}

.cost-hero__points span {
    color: var(--color-navy);
    font-size: 13px;
    font-weight: 600;
}

.cost-hero__aside {
    padding: clamp(34px, 4vw, 52px);
    background: var(--color-navy);
    color: #fff;
}

.cost-hero__aside-label {
    display: block;
    margin-bottom: 32px;
    color: #70c2b8;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.cost-hero__aside strong {
    display: block;
    margin-bottom: 20px;
    color: #fff;
    font-size: clamp(29px, 2.8vw, 40px);
    line-height: 1.08;
    letter-spacing: -1px;
}

.cost-hero__aside p {
    margin: 0;
    color: rgba(255,255,255,.67);
    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   CALCULATOR SECTION
========================================================= */

.cleaning-calculator {
    background: #fff;
}

.cleaning-calculator__heading {
    display: grid;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto 55px;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .7fr);
    gap: clamp(40px, 7vw, 100px);
    align-items: end;
}

.cleaning-calculator__heading .section-intro {
    margin-bottom: 0;
}

.cleaning-calculator__layout {
    position: relative;
    display: grid;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
    align-items: stretch;
}


/* =========================================================
   STAP 1
========================================================= */

.cleaning-calculator__form {
    display: grid;
    min-width: 0;
    padding: clamp(35px, 4vw, 55px);
    border: 1px solid var(--color-border);
    background: #fff;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
}

.calculator-step-heading {
    grid-column: 1 / -1;
    margin-bottom: 8px;
}

.calculator-step-heading span,
.calculator-step-label {
    display: block;
    margin-bottom: 10px;
    color: var(--color-teal);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.calculator-step-heading h3 {
    margin: 0;
    color: var(--color-navy);
    font-size: clamp(28px, 3vw, 36px);
    line-height: 1.1;
}


/* =========================================================
   FORM VELDEN
========================================================= */

.calculator-field {
    min-width: 0;
}

.calculator-field--full {
    grid-column: 1 / -1;
}

.calculator-field > label {
    display: block;
    margin: 0 0 9px;
    color: var(--color-navy);
    font-size: 12px;
    font-weight: 700;
}

.calculator-field input[type="text"],
.calculator-field input[type="email"],
.calculator-field input[type="tel"],
.calculator-field input[type="number"],
.calculator-field select {
    display: block;
    width: 100%;
    height: 56px;
    min-height: 56px;
    margin: 0;
    padding: 0 16px;
    border: 1px solid #cbd9dc;
    border-radius: 0;
    outline: none;
    background: #fff;
    color: var(--color-navy);
    font-family: inherit;
    font-size: 14px;
    box-sizing: border-box;
    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.calculator-field input:focus,
.calculator-field select:focus {
    border-color: var(--color-teal);
    box-shadow: 0 0 0 2px rgba(77, 169, 157, .08);
}

.calculator-field select {
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    padding-right: 42px;
    background-image:
        linear-gradient(45deg, transparent 50%, #45616d 50%),
        linear-gradient(135deg, #45616d 50%, transparent 50%);
    background-position:
        calc(100% - 20px) 24px,
        calc(100% - 15px) 24px;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.calculator-input-unit {
    position: relative;
}

.calculator-input-unit input {
    padding-right: 55px !important;
}

.calculator-input-unit > span {
    position: absolute;
    top: 50%;
    right: 17px;
    color: var(--color-muted);
    font-size: 13px;
    transform: translateY(-50%);
    pointer-events: none;
}


/* =========================================================
   EXTRA OPTIES
========================================================= */

.calculator-options {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.calculator-options label {
    display: flex;
    min-height: 78px;
    margin: 0;
    padding: 14px;
    border: 1px solid var(--color-border);
    background: #f8fbfb;
    cursor: pointer;
    gap: 10px;
    align-items: center;
    box-sizing: border-box;
}

.calculator-options input[type="checkbox"] {
    width: 17px;
    height: 17px;
    margin: 0;
    flex: 0 0 auto;
    accent-color: var(--color-teal);
}

.calculator-options span {
    color: var(--color-text);
    font-size: 12px;
    line-height: 1.45;
}

.calculator-button {
    display: flex;
    width: 100%;
    min-height: 58px;
    justify-content: center;
    align-items: center;
}


/* =========================================================
   STAP 2 — LEAD PANEL
========================================================= */

.calculator-lead {
    display: flex;
    min-width: 0;
    min-height: 100%;
    padding: clamp(35px, 4vw, 55px);
    flex-direction: column;
    background: var(--color-navy);
    color: #fff;
    box-sizing: border-box;

    opacity: .42;
    pointer-events: none;
    transition: opacity .3s ease;
}

.calculator-lead--visible {
    opacity: 1;
    pointer-events: auto;
}

.calculator-lead__intro h3 {
    max-width: 480px;
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.05;
    letter-spacing: -1.2px;
}

.calculator-lead__intro p {
    max-width: 490px;
    margin: 0;
    color: rgba(255,255,255,.67);
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   LEAD PREVIEW
========================================================= */

.calculator-lead__preview {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,.15);
    border-bottom: 1px solid rgba(255,255,255,.15);
}

.calculator-lead__preview > span {
    display: block;
    margin-bottom: 7px;
    color: rgba(255,255,255,.5);
    font-size: 11px;
}

.calculator-lead__preview strong {
    display: block;
    margin-bottom: 5px;
    color: #fff;
    font-size: 20px;
}

.calculator-lead__preview small {
    color: #75c8bd;
    font-size: 12px;
}


/* =========================================================
   LEAD VELDEN
========================================================= */

.calculator-lead__fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 15px;
}

.calculator-lead .calculator-field > label {
    color: #fff;
}

.calculator-lead .calculator-field input {
    width: 100%;
    height: 55px;
    min-height: 55px;
    padding: 0 15px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 0;
    outline: none;
    background: rgba(255,255,255,.07);
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    box-sizing: border-box;
}

.calculator-lead .calculator-field input:focus {
    border-color: #75c8bd;
    box-shadow: none;
    background: rgba(255,255,255,.1);
}

.calculator-lead .calculator-field input::placeholder {
    color: rgba(255,255,255,.4);
}

.calculator-lead__privacy {
    margin: 22px 0;
    color: rgba(255,255,255,.5);
    font-size: 10px;
    line-height: 1.7;
}

.calculator-lead__privacy a {
    color: #fff;
    text-decoration: underline;
}

.calculator-lead__submit {
    display: flex;
    width: 100%;
    min-height: 58px;
    margin-top: auto;
    justify-content: center;
    align-items: center;
}


/* =========================================================
   HONEYPOT
========================================================= */

.calculator-honeypot {
    position: absolute !important;
    top: auto !important;
    left: -99999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}


/* =========================================================
   ERROR
========================================================= */

.calculator-message {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto 25px;
    padding: 16px 20px;
    box-sizing: border-box;
    font-size: 13px;
}

.calculator-message--error {
    border: 1px solid #e4bcbc;
    background: #fff4f4;
    color: #842b2b;
}


/* =========================================================
   RESULTAAT NA VERSTUREN
========================================================= */

.calculator-success {
    display: grid;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
}

.calculator-success__content {
    padding: clamp(40px, 5vw, 70px);
    border: 1px solid var(--color-border);
    background: #f2f7f7;
}

.calculator-success__content h2 {
    margin: 15px 0 20px;
    color: var(--color-navy);
    font-size: clamp(40px, 4vw, 60px);
    line-height: 1;
    letter-spacing: -2px;
}

.calculator-success__content > p:not(.eyebrow) {
    max-width: 480px;
    margin: 0;
    color: var(--color-muted);
    font-size: 15px;
    line-height: 1.75;
}

.calculator-success__result {
    display: flex;
    padding: clamp(40px, 5vw, 70px);
    flex-direction: column;
    background: var(--color-navy);
    color: #fff;
}

.calculator-result__label {
    display: block;
    margin-bottom: 10px;
    color: rgba(255,255,255,.6);
    font-size: 12px;
}

.calculator-result__price {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    align-items: baseline;
}

.calculator-result__price > span {
    font-size: 24px;
}

.calculator-result__price strong {
    color: #fff;
    font-size: clamp(44px, 5vw, 68px);
    line-height: 1;
    letter-spacing: -2px;
}

.calculator-result__price small {
    margin: 0 4px;
    color: rgba(255,255,255,.5);
    font-size: 11px;
}

.calculator-result__vat {
    display: block;
    margin-top: 10px;
    color: rgba(255,255,255,.55);
    font-size: 11px;
}

.calculator-result__details {
    margin: 40px 0 28px;
    border-top: 1px solid rgba(255,255,255,.15);
}

.calculator-result__details > div {
    display: flex;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.15);
    justify-content: space-between;
    gap: 20px;
}

.calculator-result__details span {
    color: rgba(255,255,255,.55);
    font-size: 11px;
}

.calculator-result__details strong {
    color: #fff;
    text-align: right;
    font-size: 12px;
}

.calculator-result__disclaimer {
    margin: 0 0 28px;
    color: rgba(255,255,255,.58);
    font-size: 11px;
    line-height: 1.7;
}

.calculator-success__actions {
    display: flex;
    margin-top: auto;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.calculator-success__location {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}


/* =========================================================
   PRIJSFACTOREN
========================================================= */

.cost-factors {
    background: #f3f8f8;
}

.cost-factors__grid {
    display: grid;
    width: 100%;
    max-width: var(--container-width);
    margin: 55px auto 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cost-factors__grid article {
    min-height: 285px;
    padding: 30px;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    border-left: 1px solid var(--color-border);
    background: #fff;
    box-sizing: border-box;
}

.cost-factors__grid article:last-child {
    border-right: 1px solid var(--color-border);
}

.cost-factors__grid article > span {
    display: block;
    margin-bottom: 55px;
    color: var(--color-teal);
    font-size: 10px;
    font-weight: 700;
}

.cost-factors__grid h3 {
    margin: 0 0 14px;
    color: var(--color-navy);
    font-size: 22px;
}

.cost-factors__grid p {
    margin: 0;
    color: var(--color-muted);
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   PROCES
========================================================= */

.cost-process {
    display: grid;
    width: 100%;
    padding: clamp(80px, 8vw, 115px) var(--page-padding);
    background: var(--color-navy);
    color: #fff;
    grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
    gap: clamp(50px, 7vw, 100px);
    box-sizing: border-box;
}

.cost-process__intro {
    max-width: 470px;
}

.cost-process__intro h2 {
    margin: 15px 0 0;
    color: #fff;
    font-size: clamp(42px, 4.5vw, 64px);
    line-height: 1;
    letter-spacing: -2px;
}

.cost-process__steps article {
    display: grid;
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,.15);
    grid-template-columns: 55px minmax(0, 1fr);
    gap: 10px;
}

.cost-process__steps article:last-child {
    border-bottom: 1px solid rgba(255,255,255,.15);
}

.cost-process__steps > article > span {
    color: #75c8bd;
    font-size: 10px;
    font-weight: 700;
}

.cost-process__steps h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 21px;
}

.cost-process__steps p {
    max-width: 600px;
    margin: 0;
    color: rgba(255,255,255,.63);
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   SEO CONTENT
========================================================= */

.cost-content__grid {
    display: grid;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(50px, 8vw, 120px);
}

.cost-content__text p {
    margin: 0 0 22px;
    color: var(--color-muted);
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   FAQ
========================================================= */

.cost-faq {
    background: #f3f8f8;
}

.cost-faq__heading,
.cost-faq__list {
    width: 100%;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

.cost-faq__heading {
    margin-bottom: 45px;
}

.cost-faq__list details {
    border-top: 1px solid var(--color-border);
}

.cost-faq__list details:last-child {
    border-bottom: 1px solid var(--color-border);
}

.cost-faq__list summary {
    position: relative;
    padding: 24px 45px 24px 0;
    cursor: pointer;
    color: var(--color-navy);
    font-size: 16px;
    font-weight: 700;
    list-style: none;
}

.cost-faq__list summary::-webkit-details-marker {
    display: none;
}

.cost-faq__list summary::after {
    position: absolute;
    top: 22px;
    right: 4px;
    content: "+";
    color: var(--color-teal);
    font-size: 22px;
}

.cost-faq__list details[open] summary::after {
    content: "−";
}

.cost-faq__list details p {
    max-width: 760px;
    margin: 0;
    padding: 0 0 25px;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .cost-hero__inner,
    .cleaning-calculator__heading,
    .cleaning-calculator__layout,
    .calculator-success,
    .cost-process,
    .cost-content__grid {
        grid-template-columns: 1fr;
    }

    .cost-hero__aside {
        max-width: 650px;
    }

    .calculator-lead {
        opacity: 1;
    }

    .cost-factors__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cost-factors__grid article {
        border-right: 1px solid var(--color-border);
    }

}


/* =========================================================
   MOBIEL
========================================================= */

@media (max-width: 700px) {

    .cost-hero {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .cost-hero h1 {
        font-size: 46px;
        letter-spacing: -2px;
    }

    .cost-hero__intro {
        font-size: 16px;
    }

    .cost-hero__points {
        flex-direction: column;
        gap: 9px;
    }

    .cleaning-calculator__heading {
        margin-bottom: 35px;
        gap: 20px;
    }

    .cleaning-calculator__form {
        padding: 28px 20px;
        grid-template-columns: 1fr;
    }

    .calculator-field--full {
        grid-column: auto;
    }

    .calculator-options {
        grid-template-columns: 1fr;
    }

    .calculator-lead {
        padding: 30px 20px;
    }

    .calculator-lead__fields {
        grid-template-columns: 1fr;
    }

    .calculator-success__content,
    .calculator-success__result {
        padding: 35px 22px;
    }

    .calculator-result__price strong {
        font-size: 43px;
    }

    .cost-factors__grid {
        grid-template-columns: 1fr;
    }

    .cost-factors__grid article {
        min-height: 0;
        padding: 25px 22px;
    }

    .cost-factors__grid article > span {
        margin-bottom: 30px;
    }

    .cost-process {
        padding-left: 22px;
        padding-right: 22px;
        gap: 45px;
    }

    .cost-process__intro h2 {
        font-size: 40px;
    }

}

/* =====================================================
   KOSTENCALCULATOR LINKS — DEFINITIEVE STYLING
===================================================== */

/* Homepage */
.home-services__links {
    display: flex;
    margin-top: 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.home-services__links .section-link {
    margin: 0;
}

/* Calculator-link op homepage */
.home-services__links .section-link:nth-child(2) {
    display: inline-flex;
    min-height: 48px;
    padding: 13px 20px;
    border: 1px solid var(--color-teal);
    background: rgba(77, 169, 157, 0.08);
    align-items: center;
}

.home-services__links .section-link:nth-child(2):hover {
    border-color: var(--color-blue);
    background: rgba(22, 152, 195, 0.10);
    color: var(--color-blue);
}


/* =====================================================
   DIENSTENPAGINA
===================================================== */

.service-detail__links {
    display: flex;
    margin-top: 38px;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
}

.service-detail__links .section-link {
    margin: 0;
}

/* Calculator-link op dienstenpagina */
.service-detail__links .section-link:nth-child(2) {
    display: inline-flex;
    min-height: 48px;
    padding: 13px 20px;
    border: 1px solid var(--color-teal);
    background: rgba(77, 169, 157, 0.08);
    align-items: center;
}

.service-detail__links .section-link:nth-child(2):hover {
    border-color: var(--color-blue);
    background: rgba(22, 152, 195, 0.10);
    color: var(--color-blue);
}


/* =====================================================
   MOBIEL
===================================================== */

@media (max-width: 700px) {

    .home-services__links {
        margin-top: 24px;
        gap: 16px;
    }

    .service-detail__links {
        margin-top: 30px;
        gap: 18px;
    }

}

/* =====================================================
   HOMEPAGE DIENSTEN — DEFINITIEVE RESPONSIVE FIX
===================================================== */

.home-services__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Tablet */
@media (max-width: 1100px) {

    .home-services__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

/* Mobiel */
@media (max-width: 700px) {

    .home-services__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .service-card {
        width: 100%;
        min-width: 0;
        min-height: 360px;
    }

    .home-services__links {
        width: 100%;
        margin-top: 24px;
        gap: 16px;
    }

    .home-services__links .section-link:nth-child(2) {
        width: 100%;
        max-width: 280px;
        justify-content: space-between;
        box-sizing: border-box;
    }

}

/* =====================================================
   HOMEPAGE PROJECTAFBEELDINGEN — SEO + PERFORMANCE
   Plaats dit onderaan main.css
===================================================== */

.project-card--photo {
    position: relative;
    overflow: hidden;
    background-image: none !important;
}

.project-card__image {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-card__image-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(6, 37, 51, 0.18) 0%,
        rgba(6, 37, 51, 0.82) 100%
    );
}

.project-card__image-overlay--soft {
    background: linear-gradient(
        180deg,
        rgba(6, 37, 51, 0.12) 0%,
        rgba(6, 37, 51, 0.80) 100%
    );
}

.project-card--photo > *:not(.project-card__image):not(.project-card__image-overlay) {
    position: relative;
    z-index: 2;
}


/* =====================================================
   TOEGANKELIJKHEID — CONTRAST FIXES
===================================================== */

/* Opdrachtgevers-marquee */
.client-marquee,
.client-marquee p,
.client-marquee span {
    color: #123e52;
}

/* Dienstkaarten — nummers en tekst beter leesbaar */
.service-card__number,
.service-card h3,
.service-card p,
.service-card a {
    color: #ffffff;
}

/* Donkere kaarten expliciet voldoende contrast geven */
.service-card--navy,
.service-card--blue,
.service-card--green,
.service-card--recreation {
    color: #ffffff;
}

/* Werkgebied links */
.home-regions a {
    color: #ffffff;
}

/* Over Profoma facts */
.home-about__facts article span,
.home-about__facts article strong,
.home-about__facts article p {
    color: #123e52;
}

/* =====================================================
   TOEGANKELIJKHEID — DEFINITIEVE CONTRAST FIXES
===================================================== */

/* 1. Personeelshuisvesting kaart donkerder groen */
.service-card--green {
    background: #4f7f3b;
}

.service-card--green .service-card__number,
.service-card--green h3,
.service-card--green p,
.service-card--green a,
.service-card--green a span {
    color: #ffffff;
}


/* 2. Waarom Profoma — nummers 01 t/m 05 */
.home-why__list article > span {
    color: #123e52;
}


/* 3. Werkgebiedbalk */
.home-regions {
    background: #123e52;
}

.home-regions a {
    color: #ffffff;
}

.home-regions i {
    background: rgba(255, 255, 255, 0.55);
}


/* 4. Zorg dat teksten op gekleurde service cards wit blijven */
.service-card--navy,
.service-card--blue,
.service-card--green,
.service-card--recreation {
    color: #ffffff;
}

.service-card--navy h3,
.service-card--navy p,
.service-card--navy a,
.service-card--blue h3,
.service-card--blue p,
.service-card--blue a,
.service-card--green h3,
.service-card--green p,
.service-card--green a,
.service-card--recreation h3,
.service-card--recreation p,
.service-card--recreation a {
    color: #ffffff;
}

/* =====================================================
   HEADER — ACTIEVE MENU-LINK CONTRAST
===================================================== */

.site-header .main-navigation__list li.current-menu-item > a {
    color: #123e52;
}

/* Hover en focus ook duidelijk leesbaar houden */
.site-header .main-navigation__list li.current-menu-item > a:hover,
.site-header .main-navigation__list li.current-menu-item > a:focus-visible {
    color: #0b3041;
}

/* =====================================================
   HOMEPAGE — ZAKELIJKE SCHOONMAAK OP MAAT
===================================================== */

.home-cleaning-fit {
    background: #f7faf9;
    padding-top: 88px;
    padding-bottom: 88px;
}

.home-cleaning-fit__inner {
    width: min(1400px, calc(100% - 64px));
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 88px;
    align-items: start;
}

.home-cleaning-fit__heading {
    max-width: 620px;
}

.home-cleaning-fit__heading .eyebrow {
    margin-bottom: 20px;
}

.home-cleaning-fit__heading .section-title {
    margin: 0;
    max-width: 620px;
}

.home-cleaning-fit__intro {
    max-width: 520px;
    margin: 28px 0 0;

    font-size: 18px;
    line-height: 1.75;
    color: #667d87;
}

.home-cleaning-fit__content {
    padding: 36px 0 0;
}

.home-cleaning-fit__content > p {
    margin: 0 0 34px;

    font-size: 18px;
    line-height: 1.8;
    color: #667d87;
}

.home-cleaning-fit__services {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 34px;
}

.home-cleaning-fit__services a {
    min-height: 76px;
    padding: 18px 20px;

    display: flex;
    align-items: center;
    gap: 14px;

    border: 1px solid #d9e5e7;
    background: #ffffff;

    color: #123e52;
    text-decoration: none;
    font-weight: 700;
    line-height: 1.35;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.home-cleaning-fit__services a span {
    flex: 0 0 auto;

    width: 34px;
    height: 34px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #eef6f5;

    color: #4da99d;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.home-cleaning-fit__services a:hover,
.home-cleaning-fit__services a:focus-visible {
    transform: translateY(-2px);
    border-color: #8fc8c1;
    background: #fbfdfd;
    box-shadow: 0 14px 34px rgba(18, 62, 82, 0.08);
}

.home-cleaning-fit__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
}

.home-cleaning-fit__actions .button {
    min-height: 54px;
}

.home-cleaning-fit__cost-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    min-height: 54px;
    padding: 0 4px;

    color: #123e52;
    text-decoration: none;
    font-weight: 700;

    border-bottom: 1px solid #7fbfb7;
}

.home-cleaning-fit__cost-link:hover,
.home-cleaning-fit__cost-link:focus-visible {
    color: #0b3041;
    border-bottom-color: #0b3041;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

    .home-cleaning-fit {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .home-cleaning-fit__inner {
        width: min(100% - 48px, 1100px);
        gap: 56px;
    }

    .home-cleaning-fit__services {
        grid-template-columns: 1fr;
    }

}


/* =====================================================
   MOBIEL
===================================================== */

@media (max-width: 768px) {

    .home-cleaning-fit {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .home-cleaning-fit__inner {
        width: calc(100% - 32px);
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .home-cleaning-fit__heading {
        max-width: none;
    }

    .home-cleaning-fit__intro {
        margin-top: 20px;
        font-size: 16px;
        line-height: 1.7;
    }

    .home-cleaning-fit__content {
        padding-top: 0;
    }

    .home-cleaning-fit__content > p {
        margin-bottom: 26px;
        font-size: 16px;
        line-height: 1.75;
    }

    .home-cleaning-fit__services {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 28px;
    }

    .home-cleaning-fit__services a {
        min-height: 68px;
        padding: 16px;
    }

    .home-cleaning-fit__services a span {
        width: 32px;
        height: 32px;
    }

    .home-cleaning-fit__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .home-cleaning-fit__actions .button {
        width: 100%;
        justify-content: center;
    }

    .home-cleaning-fit__cost-link {
        width: 100%;
        justify-content: center;
        padding: 14px 0;
    }

}