   .pricing-card {
      width: 100%;
      max-width: 1200px;
      display: flex;
      flex-direction: column;
      gap: 0;
      margin-bottom: 32px;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    }

    .boxes-row {
      display: flex;
      gap: 0;
      align-items: stretch;
      width: 100%;
    }

    /* Desktop: specs container vult de resterende ruimte op naast de vaste prijs-box */
    .specs-container {
      display: flex;
      flex: 1;
      width: 100%;
      gap: 0;
    }

    .info-box {
      flex: 1;
      border: 1px solid #dcdcdc;
      padding: 10px 12px;
      display: flex;
      flex-direction: column;
      background: #ffffff;
      margin-left: -1px;
      min-width: 0;
    }

    .info-box:first-child {
      margin-left: 0;
      border-radius: 6px 0 0 6px;
    }

    .spec-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 7px;
      padding-left: 0;
      margin-bottom: 0;
    }

    .spec-list li {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 11px;
      padding-bottom: 7px;
      border-bottom: 1px solid #f0f0f0;
    }

    .spec-list li:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .spec-label {
      color: #666666;
      font-weight: 500;
      font-size: 12px;
    }

    .spec-value {
      font-weight: 600;
      color: #000000;
      font-size: 12px;
    }

    /* Prijs box - behoudt exact zijn vaste compacte formaat en box-sizing */
    .price-box {
      flex: 0 0 180px;
      border: 1px solid #dcdcdc;
      padding: 14px 10px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: #ffffff;
      margin-left: -1px;
      border-radius: 0 6px 6px 0;
      box-sizing: border-box;
    }

    .price-block {
      text-align: center;
    }

    .price-main {
      display: flex;
      align-items: baseline;
      justify-content: center;
      gap: 2px;
    }

    .price {
      font-size: 25px;
      font-weight: 700;
      color: #000000;
      letter-spacing: -0.4px;
      line-height: 1;
    }

    .price-period {
      font-size: 10px;
      font-weight: 500;
      color: #666666;
      line-height: 1;
    }

    .contract-text {
      font-size: 11px;
      font-weight: 400;
      color: #7f7f7f;
      letter-spacing: 0.1px;
      margin-top: 2px;
    }

    .btn-cta {
      background-color: #0071c2;
      color: #fff;
      text-decoration: none;
      padding: 6px 10px;
      border-radius: 4px;
      font-size: 14px;
      font-weight: 500;
      display: inline-block;
      transition: background-color 0.2s;
      border: none;
      cursor: pointer;
      white-space: nowrap;
      text-align: center;
      width: 100%;
      box-sizing: border-box;
    }

    .btn-cta:hover {
      background-color: #005a9e;
    }

    /* Slider dots - standaard verborgen op desktop */
    .slider-dots-container {
      display: none;
      align-items: center;
      justify-content: center;
      gap: 16px;
      padding: 10px 0 0 0;
    }

    .slider-arrow {
      width: 30px;
      height: 30px;
      border-radius: 20px;
      border: 1px solid #dcdcdc;
      background: white;
      color: #999999;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 10px;
      transition: all 0.15s ease;
    }

    .slider-arrow:hover {
      background: #f5f5f5;
      color: #333333;
      border-color: #cccccc;
    }

    .slider-dots {
      display: flex;
      gap: 4px;
    }

    .slider-dot {
      width: 4px;
      height: 4px;
      border-radius: 20px;
      background: #dcdcdc;
      cursor: pointer;
      transition: all 0.15s ease;
    }

    .slider-dot.active {
      background: #0071c2;
      width: 16px;
    }

    /* Mobiel */
    @media screen and (max-width: 600px) {
      .pricing-card {
        width: 100%;
        max-width: none;
      }

      .boxes-row {
        flex-direction: column;
        gap: 0;
      }

      .specs-slider-wrapper {
        position: relative;
        overflow: hidden;
        border-radius: 6px 6px 0 0;
        display: flex;
        flex-direction: column;
        width: 100%;
      }

      .specs-container {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 0;
        flex: auto;
        width: 100%;
      }

      .specs-container::-webkit-scrollbar {
        display: none;
      }

      .info-box {
        flex: 0 0 100% !important;
        scroll-snap-align: start;
        margin-left: 0;
        border-radius: 0;
        padding: 16px 14px;
        border: 1px solid #dcdcdc;
        margin-right: -1px;
        box-sizing: border-box;
      }

      .info-box:first-child {
        border-radius: 6px 6px 0 0;
      }

      /* Prijs box mobiel: prijs links, bestelknop rechts in één lijn */
      .price-box {
        margin-left: 0;
        margin-top: -1px;
        border-radius: 0 0 6px 6px;
        padding: 14px 14px;
        flex: auto;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
      }

      .price-block {
        text-align: left;
      }

      .btn-cta {
        width: auto;
        padding: 10px 20px;
      }

      .spec-list {
        gap: 8px;
      }

      .spec-list li {
        font-size: 13px;
        padding-bottom: 8px;
      }

      .spec-label {
        font-size: 13px;
      }

      .spec-value {
        font-size: 12px;
      }

      .price {
        font-size: 24px;
      }

      .price-period {
        font-size: 12px;
      }

      .contract-text {
        font-size: 10px;
      }

      .slider-dots-container {
        display: flex;
        background: #ffffff;
        border-left: 1px solid #dcdcdc;
        border-right: 1px solid #dcdcdc;
        border-bottom: 1px solid #dcdcdc;
        /* Hier is de border-top expliciet toegevoegd zodat het netjes scheidt */
        border-top: 1px solid #dcdcdc;
        border-radius: 0;
        padding: 10px 0;
        margin-top: -1px;
      }

      .slider-dot {
        width: 5px;
        height: 5px;
      }

      .slider-dot.active {
        width: 18px;
      }
    }