/* =========================================================
   Meubelopfrissen.nl — hoofdstylesheet
   Donker premium design met oranje accent (zie ontwerp).
   ========================================================= */

:root {
    --donker: #0f0f13;
    --donker-2: #16161c;
    --licht: #f6f5f2;
    --wit: #ffffff;
    --oranje: #f97316;
    --oranje-donker: #e2620b;
    --inkt: #17161b;
    --inkt-zacht: #5c5b64;
    --wit-zacht: rgba(255, 255, 255, 0.72);
    --rand: rgba(23, 22, 27, 0.08);
    --rand-donker: rgba(255, 255, 255, 0.12);
    --groen: #22c55e;
    --radius: 18px;
    --schaduw: 0 18px 50px rgba(15, 15, 19, 0.14);
    --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    font-size: 17px;
    line-height: 1.65;
    color: var(--inkt);
    background: var(--licht);
    -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin: 0 0 0.5em;
    font-weight: 800;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1em; }

a { color: inherit; }

.wikkel {
    width: min(1180px, 92vw);
    margin-inline: auto;
}

.schermlezer {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--oranje);
    color: var(--wit);
    padding: 0.6rem 1rem;
    z-index: 100;
}

.skip-link:focus { left: 0; }

/* ---------- Knoppen & badges ---------- */

.knop {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.7rem;
    border-radius: 999px;
    border: 0;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}

.knop:hover { transform: translateY(-1px); }

.knop--oranje {
    background: var(--oranje);
    color: var(--wit);
    box-shadow: 0 10px 24px rgba(249, 115, 22, 0.35);
}

.knop--oranje:hover { background: var(--oranje-donker); }

.knop--ghost {
    background: transparent;
    color: var(--wit);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.knop--ghost:hover { border-color: var(--wit); }

.knop--donker {
    background: var(--donker);
    color: var(--wit);
}

.knop--wa {
    background: #25d366;
    color: var(--wit);
    width: 100%;
    justify-content: center;
}

.knop--groot {
    padding: 1.05rem 2.2rem;
    font-size: 1.08rem;
}

.badge {
    display: inline-block;
    padding: 0.42rem 1.05rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--rand-donker);
    color: var(--wit);
    margin-bottom: 1.2rem;
}

.badge--licht {
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.25);
    color: var(--oranje-donker);
}

/* ---------- Sitekop ---------- */

.sitekop {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(15, 15, 19, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--rand-donker);
}

.sitekop__binnen {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-block: 0.85rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: var(--wit);
}

.logo__icoon {
    width: 40px;
    height: 40px;
    color: var(--oranje);
    flex-shrink: 0;
}

.logo__naam {
    display: block;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.01em;
}

.logo__naam em {
    font-style: normal;
    color: var(--oranje);
}

.logo__tagline {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--wit-zacht);
}

.hoofdnav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hoofdnav__lijst {
    display: flex;
    gap: 1.6rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hoofdnav__lijst a {
    color: var(--wit-zacht);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.98rem;
    padding-block: 0.4rem;
    border-bottom: 2px solid transparent;
    transition: color 0.15s ease;
}

.hoofdnav__lijst a:hover { color: var(--wit); }

.hoofdnav__lijst .current-menu-item > a,
.hoofdnav__lijst .current_page_item > a {
    color: var(--wit);
    border-bottom-color: var(--oranje);
}

.menuknop {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    padding: 0.5rem;
    cursor: pointer;
}

.menuknop__lijn {
    width: 26px;
    height: 2.5px;
    border-radius: 2px;
    background: var(--wit);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ---------- Hero ---------- */

.hero {
    position: relative;
    background-size: cover;
    background-position: center right;
    color: var(--wit);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(15, 15, 19, 0.94) 30%, rgba(15, 15, 19, 0.55) 65%, rgba(15, 15, 19, 0.35));
}

.hero__binnen {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
    align-items: end;
    gap: 2rem;
    padding-block: clamp(4rem, 9vw, 7.5rem);
}

.hero__sub {
    max-width: 46ch;
    color: var(--wit-zacht);
    font-size: 1.1rem;
}

.hero__acties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-block: 1.8rem 2.4rem;
}

.hero__usps {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem 2.4rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hero__usps li {
    position: relative;
    padding-left: 2.4rem;
}

.hero__usps li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.15rem;
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 50%;
    background: var(--groen);
    color: var(--wit);
    font-size: 0.9rem;
    font-weight: 800;
    display: grid;
    place-items: center;
}

.hero__usps strong { display: block; font-size: 0.98rem; }

.hero__usps span {
    font-size: 0.85rem;
    color: var(--wit-zacht);
}

.hero__kaart {
    justify-self: end;
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.94);
    color: var(--inkt);
    border-radius: var(--radius);
    padding: 1.1rem 1.4rem;
    box-shadow: var(--schaduw);
}

.hero__kaarticoon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(249, 115, 22, 0.12);
    color: var(--oranje);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.hero__kaarticoon svg { width: 24px; height: 24px; }

.hero__kaart ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ---------- Dienstenstrook (home) ---------- */

.diensten-strook {
    background: var(--licht);
    padding-block: clamp(2.5rem, 5vw, 4rem);
}

.diensten-strook__raster {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.4rem;
}

.dienstkaart {
    text-decoration: none;
    color: var(--inkt);
}

.dienstkaart__foto {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 8px 26px rgba(15, 15, 19, 0.10);
}

.dienstkaart__foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.dienstkaart:hover .dienstkaart__foto img { transform: scale(1.05); }

.dienstkaart__label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    margin-top: 0.8rem;
}

.dienstkaart__label span { color: var(--oranje); }

/* ---------- Voor/na ---------- */

.voorna {
    background: var(--donker);
    color: var(--wit);
    padding-block: clamp(3.5rem, 7vw, 6rem);
}

.voorna__binnen {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}

.voorna__tekst p {
    color: var(--wit-zacht);
    max-width: 42ch;
    margin-bottom: 1.6rem;
}

.voorna__slider {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16 / 10;
    box-shadow: var(--schaduw);
    user-select: none;
}

.voorna__slider img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.voorna__voorwikkel {
    position: absolute;
    inset: 0;
    clip-path: inset(0 calc(100% - var(--positie)) 0 0);
}

.voorna__voorwikkel img {
    filter: sepia(0.5) saturate(1.5) hue-rotate(-12deg) brightness(0.6) contrast(1.05);
}

.voorna__slider::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--positie);
    width: 2px;
    background: var(--wit);
    transform: translateX(-50%);
    pointer-events: none;
}

.voorna__handvat {
    position: absolute;
    top: 50%;
    left: var(--positie);
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--wit);
    color: var(--inkt);
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
    pointer-events: none;
}

.voorna__label {
    position: absolute;
    bottom: 1rem;
    padding: 0.35rem 1.1rem;
    border-radius: 999px;
    background: rgba(15, 15, 19, 0.75);
    color: var(--wit);
    font-size: 0.85rem;
    font-weight: 700;
    pointer-events: none;
}

.voorna__label--voor { left: 1rem; }
.voorna__label--na { right: 1rem; }

.voorna__bereik {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    margin: 0;
}

/* ---------- USP's ---------- */

.usps {
    background: var(--licht);
    padding-block: clamp(3.5rem, 7vw, 6rem);
    text-align: left;
}

.usps__titel { max-width: 20ch; }

.usps__raster {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.usp__icoon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(249, 115, 22, 0.12);
    color: var(--oranje);
    margin-bottom: 1rem;
}

.usp__icoon svg { width: 28px; height: 28px; }

.usp h3 { margin-bottom: 0.35rem; }

.usp p {
    color: var(--inkt-zacht);
    font-size: 0.95rem;
    margin: 0;
}

/* ---------- CTA ---------- */

.cta {
    position: relative;
    background-size: cover;
    background-position: center;
    color: var(--wit);
}

.cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(15, 15, 19, 0.93) 35%, rgba(15, 15, 19, 0.6));
}

.cta__binnen {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 2.5rem;
    align-items: center;
    padding-block: clamp(3.5rem, 7vw, 6rem);
}

.cta__tekst p { color: var(--wit-zacht); }

.cta__acties {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.4rem;
    margin-top: 1.6rem;
}

.cta__bellen {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--wit);
    text-decoration: none;
    line-height: 1.3;
}

.cta__bellen small { color: var(--wit-zacht); }

.cta__belicoon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid var(--rand-donker);
    display: grid;
    place-items: center;
    font-size: 1.2rem;
}

.cta__vinkjes {
    justify-self: end;
    width: 100%;
    max-width: 330px;
    list-style: none;
    margin: 0;
    padding: 1.4rem 1.6rem;
    background: rgba(255, 255, 255, 0.96);
    color: var(--inkt);
    border-radius: var(--radius);
    box-shadow: var(--schaduw);
    font-weight: 600;
}

.cta__vinkjes li {
    position: relative;
    padding: 0.45rem 0 0.45rem 2.2rem;
}

.cta__vinkjes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: var(--oranje);
    color: var(--wit);
    font-size: 0.8rem;
    font-weight: 800;
    display: grid;
    place-items: center;
}

/* ---------- Paginakop ---------- */

.paginakop {
    background: var(--donker);
    color: var(--wit);
    padding-block: clamp(3rem, 6vw, 5rem);
}

.paginakop p {
    color: var(--wit-zacht);
    max-width: 60ch;
    font-size: 1.08rem;
}

.paginakop .knop { margin-top: 0.8rem; }

/* ---------- Dienstenlijst & werkwijze ---------- */

.dienstenlijst { padding-block: clamp(3rem, 6vw, 5rem); }

.dienstrij {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    padding-block: clamp(1.5rem, 3vw, 2.5rem);
}

.dienstrij--omgekeerd .dienstrij__foto { order: 2; }

.dienstrij__foto img {
    border-radius: var(--radius);
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 100%;
    box-shadow: var(--schaduw);
}

.dienstrij__prijs {
    font-weight: 800;
    color: var(--oranje-donker);
    font-size: 1.05rem;
}

.dienstrij__acties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.vinklijst {
    list-style: none;
    margin: 0 0 1.2rem;
    padding: 0;
}

.vinklijst li {
    position: relative;
    padding: 0.3rem 0 0.3rem 2.1rem;
}

.vinklijst li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.42rem;
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.15);
    color: #15803d;
    font-size: 0.75rem;
    font-weight: 800;
    display: grid;
    place-items: center;
}

.werkwijze {
    background: var(--donker);
    color: var(--wit);
    padding-block: clamp(3.5rem, 7vw, 6rem);
}

.werkwijze__raster {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
    list-style: none;
    margin: 2.5rem 0 0;
    padding: 0;
    counter-reset: stap;
}

.stap {
    background: var(--donker-2);
    border: 1px solid var(--rand-donker);
    border-radius: var(--radius);
    padding: 1.6rem;
}

.stap__nummer {
    display: inline-grid;
    place-items: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background: var(--oranje);
    color: var(--wit);
    font-weight: 800;
    margin-bottom: 1rem;
}

.stap p {
    color: var(--wit-zacht);
    font-size: 0.95rem;
    margin: 0;
}

/* ---------- Tarieven ---------- */

.tarieven { padding-block: clamp(3rem, 6vw, 5rem); }

.tarieven__raster {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem;
}

.tariefkaart {
    background: var(--wit);
    border: 1px solid var(--rand);
    border-radius: var(--radius);
    padding: 1.8rem;
    box-shadow: 0 8px 26px rgba(15, 15, 19, 0.06);
}

.tariefkaart--actie {
    border: 2px solid var(--oranje);
    position: relative;
}

.tariefkaart--actie::before {
    content: "50% combikorting";
    position: absolute;
    top: -0.9rem;
    right: 1.2rem;
    background: var(--oranje);
    color: var(--wit);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 0.3rem 0.9rem;
}

.tariefkaart h2 { font-size: 1.3rem; }

.tariefkaart__tabel {
    width: 100%;
    border-collapse: collapse;
    margin-block: 0.8rem;
}

.tariefkaart__tabel td {
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--rand);
}

.tariefkaart__tabel td:last-child {
    text-align: right;
    font-weight: 700;
}

.tariefkaart__voetnoot {
    font-size: 0.88rem;
    color: var(--inkt-zacht);
    margin: 0;
}

.tarieven__disclaimer {
    margin-top: 2rem;
    text-align: center;
    color: var(--inkt-zacht);
}

/* ---------- FAQ ---------- */

.faq {
    background: var(--wit);
    padding-block: clamp(3rem, 6vw, 5rem);
}

.faq__lijst {
    max-width: 780px;
    margin-top: 1.5rem;
}

.faq__item {
    border: 1px solid var(--rand);
    border-radius: 14px;
    padding: 1rem 1.3rem;
    margin-bottom: 0.8rem;
    background: var(--licht);
}

.faq__item summary {
    font-weight: 700;
    cursor: pointer;
}

.faq__item p {
    margin: 0.8rem 0 0;
    color: var(--inkt-zacht);
}

/* ---------- Calculator ---------- */

.calculator { padding-block: clamp(3rem, 6vw, 5rem); }

.calculator__raster {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 2rem;
    align-items: start;
}

.calcblok {
    border: 1px solid var(--rand);
    border-radius: var(--radius);
    background: var(--wit);
    padding: 1.6rem;
    margin: 0 0 1.4rem;
}

.calcblok legend {
    font-weight: 800;
    font-size: 1.1rem;
    padding-inline: 0.4rem;
}

.calcblok__hint {
    font-size: 0.88rem;
    color: var(--inkt-zacht);
    margin: 1rem 0 0;
}

.calcregel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-block: 1rem;
    border-bottom: 1px solid var(--rand);
}

.calcregel:last-of-type { border-bottom: 0; }

.calcregel__info strong { display: block; }

.calcregel__info span {
    font-size: 0.85rem;
    color: var(--inkt-zacht);
}

.teller {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.teller__knop {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--rand);
    background: var(--licht);
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.teller__knop:hover {
    background: var(--oranje);
    border-color: var(--oranje);
    color: var(--wit);
}

.teller__waarde {
    width: 58px;
    height: 44px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    border: 1.5px solid var(--rand);
    border-radius: 12px;
    -moz-appearance: textfield;
    appearance: textfield;
}

.teller__waarde::-webkit-outer-spin-button,
.teller__waarde::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.veldrij {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.veld {
    display: block;
    margin-bottom: 1rem;
}

.veld span {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
}

.veld input,
.veld textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid var(--rand);
    border-radius: 12px;
    font: inherit;
    background: var(--wit);
}

.veld input:focus,
.veld textarea:focus {
    outline: 2px solid var(--oranje);
    outline-offset: 1px;
    border-color: transparent;
}

.calculator__fout {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
    border-radius: 12px;
    padding: 0.8rem 1.1rem;
    font-weight: 600;
}

.calculator__kleinletters {
    font-size: 0.85rem;
    color: var(--inkt-zacht);
    margin-top: 0.9rem;
}

.calculator__zijkant {
    position: sticky;
    top: 90px;
    display: grid;
    gap: 1.2rem;
}

.prijskaart {
    background: var(--donker);
    color: var(--wit);
    border-radius: var(--radius);
    padding: 1.7rem;
    box-shadow: var(--schaduw);
}

.prijskaart h2 { font-size: 1.25rem; }

.prijskaart__regels {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

.prijskaart__regels li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-block: 0.45rem;
    border-bottom: 1px solid var(--rand-donker);
    font-size: 0.95rem;
}

.prijskaart__leeg {
    color: var(--wit-zacht);
    font-style: italic;
}

.prijskaart__totaal {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 0.8rem;
}

.prijskaart__totaal strong {
    font-size: 1.9rem;
    color: var(--oranje);
}

.prijskaart__voetnoot {
    color: var(--wit-zacht);
    font-size: 0.82rem;
    margin: 0.4rem 0 0;
}

.prijskaart__korting {
    margin: 0.9rem 0 0;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #86efac;
    border-radius: 12px;
    padding: 0.7rem 1rem;
    font-size: 0.88rem;
    font-weight: 600;
}

.waprikkel {
    background: var(--wit);
    border: 1px solid var(--rand);
    border-radius: var(--radius);
    padding: 1.4rem;
}

.waprikkel p {
    font-size: 0.92rem;
    color: var(--inkt-zacht);
}

.calculator__succes {
    text-align: center;
    background: var(--wit);
    border: 1px solid var(--rand);
    border-radius: var(--radius);
    padding: 3rem 2rem;
    box-shadow: var(--schaduw);
}

.calculator__succesicoon {
    display: inline-grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--groen);
    color: var(--wit);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.calculator__succes-klein {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #15803d;
    border-radius: 12px;
    padding: 0.8rem 1.1rem;
    font-weight: 600;
}

/* ---------- Over ons / contact / tekstpagina ---------- */

.overons { padding-block: clamp(3rem, 6vw, 5rem); }

.overons__raster {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.overons__foto img {
    border-radius: var(--radius);
    box-shadow: var(--schaduw);
    aspect-ratio: 4 / 3.4;
    object-fit: cover;
    width: 100%;
}

.contact { padding-block: clamp(3rem, 6vw, 5rem); }

.contact__raster {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: start;
}

.contactkaart {
    background: var(--donker);
    color: var(--wit);
    border-radius: var(--radius);
    padding: 1.7rem;
}

.contactkaart h2 { font-size: 1.25rem; margin-bottom: 1rem; }

.contactkaart__regel {
    display: block;
    padding-block: 0.75rem;
    border-bottom: 1px solid var(--rand-donker);
    text-decoration: none;
    color: var(--wit);
}

.contactkaart__regel:last-child { border-bottom: 0; }

.contactkaart__regel strong { display: block; font-size: 0.9rem; }

.contactkaart__regel span {
    color: var(--wit-zacht);
    font-size: 0.95rem;
}

a.contactkaart__regel:hover span { color: var(--oranje); }

.contact__tip {
    margin-top: 1.2rem;
    font-size: 0.92rem;
    color: var(--inkt-zacht);
}

.contact__formulier {
    background: var(--wit);
    border: 1px solid var(--rand);
    border-radius: var(--radius);
    padding: 1.8rem;
}

.tekstpagina { padding-block: clamp(2.5rem, 5vw, 4rem); }

.tekstpagina__inhoud { max-width: 760px; }

/* ---------- Sitevoet ---------- */

.sitevoet {
    background: var(--donker);
    color: var(--wit);
}

.sitevoet__boven {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr) minmax(0, 1fr);
    gap: 2.5rem;
    padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}

.sitevoet__intro {
    color: var(--wit-zacht);
    font-size: 0.95rem;
    max-width: 34ch;
    margin-top: 1.2rem;
}

.sitevoet__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.6rem;
}

.sitevoet__menu a {
    color: var(--wit-zacht);
    text-decoration: none;
    font-weight: 600;
}

.sitevoet__menu a:hover { color: var(--wit); }

.sitevoet__contact {
    display: grid;
    gap: 0.6rem;
    align-content: start;
}

.sitevoet__lijn {
    color: var(--wit-zacht);
    text-decoration: none;
}

a.sitevoet__lijn:hover { color: var(--oranje); }

.sitevoet__socials {
    display: flex;
    gap: 1.2rem;
    margin-top: 0.8rem;
}

.sitevoet__socials a {
    color: var(--wit-zacht);
    text-decoration: none;
    font-weight: 600;
}

.sitevoet__onder {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid var(--rand-donker);
    padding-block: 1.4rem;
    font-size: 0.85rem;
    color: var(--wit-zacht);
}

.sitevoet__onder p { margin: 0; }

.sitevoet__legal a {
    color: var(--wit-zacht);
    text-decoration: none;
    margin-left: 1.4rem;
}

.sitevoet__legal a:first-child { margin-left: 0; }

.sitevoet__legal a:hover { color: var(--wit); }

/* ---------- Zwevende WhatsApp-knop ---------- */

.wa-zweef {
    position: fixed;
    right: 1.3rem;
    bottom: 1.3rem;
    z-index: 60;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: var(--wit);
    display: grid;
    place-items: center;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
    transition: transform 0.15s ease;
}

.wa-zweef:hover { transform: scale(1.07); }

.wa-zweef svg { width: 30px; height: 30px; }

/* ---------- Responsief ---------- */

@media (max-width: 1024px) {
    .hero__binnen { grid-template-columns: 1fr; }
    .hero__kaart { display: none; }
    .diensten-strook__raster { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .usps__raster { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .werkwijze__raster { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .voorna__binnen,
    .cta__binnen,
    .calculator__raster,
    .overons__raster,
    .contact__raster { grid-template-columns: 1fr; }
    .cta__vinkjes { justify-self: start; }
    .calculator__zijkant { position: static; }
    .sitevoet__boven { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
    body { font-size: 16px; }

    .menuknop { display: flex; }

    .hoofdnav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--donker);
        border-bottom: 1px solid var(--rand-donker);
        padding: 1rem 4vw 1.5rem;
    }

    .hoofdnav.is-open { display: flex; }

    .hoofdnav__lijst {
        flex-direction: column;
        gap: 0;
    }

    .hoofdnav__lijst a {
        display: block;
        padding: 0.85rem 0;
        font-size: 1.05rem;
        border-bottom: 1px solid var(--rand-donker);
    }

    .hoofdnav__cta { margin-top: 1.2rem; }

    .menuknop[aria-expanded="true"] .menuknop__lijn:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
    .menuknop[aria-expanded="true"] .menuknop__lijn:nth-child(2) { opacity: 0; }
    .menuknop[aria-expanded="true"] .menuknop__lijn:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

    .diensten-strook__raster { grid-template-columns: 1fr; }
    .usps__raster { grid-template-columns: 1fr; }
    .werkwijze__raster { grid-template-columns: 1fr; }
    .veldrij { grid-template-columns: 1fr; }
    .dienstrij { grid-template-columns: 1fr; }
    .dienstrij--omgekeerd .dienstrij__foto { order: 0; }
    .tarieven__raster { grid-template-columns: 1fr; }
    .sitevoet__boven { grid-template-columns: 1fr; }
}
