:root {
    --achtergrond: #f4f7f8;
    --paneel: #ffffff;
    --lijn: #d9dee7;
    --tekst: #17202a;
    --zacht: #617080;
    --blauw: #12a9e0;
    --blauw-donker: #003f7f;
    --diep: #002f62;
    --cyaan: #70ecff;
    --groen: #0f8a5f;
    --accent: #12a9e0;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--achtergrond);
    color: var(--tekst);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    display: grid;
    grid-template-columns: 260px 1fr;
}

html {
    overflow-x: hidden;
}

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

.zijbalk {
    background: #ffffff;
    border-right: 1px solid var(--lijn);
    padding: 24px 18px;
}

.merk {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.merk-teken {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--blauw-donker);
    color: #fff;
    font-weight: 700;
}

.merk small,
.label,
.lijst span,
.details dt,
.tekst {
    color: var(--zacht);
}

nav {
    display: grid;
    gap: 6px;
}

nav a {
    padding: 12px 14px;
    border-radius: 8px;
    color: #24324a;
}

nav a:hover,
.nav-form button:hover {
    background: #edf7fb;
    color: var(--blauw);
}

.nav-form {
    margin: 0;
}

.nav-form button {
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    padding: 12px 14px;
    border-radius: 8px;
    color: #24324a;
    font: inherit;
    cursor: pointer;
}

.gebruiker {
    align-self: center;
    color: var(--zacht);
    font-weight: 700;
}

.pagina {
    padding: 34px;
}

.kop {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    margin-bottom: 28px;
}

.label {
    margin: 0 0 6px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

h1,
h2,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 0;
    font-size: 34px;
}

h2 {
    font-size: 18px;
    margin-bottom: 18px;
}

.acties,
.form-acties {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.knop,
button.knop {
    border: 0;
    border-radius: 8px;
    background: var(--blauw);
    color: #fff;
    font-weight: 700;
    padding: 12px 16px;
    cursor: pointer;
}

.knop.secundair {
    background: #edf7fb;
    color: var(--blauw-donker);
}

.statistieken {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 18px;
}

.statistieken article,
.paneel {
    background: var(--paneel);
    border: 1px solid var(--lijn);
    border-radius: 8px;
}

.statistieken article {
    padding: 18px;
}

.statistieken span {
    display: block;
    color: var(--zacht);
    margin-bottom: 8px;
}

.statistieken strong {
    font-size: 28px;
}

.raster {
    display: grid;
    gap: 16px;
    margin-bottom: 18px;
}

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

.raster.drie {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.breed {
    grid-column: span 2;
}

.paneel {
    padding: 18px;
}

.paneel-kop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.paneel-kop a {
    color: var(--blauw);
    font-weight: 700;
}

.dashboard-raster {
    align-items: start;
}

.werkpaneel,
.aandacht-paneel {
    min-height: 360px;
}

.periode-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
    overflow-x: auto;
}

.periode-tabs a {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    border: 1px solid var(--lijn);
    border-radius: 8px;
    padding: 9px 11px;
    color: #24324a;
    background: #fff;
}

.periode-tabs a.actief {
    border-color: var(--blauw);
    background: #edf7fb;
    color: var(--blauw);
    font-weight: 700;
}

.periode-tabs span {
    min-width: 24px;
    border-radius: 999px;
    background: #e8edf5;
    color: #24324a;
    text-align: center;
    padding: 2px 7px;
    font-size: 12px;
}

.actielijst li {
    border-left: 4px solid var(--blauw);
}

.aandacht-paneel .actielijst li {
    border-left-color: var(--accent);
}

.lijst {
    list-style: none;
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.lijst li,
.rij {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border: 1px solid var(--lijn);
    border-radius: 8px;
}

.lijst.compact li {
    display: block;
}

.lijst li.gespreksverslag-item {
    display: block;
    padding: 0;
    overflow: hidden;
}

.lijst strong,
.lijst span {
    display: block;
}

.gespreksverslag {
    width: 100%;
}

.gespreksverslag summary {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 12px;
    cursor: pointer;
    list-style: none;
}

.gespreksverslag summary::-webkit-details-marker {
    display: none;
}

.gespreksverslag summary:hover {
    background: #f8fbfd;
}

.gespreksverslag .verslag-samenvatting strong,
.gespreksverslag .verslag-samenvatting span {
    display: block;
}

.verslag-kop-meta {
    display: grid;
    gap: 4px;
    justify-items: end;
    color: var(--zacht);
}

.verslag-openen,
.verslag-sluiten {
    color: var(--blauw);
    font-weight: 700;
}

.verslag-sluiten,
.gespreksverslag[open] .verslag-openen {
    display: none;
}

.gespreksverslag[open] .verslag-sluiten {
    display: block;
}

.verslag-inhoud {
    border-top: 1px solid var(--lijn);
    padding: 14px 12px 16px;
    background: #f8fbfd;
    color: var(--tekst);
}

.verslag-inhoud p {
    margin: 0;
    line-height: 1.55;
}

.verslag-inhoud p + p {
    margin-top: 10px;
}

.verslag-meta {
    color: var(--zacht);
    font-size: 14px;
}

.tabel {
    display: grid;
    gap: 8px;
}

.rij {
    grid-template-columns: 1.4fr .8fr .8fr 1fr;
}

.bedrijven-rij {
    grid-template-columns: 1.2fr .7fr .8fr 1fr 1fr;
}

.offerte-rij {
    grid-template-columns: .9fr 1.1fr 1.6fr .9fr .8fr .9fr;
}

.contract-rij {
    grid-template-columns: 1.1fr 1.1fr .8fr .8fr .8fr .9fr 1fr .7fr;
}

.rij:not(.koprij):hover {
    border-color: var(--blauw);
}

.koprij {
    background: #f0f3f8;
    color: var(--zacht);
    font-weight: 700;
}

.leeg {
    color: var(--zacht);
    padding: 14px;
}

.details {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 10px;
    margin: 0;
}

.details dd {
    margin: 0;
}

.zoekbalk {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.filters {
    display: grid;
    grid-template-columns: 1.6fr repeat(4, minmax(130px, .8fr)) auto;
    gap: 12px;
    align-items: end;
    margin-bottom: 18px;
}

.filters label {
    display: grid;
    gap: 6px;
    font-weight: 700;
}

.filters label span {
    color: #24324a;
}

.filter-acties {
    display: flex;
    gap: 8px;
}

.compact-statistieken {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 620px;
}

input,
select,
textarea {
    min-width: 0;
    width: 100%;
    border: 1px solid var(--lijn);
    border-radius: 8px;
    padding: 11px 12px;
    font: inherit;
    background: #fff;
}

textarea {
    min-height: 130px;
}

.formulier-paneel {
    max-width: 760px;
}

.formulier {
    display: grid;
    gap: 16px;
}

.formulier label {
    display: grid;
    gap: 7px;
    font-weight: 700;
}

.formulier label span {
    color: #24324a;
}

.fout {
    color: #b42318;
}

.checklist {
    padding-left: 20px;
    color: #24324a;
}

.checklist li {
    margin-bottom: 10px;
}

.meldingen {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.melding {
    border: 1px solid var(--lijn);
    border-radius: 8px;
    background: #ffffff;
    padding: 12px 14px;
}

.melding.success {
    border-color: #9ad6bf;
    background: #eefaf5;
    color: var(--groen);
}

.melding.warning {
    border-color: #ffd18a;
    background: #fff7e8;
}

.melding.error {
    border-color: #f0a8a1;
    background: #fff0ef;
    color: #b42318;
}

.status.goed {
    color: var(--groen);
    font-weight: 700;
}

.inline-form {
    margin-top: 8px;
}

.tekstknop {
    border: 0;
    background: transparent;
    color: var(--blauw);
    padding: 0;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.spraakveld {
    display: grid;
    gap: 10px;
}

.spraak-acties {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.spraakstatus {
    color: var(--zacht);
    font-weight: 400;
}

.login-body {
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    padding: 24px;
}

.login-paneel {
    width: min(420px, 100%);
    background: #fff;
    border: 1px solid var(--lijn);
    border-radius: 8px;
    padding: 28px;
}

.login-merk {
    margin-bottom: 24px;
}

.auth-page {
    min-height: 100vh;
    background: #f4f7fb;
    display: block;
}

.auth-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(360px, 36%) minmax(0, 64%);
}

.auth-login {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(24px, 4vw, 64px);
    background: #ffffff;
    color: var(--blauw-donker);
}

.login-panel {
    width: min(100%, 420px);
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 28px;
    border-radius: 8px;
    background: var(--blauw-donker);
    color: white;
    font-weight: 800;
    letter-spacing: .08em;
}

.auth-eyebrow {
    margin: 0 0 8px;
    color: var(--blauw);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.login-panel h1 {
    margin-bottom: 34px;
    font-size: 28px;
    line-height: 1.15;
}

.login-form {
    display: grid;
    gap: 16px;
}

.login-form label {
    display: grid;
    gap: 7px;
    color: var(--zacht);
    font-size: 14px;
    font-weight: 650;
}

.login-form input {
    height: 44px;
    border-radius: 6px;
}

.login-form input:focus {
    outline: 3px solid rgba(18, 169, 224, .18);
    border-color: var(--blauw);
}

.login-form button {
    min-height: 44px;
    border: 0;
    border-radius: 7px;
    padding: 0 16px;
    background: var(--blauw);
    color: white;
    font: inherit;
    font-weight: 750;
    cursor: pointer;
}

.login-form button:hover {
    background: #0b95c8;
}

.form-error {
    margin: -16px 0 18px;
    color: #b42318;
    font-size: 14px;
}

.service-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
    background:
        radial-gradient(circle at 52% 45%, rgba(18, 169, 224, .32), transparent 18%),
        radial-gradient(circle at 78% 24%, rgba(112, 236, 255, .18), transparent 18%),
        radial-gradient(circle at 18% 75%, rgba(18, 169, 224, .18), transparent 24%),
        linear-gradient(135deg, #002f62, #004b8d 54%, #002d5c);
}

.hero-pattern {
    position: absolute;
    inset: -80px;
    opacity: .13;
    background-image:
        linear-gradient(30deg, transparent 44%, rgba(255, 255, 255, .24) 45%, rgba(255, 255, 255, .24) 46%, transparent 47%),
        linear-gradient(150deg, transparent 44%, rgba(255, 255, 255, .22) 45%, rgba(255, 255, 255, .22) 46%, transparent 47%);
    background-size: 105px 105px;
    animation: hero-drift 20s linear infinite;
}

.hero-glow {
    position: absolute;
    width: min(780px, 80vw);
    height: min(780px, 80vw);
    border-radius: 50%;
    filter: blur(40px);
    opacity: .31;
    background: conic-gradient(from 0deg, transparent, rgba(18, 169, 224, .55), transparent, rgba(112, 236, 255, .38), transparent);
    animation: hero-spin 20s linear infinite;
}

.hero-stage {
    position: relative;
    width: min(1000px, 91%);
    height: min(620px, calc(100vh - 64px));
    min-height: 560px;
}

.hero-brand {
    position: absolute;
    top: 38px;
    left: 30px;
    right: 30px;
    z-index: 10;
    text-align: center;
}

.hero-topline {
    margin-bottom: 18px;
    color: #eafcff;
    font-size: 18px;
}

.hero-brand h2 {
    margin: 0 0 9px;
    color: white;
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.05;
    letter-spacing: 2px;
    text-shadow: 0 0 18px rgba(255, 255, 255, .18);
}

.hero-brand p {
    margin: 0;
    color: var(--blauw);
    font-size: clamp(21px, 2.4vw, 27px);
    text-shadow: 0 0 18px rgba(18, 169, 224, .5);
}

.instrument-core {
    position: absolute;
    left: 50%;
    top: 57%;
    z-index: 4;
    width: 390px;
    height: 390px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(112, 236, 255, .20) 0 7%, transparent 8%),
        radial-gradient(circle, rgba(18, 169, 224, .16), transparent 52%);
    box-shadow: 0 0 100px rgba(18, 169, 224, .34), inset 0 0 70px rgba(112, 236, 255, .12);
}

.core-ring {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(112, 236, 255, .36);
    border-radius: 50%;
    animation: hero-spin 14s linear infinite;
}

.core-ring:nth-child(2) {
    inset: 38px;
    border-style: dashed;
    animation-duration: 10s;
    animation-direction: reverse;
}

.core-ring:nth-child(3) {
    inset: 78px;
    opacity: .75;
    animation-duration: 7s;
}

.instrument-icon {
    position: absolute;
    left: 50%;
    top: 57%;
    z-index: 7;
    width: 285px;
    height: 285px;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 0 25px rgba(112, 236, 255, .38));
    animation: instrument-float 4.5s ease-in-out infinite;
}

.flow-lines {
    position: absolute;
    inset: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.flow-lines path {
    fill: none;
    stroke: var(--cyaan);
    stroke-width: 2.4;
    stroke-dasharray: 6 16;
    opacity: .66;
    filter: drop-shadow(0 0 7px #20d8ff);
    animation: flow-dash 1.6s linear infinite;
}

.flow-lines path:nth-child(2) {
    opacity: .46;
    animation-duration: 2.05s;
}

.flow-lines path:nth-child(3) {
    opacity: .58;
    animation-duration: 1.25s;
}

.flow-lines path:nth-child(4) {
    opacity: .52;
    animation-duration: 1.75s;
}

.scan-ring {
    position: absolute;
    left: 50%;
    top: 57%;
    z-index: 3;
    width: 500px;
    height: 500px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    opacity: .72;
    background: conic-gradient(from 0deg, transparent 0 70%, rgba(112, 236, 255, .32) 78%, transparent 88% 100%);
    animation: scan-spin 3.6s linear infinite;
    mask: radial-gradient(circle, transparent 0 45%, #000 46% 51%, transparent 52%);
}

.service-card {
    position: absolute;
    z-index: 8;
    width: 185px;
    min-height: 108px;
    padding: 18px 18px 16px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .055));
    box-shadow: 0 25px 70px rgba(0, 0, 0, .28), inset 0 0 38px rgba(18, 169, 224, .12);
    backdrop-filter: blur(8px);
    animation: card-float 5s ease-in-out infinite;
}

.service-card b {
    display: block;
    margin-bottom: 8px;
    color: white;
    font-size: 18px;
}

.service-card span {
    display: block;
    color: #c9f6ff;
    font-size: 14px;
    line-height: 1.25;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 17px;
    right: 17px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cyaan);
    box-shadow: 0 0 18px var(--cyaan);
}

.service-card-1 {
    left: 10px;
    top: 214px;
}

.service-card-2 {
    right: 0;
    top: 214px;
    animation-delay: .65s;
}

.service-card-3 {
    left: 42px;
    bottom: 92px;
    animation-delay: 1.35s;
}

.service-card-4 {
    right: 58px;
    bottom: 88px;
    animation-delay: 2s;
}

.service-steps {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    width: min(100%, 660px);
    transform: translateX(-50%);
}

.service-steps span {
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .11);
    color: #e9fbff;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 0 24px rgba(18, 169, 224, .14);
    animation: step-pulse 4s infinite;
}

.service-steps span:nth-child(2) {
    animation-delay: .8s;
}

.service-steps span:nth-child(3) {
    animation-delay: 1.6s;
}

.service-steps span:nth-child(4) {
    animation-delay: 2.4s;
}

.service-steps span:nth-child(5) {
    animation-delay: 3.2s;
}

.spark {
    position: absolute;
    bottom: 0;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: white;
    opacity: .6;
    animation: spark-rise 7s linear infinite;
}

.spark-1 { left: 12%; animation-delay: .2s; }
.spark-2 { left: 28%; animation-delay: 1.4s; }
.spark-3 { left: 46%; animation-delay: .8s; }
.spark-4 { left: 63%; animation-delay: 2.3s; }
.spark-5 { left: 84%; animation-delay: 1.1s; }

.hero-bottom {
    position: absolute;
    left: 0;
    right: 18px;
    bottom: 12px;
    z-index: 11;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: white;
    font-size: 16px;
    font-weight: 700;
}

.hero-bottom a {
    color: white;
}

.hero-bottom a:hover {
    text-decoration: underline;
}

@keyframes hero-drift {
    to { background-position: 210px 105px; }
}

@keyframes hero-spin {
    to { transform: rotate(360deg); }
}

@keyframes scan-spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes instrument-float {
    50% { transform: translate(-50%, -54%) scale(1.03); }
}

@keyframes flow-dash {
    to { stroke-dashoffset: -66; }
}

@keyframes card-float {
    50% { transform: translateY(-16px); }
}

@keyframes step-pulse {
    20% {
        background: rgba(18, 169, 224, .42);
        box-shadow: 0 0 25px rgba(112, 236, 255, .48);
    }
}

@keyframes spark-rise {
    from {
        transform: translateY(80px);
        opacity: 0;
    }

    25% { opacity: .8; }

    to {
        transform: translateY(-620px);
        opacity: 0;
    }
}

@media (max-width: 900px) {
    body {
        grid-template-columns: 1fr;
    }

    .zijbalk {
        position: sticky;
        top: 0;
        z-index: 20;
        border-right: 0;
        border-bottom: 1px solid var(--lijn);
        padding: 12px 14px;
        box-shadow: 0 4px 16px rgba(0, 47, 98, .06);
    }

    .merk {
        margin-bottom: 10px;
    }

    .merk-teken {
        width: 38px;
        height: 38px;
    }

    .zijbalk nav {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: thin;
    }

    .zijbalk nav a,
    .nav-form button {
        white-space: nowrap;
        padding: 10px 12px;
        border: 1px solid var(--lijn);
        background: #fff;
    }

    .nav-form {
        flex: 0 0 auto;
    }

    .pagina {
        padding: 22px 14px 28px;
    }

    .kop,
    .zoekbalk {
        display: grid;
        gap: 14px;
    }

    .kop {
        align-items: start;
        margin-bottom: 20px;
    }

    h1 {
        font-size: 30px;
        line-height: 1.12;
        overflow-wrap: anywhere;
    }

    h2 {
        margin-bottom: 14px;
    }

    .acties {
        width: 100%;
    }

    .acties .knop,
    .acties .gebruiker {
        flex: 1 1 160px;
        text-align: center;
    }

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

    .raster.twee,
    .raster.drie,
    .filters {
        grid-template-columns: 1fr;
    }

    .paneel {
        padding: 16px;
    }

    .werkpaneel,
    .aandacht-paneel {
        min-height: 0;
    }

    .breed {
        grid-column: auto;
    }

    .filters {
        gap: 10px;
    }

    .filter-acties,
    .zoekbalk {
        width: 100%;
    }

    .filter-acties .knop,
    .zoekbalk .knop,
    .form-acties .knop,
    .form-acties button.knop {
        flex: 1 1 150px;
        text-align: center;
    }

    .tabel {
        gap: 10px;
    }

    .rij {
        grid-template-columns: 1fr;
    }

    .tabel .koprij {
        display: none;
    }

    .tabel .rij:not(.koprij) {
        gap: 8px;
        padding: 14px;
    }

    .tabel .rij:not(.koprij) > span {
        display: flex;
        justify-content: space-between;
        gap: 14px;
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .tabel .rij:not(.koprij) > span::before {
        content: attr(data-label);
        flex: 0 0 42%;
        color: var(--zacht);
        font-weight: 700;
    }

    .details {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .details dd {
        margin-bottom: 8px;
    }
}

@media (max-width: 620px) {
    .pagina {
        padding: 18px 10px 24px;
    }

    .label {
        font-size: 12px;
    }

    h1 {
        font-size: 28px;
    }

    .statistieken {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .statistieken article,
    .paneel {
        border-radius: 7px;
    }

    .statistieken article {
        padding: 14px;
    }

    .statistieken strong {
        font-size: 26px;
    }

    .paneel-kop {
        align-items: flex-start;
    }

    .periode-tabs {
        margin-left: -2px;
        margin-right: -2px;
        padding: 0 2px 4px;
    }

    .lijst li,
    .rij {
        grid-template-columns: 1fr;
    }

    .lijst li {
        align-items: start;
    }

    .gespreksverslag summary {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .verslag-kop-meta {
        justify-items: start;
    }

    .tabel .rij:not(.koprij) > span {
        display: grid;
        gap: 3px;
    }

    .tabel .rij:not(.koprij) > span::before {
        flex-basis: auto;
    }

    .form-acties,
    .filter-acties,
    .spraak-acties {
        display: grid;
        grid-template-columns: 1fr;
    }

    .knop,
    button.knop {
        width: 100%;
        text-align: center;
    }

    .auth-shell {
        grid-template-columns: 1fr;
    }

    .auth-login {
        min-height: 100vh;
    }

    .service-hero {
        display: none;
    }
}

@media (max-width: 1100px) and (min-width: 621px) {
    .auth-shell {
        grid-template-columns: minmax(340px, 42%) minmax(0, 58%);
    }

    .hero-stage {
        min-height: 640px;
    }

    .service-card {
        width: 168px;
    }

    .service-card-1,
    .service-card-3 {
        left: 0;
    }

    .service-card-2,
    .service-card-4 {
        right: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
