/* Bestaande CSS behouden */
.profiellogo, .colorllogo {
  /*filter: invert(20%) sepia(54%) saturate(3253%) hue-rotate(194deg) brightness(100%) contrast(109%);*/
}

.profiellogo {
  width: 200px;
  transition: width 0.3s ease;
}

.scrolled .profiellogo,
.backdrop .profiellogo {
}


@media (max-width: 992px) {
  .navbar-light {
    /*padding-bottom: 35px;*/
  }
}


/* Pas de padding alleen aan op grotere schermen */
@media (min-width: 992px) {
  .navbar-wrapper {
      position: sticky;
      top: 0;
      z-index: 1000; /* Zorgt ervoor dat de navigatiebalk altijd zichtbaar blijft boven de rest van de inhoud */
      background-color: #fff; /* Geef de achtergrond een kleur om het sticky effect goed te laten zien */
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optionele schaduw om de navbar los te laten komen van de content */
      transition: box-shadow 0.3s ease; /* Vloeiende overgangseffecten */
  }

  body {
      margin: 0;
      padding: 0;
  }

  .navbar-wrapper.scrolling {
      /*background-color: rgba(255, 255, 255, 0.9); /* Maak de achtergrond transparanter bij scrollen */
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Voeg een schaduw toe wanneer je scrollt */
      transition: box-shadow 0.3s ease; /* Vloeiende overgang */
  }
}
.navbar-wrapper .bg-light {
  padding-bottom: 40px;
}

.bg-light .profiellogo {
  transition: width 0.3s ease;
  width: 150px;
}

.navbar-wrapper {
  background-color: #fff;
}

/* Verbeterde scrolling-effecten */
.navbar-wrapper .btn-secondary-outline,
.navbar-wrapper .btn-warning {
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
}

.maincolor {
  color: #0056ad;
}

.subcolor {
  color: #f6a623;
}

/* Verbeterde CSS voor menu */
@media (min-width: 992px) {
  .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
  }
  .navbar-expand-lg .navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .dropdown-menu {
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .navbar-nav .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
  }

}

.navbar-nav .nav-link {
  padding: 0.75rem 1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #333;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #0056ad;
}

.dropdown-menu {
  padding: 0.5rem 0;
  border: none;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown-item {
  padding: 0.75rem 1.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  letter-spacing: 0.3px;
  color: #333;
  transition: all 0.3s ease;
}

.dropdown-toggle::after {
  content: '\f107';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-left: 0.5rem;
  border: none;
  transition: transform 0.3s ease;
  display: inline-block;
  vertical-align: middle;
}

.dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-item:hover, .dropdown-item:focus {
  background-color: #f0f4f9;
  color: #0056ad;
}

/* Mega menu stijlen */
.mega-menu {
  position: static;
}

.mega-menu .dropdown-menu {
  width: 100%;
  left: 0;
  right: 0;
  padding: 1rem;
}

.mega-menu-column {
  min-width: 200px;
}

.mega-menu-column h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #0056ad;
}

/* Mobiele menu stijlen */
@media (max-width: 991.98px) {
  .navbar-nav .dropdown-toggle {
    position: relative;
    padding-right: 2rem;
  }

  .navbar-nav .dropdown-toggle[aria-expanded="true"]::after {
    transform: translateY(-50%) rotate(180deg);
  }

  .dropdown-menu {
    border: none;
    padding: 0 0 0 1rem;
    margin: 0;
    background-color: transparent;
    box-shadow: none;
    visibility: visible;
    opacity: 1;
    display: none;
  }

  .dropdown-menu.show {
    display: block;
  }

  .dropdown-item {
    padding: 0.5rem 1rem;
    color: #544837;
  }

  .dropdown-item:hover, .dropdown-item:focus {
    background-color: rgba(0, 86, 173, 0.1);
  }

  .navbar-nav .dropdown-menu {
    display: none;
  }

  .navbar-nav .dropdown-menu.show {
    display: block;
  }

  .dropdown-toggle::after {
    float: right;
    margin-top: 0.25rem;
    position: absolute;
    right: 14px;
    top: 18px;
    transform: translateY(-50%);
  }

  .dropdown:hover .dropdown-toggle::after,
  .dropdown-toggle:focus::after {
    top: 20px;
    transform: translateY(-50%) rotate(180deg);
  }

  .navbar-collapse {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 80vh;
    overflow-y: auto;
  }

  .navbar-nav .nav-item {
    margin-bottom: 0.5rem;
  }

  .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    padding-right: 1.5rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link:focus {
    background-color: rgba(0, 86, 173, 0.1);
    color: #0056ad!important;
  }
}

/* Animatie voor dropdown toggle */
.dropdown-toggle[aria-expanded="true"]::after {
  /*transform: rotate(180deg);*/
}

/* Verbeterd menu-icoontje */
.navbar-toggler {
  border: none;
  background-color: transparent;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: none !important;
  position: relative;
  width: 24px;
  height: 2px;
  background-color: transparent;
  transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #0056ad;
  transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
  transform: translateY(-6px);
}

.navbar-toggler-icon::after {
  transform: translateY(6px);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: rotate(45deg) translateY(0);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(-45deg) translateY(0);
}

/* Verbeterde knoppen */
.btn-secondary-outline,
.btn-warning {
  border-radius: 2rem;
  padding: 0.625rem 1.5rem;
  font-weight: 600;
}



/* ==========================================================================
   MODERNE CHECKS CARROUSEL - Volledige CSS
   ========================================================================== */

/* Basis sectie styling */
.modern-checks-carousel {
    background: linear-gradient(135deg, #0056ad 0%, #003d7a 100%);
    color: white;
    padding: 60px 0 10px 0;
    position: relative;
    overflow: hidden;
}

.checks-wave-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity="0.1" fill="white"/></svg>') no-repeat bottom;
    background-size: cover;
    z-index: 1;
}

.checks-content {
    position: relative;
    z-index: 2;
}

.checks-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: white;
}

.checks-title p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 602px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

/* Navigatie container */
.modern-swiper-nav {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 30px !important;
    margin-bottom: 40px !important;
    position: relative !important;
}

/* Navigatie knoppen - Override Swiper standaard styling */
.modern-swiper-button-prev,
.modern-swiper-button-next {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-size: 1.2rem !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    backdrop-filter: blur(10px) !important;
    position: static !important;
    margin: 0 !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
}

.modern-swiper-button-prev:hover,
.modern-swiper-button-next:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    transform: scale(1.05) !important;
}

.modern-swiper-button-prev.swiper-button-disabled,
.modern-swiper-button-next.swiper-button-disabled {
    opacity: 0.3 !important;
    cursor: not-allowed !important;
    transform: scale(1) !important;
}

/* Override Swiper ::after content voor navigatie en voeg FontAwesome toe */
.modern-swiper-button-prev::after,
.modern-swiper-button-next::after {
    content: none !important;
}

/* Voeg FontAwesome iconen toe via ::before */
.modern-swiper-button-prev::before {
    content: "\f053" !important; /* FontAwesome chevron-left */
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    font-size: 1.2rem !important;
    color: white !important;
}

.modern-swiper-button-next::before {
    content: "\f054" !important; /* FontAwesome chevron-right */
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    font-size: 1.2rem !important;
    color: white !important;
}

/* Swiper container - Override Swiper standaard padding/margins */
.modern-checks-swiper {
    padding: 40px 0 100px 0 !important;
    margin: 0 -15px !important;
}

.modern-checks-swiper .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
}

/* Check kaarten styling */
.modern-check-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    backdrop-filter: blur(15px);
    height: 100%;
    margin: 0 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Check iconen - Forceer witte kleur */
.modern-check-card .check-icon {
    font-size: 2.5rem;
    color: #ffffff !important;
    margin-bottom: 1.2rem;
    display: block;
}

.modern-check-card .check-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    fill: #ffffff !important;
}

.modern-check-card .check-icon i {
    font-size: 2.5rem;
    color: #ffffff !important;
}

.modern-check-card .check-icon .fas,
.modern-check-card .check-icon .far,
.modern-check-card .check-icon .fab,
.modern-check-card .check-icon .fal {
    color: #ffffff !important;
}

.modern-check-card h4 {
    color: white;
    font-weight: 600;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    line-height: 1.3;
}

.modern-check-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0;
}

/* Pagination - Forceer positie en ruimte override Swiper */
.modern-checks-swiper .swiper-pagination,
.modern-checks-swiper .modern-pagination {
    position: relative !important;
    bottom: auto !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    margin-top: 80px !important;
    margin-bottom: 0 !important;
    text-align: center !important;
}

/* Extra specifieke selector voor Swiper pagination bullets */
.modern-checks-carousel .swiper-pagination-bullets {
    position: relative !important;
    bottom: auto !important;
    margin-top: 80px !important;
}

/* Pagination bullets styling */
.modern-checks-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.4) !important;
    opacity: 1 !important;
    width: 12px !important;
    height: 12px !important;
    margin: 0 6px !important;
    transition: all 0.3s ease !important;
}

.modern-checks-swiper .swiper-pagination-bullet-active {
    background: #ffffff !important;
    transform: scale(1.2) !important;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5) !important;
}

/* Extra iconen fix voor alle mogelijke selectors */
.modern-checks-carousel .check-icon *,
.modern-checks-carousel .check-icon {
    color: #ffffff !important;
    fill: #ffffff !important;
}

/* ==========================================================================
   RESPONSIVE STYLING
   ========================================================================== */

/* Medium screens (tussen 992px en 1200px) */
@media (max-width: 1200px) {
    .modern-checks-swiper {
        padding: 35px 0 90px 0 !important;
        margin: 0 -10px !important;
    }

    .modern-check-card {
        margin: 0 10px;
        padding: 1.8rem 1.2rem;
    }

    .modern-checks-swiper .swiper-pagination,
    .modern-checks-swiper .modern-pagination {
        margin-top: 70px !important;
    }
}

/* Mobiel en tablet */
@media (max-width: 768px) {
    .modern-checks-carousel {
        padding: 40px 0 80px 0;
    }

    .checks-title h2 {
        font-size: 1.9rem;
    }

    .checks-title p {
        font-size: 1rem;
    }

    .modern-swiper-nav {
        gap: 20px !important;
        margin-bottom: 30px !important;
    }

    .modern-swiper-button-prev,
    .modern-swiper-button-next {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.1rem !important;
    }

    .modern-checks-swiper {
        padding: 30px 0 80px 0 !important;
        margin: 0 -8px !important;
    }

    .modern-check-card {
        margin: 0 8px;
        padding: 1.5rem 1rem;
    }

    .modern-check-card .check-icon {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .modern-check-card .check-icon svg {
        width: 2.2rem;
        height: 2.2rem;
    }

    .modern-check-card .check-icon i {
        font-size: 2.2rem;
    }

    .modern-check-card h4 {
        font-size: 1rem;
    }

    .modern-check-card p {
        font-size: 0.85rem;
    }

    .modern-checks-swiper .swiper-pagination,
    .modern-checks-swiper .modern-pagination {
        margin-top: 60px !important;
    }
}







/* ========================================
   PRICING SECTIE CSS - SIMPEL & WERKEND
   ======================================== */

/* Pricing Hero Sectie */
.pricing-hero-box {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9ff 100%);
    border: 2px solid #e6efff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 86, 173, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    position: relative;
}

.pricing-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0056ad;
    background: linear-gradient(135deg, #0056ad 0%, #4285f4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-hero-subtitle {
    color: #495057;
    font-weight: 500;
    font-size: 1.1rem;
}

/* Quantity Controls */
.pricing-slider {
    height: 8px;
    background: linear-gradient(90deg, #f6a623 0%, #28a745 100%);
    border-radius: 4px;
}

.pricing-input {
    width: 150px;
}

.pricing-volume-bar {
    height: 8px;
    background: linear-gradient(90deg, #f6a623 0%, #28a745 100%);
    border-radius: 4px;
}

/* Desktop/Mobile visibility controls */
.pricing-periodic-desktop,
.pricing-checks-desktop {
    display: block;
}

@media (max-width: 991.98px) {
    .pricing-periodic-info.pricing-periodic-desktop,
    .pricing-checks-container.pricing-checks-desktop {
        display: none !important;
    }
}

/* Checks Container */
.pricing-checks-container {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.pricing-checks-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-check-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    padding: 0.25rem 0;
}

.pricing-check-item:last-child {
    margin-bottom: 0;
}

.pricing-check-icon {
    color: #28a745;
    margin-right: 0.75rem;
    font-size: 1rem;
    flex-shrink: 0;
    width: 1rem; /* Vaste breedte voor uitlijning */
}

/* Pricing Display Container */
.pricing-display-container {
    background: linear-gradient(135deg, #0056ad 0%, #003d7a 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

/* Badge Area - Eén vaste ruimte die wisselt tussen states */
.pricing-badge-area {
    min-height: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    transition: opacity 0.3s ease;
}

.pricing-discount-text {
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
}

.pricing-hint-text {
    font-weight: 500;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    animation: gentle-pulse 3s ease-in-out infinite;
}

@keyframes gentle-pulse {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

/* Price Display */
.pricing-main-price {
    margin-bottom: 2rem;
}

.pricing-old-price {
    text-decoration: line-through;
    font-size: 1.2rem;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.pricing-current-price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.pricing-price-subtitle {
    opacity: 0.9;
    font-size: 1.1rem;
}

/* Monthly Total Container */
.pricing-yearly-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-yearly-total {
    margin-bottom: 1rem;
}

.pricing-yearly-amount {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-yearly-label {
    opacity: 0.9;
    font-size: 0.9rem;
}

.pricing-divider {
    border-color: rgba(255, 255, 255, 0.3);
    margin: 1rem 0;
}

.pricing-yearly-note {
    opacity: 0.8;
}

.pricing-yearly-note small {
    font-size: 0.85rem;
}

/* Periodieke Info - Specificere CSS om override te voorkomen */
.pricing-periodic-info {
    display: flex !important; /* Force flexbox */
    align-items: center;
    flex-direction: row;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(13, 202, 240, 0.08) 0%, rgba(13, 202, 240, 0.12) 100%);
    border: 1px solid rgba(13, 202, 240, 0.2);
    border-radius: 12px;
    padding: 1.25rem;
    margin: 1.5rem 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pricing-periodic-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #0dcaf0 0%, #0a9ec5 100%);
}

.pricing-periodic-info .pricing-periodic-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0dcaf0 0%, #0a9ec5 100%);
    border-radius: 10px;
    display: flex !important; /* Force flexbox voor icoon */
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(13, 202, 240, 0.3);
    transition: transform 0.3s ease;
    float: none; /* Reset eventuele float */
}

.pricing-periodic-info .pricing-periodic-content {
    flex: 1;
    display: block; /* Tekst content kan block blijven */
}

.pricing-periodic-info .pricing-periodic-title {
    color: #0c5460;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-top: 0;
    display: block;
}

.pricing-periodic-info .pricing-periodic-text {
    color: #0c5460;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
    opacity: 0.9;
    display: block;
}

/* Hover effecten */
.pricing-periodic-info:hover {
    background: linear-gradient(135deg, rgba(13, 202, 240, 0.12) 0%, rgba(13, 202, 240, 0.16) 100%);
    border-color: rgba(13, 202, 240, 0.3);
    transform: translateY(-1px);
}

.pricing-periodic-info:hover .pricing-periodic-icon {
    transform: scale(1.05);
}

/* CTA Buttons */
.pricing-cta-primary {
    background-color: #f6a623;
    border-color: #f6a623;
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pricing-cta-primary:hover {
    background-color: #e6951f;
    border-color: #e6951f;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(246, 166, 35, 0.3);
}

.pricing-cta-secondary {
    padding: 0.75rem 2rem;
    border-radius: 8px;
    border-width: 2px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pricing-cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 86, 173, 0.2);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet en kleiner */
@media (max-width: 768px) {
    .pricing-hero-title {
        font-size: 2rem;
    }

    .pricing-hero-box {
        padding: 1.5rem;
    }

    .pricing-input {
        width: 120px;
    }

    .pricing-current-price {
        font-size: 2.5rem;
    }

    .pricing-yearly-amount {
        font-size: 1.5rem;
    }

    .pricing-display-container {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .pricing-badge-area {
        min-height: 2.5rem;
        margin-bottom: 0.75rem;
    }

    .pricing-badge {
        padding: 0.4rem 0.8rem;
    }

    .pricing-hint-text {
        font-size: 0.75rem;
    }

    .pricing-cta-primary,
    .pricing-cta-secondary {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

    .pricing-cta-primary {
        margin-right: 0 !important;
    }

    .pricing-periodic-info {
        padding: 1rem;
        gap: 0.75rem;
        flex-direction: column; /* Icoon boven tekst op mobiel */
        align-items: center; /* Centreer icoon */
        text-align: center; /* Centreer tekst */
    }

    .pricing-periodic-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        flex-shrink: 0;
        margin-bottom: 0.5rem; /* Ruimte onder icoon */
    }

    .pricing-periodic-content {
        width: 100%; /* Volledige breedte voor tekst */
    }

    .pricing-periodic-title {
        font-size: 0.95rem;
        margin-bottom: 0.25rem;
        text-align: center; /* Centreer titel */
    }

    .pricing-periodic-text {
        font-size: 0.85rem;
        text-align: center; /* Centreer tekst */
    }
}

/* Mobiel */
@media (max-width: 576px) {
    .pricing-hero-title {
        font-size: 1.8rem;
    }

    .pricing-current-price {
        font-size: 2.2rem;
    }

    .pricing-checks-container {
        padding: 1rem;
    }

    .pricing-check-item {
        font-size: 0.9rem;
    }
}

/* Dark mode support (optioneel) */
@media (prefers-color-scheme: dark) {
    .pricing-periodic-info {
        background: linear-gradient(135deg, rgba(13, 202, 240, 0.15) 0%, rgba(13, 202, 240, 0.2) 100%);
        border-color: rgba(13, 202, 240, 0.3);
    }

    .pricing-periodic-title,
    .pricing-periodic-text {
        color: #bee5eb;
    }

    .pricing-hint-text {
        color: rgba(255, 255, 255, 0.8);
    }

    .pricing-badge {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.15);
    }
}