    :root {
      --blue: #1267f1;
      --dark: #101820;
      --sky: #eef8ff;
      --line: #d8efff;
      --muted: #64748b;
      --green: #10b981;
      --red: #ef4444;
      --orange: #f59e0b;
      --shadow: 0 20px 55px rgba(18, 103, 241, .14)
    }

    * {
      box-sizing: border-box
    }

    body {
      margin: 0;
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: var(--sky);
      color: var(--dark)
    }

    button,
    input,
    select,
    textarea {
      font: inherit
    }

    button {
      cursor: pointer
    }

    a {
      text-decoration: none;
      color: inherit
    }

    .muted {
      color: var(--muted)
    }

    .logo {
      width: 300px;
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: contain
    }

    .logoBtn {
      border: 0;
      background: transparent;
      padding: 0;
      display: flex;
      align-items: center
    }

    .btn {
      border: 0;
      border-radius: 999px;
      padding: 12px 18px;
      font-weight: 900;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px
    }

    .blue {
      background: var(--blue);
      color: #fff
    }

    .dark {
      background: var(--dark);
      color: #fff
    }

    .white {
      background: #fff;
      color: var(--dark);
      box-shadow: inset 0 0 0 1px #e5e7eb
    }

    .green {
      background: var(--green);
      color: #fff
    }

    .red {
      background: #ffe4e6;
      color: #be123c
    }

    .soft {
      background: #eaf7ff;
      color: var(--blue)
    }

    .full {
      width: 100%
    }

    .sitePage {
      min-height: 100vh;
      display: flex;
      flex-direction: column
    }

    .sitePage>main {
      flex: 1
    }

    .top {
      position: sticky;
      top: 0;
      z-index: 60;
      background: rgb(255, 255, 255);
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(14px)
    }

    .topin {
      max-width: 1200px;
      margin: auto;
      padding: 14px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px
    }

    .nav {
      display: flex;
      gap: 16px
    }

    .nav button {
      border: 0;
      background: transparent;
      font-weight: 900;
      color: #475569
    }

    .hamb {
      display: none
    }

    .container {
      max-width: 1200px;
      margin: auto;
      padding: 32px 20px
    }

    .hero {
      display: grid;
      grid-template-columns: 1fr .8fr;
      gap: 34px;
      align-items: center;
      padding: 36px 0
    }

    h1 {
      font-size: clamp(38px, 6vw, 74px);
      line-height: .95;
      margin: 18px 0;
      font-weight: 1000;
      letter-spacing: -.05em
    }

    h2 {
      font-size: 30px;
      margin: 0;
      font-weight: 1000;
      letter-spacing: -.035em
    }

    h3 {
      margin: 0;
      font-size: 18px
    }

    .lead {
      font-size: 18px;
      line-height: 1.65;
      color: #475569
    }

    .badge {
      display: inline-flex;
      border-radius: 999px;
      background: #fff;
      color: var(--blue);
      padding: 10px 16px;
      font-weight: 900;
      box-shadow: 0 8px 24px rgba(0, 0, 0, .06)
    }

    .panel {
      background: #fff;
      border-radius: 30px;
      padding: 18px;
      box-shadow: var(--shadow)
    }

    .input {
      width: 100%;
      border: 1px solid var(--line);
      background: #f4fbff;
      border-radius: 20px;
      padding: 13px 15px;
      font-weight: 800;
      outline: none
    }

    .input:focus {
      border-color: var(--blue);
      background: #fff
    }

    .gridSearch {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 12px
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px
    }

    .card {
      background: #fff;
      border-radius: 30px;
      overflow: hidden;
      box-shadow: var(--shadow)
    }

    .pic {
      height: 178px;
      position: relative;
      overflow: hidden
    }

    .pic img {
      width: 100%;
      height: 100%;
      object-fit: cover
    }

    .ov {
      position: absolute;
      inset: 0;
      opacity: .32
    }

    .orange {
      background: linear-gradient(135deg, #fb923c, #f43f5e)
    }

    .cyan {
      background: linear-gradient(135deg, #34d399, #06b6d4)
    }

    .lime {
      background: linear-gradient(135deg, #a3e635, #38bdf8)
    }

    .redGrad {
      background: linear-gradient(135deg, #f87171, #fb923c)
    }

    .premium {
      position: absolute;
      right: 12px;
      bottom: 12px;
      background: var(--dark);
      color: #fff;
      border-radius: 999px;
      padding: 7px 10px;
      font-size: 11px;
      font-weight: 1000
    }

    .fav {
      position: absolute;
      left: 12px;
      top: 12px;
      background: rgba(255, 255, 255, .92);
      border: 0;
      border-radius: 999px;
      padding: 6px 10px;
      font-size: 18px
    }

    .emoji {
      position: absolute;
      right: 12px;
      top: 12px;
      background: rgba(255, 255, 255, .92);
      border-radius: 16px;
      padding: 8px;
      font-size: 24px
    }

    .picText {
      position: absolute;
      left: 14px;
      bottom: 14px;
      color: #fff;
      text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
      font-weight: 1000
    }

    .body {
      padding: 18px
    }

    .title {
      display: flex;
      justify-content: space-between;
      gap: 10px
    }

    .rating {
      background: #fef3c7;
      color: #b45309;
      border-radius: 999px;
      padding: 6px 9px;
      font-size: 12px;
      font-weight: 1000;
      white-space: nowrap;
      height: max-content
    }

    .info {
      display: grid;
      gap: 4px;
      margin: 12px 0;
      color: #64748b;
      font-weight: 800;
      font-size: 14px
    }

    .foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid #eef2f7;
      padding-top: 14px;
      margin-top: 14px
    }

    .filters {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 12px;
      margin: 18px 0
    }

    .detail {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 22px
    }

    .detailMain,
    .detailSide {
      background: #fff;
      border-radius: 36px;
      padding: 16px;
      box-shadow: var(--shadow)
    }

    .heroImg {
      height: 320px;
      width: 100%;
      border-radius: 26px;
      object-fit: cover
    }

    .detailImg {
      height: 230px;
      width: 100%;
      border-radius: 26px;
      object-fit: cover;
      margin-top: 18px
    }

    .facts {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-top: 18px
    }

    .fact {
      background: #f4fbff;
      border-radius: 24px;
      padding: 16px
    }

    .detailSide {
      background: var(--dark);
      color: #fff;
      height: max-content
    }

    .detailSide p {
      color: #cbd5e1
    }

    .stack {
      display: grid;
      gap: 10px;
      margin-top: 18px
    }

    .mapGrid {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 20px
    }

    .mapBox {
      position: relative;
      min-height: 480px;
      border-radius: 36px;
      background: linear-gradient(135deg, #bae6fd, #d1fae5, #fef3c7);
      box-shadow: var(--shadow);
      overflow: hidden
    }

    .pin {
      position: absolute;
      border: 0;
      border-radius: 999px;
      background: #fff;
      padding: 11px 14px;
      font-weight: 1000;
      box-shadow: 0 10px 30px rgba(0, 0, 0, .16)
    }

    .pinCenter {
      background: var(--dark);
      color: #fff
    }

    .sideList {
      display: grid;
      gap: 12px
    }

.sideCard {
    background: #fff;
    border-radius: 24px;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
    color: var(--dark); /* Zorgt dat de tekst donker is */
    text-decoration: none;
    display: block;
}

.sideCard strong {
    color: var(--dark); /* Specifiek de naam op donker zetten */
}
    .footer {
      background: #fff;
      border-top: 1px solid var(--line);
      padding: 28px 20px;
      margin-top: auto
    }

    .footerIn {
      max-width: 1200px;
      margin: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 28px;
      flex-wrap: wrap;
      color: #64748b;
      font-weight: 800
    }

    .footerLinks {
      display: flex;
      flex-wrap: wrap;
      gap: 22px;
      justify-content: flex-end;
      align-items: center;
      flex: 1;
      min-width: 620px
    }

    .footerLinks button,
    .footerLinks a {
      border: 0;
      background: transparent;
      font-weight: 900;
      color: #334155
    }

    .bottom,
    .menuOverlay {
      display: none
    }

    .legalPageBlock {
      background: #fff;
      border-radius: 30px;
      padding: 24px;
      box-shadow: var(--shadow)
    }

    .legalSection {
      background: #f4fbff;
      border-radius: 22px;
      padding: 16px;
      margin-top: 14px
    }

    .legalSection h3 {
      margin-bottom: 8px
    }

    .legalSection ul {
      margin: 8px 0 0 18px;
      padding: 0
    }

    .legalSection li {
      margin: 7px 0;
      line-height: 1.55;
      color: #475569;
      font-weight: 700
    }

    .admin {
      display: grid;
      grid-template-columns: 286px 1fr;
      min-height: 100vh
    }

    .aside {
      background: #fff;
      border-right: 1px solid var(--line);
      padding: 24px;
      position: sticky;
      top: 0;
      height: 100vh
    }

    .adminNav {
      display: grid;
      gap: 8px;
      margin-top: 26px
    }

    .adminNav button {
      border: 0;
      border-radius: 18px;
      padding: 13px 14px;
      background: transparent;
      text-align: left;
      font-weight: 1000;
      color: #475569
    }

    .adminNav button.active {
      background: var(--dark);
      color: #fff
    }

    .ahead {
      position: sticky;
      top: 0;
      z-index: 40;
      background: rgba(255, 255, 255, .93);
      border-bottom: 1px solid var(--line);
      padding: 20px 28px;
      backdrop-filter: blur(12px);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px
    }

    .acontent {
      padding: 28px
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 16px
    }

    .stat {
      background: #fff;
      border-radius: 28px;
      padding: 22px;
      box-shadow: var(--shadow)
    }

    .stat strong {
      display: block;
      font-size: 30px
    }

    .tableWrap {
      overflow: auto;
      background: #fff;
      border-radius: 30px;
      padding: 18px;
      box-shadow: var(--shadow)
    }

    table {
      border-collapse: collapse;
      width: 100%;
      min-width: 930px
    }

    th {
      text-align: left;
      color: #94a3b8;
      text-transform: uppercase;
      font-size: 12px;
      padding: 13px;
      border-bottom: 1px solid #e5e7eb
    }

    td {
      padding: 14px 13px;
      border-bottom: 1px solid #eef2f7;
      font-weight: 800
    }

    .pill {
      display: inline-flex;
      border-radius: 999px;
      padding: 6px 10px;
      font-size: 12px;
      font-weight: 1000
    }

    .pill.green {
      background: #dcfce7;
      color: #047857
    }

    .pill.blue {
      background: #dbeafe;
      color: #1d4ed8
    }

    .pill.yellow {
      background: #fef3c7;
      color: #b45309
    }

    .pill.red {
      background: #ffe4e6;
      color: #be123c
    }

    .pill.slate {
      background: #f1f5f9;
      color: #475569
    }

    .formGrid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px
    }

    .twoCol {
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      gap: 20px
    }

    .toast {
      margin: 12px 28px 0;
      background: #ecfdf5;
      color: #047857;
      border-radius: 18px;
      padding: 12px 14px;
      font-weight: 1000
    }

    .adminBottom {
      display: none
    }

    .invoiceGrid {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: 20px
    }

    .planCard {
      border: 2px solid transparent;
      border-radius: 24px;
      background: #f4fbff;
      padding: 16px;
      text-align: left;
      width: 100%
    }

    .planCard.active {
      background: var(--dark);
      color: #fff;
      border-color: var(--dark)
    }

    .planCard.prem.active {
      background: var(--blue);
      border-color: var(--blue)
    }

    .invoiceCard {
      background: #fff;
      border-radius: 28px;
      padding: 18px;
      box-shadow: 0 12px 30px rgba(18, 103, 241, .10);
      border: 1px solid #eef7ff
    }

    .statusDot {
      width: 48px;
      height: 48px;
      border-radius: 999px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 1000
    }

    .dotConcept {
      background: var(--orange)
    }

    .dotVerzonden {
      background: var(--blue)
    }

    .dotBetaald {
      background: var(--green)
    }

    .dotTeLaat {
      background: var(--red)
    }

    .requestGrid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px
    }

    .noteBox {
      background: #fff7ed;
      border: 1px solid #fed7aa;
      border-radius: 22px;
      padding: 14px;
      font-weight: 800;
      color: #9a3412
    }

    .requestPreview {
      overflow: hidden;
      border-radius: 28px;
      background: #fff;
      box-shadow: 0 12px 30px rgba(18, 103, 241, .10);
      border: 1px solid #eef7ff
    }

    .requestHero {
      height: 230px;
      position: relative;
      overflow: hidden
    }

    .requestHero img {
      width: 100%;
      height: 100%;
      object-fit: cover
    }

    .requestHeroTag {
      position: absolute;
      left: 14px;
      bottom: 14px;
      border-radius: 999px;
      background: rgba(16, 24, 32, .88);
      color: #fff;
      padding: 8px 12px;
      font-size: 12px;
      font-weight: 1000
    }

    .requestThumbs {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      padding: 12px
    }

    .requestThumbs img {
      width: 100%;
      height: 150px;
      border-radius: 20px;
      object-fit: cover
    }

    .previewInfo {
      padding: 0 14px 14px
    }

    .previewInfo p {
      margin: 8px 0;
      color: #64748b;
      font-weight: 800;
      line-height: 1.5
    }

    .legalGrid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px
    }

    .legalText {
      background: #f4fbff;
      border-radius: 18px;
      padding: 12px;
      margin-top: 10px;
      font-size: 13px;
      line-height: 1.55;
      color: #475569;
      font-weight: 700
    }

    .adminMenuOverlay {
      display: none
    }

    @media(max-width:900px) {
      .nav {
        display: none
      }

      .top .hamb {
        display: none
      }

      .ahead .hamb {
        display: inline-flex
      }

      .topin {
        padding: 12px 14px
      }

      .top .logo {
        width: 230px;
        max-width: 58vw
      }

      .container {
        padding: 20px 14px 86px
      }

      .hero,
      .cards,
      .deals,
      .detail,
      .mapGrid,
      .twoCol,
      .invoiceGrid,
      .requestGrid,
      .legalGrid,
      .dealAdminGrid,
      .customerGrid,
      .metricGrid,
      .backlogGrid,
      .backlogFilters,
      .choiceGrid {
        grid-template-columns: 1fr
      }

      h1 {
        font-size: 42px
      }

      .lead {
        font-size: 15px
      }

      .filters {
        grid-template-columns: 1fr
      }

      .gridSearch {
        grid-template-columns: 1fr
      }

      .facts {
        grid-template-columns: 1fr
      }

      .mapBox {
        min-height: 360px
      }

      .heroImg {
        height: 260px
      }

      .footer {
        padding-bottom: 86px
      }

      .footerIn {
        display: block
      }

      .footerLinks {
        margin-top: 14px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        min-width: 0
      }

      .bottom {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 60;
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        background: #fff;
        border-top: 1px solid var(--line);
        padding: 8px 2px;
        font-size: 10px;
        font-weight: 1000;
        text-align: center;
        color: #64748b
      }

      .bottom button {
        border: 0;
        background: transparent;
        font-weight: 1000;
        color: inherit
      }

      .bottom button.active {
        color: var(--blue)
      }

      .menuOverlay {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 80;
        background: rgba(15, 23, 42, .45)
      }

      .menuPanel {
        width: 84%;
        max-width: 340px;
        height: 100%;
        background: #fff;
        padding: 20px;
        box-shadow: var(--shadow)
      }

      .menuNav {
        display: grid;
        gap: 10px;
        margin-top: 20px
      }

      .menuNav button {
        border: 0;
        border-radius: 18px;
        background: #f4fbff;
        text-align: left;
        padding: 14px;
        font-weight: 1000
      }

      .admin {
        grid-template-columns: 1fr
      }

      .aside {
        display: none
      }

      .ahead {
        padding: 14px
      }

      .ahead .logo {
        width: 220px;
        max-width: 58vw
      }

      .acontent {
        padding: 14px 14px 90px
      }

      .stats {
        grid-template-columns: repeat(2, 1fr)
      }

      .formGrid {
        grid-template-columns: 1fr
      }

      .adminBottom {
        display: grid;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 70;
        grid-template-columns: repeat(6, 1fr);
        background: #fff;
        border-top: 1px solid var(--line);
        padding: 7px 2px;
        font-size: 10px;
        font-weight: 1000;
        text-align: center
      }

      .adminBottom button {
        border: 0;
        background: transparent;
        font-weight: 1000;
        color: #64748b
      }

      .adminBottom button.active {
        color: var(--blue)
      }

      .adminMenuOverlay {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 90;
        background: rgba(15, 23, 42, .45)
      }

      .adminMenuPanel {
        height: 100%;
        width: 86%;
        max-width: 360px;
        background: #fff;
        padding: 20px;
        box-shadow: var(--shadow);
        overflow: auto
      }

      .adminMenuPanel .logo {
        width: 260px;
        max-width: 100%
      }

      .invoiceCard .btn {
        width: 100%;
        margin-top: 6px
      }
    }

    .deals {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 18px
    }

    .dealCard {
      background: #fff;
      border-radius: 30px;
      padding: 18px;
      box-shadow: var(--shadow);
      border: 1px solid #e8f4ff;
      position: relative;
      overflow: hidden
    }

    .dealCard:before {
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 7px;
      background: linear-gradient(90deg, var(--blue), #10b981, #f59e0b)
    }

    .dealBadge {
      display: inline-flex;
      border-radius: 999px;
      background: #fff7ed;
      color: #c2410c;
      padding: 7px 11px;
      font-size: 12px;
      font-weight: 1000
    }

    .dealPrice {
      font-size: 28px;
      font-weight: 1000;
      color: var(--blue);
      margin: 10px 0 4px
    }

    .dealDates {
      font-size: 13px;
      color: #64748b;
      font-weight: 800
    }

    .dealAdminGrid {
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      gap: 20px
    }


    .customerGrid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 20px
    }

    .customerCard {
      background: #fff;
      border-radius: 28px;
      padding: 18px;
      box-shadow: 0 12px 30px rgba(18, 103, 241, .10);
      border: 1px solid #eef7ff
    }

    .customerTop {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 14px
    }

    .metricGrid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      margin-top: 14px
    }

    .metric {
      background: #f4fbff;
      border-radius: 20px;
      padding: 14px
    }

    .metric strong {
      display: block;
      font-size: 22px;
      color: var(--blue)
    }

    .providerSuggest {
      position: relative
    }

    .suggestBox {
      display: grid;
      gap: 8px;
      margin-top: 8px
    }

    .suggestBtn {
      border: 1px solid var(--line);
      background: #fff;
      border-radius: 16px;
      padding: 10px 12px;
      text-align: left;
      font-weight: 900
    }

    .suggestBtn:hover {
      border-color: var(--blue);
      color: var(--blue)
    }


    .modalBackdrop {
      position: fixed;
      inset: 0;
      background: rgba(15, 23, 42, .55);
      z-index: 120;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 18px
    }

    .contactModal {
      width: 100%;
      max-width: 460px;
      background: #fff;
      border-radius: 30px;
      padding: 20px;
      box-shadow: 0 28px 80px rgba(0, 0, 0, .28)
    }

    .modalTop {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 12px
    }

    .contactOption {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      background: #f4fbff;
      border-radius: 20px;
      padding: 14px;
      margin-top: 10px;
      font-weight: 900
    }

    .paymentBox {
      grid-column: 1/-1;
      background: #f8fafc;
      border: 1px solid #e2e8f0;
      border-radius: 24px;
      padding: 16px
    }

    .backlogGrid {
      display: grid;
      grid-template-columns: .75fr 1.25fr;
      gap: 20px
    }

    .backlogItem {
      background: #fff;
      border-radius: 24px;
      padding: 16px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
      border: 1px solid #eef7ff
    }

    .backlogFilters {
      display: grid;
      grid-template-columns: 1.2fr 1.3fr 1fr 1fr 1fr auto auto;
      gap: 12px;
      margin: 14px 0;
      align-items: center
    }


    .historyPanel {
      background: #fff;
      border-radius: 28px;
      padding: 18px;
      box-shadow: 0 12px 30px rgba(18, 103, 241, .10);
      border: 1px solid #eef7ff
    }

    .historyLine {
      border-left: 4px solid var(--blue);
      padding: 10px 0 10px 14px;
      margin: 10px 0;
      background: #f8fbff;
      border-radius: 0 18px 18px 0
    }

    .dayBars {
      display: grid;
      gap: 10px;
      margin-top: 16px
    }

    .dayBar {
      display: grid;
      grid-template-columns: 96px 1fr 64px;
      gap: 10px;
      align-items: center;
      font-weight: 900
    }

    .barTrack {
      height: 14px;
      background: #eaf7ff;
      border-radius: 999px;
      overflow: hidden
    }

    .barFill {
      height: 100%;
      background: linear-gradient(90deg, var(--blue), #10b981);
      border-radius: 999px
    }


    .choiceGrid {
      display: grid;
      grid-template-columns: .75fr 1.25fr;
      gap: 18px
    }

    .choiceOptions {
      display: grid;
      gap: 10px;
      margin-top: 14px
    }

    .choiceOption {
      border: 1px solid var(--line);
      background: #f4fbff;
      border-radius: 20px;
      padding: 13px 14px;
      text-align: left;
      font-weight: 900
    }

    .choiceOption.active {
      background: var(--blue);
      color: #fff;
      border-color: var(--blue)
    }

    .choiceResult {
      background: #fff;
      border-radius: 24px;
      padding: 16px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, .06)
    }


    .choiceHero {
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, #ffffff 0%, #eef8ff 45%, #dbeafe 100%);
      border-radius: 36px;
      padding: 28px;
      box-shadow: var(--shadow)
    }

    .choiceHero:before {
      content: "⚽";
      position: absolute;
      right: 22px;
      top: 12px;
      font-size: 78px;
      opacity: .10;
      transform: rotate(-14deg)
    }

    .choiceHero:after {
      content: "✨";
      position: absolute;
      right: 150px;
      bottom: 10px;
      font-size: 60px;
      opacity: .16
    }

    .choiceGrid.fun {
      align-items: start
    }

    .choiceBox {
      background: #fff;
      border-radius: 30px;
      padding: 18px;
      box-shadow: 0 12px 30px rgba(18, 103, 241, .10);
      border: 1px solid #e8f4ff
    }

    .choiceStep {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #eff6ff;
      color: var(--blue);
      border-radius: 999px;
      padding: 8px 12px;
      font-weight: 1000;
      margin-bottom: 10px
    }

    .choiceOption {
      transition: .18s transform, .18s box-shadow
    }

    .choiceOption:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 22px rgba(18, 103, 241, .12)
    }

    .choiceResult {
      position: relative;
      overflow: hidden
    }

    .choiceResult:before {
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 6px;
      background: linear-gradient(90deg, var(--blue), #10b981, #f59e0b)
    }

    .choiceResult strong {
      font-size: 18px
    }

    .choiceEmpty {
      background: #fff7ed;
      border: 1px solid #fed7aa;
      color: #9a3412;
      border-radius: 24px;
      padding: 18px;
      font-weight: 900
    }


    @media(max-width:420px) {
      .topin {
        gap: 8px
      }

      .top .logo {
        width: 215px;
        max-width: 62vw
      }

      .ahead .logo {
        width: 205px;
        max-width: 62vw
      }

      .menuPanel .logo,
      .adminMenuPanel .logo {
        width: 240px;
        max-width: 100%
      }
    }


    .footerLinks .providerCta {
      background: var(--blue);
      color: #fff !important;
      border-radius: 999px;
      padding: 10px 14px;
      box-shadow: 0 8px 22px rgba(18, 103, 241, .18)
    }

    @media(max-width:900px) {
      .bottom {
        font-size: 9px
      }

      .bottom button {
        padding: 4px 1px
      }

      .footerLinks .providerCta {
        display: flex;
        justify-content: center
      }
    }


    .choiceMobileProgress {
      display: none
    }

    @media(max-width:900px) {
      .choiceHero {
        padding: 22px;
        border-radius: 28px
      }

      .choiceHero h1 {
        font-size: 38px;
        margin: 14px 0
      }

      .choiceGrid.fun {
        display: grid;
        gap: 14px
      }

      .choiceBox {
        padding: 14px;
        border-radius: 24px
      }

      .choiceOptions {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px
      }

      .choiceOption {
        padding: 11px 10px;
        border-radius: 16px;
        font-size: 13px;
        text-align: center
      }

      .choiceStep {
        width: 100%;
        justify-content: center;
        margin-top: 10px
      }

      .choiceResult {
        padding: 14px;
        border-radius: 20px
      }

      .choiceResult p {
        margin: 8px 0
      }

      .choiceMobileProgress {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin: 14px 0
      }

      .choiceMobileProgress span {
        background: #fff;
        border-radius: 999px;
        padding: 8px 6px;
        text-align: center;
        font-size: 11px;
        font-weight: 1000;
        color: var(--blue);
        box-shadow: 0 8px 20px rgba(18, 103, 241, .10)
      }
    }

    @media(max-width:420px) {
      .choiceOptions {
        grid-template-columns: 1fr
      }

      .choiceHero h1 {
        font-size: 34px
      }
    }


    @media(max-width:900px) {
      .choiceHero {
        padding: 22px;
        border-radius: 28px
      }

      .choiceHero h1 {
        font-size: 36px;
        margin: 14px 0;
        line-height: 1
      }

      .choiceGrid,
      .choiceGrid.fun {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important
      }

      .choiceBox {
        padding: 16px;
        border-radius: 24px
      }

      .choiceOptions {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important
      }

      .choiceOption {
        width: 100%;
        padding: 14px 14px;
        border-radius: 18px;
        font-size: 15px;
        text-align: left;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 8px
      }

      .choiceStep {
        width: 100%;
        justify-content: center;
        margin-top: 12px;
        text-align: center
      }

      .choiceResult {
        padding: 16px;
        border-radius: 22px
      }

      .choiceResult p {
        margin: 8px 0;
        line-height: 1.45
      }

      .choiceMobileProgress {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        margin: 14px 0
      }

      .choiceMobileProgress span {
        background: #fff;
        border-radius: 999px;
        padding: 10px 8px;
        text-align: center;
        font-size: 12px;
        font-weight: 1000;
        color: var(--blue);
        box-shadow: 0 8px 20px rgba(18, 103, 241, .10)
      }
    }

    @media(max-width:420px) {
      .choiceHero h1 {
        font-size: 32px
      }

      .choiceOption {
        font-size: 14px;
        padding: 13px 12px
      }
    }


    @media(max-width:900px) {
      .deals {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        margin-top: 14px !important
      }

      .dealCard {
        border-radius: 26px !important;
        padding: 16px !important;
        box-shadow: 0 12px 30px rgba(18, 103, 241, .12) !important
      }

      .dealCard h3 {
        font-size: 20px !important;
        line-height: 1.2 !important;
        margin: 12px 0 8px !important
      }

      .dealCard .muted {
        font-size: 14px !important;
        line-height: 1.45 !important
      }

      .dealBadge {
        font-size: 11px !important;
        padding: 7px 10px !important
      }

      .dealPrice {
        font-size: 26px !important;
        margin: 12px 0 6px !important
      }

      .dealDates {
        display: inline-flex !important;
        align-items: center !important;
        gap: 6px !important;
        background: #f4fbff !important;
        border-radius: 999px !important;
        padding: 8px 10px !important;
        font-size: 12px !important;
        margin-top: 4px !important
      }

      .dealCard .btn {
        width: 100% !important;
        margin-top: 14px !important
      }

      .panel .deals+* {
        margin-top: 14px
      }
    }

    @media(max-width:420px) {
      .dealCard {
        padding: 15px !important;
        border-radius: 24px !important
      }

      .dealCard h3 {
        font-size: 19px !important
      }

      .dealPrice {
        font-size: 24px !important
      }
    }


    .actionsHeader {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px
    }

    @media(max-width:900px) {
      .actionsHeader {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important
      }

      .actionsHeader .btn {
        width: 100% !important
      }
    }


    .aanbodFilters {
      grid-template-columns: 1.5fr auto 1fr 1fr 1fr
    }

    @media(max-width:900px) {
      .aanbodFilters {
        grid-template-columns: 1fr !important
      }

      .aanbodFilters .btn {
        width: 100%
      }
    }


    .consentHint {
      grid-column: 1/-1;
      background: #fff7ed;
      border: 1px solid #fed7aa;
      color: #9a3412;
      border-radius: 18px;
      padding: 12px 14px;
      font-weight: 900
    }

    .btn:disabled {
      opacity: .45;
      cursor: not-allowed;
      filter: grayscale(.2)
    }


    .legalPageBlock {
      background: #fff;
      border-radius: 30px;
      padding: 24px;
      box-shadow: var(--shadow)
    }

    .legalSection {
      background: #f4fbff;
      border-radius: 22px;
      padding: 16px;
      margin-top: 14px
    }

    .legalSection h3 {
      margin-bottom: 8px
    }

    .legalSection ul {
      margin: 8px 0 0 18px;
      padding: 0
    }

    .legalSection li {
      margin: 7px 0;
      line-height: 1.55;
      color: #475569;
      font-weight: 700
    }

    .reminderGrid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-bottom: 18px
    }

    .reminderDue {
      display: inline-flex;
      border-radius: 999px;
      background: #fff7ed;
      color: #c2410c;
      padding: 7px 10px;
      font-size: 12px;
      font-weight: 1000
    }

    .legalActions {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-top: 12px
    }

    .legalTopNote {
      background: #fff7ed;
      border: 1px solid #fed7aa;
      border-radius: 22px;
      padding: 14px;
      font-weight: 800;
      color: #9a3412;
      margin-top: 14px
    }

    @media(max-width:900px) {
      .reminderGrid {
        grid-template-columns: 1fr
      }

      .legalGrid {
        grid-template-columns: 1fr
      }
    }
@media (max-width: 768px) {
    header .nav {
        display: none !important; /* Verbergt de knoppen bovenin op mobiel */
    }
}